diff --git a/CLAUDE.md b/CLAUDE.md index b90d33d..410dede 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -40,6 +40,9 @@ dotnet tool install --global --add-source ./XrmSync/nupkg XrmSync # Plugin sync dotnet run --project XrmSync -- plugins --assembly "path/to/plugin.dll" --solution-name "MySolution" +# Plugin sync, also ensuring a managed identity is bound to the assembly +dotnet run --project XrmSync -- plugins --assembly "path/to/plugin.dll" --solution-name "MySolution" --client-id "" --tenant-id "" + # Webresource sync dotnet run --project XrmSync -- webresources --folder "path/to/webresources" --solution-name "MySolution" @@ -78,6 +81,15 @@ The solution is organized into distinct layers with clear separation of concerns 4. Calculate operations (create/update/delete) based on presence and content differences 5. Execute operations via `IWebresourceWriter` +**Managed Identity Handling**: +- A managed identity can be bound to a plugin assembly either as part of plugin sync or via the standalone `identity` command +- Plugin sync ensures the identity when `ManagedIdentityClientId`/`ManagedIdentityTenantId` are set on the `PluginSyncItem` (or `--client-id`/`--tenant-id` on the `plugins` command). The reconcile runs after the assembly upsert and regardless of whether the assembly binary changed, since the identity configuration can drift independently +- Reconcile semantics (shared `IManagedIdentityReconciler`): + - **Ensure**: creates and links a new identity when none is bound, or **updates the existing record in place** (application id, tenant id, name) when it has drifted — it does not delete identities + - **Remove** (standalone `identity --operation Remove`): deletes the linked identity; a missing assembly logs a warning instead of failing +- The standalone `identity` command remains available for explicit Ensure/Remove operations +- The identity is named `"{SolutionName} Managed Identity"` and is linked via the `PluginAssembly.ManagedIdentityId` lookup + **Configuration System**: - Profile-based configuration under `XrmSync` section in `appsettings.json` - Global settings (DryRun, LogLevel, CiMode) apply to all profiles @@ -100,7 +112,9 @@ The solution is organized into distinct layers with clear separation of concerns "Sync": [ { "Type": "Plugin", - "AssemblyPath": "../path/to/plugin.dll" + "AssemblyPath": "../path/to/plugin.dll", + "ManagedIdentityClientId": "00000000-0000-0000-0000-000000000000", + "ManagedIdentityTenantId": "00000000-0000-0000-0000-000000000000" }, { "Type": "Webresource", diff --git a/Dataverse/DataverseReader.cs b/Dataverse/DataverseReader.cs index 1188fca..7d7beea 100644 --- a/Dataverse/DataverseReader.cs +++ b/Dataverse/DataverseReader.cs @@ -23,6 +23,8 @@ internal sealed class DataverseReader(IOrganizationServiceProvider serviceProvid public IQueryable PluginAssemblies => DataverseContext.PluginAssemblySet; + public IQueryable ManagedIdentities => DataverseContext.ManagedIdentitySet; + public IQueryable CustomApis => DataverseContext.CustomAPISet; public IQueryable CustomApiRequestParameters => DataverseContext.CustomAPIRequestParameterSet; diff --git a/Dataverse/Interfaces/IDataverseReader.cs b/Dataverse/Interfaces/IDataverseReader.cs index 401f844..e548257 100644 --- a/Dataverse/Interfaces/IDataverseReader.cs +++ b/Dataverse/Interfaces/IDataverseReader.cs @@ -12,6 +12,7 @@ public interface IDataverseReader IQueryable SolutionComponents { get; } IQueryable Publishers { get; } IQueryable PluginAssemblies { get; } + IQueryable ManagedIdentities { get; } IQueryable CustomApis { get; } IQueryable CustomApiRequestParameters { get; } IQueryable CustomApiResponseProperties { get; } diff --git a/Dataverse/Interfaces/IManagedIdentityReader.cs b/Dataverse/Interfaces/IManagedIdentityReader.cs index 37ff606..7d15e9c 100644 --- a/Dataverse/Interfaces/IManagedIdentityReader.cs +++ b/Dataverse/Interfaces/IManagedIdentityReader.cs @@ -1,8 +1,14 @@ using Microsoft.Xrm.Sdk; +using XrmSync.Model.Identity; namespace XrmSync.Dataverse.Interfaces; public interface IManagedIdentityReader { (Guid AssemblyId, EntityReference? ManagedIdentityRef)? GetPluginAssemblyManagedIdentity(Guid solutionId, string assemblyName); + + /// + /// Retrieves the currently registered state of a managed identity record, or null when it no longer exists. + /// + ManagedIdentityInfo? GetManagedIdentity(Guid managedIdentityId); } diff --git a/Dataverse/Interfaces/IManagedIdentityWriter.cs b/Dataverse/Interfaces/IManagedIdentityWriter.cs index 980cb98..f23867e 100644 --- a/Dataverse/Interfaces/IManagedIdentityWriter.cs +++ b/Dataverse/Interfaces/IManagedIdentityWriter.cs @@ -4,5 +4,6 @@ public interface IManagedIdentityWriter { void Remove(Guid managedIdentityId); Guid Create(string name, Guid applicationId, Guid tenantId); + void Update(Guid managedIdentityId, string name, Guid applicationId, Guid tenantId); void LinkToAssembly(Guid assemblyId, Guid managedIdentityId); } diff --git a/Dataverse/ManagedIdentityReader.cs b/Dataverse/ManagedIdentityReader.cs index 234e9cc..d1e7b6f 100644 --- a/Dataverse/ManagedIdentityReader.cs +++ b/Dataverse/ManagedIdentityReader.cs @@ -1,5 +1,6 @@ using Microsoft.Xrm.Sdk; using XrmSync.Dataverse.Interfaces; +using XrmSync.Model.Identity; namespace XrmSync.Dataverse; @@ -18,4 +19,12 @@ join sc in reader.SolutionComponents on pa.Id equals sc.ObjectId ? (result.Id, result.ManagedIdentityId) : null; } + + public ManagedIdentityInfo? GetManagedIdentity(Guid managedIdentityId) + { + return (from mi in reader.ManagedIdentities + where mi.Id == managedIdentityId + select new ManagedIdentityInfo(mi.Id, mi.Name, mi.ApplicationId, mi.TenantId)) + .FirstOrDefault(); + } } diff --git a/Dataverse/ManagedIdentityWriter.cs b/Dataverse/ManagedIdentityWriter.cs index 7802d73..3f317ea 100644 --- a/Dataverse/ManagedIdentityWriter.cs +++ b/Dataverse/ManagedIdentityWriter.cs @@ -24,6 +24,16 @@ public Guid Create(string name, Guid applicationId, Guid tenantId) }, null); } + public void Update(Guid managedIdentityId, string name, Guid applicationId, Guid tenantId) + { + writer.Update(new ManagedIdentity(managedIdentityId) + { + Name = name, + ApplicationId = applicationId, + TenantId = tenantId + }); + } + public void LinkToAssembly(Guid assemblyId, Guid managedIdentityId) { writer.Update(new PluginAssembly(assemblyId) diff --git a/Model/Identity/ManagedIdentityInfo.cs b/Model/Identity/ManagedIdentityInfo.cs new file mode 100644 index 0000000..e1f4fee --- /dev/null +++ b/Model/Identity/ManagedIdentityInfo.cs @@ -0,0 +1,6 @@ +namespace XrmSync.Model.Identity; + +/// +/// The currently registered state of a managed identity record in Dataverse. +/// +public record ManagedIdentityInfo(Guid Id, string? Name, Guid? ApplicationId, Guid? TenantId); diff --git a/Model/Plugin/PluginSyncCommandOptions.cs b/Model/Plugin/PluginSyncCommandOptions.cs index 62856f6..f7cc62b 100644 --- a/Model/Plugin/PluginSyncCommandOptions.cs +++ b/Model/Plugin/PluginSyncCommandOptions.cs @@ -1,8 +1,18 @@ namespace XrmSync.Model.Plugin; // Command-specific options that can be populated from CLI or profile -public record PluginSyncCommandOptions(string AssemblyPath, string SolutionName) +public record PluginSyncCommandOptions( + string AssemblyPath, + string SolutionName, + string? ManagedIdentityClientId = null, + string? ManagedIdentityTenantId = null) { public static PluginSyncCommandOptions Empty => new(string.Empty, string.Empty); -} + /// + /// True when either managed identity value has been supplied, indicating the + /// managed identity should be ensured as part of the plugin sync. + /// + public bool HasManagedIdentity => + !string.IsNullOrWhiteSpace(ManagedIdentityClientId) || !string.IsNullOrWhiteSpace(ManagedIdentityTenantId); +} diff --git a/Model/XrmSyncOptions.cs b/Model/XrmSyncOptions.cs index f381c1d..1a3f34f 100644 --- a/Model/XrmSyncOptions.cs +++ b/Model/XrmSyncOptions.cs @@ -65,7 +65,7 @@ public abstract record SyncItem public abstract string SyncType { get; } } -public record PluginSyncItem(string AssemblyPath) : SyncItem +public record PluginSyncItem(string AssemblyPath, string? ManagedIdentityClientId = null, string? ManagedIdentityTenantId = null) : SyncItem { public const string TypeName = "Plugin"; public static PluginSyncItem Empty => new(string.Empty); diff --git a/README.md b/README.md index 6bed935..f3902b0 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ XrmSync is a powerful tool that helps you manage and synchronize your Microsoft - **Intelligent Synchronization**: Compares local definitions with Dataverse and performs only necessary changes - **Custom API Support**: Handles custom API definitions, request parameters, and response properties - **Webresource Sync**: Synchronizes HTML, CSS, JavaScript, images, and other webresources from local folders -- **Managed Identity Management**: Link or remove Azure AD managed identities for plugin assemblies +- **Managed Identity Management**: Link, update, or remove Azure AD managed identities for plugin assemblies — either inline as part of plugin sync or via the standalone `identity` command - **Dry Run Mode**: Preview changes without actually modifying your Dataverse environment - **Solution-aware**: Deploys plugins and webresources to specific Dataverse solutions - **Flexible Connection**: Supports connection string and URL-based Dataverse connections @@ -122,8 +122,8 @@ The root command accepts the following override options in addition to `--dry-ru | `--folder` | Webresource sync | | `--file-extensions` | Webresource sync | | `--prefix` | Plugin analysis | -| `--client-id` | Identity (Ensure) | -| `--tenant-id` | Identity (Ensure) | +| `--client-id` | Plugin sync, Identity (Ensure) | +| `--tenant-id` | Plugin sync, Identity (Ensure) | ### Command Line Options @@ -133,12 +133,15 @@ The root command accepts the following override options in addition to `--dry-ru |--------|-------|-------------|----------| | `--assembly` | `-a` | Path to the plugin assembly (*.dll) | Yes* | | `--solution-name` | `-n` | Name of the target Dataverse solution | Yes* | +| `--client-id` | `--cid` | Azure AD application (client) ID for the managed identity to ensure on the assembly | No** | +| `--tenant-id` | `--tid` | Azure AD tenant ID for the managed identity to ensure on the assembly | No** | | `--dry-run` | | Perform a dry run without making changes | No | | `--log-level` | `-l` | Set the minimum log level (Trace, Debug, Information, Warning, Error, Critical) | No | | `--ci-mode` | `--ci` | Enable CI mode which prefixes all warnings and errors | No | | `--profile` | `-p`, `--profile-name` | Name of the profile to load from appsettings.json | No | *Required when not present in appsettings.json +**Optional; when either is supplied the managed identity is ensured as part of the sync, and both are required together. See [Managed Identity Management](#managed-identity-management). #### Webresources Command @@ -193,9 +196,21 @@ The webresource name in Dataverse is determined by the file path relative to the ### Managed Identity Management -Link or remove a managed identity for a plugin assembly already deployed in Dataverse. +A managed identity can be bound to a plugin assembly either **as part of plugin sync** or via the standalone **`identity`** command. The identity is created with the name `"{SolutionName} Managed Identity"` and linked through the assembly's managed identity lookup. -**Ensure** — creates a managed identity and links it to the assembly if one is not already linked: +#### As part of plugin sync (recommended) + +Supply `--client-id` and `--tenant-id` to the `plugins` command (or set `ManagedIdentityClientId`/`ManagedIdentityTenantId` on the Plugin sync item in `appsettings.json`). The managed identity is ensured right after the assembly is upserted — and runs regardless of whether the assembly binary changed, so a credential change applies even when the assembly itself is unchanged: + +```bash +xrmsync plugins --assembly "path/to/your/plugin.dll" --solution-name "YourSolutionName" --client-id "" --tenant-id "" +``` + +#### Standalone command + +Manage the identity for an assembly already deployed in Dataverse. + +**Ensure** — creates and links a managed identity when none is linked, or **updates the existing one in place** when its application id, tenant id, or name has drifted: ```bash xrmsync identity --operation Ensure --assembly "path/to/your/plugin.dll" --solution-name "YourSolutionName" --client-id "" --tenant-id "" ``` @@ -221,7 +236,7 @@ xrmsync identity --operation Remove --assembly "path/to/your/plugin.dll" --solut *Required when not present in appsettings.json -> **Note**: The `--assembly` option is used to locate the plugin assembly that is already registered in Dataverse. The `Ensure` operation is idempotent — if a managed identity is already linked, no action is taken. +> **Note**: The `--assembly` option is used to locate the plugin assembly that is already registered in Dataverse. `Ensure` is idempotent — if a managed identity is already linked and matches the supplied client/tenant, no change is made; if it has drifted, the existing record is updated in place (it is never deleted by `Ensure`). `Remove` does not fail when the assembly cannot be found — it logs a warning and exits successfully, so it's safe to run in teardown pipelines. ### Assembly Analysis @@ -429,6 +444,8 @@ Each sync item must have a `Type` property indicating the sync type: |----------|------|-------------|---------| | `Type` | string | Must be "Plugin" | Required | | `AssemblyPath` | string | Path to the plugin assembly (*.dll) | Required | +| `ManagedIdentityClientId` | string | Azure AD application (client) ID (GUID). When set, a managed identity is ensured on the assembly as part of the sync | null | +| `ManagedIdentityTenantId` | string | Azure AD tenant ID (GUID). Required together with `ManagedIdentityClientId` | null | **Webresource Sync Item (Type: "Webresource")** @@ -521,6 +538,31 @@ Each sync item must have a `Type` property indicating the sync type: } ``` +**Plugin sync with an inline managed identity:** + +Instead of a separate `Identity` sync item, the managed identity can be ensured directly as part of the plugin sync. The credentials can be kept out of source control and supplied at runtime via `--client-id`/`--tenant-id`. + +```json +{ + "XrmSync": { + "Profiles": [ + { + "Name": "default", + "SolutionName": "MyCustomSolution", + "Sync": [ + { + "Type": "Plugin", + "AssemblyPath": "bin/Release/net462/MyPlugin.dll", + "ManagedIdentityClientId": "d3b5e6a1-2c4f-4a8b-9e1d-7f3c6b8a2e4d", + "ManagedIdentityTenantId": "a1b2c3d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d" + } + ] + } + ] + } +} +``` + **Webresource-only configuration:** ```json { diff --git a/SyncService/Extensions/ServiceCollectionExtensions.cs b/SyncService/Extensions/ServiceCollectionExtensions.cs index 9dff94d..9202a4c 100644 --- a/SyncService/Extensions/ServiceCollectionExtensions.cs +++ b/SyncService/Extensions/ServiceCollectionExtensions.cs @@ -21,6 +21,7 @@ public static IServiceCollection AddPluginSyncService(this IServiceCollection se return services .AddShared() .AddSingleton() + .AddSingleton() .AddSingleton() .AddSingleton, PluginValidator>() .AddSingleton, CustomApiValidator>() @@ -47,6 +48,7 @@ public static IServiceCollection AddIdentityService(this IServiceCollection serv return services .AddDataverseConnection() .AddSingleton() + .AddSingleton() .AddSingleton(); } diff --git a/SyncService/IdentitySyncService.cs b/SyncService/IdentitySyncService.cs index dad6a32..840f7c7 100644 --- a/SyncService/IdentitySyncService.cs +++ b/SyncService/IdentitySyncService.cs @@ -10,7 +10,7 @@ namespace XrmSync.SyncService; internal class IdentitySyncService( ISolutionReader solutionReader, IManagedIdentityReader managedIdentityReader, - IManagedIdentityWriter managedIdentityWriter, + IManagedIdentityReconciler managedIdentityService, IOptions configuration, ILogger log) : ISyncService { @@ -23,13 +23,13 @@ public Task Sync(CancellationToken cancellation) return options.Operation switch { - IdentityOperation.Remove => Remove(cancellation), - IdentityOperation.Ensure => Ensure(cancellation), + IdentityOperation.Remove => Remove(), + IdentityOperation.Ensure => Ensure(), _ => throw new XrmSyncException($"Unknown identity operation: {options.Operation}") }; } - private Task Remove(CancellationToken cancellation) + private Task Remove() { var assemblyName = Path.GetFileNameWithoutExtension(options.AssemblyPath); log.LogInformation("Removing managed identity for assembly '{assemblyName}' in solution '{solutionName}'", @@ -39,26 +39,18 @@ private Task Remove(CancellationToken cancellation) var result = managedIdentityReader.GetPluginAssemblyManagedIdentity(solutionId, assemblyName); if (result == null) - throw new XrmSyncException($"Plugin assembly '{assemblyName}' not found in solution '{options.SolutionName}'."); - - var (_, managedIdentityRef) = result.Value; - - if (managedIdentityRef == null) { - log.LogWarning("No managed identity linked to assembly '{assemblyName}'. Nothing to remove.", assemblyName); + // A missing assembly must not block removal — there is nothing to clean up. + log.LogWarning("Plugin assembly '{assemblyName}' not found in solution '{solutionName}'. Nothing to remove.", + assemblyName, options.SolutionName); return Task.CompletedTask; } - log.LogInformation("Deleting managed identity '{managedIdentityName}' linked to assembly '{assemblyName}'", - managedIdentityRef.Name, assemblyName); - - managedIdentityWriter.Remove(managedIdentityRef.Id); - - log.LogInformation("Successfully removed managed identity from assembly '{assemblyName}'", assemblyName); + managedIdentityService.Remove(result.Value.ManagedIdentityRef, assemblyName); return Task.CompletedTask; } - private Task Ensure(CancellationToken cancellation) + private Task Ensure() { var assemblyName = Path.GetFileNameWithoutExtension(options.AssemblyPath); log.LogInformation("Ensuring managed identity for assembly '{assemblyName}' in solution '{solutionName}'", @@ -82,21 +74,7 @@ private Task Ensure(CancellationToken cancellation) var (assemblyId, managedIdentityRef) = result.Value; - if (managedIdentityRef != null) - { - log.LogInformation("Managed identity already linked to assembly '{assemblyName}'. No action needed.", assemblyName); - return Task.CompletedTask; - } - - var miName = $"{options.SolutionName} Managed Identity"; - log.LogInformation("Creating managed identity '{miName}' for assembly '{assemblyName}'", miName, assemblyName); - - var managedIdentityId = managedIdentityWriter.Create(miName, clientId, tenantId); - - log.LogInformation("Linking managed identity '{managedIdentityId}' to assembly '{assemblyName}'", - managedIdentityId, assemblyName); - - managedIdentityWriter.LinkToAssembly(assemblyId, managedIdentityId); + managedIdentityService.Ensure(assemblyId, managedIdentityRef, options.SolutionName, clientId, tenantId); log.LogInformation("Successfully ensured managed identity for assembly '{assemblyName}'", assemblyName); return Task.CompletedTask; diff --git a/SyncService/ManagedIdentityReconciler.cs b/SyncService/ManagedIdentityReconciler.cs new file mode 100644 index 0000000..68653bd --- /dev/null +++ b/SyncService/ManagedIdentityReconciler.cs @@ -0,0 +1,84 @@ +using Microsoft.Extensions.Logging; +using Microsoft.Xrm.Sdk; +using XrmSync.Dataverse.Interfaces; + +namespace XrmSync.SyncService; + +/// +/// Shared managed identity reconciliation used by both the standalone identity command +/// and the integrated plugin sync. Ensures (upserts) and removes the managed identity +/// bound to a plugin assembly. +/// +internal interface IManagedIdentityReconciler +{ + /// + /// Ensures the managed identity linked to matches the desired + /// application/tenant. Creates and links a new identity when none exists, or updates the + /// existing record in place when its application id, tenant id or name has drifted. + /// + void Ensure(Guid assemblyId, EntityReference? current, string solutionName, Guid clientId, Guid tenantId); + + /// + /// Removes the managed identity currently linked to an assembly. Logs a warning and does + /// nothing when no identity is linked. + /// + void Remove(EntityReference? current, string assemblyName); +} + +internal class ManagedIdentityReconciler( + IManagedIdentityReader reader, + IManagedIdentityWriter writer, + ILogger log) : IManagedIdentityReconciler +{ + public void Ensure(Guid assemblyId, EntityReference? current, string solutionName, Guid clientId, Guid tenantId) + { + var name = $"{solutionName} Managed Identity"; + + if (current == null) + { + log.LogInformation("Creating managed identity '{name}'", name); + var managedIdentityId = writer.Create(name, clientId, tenantId); + + log.LogInformation("Linking managed identity '{managedIdentityId}' to assembly", managedIdentityId); + writer.LinkToAssembly(assemblyId, managedIdentityId); + return; + } + + var existing = reader.GetManagedIdentity(current.Id); + if (existing == null) + { + // The lookup pointed at a record that no longer exists — recreate and relink. + log.LogWarning("Linked managed identity '{id}' could not be read; creating a replacement", current.Id); + var managedIdentityId = writer.Create(name, clientId, tenantId); + writer.LinkToAssembly(assemblyId, managedIdentityId); + return; + } + + if (existing.ApplicationId == clientId && existing.TenantId == tenantId && existing.Name == name) + { + log.LogInformation("Managed identity '{name}' is already up to date; no changes needed", name); + return; + } + + log.LogInformation("Updating managed identity '{name}' to match the configured application and tenant", name); + writer.Update(current.Id, name, clientId, tenantId); + } + + public void Remove(EntityReference? current, string assemblyName) + { + if (current == null) + { + log.LogWarning("No managed identity linked to assembly '{assemblyName}'. Nothing to remove.", assemblyName); + return; + } + + // EntityReference.Name is usually populated for lookup columns, but can be blank if the + // related record has no primary name — fall back to the id so the log stays actionable. + var identityLabel = string.IsNullOrWhiteSpace(current.Name) ? current.Id.ToString() : current.Name; + log.LogInformation("Deleting managed identity '{managedIdentityName}' linked to assembly '{assemblyName}'", + identityLabel, assemblyName); + writer.Remove(current.Id); + + log.LogInformation("Successfully removed managed identity from assembly '{assemblyName}'", assemblyName); + } +} diff --git a/SyncService/PluginSyncService.cs b/SyncService/PluginSyncService.cs index c0ca5d2..d883079 100644 --- a/SyncService/PluginSyncService.cs +++ b/SyncService/PluginSyncService.cs @@ -27,11 +27,13 @@ internal class PluginSyncService( ICustomApiWriter customApiWriter, ILocalReader assemblyReader, ISolutionReader solutionReader, + IManagedIdentityReader managedIdentityReader, + IManagedIdentityReconciler managedIdentityService, IDifferenceCalculator differenceUtility, IDescription description, IOptions configuration, ILogger log) : ISyncService { - private record SyncData(AssemblyInfo LocalAssembly, AssemblyInfo? CrmAssembly); + private record SyncData(Guid SolutionId, AssemblyInfo LocalAssembly, AssemblyInfo? CrmAssembly); private readonly PluginSyncCommandOptions options = configuration.Value; @@ -40,7 +42,7 @@ public async Task Sync(CancellationToken cancellationToken) log.LogInformation("Comparing plugins registered in Dataverse versus those found in your local code"); // Read the data from the local assembly and from Dataverse - var (localAssembly, crmAssembly) = await ReadData(cancellationToken); + var (solutionId, localAssembly, crmAssembly) = await ReadData(cancellationToken); // Ensure custom API backing types are in the Plugins pipeline so they get aligned and created IncludeCustomApiPluginTypes(localAssembly); @@ -58,6 +60,10 @@ public async Task Sync(CancellationToken cancellationToken) // Update the actual assembly file in Dataverse crmAssembly = UpsertAssembly(localAssembly, crmAssembly); + // Ensure the managed identity, if configured. Runs regardless of whether the assembly + // binary changed, since the identity configuration can drift independently. + EnsureManagedIdentity(solutionId, crmAssembly); + // Update DoUpdates(differences); @@ -165,7 +171,7 @@ private async Task ReadData(CancellationToken cancellationToken) var crmAssembly = ReadDataverseAssembly(solutionId, localAssembly); - return new SyncData(localAssembly, crmAssembly); + return new SyncData(solutionId, localAssembly, crmAssembly); } private async Task ReadLocalAssembly(string solutionPrefix, CancellationToken cancellationToken) @@ -303,6 +309,31 @@ private AssemblyInfo UpsertAssembly(AssemblyInfo localAssembly, AssemblyInfo? re return remoteAssembly; } + internal void EnsureManagedIdentity(Guid solutionId, AssemblyInfo crmAssembly) + { + if (!options.HasManagedIdentity) + return; + + if (!Guid.TryParse(options.ManagedIdentityClientId, out var clientId)) + throw new XrmSyncException(string.IsNullOrWhiteSpace(options.ManagedIdentityClientId) + ? "Managed identity client ID is required when a tenant ID is supplied." + : "Managed identity client ID must be a valid GUID."); + + if (!Guid.TryParse(options.ManagedIdentityTenantId, out var tenantId)) + throw new XrmSyncException(string.IsNullOrWhiteSpace(options.ManagedIdentityTenantId) + ? "Managed identity tenant ID is required when a client ID is supplied." + : "Managed identity tenant ID must be a valid GUID."); + + log.LogInformation("Ensuring managed identity for assembly {assemblyName}", crmAssembly.Name); + + // Resolve the currently linked identity. On a dry-run first sync the assembly does not yet + // exist in CRM, so the lookup returns null and we treat it as "no identity linked". + var lookup = managedIdentityReader.GetPluginAssemblyManagedIdentity(solutionId, crmAssembly.Name); + var currentIdentity = lookup?.ManagedIdentityRef; + + managedIdentityService.Ensure(crmAssembly.Id, currentIdentity, options.SolutionName, clientId, tenantId); + } + internal AssemblyInfo CreatePluginAssembly(AssemblyInfo localAssembly) { if (localAssembly.DllPath is null) diff --git a/Tests.Integration/Metadata/Metadata.xml b/Tests.Integration/Metadata/Metadata.xml index 2796118..73931dd 100644 --- a/Tests.Integration/Metadata/Metadata.xml +++ b/Tests.Integration/Metadata/Metadata.xml @@ -170,7 +170,7 @@ currentparsedtablenumber - 1 + 3 blockcopilotauthorauthentication @@ -476,7 +476,7 @@ sitemapxml - <SiteMap IntroducedVersion="7.0.0.0"><Area Id="area_70c2a0c1" ResourceId="SitemapDesigner.NewTitle" DescriptionResourceId="SitemapDesigner.NewTitle" ShowGroups="true" IntroducedVersion="7.0.0.0"><Titles><Title LCID="1033" Title="Area1" /></Titles><Group Id="group_9fa8736d" ResourceId="SitemapDesigner.NewGroup" DescriptionResourceId="SitemapDesigner.NewGroup" IntroducedVersion="7.0.0.0" IsProfile="false" ToolTipResourseId="SitemapDesigner.Unknown"><SubArea Id="subarea_ed9a7f70" Icon="/_imgs/imagestrips/transparent_spacer.gif" Entity="ctx_invoice" Client="All,Outlook,OutlookLaptopClient,OutlookWorkstationClient,Web" AvailableOffline="true" PassParams="false" Sku="All,OnPremise,Live,SPLA" /></Group></Area></SiteMap> + <SiteMap IntroducedVersion="7.0.0.0"><Area Id="area_34b1dd59" ResourceId="SitemapDesigner.NewTitle" DescriptionResourceId="SitemapDesigner.NewTitle" ShowGroups="true" IntroducedVersion="7.0.0.0"><Titles><Title LCID="1033" Title="Area1" /></Titles><Group Id="group_6b39eb31" ResourceId="SitemapDesigner.NewGroup" DescriptionResourceId="SitemapDesigner.NewGroup" IntroducedVersion="7.0.0.0" IsProfile="false" ToolTipResourseId="SitemapDesigner.Unknown"><Titles><Title LCID="1033" Title="CPR" /></Titles><SubArea Id="subarea_83413420" Icon="/_imgs/imagestrips/transparent_spacer.gif" Entity="cpr_cprconfiguration" Client="All,Outlook,OutlookLaptopClient,OutlookWorkstationClient,Web" AvailableOffline="true" PassParams="false" Sku="All,OnPremise,Live,SPLA" /><SubArea Id="subarea_9dbe4fa5" Icon="/_imgs/imagestrips/transparent_spacer.gif" Entity="cpr_cprdata" Client="All,Outlook,OutlookLaptopClient,OutlookWorkstationClient,Web" AvailableOffline="true" PassParams="false" Sku="All,OnPremise,Live,SPLA" /><SubArea Id="subarea_e975bb99" Icon="/_imgs/imagestrips/transparent_spacer.gif" Entity="cpr_cprrun" Client="All,Outlook,OutlookLaptopClient,OutlookWorkstationClient,Web" AvailableOffline="true" PassParams="false" Sku="All,OnPremise,Live,SPLA" /><SubArea Id="subarea_be340fd8" Icon="/_imgs/imagestrips/transparent_spacer.gif" Entity="cpr_cprsubrun" Client="All,Outlook,OutlookLaptopClient,OutlookWorkstationClient,Web" AvailableOffline="true" PassParams="false" Sku="All,OnPremise,Live,SPLA" /><SubArea Id="subarea_728406b6" Icon="/_imgs/imagestrips/transparent_spacer.gif" Entity="cpr_cprsubscription" Client="All,Outlook,OutlookLaptopClient,OutlookWorkstationClient,Web" AvailableOffline="true" PassParams="false" Sku="All,OnPremise,Live,SPLA" /></Group></Area></SiteMap> desktopflowrunactionlogverbosity @@ -858,7 +858,7 @@ currentimportsequencenumber - 1 + 3 allowuserformmodepreference @@ -1034,6 +1034,12 @@ highcontrastthemedata <theme themeId="f499443d-2082-4938-8842-e7ee62de9a23" updateTimeStamp="638979837798350911"><globallinkcolor>#1160B7</globallinkcolor><selectedlinkeffect>#F8FAFC</selectedlinkeffect><hoverlinkeffect>#E7EFF7</hoverlinkeffect><navbarbackgroundcolor>#000000</navbarbackgroundcolor><navbarshelfcolor>#FFFFFF</navbarshelfcolor><headercolor>#1160B7</headercolor><controlshade>#FFFFFF</controlshade><controlborder>#BDC3C7</controlborder><processcontrolcolor>#41A053</processcontrolcolor><defaultentitycolor>#666666</defaultentitycolor><defaultcustomentitycolor>#00CCA3</defaultcustomentitycolor><backgroundcolor>#FFFFFF</backgroundcolor><pageheaderbackgroundcolor>#E0E0E0</pageheaderbackgroundcolor><panelheaderbackgroundcolor>#F3F3F3</panelheaderbackgroundcolor><maincolor>#3B79B7</maincolor><accentcolor>#DB3923</accentcolor><logoid></logoid><logotooltip>Microsoft Dynamics 365</logotooltip></theme> + + isdesktopflowversioncontrolenabledoverride + + 0 + + enablecanvasappsinsolutionsbydefault false @@ -1208,7 +1214,7 @@ modifiedon - 2026-02-16T00:44:42Z + 2026-06-15T23:28:34Z uselegacyrendering @@ -1695,7 +1701,7 @@ createdon - 11/7/2025 11:01 AM + 11/7/2025 12:01 PM enablebingmapsintegration @@ -1839,7 +1845,7 @@ currentparsedtablenumber - 1 + 3 blockcopilotauthorauthentication @@ -2399,7 +2405,7 @@ currentimportsequencenumber - 1 + 3 allowuserformmodepreference @@ -2545,6 +2551,10 @@ calendartype 0 + + isdesktopflowversioncontrolenabledoverride + Unset + enablecanvasappsinsolutionsbydefault No @@ -2695,7 +2705,7 @@ modifiedon - 2/16/2026 12:44 AM + 6/16/2026 1:28 AM uselegacyrendering @@ -3098,7 +3108,7 @@ organization - 3771072 + 7287206 @@ -3236,7 +3246,7 @@ createdon - 11/6/2025 10:09 AM + 11/6/2025 11:09 AM exchangerate @@ -3244,7 +3254,7 @@ modifiedon - 11/6/2025 10:09 AM + 11/6/2025 11:09 AM currencyprecision @@ -3323,6 +3333,19 @@ + + managedidentity + + + 0 + 1 + + + 1 + 2 + + + customapi @@ -3396,6 +3419,13 @@ Additional information provided by the external application as JSON. For internal use only. 1033 + + bf4c30fa-5f72-45f4-9feb-46f2996031cb + + true + Yderligere oplysninger leveret af det eksterne program som JSON. Kun til intern brug. + 1030 + 6eb710b2-7b79-4614-a1e3-3518b9357c19 @@ -3414,6 +3444,13 @@ Activity Additional Parameters 1033 + + d0ddbc0a-01e0-4c9c-a6af-ec99a8979d7a + + true + Flere parametre for aktivitet + 1030 + 08df4f9d-8a82-4391-9384-f48227be19dd @@ -3522,6 +3559,13 @@ Unique identifier of the activity. 1033 + + 0759c1c5-0b27-44ef-9596-3c908ecf2f63 + + true + Entydigt id for aktiviteten. + 1030 + e2aac7f4-2241-db11-898a-0007e9e17ebd @@ -3540,6 +3584,13 @@ Activity 1033 + + a42846a7-f623-4206-8241-f4d680c11559 + + true + Aktivitet + 1030 + e1aac7f4-2241-db11-898a-0007e9e17ebd @@ -3641,6 +3692,13 @@ Type of activity. 1033 + + 798e29e8-e746-4a7e-9945-fd85b0e8b383 + + true + Aktivitetstypen. + 1030 + d8a9c7f4-2241-db11-898a-0007e9e17ebd @@ -3659,6 +3717,13 @@ Activity Type 1033 + + ec681125-b1bb-4ec5-97f7-9b0e23c408c8 + + true + Aktivitetstype + 1030 + d7a9c7f4-2241-db11-898a-0007e9e17ebd @@ -3747,6 +3812,13 @@ Type of activity. 1033 + + c2347a8e-1a15-40a5-9c9e-c3881459f8c4 + + true + Aktivitetstypen. + 1030 + 78ab1d4b-2b68-4d0c-87bf-16acc63915bd @@ -3765,6 +3837,13 @@ Activity Type 1033 + + 60eeb313-9ca2-4f13-9a0a-674301d7b008 + + true + Aktivitetstype + 1030 + 618267fc-5290-4a1c-9ba8-6e3a06f8e078 @@ -3807,6 +3886,13 @@ Fax 1033 + + 5459cb12-4d5b-4652-beb4-d869bc852cb5 + + true + Fax + 1030 + daa9c7f4-2241-db11-898a-0007e9e17ebd @@ -3840,6 +3926,13 @@ Phone Call 1033 + + 2591ffbc-a3a5-4a7f-93e9-ce713275ac71 + + true + Telefonopkald + 1030 + dca9c7f4-2241-db11-898a-0007e9e17ebd @@ -3873,6 +3966,13 @@ Email 1033 + + f55f6ec0-ee05-4dd8-9cc5-dd76b950de39 + + true + Mail + 1030 + dea9c7f4-2241-db11-898a-0007e9e17ebd @@ -3906,6 +4006,13 @@ Letter 1033 + + f2fa5f23-928d-4c2c-a7ed-9d1ffeb8c2ed + + true + Brev + 1030 + e0a9c7f4-2241-db11-898a-0007e9e17ebd @@ -3939,6 +4046,13 @@ Appointment 1033 + + 8e8a740e-ada0-44a2-b971-1aa049b958ba + + true + Aftale + 1030 + e2a9c7f4-2241-db11-898a-0007e9e17ebd @@ -3972,6 +4086,13 @@ Task 1033 + + 7e0dc065-286c-46c9-a2e5-cf002d3199cf + + true + Opgave + 1030 + eea9c7f4-2241-db11-898a-0007e9e17ebd @@ -4005,6 +4126,13 @@ Recurring Appointment 1033 + + 7f939998-ae75-4060-b8de-f0ed225f8a0f + + true + Gentaget aftale + 1030 + b4b8b032-e7a8-11dd-947e-001b787fbb2c @@ -4239,6 +4367,13 @@ Actual duration of the activity in minutes. 1033 + + 1a57adc1-b39b-4082-95a6-facfd69d2533 + + true + Aktivitetens faktiske varighed i minutter. + 1030 + f2cde1dc-2241-db11-898a-0007e9e17ebd @@ -4257,6 +4392,13 @@ Actual Duration 1033 + + 36e52b9b-8028-4d82-88c3-49e488010afa + + true + Faktisk varighed + 1030 + f1cde1dc-2241-db11-898a-0007e9e17ebd @@ -4363,6 +4505,13 @@ Actual end time of the activity. 1033 + + 58763167-54c6-4628-a2f9-dc912019da2d + + true + Aktivitetens faktiske sluttidspunkt. + 1030 + f799ba00-2341-db11-898a-0007e9e17ebd @@ -4381,6 +4530,13 @@ Actual End 1033 + + 7fc69700-fa48-4a1b-9d65-5d30d6a42a37 + + true + Faktisk slutning + 1030 + f699ba00-2341-db11-898a-0007e9e17ebd @@ -4494,6 +4650,13 @@ Actual start time of the activity. 1033 + + ff56d30e-b888-4266-96f3-5561d68c177d + + true + Aktivitetens faktiske starttidspunkt. + 1030 + b398ba00-2341-db11-898a-0007e9e17ebd @@ -4512,6 +4675,13 @@ Actual Start 1033 + + 55625429-4218-4893-b150-ed5bcb44270f + + true + Faktisk start + 1030 + b298ba00-2341-db11-898a-0007e9e17ebd @@ -4625,6 +4795,13 @@ All activity parties associated with this activity. 1033 + + 3996a07c-1d25-4448-b536-81082da214c8 + + true + Alle aktivitetsparter, der er knyttet til denne aktivitet. + 1030 + 9321f560-9a5f-4b95-9ce9-cebec1dafa4d @@ -4643,6 +4820,13 @@ All Activity Parties 1033 + + a8855d05-a139-42f3-92c5-870dfa7049a2 + + true + Alle parter i aktiviteter + 1030 + db78d1dc-0f4b-4d81-abf8-34830f504a28 @@ -4752,6 +4936,13 @@ Shows how contact about the social activity originated, such as from Twitter or Facebook. This field is read-only. 1033 + + 4348a46c-f059-4b81-b417-7cbd56024dfd + + true + Viser, hvor kontakt om den sociale aktivitet stammer fra, f.eks. fra Twitter eller Facebook. Dette felt er skrivebeskyttet. + 1030 + 456ef847-8cd4-4aba-baf1-5c0e1ec0da45 @@ -4770,6 +4961,13 @@ Social Channel 1033 + + b89b0c5d-2a86-4f39-ad72-64ed3ec9da4b + + true + Social kanal + 1030 + 587d2c79-535f-432f-a1b3-f3f5a2108a8e @@ -4858,6 +5056,13 @@ Identifies where the social profile originated from, such as Twitter, or FaceBook. 1033 + + cc36ec94-d2ad-41a3-b6ac-86af6b3cd248 + + true + Identificerer, hvor den sociale profil stammer fra, f.eks. fra Twitter eller FaceBook. + 1030 + 5b6d2847-9e30-4817-84ff-c959f987db10 @@ -4876,6 +5081,13 @@ Social Channel 1033 + + 1981c286-405d-4034-844d-ed56e9f47275 + + true + Social kanal + 1030 + 96ff97be-dd9e-437a-a1e0-c17a1de2d864 @@ -4932,6 +5144,13 @@ Facebook 1033 + + 84ae48e1-6c92-4b1f-a4df-5c5b566fba4c + + true + Facebook + 1030 + 2f00d6b8-b5cc-4f28-8562-f09df9b9a58c @@ -4979,6 +5198,13 @@ Twitter 1033 + + 70720484-f8c1-4554-a3b3-cb7e0c7c11a1 + + true + Twitter + 1030 + 44451dc2-ca8f-4fb3-80b2-397fca72f1b2 @@ -5026,6 +5252,13 @@ Other 1033 + + a43f5fc7-7f6d-4ac4-bd32-319745f639b2 + + true + Andet + 1030 + be55d176-6000-4d7a-9887-3b5d9f0f217f @@ -5164,6 +5397,13 @@ Unique identifier of the user who created the activity. 1033 + + 8bad6050-b6a9-4d22-b88f-501f92ac4874 + + true + Entydigt id for den bruger, der oprettede aktiviteten. + 1030 + ce26e7d6-2241-db11-898a-0007e9e17ebd @@ -5182,6 +5422,13 @@ Created By 1033 + + b054440c-60c8-4630-8c43-a43696343c3b + + true + Oprettet af + 1030 + cd26e7d6-2241-db11-898a-0007e9e17ebd @@ -5491,6 +5738,13 @@ Date and time when the activity was created. 1033 + + afedc642-dee9-4ab1-86c1-d78f2df53acc + + true + Dato og klokkeslæt for oprettelse af aktiviteten. + 1030 + 4ad8a218-2341-db11-898a-0007e9e17ebd @@ -5509,6 +5763,13 @@ Date Created 1033 + + 941d1ef2-b509-4111-a615-a9b7efc5e7f0 + + true + Dato for oprettelse + 1030 + 49d8a218-2341-db11-898a-0007e9e17ebd @@ -5622,6 +5883,13 @@ Unique identifier of the delegate user who created the activitypointer. 1033 + + f52b1e39-79c4-4f90-be37-33f1129e4b95 + + true + Entydigt id for den stedfortrædende bruger, der oprettede aktivitetspointeren. + 1030 + fbf3421b-2454-469f-a8ef-2b8d73bc9ff4 @@ -5640,6 +5908,13 @@ Created By (Delegate) 1033 + + 176d3972-7dc0-4064-b0df-3752d3dbbaa1 + + true + Oprettet af (stedfortræder) + 1030 + ec1741e2-59f9-44e5-8ad0-ed1b2fce0d17 @@ -5949,6 +6224,13 @@ Date and time when the delivery of the activity was last attempted. 1033 + + e3f5ef4e-209c-4366-b42d-21ceb44e3ca4 + + true + Dato og klokkeslæt for det seneste forsøg på levering af aktiviteten. + 1030 + 18eb20e7-77e1-4425-a086-072c74014546 @@ -5967,6 +6249,13 @@ Date Delivery Last Attempted 1033 + + f78e5434-f119-42e6-9af1-c8ad5fe485df + + true + Dato for seneste leveringsforsøg + 1030 + dd3df9ee-e731-446c-b23b-3e24dc0db140 @@ -6080,6 +6369,13 @@ Priority of delivery of the activity to the email server. 1033 + + ec0da34f-3053-4e43-b7bc-08594bd3d9cb + + true + Prioritet for levering af aktiviteten til mailserveren. + 1030 + 98677668-4e0e-44e0-81e8-574f347f2d2b @@ -6098,6 +6394,13 @@ Delivery Priority 1033 + + 5cdf1231-e610-40fd-9a47-cfb7de04ae19 + + true + Leveringsprioritet + 1030 + d1d9577c-dcaf-4ad0-96b2-fdb76f163cdb @@ -6186,6 +6489,13 @@ Priority of delivery of the activity to the email server. 1033 + + 9369f0c5-885b-411d-b541-ded5280d1989 + + true + Prioritet for levering af aktiviteten til mailserveren. + 1030 + 7264430c-c5b1-4b81-9189-a25d07d321b9 @@ -6204,6 +6514,13 @@ Delivery Priority 1033 + + f1321411-173e-4538-ac72-ba96654f213e + + true + Leveringsprioritet + 1030 + e0ee0a05-e0ca-430f-897d-ecf3cc669f47 @@ -6246,6 +6563,13 @@ Low 1033 + + 7f291390-c832-4be8-a4ce-a82b1d970217 + + true + Lav + 1030 + dbc0f26f-9159-4d4c-be73-e3c2b4c6895a @@ -6279,6 +6603,13 @@ Normal 1033 + + 1d86b04a-d420-49ca-9058-333e1aa90f8d + + true + Normal + 1030 + 256e48d9-5e3b-4aaa-8942-415be3788839 @@ -6312,6 +6643,13 @@ High 1033 + + 6bc26392-f76c-407f-8d91-d5c88137f9f3 + + true + Høj + 1030 + 396d26b6-905b-44da-9d3a-81bed58d1846 @@ -6450,6 +6788,13 @@ Description of the activity. 1033 + + f4c5d851-6f96-444a-939d-d94525c205f1 + + true + Beskrivelse af aktiviteten. + 1030 + 6341b506-2341-db11-898a-0007e9e17ebd @@ -6468,6 +6813,13 @@ Description 1033 + + 7d85015a-971a-4e94-84b5-84e3da1f497e + + true + Beskrivelse + 1030 + 6241b506-2341-db11-898a-0007e9e17ebd @@ -6576,6 +6928,13 @@ File that contains description content. 1033 + + c1dc8b6d-f1bc-4252-8555-f7b911a45c2d + + true + Fil, der indeholder beskrivelsesindhold. + 1030 + 2e3e9363-7286-43dd-8a38-3b5a8fb1c5ca @@ -6594,6 +6953,13 @@ Description File Id 1033 + + 2a38db83-6f06-4446-a554-0ebe27063cf4 + + true + Id for beskrivelsesfil + 1030 + 5a212c66-0f17-423c-8f1a-4d0a9aea609f @@ -6798,6 +7164,13 @@ The message id of activity which is returned from Exchange Server. 1033 + + a3f91903-01a2-4648-ada7-fa555622e425 + + true + Meddelelses-id'et for aktivitet, der returneres fra Exchange Server. + 1030 + 41215311-6937-428e-9891-de115050e790 @@ -6816,6 +7189,13 @@ Exchange Item ID 1033 + + 89bdbf05-a530-4e97-bb93-1e204bef1285 + + true + Id for Exchange-element + 1030 + 8ee0aace-fd21-4888-b43a-ff0e5a88a51e @@ -6928,6 +7308,13 @@ Exchange rate for the currency associated with the activitypointer with respect to the base currency. 1033 + + 78eb0d9e-5b88-485f-9c90-b1250d54c3b7 + + true + Valutakurs for den valuta, der er tilknyttet aktivitetspointeren, i forhold til grundvalutaen. + 1030 + 0a5e5e91-a2ee-460c-b1d5-efa6a76cfd62 @@ -6946,6 +7333,13 @@ Exchange Rate 1033 + + fb2750ad-8f6e-424d-a58d-30b725ebbdae + + true + Valutakurs + 1030 + a91978f0-ded2-4108-837d-e547490bcfe5 @@ -7053,6 +7447,13 @@ Shows the web link of Activity of type email. 1033 + + 2f32d623-f0c9-4c80-9fb1-a6139f5b10f8 + + true + Viser weblinket for aktivitet af typen mail. + 1030 + 3c8897c6-2839-40e7-b17c-b2d8399ae23d @@ -7071,6 +7472,13 @@ Exchange WebLink 1033 + + 5970dfdb-4390-438f-8517-4f1cbbc8a6d1 + + true + Exchange WebLink + 1030 + 1fccd311-03d7-46b5-8a52-64fc86734050 @@ -7183,6 +7591,13 @@ Formatted scheduled end time of the activity. 1033 + + f3625fe9-e52d-4462-9bd6-c040e3ae39c4 + + true + Formateret planlagt sluttidspunkt for aktiviteten. + 1030 + 6f45e75a-95c4-4595-8402-ab79ba531973 @@ -7201,6 +7616,13 @@ Formatted End Date 1033 + + 31813fb9-4f76-4bd8-88f9-dd02999c1ab8 + + true + Formateret slutdato + 1030 + a9a29174-75f8-4ede-87d7-b9587adb58df @@ -7261,7 +7683,7 @@ true formattedscheduledend - 2025-11-06T05:04:19.8569984 + 2026-04-04T10:07:02.36 false canmodifyrequirementlevelsettings @@ -7314,6 +7736,13 @@ Formatted scheduled start time of the activity. 1033 + + 58e214f2-3a57-4b7c-b71a-1bd5a005ac34 + + true + Formateret planlagt tidspunkt for aktiviteten. + 1030 + 7390f126-33df-4f54-8aca-1a1d1c929c97 @@ -7332,6 +7761,13 @@ Formatted Start Date 1033 + + 20ec81ca-0d8e-497a-b7e8-11f83a812e08 + + true + Formateret startdato + 1030 + a5938957-b10c-423d-a949-9ddaca45eade @@ -7392,7 +7828,7 @@ true formattedscheduledstart - 2025-11-06T05:04:19.8230016 + 2026-04-04T10:07:01.9699968 false canmodifyrequirementlevelsettings @@ -7445,6 +7881,13 @@ Type of instance of a recurring series. 1033 + + 8e6ec5bc-2d7c-4775-b128-26a995683009 + + true + Forekomsttype for en tilbagevendende serie. + 1030 + 872b6e86-2e8b-4c8d-ae16-0259fb55873c @@ -7463,6 +7906,13 @@ Recurring Instance Type 1033 + + 9523a2ea-e755-4981-9c7e-629c8138221d + + true + Tilbagevendende forekomsttype + 1030 + 115f53b5-62cb-4021-b870-4393d9fc660f @@ -7551,6 +8001,13 @@ Type of instance of a recurring series. 1033 + + dac28c37-b32d-4448-9227-25af554ca2c3 + + true + Forekomsttype for en tilbagevendende serie. + 1030 + d169a648-ec81-4505-bfd4-96b77eb83ec8 @@ -7569,6 +8026,13 @@ Appointment Type 1033 + + 246ee0c6-8694-42d2-b278-19b51bc23971 + + true + Aftaletype + 1030 + ad0a3984-6c1d-49ef-9ea3-b21826fec850 @@ -7611,6 +8075,13 @@ Not Recurring 1033 + + c572dffa-1a20-43c0-b0a7-bea0af062215 + + true + Skal ikke gentages + 1030 + e76b9cf6-c19a-45bf-a414-e194bda6d0c2 @@ -7644,6 +8115,13 @@ Recurring Master 1033 + + c66592df-8aa8-4be7-928b-18c4c2562896 + + true + Gentaget master + 1030 + 1bf38467-901f-46b3-ae32-04b931b5bb57 @@ -7677,6 +8155,13 @@ Recurring Instance 1033 + + 798aefb5-3356-4ac1-bdda-2dc2a9620f35 + + true + Gentaget forekomst + 1030 + 9e6288fd-e31d-44c3-838b-bdcc2ffa1ff1 @@ -7710,6 +8195,13 @@ Recurring Exception 1033 + + 1c6f1b25-9a97-494d-996c-0f954fca31b2 + + true + Gentaget undtagelse + 1030 + 8e75d32c-9ed4-46b0-85cd-bba2ff60e6d5 @@ -7743,6 +8235,13 @@ Recurring Future Exception 1033 + + dcf47c8c-a6e6-4ed4-8364-1606b1446e14 + + true + Gentaget fremtidig undtagelse + 1030 + f3df2b29-16fd-4a6d-bf12-57b1cfcb788a @@ -7881,6 +8380,13 @@ Information regarding whether the activity was billed as part of resolving a case. 1033 + + 0ce9953f-76ae-48ee-9caa-a1f610d1f3b8 + + true + Angiver, om aktiviteten blev faktureret som en del af løsning af en sag. + 1030 + d41ed7e8-2241-db11-898a-0007e9e17ebd @@ -7899,6 +8405,13 @@ Is Billed 1033 + + f71f7e44-4600-4e48-9374-65ea6b87a71e + + true + Er faktureret + 1030 + d31ed7e8-2241-db11-898a-0007e9e17ebd @@ -7987,6 +8500,13 @@ Information regarding whether the activity was billed as part of resolving a case. 1033 + + a5380371-3f8a-4e91-8a47-ffa1f28529a9 + + true + Angiver, om aktiviteten blev faktureret som en del af løsning af en sag. + 1030 + f7f4de7d-cf58-487a-b5b9-9fb393cc2003 @@ -8005,6 +8525,13 @@ Is Billed 1033 + + ac545148-74ad-4c02-b923-28857f94527d + + true + Er faktureret + 1030 + 9d4c21a8-2e77-434a-9583-91eb13f4b5ed @@ -8046,6 +8573,13 @@ No 1033 + + 0a8f9388-0bf4-4ffd-b6ee-f371bbfa221a + + true + Nej + 1030 + d61ed7e8-2241-db11-898a-0007e9e17ebd @@ -8079,6 +8613,13 @@ Yes 1033 + + 3ab7add0-cc00-4f8a-9628-92d2ff848494 + + true + Ja + 1030 + d81ed7e8-2241-db11-898a-0007e9e17ebd @@ -8212,6 +8753,13 @@ For internal use only. 1033 + + be8dafda-9393-4f8e-aa8e-ab600576e314 + + true + Kun til intern brug. + 1030 + 9ec996ed-f653-41ac-b756-a130bc240398 @@ -8230,6 +8778,13 @@ Is Private 1033 + + 881df1f1-f4d8-420e-8fd2-64934540a3ce + + true + Er privat + 1030 + d8d25edf-5e16-4c51-9a7f-6e8d6c0390ec @@ -8318,6 +8873,13 @@ For internal use only. 1033 + + 1ce70135-7563-4669-91f0-d8934bab9ec5 + + true + Kun til intern brug. + 1030 + baddb6e2-6de8-440c-b297-d8dc864ab9a8 @@ -8336,6 +8898,13 @@ Is Private 1033 + + bc1c5193-1d17-4dc5-976d-643ad3dc6515 + + true + Er privat + 1030 + 532cdc64-4d98-437f-b87d-2ee614eefed9 @@ -8377,6 +8946,13 @@ No 1033 + + 3d0121f4-5c50-4472-8712-04522acd5038 + + true + Nej + 1030 + 2749416e-2935-4394-a13b-1c0584577c01 @@ -8410,6 +8986,13 @@ Yes 1033 + + efc0e28e-6313-48ba-aace-243850d8258c + + true + Ja + 1030 + 0071a2ee-20b3-4ffb-900e-0179d8c31540 @@ -8543,6 +9126,13 @@ Information regarding whether the activity is a regular activity type or event type. 1033 + + 51d48468-0dd5-4419-b82a-20898fd4ffd4 + + true + Oplysninger om, hvorvidt aktiviteten er en almindelig aktivitetstype eller hændelsestype. + 1030 + 78651c9d-4376-11de-a6d5-001cc46616fb @@ -8561,6 +9151,13 @@ Is Regular Activity 1033 + + 10a10e4c-5e3b-47df-a6f6-613f41871e4a + + true + Er en almindelig aktivitet + 1030 + 78651c9e-4376-11de-a6d5-001cc46616fb @@ -8649,6 +9246,13 @@ Information regarding whether the activity is a regular activity type or event type. 1033 + + 9f43e93e-a030-4545-9a71-a3f06c14f018 + + true + Oplysninger om, hvorvidt aktiviteten er en almindelig aktivitetstype eller hændelsestype. + 1030 + 78651ca0-4376-11de-a6d5-001cc46616fb @@ -8667,6 +9271,13 @@ Is Regular Activity 1033 + + 4df21669-f81f-48f1-a7b1-0d2528118df8 + + true + Er en almindelig aktivitet + 1030 + 78651c9f-4376-11de-a6d5-001cc46616fb @@ -8708,6 +9319,13 @@ No 1033 + + fde5dcb6-c4bd-492f-ada6-8b1fa9e92cbd + + true + Nej + 1030 + 78651ca2-4376-11de-a6d5-001cc46616fb @@ -8741,6 +9359,13 @@ Yes 1033 + + 1c8ac816-1352-4617-adda-b886d3cf1d2f + + true + Ja + 1030 + 78651ca4-4376-11de-a6d5-001cc46616fb @@ -8874,6 +9499,13 @@ Information regarding whether the activity was created from a workflow rule. 1033 + + 85eae2db-5b1e-4c89-9e9d-bb3502098a7c + + true + Angiver, om aktiviteten blev oprettet ud fra en arbejdsprocesregel. + 1030 + 8df1fbc4-2241-db11-898a-0007e9e17ebd @@ -8892,6 +9524,13 @@ Is Workflow Created 1033 + + 8f1918a1-20ec-4eb6-9197-d1bc07b75670 + + true + Er der oprettet en arbejdsproces? + 1030 + 8cf1fbc4-2241-db11-898a-0007e9e17ebd @@ -8980,6 +9619,13 @@ Information regarding whether the activity was created from a workflow rule. 1033 + + 1bbce3ed-390c-4efa-9fae-c6d2a38d39c3 + + true + Angiver, om aktiviteten blev oprettet ud fra en arbejdsprocesregel. + 1030 + 82afe47f-edc8-43e4-85bf-348f300513aa @@ -8998,6 +9644,13 @@ Is Workflow Created 1033 + + c84cf33a-10b5-4e77-8ad1-7ff74e130191 + + true + Er der oprettet en arbejdsproces? + 1030 + 981057c9-783b-432d-926d-44aa8be12929 @@ -9039,6 +9692,13 @@ No 1033 + + 15c7d729-ce4c-4c75-a79b-270618886736 + + true + Nej + 1030 + 8ff1fbc4-2241-db11-898a-0007e9e17ebd @@ -9072,6 +9732,13 @@ Yes 1033 + + f7219213-3a8c-4cf2-be68-e6e0fc695eae + + true + Ja + 1030 + 91f1fbc4-2241-db11-898a-0007e9e17ebd @@ -9205,6 +9872,13 @@ Contains the date and time stamp of the last on hold time. 1033 + + e637c845-186d-472d-adf6-bf169ceebd48 + + true + Indeholder dato- og klokkeslætsstemplet for den seneste tid for I venteposition. + 1030 + 68435689-f93a-478d-889a-710f093323a7 @@ -9223,6 +9897,13 @@ Last On Hold Time 1033 + + 428ce856-255e-4a1a-9950-d64138772ebf + + true + Seneste tid for I venteposition + 1030 + 90e0c90b-8caa-4a3a-995c-5bfb8d679238 @@ -9336,6 +10017,13 @@ Left the voice mail 1033 + + 11040d7c-71fe-44ed-a786-ff24dfe6bca2 + + true + Har lagt talebeskeden + 1030 + af151769-a540-435c-8e7e-6d1f26c4e900 @@ -9354,6 +10042,13 @@ Left Voice Mail 1033 + + a5f96ed5-f051-4601-8319-fd6d9acf8033 + + true + Har lagt talebesked + 1030 + d7653318-3b33-429c-8b53-37ffbf436d16 @@ -9442,6 +10137,13 @@ Left Voice Mail. 1033 + + ca93fc66-7e20-47db-aa5a-a0f4b6a15680 + + true + Har lagt talebesked. + 1030 + f71f0547-fe55-402d-b600-da8610bb715a @@ -9460,6 +10162,13 @@ Left Voice Mail 1033 + + a646911c-4a7f-486e-a99b-dfcba291158c + + true + Har lagt talebesked + 1030 + 285ab879-3602-4615-9dde-794ffd8d9845 @@ -9501,6 +10210,13 @@ No 1033 + + 91284ca6-5916-48f7-b8cc-8a7f6e860bc8 + + true + Nej + 1030 + b387c6b5-d854-434e-87f2-9ecb7df808b0 @@ -9534,6 +10250,13 @@ Yes 1033 + + c57f8380-0a27-4980-a250-aa48c76042ce + + true + Ja + 1030 + ae04da8b-2e98-4d51-a2b4-f27c7fc9183b @@ -9667,6 +10390,13 @@ Unique identifier of user who last modified the activity. 1033 + + 37988fcf-c7a3-4e48-b5f4-02c1b85dbf92 + + true + Entydigt id for den bruger, der sidst ændrede aktiviteten. + 1030 + d240b506-2341-db11-898a-0007e9e17ebd @@ -9685,6 +10415,13 @@ Modified By 1033 + + ae382dfe-a9a7-480c-ae06-0b44902c921f + + true + Ændret af + 1030 + d140b506-2341-db11-898a-0007e9e17ebd @@ -9994,6 +10731,13 @@ Date and time when activity was last modified. 1033 + + 7a92ad36-8159-4ac5-85a0-6b804f18afe1 + + true + Dato og klokkeslæt for den seneste ændring af aktiviteten. + 1030 + 3fcee1dc-2241-db11-898a-0007e9e17ebd @@ -10012,6 +10756,13 @@ Last Updated 1033 + + 7e176abb-70b2-46d3-a3da-ba15117d10a7 + + true + Sidst opdateret + 1030 + 3ecee1dc-2241-db11-898a-0007e9e17ebd @@ -10125,6 +10876,13 @@ Unique identifier of the delegate user who last modified the activitypointer. 1033 + + 4b8bfffa-dc46-46b8-acd5-0a7e52f1fb6c + + true + Entydigt id for den stedfortrædende bruger, der senest ændrede aktivitetspointeren. + 1030 + 54de3065-1bb4-4055-a3ce-aa920c68e715 @@ -10143,6 +10901,13 @@ Modified By (Delegate) 1033 + + 89588fba-618c-469d-884b-08794501ab71 + + true + Ændret af (stedfortræder) + 1030 + 6677eebe-541b-4923-bb5c-177804460c09 @@ -10452,6 +11217,13 @@ Shows how long, in minutes, that the record was on hold. 1033 + + b5e90340-dd59-4549-8e44-de685bb38cd0 + + true + Viser, hvor længe posten var i venteposition i minutter. + 1030 + 3941b8a2-4e5d-4db5-8ef4-6e82c593d46d @@ -10470,6 +11242,13 @@ On Hold Time (Minutes) 1033 + + 55cb1d39-f95c-44b2-823e-768591d12ebb + + true + Tid for I venteposition (minutter) + 1030 + c3587219-995e-4ef4-85fa-007a7a0f2a56 @@ -10576,6 +11355,13 @@ Unique identifier of the user or team who owns the activity. 1033 + + 9c64d03d-546c-4810-8a57-b5a0dcf06442 + + true + Entydigt id for den bruger eller det team, der ejer aktiviteten. + 1030 + e041b506-2341-db11-898a-0007e9e17ebd @@ -10594,6 +11380,13 @@ Owner 1033 + + 00c9681a-6dd8-4f0d-88b5-42eb84ab9385 + + true + Ejer + 1030 + df41b506-2341-db11-898a-0007e9e17ebd @@ -10999,6 +11792,13 @@ Unique identifier of the business unit that owns the activity. 1033 + + 360e21f4-b298-4154-8490-3773b5d5bf27 + + true + Entydigt id for den afdeling, der ejer aktiviteten. + 1030 + 01f2fbc4-2241-db11-898a-0007e9e17ebd @@ -11017,6 +11817,13 @@ Owning Business Unit 1033 + + ffa2fba8-564f-4276-b4c6-4debe07a3d79 + + true + Ejende afdeling + 1030 + 00f2fbc4-2241-db11-898a-0007e9e17ebd @@ -11224,6 +12031,13 @@ Unique identifier of the team that owns the activity. 1033 + + 96df7f01-01f0-40c6-b2d7-87fb5caba03d + + true + Entydigt id for det team, der ejer aktiviteten. + 1030 + 9e8b1a63-45d5-4857-aefd-f19e8da8f940 @@ -11242,6 +12056,13 @@ Owning Team 1033 + + 3534624e-fd28-4fcb-a8c9-efadaf49cde8 + + true + Ejende team + 1030 + 51a52cb2-318b-43a3-aa06-8a27499f9b1c @@ -11347,6 +12168,13 @@ Unique identifier of the user that owns the activity. 1033 + + d0b25cad-99b8-4014-98e8-69f8d6e4f58a + + true + Entydigt id for den bruger, der ejer aktiviteten. + 1030 + 8d6c7329-20e1-46c0-8058-f2e0256b821d @@ -11365,6 +12193,13 @@ Owning User 1033 + + df00e7d0-a40a-4fe0-8a5e-210158cf80f4 + + true + Ejende bruger + 1030 + b63dded0-6588-4ed0-9b56-81a5c5c95b0c @@ -11470,6 +12305,13 @@ For internal use only. 1033 + + 23e41626-1236-47fd-aa5c-2f9679da3ded + + true + Kun til intern brug. + 1030 + da421488-7855-4122-adf1-d547be08f547 @@ -11488,6 +12330,13 @@ Delay activity processing until 1033 + + b2684ed5-5389-496b-a159-b00375ee5b72 + + true + Udskyd aktivitetsbehandlingen indtil + 1030 + 0f6ce79f-348b-4b87-8b34-537e9ce9dd6c @@ -11601,6 +12450,13 @@ Priority of the activity. 1033 + + 766d4f97-0a04-443f-8686-467678987546 + + true + Aktivitetens prioritet. + 1030 + 49e9af0c-2341-db11-898a-0007e9e17ebd @@ -11619,6 +12475,13 @@ Priority 1033 + + 48bf4ff2-d7a6-4e43-84a1-656de5d8913c + + true + Prioritet + 1030 + 48e9af0c-2341-db11-898a-0007e9e17ebd @@ -11707,6 +12570,13 @@ Priority of the activity. 1033 + + af5375af-1287-4340-a00e-b12a75558e9b + + true + Aktivitetens prioritet. + 1030 + 19c48809-8486-4162-a5ad-2ef9868fd893 @@ -11725,6 +12595,13 @@ Priority 1033 + + 370e4cfc-1825-4b58-99a0-a6b40e28d942 + + true + Prioritet + 1030 + 9ee214f5-4601-4e90-8ecd-53416fb9e12d @@ -11767,6 +12644,13 @@ Low 1033 + + 27faf8d2-6472-4c23-8769-5e31f41455e6 + + true + Lav + 1030 + 4be9af0c-2341-db11-898a-0007e9e17ebd @@ -11800,6 +12684,13 @@ Normal 1033 + + a7467371-c88c-4222-9b7a-9f41d48ab173 + + true + Normal + 1030 + 4de9af0c-2341-db11-898a-0007e9e17ebd @@ -11833,6 +12724,13 @@ High 1033 + + 6cf0a740-8626-49f8-ae3b-534d0d8109f0 + + true + Høj + 1030 + 4fe9af0c-2341-db11-898a-0007e9e17ebd @@ -11971,6 +12869,13 @@ Unique identifier of the Process. 1033 + + a28f6c7d-ec1c-4c55-9c63-cd73b714dc0f + + true + Entydigt id for processen. + 1030 + 53569cf2-5631-46bf-a321-beebd7911268 @@ -11989,6 +12894,13 @@ Process 1033 + + ebbba4d4-9ff9-4d7d-b4ab-3be92ae1b79c + + true + Proces + 1030 + 87b2f83b-e579-4829-8fb8-4004cc4190ed @@ -12090,6 +13002,13 @@ Unique identifier of the object with which the activity is associated. 1033 + + 3d41574b-fc7b-4b3d-a997-e7c2a6a81346 + + true + Entydigt id for det objekt, som aktiviteten er tilknyttet. + 1030 + 9be0eed0-2241-db11-898a-0007e9e17ebd @@ -12108,6 +13027,13 @@ Regarding 1033 + + bf8379f9-65bd-4488-933c-8649e7ef902e + + true + Angående + 1030 + 9ae0eed0-2241-db11-898a-0007e9e17ebd @@ -12523,6 +13449,13 @@ Scheduled duration of the activity, specified in minutes. 1033 + + bd999c05-a460-471d-aa7e-8a0484a0b392 + + true + Planlagt varighed af aktiviteten, angivet i minutter. + 1030 + 0598ba00-2341-db11-898a-0007e9e17ebd @@ -12541,6 +13474,13 @@ Scheduled Duration 1033 + + f2b2efc9-3423-44f9-95e8-f4b86b533873 + + true + Planlagt varighed + 1030 + 0498ba00-2341-db11-898a-0007e9e17ebd @@ -12647,6 +13587,13 @@ Scheduled end time of the activity. 1033 + + fc361d01-ec7d-48ba-adf2-0d243ae574b8 + + true + Aktivitetens planlagte sluttidspunkt. + 1030 + 7940b506-2341-db11-898a-0007e9e17ebd @@ -12665,6 +13612,13 @@ Due Date 1033 + + c0e89b48-e403-491c-aaf5-b9134b39d370 + + true + Forfaldsdato + 1030 + 7840b506-2341-db11-898a-0007e9e17ebd @@ -12778,6 +13732,13 @@ Scheduled start time of the activity. 1033 + + e25ddfe2-1d5d-4a1e-b720-c2963d68b742 + + true + Aktivitetens planlagte starttidspunkt. + 1030 + 60d8dee2-2241-db11-898a-0007e9e17ebd @@ -12796,6 +13757,13 @@ Start Date 1033 + + db344d38-f749-4fa6-934d-f514d1d9648f + + true + Startdato + 1030 + 5fd8dee2-2241-db11-898a-0007e9e17ebd @@ -12909,6 +13877,13 @@ Unique identifier of the mailbox associated with the sender of the email message. 1033 + + 1f90973f-668f-40c7-be0d-d2f2e95b12dc + + true + Entydigt id for den postkasse, der er tilknyttet afsenderen af mailen. + 1030 + 24eb10c9-cb7a-4487-9c00-08a2ce11f725 @@ -12927,6 +13902,13 @@ Sender's Mailbox 1033 + + eeaacd49-736f-4a71-812d-f1cc6af9e485 + + true + Afsenders postkasse + 1030 + 0de65f80-a91b-4a7a-b745-9546f103987b @@ -13134,6 +14116,13 @@ Date and time when the activity was sent. 1033 + + 7fb9f335-ff99-4ef6-a3a4-b5452a9f1feb + + true + Dato og klokkeslæt for afsendelse af aktiviteten. + 1030 + 6f4b5001-831a-4d71-bffb-e4c8fbe3de25 @@ -13152,6 +14141,13 @@ Date Sent 1033 + + 2af2e60d-5eca-4a84-b23a-cffd0dfd07cf + + true + Sendt + 1030 + 3e805939-7c4f-4f8f-8537-d3a3be6a6c17 @@ -13265,6 +14261,13 @@ Uniqueidentifier specifying the id of recurring series of an instance. 1033 + + 188b4ec6-94c5-4917-805b-2d32c51cde0d + + true + Entydigt id for en tilbagevendende serie af en forekomst. + 1030 + aa70ec6e-f46b-4ecd-b777-ac8deadd6f35 @@ -13283,6 +14286,13 @@ Series Id 1033 + + bffac9d9-7aca-405d-a41d-e412beec71e9 + + true + Serie-id + 1030 + 7f7431cc-24f6-4b69-9852-b2ec29f05328 @@ -13384,6 +14394,13 @@ Choose the service level agreement (SLA) that you want to apply to the case record. 1033 + + 4366d6e6-29e6-420f-b579-31ddad1ffdc8 + + true + Vælg den serviceaftale (SLA), du vil anvende på sagsposten. + 1030 + 254755d0-f9f5-4553-8f16-1f37972d7517 @@ -13402,6 +14419,13 @@ SLA 1033 + + 83927a82-6568-48d5-8c61-08556f1b9257 + + true + SLA + 1030 + 04a91c79-b4a4-4d65-8ce0-0d4698e5a496 @@ -13507,6 +14531,13 @@ Last SLA that was applied to this case. This field is for internal use only. 1033 + + e8c19b7b-e1c1-4584-922a-d9e19596c4ef + + true + Sidste SLA, der blev anvendt til denne sag. Dette felt er kun beregnet til intern brug. + 1030 + 05ccf038-ef2f-44dc-bbdb-9eaa773cb47c @@ -13525,6 +14556,13 @@ Last SLA applied 1033 + + 45804084-ba68-4753-835e-501330061358 + + true + Sidst anvendte SLA + 1030 + 56a4adf2-64da-48c4-82ef-7acb743d5519 @@ -13834,6 +14872,13 @@ Shows the date and time by which the activities are sorted. 1033 + + a9eb8393-f879-4371-ba67-7d0c2b396096 + + true + Viser den dato og det klokkeslæt, aktiviteterne er sorteret efter. + 1030 + 93e7a16f-858c-4dbc-9308-f4198b240926 @@ -13852,6 +14897,13 @@ Sort Date 1033 + + 0b200367-81f1-4b80-943e-48f50f81edbb + + true + Sorteringsdato + 1030 + dd6d34bb-1829-487e-8966-571bc5b3310f @@ -13965,6 +15017,13 @@ Unique identifier of the Stage. 1033 + + 95c7aac5-dc2c-434c-a120-b528dae1d5c8 + + true + Entydigt id for fasen. + 1030 + c11d5b7a-c355-48e3-8a01-2d8ceb1e8c03 @@ -13983,6 +15042,13 @@ (Deprecated) Process Stage 1033 + + 55012a6e-20b1-4123-8956-02919125e87f + + true + (Udfaset) Navn på procesfase + 1030 + 16694ead-ea64-45a3-adf3-01431c690c68 @@ -14084,6 +15150,13 @@ Status of the activity. 1033 + + 236747c3-0c33-449d-9e71-7e860cc5002f + + true + Status for aktiviteten. + 1030 + d1f1fbc4-2241-db11-898a-0007e9e17ebd @@ -14102,6 +15175,13 @@ Activity Status 1033 + + 81b72fe9-4a94-4d5f-8b29-322133faa99d + + true + Aktivitetsstatus + 1030 + d0f1fbc4-2241-db11-898a-0007e9e17ebd @@ -14190,6 +15270,13 @@ Status of the activity. 1033 + + 143a1d1b-58ce-41fd-ba4a-8fab8b0cb309 + + true + Status for aktiviteten. + 1030 + 23781a68-8211-440d-974d-bc291fb1cab4 @@ -14208,6 +15295,13 @@ Activity Status 1033 + + a325b18d-164b-48d0-9643-3314a918ad31 + + true + Aktivitetsstatus + 1030 + a499d7b1-df7b-47f7-b586-eefd5eafea84 @@ -14250,6 +15344,13 @@ Open 1033 + + 1e1a2478-595f-470d-beb4-0b88a30aac0a + + true + Åben + 1030 + d3f1fbc4-2241-db11-898a-0007e9e17ebd @@ -14285,6 +15386,13 @@ Completed 1033 + + 2ab55e1d-6d1f-42e7-b994-8693004df15a + + true + Fuldført + 1030 + d5f1fbc4-2241-db11-898a-0007e9e17ebd @@ -14320,6 +15428,13 @@ Canceled 1033 + + d2345a53-23e6-4d9d-97ca-028143a13330 + + true + Annulleret + 1030 + d7f1fbc4-2241-db11-898a-0007e9e17ebd @@ -14355,6 +15470,13 @@ Scheduled 1033 + + fb12d752-ee37-45fb-8a50-b1a7352b9b1c + + true + Planlagt + 1030 + d9f1fbc4-2241-db11-898a-0007e9e17ebd @@ -14491,6 +15613,13 @@ Reason for the status of the activity. 1033 + + e339c9cb-f24e-4984-8efb-6ec012da0402 + + true + Årsag til aktivitetens status. + 1030 + a1cde1dc-2241-db11-898a-0007e9e17ebd @@ -14509,6 +15638,13 @@ Status Reason 1033 + + 225fae37-4e6f-4805-ad86-6c4feef04101 + + true + Statusårsag + 1030 + a0cde1dc-2241-db11-898a-0007e9e17ebd @@ -14597,6 +15733,13 @@ Reason for the status of the activity. 1033 + + 520af189-374e-40ef-868d-70e5ffc8d730 + + true + Årsag til aktivitetens status. + 1030 + 8a8c4344-dba1-4e71-9e14-604db95d82eb @@ -14615,6 +15758,13 @@ Status Reason 1033 + + b0ab6cc2-2dbc-4001-9e66-ffdf130e6338 + + true + Statusårsag + 1030 + fdcc0916-f52d-44fe-b6a9-a7d1e24622e9 @@ -14657,6 +15807,13 @@ Open 1033 + + be85704c-57d5-4f3e-9bb5-1d40f3bf6751 + + true + Åben + 1030 + a3cde1dc-2241-db11-898a-0007e9e17ebd @@ -14692,6 +15849,13 @@ Completed 1033 + + 36bc1902-b7a3-4494-a9f9-3e72ada4a21e + + true + Fuldført + 1030 + a5cde1dc-2241-db11-898a-0007e9e17ebd @@ -14727,6 +15891,13 @@ Canceled 1033 + + 6951a715-ac2d-44d1-af62-5c67aaf6e501 + + true + Annulleret + 1030 + a7cde1dc-2241-db11-898a-0007e9e17ebd @@ -14762,6 +15933,13 @@ Scheduled 1033 + + 2361d1c9-9e84-41f1-9588-7af40f0d8703 + + true + Planlagt + 1030 + a9cde1dc-2241-db11-898a-0007e9e17ebd @@ -14898,6 +16076,13 @@ Subject associated with the activity. 1033 + + 4b1cd6f2-cdc4-48a2-a5da-f39b4d97a532 + + true + Det emne, der er tilknyttet aktiviteten. + 1030 + b2aac7f4-2241-db11-898a-0007e9e17ebd @@ -14916,6 +16101,13 @@ Subject 1033 + + d33372c9-31f0-4745-95e2-6757212c42be + + true + Emne + 1030 + b1aac7f4-2241-db11-898a-0007e9e17ebd @@ -15028,6 +16220,13 @@ For internal use only. 1033 + + 398b3971-dd1f-4ed7-9d05-3074eef9c8bf + + true + Kun til intern brug. + 1030 + 0c59392f-29db-4882-86cc-956c1f428554 @@ -15046,6 +16245,13 @@ Time Zone Rule Version Number 1033 + + 0914afbc-70d0-494a-88ff-9d4ae488efc5 + + true + Versionsnummeret for tidszonereglen + 1030 + a4fbb5d7-cd33-4e92-a703-b9f5ab057fc4 @@ -15152,6 +16358,13 @@ Unique identifier of the currency associated with the activitypointer. 1033 + + 45e74e8d-db54-4df7-bf4b-f29904d0741c + + true + Entydigt id for den valuta, der er tilknyttet aktivitetspointeren. + 1030 + fb517f65-b69d-492b-aa27-cee56d87a1eb @@ -15170,6 +16383,13 @@ Currency 1033 + + e9138609-65c1-4616-bee4-e9d310fe5b5d + + true + Valuta + 1030 + 697ffa95-9e46-4c37-98ec-814c9b669853 @@ -15377,6 +16597,13 @@ For internal use only. 1033 + + c7fa9afc-245c-4e4c-9322-a55703735dd2 + + true + Kun til intern brug. + 1030 + 17606c58-7bc0-4d8b-90f3-05d462125bb3 @@ -15395,6 +16622,13 @@ (Deprecated) Traversed Path 1033 + + dd447edd-92a7-4f32-a32f-87575df5c967 + + true + (Udfaset) Gennemløbet sti + 1030 + 4e020004-3b66-401f-8005-b882d220713c @@ -15507,6 +16741,13 @@ Time zone code that was in use when the record was created. 1033 + + 4ba3e3ad-0148-4ef2-b7db-71a30bf08e04 + + true + Den tidszonekode, der var i brug ved oprettelse af posten. + 1030 + 373ebc35-4487-4b12-a64a-57786762720a @@ -15525,6 +16766,13 @@ UTC Conversion Time Zone Code 1033 + + 6c59dc5c-0a1f-45a1-af54-c08182f0a0b2 + + true + Tidszonekode til UTC-konvertering + 1030 + 4676e642-87ee-43a4-bff9-36170a5ed06f @@ -15631,6 +16879,13 @@ Version number of the activity. 1033 + + d2f643d3-c13d-417d-94b0-09d292fcdb0d + + true + Versionsnummer for aktiviteten. + 1030 + 5292da47-cf5f-4b65-882c-e144fa4d71bf @@ -15649,6 +16904,13 @@ Version Number 1033 + + 4d92b512-21f1-4df1-9364-c5a3930f190e + + true + Versionsnummer + 1030 + 225aacb9-e222-48bb-a4c4-508c6979aaa3 @@ -15803,6 +17065,13 @@ Task performed, or to be performed, by a user. An activity is any action for which an entry can be made on a calendar. 1033 + + bb4d76ed-3a6b-47fb-8e04-6820c63735b8 + + true + En opgave, der er udført af (eller som skal udføres af) en bruger. En aktivitet er enhver handling, der kan angives i kalenderen. + 1030 + 499709b3-2241-db11-898a-0007e9e17ebd @@ -15821,6 +17090,13 @@ Activities 1033 + + 07251060-0a5d-4ec6-8d14-500c510e69cc + + true + Aktiviteter + 1030 + 4b9709b3-2241-db11-898a-0007e9e17ebd @@ -15839,6 +17115,13 @@ Activity 1033 + + 18a4c564-48ed-4db3-8e22-6fd5594f3da3 + + true + Aktivitet + 1030 + 4a9709b3-2241-db11-898a-0007e9e17ebd @@ -18717,6 +20000,13 @@ Unique identifier for address 1. 1033 + + 1516294a-1a50-4f34-92f6-66065c8aa12e + + true + Entydigt id for adresse 1. + 1030 + 9599ba00-2341-db11-898a-0007e9e17ebd @@ -18735,6 +20025,13 @@ Address 1: ID 1033 + + d189bf1c-3c7c-4741-bd14-7b7872b49387 + + true + Adresse 1: Id + 1030 + 9499ba00-2341-db11-898a-0007e9e17ebd @@ -18836,6 +20133,13 @@ Type of address for address 1, such as billing, shipping, or primary address. 1033 + + c9091054-6f92-4f18-9193-4133f6d2f7da + + true + Adressetypen for adresse 1, f.eks. faktureringsadresse, forsendelsesadresse eller primær adresse. + 1030 + 9553c2fa-2241-db11-898a-0007e9e17ebd @@ -18854,6 +20158,13 @@ Address 1: Address Type 1033 + + 094069e7-7d6d-43b7-9f31-f7e3caf492e8 + + true + Adresse 1: Adressetype + 1030 + 9453c2fa-2241-db11-898a-0007e9e17ebd @@ -18942,6 +20253,13 @@ Type of address for address 1, such as billing, shipping, or primary address. 1033 + + ad93a066-38ac-4267-8b7a-1a62a309d516 + + true + Adressetypen for adresse 1, f.eks. faktureringsadresse, forsendelsesadresse eller primær adresse. + 1030 + 95c22060-1c19-4b46-9d8a-64153baeb977 @@ -18960,6 +20278,13 @@ Address 1: Address Type 1033 + + 9ff9090d-a370-4814-8451-84e019aa284c + + true + Adresse 1: Adressetype + 1030 + 6300dec3-0154-4d3e-8b3e-3e7200a94a84 @@ -19002,6 +20327,13 @@ Default Value 1033 + + df706e99-26bd-45fa-9c18-98bdfa6dc0f3 + + true + Standardværdi + 1030 + 9753c2fa-2241-db11-898a-0007e9e17ebd @@ -19140,6 +20472,13 @@ City name for address 1. 1033 + + 0ccedc3d-fce6-4f23-9cd1-c35d0294fcf9 + + true + Bynavn i adresse 1. + 1030 + 47abc7f4-2241-db11-898a-0007e9e17ebd @@ -19158,6 +20497,13 @@ Bill To City 1033 + + 2851efb8-66ed-4487-8046-274bc73324b6 + + true + Faktura til By + 1030 + 46abc7f4-2241-db11-898a-0007e9e17ebd @@ -19270,6 +20616,13 @@ Country/region name for address 1. 1033 + + 27b9a413-b301-4b56-9ec2-538792165837 + + true + Lande- eller områdenavn i adresse 1. + 1030 + a1abc7f4-2241-db11-898a-0007e9e17ebd @@ -19288,6 +20641,13 @@ Bill To Country/Region 1033 + + be898706-24e2-4496-a806-6a44b439a84e + + true + Faktura til Land/område + 1030 + a0abc7f4-2241-db11-898a-0007e9e17ebd @@ -19400,6 +20760,13 @@ County name for address 1. 1033 + + 7d05be15-c8f8-4071-b069-1c240e318f8d + + true + Region i adresse 1. + 1030 + f8cde1dc-2241-db11-898a-0007e9e17ebd @@ -19418,6 +20785,13 @@ Address 1: County 1033 + + d3c9cba8-e595-40f9-8741-519341fb3057 + + true + Adresse 1: Region + 1030 + f7cde1dc-2241-db11-898a-0007e9e17ebd @@ -19530,6 +20904,13 @@ Fax number for address 1. 1033 + + fc818a52-337d-4820-96a4-ad0a20cbf627 + + true + Faxnummer til adresse 1. + 1030 + d499ba00-2341-db11-898a-0007e9e17ebd @@ -19548,6 +20929,13 @@ Address 1: Fax 1033 + + 1732ee3b-24ba-4bea-b199-5677d51df8dd + + true + Adresse 1: Fax + 1030 + d399ba00-2341-db11-898a-0007e9e17ebd @@ -19660,6 +21048,13 @@ Latitude for address 1. 1033 + + 3e262a3d-2dfb-4a7f-9f4f-609fac9c5903 + + true + Breddegrad for adresse 1. + 1030 + 669aba00-2341-db11-898a-0007e9e17ebd @@ -19678,6 +21073,13 @@ Address 1: Latitude 1033 + + 362a1d48-cf84-4f85-8bc8-e011e02ffd20 + + true + Adresse 1: Breddegrad + 1030 + 659aba00-2341-db11-898a-0007e9e17ebd @@ -19785,6 +21187,13 @@ First line for entering address 1 information. 1033 + + 9418e24d-8616-428c-a941-dd2c11e1b5dc + + true + Første linje til angivelse af oplysninger om adresse 1. + 1030 + b8f1fbc4-2241-db11-898a-0007e9e17ebd @@ -19803,6 +21212,13 @@ Bill To Street 1 1033 + + a3d20a89-bb0f-4303-9b3c-a1dd8b8fa0ef + + true + Faktura til Gade 1 + 1030 + b7f1fbc4-2241-db11-898a-0007e9e17ebd @@ -19915,6 +21331,13 @@ Second line for entering address 1 information. 1033 + + 59da5863-c797-4b60-9799-7dc727ef3f2f + + true + Anden linje til angivelse af oplysninger om adresse 1. + 1030 + 3153c2fa-2241-db11-898a-0007e9e17ebd @@ -19933,6 +21356,13 @@ Bill To Street 2 1033 + + d3fd2788-5db1-4023-b696-0e6fbd135746 + + true + Faktura til Gade 2 + 1030 + 3053c2fa-2241-db11-898a-0007e9e17ebd @@ -20045,6 +21475,13 @@ Third line for entering address 1 information. 1033 + + 82ec2f70-a68f-454e-909c-c63977a0ab7d + + true + Tredje linje til angivelse af oplysninger om adresse 1. + 1030 + c590aa12-2341-db11-898a-0007e9e17ebd @@ -20063,6 +21500,13 @@ Bill To Street 3 1033 + + 32b4921f-5b2b-4dda-bda0-61f35a6031ae + + true + Faktura til Gade 3 + 1030 + c490aa12-2341-db11-898a-0007e9e17ebd @@ -20175,6 +21619,13 @@ Longitude for address 1. 1033 + + 22394255-5e9a-422a-a02f-d94a29f973b0 + + true + Længdegrad for adresse 1. + 1030 + e891aa12-2341-db11-898a-0007e9e17ebd @@ -20193,6 +21644,13 @@ Address 1: Longitude 1033 + + 8d40e827-fb74-4d30-b8c5-2a574c0aaa8e + + true + Adresse 1: Længdegrad + 1030 + e791aa12-2341-db11-898a-0007e9e17ebd @@ -20300,6 +21758,13 @@ Name to enter for address 1. 1033 + + 26d11bd1-e9ae-4c66-85e1-c74300be5e93 + + true + Det navn, der skal angives for adresse 1. + 1030 + e040b506-2341-db11-898a-0007e9e17ebd @@ -20318,6 +21783,13 @@ Address 1: Name 1033 + + c64f674d-54f3-4e9b-9610-8364087721ee + + true + Adresse 1: Navn + 1030 + df40b506-2341-db11-898a-0007e9e17ebd @@ -20430,6 +21902,13 @@ ZIP Code or postal code for address 1. 1033 + + 71ced30b-4f2c-4900-9aae-27014fbffedb + + true + Postnummer i adresse 1. + 1030 + d7e8af0c-2341-db11-898a-0007e9e17ebd @@ -20448,6 +21927,13 @@ Bill To ZIP/Postal Code 1033 + + f981e8c0-c981-4db4-b439-ed264e599c16 + + true + Faktura til Postnummer + 1030 + d6e8af0c-2341-db11-898a-0007e9e17ebd @@ -20560,6 +22046,13 @@ Post office box number for address 1. 1033 + + 63a013cc-9618-453c-a835-4a8a3e34cbea + + true + Postboksnummer i adresse 1. + 1030 + 3f99ba00-2341-db11-898a-0007e9e17ebd @@ -20578,6 +22071,13 @@ Address 1: Post Office Box 1033 + + 5878e14a-fda9-454e-9ea4-5d5b455ba185 + + true + Adresse 1: Postboksnummer + 1030 + 3e99ba00-2341-db11-898a-0007e9e17ebd @@ -20690,6 +22190,13 @@ Method of shipment for address 1. 1033 + + b3c12bf9-a722-42b0-8592-3981cfa279f7 + + true + Forsendelsesmåde for adresse 1. + 1030 + e899ba00-2341-db11-898a-0007e9e17ebd @@ -20708,6 +22215,13 @@ Address 1: Shipping Method 1033 + + a77f36af-21cd-46a5-b7f8-97f5303b84c6 + + true + Adresse 1: Forsendelsesmåde + 1030 + e799ba00-2341-db11-898a-0007e9e17ebd @@ -20796,6 +22310,13 @@ Method of shipment for address 1. 1033 + + 4b00b875-4cfd-4a8e-b697-64b3e6c27245 + + true + Forsendelsesmåde for adresse 1. + 1030 + cfaf8915-239f-4e0b-8859-7eb6f147fa21 @@ -20814,6 +22335,13 @@ Address 1: Shipping Method 1033 + + dfdfa382-0316-4488-81c1-f19790ba454e + + true + Adresse 1: Forsendelsesmåde + 1030 + 2ee12fa9-20ff-4590-b7ce-08fbf009bc4f @@ -20856,6 +22384,13 @@ Default Value 1033 + + aad46134-9d38-48d9-a720-4b338dc427a6 + + true + Standardværdi + 1030 + ea99ba00-2341-db11-898a-0007e9e17ebd @@ -20994,6 +22529,13 @@ State or province for address 1. 1033 + + ea679686-ee86-413c-8447-f3797c4b117c + + true + Område i adresse 1. + 1030 + 67e0eed0-2241-db11-898a-0007e9e17ebd @@ -21012,6 +22554,13 @@ Bill To State/Province 1033 + + dcd1bf4b-0fcd-4387-9bf1-3a196b9862f9 + + true + Faktura til Område + 1030 + 66e0eed0-2241-db11-898a-0007e9e17ebd @@ -21124,6 +22673,13 @@ First telephone number associated with address 1. 1033 + + 1af11ba4-11b1-41db-ad06-8f13a00a7cd0 + + true + Første telefonnummer, der er tilknyttet adresse 1. + 1030 + 17d6a218-2341-db11-898a-0007e9e17ebd @@ -21142,6 +22698,13 @@ Main Phone 1033 + + 1744403a-f850-482c-8543-bd8c015a2505 + + true + Primær telefon + 1030 + 16d6a218-2341-db11-898a-0007e9e17ebd @@ -21254,6 +22817,13 @@ Second telephone number associated with address 1. 1033 + + 24049d34-005a-4730-97ba-4447b89c8fd5 + + true + Andet telefonnummer, der er tilknyttet adresse 1. + 1030 + 3e98ba00-2341-db11-898a-0007e9e17ebd @@ -21272,6 +22842,13 @@ Other Phone 1033 + + 7c2423a2-4b2e-4e06-8f3a-d0ffdca1c2d1 + + true + Anden telefon + 1030 + 3d98ba00-2341-db11-898a-0007e9e17ebd @@ -21384,6 +22961,13 @@ Third telephone number associated with address 1. 1033 + + 112bf8a4-9400-40d4-bd56-2b0d7e60d6aa + + true + Tredje telefonnummer, der er tilknyttet adresse 1. + 1030 + 4f1c9b1e-2341-db11-898a-0007e9e17ebd @@ -21402,6 +22986,13 @@ Address 1: Telephone 3 1033 + + b197ed1b-61ae-442a-8de8-fe31246db870 + + true + Adresse 1: Telefon 3 + 1030 + 4e1c9b1e-2341-db11-898a-0007e9e17ebd @@ -21514,6 +23105,13 @@ United Parcel Service (UPS) zone for address 1. 1033 + + 9465376a-32ed-4c7a-91ad-61ace2c23fd9 + + true + UPS-zone (United Parcel Service) for adresse 1. + 1030 + 1ecee1dc-2241-db11-898a-0007e9e17ebd @@ -21532,6 +23130,13 @@ Address 1: UPS Zone 1033 + + ebb8ee32-840f-4454-99f5-950973b5d3db + + true + Adresse 1: UPS-zone + 1030 + 1dcee1dc-2241-db11-898a-0007e9e17ebd @@ -21644,6 +23249,13 @@ UTC offset for address 1. This is the difference between local time and standard Coordinated Universal Time. 1033 + + 3af0618a-f529-4ac5-88c5-273ed5ad597b + + true + Forskydning fra GMT for adresse 1. Dette er forskellen mellem lokal tid og GMT-standardtid. + 1030 + badfeed0-2241-db11-898a-0007e9e17ebd @@ -21662,6 +23274,13 @@ Address 1: UTC Offset 1033 + + ec51874b-e94c-4ec0-afb1-0e080496366a + + true + Adresse 1: Forskydning fra GMT + 1030 + b9dfeed0-2241-db11-898a-0007e9e17ebd @@ -21768,6 +23387,13 @@ Unique identifier for address 2. 1033 + + eb3bf9e6-b1fd-4b96-89ff-cc3f9f4e18c6 + + true + Entydigt id for adresse 2. + 1030 + dc26e7d6-2241-db11-898a-0007e9e17ebd @@ -21786,6 +23412,13 @@ Address 2: ID 1033 + + 39fef541-ae42-481c-a250-386f9197b1f6 + + true + Adresse 2: Id + 1030 + db26e7d6-2241-db11-898a-0007e9e17ebd @@ -21887,6 +23520,13 @@ Type of address for address 2, such as billing, shipping, or primary address. 1033 + + 1532ffbe-6039-46e3-aa7c-6e37e10e259a + + true + Adressetypen for adresse 2, f.eks. faktureringsadresse, forsendelsesadresse eller primær adresse. + 1030 + 381c9b1e-2341-db11-898a-0007e9e17ebd @@ -21905,6 +23545,13 @@ Address 2: Address Type 1033 + + 5272e94c-5ddc-4d18-b0e6-4da3e43ac9f1 + + true + Adresse 2: Adressetype + 1030 + 371c9b1e-2341-db11-898a-0007e9e17ebd @@ -21993,6 +23640,13 @@ Type of address for address 2, such as billing, shipping, or primary address. 1033 + + f2db0b7c-a0c3-49b3-9c07-81a654f84a88 + + true + Adressetypen for adresse 2, f.eks. faktureringsadresse, forsendelsesadresse eller primær adresse. + 1030 + 3362f0a0-644d-4cd3-8d06-c86a3708a80f @@ -22011,6 +23665,13 @@ Address 2: Address Type 1033 + + 0612493e-167d-4a11-a1da-a698a411d7ec + + true + Adresse 2: Adressetype + 1030 + 8e8c95a8-27cc-40e4-85bb-5768b93ae926 @@ -22053,6 +23714,13 @@ Default Value 1033 + + 922335af-ca48-4793-9340-9a244a1ff3a0 + + true + Standardværdi + 1030 + 3a1c9b1e-2341-db11-898a-0007e9e17ebd @@ -22191,6 +23859,13 @@ City name for address 2. 1033 + + 247e0d1e-5ce1-4974-8323-fa3e131fd918 + + true + Bynavn i adresse 2. + 1030 + 18d8a218-2341-db11-898a-0007e9e17ebd @@ -22209,6 +23884,13 @@ Ship To City 1033 + + d512e05b-bf67-4193-a698-f7ec161b2357 + + true + Lever til - By + 1030 + 17d8a218-2341-db11-898a-0007e9e17ebd @@ -22321,6 +24003,13 @@ Country/region name for address 2. 1033 + + ec60527b-40ed-41bc-9f47-1078fa588d8c + + true + Lande- eller områdenavn i adresse 2. + 1030 + 8fd8dee2-2241-db11-898a-0007e9e17ebd @@ -22339,6 +24028,13 @@ Ship To Country/Region 1033 + + a526cc7b-ccf4-4d9f-9969-2beafb44c7a9 + + true + Levér til - Land/område + 1030 + 8ed8dee2-2241-db11-898a-0007e9e17ebd @@ -22451,6 +24147,13 @@ County name for address 2. 1033 + + 5dfabfa5-dde6-4834-a589-f2b509db653e + + true + Region i adresse 2. + 1030 + e61dd7e8-2241-db11-898a-0007e9e17ebd @@ -22469,6 +24172,13 @@ Address 2: County 1033 + + d8ea4259-1ea6-4f4e-abfc-f0cf5ce7ec73 + + true + Adresse 2: Region + 1030 + e51dd7e8-2241-db11-898a-0007e9e17ebd @@ -22581,6 +24291,13 @@ Fax number for address 2. 1033 + + b6539665-89cf-4260-a526-e103ed7caafb + + true + Faxnummer til adresse 2. + 1030 + 851c9b1e-2341-db11-898a-0007e9e17ebd @@ -22599,6 +24316,13 @@ Address 2: Fax 1033 + + b2a01dcb-5e46-4255-8f58-5375a4158e05 + + true + Adresse 2: Fax + 1030 + 841c9b1e-2341-db11-898a-0007e9e17ebd @@ -22711,6 +24435,13 @@ Latitude for address 2. 1033 + + 97018186-f8f1-447d-8d4b-5d5533154e57 + + true + Breddegrad for adresse 2. + 1030 + 2caac7f4-2241-db11-898a-0007e9e17ebd @@ -22729,6 +24460,13 @@ Address 2: Latitude 1033 + + aa534a0a-d35f-4a59-8667-9c09fe34ff85 + + true + Adresse 2: Breddegrad + 1030 + 2baac7f4-2241-db11-898a-0007e9e17ebd @@ -22836,6 +24574,13 @@ First line for entering address 2 information. 1033 + + 9116e78b-7f21-41f1-8b58-eb8892a7b9ad + + true + Første linje til angivelse af oplysninger om adresse 2. + 1030 + ddcde1dc-2241-db11-898a-0007e9e17ebd @@ -22854,6 +24599,13 @@ Ship To Street 1 1033 + + 08b69f28-bfff-48d7-bd57-f4ec8eff062b + + true + Levér til - Gade 1 + 1030 + dccde1dc-2241-db11-898a-0007e9e17ebd @@ -22966,6 +24718,13 @@ Second line for entering address 2 information. 1033 + + ff073acb-d6f8-4f2d-925e-d2f2e238dde8 + + true + Anden linje til angivelse af oplysninger om adresse 2. + 1030 + a8f1fbc4-2241-db11-898a-0007e9e17ebd @@ -22984,6 +24743,13 @@ Ship To Street 2 1033 + + 1f865962-4d99-46af-9385-02ddd0035db1 + + true + Levér til - Gade 2 + 1030 + a7f1fbc4-2241-db11-898a-0007e9e17ebd @@ -23096,6 +24862,13 @@ Third line for entering address 2 information. 1033 + + 8febb191-32c5-4060-956d-eed7a95696e9 + + true + Tredje linje til angivelse af oplysninger om adresse 2. + 1030 + 2dcfe1dc-2241-db11-898a-0007e9e17ebd @@ -23114,6 +24887,13 @@ Ship To Street 3 1033 + + c901f4e2-7b92-4aea-8906-22d79a040490 + + true + Levér til - Gade 3 + 1030 + 2ccfe1dc-2241-db11-898a-0007e9e17ebd @@ -23226,6 +25006,13 @@ Longitude for address 2. 1033 + + 1270bbd3-5460-4426-b2f2-840e155d2a0b + + true + Længdegrad for adresse 2. + 1030 + f11ed7e8-2241-db11-898a-0007e9e17ebd @@ -23244,6 +25031,13 @@ Address 2: Longitude 1033 + + 33d81838-319b-4572-802f-b4ea928d7b3d + + true + Adresse 2: Længdegrad + 1030 + f01ed7e8-2241-db11-898a-0007e9e17ebd @@ -23351,6 +25145,13 @@ Name to enter for address 2. 1033 + + 2061a088-1ce8-4b3e-8443-24b5e07d6bfd + + true + Det navn, der skal angives for adresse 2. + 1030 + 2652c2fa-2241-db11-898a-0007e9e17ebd @@ -23369,6 +25170,13 @@ Address 2: Name 1033 + + feaa23b3-500e-4ee8-a113-dff6cad7883e + + true + Adresse 2: Navn + 1030 + 2552c2fa-2241-db11-898a-0007e9e17ebd @@ -23481,6 +25289,13 @@ ZIP Code or postal code for address 2. 1033 + + 0ee131fd-4f42-4582-82ac-48822e6b6d86 + + true + Postnummer i adresse 2. + 1030 + 8c99ba00-2341-db11-898a-0007e9e17ebd @@ -23499,6 +25314,13 @@ Ship To ZIP/Postal Code 1033 + + 59726867-c513-45fd-a276-61fce20b3198 + + true + Levér til - Postnummer + 1030 + 8b99ba00-2341-db11-898a-0007e9e17ebd @@ -23611,6 +25433,13 @@ Post office box number for address 2. 1033 + + a36fe068-2f9d-4f36-a26d-870d98306ea0 + + true + Postboksnummer i adresse 2. + 1030 + 23e8af0c-2341-db11-898a-0007e9e17ebd @@ -23629,6 +25458,13 @@ Address 2: Post Office Box 1033 + + d4a5688c-3959-4e5b-8915-a446831d9286 + + true + Adresse 2: Postboksnummer + 1030 + 22e8af0c-2341-db11-898a-0007e9e17ebd @@ -23741,6 +25577,13 @@ Method of shipment for address 2. 1033 + + a2f626ab-bfeb-4343-8f51-c01baeed82f6 + + true + Forsendelsesmåde for adresse 2. + 1030 + cf91aa12-2341-db11-898a-0007e9e17ebd @@ -23759,6 +25602,13 @@ Address 2: Shipping Method 1033 + + 040a3c62-24f6-4058-b0e2-276d9976484b + + true + Adresse 2: Forsendelsesmåde + 1030 + ce91aa12-2341-db11-898a-0007e9e17ebd @@ -23847,6 +25697,13 @@ Method of shipment for address 2. 1033 + + 00d2bc1e-25dd-4cfd-8f48-8405f241da3c + + true + Forsendelsesmåde for adresse 2. + 1030 + 0bad682c-39f5-45aa-9282-de839f0e0926 @@ -23865,6 +25722,13 @@ Address 2: Shipping Method 1033 + + 41170c46-8099-46c3-b5dc-8ec55ea6fe9b + + true + Adresse 2: Forsendelsesmåde + 1030 + fc3db99b-846d-4000-a074-0467e6413d8d @@ -23907,6 +25771,13 @@ Default Value 1033 + + 4a0341d0-86f7-4bc1-bb16-bba2455fefde + + true + Standardværdi + 1030 + d191aa12-2341-db11-898a-0007e9e17ebd @@ -24045,6 +25916,13 @@ State or province for address 2. 1033 + + 8c03831c-247c-4d43-8ebf-c74b7682cb5d + + true + Område i adresse 2. + 1030 + 4752c2fa-2241-db11-898a-0007e9e17ebd @@ -24063,6 +25941,13 @@ Ship To State/Province 1033 + + fa0fa3c9-650f-4c0e-b8aa-1c439cd2e470 + + true + Levér til - Område + 1030 + 4652c2fa-2241-db11-898a-0007e9e17ebd @@ -24175,6 +26060,13 @@ First telephone number associated with address 2. 1033 + + 7a3ea00e-dee8-4ed6-a331-b530e4447a05 + + true + Første telefonnummer, der er tilknyttet adresse 2. + 1030 + 7364cfee-2241-db11-898a-0007e9e17ebd @@ -24193,6 +26085,13 @@ Address 2: Telephone 1 1033 + + 39c29121-7776-43fa-bb4a-4139e2ad388a + + true + Adresse 2: Telefon 1 + 1030 + 7264cfee-2241-db11-898a-0007e9e17ebd @@ -24305,6 +26204,13 @@ Second telephone number associated with address 2. 1033 + + c608fa2d-3e0d-4dca-bb94-938b7489aeb3 + + true + Andet telefonnummer, der er tilknyttet adresse 2. + 1030 + e4aac7f4-2241-db11-898a-0007e9e17ebd @@ -24323,6 +26229,13 @@ Address 2: Telephone 2 1033 + + f724ba8f-383a-4ff3-a930-83c359afcb32 + + true + Adresse 2: Telefon 2 + 1030 + e3aac7f4-2241-db11-898a-0007e9e17ebd @@ -24435,6 +26348,13 @@ Third telephone number associated with address 2. 1033 + + 6cee2087-f4d7-4161-a29f-ddb8a84ff0c0 + + true + Tredje telefonnummer, der er tilknyttet adresse 2. + 1030 + 9054c2fa-2241-db11-898a-0007e9e17ebd @@ -24453,6 +26373,13 @@ Address 2: Telephone 3 1033 + + 7c11f6ab-59a2-4961-b727-066792e2ee79 + + true + Adresse 2: Telefon 3 + 1030 + 8f54c2fa-2241-db11-898a-0007e9e17ebd @@ -24565,6 +26492,13 @@ United Parcel Service (UPS) zone for address 2. 1033 + + 037e0985-9631-457d-a6e2-d4429ba08e4b + + true + UPS-zone (United Parcel Service) for adresse 2. + 1030 + d441b506-2341-db11-898a-0007e9e17ebd @@ -24583,6 +26517,13 @@ Address 2: UPS Zone 1033 + + fbcd69fd-38f7-4463-b452-35d57e16087e + + true + Adresse 2: UPS-zone + 1030 + d341b506-2341-db11-898a-0007e9e17ebd @@ -24695,6 +26636,13 @@ UTC offset for address 2. This is the difference between local time and standard Coordinated Universal Time. 1033 + + 4b259a64-696a-4e88-b2f1-58f56a20a27a + + true + Forskydning fra GMT for adresse 2. Dette er forskellen mellem lokal tid og GMT-standardtid. + 1030 + 65cee1dc-2241-db11-898a-0007e9e17ebd @@ -24713,6 +26661,13 @@ Address 2: UTC Offset 1033 + + 4a5221ce-1b9b-41d0-b653-e2bbbcf78c35 + + true + Adresse 2: Forskydning fra GMT + 1030 + 64cee1dc-2241-db11-898a-0007e9e17ebd @@ -24819,6 +26774,13 @@ Unique identifier of the business unit. 1033 + + 3a59bf40-7cd4-4b34-b887-62706105fb81 + + true + Entydigt id for afdelingen. + 1030 + d2e0eed0-2241-db11-898a-0007e9e17ebd @@ -24837,6 +26799,13 @@ Business Unit 1033 + + 5b6291ee-4b4e-4f4c-98ca-cabeba2ad405 + + true + Afdeling + 1030 + d1e0eed0-2241-db11-898a-0007e9e17ebd @@ -24938,6 +26907,13 @@ Fiscal calendar associated with the business unit. 1033 + + f6973e36-f802-4ef8-917d-196f68a73b0f + + true + Den regnskabskalender, der er tilknyttet afdelingen. + 1030 + 8cabc7f4-2241-db11-898a-0007e9e17ebd @@ -24956,6 +26932,13 @@ Calendar 1033 + + 2931471b-691b-4e2d-82d0-7562f6f6fd0b + + true + Kalender + 1030 + 8babc7f4-2241-db11-898a-0007e9e17ebd @@ -25061,6 +27044,13 @@ Name of the business unit cost center. 1033 + + 3058ca87-851e-43ce-b617-3bd912ba563b + + true + Navnet på afdelingens omkostningscenter. + 1030 + 72e0eed0-2241-db11-898a-0007e9e17ebd @@ -25079,6 +27069,13 @@ Cost Center 1033 + + 4cc13efc-dea9-44b2-bfc3-37c39976a780 + + true + Omkostningssted + 1030 + 71e0eed0-2241-db11-898a-0007e9e17ebd @@ -25191,6 +27188,13 @@ Unique identifier of the user who created the business unit. 1033 + + 0369c3e8-38f8-4bfe-8b8c-ef8381e4b641 + + true + Entydigt id for den bruger, der oprettede afdelingen. + 1030 + ca63cfee-2241-db11-898a-0007e9e17ebd @@ -25209,6 +27213,13 @@ Created By 1033 + + 295d6b66-4b66-448c-b15c-7c3f98195275 + + true + Oprettet af + 1030 + c963cfee-2241-db11-898a-0007e9e17ebd @@ -25518,6 +27529,13 @@ Date and time when the business unit was created. 1033 + + 3cc1d9f7-4c15-4efb-9caf-0aaaa7507723 + + true + Dato og klokkeslæt for oprettelse af afdelingen. + 1030 + 54d8dee2-2241-db11-898a-0007e9e17ebd @@ -25536,6 +27554,13 @@ Created On 1033 + + 1407f78b-d4de-4706-b05c-1a6cd895ec9e + + true + Oprettet + 1030 + 53d8dee2-2241-db11-898a-0007e9e17ebd @@ -25649,6 +27674,13 @@ Unique identifier of the delegate user who created the businessunit. 1033 + + 7503cee9-ca4a-4d49-a959-f525968f4c1b + + true + Entydigt id for den stedfortrædende bruger, der oprettede afdelingen. + 1030 + 42c0d753-5b04-4cfb-8337-b1267ab6fbfd @@ -25667,6 +27699,13 @@ Created By (Delegate) 1033 + + 86d6fabe-6257-4037-9146-0f0b1fea97d0 + + true + Oprettet af (stedfortræder) + 1030 + d8ab7272-a1ca-4e3a-a6c3-58f07cab234d @@ -25976,6 +28015,13 @@ Credit limit for the business unit. 1033 + + 75b4c8c3-6647-458b-a884-59c05fe71e50 + + true + Afdelingens kreditgrænse. + 1030 + ea91aa12-2341-db11-898a-0007e9e17ebd @@ -25994,6 +28040,13 @@ Credit Limit 1033 + + b1a8030e-7565-4f72-b881-0f8548539cbe + + true + Kreditgrænse + 1030 + e991aa12-2341-db11-898a-0007e9e17ebd @@ -26101,6 +28154,13 @@ Description of the business unit. 1033 + + 8265d092-b5cc-42e1-b60b-08a82c8a250f + + true + Beskrivelse af afdelingen. + 1030 + 0091aa12-2341-db11-898a-0007e9e17ebd @@ -26119,6 +28179,13 @@ Description 1033 + + b706678d-3fbd-492c-a05a-fa488850025e + + true + Beskrivelse + 1030 + ff90aa12-2341-db11-898a-0007e9e17ebd @@ -26227,6 +28294,13 @@ Reason for disabling the business unit. 1033 + + 989df45e-411f-4e2a-868a-24707baad600 + + true + Årsag til deaktivering af afdelingen. + 1030 + 31aac7f4-2241-db11-898a-0007e9e17ebd @@ -26245,6 +28319,13 @@ Disable Reason 1033 + + a5f4d406-f21f-46b3-bf30-26b41e3b1089 + + true + Årsag til deaktivering + 1030 + 30aac7f4-2241-db11-898a-0007e9e17ebd @@ -26357,6 +28438,13 @@ Name of the division to which the business unit belongs. 1033 + + 8e8ddcec-409b-41f4-bd27-c85522ea315c + + true + Navnet på den division, som afdelingen tilhører. + 1030 + e81dd7e8-2241-db11-898a-0007e9e17ebd @@ -26375,6 +28463,13 @@ Division 1033 + + 9a181fff-35f2-4c3a-bd2a-31c3dd58d6a5 + + true + Division + 1030 + e71dd7e8-2241-db11-898a-0007e9e17ebd @@ -26487,6 +28582,13 @@ Email address for the business unit. 1033 + + 06e6dae6-6e20-41b7-8514-7a5693786e00 + + true + Afdelingens mailadresse. + 1030 + 704901bf-2241-db11-898a-0007e9e17ebd @@ -26505,6 +28607,13 @@ Email 1033 + + 9c932a3e-cb00-438a-ade3-9ae9db2909e2 + + true + Mail + 1030 + 6f4901bf-2241-db11-898a-0007e9e17ebd @@ -26617,6 +28726,13 @@ Exchange rate for the currency associated with the businessunit with respect to the base currency. 1033 + + 9e5674b2-657c-4194-95af-d8d6f0936df0 + + true + Valutakurs for den valuta, der er tilknyttet afdelingen, i forhold til grundvalutaen. + 1030 + baf36831-2f69-49c7-9780-737bd2411fac @@ -26635,6 +28751,13 @@ Exchange Rate 1033 + + c7f570e0-5442-41a2-b693-da75220504ad + + true + Valutakurs + 1030 + 8b674575-737a-4e03-b6b9-14d12182369c @@ -26742,6 +28865,13 @@ Alternative name under which the business unit can be filed. 1033 + + 44229092-79b3-45c7-8ab0-cc6215fd0685 + + true + Alternativt navn, som afdelingen kan gemmes under. + 1030 + c925e7d6-2241-db11-898a-0007e9e17ebd @@ -26760,6 +28890,13 @@ File as Name 1033 + + 6548da5e-fd25-4efd-ad82-a60b8b77a087 + + true + Gem som navn + 1030 + c825e7d6-2241-db11-898a-0007e9e17ebd @@ -26872,6 +29009,13 @@ FTP site URL for the business unit. 1033 + + d560021d-e174-48fd-bb1c-4b988cfad9b1 + + true + URL-adresse til afdelingens FTP-sted. + 1030 + 0964cfee-2241-db11-898a-0007e9e17ebd @@ -26890,6 +29034,13 @@ FTP Site 1033 + + 589843df-d9ae-4111-8c6e-8e986ffdc26f + + true + FTP-sted + 1030 + 0864cfee-2241-db11-898a-0007e9e17ebd @@ -27002,6 +29153,13 @@ Unique identifier of the data import or data migration that created this record. 1033 + + 81a14c71-63ad-419b-a30e-6cf6dde3c2f4 + + true + Entydigt id for den dataimport eller dataoverførsel, der oprettede denne post. + 1030 + 69183e10-3db4-40e7-b00e-aacbd6b7ae8b @@ -27020,6 +29178,13 @@ Import Sequence Number 1033 + + 0fb6e94b-b137-4c4e-93a9-d970f1dda70f + + true + Importsekvensnummer + 1030 + c90bee36-f6bd-40f5-a20b-ceccefcb05cd @@ -27126,6 +29291,13 @@ Inheritance mask for the business unit. 1033 + + 9f1c5ce1-f65f-41bd-b19b-d49f54720876 + + true + Nedarvningsmaske for afdelingen. + 1030 + 1daac7f4-2241-db11-898a-0007e9e17ebd @@ -27144,6 +29316,13 @@ Inheritance Mask 1033 + + fc3db651-9ce4-4626-8263-ddb5522f06fc + + true + Nedarvningsmaske + 1030 + 1caac7f4-2241-db11-898a-0007e9e17ebd @@ -27250,6 +29429,13 @@ Information about whether the business unit is enabled or disabled. 1033 + + 6839158a-3586-464f-9f58-e3891eabe252 + + true + Angiver, om afdelingsposten er aktiveret eller deaktiveret. + 1030 + abcde1dc-2241-db11-898a-0007e9e17ebd @@ -27268,6 +29454,13 @@ Is Disabled 1033 + + 064a88ca-1762-4b09-b862-28dec7ba95ac + + true + Er deaktiveret + 1030 + aacde1dc-2241-db11-898a-0007e9e17ebd @@ -27356,6 +29549,13 @@ Information about whether the business unit is enabled or disabled. 1033 + + 5adb064c-2187-4b45-9c50-762c0a8f4a25 + + true + Angiver, om afdelingsposten er aktiveret eller deaktiveret. + 1030 + d653404f-f70b-467c-a533-ea6f17fee4b3 @@ -27374,6 +29574,13 @@ Is Disabled 1033 + + 36fab909-133e-445a-a693-e4e6a6173d5e + + true + Er deaktiveret + 1030 + d69d9e93-83d9-45d9-9748-c7013a789cf2 @@ -27415,6 +29622,13 @@ No 1033 + + f84e06fe-19e2-4c03-abd1-949763529e35 + + true + Nej + 1030 + adcde1dc-2241-db11-898a-0007e9e17ebd @@ -27448,6 +29662,13 @@ Yes 1033 + + 5e3bb35b-9859-4b88-9138-bc90e37a350c + + true + Ja + 1030 + afcde1dc-2241-db11-898a-0007e9e17ebd @@ -27581,6 +29802,13 @@ Unique identifier of the user who last modified the business unit. 1033 + + 06b22fe4-5f89-46e9-89b8-91b5056357bb + + true + Entydigt id for den bruger, der sidst ændrede afdelingen. + 1030 + 1fabc7f4-2241-db11-898a-0007e9e17ebd @@ -27599,6 +29827,13 @@ Modified By 1033 + + 88eab228-7e6c-48ab-955c-42064564d3f7 + + true + Ændret af + 1030 + 1eabc7f4-2241-db11-898a-0007e9e17ebd @@ -27908,6 +30143,13 @@ Date and time when the business unit was last modified. 1033 + + 390ce8b1-51f1-4e7e-a530-40009fe2c63d + + true + Dato og klokkeslæt for den seneste ændring af afdelingen. + 1030 + 5064cfee-2241-db11-898a-0007e9e17ebd @@ -27926,6 +30168,13 @@ Modified On 1033 + + e7c66106-e367-4b78-890e-eced214ec21c + + true + Ændret + 1030 + 4f64cfee-2241-db11-898a-0007e9e17ebd @@ -28039,6 +30288,13 @@ Unique identifier of the delegate user who last modified the businessunit. 1033 + + 78aac1dd-5ccf-46cf-9ad9-c70f79f89d14 + + true + Entydigt id for den stedfortrædende bruger, der senest ændrede afdelingen. + 1030 + 5c7cddc0-4a2c-4aed-bfe1-bd3f0b93e944 @@ -28057,6 +30313,13 @@ Modified By (Delegate) 1033 + + 22d39266-8a05-4618-bf08-d962687efb9e + + true + Ændret af (stedfortræder) + 1030 + 9b92936a-327f-4d9b-a880-69b9a0c736b5 @@ -28366,6 +30629,13 @@ Name of the business unit. 1033 + + 583e9fc4-8832-4aa6-8e42-751a1da9ec50 + + true + Afdelingens navn. + 1030 + c725e7d6-2241-db11-898a-0007e9e17ebd @@ -28384,6 +30654,13 @@ Name 1033 + + e7aabdf7-6323-476a-b666-9f8d4ac81915 + + true + Navn + 1030 + c625e7d6-2241-db11-898a-0007e9e17ebd @@ -28496,6 +30773,13 @@ Unique identifier of the organization associated with the business unit. 1033 + + 0203b57b-e0f8-41c7-af98-cf46d962382c + + true + Entydigt id for den organisation, der er tilknyttet afdelingen. + 1030 + d81c9b1e-2341-db11-898a-0007e9e17ebd @@ -28514,6 +30798,13 @@ Organization 1033 + + a77a0ceb-06e4-4916-974a-49b779822405 + + true + Organisation + 1030 + d71c9b1e-2341-db11-898a-0007e9e17ebd @@ -28721,6 +31012,13 @@ Date and time that the record was migrated. 1033 + + 368335ae-c28b-4af1-a307-d9fb3e86a7c8 + + true + Dato og klokkeslæt for overførsel af posten. + 1030 + ae75a758-1626-44b1-9149-c51726b34348 @@ -28739,6 +31037,13 @@ Record Created On 1033 + + 59f21450-2bca-4bf3-add1-c323d917bb50 + + true + Posten blev oprettet den + 1030 + 8153e658-15cd-43a0-bd49-2a39514368d3 @@ -28852,6 +31157,13 @@ Unique identifier for the parent business unit. 1033 + + d5d52af5-0ca8-49ba-befb-68b469a122de + + true + Entydigt id for den overordnede afdeling. + 1030 + ccabc7f4-2241-db11-898a-0007e9e17ebd @@ -28870,6 +31182,13 @@ Parent Business 1033 + + cf9e2287-4423-49e5-8d84-ef2199e10e80 + + true + Overordnet forretn. + 1030 + cbabc7f4-2241-db11-898a-0007e9e17ebd @@ -29077,6 +31396,13 @@ Picture or diagram of the business unit. 1033 + + 6c45c727-8135-45e6-a91c-61020a01d80e + + true + Billede af eller diagram over afdelingen. + 1030 + 7daac7f4-2241-db11-898a-0007e9e17ebd @@ -29095,6 +31421,13 @@ Picture 1033 + + 65f88688-c6d2-49b3-a497-9268180ceb71 + + true + Billede + 1030 + 7caac7f4-2241-db11-898a-0007e9e17ebd @@ -29203,6 +31536,13 @@ Stock exchange on which the business is listed. 1033 + + 255fac6b-f098-4155-8d58-85369c7ae52d + + true + Den børs, som forretningen er noteret på. + 1030 + 339aba00-2341-db11-898a-0007e9e17ebd @@ -29221,6 +31561,13 @@ Stock Exchange 1033 + + ce077478-680b-4f5d-b5ec-f647df497788 + + true + Børs + 1030 + 329aba00-2341-db11-898a-0007e9e17ebd @@ -29333,6 +31680,13 @@ Stock exchange ticker symbol for the business unit. 1033 + + 41c8230b-194a-4872-9877-a32c219d0b1c + + true + Aktiesymbol for afdelingen. + 1030 + 09abc7f4-2241-db11-898a-0007e9e17ebd @@ -29351,6 +31705,13 @@ Ticker Symbol 1033 + + 002007e2-29f5-42b6-9407-25d99a98a522 + + true + Aktiesymbol + 1030 + 08abc7f4-2241-db11-898a-0007e9e17ebd @@ -29463,6 +31824,13 @@ Unique identifier of the currency associated with the businessunit. 1033 + + 96d4cca6-694d-46ac-a072-2729684fb973 + + true + Entydigt id for den valuta, der er tilknyttet afdelingen. + 1030 + 327dda4f-3dde-4233-86bb-fbfa3dd34c8e @@ -29481,6 +31849,13 @@ Currency 1033 + + 9b925efc-c499-4d95-acfe-3e5bdd364fb3 + + true + Valuta + 1030 + f353eca9-7be8-4226-948c-c0d554d10f5b @@ -29779,6 +32154,13 @@ UTC offset for the business unit. This is the difference between local time and standard Coordinated Universal Time. 1033 + + 3f405d22-edc3-46a0-ba27-3559b3ccab11 + + true + Forskydning fra GMT for afdelingen. Dette er forskellen mellem lokal tid og GMT-standardtid. + 1030 + 5554c2fa-2241-db11-898a-0007e9e17ebd @@ -29797,6 +32179,13 @@ UTC Offset 1033 + + e9277483-09ae-4310-8385-ee25eaae30fd + + true + Forskydning fra GMT + 1030 + 5454c2fa-2241-db11-898a-0007e9e17ebd @@ -29903,6 +32292,13 @@ Version number of the business unit. 1033 + + a7d8a240-5d00-4bd6-b238-f81b02591498 + + true + Versionsnummer for afdelingen. + 1030 + 93cd3f97-a13a-4774-8fad-c66adab94299 @@ -29921,6 +32317,13 @@ Version number 1033 + + af35dbbc-0cbe-4b0f-be7b-15d92d6f8b3e + + true + Versionsnummer + 1030 + aa86a275-7564-4db7-b666-c61c252897c0 @@ -30024,6 +32427,13 @@ Website URL for the business unit. 1033 + + 49a3fc8b-8cc3-4f89-a92c-a3524a3dd998 + + true + URL-adresse til afdelingens websted. + 1030 + 0ee0eed0-2241-db11-898a-0007e9e17ebd @@ -30042,6 +32452,13 @@ Website 1033 + + 11ef9af0-5db2-4296-9813-e7ef4048e925 + + true + Websted + 1030 + 0de0eed0-2241-db11-898a-0007e9e17ebd @@ -30154,6 +32571,13 @@ Information about whether workflow or sales process rules have been suspended. 1033 + + 2187624d-1edb-44a7-b645-819234393550 + + true + Angiver, om arbejds- og salgsprocesregler er blevet afbrudt. + 1030 + 4d98ba00-2341-db11-898a-0007e9e17ebd @@ -30172,6 +32596,13 @@ Workflow Suspended 1033 + + 27748251-77fd-4cfe-ba4b-a861ec4d83cc + + true + Arbejdsproces annulleret + 1030 + 4c98ba00-2341-db11-898a-0007e9e17ebd @@ -30260,6 +32691,13 @@ Information about whether workflow or sales process rules have been suspended. 1033 + + 58a5662c-ea2d-4f96-b9d8-348277f7e218 + + true + Angiver, om arbejds- og salgsprocesregler er blevet afbrudt. + 1030 + 09dcd3e8-db2b-4253-9677-6cf1f1fb3a20 @@ -30278,6 +32716,13 @@ Workflow Suspended 1033 + + ad03f5dc-97a6-4fb2-a9bf-1bda8fc550a3 + + true + Arbejdsproces annulleret + 1030 + 393ccf15-0ce4-4190-aee3-043f7c049a38 @@ -30319,6 +32764,13 @@ No 1033 + + e9f626b4-f5d7-4574-bcce-4f7ae589b3af + + true + Nej + 1030 + 4f98ba00-2341-db11-898a-0007e9e17ebd @@ -30352,6 +32804,13 @@ Yes 1033 + + c17685b5-0c16-4995-8641-8976b5411143 + + true + Ja + 1030 + 5198ba00-2341-db11-898a-0007e9e17ebd @@ -30536,6 +32995,13 @@ Business, division, or department in the Microsoft Dynamics 365 database. 1033 + + abc6c62d-a7ff-4ece-991b-640204780b4c + + true + Afdeling eller division i Microsoft Dynamics 365-databasen. + 1030 + de0a19a7-2241-db11-898a-0007e9e17ebd @@ -30554,6 +33020,13 @@ Business Units 1033 + + 55b21740-6e7c-4351-a585-f7c085dda310 + + true + Afdelinger + 1030 + e00a19a7-2241-db11-898a-0007e9e17ebd @@ -30572,6 +33045,13 @@ Business Unit 1033 + + a9fb9b23-53cb-419f-9aba-10accb6bc854 + + true + Afdeling + 1030 + df0a19a7-2241-db11-898a-0007e9e17ebd @@ -31113,19 +33593,19 @@ 10 - 4d8fe401-e425-19b0-a37e-f4d98126f98f + e07dd601-0e2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable - false + true - true + false false - business_unit_goalrollupquery + business_unit_agentconversationmessagefile None - 5.0.0.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -31143,9 +33623,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -31159,15 +33639,15 @@ false businessunitid businessunit - business_unit_goalrollupquery + business_unit_agentconversationmessagefile owningbusinessunit - goalrollupquery + agentconversationmessagefile owningbusinessunit 0 - 4d8fe401-e425-41b0-a37e-f4d98126f98f + 4d8fe401-e425-19b0-a37e-f4d98126f98f false @@ -31177,7 +33657,7 @@ true false - business_unit_userquery + business_unit_goalrollupquery None 5.0.0.0 OneToManyRelationship @@ -31213,27 +33693,27 @@ false businessunitid businessunit - business_unit_userquery + business_unit_goalrollupquery owningbusinessunit - userquery + goalrollupquery owningbusinessunit 0 - ee13f801-cbba-f011-bbd3-7c1e52365f30 + 4d8fe401-e425-41b0-a37e-f4d98126f98f false - true + false iscustomizable - true + false - false + true false - business_unit_msdyn_kalanguagesetting + business_unit_userquery None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -31251,9 +33731,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -31267,15 +33747,15 @@ false businessunitid businessunit - business_unit_msdyn_kalanguagesetting + business_unit_userquery owningbusinessunit - msdyn_kalanguagesetting + userquery owningbusinessunit 0 - 2415f801-cbba-f011-bbd3-7c1e52365f30 + ee13f801-cbba-f011-bbd3-7c1e52365f30 false @@ -31285,7 +33765,7 @@ false false - business_unit_msdyn_kbattachment + business_unit_msdyn_kalanguagesetting None 9.1.0.0 OneToManyRelationship @@ -31321,15 +33801,15 @@ false businessunitid businessunit - business_unit_msdyn_kbattachment + business_unit_msdyn_kalanguagesetting owningbusinessunit - msdyn_kbattachment + msdyn_kalanguagesetting owningbusinessunit 0 - a716f801-cbba-f011-bbd3-7c1e52365f30 + 2415f801-cbba-f011-bbd3-7c1e52365f30 false @@ -31339,7 +33819,7 @@ false false - business_unit_msdyn_knowledgearticletemplate + business_unit_msdyn_kbattachment None 9.1.0.0 OneToManyRelationship @@ -31375,69 +33855,15 @@ false businessunitid businessunit - business_unit_msdyn_knowledgearticletemplate - owningbusinessunit - msdyn_knowledgearticletemplate - owningbusinessunit - - 0 - - - 5617f801-cbba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - false - business_unit_msdyn_knowledgepersonalfilter - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - Restrict - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - businessunitid - businessunit - business_unit_msdyn_knowledgepersonalfilter + business_unit_msdyn_kbattachment owningbusinessunit - msdyn_knowledgepersonalfilter + msdyn_kbattachment owningbusinessunit 0 - 2718f801-cbba-f011-bbd3-7c1e52365f30 + a716f801-cbba-f011-bbd3-7c1e52365f30 false @@ -31447,7 +33873,115 @@ false false - business_unit_msdyn_knowledgesearchfilter + business_unit_msdyn_knowledgearticletemplate + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_msdyn_knowledgearticletemplate + owningbusinessunit + msdyn_knowledgearticletemplate + owningbusinessunit + + 0 + + + 5617f801-cbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_msdyn_knowledgepersonalfilter + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_msdyn_knowledgepersonalfilter + owningbusinessunit + msdyn_knowledgepersonalfilter + owningbusinessunit + + 0 + + + 2718f801-cbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_msdyn_knowledgesearchfilter None 9.1.0.0 OneToManyRelationship @@ -33002,6 +35536,114 @@ 0 + + 8f653318-0d2f-f111-88b5-7c1e5287d1d8 + + false + + true + iscustomizable + true + + false + false + business_unit_uxagentcomponent + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_uxagentcomponent + owningbusinessunit + uxagentcomponent + owningbusinessunit + + 0 + + + 7bb80419-7b4b-f111-bec6-70a8a57b90dc + + false + + true + iscustomizable + true + + false + false + business_unit_msdyn_rtestructuredtemplateconfig + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_msdyn_rtestructuredtemplateconfig + owningbusinessunit + msdyn_rtestructuredtemplateconfig + owningbusinessunit + + 0 + 6899b91c-f6ba-f011-bbd3-7c1e52365f30 @@ -34136,6 +36778,60 @@ 0 + + 7bcc602a-0d2f-f111-88b5-7c1e5287d1d8 + + false + + true + iscustomizable + true + + false + false + business_unit_uxagentcomponentrevision + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_uxagentcomponentrevision + owningbusinessunit + uxagentcomponentrevision + owningbusinessunit + + 0 + 822d8b2b-e6ba-f011-bbd3-7c1e52365f30 @@ -35648,6 +38344,60 @@ 0 + + 24adf649-f128-f111-88b5-7c1e52371eaf + + false + + true + iscustomizable + true + + false + false + business_unit_flowtestsession + None + 1.9.49.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_flowtestsession + owningbusinessunit + flowtestsession + owningbusinessunit + + 0 + 84b2124a-c3ba-f011-bbd3-7c1e52365f30 @@ -36890,6 +39640,114 @@ 0 + + e0b37c52-f128-f111-88b5-7c1e52371eaf + + false + + true + iscustomizable + true + + false + false + business_unit_flowtrigger + None + 1.10.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_flowtrigger + owningbusinessunit + flowtrigger + owningbusinessunit + + 0 + + + b0b47c52-f128-f111-88b5-7c1e52371eaf + + false + + true + iscustomizable + true + + false + false + business_unit_flowtriggerinstance + None + 1.10.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_flowtriggerinstance + owningbusinessunit + flowtriggerinstance + owningbusinessunit + + 0 + 1bb13b56-eeba-f011-bbd3-7c1e52365f30 @@ -37809,7 +40667,7 @@ 0 - 5a499c67-adba-f011-bbd3-7c1e52365f30 + 55dba065-3346-f111-bec6-7c1e52346323 false @@ -37819,9 +40677,9 @@ false false - business_unit_keyvaultreference + business_unit_msdyn_knowledgeharvestplan None - 9.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -37855,15 +40713,15 @@ false businessunitid businessunit - business_unit_keyvaultreference + business_unit_msdyn_knowledgeharvestplan owningbusinessunit - keyvaultreference + msdyn_knowledgeharvestplan owningbusinessunit 0 - 2f4b9c67-adba-f011-bbd3-7c1e52365f30 + 5a499c67-adba-f011-bbd3-7c1e52365f30 false @@ -37873,7 +40731,7 @@ false false - business_unit_managedidentity + business_unit_keyvaultreference None 9.0.0.0 OneToManyRelationship @@ -37909,69 +40767,15 @@ false businessunitid businessunit - business_unit_managedidentity - owningbusinessunit - managedidentity - owningbusinessunit - - 0 - - - d2d86768-775e-4c5e-976f-67b754e826eb - - false - - false - iscustomizable - false - - true - false - business_unit_convertrule - None - 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - businessunitid - businessunit - business_unit_convertrule + business_unit_keyvaultreference owningbusinessunit - convertrule + keyvaultreference owningbusinessunit 0 - 132a1b69-86f9-f011-8406-7ced8d48c998 + 2f4b9c67-adba-f011-bbd3-7c1e52365f30 false @@ -37981,9 +40785,9 @@ false false - business_unit_officedocument + business_unit_managedidentity None - 7.1.0.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -38017,27 +40821,27 @@ false businessunitid businessunit - business_unit_officedocument + business_unit_managedidentity owningbusinessunit - officedocument + managedidentity owningbusinessunit 0 - 6fd4b269-eeba-f011-bbd3-7c1e52365f30 + d2d86768-775e-4c5e-976f-67b754e826eb false - true + false iscustomizable - true + false - false + true false - business_unit_msdyn_pmprocessversion + business_unit_convertrule None - 1.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -38055,9 +40859,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -38071,15 +40875,15 @@ false businessunitid businessunit - business_unit_msdyn_pmprocessversion + business_unit_convertrule owningbusinessunit - msdyn_pmprocessversion + convertrule owningbusinessunit 0 - 55d5b269-eeba-f011-bbd3-7c1e52365f30 + 132a1b69-86f9-f011-8406-7ced8d48c998 false @@ -38089,9 +40893,9 @@ false false - business_unit_msdyn_pmrecording + business_unit_officedocument None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -38125,15 +40929,15 @@ false businessunitid businessunit - business_unit_msdyn_pmrecording + business_unit_officedocument owningbusinessunit - msdyn_pmrecording + officedocument owningbusinessunit 0 - cd2b0e6a-cdba-f011-bbd3-7c1e52365f30 + 6fd4b269-eeba-f011-bbd3-7c1e52365f30 false @@ -38143,9 +40947,117 @@ false false - business_unit_plannerbusinessscenario + business_unit_msdyn_pmprocessversion None - 9.1.62 + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_msdyn_pmprocessversion + owningbusinessunit + msdyn_pmprocessversion + owningbusinessunit + + 0 + + + 55d5b269-eeba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_msdyn_pmrecording + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_msdyn_pmrecording + owningbusinessunit + msdyn_pmrecording + owningbusinessunit + + 0 + + + cd2b0e6a-cdba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_plannerbusinessscenario + None + 9.1.62 OneToManyRelationship DoNotDisplay @@ -39266,6 +42178,60 @@ 0 + + cf514577-524d-f111-bec7-002248a2a8d1 + + false + + true + iscustomizable + true + + false + false + business_unit_flowgroup + None + 1.10.3.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_flowgroup + owningbusinessunit + flowgroup + owningbusinessunit + + 0 + 0ce94f77-e1ba-f011-bbd3-7c1e52365f30 @@ -39536,6 +42502,60 @@ 0 + + bdd67679-bc5d-f111-a826-7ced8d776baf + + false + + true + iscustomizable + true + + false + false + business_unit_msec_cleanup + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_msec_cleanup + owningbusinessunit + msec_cleanup + owningbusinessunit + + 0 + 728a9179-b136-4def-95d7-5f8b19c761a6 @@ -39968,6 +42988,60 @@ 0 + + b74d507d-ec24-f111-88b5-002248a21393 + + false + + true + iscustomizable + true + + false + false + business_unit_msdyn_bulkharvestrunlog + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_msdyn_bulkharvestrunlog + owningbusinessunit + msdyn_bulkharvestrunlog + owningbusinessunit + + 0 + 64395e7d-a209-4f29-a349-54a76227ff2c @@ -40292,6 +43366,60 @@ 0 + + 71303084-ec24-f111-88b5-002248a21393 + + false + + true + iscustomizable + true + + false + false + business_unit_msdyn_harvestworkitem + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_msdyn_harvestworkitem + owningbusinessunit + msdyn_harvestworkitem + owningbusinessunit + + 0 + 97f0d384-6f50-40f3-a920-bff518d4f56e @@ -40346,6 +43474,60 @@ 0 + + c404e384-3010-f111-8345-7c1e52216fd8 + + false + + true + iscustomizable + true + + false + false + business_unit_skill + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_skill + owningbusinessunit + skill + owningbusinessunit + + 0 + adfc3585-f971-4896-a1df-d518e67a65cd @@ -40670,6 +43852,114 @@ 0 + + 52463986-bc5d-f111-a826-7ced8d776baf + + false + + true + iscustomizable + true + + false + false + business_unit_new_eventaggregator + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_new_eventaggregator + owningbusinessunit + new_eventaggregator + owningbusinessunit + + 0 + + + 45473986-bc5d-f111-a826-7ced8d776baf + + false + + true + iscustomizable + true + + false + false + business_unit_new_eventaggregatorscans + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_new_eventaggregatorscans + owningbusinessunit + new_eventaggregatorscans + owningbusinessunit + + 0 + 77397986-b782-4438-bad0-023663ce4924 @@ -41265,7 +44555,7 @@ 0 - 176e428c-f6ba-f011-bbd3-7c1e52365f30 + 6596318c-bc5d-f111-a826-7ced8d776baf false @@ -41275,7 +44565,7 @@ false false - business_unit_ctx_invoice + business_unit_new_gaurdianfullscan None 1.0 OneToManyRelationship @@ -41311,15 +44601,15 @@ false businessunitid businessunit - business_unit_ctx_invoice + business_unit_new_gaurdianfullscan owningbusinessunit - ctx_invoice + new_gaurdianfullscan owningbusinessunit 0 - 0794138d-f4ba-f011-bbd3-7c1e52365f30 + 6797318c-bc5d-f111-a826-7ced8d776baf false @@ -41329,7 +44619,61 @@ false false - business_unit_powerpagesscanreport + business_unit_new_gaurdianhealthchecks + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_new_gaurdianhealthchecks + owningbusinessunit + new_gaurdianhealthchecks + owningbusinessunit + + 0 + + + 176e428c-f6ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_ctx_invoice None 1.0 OneToManyRelationship @@ -41365,15 +44709,15 @@ false businessunitid businessunit - business_unit_powerpagesscanreport + business_unit_ctx_invoice owningbusinessunit - powerpagesscanreport + ctx_invoice owningbusinessunit 0 - 0e95138d-f4ba-f011-bbd3-7c1e52365f30 + 6457848c-2f10-f111-8345-7c1e52216fd8 false @@ -41383,9 +44727,9 @@ false false - business_unit_powerpagesddosalert + business_unit_mcpprompt None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -41419,15 +44763,15 @@ false businessunitid businessunit - business_unit_powerpagesddosalert + business_unit_mcpprompt owningbusinessunit - powerpagesddosalert + mcpprompt owningbusinessunit 0 - dd95138d-f4ba-f011-bbd3-7c1e52365f30 + 0794138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -41437,9 +44781,9 @@ false false - business_unit_powerpageslog + business_unit_powerpagesscanreport None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -41457,9 +44801,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -41473,15 +44817,15 @@ false businessunitid businessunit - business_unit_powerpageslog + business_unit_powerpagesscanreport owningbusinessunit - powerpageslog + powerpagesscanreport owningbusinessunit 0 - 6896138d-f4ba-f011-bbd3-7c1e52365f30 + 0e95138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -41491,9 +44835,9 @@ false false - business_unit_powerpagesmanagedidentity + business_unit_powerpagesddosalert None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -41527,27 +44871,27 @@ false businessunitid businessunit - business_unit_powerpagesmanagedidentity + business_unit_powerpagesddosalert owningbusinessunit - powerpagesmanagedidentity + powerpagesddosalert owningbusinessunit 0 - d256b58d-59db-4aa4-b08b-f35403e2dbc6 + dd95138d-f4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false false - business_unit_socialactivity + business_unit_powerpageslog None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -41581,15 +44925,15 @@ false businessunitid businessunit - business_unit_socialactivity + business_unit_powerpageslog owningbusinessunit - socialactivity - owningbusinessunit_socialactivity + powerpageslog + owningbusinessunit 0 - bb79678f-b8ba-f011-bbd3-7c1e52365f30 + 6896138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -41599,7 +44943,7 @@ false false - business_unit_applicationuser + business_unit_powerpagesmanagedidentity None 1.0.0.0 OneToManyRelationship @@ -41635,15 +44979,15 @@ false businessunitid businessunit - business_unit_applicationuser - businessunitid - applicationuser - businessunitid + business_unit_powerpagesmanagedidentity + owningbusinessunit + powerpagesmanagedidentity + owningbusinessunit 0 - 314f848f-bd29-4d00-a5b4-1ae957939bc0 + d256b58d-59db-4aa4-b08b-f35403e2dbc6 false @@ -41653,9 +44997,9 @@ true false - BusinessUnit_SyncError + business_unit_socialactivity None - 8.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -41689,15 +45033,15 @@ false businessunitid businessunit - BusinessUnit_SyncError + business_unit_socialactivity owningbusinessunit - syncerror - owningbusinessunit + socialactivity + owningbusinessunit_socialactivity 0 - d9db1c90-e7ba-f011-bbd3-7c1e52365f30 + bb79678f-b8ba-f011-bbd3-7c1e52365f30 false @@ -41707,9 +45051,9 @@ false false - business_unit_msdyn_planattachment + business_unit_applicationuser None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -41743,27 +45087,27 @@ false businessunitid businessunit - business_unit_msdyn_planattachment - owningbusinessunit - msdyn_planattachment - owningbusinessunit + business_unit_applicationuser + businessunitid + applicationuser + businessunitid 0 - 68998f90-beba-f011-bbd3-7c1e52365f30 + 314f848f-bd29-4d00-a5b4-1ae957939bc0 false - true + false iscustomizable - true + false - false + true false - business_unit_msdyn_aiconfigurationsearch + BusinessUnit_SyncError None - 1.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -41781,9 +45125,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -41797,15 +45141,15 @@ false businessunitid businessunit - business_unit_msdyn_aiconfigurationsearch + BusinessUnit_SyncError owningbusinessunit - msdyn_aiconfigurationsearch + syncerror owningbusinessunit 0 - b99b8f90-beba-f011-bbd3-7c1e52365f30 + d9db1c90-e7ba-f011-bbd3-7c1e52365f30 false @@ -41815,7 +45159,7 @@ false false - business_unit_msdyn_aidataprocessingevent + business_unit_msdyn_planattachment None 1.0 OneToManyRelationship @@ -41851,15 +45195,15 @@ false businessunitid businessunit - business_unit_msdyn_aidataprocessingevent + business_unit_msdyn_planattachment owningbusinessunit - msdyn_aidataprocessingevent + msdyn_planattachment owningbusinessunit 0 - 437a3792-bdba-f011-bbd3-7c1e52365f30 + 68998f90-beba-f011-bbd3-7c1e52365f30 false @@ -41869,9 +45213,9 @@ false false - business_unit_dvfilesearchattribute + business_unit_msdyn_aiconfigurationsearch None - 1.0.0.56 + 1.0 OneToManyRelationship DoNotDisplay @@ -41905,15 +45249,15 @@ false businessunitid businessunit - business_unit_dvfilesearchattribute + business_unit_msdyn_aiconfigurationsearch owningbusinessunit - dvfilesearchattribute + msdyn_aiconfigurationsearch owningbusinessunit 0 - 8d7c3792-bdba-f011-bbd3-7c1e52365f30 + b99b8f90-beba-f011-bbd3-7c1e52365f30 false @@ -41923,9 +45267,9 @@ false false - business_unit_dvfilesearchentity + business_unit_msdyn_aidataprocessingevent None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -41959,15 +45303,15 @@ false businessunitid businessunit - business_unit_dvfilesearchentity + business_unit_msdyn_aidataprocessingevent owningbusinessunit - dvfilesearchentity + msdyn_aidataprocessingevent owningbusinessunit 0 - 697e3792-bdba-f011-bbd3-7c1e52365f30 + 437a3792-bdba-f011-bbd3-7c1e52365f30 false @@ -41977,9 +45321,9 @@ false false - business_unit_dvtablesearch + business_unit_dvfilesearchattribute None - 1.0.0.0 + 1.0.0.56 OneToManyRelationship DoNotDisplay @@ -42013,69 +45357,15 @@ false businessunitid businessunit - business_unit_dvtablesearch - owningbusinessunit - dvtablesearch - owningbusinessunit - - 0 - - - 9716fd92-a12e-4670-8c59-90d3f74acc37 - - false - - false - iscustomizable - true - - true - false - business_unit_sharepointsites - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - businessunitid - businessunit - business_unit_sharepointsites + business_unit_dvfilesearchattribute owningbusinessunit - sharepointsite + dvfilesearchattribute owningbusinessunit 0 - 64d11393-f4ba-f011-bbd3-7c1e52365f30 + 8d7c3792-bdba-f011-bbd3-7c1e52365f30 false @@ -42085,7 +45375,7 @@ false false - business_unit_powerpagessiteaifeedback + business_unit_dvfilesearchentity None 1.0.0.0 OneToManyRelationship @@ -42105,9 +45395,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -42121,15 +45411,15 @@ false businessunitid businessunit - business_unit_powerpagessiteaifeedback + business_unit_dvfilesearchentity owningbusinessunit - powerpagessiteaifeedback + dvfilesearchentity owningbusinessunit 0 - 2d8f6396-42bf-f011-bbd5-7ced8d470ac7 + 697e3792-bdba-f011-bbd3-7c1e52365f30 false @@ -42139,9 +45429,9 @@ false false - business_unit_cpr_cprdata + business_unit_dvtablesearch None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -42175,27 +45465,27 @@ false businessunitid businessunit - business_unit_cpr_cprdata + business_unit_dvtablesearch owningbusinessunit - cpr_cprdata + dvtablesearch owningbusinessunit 0 - 57588996-beba-f011-bbd3-7c1e52365f30 + 9716fd92-a12e-4670-8c59-90d3f74acc37 false - true + false iscustomizable true - false + true false - business_unit_msdyn_aidocumenttemplate + business_unit_sharepointsites None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -42213,9 +45503,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -42229,15 +45519,15 @@ false businessunitid businessunit - business_unit_msdyn_aidocumenttemplate + business_unit_sharepointsites owningbusinessunit - msdyn_aidocumenttemplate + sharepointsite owningbusinessunit 0 - f05a8996-beba-f011-bbd3-7c1e52365f30 + 64d11393-f4ba-f011-bbd3-7c1e52365f30 false @@ -42247,9 +45537,9 @@ false false - business_unit_msdyn_aievent + business_unit_powerpagessiteaifeedback None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -42267,9 +45557,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -42283,15 +45573,15 @@ false businessunitid businessunit - business_unit_msdyn_aievent + business_unit_powerpagessiteaifeedback owningbusinessunit - msdyn_aievent + powerpagessiteaifeedback owningbusinessunit 0 - 0c5d8996-beba-f011-bbd3-7c1e52365f30 + b1728193-bc51-f111-a824-e4fb1efa3784 false @@ -42301,9 +45591,9 @@ false false - business_unit_msdyn_aimodel + business_unit_msdyn_historicalcaseharvestrunlog None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -42337,15 +45627,15 @@ false businessunitid businessunit - business_unit_msdyn_aimodel + business_unit_msdyn_historicalcaseharvestrunlog owningbusinessunit - msdyn_aimodel + msdyn_historicalcaseharvestrunlog owningbusinessunit 0 - ef5e8996-beba-f011-bbd3-7c1e52365f30 + 2d8f6396-42bf-f011-bbd5-7ced8d470ac7 false @@ -42355,7 +45645,7 @@ false false - business_unit_msdyn_aimodelcatalog + business_unit_cpr_cprdata None 1.0 OneToManyRelationship @@ -42391,27 +45681,27 @@ false businessunitid businessunit - business_unit_msdyn_aimodelcatalog + business_unit_cpr_cprdata owningbusinessunit - msdyn_aimodelcatalog + cpr_cprdata owningbusinessunit 0 - b12abd97-bce5-4f8e-abf3-61332b73b3a9 + 57588996-beba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false false - business_unit_email_activities + business_unit_msdyn_aidocumenttemplate None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -42429,9 +45719,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -42445,15 +45735,15 @@ false businessunitid businessunit - business_unit_email_activities + business_unit_msdyn_aidocumenttemplate owningbusinessunit - email - owningbusinessunit_email + msdyn_aidocumenttemplate + owningbusinessunit 0 - 61423798-bdba-f011-bbd3-7c1e52365f30 + f05a8996-beba-f011-bbd3-7c1e52365f30 false @@ -42463,7 +45753,7 @@ false false - business_unit_dvtablesearchattribute + business_unit_msdyn_aievent None 1.0 OneToManyRelationship @@ -42499,15 +45789,15 @@ false businessunitid businessunit - business_unit_dvtablesearchattribute + business_unit_msdyn_aievent owningbusinessunit - dvtablesearchattribute + msdyn_aievent owningbusinessunit 0 - 83443798-bdba-f011-bbd3-7c1e52365f30 + 0c5d8996-beba-f011-bbd3-7c1e52365f30 false @@ -42517,7 +45807,7 @@ false false - business_unit_dvtablesearchentity + business_unit_msdyn_aimodel None 1.0.0.0 OneToManyRelationship @@ -42553,15 +45843,15 @@ false businessunitid businessunit - business_unit_dvtablesearchentity + business_unit_msdyn_aimodel owningbusinessunit - dvtablesearchentity + msdyn_aimodel owningbusinessunit 0 - 6e62a098-b4ba-f011-bbd3-7c1e52365f30 + ef5e8996-beba-f011-bbd3-7c1e52365f30 false @@ -42571,7 +45861,7 @@ false false - business_unit_msdyn_dataflow + business_unit_msdyn_aimodelcatalog None 1.0 OneToManyRelationship @@ -42607,27 +45897,27 @@ false businessunitid businessunit - business_unit_msdyn_dataflow + business_unit_msdyn_aimodelcatalog owningbusinessunit - msdyn_dataflow + msdyn_aimodelcatalog owningbusinessunit 0 - e166a098-b4ba-f011-bbd3-7c1e52365f30 + b12abd97-bce5-4f8e-abf3-61332b73b3a9 false - true + false iscustomizable true - false + true false - business_unit_msdyn_dataflowrefreshhistory + business_unit_email_activities None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -42645,9 +45935,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -42661,15 +45951,15 @@ false businessunitid businessunit - business_unit_msdyn_dataflowrefreshhistory + business_unit_email_activities owningbusinessunit - msdyn_dataflowrefreshhistory - owningbusinessunit + email + owningbusinessunit_email 0 - 1d68a098-b4ba-f011-bbd3-7c1e52365f30 + 61423798-bdba-f011-bbd3-7c1e52365f30 false @@ -42679,7 +45969,7 @@ false false - business_unit_msdyn_entityrefreshhistory + business_unit_dvtablesearchattribute None 1.0 OneToManyRelationship @@ -42715,81 +46005,27 @@ false businessunitid businessunit - business_unit_msdyn_entityrefreshhistory + business_unit_dvtablesearchattribute owningbusinessunit - msdyn_entityrefreshhistory + dvtablesearchattribute owningbusinessunit 0 - c7a2f59a-82fa-46a2-8b36-892afc080622 + 83443798-bdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true - false - business_unit_phone_call_activities - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - businessunitid - businessunit - business_unit_phone_call_activities - owningbusinessunit - phonecall - owningbusinessunit_phonecall - - 0 - - - fb87129b-543c-4ed2-adb1-77c4d409932a - - false - - false - iscustomizable - false - - true + false false - userentityuisettings_businessunit + business_unit_dvtablesearchentity None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -42807,9 +46043,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -42823,27 +46059,27 @@ false businessunitid businessunit - userentityuisettings_businessunit + business_unit_dvtablesearchentity owningbusinessunit - userentityuisettings + dvtablesearchentity owningbusinessunit 0 - 14d0269b-51ad-4fed-894c-70cc70136383 + 1f946398-5566-f111-ab0c-70a8a52b6964 false - false + true iscustomizable - false + true - true + false false - Owning_businessunit_processsessions + business_unit_ctx_parent None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -42861,9 +46097,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -42877,27 +46113,27 @@ false businessunitid businessunit - Owning_businessunit_processsessions + business_unit_ctx_parent owningbusinessunit - processsession + ctx_parent owningbusinessunit 0 - 89fa349b-7f4b-4e86-8f1a-0b85e30feb32 + d9557798-2f10-f111-8345-7c1e52216fd8 false - false + true iscustomizable - false + true - true - true - businessunit_callbackregistration + false + false + business_unit_mcpresource None - 9.0.2.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -42915,9 +46151,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -42931,15 +46167,15 @@ false businessunitid businessunit - businessunit_callbackregistration + business_unit_mcpresource owningbusinessunit - callbackregistration + mcpresource owningbusinessunit 0 - 4736d99d-beba-f011-bbd3-7c1e52365f30 + 6e62a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -42949,9 +46185,9 @@ false false - business_unit_msdyn_aitemplate + business_unit_msdyn_dataflow None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -42985,15 +46221,15 @@ false businessunitid businessunit - business_unit_msdyn_aitemplate + business_unit_msdyn_dataflow owningbusinessunit - msdyn_aitemplate + msdyn_dataflow owningbusinessunit 0 - 55b63d9e-e0ba-f011-bbd3-7c1e52365f30 + e166a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -43003,9 +46239,9 @@ false false - business_unit_card + business_unit_msdyn_dataflowrefreshhistory None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -43039,15 +46275,15 @@ false businessunitid businessunit - business_unit_card + business_unit_msdyn_dataflowrefreshhistory owningbusinessunit - card + msdyn_dataflowrefreshhistory owningbusinessunit 0 - 3ba3ec9f-baba-f011-bbd3-7c1e52365f30 + 1d68a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -43057,9 +46293,9 @@ false false - business_unit_workflowbinary + business_unit_msdyn_entityrefreshhistory None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -43093,27 +46329,27 @@ false businessunitid businessunit - business_unit_workflowbinary + business_unit_msdyn_entityrefreshhistory owningbusinessunit - workflowbinary + msdyn_entityrefreshhistory owningbusinessunit 0 - facc55a2-42bf-f011-bbd5-7ced8d470ac7 + c7a2f59a-82fa-46a2-8b36-892afc080622 false - true + false iscustomizable true - false + true false - business_unit_cpr_cprconfiguration + business_unit_phone_call_activities None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -43131,9 +46367,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -43147,27 +46383,27 @@ false businessunitid businessunit - business_unit_cpr_cprconfiguration + business_unit_phone_call_activities owningbusinessunit - cpr_cprconfiguration - owningbusinessunit + phonecall + owningbusinessunit_phonecall 0 - 368216a3-c0ba-f011-bbd3-7c1e52365f30 + fb87129b-543c-4ed2-adb1-77c4d409932a false - true + false iscustomizable - true + false - false + true false - business_unit_msdynce_botcontent + userentityuisettings_businessunit None - 0.0.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -43185,9 +46421,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -43201,15 +46437,15 @@ false businessunitid businessunit - business_unit_msdynce_botcontent + userentityuisettings_businessunit owningbusinessunit - msdynce_botcontent + userentityuisettings owningbusinessunit 0 - 87b294a4-7f46-11e0-a0f5-1cc1de634cfe + 14d0269b-51ad-4fed-894c-70cc70136383 false @@ -43219,7 +46455,7 @@ true false - business_unit_postfollows + Owning_businessunit_processsessions None 5.0.0.0 OneToManyRelationship @@ -43255,27 +46491,27 @@ false businessunitid businessunit - business_unit_postfollows + Owning_businessunit_processsessions owningbusinessunit - postfollow + processsession owningbusinessunit 0 - 89c4efa5-341e-42d5-ac34-e759aa182065 + 89fa349b-7f4b-4e86-8f1a-0b85e30feb32 false false iscustomizable - true + false true true - business_unit_system_users + businessunit_callbackregistration None - 5.0.0.0 + 9.0.2.0 OneToManyRelationship DoNotDisplay @@ -43295,6 +46531,60 @@ NoCascade NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + businessunit_callbackregistration + owningbusinessunit + callbackregistration + owningbusinessunit + + 0 + + + 4736d99d-beba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_msdyn_aitemplate + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade Restrict NoCascade NoCascade @@ -43309,27 +46599,27 @@ false businessunitid businessunit - business_unit_system_users - businessunitid - systemuser - businessunitid + business_unit_msdyn_aitemplate + owningbusinessunit + msdyn_aitemplate + owningbusinessunit 0 - 863503a8-26d6-4066-a23d-72977d0fc521 + 55b63d9e-e0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false false - BusinessUnit_DuplicateRules + business_unit_card None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -43347,9 +46637,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -43363,15 +46653,15 @@ false businessunitid businessunit - BusinessUnit_DuplicateRules + business_unit_card owningbusinessunit - duplicaterule + card owningbusinessunit 0 - b64815a8-b7ba-f011-bbd3-7c1e52365f30 + 3ba3ec9f-baba-f011-bbd3-7c1e52365f30 false @@ -43381,9 +46671,9 @@ false false - business_unit_canvasappextendedmetadata + business_unit_workflowbinary None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -43417,27 +46707,27 @@ false businessunitid businessunit - business_unit_canvasappextendedmetadata + business_unit_workflowbinary owningbusinessunit - canvasappextendedmetadata + workflowbinary owningbusinessunit 0 - c26ecca8-b224-4e3b-b0d0-7700569ecedc + 464375a0-9531-f111-88b4-002248a0fb54 false - false + true iscustomizable true - true + false false - business_unit_sharepointdocument + business_unit_msdyn_harvesteligibilitycondition None - 6.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -43450,14 +46740,14 @@ true false - navSPDocuments + 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -43471,15 +46761,15 @@ false businessunitid businessunit - business_unit_sharepointdocument + business_unit_msdyn_harvesteligibilitycondition owningbusinessunit - sharepointdocument + msdyn_harvesteligibilitycondition owningbusinessunit 0 - 19f40fa9-b6ea-f011-8409-000d3adc1cd9 + facc55a2-42bf-f011-bbd5-7ced8d470ac7 false @@ -43489,7 +46779,7 @@ false false - business_unit_agentfeeditem + business_unit_cpr_cprconfiguration None 1.0 OneToManyRelationship @@ -43525,30 +46815,30 @@ false businessunitid businessunit - business_unit_agentfeeditem + business_unit_cpr_cprconfiguration owningbusinessunit - agentfeeditem + cpr_cprconfiguration owningbusinessunit 0 - d7215dac-2fee-e411-80d9-00155dcf6500 + 368216a3-c0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false false - business_unit_externalparty + business_unit_msdynce_botcontent None - 8.0.0.0 + 0.0.1 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -43563,9 +46853,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -43579,15 +46869,15 @@ false businessunitid businessunit - business_unit_externalparty + business_unit_msdynce_botcontent owningbusinessunit - externalparty - business_unit_externalparty_externalparty + msdynce_botcontent + owningbusinessunit 0 - 135d94ac-39a7-45e9-9890-b1603070901e + 87b294a4-7f46-11e0-a0f5-1cc1de634cfe false @@ -43597,7 +46887,7 @@ true false - business_unit_connections + business_unit_postfollows None 5.0.0.0 OneToManyRelationship @@ -43633,15 +46923,15 @@ false businessunitid businessunit - business_unit_connections + business_unit_postfollows owningbusinessunit - connection + postfollow owningbusinessunit 0 - 4cbe7ead-caba-f011-bbd3-7c1e52365f30 + f189b4a4-2f10-f111-8345-7c1e52216fd8 false @@ -43651,9 +46941,9 @@ false false - business_unit_msdyn_federatedarticle + business_unit_mcpresourcecontent None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -43687,27 +46977,27 @@ false businessunitid businessunit - business_unit_msdyn_federatedarticle + business_unit_mcpresourcecontent owningbusinessunit - msdyn_federatedarticle + mcpresourcecontent owningbusinessunit 0 - 9ce1e0ad-c9ba-f011-bbd3-7c1e52365f30 + 89c4efa5-341e-42d5-ac34-e759aa182065 false - true + false iscustomizable true - false - false - business_unit_msdyn_serviceconfiguration + true + true + business_unit_system_users None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -43725,7 +47015,7 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade Restrict NoCascade @@ -43741,15 +47031,69 @@ false businessunitid businessunit - business_unit_msdyn_serviceconfiguration + business_unit_system_users + businessunitid + systemuser + businessunitid + + 0 + + + 863503a8-26d6-4066-a23d-72977d0fc521 + + false + + false + iscustomizable + false + + true + false + BusinessUnit_DuplicateRules + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + BusinessUnit_DuplicateRules owningbusinessunit - msdyn_serviceconfiguration + duplicaterule owningbusinessunit 0 - a3e2e0ad-c9ba-f011-bbd3-7c1e52365f30 + b64815a8-b7ba-f011-bbd3-7c1e52365f30 false @@ -43759,7 +47103,7 @@ false false - business_unit_msdyn_slakpi + business_unit_canvasappextendedmetadata None 9.1.0.0 OneToManyRelationship @@ -43795,27 +47139,27 @@ false businessunitid businessunit - business_unit_msdyn_slakpi + business_unit_canvasappextendedmetadata owningbusinessunit - msdyn_slakpi + canvasappextendedmetadata owningbusinessunit 0 - c44683ae-42bf-f011-bbd5-7ced8d470ac7 + c26ecca8-b224-4e3b-b0d0-7700569ecedc false - true + false iscustomizable true - false + true false - business_unit_cpr_cprsubscription + business_unit_sharepointdocument None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -43828,14 +47172,14 @@ true false - + navSPDocuments 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -43849,15 +47193,15 @@ false businessunitid businessunit - business_unit_cpr_cprsubscription + business_unit_sharepointdocument owningbusinessunit - cpr_cprsubscription + sharepointdocument owningbusinessunit 0 - 83af9cae-b9ba-f011-bbd3-7c1e52365f30 + 19f40fa9-b6ea-f011-8409-000d3adc1cd9 false @@ -43867,9 +47211,9 @@ false false - business_unit_connector + business_unit_agentfeeditem None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -43903,15 +47247,15 @@ false businessunitid businessunit - business_unit_connector + business_unit_agentfeeditem owningbusinessunit - connector + agentfeeditem owningbusinessunit 0 - ef3327b0-aeba-f011-bbd3-7c1e52365f30 + 71052dab-f31f-f111-88b4-7c1e5235b3a0 false @@ -43921,7 +47265,7 @@ false false - business_unit_customapi + business_unit_agentrule None 1.0.0.0 OneToManyRelationship @@ -43957,30 +47301,30 @@ false businessunitid businessunit - business_unit_customapi + business_unit_agentrule owningbusinessunit - customapi + agentrule owningbusinessunit 0 - e9275eb0-1676-4a47-96fc-bf7e68f9b6ca + d7215dac-2fee-e411-80d9-00155dcf6500 false false iscustomizable - false + true true false - business_unit_emailsignatures + business_unit_externalparty None - 8.1.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -44011,15 +47355,15 @@ false businessunitid businessunit - business_unit_emailsignatures + business_unit_externalparty owningbusinessunit - emailsignature - owningbusinessunit + externalparty + business_unit_externalparty_externalparty 0 - d58a92b2-d45f-42e1-a6d2-6997ebe51052 + 135d94ac-39a7-45e9-9890-b1603070901e false @@ -44029,7 +47373,7 @@ true false - business_unit_userqueryvisualizations + business_unit_connections None 5.0.0.0 OneToManyRelationship @@ -44065,15 +47409,15 @@ false businessunitid businessunit - business_unit_userqueryvisualizations + business_unit_connections owningbusinessunit - userqueryvisualization + connection owningbusinessunit 0 - f873b0b3-caba-f011-bbd3-7c1e52365f30 + f0c577ad-b561-f111-ab0c-7ced8d2cc7ed false @@ -44083,7 +47427,7 @@ false false - business_unit_msdyn_kmfederatedsearchconfig + business_unit_agentprompt None 1.0 OneToManyRelationship @@ -44103,9 +47447,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -44119,15 +47463,15 @@ false businessunitid businessunit - business_unit_msdyn_kmfederatedsearchconfig + business_unit_agentprompt owningbusinessunit - msdyn_kmfederatedsearchconfig + agentprompt owningbusinessunit 0 - bd74b0b3-caba-f011-bbd3-7c1e52365f30 + 4cbe7ead-caba-f011-bbd3-7c1e52365f30 false @@ -44137,9 +47481,9 @@ false false - business_unit_msdyn_knowledgearticleimage + business_unit_msdyn_federatedarticle None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -44173,15 +47517,15 @@ false businessunitid businessunit - business_unit_msdyn_knowledgearticleimage + business_unit_msdyn_federatedarticle owningbusinessunit - msdyn_knowledgearticleimage + msdyn_federatedarticle owningbusinessunit 0 - 3f76b0b3-caba-f011-bbd3-7c1e52365f30 + 9ce1e0ad-c9ba-f011-bbd3-7c1e52365f30 false @@ -44191,9 +47535,9 @@ false false - business_unit_msdyn_knowledgeinteractioninsight + business_unit_msdyn_serviceconfiguration None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -44227,15 +47571,15 @@ false businessunitid businessunit - business_unit_msdyn_knowledgeinteractioninsight + business_unit_msdyn_serviceconfiguration owningbusinessunit - msdyn_knowledgeinteractioninsight + msdyn_serviceconfiguration owningbusinessunit 0 - 1177b0b3-caba-f011-bbd3-7c1e52365f30 + a3e2e0ad-c9ba-f011-bbd3-7c1e52365f30 false @@ -44245,7 +47589,7 @@ false false - business_unit_msdyn_knowledgesearchinsight + business_unit_msdyn_slakpi None 9.1.0.0 OneToManyRelationship @@ -44281,138 +47625,30 @@ false businessunitid businessunit - business_unit_msdyn_knowledgesearchinsight - owningbusinessunit - msdyn_knowledgesearchinsight - owningbusinessunit - - 0 - - - 900f23b4-e6f0-4324-82c1-7c432146f329 - - false - - false - iscustomizable - false - - true - true - BusinessUnit_ProcessSessions - None - 5.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - 110 - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - businessunitid - businessunit - BusinessUnit_ProcessSessions - regardingobjectid - processsession - regardingobjectid_businessunit - - 0 - - - ffe3b2b5-fbf3-41c1-871b-25cfbf745ae9 - - false - - false - iscustomizable - false - - true - false - userentityinstancedata_businessunit - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - businessunitid - businessunit - userentityinstancedata_businessunit + business_unit_msdyn_slakpi owningbusinessunit - userentityinstancedata + msdyn_slakpi owningbusinessunit 0 - c2e7b0b6-2d37-df11-8c67-00155d2a9007 + c44683ae-42bf-f011-bbd5-7ced8d470ac7 false - false + true iscustomizable true - true + false false - business_unit_sharepointdocumentlocation + business_unit_cpr_cprsubscription None - 5.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -44427,9 +47663,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -44443,15 +47679,15 @@ false businessunitid businessunit - business_unit_sharepointdocumentlocation + business_unit_cpr_cprsubscription owningbusinessunit - sharepointdocumentlocation + cpr_cprsubscription owningbusinessunit 0 - ac0733b8-cdba-f011-bbd3-7c1e52365f30 + 83af9cae-b9ba-f011-bbd3-7c1e52365f30 false @@ -44461,9 +47697,9 @@ false false - business_unit_mcpserver + business_unit_connector None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -44497,15 +47733,15 @@ false businessunitid businessunit - business_unit_mcpserver + business_unit_connector owningbusinessunit - mcpserver + connector owningbusinessunit 0 - 6a0833b8-cdba-f011-bbd3-7c1e52365f30 + ef3327b0-aeba-f011-bbd3-7c1e52365f30 false @@ -44515,7 +47751,7 @@ false false - business_unit_mcptool + business_unit_customapi None 1.0.0.0 OneToManyRelationship @@ -44551,27 +47787,27 @@ false businessunitid businessunit - business_unit_mcptool + business_unit_customapi owningbusinessunit - mcptool + customapi owningbusinessunit 0 - 170933b8-cdba-f011-bbd3-7c1e52365f30 + e9275eb0-1676-4a47-96fc-bf7e68f9b6ca false - true + false iscustomizable - true + false - false + true false - business_unit_toolinggateway + business_unit_emailsignatures None - 1.0.0.0 + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -44589,9 +47825,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -44605,27 +47841,27 @@ false businessunitid businessunit - business_unit_toolinggateway + business_unit_emailsignatures owningbusinessunit - toolinggateway + emailsignature owningbusinessunit 0 - b60933b8-cdba-f011-bbd3-7c1e52365f30 + d58a92b2-d45f-42e1-a6d2-6997ebe51052 false - true + false iscustomizable - true + false - false + true false - business_unit_toolinggatewaymcpserver + business_unit_userqueryvisualizations None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -44643,9 +47879,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -44659,15 +47895,15 @@ false businessunitid businessunit - business_unit_toolinggatewaymcpserver + business_unit_userqueryvisualizations owningbusinessunit - toolinggatewaymcpserver + userqueryvisualization owningbusinessunit 0 - d53061b8-ccba-f011-bbd3-7c1e52365f30 + f873b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -44677,7 +47913,7 @@ false false - business_unit_fxexpression + business_unit_msdyn_kmfederatedsearchconfig None 1.0 OneToManyRelationship @@ -44713,15 +47949,15 @@ false businessunitid businessunit - business_unit_fxexpression + business_unit_msdyn_kmfederatedsearchconfig owningbusinessunit - fxexpression + msdyn_kmfederatedsearchconfig owningbusinessunit 0 - ab3161b8-ccba-f011-bbd3-7c1e52365f30 + bd74b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -44731,7 +47967,7 @@ false false - business_unit_msdyn_function + business_unit_msdyn_knowledgearticleimage None 1.0.0.0 OneToManyRelationship @@ -44767,15 +48003,15 @@ false businessunitid businessunit - business_unit_msdyn_function + business_unit_msdyn_knowledgearticleimage owningbusinessunit - msdyn_function + msdyn_knowledgearticleimage owningbusinessunit 0 - 953261b8-ccba-f011-bbd3-7c1e52365f30 + 3f76b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -44785,9 +48021,9 @@ false false - business_unit_plugin + business_unit_msdyn_knowledgeinteractioninsight None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -44821,27 +48057,27 @@ false businessunitid businessunit - business_unit_plugin + business_unit_msdyn_knowledgeinteractioninsight owningbusinessunit - plugin + msdyn_knowledgeinteractioninsight owningbusinessunit 0 - 8fb2d3b8-36d8-4f83-a3b1-ba4057dd5176 + 1177b0b3-caba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false false - BusinessUnit_ImportFiles + business_unit_msdyn_knowledgesearchinsight None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -44859,9 +48095,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -44875,36 +48111,36 @@ false businessunitid businessunit - BusinessUnit_ImportFiles + business_unit_msdyn_knowledgesearchinsight owningbusinessunit - importfile + msdyn_knowledgesearchinsight owningbusinessunit 0 - 91ecfdb8-f1ba-f011-bbd3-7c1e52365f30 + 900f23b4-e6f0-4324-82c1-7c432146f329 false - true + false iscustomizable - true + false - false - false - business_unit_nlsqregistration + true + true + BusinessUnit_ProcessSessions None - 1.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 110 true false @@ -44929,15 +48165,15 @@ false businessunitid businessunit - business_unit_nlsqregistration - owningbusinessunit - nlsqregistration - owningbusinessunit + BusinessUnit_ProcessSessions + regardingobjectid + processsession + regardingobjectid_businessunit 0 - 04aa9bba-9fae-4728-8fbc-697c116ee8a1 + ffe3b2b5-fbf3-41c1-871b-25cfbf745ae9 false @@ -44947,9 +48183,9 @@ true false - businessunit_mailboxtrackingcategory + userentityinstancedata_businessunit None - 8.2.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -44983,30 +48219,30 @@ false businessunitid businessunit - businessunit_mailboxtrackingcategory + userentityinstancedata_businessunit owningbusinessunit - mailboxtrackingcategory + userentityinstancedata owningbusinessunit 0 - cc54fcba-b6ea-f011-8409-000d3adc1cd9 + c2e7b0b6-2d37-df11-8c67-00155d2a9007 false - true + false iscustomizable true - false + true false - business_unit_agenthubgoal + business_unit_sharepointdocumentlocation None - 1.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -45021,9 +48257,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -45037,27 +48273,27 @@ false businessunitid businessunit - business_unit_agenthubgoal + business_unit_sharepointdocumentlocation owningbusinessunit - agenthubgoal + sharepointdocumentlocation owningbusinessunit 0 - c24129bb-aaee-4c5a-9aae-79156f525cd9 + ac0733b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false false - BusinessUnit_ImportData + business_unit_mcpserver None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -45075,9 +48311,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -45091,30 +48327,30 @@ false businessunitid businessunit - BusinessUnit_ImportData + business_unit_mcpserver owningbusinessunit - importdata + mcpserver owningbusinessunit 0 - 2124b4bd-f013-df11-a16e-00155d7aa40d + 6a0833b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false false - business_unit_goal + business_unit_mcptool None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -45129,9 +48365,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -45145,27 +48381,27 @@ false businessunitid businessunit - business_unit_goal + business_unit_mcptool owningbusinessunit - goal + mcptool owningbusinessunit 0 - d62b07be-c867-47ed-8649-259c6246bbe6 + 170933b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false false - business_unit_calendars + business_unit_toolinggateway None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -45183,9 +48419,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - Cascade + Restrict NoCascade NoCascade NoCascade @@ -45199,15 +48435,15 @@ false businessunitid businessunit - business_unit_calendars - businessunitid - calendar - businessunitid + business_unit_toolinggateway + owningbusinessunit + toolinggateway + owningbusinessunit 0 - 6a2a68be-ccba-f011-bbd3-7c1e52365f30 + b60933b8-cdba-f011-bbd3-7c1e52365f30 false @@ -45217,9 +48453,9 @@ false false - business_unit_powerfxrule + business_unit_toolinggatewaymcpserver None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -45253,15 +48489,15 @@ false businessunitid businessunit - business_unit_powerfxrule + business_unit_toolinggatewaymcpserver owningbusinessunit - powerfxrule + toolinggatewaymcpserver owningbusinessunit 0 - 2ea5f9be-f1ba-f011-bbd3-7c1e52365f30 + d53061b8-ccba-f011-bbd3-7c1e52365f30 false @@ -45271,7 +48507,7 @@ false false - business_unit_recentlyused + business_unit_fxexpression None 1.0 OneToManyRelationship @@ -45291,9 +48527,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -45307,15 +48543,15 @@ false businessunitid businessunit - business_unit_recentlyused + business_unit_fxexpression owningbusinessunit - recentlyused + fxexpression owningbusinessunit 0 - 8c82c8bf-aaba-f011-bbd3-7c1e52365f30 + ab3161b8-ccba-f011-bbd3-7c1e52365f30 false @@ -45325,7 +48561,7 @@ false false - business_unit_stagesolutionupload + business_unit_msdyn_function None 1.0.0.0 OneToManyRelationship @@ -45345,7 +48581,7 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade Restrict NoCascade @@ -45361,15 +48597,15 @@ false businessunitid businessunit - business_unit_stagesolutionupload + business_unit_msdyn_function owningbusinessunit - stagesolutionupload + msdyn_function owningbusinessunit 0 - 1fa790c0-c1ba-f011-bbd3-7c1e52365f30 + 953261b8-ccba-f011-bbd3-7c1e52365f30 false @@ -45379,9 +48615,9 @@ false false - business_unit_comment + business_unit_plugin None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -45415,27 +48651,27 @@ false businessunitid businessunit - business_unit_comment + business_unit_plugin owningbusinessunit - comment + plugin owningbusinessunit 0 - e292f2c0-b6ea-f011-8409-000d3adc1cd9 + 8fb2d3b8-36d8-4f83-a3b1-ba4057dd5176 false - true + false iscustomizable - true + false - false + true false - business_unit_agenthubinsight + BusinessUnit_ImportFiles None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -45453,9 +48689,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -45469,27 +48705,27 @@ false businessunitid businessunit - business_unit_agenthubinsight + BusinessUnit_ImportFiles owningbusinessunit - agenthubinsight + importfile owningbusinessunit 0 - eed828c2-cae5-4550-9fc7-ec9739dd96ab + 91ecfdb8-f1ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false false - business_unit_slabase + business_unit_nlsqregistration None - 6.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -45523,27 +48759,27 @@ false businessunitid businessunit - business_unit_slabase + business_unit_nlsqregistration owningbusinessunit - sla + nlsqregistration owningbusinessunit 0 - d8c35dc3-e988-4cc0-bfa2-1f1c2531666e + 04aa9bba-9fae-4728-8fbc-697c116ee8a1 false false iscustomizable - true + false true false - business_unit_queues + businessunit_mailboxtrackingcategory None - 5.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -45577,15 +48813,15 @@ false businessunitid businessunit - business_unit_queues - businessunitid - queue - businessunitid + businessunit_mailboxtrackingcategory + owningbusinessunit + mailboxtrackingcategory + owningbusinessunit 0 - 69ae83c4-c0ba-f011-bbd3-7c1e52365f30 + cc54fcba-b6ea-f011-8409-000d3adc1cd9 false @@ -45595,9 +48831,9 @@ false false - business_unit_conversationtranscript + business_unit_agenthubgoal None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -45631,27 +48867,27 @@ false businessunitid businessunit - business_unit_conversationtranscript + business_unit_agenthubgoal owningbusinessunit - conversationtranscript + agenthubgoal owningbusinessunit 0 - 5b5916c5-f1ba-f011-bbd3-7c1e52365f30 + c24129bb-aaee-4c5a-9aae-79156f525cd9 false - true + false iscustomizable - true + false - false + true false - business_unit_copilotglossaryterm + BusinessUnit_ImportData None - 1.0.0.90 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -45669,9 +48905,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -45685,30 +48921,30 @@ false businessunitid businessunit - business_unit_copilotglossaryterm + BusinessUnit_ImportData owningbusinessunit - copilotglossaryterm + importdata owningbusinessunit 0 - d10d5dc5-5c53-4bab-b455-e52594a99594 + 2124b4bd-f013-df11-a16e-00155d7aa40d false false iscustomizable - false + true true false - BusinessUnit_Imports + business_unit_goal None 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -45739,27 +48975,27 @@ false businessunitid businessunit - BusinessUnit_Imports + business_unit_goal owningbusinessunit - import + goal owningbusinessunit 0 - 1453b8c6-bcba-f011-bbd3-7c1e52365f30 + d62b07be-c867-47ed-8649-259c6246bbe6 false - true + false iscustomizable - true + false - false + true false - business_unit_connectionreference + business_unit_calendars None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -45777,9 +49013,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + Cascade NoCascade NoCascade NoCascade @@ -45793,15 +49029,15 @@ false businessunitid businessunit - business_unit_connectionreference - owningbusinessunit - connectionreference - owningbusinessunit + business_unit_calendars + businessunitid + calendar + businessunitid 0 - eb6debc6-b6ea-f011-8409-000d3adc1cd9 + 6a2a68be-ccba-f011-bbd3-7c1e52365f30 false @@ -45811,7 +49047,7 @@ false false - business_unit_agenthubmetric + business_unit_powerfxrule None 1.0 OneToManyRelationship @@ -45847,30 +49083,30 @@ false businessunitid businessunit - business_unit_agenthubmetric + business_unit_powerfxrule owningbusinessunit - agenthubmetric + powerfxrule owningbusinessunit 0 - f56731cb-2cee-e411-80d9-00155dcf6500 + 2ea5f9be-f1ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false false - business_unit_channelaccessprofile + business_unit_recentlyused None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -45901,15 +49137,15 @@ false businessunitid businessunit - business_unit_channelaccessprofile + business_unit_recentlyused owningbusinessunit - channelaccessprofile - business_unit_channelaccessprofile + recentlyused + owningbusinessunit 0 - efcdffcb-f1ba-f011-bbd3-7c1e52365f30 + 55a9babf-2de0-f011-840b-0022489ebb55 false @@ -45919,9 +49155,9 @@ false false - business_unit_copilotsynonyms + business_unit_cpr_cprsubrun None - 1.0.0.90 + 1.0 OneToManyRelationship DoNotDisplay @@ -45955,15 +49191,15 @@ false businessunitid businessunit - business_unit_copilotsynonyms + business_unit_cpr_cprsubrun owningbusinessunit - copilotsynonyms + cpr_cprsubrun owningbusinessunit 0 - fa4ee4cc-b6ea-f011-8409-000d3adc1cd9 + 8c82c8bf-aaba-f011-bbd3-7c1e52365f30 false @@ -45973,9 +49209,9 @@ false false - business_unit_agenticscenario + business_unit_stagesolutionupload None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -45995,7 +49231,7 @@ NoCascade NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -46009,15 +49245,15 @@ false businessunitid businessunit - business_unit_agenticscenario + business_unit_stagesolutionupload owningbusinessunit - agenticscenario + stagesolutionupload owningbusinessunit 0 - 8851e4cc-b6ea-f011-8409-000d3adc1cd9 + 1fa790c0-c1ba-f011-bbd3-7c1e52365f30 false @@ -46027,9 +49263,9 @@ false false - business_unit_agentmemory + business_unit_comment None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -46047,9 +49283,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -46063,27 +49299,27 @@ false businessunitid businessunit - business_unit_agentmemory + business_unit_comment owningbusinessunit - agentmemory + comment owningbusinessunit 0 - 387797cd-c6ba-f011-bbd3-7c1e52365f30 + e292f2c0-b6ea-f011-8409-000d3adc1cd9 false - false + true iscustomizable true - true + false false - business_unit_pdfsetting + business_unit_agenthubinsight None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -46117,27 +49353,27 @@ false businessunitid businessunit - business_unit_pdfsetting + business_unit_agenthubinsight owningbusinessunit - pdfsetting + agenthubinsight owningbusinessunit 0 - bd325dce-d3ba-f011-bbd3-7c1e52365f30 + eed828c2-cae5-4550-9fc7-ec9739dd96ab false - true + false iscustomizable true - false + true false - business_unit_archivecleanupinfo + business_unit_slabase None - 1.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -46155,9 +49391,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -46171,27 +49407,27 @@ false businessunitid businessunit - business_unit_archivecleanupinfo + business_unit_slabase owningbusinessunit - archivecleanupinfo + sla owningbusinessunit 0 - a2335dce-d3ba-f011-bbd3-7c1e52365f30 + d8c35dc3-e988-4cc0-bfa2-1f1c2531666e false - true + false iscustomizable true - false + true false - business_unit_archivecleanupoperation + business_unit_queues None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -46209,9 +49445,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -46225,15 +49461,15 @@ false businessunitid businessunit - business_unit_archivecleanupoperation - owningbusinessunit - archivecleanupoperation - owningbusinessunit + business_unit_queues + businessunitid + queue + businessunitid 0 - 7f345dce-d3ba-f011-bbd3-7c1e52365f30 + 69ae83c4-c0ba-f011-bbd3-7c1e52365f30 false @@ -46243,7 +49479,7 @@ false false - business_unit_bulkarchiveconfig + business_unit_conversationtranscript None 1.0.0.0 OneToManyRelationship @@ -46279,15 +49515,15 @@ false businessunitid businessunit - business_unit_bulkarchiveconfig + business_unit_conversationtranscript owningbusinessunit - bulkarchiveconfig + conversationtranscript owningbusinessunit 0 - 80355dce-d3ba-f011-bbd3-7c1e52365f30 + 5b5916c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -46297,9 +49533,9 @@ false false - business_unit_bulkarchivefailuredetail + business_unit_copilotglossaryterm None - 1.0.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -46333,25 +49569,25 @@ false businessunitid businessunit - business_unit_bulkarchivefailuredetail + business_unit_copilotglossaryterm owningbusinessunit - bulkarchivefailuredetail + copilotglossaryterm owningbusinessunit 0 - c9b0b1cf-96c8-4e62-9ec1-4db5dae4fd8e + d10d5dc5-5c53-4bab-b455-e52594a99594 false false iscustomizable - true + false true false - business_unit_appointment_activities + BusinessUnit_Imports None 5.0.0.0 OneToManyRelationship @@ -46387,27 +49623,27 @@ false businessunitid businessunit - business_unit_appointment_activities + BusinessUnit_Imports owningbusinessunit - appointment - owningbusinessunit_appointment + import + owningbusinessunit 0 - f41bc1d2-7198-4a57-a081-cb43a9cb84c4 + 1453b8c6-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false false - businessunit_principalobjectattributeaccess - Append - 5.0.0.0 + business_unit_connectionreference + None + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -46425,9 +49661,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - Cascade + Restrict NoCascade NoCascade NoCascade @@ -46441,15 +49677,15 @@ false businessunitid businessunit - businessunit_principalobjectattributeaccess - objectid - principalobjectattributeaccess - objectid_businessunit + business_unit_connectionreference + owningbusinessunit + connectionreference + owningbusinessunit - 1 + 0 - 26cddcd2-b6ea-f011-8409-000d3adc1cd9 + eb6debc6-b6ea-f011-8409-000d3adc1cd9 false @@ -46459,7 +49695,7 @@ false false - business_unit_agenttask + business_unit_agenthubmetric None 1.0 OneToManyRelationship @@ -46479,9 +49715,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -46495,15 +49731,15 @@ false businessunitid businessunit - business_unit_agenttask + business_unit_agenthubmetric owningbusinessunit - agenttask + agenthubmetric owningbusinessunit 0 - bb7765d3-b6ba-f011-bbd3-7c1e52365f30 + def26fc8-5566-f111-ab0c-70a8a52b6964 false @@ -46513,9 +49749,9 @@ false false - business_unit_tdsmetadata + business_unit_ctx_child None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -46549,30 +49785,30 @@ false businessunitid businessunit - business_unit_tdsmetadata + business_unit_ctx_child owningbusinessunit - tdsmetadata + ctx_child owningbusinessunit 0 - 0f5e54d4-d3ba-f011-bbd3-7c1e52365f30 + f56731cb-2cee-e411-80d9-00155dcf6500 false - true + false iscustomizable true - false + true false - business_unit_bulkarchiveoperation + business_unit_channelaccessprofile None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -46587,9 +49823,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -46603,15 +49839,15 @@ false businessunitid businessunit - business_unit_bulkarchiveoperation + business_unit_channelaccessprofile owningbusinessunit - bulkarchiveoperation - owningbusinessunit + channelaccessprofile + business_unit_channelaccessprofile 0 - 995f54d4-d3ba-f011-bbd3-7c1e52365f30 + 27f4f5cb-524d-f111-bec7-002248a2a8d1 false @@ -46621,9 +49857,9 @@ false false - business_unit_enablearchivalrequest + business_unit_computeruseagent None - 1.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -46657,15 +49893,15 @@ false businessunitid businessunit - business_unit_enablearchivalrequest + business_unit_computeruseagent owningbusinessunit - enablearchivalrequest + computeruseagent owningbusinessunit 0 - 162615d5-42bf-f011-bbd5-7ced8d470ac7 + efcdffcb-f1ba-f011-bbd3-7c1e52365f30 false @@ -46675,9 +49911,9 @@ false false - business_unit_cpr_cprrun + business_unit_copilotsynonyms None - 1.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -46711,27 +49947,27 @@ false businessunitid businessunit - business_unit_cpr_cprrun + business_unit_copilotsynonyms owningbusinessunit - cpr_cprrun + copilotsynonyms owningbusinessunit 0 - 683fa2d5-c90b-44b1-afaf-57a65184aaa8 + fa4ee4cc-b6ea-f011-8409-000d3adc1cd9 false - false + true iscustomizable - false + true - true + false false - business_unit_activitypointer + business_unit_agenticscenario None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -46765,15 +50001,15 @@ false businessunitid businessunit - business_unit_activitypointer + business_unit_agenticscenario owningbusinessunit - activitypointer + agenticscenario owningbusinessunit 0 - 44b9b9d5-b9ba-f011-bbd3-7c1e52365f30 + 8851e4cc-b6ea-f011-8409-000d3adc1cd9 false @@ -46783,9 +50019,9 @@ false false - business_unit_environmentvariabledefinition + business_unit_agentmemory None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -46803,9 +50039,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -46819,27 +50055,27 @@ false businessunitid businessunit - business_unit_environmentvariabledefinition + business_unit_agentmemory owningbusinessunit - environmentvariabledefinition + agentmemory owningbusinessunit 0 - 8677e6d5-b2ba-f011-bbd3-7c1e52365f30 + 387797cd-c6ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true false - business_unit_datalakefolder + business_unit_pdfsetting None - 1.0.0.11 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -46873,27 +50109,27 @@ false businessunitid businessunit - business_unit_datalakefolder + business_unit_pdfsetting owningbusinessunit - datalakefolder + pdfsetting owningbusinessunit 0 - ecaa1ad7-158d-4e44-a472-c9852595643f + bd325dce-d3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - true - business_unit_reports + false + false + business_unit_archivecleanupinfo None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -46911,9 +50147,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -46927,15 +50163,15 @@ false businessunitid businessunit - business_unit_reports + business_unit_archivecleanupinfo owningbusinessunit - report + archivecleanupinfo owningbusinessunit 0 - 6aa7f6d8-f7ba-f011-bbd3-7c1e52365f30 + a2335dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -46945,9 +50181,9 @@ false false - business_unit_ctx_subscription + business_unit_archivecleanupoperation None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -46981,27 +50217,27 @@ false businessunitid businessunit - business_unit_ctx_subscription + business_unit_archivecleanupoperation owningbusinessunit - ctx_subscription + archivecleanupoperation owningbusinessunit 0 - 6fc922d9-6aba-4a0d-b3e4-946c6ce44bd5 + 7f345dce-d3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true - true - business_unit_mailmergetemplates + false + false + business_unit_bulkarchiveconfig None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -47019,9 +50255,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -47035,15 +50271,15 @@ false businessunitid businessunit - business_unit_mailmergetemplates + business_unit_bulkarchiveconfig owningbusinessunit - mailmergetemplate + bulkarchiveconfig owningbusinessunit 0 - 307cc9da-d3ba-f011-bbd3-7c1e52365f30 + 80355dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -47053,9 +50289,9 @@ false false - business_unit_reconciliationentityinfo + business_unit_bulkarchivefailuredetail None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -47089,15 +50325,123 @@ false businessunitid businessunit - business_unit_reconciliationentityinfo + business_unit_bulkarchivefailuredetail owningbusinessunit - reconciliationentityinfo + bulkarchivefailuredetail owningbusinessunit 0 - b07dc9da-d3ba-f011-bbd3-7c1e52365f30 + c9b0b1cf-96c8-4e62-9ec1-4db5dae4fd8e + + false + + false + iscustomizable + true + + true + false + business_unit_appointment_activities + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_appointment_activities + owningbusinessunit + appointment + owningbusinessunit_appointment + + 0 + + + f41bc1d2-7198-4a57-a081-cb43a9cb84c4 + + false + + false + iscustomizable + false + + true + false + businessunit_principalobjectattributeaccess + Append + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + businessunit_principalobjectattributeaccess + objectid + principalobjectattributeaccess + objectid_businessunit + + 1 + + + 26cddcd2-b6ea-f011-8409-000d3adc1cd9 false @@ -47107,9 +50451,9 @@ false false - business_unit_reconciliationentitystepinfo + business_unit_agenttask None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -47127,9 +50471,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -47143,15 +50487,15 @@ false businessunitid businessunit - business_unit_reconciliationentitystepinfo + business_unit_agenttask owningbusinessunit - reconciliationentitystepinfo + agenttask owningbusinessunit 0 - e37ec9da-d3ba-f011-bbd3-7c1e52365f30 + bb7765d3-b6ba-f011-bbd3-7c1e52365f30 false @@ -47161,9 +50505,9 @@ false false - business_unit_reconciliationinfo + business_unit_tdsmetadata None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -47197,15 +50541,15 @@ false businessunitid businessunit - business_unit_reconciliationinfo + business_unit_tdsmetadata owningbusinessunit - reconciliationinfo + tdsmetadata owningbusinessunit 0 - 5080c9da-d3ba-f011-bbd3-7c1e52365f30 + 0f5e54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -47215,9 +50559,9 @@ false false - business_unit_retentioncleanupinfo + business_unit_bulkarchiveoperation None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -47251,15 +50595,15 @@ false businessunitid businessunit - business_unit_retentioncleanupinfo + business_unit_bulkarchiveoperation owningbusinessunit - retentioncleanupinfo + bulkarchiveoperation owningbusinessunit 0 - b181c9da-d3ba-f011-bbd3-7c1e52365f30 + 995f54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -47269,7 +50613,7 @@ false false - business_unit_retentioncleanupoperation + business_unit_enablearchivalrequest None 1.0 OneToManyRelationship @@ -47305,15 +50649,15 @@ false businessunitid businessunit - business_unit_retentioncleanupoperation + business_unit_enablearchivalrequest owningbusinessunit - retentioncleanupoperation + enablearchivalrequest owningbusinessunit 0 - 3483c9da-d3ba-f011-bbd3-7c1e52365f30 + 162615d5-42bf-f011-bbd5-7ced8d470ac7 false @@ -47323,9 +50667,9 @@ false false - business_unit_retentionconfig + business_unit_cpr_cprrun None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -47359,27 +50703,27 @@ false businessunitid businessunit - business_unit_retentionconfig + business_unit_cpr_cprrun owningbusinessunit - retentionconfig + cpr_cprrun owningbusinessunit 0 - 307f18de-bdba-f011-bbd3-7c1e52365f30 + 683fa2d5-c90b-44b1-afaf-57a65184aaa8 false - true + false iscustomizable - true + false - false + true false - business_unit_aipluginauth + business_unit_activitypointer None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -47397,9 +50741,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -47413,15 +50757,15 @@ false businessunitid businessunit - business_unit_aipluginauth + business_unit_activitypointer owningbusinessunit - aipluginauth + activitypointer owningbusinessunit 0 - 188118de-bdba-f011-bbd3-7c1e52365f30 + 44b9b9d5-b9ba-f011-bbd3-7c1e52365f30 false @@ -47431,9 +50775,9 @@ false false - business_unit_aipluginconversationstarter + business_unit_environmentvariabledefinition None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -47467,15 +50811,15 @@ false businessunitid businessunit - business_unit_aipluginconversationstarter + business_unit_environmentvariabledefinition owningbusinessunit - aipluginconversationstarter + environmentvariabledefinition owningbusinessunit 0 - 108318de-bdba-f011-bbd3-7c1e52365f30 + 8677e6d5-b2ba-f011-bbd3-7c1e52365f30 false @@ -47485,9 +50829,9 @@ false false - business_unit_aipluginconversationstartermapping + business_unit_datalakefolder None - 1.0 + 1.0.0.11 OneToManyRelationship DoNotDisplay @@ -47521,15 +50865,69 @@ false businessunitid businessunit - business_unit_aipluginconversationstartermapping + business_unit_datalakefolder owningbusinessunit - aipluginconversationstartermapping + datalakefolder owningbusinessunit 0 - 45fb85de-b5ba-f011-bbd3-7c1e52365f30 + ecaa1ad7-158d-4e44-a472-c9852595643f + + false + + false + iscustomizable + false + + true + true + business_unit_reports + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_reports + owningbusinessunit + report + owningbusinessunit + + 0 + + + 6aa7f6d8-f7ba-f011-bbd3-7c1e52365f30 false @@ -47539,7 +50937,7 @@ false false - business_unit_privilegecheckerrun + business_unit_ctx_subscription None 1.0 OneToManyRelationship @@ -47575,27 +50973,27 @@ false businessunitid businessunit - business_unit_privilegecheckerrun + business_unit_ctx_subscription owningbusinessunit - privilegecheckerrun + ctx_subscription owningbusinessunit 0 - 55ebf1de-f7ba-f011-bbd3-7c1e52365f30 + 6fc922d9-6aba-4a0d-b3e4-946c6ce44bd5 false - true + false iscustomizable true - false - false - business_unit_ctx_invoicecollection + true + true + business_unit_mailmergetemplates None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -47613,9 +51011,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -47629,15 +51027,15 @@ false businessunitid businessunit - business_unit_ctx_invoicecollection + business_unit_mailmergetemplates owningbusinessunit - ctx_invoicecollection + mailmergetemplate owningbusinessunit 0 - a822c2e0-d3ba-f011-bbd3-7c1e52365f30 + 307cc9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -47647,9 +51045,9 @@ false false - business_unit_retentionfailuredetail + business_unit_reconciliationentityinfo None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -47683,15 +51081,15 @@ false businessunitid businessunit - business_unit_retentionfailuredetail + business_unit_reconciliationentityinfo owningbusinessunit - retentionfailuredetail + reconciliationentityinfo owningbusinessunit 0 - 8323c2e0-d3ba-f011-bbd3-7c1e52365f30 + b07dc9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -47701,9 +51099,9 @@ false false - business_unit_retentionoperation + business_unit_reconciliationentitystepinfo None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -47737,15 +51135,15 @@ false businessunitid businessunit - business_unit_retentionoperation + business_unit_reconciliationentitystepinfo owningbusinessunit - retentionoperation + reconciliationentitystepinfo owningbusinessunit 0 - 2625c2e0-d3ba-f011-bbd3-7c1e52365f30 + e37ec9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -47755,9 +51153,9 @@ false false - business_unit_retentionsuccessdetail + business_unit_reconciliationinfo None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -47791,27 +51189,27 @@ false businessunitid businessunit - business_unit_retentionsuccessdetail + business_unit_reconciliationinfo owningbusinessunit - retentionsuccessdetail + reconciliationinfo owningbusinessunit 0 - 947749e1-7d88-41af-af8e-c8dfc2c04daa + 5080c9da-d3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false false - systemuserbusinessunitentitymap_businessunitid_businessunit + business_unit_retentioncleanupinfo None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -47829,9 +51227,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -47845,15 +51243,15 @@ false businessunitid businessunit - systemuserbusinessunitentitymap_businessunitid_businessunit - businessunitid - systemuserbusinessunitentitymap - businessunitid_businessunit + business_unit_retentioncleanupinfo + owningbusinessunit + retentioncleanupinfo + owningbusinessunit 0 - 5ecd36e2-b2ba-f011-bbd3-7c1e52365f30 + b181c9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -47863,9 +51261,9 @@ false false - business_unit_exportedexcel + business_unit_retentioncleanupoperation None - 1.0.30.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -47899,15 +51297,15 @@ false businessunitid businessunit - business_unit_exportedexcel + business_unit_retentioncleanupoperation owningbusinessunit - exportedexcel + retentioncleanupoperation owningbusinessunit 0 - e4ce36e2-b2ba-f011-bbd3-7c1e52365f30 + 3483c9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -47917,9 +51315,9 @@ false false - business_unit_retaineddataexcel + business_unit_retentionconfig None - 1.0.30.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -47953,27 +51351,27 @@ false businessunitid businessunit - business_unit_retaineddataexcel + business_unit_retentionconfig owningbusinessunit - retaineddataexcel + retentionconfig owningbusinessunit 0 - 74ea96e2-2c97-4e0a-91d1-fa74b4dd8f6d + 307f18de-bdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false false - businessunit_internal_addresses + business_unit_aipluginauth None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -47991,9 +51389,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - Cascade + Restrict NoCascade NoCascade NoCascade @@ -48007,15 +51405,15 @@ false businessunitid businessunit - businessunit_internal_addresses - parentid - internaladdress - parentid_businessunit + business_unit_aipluginauth + owningbusinessunit + aipluginauth + owningbusinessunit 0 - 1ef027e4-baba-f011-bbd3-7c1e52365f30 + 188118de-bdba-f011-bbd3-7c1e52365f30 false @@ -48025,9 +51423,9 @@ false false - business_unit_businessprocess + business_unit_aipluginconversationstarter None - 1.9.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -48061,15 +51459,15 @@ false businessunitid businessunit - business_unit_businessprocess + business_unit_aipluginconversationstarter owningbusinessunit - businessprocess + aipluginconversationstarter owningbusinessunit 0 - 95f127e4-baba-f011-bbd3-7c1e52365f30 + 108318de-bdba-f011-bbd3-7c1e52365f30 false @@ -48079,9 +51477,9 @@ false false - business_unit_credential + business_unit_aipluginconversationstartermapping None - 1.6.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -48115,15 +51513,15 @@ false businessunitid businessunit - business_unit_credential + business_unit_aipluginconversationstartermapping owningbusinessunit - credential + aipluginconversationstartermapping owningbusinessunit 0 - 80f227e4-baba-f011-bbd3-7c1e52365f30 + 45fb85de-b5ba-f011-bbd3-7c1e52365f30 false @@ -48133,7 +51531,7 @@ false false - business_unit_desktopflowmodule + business_unit_privilegecheckerrun None 1.0 OneToManyRelationship @@ -48169,15 +51567,15 @@ false businessunitid businessunit - business_unit_desktopflowmodule + business_unit_privilegecheckerrun owningbusinessunit - desktopflowmodule + privilegecheckerrun owningbusinessunit 0 - 024e9ee4-bdba-f011-bbd3-7c1e52365f30 + 55ebf1de-f7ba-f011-bbd3-7c1e52365f30 false @@ -48187,7 +51585,7 @@ false false - business_unit_aiplugingovernance + business_unit_ctx_invoicecollection None 1.0 OneToManyRelationship @@ -48223,15 +51621,15 @@ false businessunitid businessunit - business_unit_aiplugingovernance + business_unit_ctx_invoicecollection owningbusinessunit - aiplugingovernance + ctx_invoicecollection owningbusinessunit 0 - d14f9ee4-bdba-f011-bbd3-7c1e52365f30 + a822c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -48241,7 +51639,7 @@ false false - business_unit_aiplugingovernanceext + business_unit_retentionfailuredetail None 1.0 OneToManyRelationship @@ -48277,15 +51675,15 @@ false businessunitid businessunit - business_unit_aiplugingovernanceext + business_unit_retentionfailuredetail owningbusinessunit - aiplugingovernanceext + retentionfailuredetail owningbusinessunit 0 - 66519ee4-bdba-f011-bbd3-7c1e52365f30 + 8323c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -48295,7 +51693,7 @@ false false - business_unit_aipluginoperationresponsetemplate + business_unit_retentionoperation None 1.0 OneToManyRelationship @@ -48331,15 +51729,15 @@ false businessunitid businessunit - business_unit_aipluginoperationresponsetemplate + business_unit_retentionoperation owningbusinessunit - aipluginoperationresponsetemplate + retentionoperation owningbusinessunit 0 - 3a885ee6-c0ba-f011-bbd3-7c1e52365f30 + 2625c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -48349,9 +51747,9 @@ false false - business_unit_bot + business_unit_retentionsuccessdetail None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -48385,27 +51783,27 @@ false businessunitid businessunit - business_unit_bot + business_unit_retentionsuccessdetail owningbusinessunit - bot + retentionsuccessdetail owningbusinessunit 0 - 8f8a5ee6-c0ba-f011-bbd3-7c1e52365f30 + 947749e1-7d88-41af-af8e-c8dfc2c04daa false - true + false iscustomizable - true + false - false + true false - business_unit_botcomponent + systemuserbusinessunitentitymap_businessunitid_businessunit None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -48423,9 +51821,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -48439,15 +51837,15 @@ false businessunitid businessunit - business_unit_botcomponent - owningbusinessunit - botcomponent - owningbusinessunit + systemuserbusinessunitentitymap_businessunitid_businessunit + businessunitid + systemuserbusinessunitentitymap + businessunitid_businessunit 0 - 36fe9fe6-aaba-f011-bbd3-7c1e52365f30 + 5ecd36e2-b2ba-f011-bbd3-7c1e52365f30 false @@ -48457,9 +51855,9 @@ false false - business_unit_exportsolutionupload + business_unit_exportedexcel None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -48477,7 +51875,7 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade Restrict NoCascade @@ -48493,15 +51891,15 @@ false businessunitid businessunit - business_unit_exportsolutionupload + business_unit_exportedexcel owningbusinessunit - exportsolutionupload + exportedexcel owningbusinessunit 0 - 9e842fe8-b2ba-f011-bbd3-7c1e52365f30 + e4ce36e2-b2ba-f011-bbd3-7c1e52365f30 false @@ -48511,9 +51909,9 @@ false false - business_unit_synapsedatabase + business_unit_retaineddataexcel None - 1.0.0.39 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -48547,27 +51945,27 @@ false businessunitid businessunit - business_unit_synapsedatabase + business_unit_retaineddataexcel owningbusinessunit - synapsedatabase + retaineddataexcel owningbusinessunit 0 - 3e8a5ce9-bfba-f011-bbd3-7c1e52365f30 + 74ea96e2-2c97-4e0a-91d1-fa74b4dd8f6d false - true + false iscustomizable - true + false - false + true false - business_unit_msdyn_aievaluationconfiguration + businessunit_internal_addresses None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -48585,9 +51983,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + Cascade NoCascade NoCascade NoCascade @@ -48601,15 +51999,15 @@ false businessunitid businessunit - business_unit_msdyn_aievaluationconfiguration - owningbusinessunit - msdyn_aievaluationconfiguration - owningbusinessunit + businessunit_internal_addresses + parentid + internaladdress + parentid_businessunit 0 - 608d5ce9-bfba-f011-bbd3-7c1e52365f30 + 1ef027e4-baba-f011-bbd3-7c1e52365f30 false @@ -48619,9 +52017,9 @@ false false - business_unit_msdyn_aievaluationrun + business_unit_businessprocess None - 1.0 + 1.9.0.0 OneToManyRelationship DoNotDisplay @@ -48655,15 +52053,15 @@ false businessunitid businessunit - business_unit_msdyn_aievaluationrun + business_unit_businessprocess owningbusinessunit - msdyn_aievaluationrun + businessprocess owningbusinessunit 0 - 4b8f5ce9-bfba-f011-bbd3-7c1e52365f30 + 95f127e4-baba-f011-bbd3-7c1e52365f30 false @@ -48673,9 +52071,9 @@ false false - business_unit_msdyn_aioptimization + business_unit_credential None - 1.0 + 1.6.0.0 OneToManyRelationship DoNotDisplay @@ -48709,15 +52107,15 @@ false businessunitid businessunit - business_unit_msdyn_aioptimization + business_unit_credential owningbusinessunit - msdyn_aioptimization + credential owningbusinessunit 0 - ad182aea-baba-f011-bbd3-7c1e52365f30 + 80f227e4-baba-f011-bbd3-7c1e52365f30 false @@ -48727,9 +52125,9 @@ false false - business_unit_flowcapacityassignment + business_unit_desktopflowmodule None - 1.7.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -48763,15 +52161,15 @@ false businessunitid businessunit - business_unit_flowcapacityassignment + business_unit_desktopflowmodule owningbusinessunit - flowcapacityassignment + desktopflowmodule owningbusinessunit 0 - 7f192aea-baba-f011-bbd3-7c1e52365f30 + 024e9ee4-bdba-f011-bbd3-7c1e52365f30 false @@ -48781,9 +52179,9 @@ false false - business_unit_flowcredentialapplication + business_unit_aiplugingovernance None - 1.7.11.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -48817,15 +52215,15 @@ false businessunitid businessunit - business_unit_flowcredentialapplication + business_unit_aiplugingovernance owningbusinessunit - flowcredentialapplication + aiplugingovernance owningbusinessunit 0 - 5f1a2aea-baba-f011-bbd3-7c1e52365f30 + d14f9ee4-bdba-f011-bbd3-7c1e52365f30 false @@ -48835,9 +52233,9 @@ false false - business_unit_flowevent + business_unit_aiplugingovernanceext None - 1.5.13.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -48871,15 +52269,15 @@ false businessunitid businessunit - business_unit_flowevent + business_unit_aiplugingovernanceext owningbusinessunit - flowevent + aiplugingovernanceext owningbusinessunit 0 - b7b1c1ea-bdba-f011-bbd3-7c1e52365f30 + 66519ee4-bdba-f011-bbd3-7c1e52365f30 false @@ -48889,7 +52287,7 @@ false false - business_unit_sideloadedaiplugin + business_unit_aipluginoperationresponsetemplate None 1.0 OneToManyRelationship @@ -48925,15 +52323,15 @@ false businessunitid businessunit - business_unit_sideloadedaiplugin + business_unit_aipluginoperationresponsetemplate owningbusinessunit - sideloadedaiplugin + aipluginoperationresponsetemplate owningbusinessunit 0 - bdb3c1ea-bdba-f011-bbd3-7c1e52365f30 + 3a885ee6-c0ba-f011-bbd3-7c1e52365f30 false @@ -48943,7 +52341,7 @@ false false - business_unit_aiplugin + business_unit_bot None 1.0.0.0 OneToManyRelationship @@ -48979,15 +52377,15 @@ false businessunitid businessunit - business_unit_aiplugin + business_unit_bot owningbusinessunit - aiplugin + bot owningbusinessunit 0 - 74b5c1ea-bdba-f011-bbd3-7c1e52365f30 + 8f8a5ee6-c0ba-f011-bbd3-7c1e52365f30 false @@ -48997,7 +52395,7 @@ false false - business_unit_aipluginexternalschema + business_unit_botcomponent None 1.0.0.0 OneToManyRelationship @@ -49033,15 +52431,15 @@ false businessunitid businessunit - business_unit_aipluginexternalschema + business_unit_botcomponent owningbusinessunit - aipluginexternalschema + botcomponent owningbusinessunit 0 - 25b7c1ea-bdba-f011-bbd3-7c1e52365f30 + 36fe9fe6-aaba-f011-bbd3-7c1e52365f30 false @@ -49051,7 +52449,7 @@ false false - business_unit_aipluginexternalschemaproperty + business_unit_exportsolutionupload None 1.0.0.0 OneToManyRelationship @@ -49071,7 +52469,7 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade Restrict NoCascade @@ -49087,15 +52485,15 @@ false businessunitid businessunit - business_unit_aipluginexternalschemaproperty + business_unit_exportsolutionupload owningbusinessunit - aipluginexternalschemaproperty + exportsolutionupload owningbusinessunit 0 - e8e656ec-c0ba-f011-bbd3-7c1e52365f30 + 9e842fe8-b2ba-f011-bbd3-7c1e52365f30 false @@ -49105,9 +52503,9 @@ false false - business_unit_botcomponentcollection + business_unit_synapsedatabase None - 2.2.12.13735069 + 1.0.0.39 OneToManyRelationship DoNotDisplay @@ -49141,15 +52539,15 @@ false businessunitid businessunit - business_unit_botcomponentcollection + business_unit_synapsedatabase owningbusinessunit - botcomponentcollection + synapsedatabase owningbusinessunit 0 - 3e9576ec-edba-f011-bbd3-7c1e52365f30 + 3e8a5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -49159,9 +52557,9 @@ false false - business_unit_msdyn_virtualtablecolumncandidate + business_unit_msdyn_aievaluationconfiguration None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -49195,30 +52593,30 @@ false businessunitid businessunit - business_unit_msdyn_virtualtablecolumncandidate + business_unit_msdyn_aievaluationconfiguration owningbusinessunit - msdyn_virtualtablecolumncandidate + msdyn_aievaluationconfiguration owningbusinessunit 0 - fff738ed-cbf7-e411-93a4-00219b3e9ee9 + 608d5ce9-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false false - business_unit_profilerule + business_unit_msdyn_aievaluationrun None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -49233,9 +52631,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -49249,15 +52647,15 @@ false businessunitid businessunit - business_unit_profilerule + business_unit_msdyn_aievaluationrun owningbusinessunit - channelaccessprofilerule - profileruleid5 + msdyn_aievaluationrun + owningbusinessunit 0 - a00f9aef-bfba-f011-bbd3-7c1e52365f30 + 4b8f5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -49267,7 +52665,7 @@ false false - business_unit_msdyn_aioptimizationprivatedata + business_unit_msdyn_aioptimization None 1.0 OneToManyRelationship @@ -49303,15 +52701,15 @@ false businessunitid businessunit - business_unit_msdyn_aioptimizationprivatedata + business_unit_msdyn_aioptimization owningbusinessunit - msdyn_aioptimizationprivatedata + msdyn_aioptimization owningbusinessunit 0 - 99109aef-bfba-f011-bbd3-7c1e52365f30 + ad182aea-baba-f011-bbd3-7c1e52365f30 false @@ -49321,9 +52719,9 @@ false false - business_unit_msdyn_aitestcase + business_unit_flowcapacityassignment None - 1.0 + 1.7.0.0 OneToManyRelationship DoNotDisplay @@ -49357,15 +52755,15 @@ false businessunitid businessunit - business_unit_msdyn_aitestcase + business_unit_flowcapacityassignment owningbusinessunit - msdyn_aitestcase + flowcapacityassignment owningbusinessunit 0 - d1119aef-bfba-f011-bbd3-7c1e52365f30 + 7f192aea-baba-f011-bbd3-7c1e52365f30 false @@ -49375,9 +52773,9 @@ false false - business_unit_msdyn_aitestcasedocument + business_unit_flowcredentialapplication None - 1.0 + 1.7.11.0 OneToManyRelationship DoNotDisplay @@ -49411,15 +52809,15 @@ false businessunitid businessunit - business_unit_msdyn_aitestcasedocument + business_unit_flowcredentialapplication owningbusinessunit - msdyn_aitestcasedocument + flowcredentialapplication owningbusinessunit 0 - 96129aef-bfba-f011-bbd3-7c1e52365f30 + 5f1a2aea-baba-f011-bbd3-7c1e52365f30 false @@ -49429,9 +52827,9 @@ false false - business_unit_msdyn_aitestcaseinput + business_unit_flowevent None - 1.0 + 1.5.13.0 OneToManyRelationship DoNotDisplay @@ -49465,15 +52863,15 @@ false businessunitid businessunit - business_unit_msdyn_aitestcaseinput + business_unit_flowevent owningbusinessunit - msdyn_aitestcaseinput + flowevent owningbusinessunit 0 - aaf665f0-baba-f011-bbd3-7c1e52365f30 + 1e2943ea-b315-f111-8347-0022489f8311 false @@ -49483,9 +52881,9 @@ false false - business_unit_flowmachine + business_unit_msdyn_powerappswrapbuild None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -49519,15 +52917,15 @@ false businessunitid businessunit - business_unit_flowmachine + business_unit_msdyn_powerappswrapbuild owningbusinessunit - flowmachine + msdyn_powerappswrapbuild owningbusinessunit 0 - caf765f0-baba-f011-bbd3-7c1e52365f30 + b7b1c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -49537,9 +52935,9 @@ false false - business_unit_flowmachinegroup + business_unit_sideloadedaiplugin None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -49573,15 +52971,15 @@ false businessunitid businessunit - business_unit_flowmachinegroup + business_unit_sideloadedaiplugin owningbusinessunit - flowmachinegroup + sideloadedaiplugin owningbusinessunit 0 - baf865f0-baba-f011-bbd3-7c1e52365f30 + bdb3c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -49591,9 +52989,9 @@ false false - business_unit_flowmachineimage + business_unit_aiplugin None - 1.3.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -49627,15 +53025,15 @@ false businessunitid businessunit - business_unit_flowmachineimage + business_unit_aiplugin owningbusinessunit - flowmachineimage + aiplugin owningbusinessunit 0 - 1feac3f0-bdba-f011-bbd3-7c1e52365f30 + 74b5c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -49645,7 +53043,7 @@ false false - business_unit_aiplugininstance + business_unit_aipluginexternalschema None 1.0.0.0 OneToManyRelationship @@ -49681,15 +53079,15 @@ false businessunitid businessunit - business_unit_aiplugininstance + business_unit_aipluginexternalschema owningbusinessunit - aiplugininstance + aipluginexternalschema owningbusinessunit 0 - 0cecc3f0-bdba-f011-bbd3-7c1e52365f30 + 25b7c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -49699,7 +53097,7 @@ false false - business_unit_aipluginoperation + business_unit_aipluginexternalschemaproperty None 1.0.0.0 OneToManyRelationship @@ -49735,15 +53133,15 @@ false businessunitid businessunit - business_unit_aipluginoperation + business_unit_aipluginexternalschemaproperty owningbusinessunit - aipluginoperation + aipluginexternalschemaproperty owningbusinessunit 0 - feedc3f0-bdba-f011-bbd3-7c1e52365f30 + e8e656ec-c0ba-f011-bbd3-7c1e52365f30 false @@ -49753,9 +53151,9 @@ false false - business_unit_aipluginoperationparameter + business_unit_botcomponentcollection None - 1.0 + 2.2.12.13735069 OneToManyRelationship DoNotDisplay @@ -49789,30 +53187,84 @@ false businessunitid businessunit - business_unit_aipluginoperationparameter + business_unit_botcomponentcollection owningbusinessunit - aipluginoperationparameter + botcomponentcollection owningbusinessunit 0 - 1391d9f2-ce23-4bad-9bab-ca8411d86138 + 3e9576ec-edba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_msdyn_virtualtablecolumncandidate + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_msdyn_virtualtablecolumncandidate + owningbusinessunit + msdyn_virtualtablecolumncandidate + owningbusinessunit + + 0 + + + fff738ed-cbf7-e411-93a4-00219b3e9ee9 false false iscustomizable - false + true true false - businessunit_mailboxtrackingfolder + business_unit_profilerule None - 7.1.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -49843,15 +53295,15 @@ false businessunitid businessunit - businessunit_mailboxtrackingfolder + business_unit_profilerule owningbusinessunit - mailboxtrackingfolder - owningbusinessunit + channelaccessprofilerule + profileruleid5 0 - bda2aff4-ecba-f011-bbd3-7c1e52365f30 + a00f9aef-bfba-f011-bbd3-7c1e52365f30 false @@ -49861,9 +53313,9 @@ false false - business_unit_msdyn_richtextfile + business_unit_msdyn_aioptimizationprivatedata None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -49897,15 +53349,15 @@ false businessunitid businessunit - business_unit_msdyn_richtextfile + business_unit_msdyn_aioptimizationprivatedata owningbusinessunit - msdyn_richtextfile + msdyn_aioptimizationprivatedata owningbusinessunit 0 - 975e90f5-bfba-f011-bbd3-7c1e52365f30 + 99109aef-bfba-f011-bbd3-7c1e52365f30 false @@ -49915,7 +53367,7 @@ false false - business_unit_msdyn_aitestrun + business_unit_msdyn_aitestcase None 1.0 OneToManyRelationship @@ -49951,15 +53403,15 @@ false businessunitid businessunit - business_unit_msdyn_aitestrun + business_unit_msdyn_aitestcase owningbusinessunit - msdyn_aitestrun + msdyn_aitestcase owningbusinessunit 0 - d25f90f5-bfba-f011-bbd3-7c1e52365f30 + d1119aef-bfba-f011-bbd3-7c1e52365f30 false @@ -49969,7 +53421,7 @@ false false - business_unit_msdyn_aitestrunbatch + business_unit_msdyn_aitestcasedocument None 1.0 OneToManyRelationship @@ -50005,15 +53457,15 @@ false businessunitid businessunit - business_unit_msdyn_aitestrunbatch + business_unit_msdyn_aitestcasedocument owningbusinessunit - msdyn_aitestrunbatch + msdyn_aitestcasedocument owningbusinessunit 0 - a60674f6-baba-f011-bbd3-7c1e52365f30 + 96129aef-bfba-f011-bbd3-7c1e52365f30 false @@ -50023,9 +53475,9 @@ false false - business_unit_flowmachineimageversion + business_unit_msdyn_aitestcaseinput None - 1.3.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -50059,15 +53511,15 @@ false businessunitid businessunit - business_unit_flowmachineimageversion + business_unit_msdyn_aitestcaseinput owningbusinessunit - flowmachineimageversion + msdyn_aitestcaseinput owningbusinessunit 0 - a40774f6-baba-f011-bbd3-7c1e52365f30 + aaf665f0-baba-f011-bbd3-7c1e52365f30 false @@ -50077,9 +53529,9 @@ false false - business_unit_flowmachinenetwork + business_unit_flowmachine None - 1.4.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -50113,15 +53565,15 @@ false businessunitid businessunit - business_unit_flowmachinenetwork + business_unit_flowmachine owningbusinessunit - flowmachinenetwork + flowmachine owningbusinessunit 0 - b92ef8f6-bdba-f011-bbd3-7c1e52365f30 + caf765f0-baba-f011-bbd3-7c1e52365f30 false @@ -50131,9 +53583,9 @@ false false - business_unit_aipluginusersetting + business_unit_flowmachinegroup None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -50167,15 +53619,15 @@ false businessunitid businessunit - business_unit_aipluginusersetting + business_unit_flowmachinegroup owningbusinessunit - aipluginusersetting + flowmachinegroup owningbusinessunit 0 - 51166cf7-bbba-f011-bbd3-7c1e52365f30 + baf865f0-baba-f011-bbd3-7c1e52365f30 false @@ -50185,9 +53637,9 @@ false false - business_unit_flowaggregation + business_unit_flowmachineimage None - 1.8.45.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -50205,9 +53657,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -50221,15 +53673,15 @@ false businessunitid businessunit - business_unit_flowaggregation + business_unit_flowmachineimage owningbusinessunit - flowaggregation + flowmachineimage owningbusinessunit 0 - 94176cf7-bbba-f011-bbd3-7c1e52365f30 + 1feac3f0-bdba-f011-bbd3-7c1e52365f30 false @@ -50239,9 +53691,9 @@ false false - business_unit_flowrun + business_unit_aiplugininstance None - 1.5.24.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -50259,9 +53711,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -50275,15 +53727,15 @@ false businessunitid businessunit - business_unit_flowrun + business_unit_aiplugininstance owningbusinessunit - flowrun + aiplugininstance owningbusinessunit 0 - 62796df7-f6ba-f011-bbd3-7c1e52365f30 + 0cecc3f0-bdba-f011-bbd3-7c1e52365f30 false @@ -50293,9 +53745,9 @@ false false - business_unit_ctx_transaction + business_unit_aipluginoperation None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -50329,27 +53781,27 @@ false businessunitid businessunit - business_unit_ctx_transaction + business_unit_aipluginoperation owningbusinessunit - ctx_transaction + aipluginoperation owningbusinessunit 0 - bccaeff8-a650-4a59-9b5a-3ec33438b3ce + feedc3f0-bdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false false - business_unit_templates + business_unit_aipluginoperationparameter None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -50367,9 +53819,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -50383,15 +53835,15 @@ false businessunitid businessunit - business_unit_templates + business_unit_aipluginoperationparameter owningbusinessunit - template + aipluginoperationparameter owningbusinessunit 0 - 3d06a3fa-309d-443f-80b4-2d3c0c903a6b + 1391d9f2-ce23-4bad-9bab-ca8411d86138 false @@ -50401,9 +53853,9 @@ true false - BusinessUnit_ImportLogs + businessunit_mailboxtrackingfolder None - 5.0.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -50437,15 +53889,15 @@ false businessunitid businessunit - BusinessUnit_ImportLogs + businessunit_mailboxtrackingfolder owningbusinessunit - importlog + mailboxtrackingfolder owningbusinessunit 0 - 68f8f7fb-caba-f011-bbd3-7c1e52365f30 + bda2aff4-ecba-f011-bbd3-7c1e52365f30 false @@ -50455,9 +53907,657 @@ false false - business_unit_msdyn_favoriteknowledgearticle + business_unit_msdyn_richtextfile None - 1.0 + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_msdyn_richtextfile + owningbusinessunit + msdyn_richtextfile + owningbusinessunit + + 0 + + + 975e90f5-bfba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_msdyn_aitestrun + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_msdyn_aitestrun + owningbusinessunit + msdyn_aitestrun + owningbusinessunit + + 0 + + + d25f90f5-bfba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_msdyn_aitestrunbatch + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_msdyn_aitestrunbatch + owningbusinessunit + msdyn_aitestrunbatch + owningbusinessunit + + 0 + + + a60674f6-baba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_flowmachineimageversion + None + 1.3.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_flowmachineimageversion + owningbusinessunit + flowmachineimageversion + owningbusinessunit + + 0 + + + a40774f6-baba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_flowmachinenetwork + None + 1.4.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_flowmachinenetwork + owningbusinessunit + flowmachinenetwork + owningbusinessunit + + 0 + + + b92ef8f6-bdba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_aipluginusersetting + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_aipluginusersetting + owningbusinessunit + aipluginusersetting + owningbusinessunit + + 0 + + + 51166cf7-bbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_flowaggregation + None + 1.8.45.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_flowaggregation + owningbusinessunit + flowaggregation + owningbusinessunit + + 0 + + + 94176cf7-bbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_flowrun + None + 1.5.24.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_flowrun + owningbusinessunit + flowrun + owningbusinessunit + + 0 + + + 62796df7-f6ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_ctx_transaction + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_ctx_transaction + owningbusinessunit + ctx_transaction + owningbusinessunit + + 0 + + + bccaeff8-a650-4a59-9b5a-3ec33438b3ce + + false + + false + iscustomizable + false + + true + false + business_unit_templates + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_templates + owningbusinessunit + template + owningbusinessunit + + 0 + + + 9a9841fa-0d2f-f111-88b5-7c1e5287d1d8 + + false + + true + iscustomizable + true + + false + false + business_unit_agentconversationmessage + None + 1.0.0.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_agentconversationmessage + owningbusinessunit + agentconversationmessage + owningbusinessunit + + 0 + + + 3d06a3fa-309d-443f-80b4-2d3c0c903a6b + + false + + false + iscustomizable + false + + true + false + BusinessUnit_ImportLogs + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + BusinessUnit_ImportLogs + owningbusinessunit + importlog + owningbusinessunit + + 0 + + + 68f8f7fb-caba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + business_unit_msdyn_favoriteknowledgearticle + None + 1.0 OneToManyRelationship DoNotDisplay @@ -52091,6 +56191,13 @@ The state of this component. 1033 + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + faece0a1-cefc-11de-8150-00155da18b00 @@ -52109,6 +56216,13 @@ Component State 1033 + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + faece0a0-cefc-11de-8150-00155da18b00 @@ -52151,6 +56265,13 @@ Published 1033 + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + faece0a3-cefc-11de-8150-00155da18b00 @@ -52184,6 +56305,13 @@ Unpublished 1033 + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + faece0a5-cefc-11de-8150-00155da18b00 @@ -52217,6 +56345,13 @@ Deleted 1033 + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + faece0a7-cefc-11de-8150-00155da18b00 @@ -52250,6 +56385,13 @@ Deleted Unpublished 1033 + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + 1f83e0bb-cefd-11de-8150-00155da18b00 @@ -52388,6 +56530,13 @@ Unique identifier of the user who created the record. 1033 + + 2e83a891-9cbb-4b21-966c-4b4eba846ecd + + true + Entydigt id for den bruger, der oprettede posten. + 1030 + b13327b0-aeba-f011-bbd3-7c1e52365f30 @@ -52406,6 +56555,13 @@ Created By 1033 + + 8b169077-4279-4855-a216-0dbc9846b000 + + true + Oprettet af + 1030 + b23327b0-aeba-f011-bbd3-7c1e52365f30 @@ -52846,6 +57002,13 @@ Unique identifier of the delegate user who created the record. 1033 + + c6ffc670-4a2e-49c1-a1ab-9e00257d3416 + + true + Entydigt id for den stedfortræderbruger, der oprettede posten. + 1030 + b73327b0-aeba-f011-bbd3-7c1e52365f30 @@ -52864,6 +57027,13 @@ Created By (Delegate) 1033 + + c555d3c3-dfaa-4574-be9c-72b8433d556b + + true + Oprettet af (stedfortræder) + 1030 + b83327b0-aeba-f011-bbd3-7c1e52365f30 @@ -54591,6 +58761,13 @@ Information about whether the current component is managed. 1033 + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + b41954a2-f3a5-47e9-ae13-ceb49de4465b @@ -54609,6 +58786,13 @@ Is Component Managed 1033 + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + 45a188b1-91a8-4019-b582-cebda8081064 @@ -54650,6 +58834,13 @@ Unmanaged 1033 + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + 443c7078-b7cb-47e7-8547-08dfa82950d0 @@ -54683,6 +58874,13 @@ Managed 1033 + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + ec886b5b-7e97-4c62-b30c-bf295639d540 @@ -55147,6 +59345,13 @@ Unique identifier of the user who modified the record. 1033 + + 4bf2d055-3d07-4d1f-a57c-5c0a72803f3f + + true + Entydigt id for den bruger, der ændrede posten. + 1030 + b53327b0-aeba-f011-bbd3-7c1e52365f30 @@ -55165,6 +59370,13 @@ Modified By 1033 + + d5c5000e-55ea-44f5-a70a-621b0dc96286 + + true + Ændret af + 1030 + b63327b0-aeba-f011-bbd3-7c1e52365f30 @@ -55605,6 +59817,13 @@ Unique identifier of the delegate user who modified the record. 1033 + + c486fbcf-3786-4d4e-8ede-a8276e69fa71 + + true + Entydigt id for den stedfortræderbruger, der ændrede posten. + 1030 + b93327b0-aeba-f011-bbd3-7c1e52365f30 @@ -55623,6 +59842,13 @@ Modified By (Delegate) 1033 + + 125462eb-74ab-4545-ae2f-6bae3ba297ea + + true + Ændret af (stedfortræder) + 1030 + ba3327b0-aeba-f011-bbd3-7c1e52365f30 @@ -56324,6 +60550,13 @@ Owner Id 1033 + + c00470a8-28a3-4803-8579-50f17ee29365 + + true + Ejer-id + 1030 + d33327b0-aeba-f011-bbd3-7c1e52365f30 @@ -56342,6 +60575,13 @@ Owner 1033 + + 3915460e-4a27-4140-b5a3-3ceda67c92e4 + + true + Ejer + 1030 + d43327b0-aeba-f011-bbd3-7c1e52365f30 @@ -56448,6 +60688,13 @@ Name of the owner 1033 + + ceca1f38-827c-4360-8356-4f77fb42f5d8 + + true + Navnet på ejeren + 1030 + d83327b0-aeba-f011-bbd3-7c1e52365f30 @@ -56564,6 +60811,13 @@ Owner Id Type 1033 + + 13bd83a3-ebff-42f8-8e15-f72d8fa3d836 + + true + Type af ejer-id + 1030 + d73327b0-aeba-f011-bbd3-7c1e52365f30 @@ -56673,6 +60927,13 @@ Yomi name of the owner 1033 + + 75b08d13-4768-4f71-8af6-4c6e3d1f7839 + + true + Yomi-navnet på ejeren + 1030 + da3327b0-aeba-f011-bbd3-7c1e52365f30 @@ -56789,6 +61050,13 @@ Unique identifier for the business unit that owns the record 1033 + + 1dcdf908-d114-4202-8ea7-65d04e894fac + + true + Entydigt id for den afdeling, der ejer posten + 1030 + db3327b0-aeba-f011-bbd3-7c1e52365f30 @@ -56807,6 +61075,13 @@ Owning Business Unit 1033 + + 5bfe1e83-865d-46a7-a230-3e8e9d427274 + + true + Ejende afdeling + 1030 + dc3327b0-aeba-f011-bbd3-7c1e52365f30 @@ -57014,6 +61289,13 @@ Unique identifier for the team that owns the record. 1033 + + 0e120da1-1e01-4b70-ba50-167c769a2a2a + + true + Entydigt id for det team, der ejer posten. + 1030 + e43327b0-aeba-f011-bbd3-7c1e52365f30 @@ -57032,6 +61314,13 @@ Owning Team 1033 + + 3bb0b7d9-da3d-4f17-a2bb-9f17413d994d + + true + Ejende team + 1030 + e53327b0-aeba-f011-bbd3-7c1e52365f30 @@ -57137,6 +61426,13 @@ Unique identifier for the user that owns the record. 1033 + + 593a328c-749a-428b-bfb4-b7a5cf0079ac + + true + Entydigt id for den bruger, der ejer posten. + 1030 + dd3327b0-aeba-f011-bbd3-7c1e52365f30 @@ -57155,6 +61451,13 @@ Owning User 1033 + + b0f2dd31-4b85-4866-8cad-0a69d7945fc7 + + true + Ejende bruger + 1030 + de3327b0-aeba-f011-bbd3-7c1e52365f30 @@ -59225,6 +63528,13 @@ Version Number 1033 + + 1c2f9a40-2c93-4456-a3d5-876c0f229fe9 + + true + Versionsnummer + 1030 + 0c3427b0-aeba-f011-bbd3-7c1e52365f30 @@ -59243,6 +63553,13 @@ Version Number 1033 + + 78b3d455-4fae-4118-9a57-0817f782700b + + true + Versionsnummer + 1030 + 0d3427b0-aeba-f011-bbd3-7c1e52365f30 @@ -60586,7 +64903,7 @@ true true msdyn_formmapping_customapiid - Append + None 1.0.0.0 OneToManyRelationship @@ -60626,7 +64943,7 @@ msdyn_formmapping customapiid - 1 + 0 2e3bec62-c3ba-f011-bbd3-7c1e52365f30 @@ -60640,7 +64957,7 @@ true true msdyn_knowledgeassetconfiguration_customapiid - Append + None 1.0.0.0 OneToManyRelationship @@ -60680,7 +64997,7 @@ msdyn_knowledgeassetconfiguration msdyn_customapiid - 1 + 0 3f3bec62-c3ba-f011-bbd3-7c1e52365f30 @@ -60694,7 +65011,7 @@ true true fabricaiskill_customapiid - Append + None 1.0.0.0 OneToManyRelationship @@ -60734,7 +65051,7 @@ fabricaiskill CustomApiId - 1 + 0 e98f9883-eeba-f011-bbd3-7c1e52365f30 @@ -60763,6 +65080,13 @@ 1033 + + cf79879f-4e1b-4c86-87a1-e19445eb3b76 + + true + + 1030 + c2a34a4d-aaff-4a17-8f3a-728b24bcaa51 @@ -61425,6 +65749,13 @@ 1033 + + b331e35d-eb8e-42b7-ac0b-ddb49b2fccd7 + + true + + 1030 + 56923a01-3683-46ef-9602-24db1902540d @@ -61493,6 +65824,13 @@ 1033 + + fab40fd8-71e9-4345-a755-f081b46d3922 + + true + + 1030 + fbbbc0db-3908-489e-9ce0-1b373e3e598b @@ -62040,6 +66378,13 @@ The state of this component. 1033 + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + faece0a1-cefc-11de-8150-00155da18b00 @@ -62058,6 +66403,13 @@ Component State 1033 + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + faece0a0-cefc-11de-8150-00155da18b00 @@ -62100,6 +66452,13 @@ Published 1033 + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + faece0a3-cefc-11de-8150-00155da18b00 @@ -62133,6 +66492,13 @@ Unpublished 1033 + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + faece0a5-cefc-11de-8150-00155da18b00 @@ -62166,6 +66532,13 @@ Deleted 1033 + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + faece0a7-cefc-11de-8150-00155da18b00 @@ -62199,6 +66572,13 @@ Deleted Unpublished 1033 + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + 1f83e0bb-cefd-11de-8150-00155da18b00 @@ -64079,6 +68459,13 @@ Information about whether the current component is managed. 1033 + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + b41954a2-f3a5-47e9-ae13-ceb49de4465b @@ -64097,6 +68484,13 @@ Is Component Managed 1033 + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + 45a188b1-91a8-4019-b582-cebda8081064 @@ -64138,6 +68532,13 @@ Unmanaged 1033 + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + 443c7078-b7cb-47e7-8547-08dfa82950d0 @@ -64171,6 +68572,13 @@ Managed 1033 + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + ec886b5b-7e97-4c62-b30c-bf295639d540 @@ -70050,6 +74458,13 @@ The state of this component. 1033 + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + faece0a1-cefc-11de-8150-00155da18b00 @@ -70068,6 +74483,13 @@ Component State 1033 + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + faece0a0-cefc-11de-8150-00155da18b00 @@ -70110,6 +74532,13 @@ Published 1033 + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + faece0a3-cefc-11de-8150-00155da18b00 @@ -70143,6 +74572,13 @@ Unpublished 1033 + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + faece0a5-cefc-11de-8150-00155da18b00 @@ -70176,6 +74612,13 @@ Deleted 1033 + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + faece0a7-cefc-11de-8150-00155da18b00 @@ -70209,6 +74652,13 @@ Deleted Unpublished 1033 + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + 1f83e0bb-cefd-11de-8150-00155da18b00 @@ -72089,6 +76539,13 @@ Information about whether the current component is managed. 1033 + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + b41954a2-f3a5-47e9-ae13-ceb49de4465b @@ -72107,6 +76564,13 @@ Is Component Managed 1033 + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + 45a188b1-91a8-4019-b582-cebda8081064 @@ -72148,6 +76612,13 @@ Unmanaged 1033 + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + 443c7078-b7cb-47e7-8547-08dfa82950d0 @@ -72181,6 +76652,13 @@ Managed 1033 + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + ec886b5b-7e97-4c62-b30c-bf295639d540 @@ -77504,6 +81982,13 @@ Unique identifier of a dependency. 1033 + + a00f529d-7c96-4fbd-94ce-a156873e0f76 + + true + Entydigt id for en afhængighed. + 1030 + 6e2b4578-7188-40b8-ba7e-e580d5695969 @@ -77522,6 +82007,13 @@ Dependency Identifier 1033 + + 7572aa04-7394-4901-a807-1b31bf346a68 + + true + Afhængigheds-id + 1030 + c2a3d83e-6138-42c6-a375-3ae20bd1b80b @@ -77623,6 +82115,13 @@ The dependency type of the dependency. 1033 + + 99e477a5-f43b-4ad4-95dc-24aa3c9075a6 + + true + Afhængighedstypen for afhængigheden. + 1030 + ddd83499-e2c2-4e20-ac7c-f10a3a48f872 @@ -77641,6 +82140,13 @@ Dependency Type 1033 + + 92a7f9b4-186e-47a9-a7f8-e15fa46c1580 + + true + Afhængighedstype + 1030 + 4aad9ce1-a3f9-49f9-aed5-5ba41d38141c @@ -77729,6 +82235,13 @@ The kind of dependency. 1033 + + 484b05b7-c2b6-47e4-8d27-91ed54b3d5c8 + + true + Typen af afhængighed. + 1030 + 9718f246-b9be-11de-844f-00155da18b00 @@ -77747,6 +82260,13 @@ Dependency Type 1033 + + 34c06bd6-8d5a-4263-ab72-b2d97396aca6 + + true + Afhængighedstype + 1030 + 9718f245-b9be-11de-844f-00155da18b00 @@ -77789,6 +82309,13 @@ None 1033 + + 2b93d1e9-0813-41ab-9acb-9d59e192460f + + true + Ingen + 1030 + 9718f248-b9be-11de-844f-00155da18b00 @@ -77822,6 +82349,13 @@ Solution Internal 1033 + + dbaac7e7-d71d-4cf6-bcf0-8aee667b17d9 + + true + Løsning internt + 1030 + 9718f24a-b9be-11de-844f-00155da18b00 @@ -77855,6 +82389,13 @@ Published 1033 + + 3861ed4e-293e-40ea-852c-5bbbbbf0c64f + + true + Udgivet + 1030 + 9718f24c-b9be-11de-844f-00155da18b00 @@ -77888,6 +82429,13 @@ Unpublished 1033 + + 8ed92677-c265-4b9e-967a-d166c32293ed + + true + Ikke-udgivet + 1030 + 9718f24e-b9be-11de-844f-00155da18b00 @@ -78117,6 +82665,13 @@ Unique identifier of the dependent component's node. 1033 + + 8bcf145a-dd21-4fd6-b399-9e073198ec71 + + true + Entydigt id for noden for den afhængige komponent. + 1030 + de9bdfaa-bb4a-4019-8058-b73c3f5d8077 @@ -78135,6 +82690,13 @@ Dependent Component 1033 + + 7b092605-ad8a-4f3b-8232-4663895f3ecb + + true + Afhængig komponent + 1030 + 7e658ca5-1711-48fc-aa1a-8743b139e45e @@ -78500,6 +83062,13 @@ All of the possible component types for solutions. 1033 + + 9f75a6da-592a-43f9-ba98-374a051c5fe2 + + true + Alle de mulige komponenttyper for løsninger. + 1030 + 3250e1f4-b9bb-11de-844f-00155da18b00 @@ -78518,6 +83087,13 @@ Component Type 1033 + + 501f9977-ed07-46c3-a183-2737e526d456 + + true + Komponenttype + 1030 + 3250e1f3-b9bb-11de-844f-00155da18b00 @@ -78560,6 +83136,13 @@ Entity 1033 + + fe72ef59-ace9-4cae-a297-2795fb61c3c5 + + true + Objekt + 1030 + 3250e1f6-b9bb-11de-844f-00155da18b00 @@ -78593,6 +83176,13 @@ Attribute 1033 + + 55615991-abca-46a3-a140-139f1d26413f + + true + Attribut + 1030 + 3250e1f8-b9bb-11de-844f-00155da18b00 @@ -78626,6 +83216,13 @@ Relationship 1033 + + c9ece387-8ca0-4f62-acbb-e3693f4beaec + + true + Relation + 1030 + 3250e1fa-b9bb-11de-844f-00155da18b00 @@ -78659,6 +83256,13 @@ Attribute Picklist Value 1033 + + 8e3cd8e3-5a68-4dc2-a077-cb9d38cb8392 + + true + Værdi på valgliste med attributter + 1030 + 3250e1fc-b9bb-11de-844f-00155da18b00 @@ -78692,6 +83296,13 @@ Attribute Lookup Value 1033 + + 714ffbd8-e3eb-41f5-a17a-3004edbf956c + + true + Opslagsværdi for attribut + 1030 + 3250e1fe-b9bb-11de-844f-00155da18b00 @@ -78725,6 +83336,13 @@ View Attribute 1033 + + 73849f39-3f89-4c9b-b37b-1b950b63e6be + + true + Vis attribut + 1030 + 3250e200-b9bb-11de-844f-00155da18b00 @@ -78758,6 +83376,13 @@ Localized Label 1033 + + 21be73c4-2497-4f2f-9797-d283e120a9ca + + true + Lokaliseret etiket + 1030 + 3250e202-b9bb-11de-844f-00155da18b00 @@ -78791,6 +83416,13 @@ Relationship Extra Condition 1033 + + ff2d0745-7437-4260-8b5a-c6aac37d1628 + + true + Ekstra betingelse i relation + 1030 + 3250e204-b9bb-11de-844f-00155da18b00 @@ -78824,6 +83456,13 @@ Option Set 1033 + + 34a2b6fd-4336-48f2-ac72-29f9ab03a634 + + true + Grupperet indstilling + 1030 + 3250e206-b9bb-11de-844f-00155da18b00 @@ -78857,6 +83496,13 @@ Entity Relationship 1033 + + c1965ed6-2f4a-40ad-b9e8-635002b9f01d + + true + Objektrelation + 1030 + 3250e208-b9bb-11de-844f-00155da18b00 @@ -78890,6 +83536,13 @@ Entity Relationship Role 1033 + + be80b00f-f107-49e5-920e-e09328a50b56 + + true + Rolle i objektrelation + 1030 + 3250e20a-b9bb-11de-844f-00155da18b00 @@ -78923,6 +83576,13 @@ Entity Relationship Relationships 1033 + + 3dd44a68-27ba-4fd2-ad55-d697227d1984 + + true + Relationer i objektrelation + 1030 + 3250e20c-b9bb-11de-844f-00155da18b00 @@ -78956,6 +83616,13 @@ Managed Property 1033 + + 789c5bb1-8f6c-4aeb-858d-ae898680bb3b + + true + Administreret egenskab + 1030 + b66c9941-227d-11df-8577-00155da18b00 @@ -78989,6 +83656,13 @@ Entity Key 1033 + + 6c346370-cb82-45ea-a4fa-0ff096e0bd7c + + true + Objektnøgle + 1030 + 44b455a2-680b-44a3-98e6-af05d7fac1b2 @@ -79022,6 +83696,13 @@ Privilege 1033 + + 25547ca7-6775-468e-9d84-144e136d7440 + + true + Rettighed + 1030 + 223f03be-0e3f-4f76-b6ff-0ff1264afa58 @@ -79055,6 +83736,13 @@ PrivilegeObjectTypeCode 1033 + + dc598bed-733c-40d4-b2e3-eaae4579aff7 + + true + PrivilegeObjectTypeCode + 1030 + 30d7f58d-55ab-4eb8-8b19-a576555921bd @@ -79088,6 +83776,13 @@ Role 1033 + + d281e93a-af94-45b4-81aa-b63b97b92414 + + true + Rolle + 1030 + 35dbde9c-b9bd-11de-844f-00155da18b00 @@ -79121,6 +83816,13 @@ Role Privilege 1033 + + fcf32711-1167-4924-b0d0-c95d1d44fb94 + + true + Rollerettighed + 1030 + 35dbde9e-b9bd-11de-844f-00155da18b00 @@ -79154,6 +83856,13 @@ Display String 1033 + + 3b43f0fe-9a21-4b2c-a487-503ef211b739 + + true + Visningsstreng + 1030 + 35dbdea0-b9bd-11de-844f-00155da18b00 @@ -79187,6 +83896,13 @@ Display String Map 1033 + + 29f0f956-9d11-4a19-92a9-361c65e75989 + + true + Visningsstrengtilknytning + 1030 + 35dbdea2-b9bd-11de-844f-00155da18b00 @@ -79220,6 +83936,13 @@ Form 1033 + + 2288adcc-1e1d-453e-b5e1-6dcc5c26a7eb + + true + Formular + 1030 + 35dbdea4-b9bd-11de-844f-00155da18b00 @@ -79253,6 +83976,13 @@ Organization 1033 + + ea054f55-30b6-4aac-9926-d66c71998d92 + + true + Organisation + 1030 + 35dbdea6-b9bd-11de-844f-00155da18b00 @@ -79286,6 +84016,13 @@ Saved Query 1033 + + e2adda6d-07d6-4642-aa74-90c598df9a65 + + true + Gemt forespørgsel + 1030 + 35dbdea8-b9bd-11de-844f-00155da18b00 @@ -79319,6 +84056,13 @@ Workflow 1033 + + 4830f9e8-457a-43da-868f-a3793e6c0d97 + + true + Arbejdsproces + 1030 + 35dbdeae-b9bd-11de-844f-00155da18b00 @@ -79352,6 +84096,13 @@ Report 1033 + + d834ba5f-1b49-46a6-bf2e-2097927d6dab + + true + Rapport + 1030 + 2d2fa8a6-df9c-436b-89c1-cb9a79a94a1d @@ -79385,6 +84136,13 @@ Report Entity 1033 + + f109aaf3-72f3-4ccd-9ab7-985c97a5be53 + + true + Rapportobjekt + 1030 + e48fd8ee-6621-40bd-a9a1-a1e00544643e @@ -79418,6 +84176,13 @@ Report Category 1033 + + 09feed14-9a0f-4373-9e2e-2580ca87f79c + + true + Rapportkategori + 1030 + 91a7a3f9-d7a6-479b-b520-48e02f7319f9 @@ -79451,6 +84216,13 @@ Report Visibility 1033 + + 650a2e4e-7d47-4d82-967d-ed3efea31c65 + + true + Rapportsynlighed + 1030 + 270c9f8b-4f74-4bce-a7ab-ce3baa4e6093 @@ -79484,6 +84256,13 @@ Attachment 1033 + + ab962989-70f9-4196-9b78-80704eae0370 + + true + Vedhæftet fil + 1030 + f0e8d73c-b474-4c8d-9ae0-df0aea227d2e @@ -79517,6 +84296,13 @@ Email Template 1033 + + 96734669-465e-4489-a670-64bbba76c94a + + true + E-mail-skabelon + 1030 + 35dbdeb2-b9bd-11de-844f-00155da18b00 @@ -79550,6 +84336,13 @@ Contract Template 1033 + + e1ad718a-a5bf-4322-8402-9471d98168d7 + + true + Kontraktskabelon + 1030 + 35dbdeb4-b9bd-11de-844f-00155da18b00 @@ -79583,6 +84376,13 @@ KB Article Template 1033 + + 7b929693-574c-4cb0-8370-f7715c11fa90 + + true + Skabelon til KnowledgeBase-artikel + 1030 + 35dbdeb6-b9bd-11de-844f-00155da18b00 @@ -79616,6 +84416,13 @@ Mail Merge Template 1033 + + ceddb5ea-7f3d-4ae6-be1c-38adeea03cbd + + true + Skabelon til brevfletning + 1030 + 35dbdeb8-b9bd-11de-844f-00155da18b00 @@ -79649,6 +84456,13 @@ Duplicate Rule 1033 + + 8ffa522f-4c35-4345-90bd-9670f3063c9b + + true + Duplikeret regel + 1030 + 35dbdeba-b9bd-11de-844f-00155da18b00 @@ -79682,6 +84496,13 @@ Duplicate Rule Condition 1033 + + b74f7cd8-50cc-40f6-9f1d-3ed1be08f93c + + true + Dubletregeltilstand + 1030 + 35dbdebc-b9bd-11de-844f-00155da18b00 @@ -79715,6 +84536,13 @@ Entity Map 1033 + + 9f89bbb7-12b8-46c5-ab8c-7afc88822a4b + + true + Objekttilknytning + 1030 + 35dbdebe-b9bd-11de-844f-00155da18b00 @@ -79748,6 +84576,13 @@ Attribute Map 1033 + + d25dbd8a-b046-47b8-aaab-38922783eefc + + true + Attributtilknytning + 1030 + 35dbdec0-b9bd-11de-844f-00155da18b00 @@ -79781,6 +84616,13 @@ Ribbon Command 1033 + + e7b9e5e9-bf7d-43f3-bbed-0b9f4a5d5f22 + + true + Kommando på bånd + 1030 + 35dbdec2-b9bd-11de-844f-00155da18b00 @@ -79814,6 +84656,13 @@ Ribbon Context Group 1033 + + e1a03d3d-8c6c-4343-ab69-43e44030a2b8 + + true + Genvejsmenu til gruppe på bånd + 1030 + 35dbdec4-b9bd-11de-844f-00155da18b00 @@ -79847,6 +84696,13 @@ Ribbon Customization 1033 + + 21f2b89c-e834-49e9-b1bf-bf72796e17b1 + + true + Tilpasning af båndet + 1030 + 35dbdec6-b9bd-11de-844f-00155da18b00 @@ -79880,6 +84736,13 @@ Ribbon Rule 1033 + + 392b0442-f1d0-43cd-9b32-1aaa082e3a4d + + true + Båndregel + 1030 + 35dbdec8-b9bd-11de-844f-00155da18b00 @@ -79913,6 +84776,13 @@ Ribbon Tab To Command Map 1033 + + 7123f030-87a6-4b0e-9eb3-1bc6a496a8ae + + true + Tilknytning mellem fane på båndet og kommando + 1030 + 35dbdeca-b9bd-11de-844f-00155da18b00 @@ -79946,6 +84816,13 @@ Ribbon Diff 1033 + + 32a1984f-e0d7-49c1-8623-4ecbcf27fa8e + + true + Difference på bånd + 1030 + 35dbdecc-b9bd-11de-844f-00155da18b00 @@ -79979,6 +84856,13 @@ Saved Query Visualization 1033 + + 37683582-0d17-49ee-b2c6-a883fccc1bc8 + + true + Visualisering af forespørgsel blev gemt + 1030 + e4261e0c-b9bd-11de-844f-00155da18b00 @@ -80012,6 +84896,13 @@ System Form 1033 + + e29a885e-70a0-4e57-b71b-ae6d4e2bbf95 + + true + Systemformular + 1030 + e4261e0e-b9bd-11de-844f-00155da18b00 @@ -80045,6 +84936,13 @@ Web Resource 1033 + + 2558e188-d2f1-4fc4-bcd4-8a6dae6413bd + + true + Webressource + 1030 + e4261e10-b9bd-11de-844f-00155da18b00 @@ -80078,6 +84976,13 @@ Site Map 1033 + + 004ecd08-a085-4093-aba4-209440491a2d + + true + Oversigt over websted + 1030 + e4261e12-b9bd-11de-844f-00155da18b00 @@ -80111,6 +85016,13 @@ Connection Role 1033 + + 8af2a10f-7e4e-4535-ad38-330323c60881 + + true + Forbindelsesrolle + 1030 + e4261e14-b9bd-11de-844f-00155da18b00 @@ -80144,6 +85056,13 @@ Complex Control 1033 + + 3babdd2f-6d5e-4d4f-9868-b9d5cedff35f + + true + Komplekst kontrolelement + 1030 + 0d4bd12a-5149-49b2-925f-d09ce20c4be8 @@ -80177,6 +85096,13 @@ Field Security Profile 1033 + + 550cdfd3-3b45-491a-97fb-bcc4acef11fb + + true + Profil for feltsikkerhed + 1030 + 9d15b865-2d55-11df-838b-0019b9279bfb @@ -80210,6 +85136,13 @@ Field Permission 1033 + + a9205f4c-a02a-473d-ad85-79fcfad4ab56 + + true + Feltrettighed + 1030 + af8018e1-2d55-11df-838b-0019b9279bfb @@ -80243,6 +85176,13 @@ Plugin Type 1033 + + 4bd335bf-46a3-44ff-8ddb-7b229b67c54a + + true + Type af plug-in + 1030 + bda86701-56d0-48d3-8328-7891c3f3984f @@ -80276,6 +85216,13 @@ Plugin Assembly 1033 + + 609c5670-2988-4a54-9d74-74e5df1bf34e + + true + Plug-in-assembly + 1030 + bda86711-56d0-48d3-8328-7891c3f3984f @@ -80309,6 +85256,13 @@ SDK Message Processing Step 1033 + + b19ae986-efd8-4052-81fb-b954b2785948 + + true + Behandlingstrin for SDK-meddelelse + 1030 + bda86721-56d0-48d3-8328-7891c3f3984f @@ -80342,6 +85296,13 @@ SDK Message Processing Step Image 1033 + + e45102e8-f993-4346-901b-2fe40a35a7ac + + true + Behandlingstrinsbillede for SDK-meddelelse + 1030 + bda86731-56d0-48d3-8328-7891c3f3984f @@ -80375,6 +85336,13 @@ Service Endpoint 1033 + + 53b9d86b-2d66-4c9a-8894-8f3589fe05bd + + true + Slutpunkt for tjeneste + 1030 + bda86751-56d0-48d3-8328-7891c3f3984f @@ -80408,6 +85376,13 @@ Routing Rule 1033 + + 43301a2a-dbe3-415e-814e-ba40f6dd26df + + true + Ruteregel + 1030 + c7d53761-14ad-4e06-8a90-73d7cc57bde9 @@ -80441,6 +85416,13 @@ Routing Rule Item 1033 + + 90086ea8-9293-40d5-a890-210996693fab + + true + Ruteregelelement + 1030 + 7397d0fd-fa77-40ab-989a-c1d8593f6264 @@ -80474,6 +85456,13 @@ SLA 1033 + + d25a06f5-4a55-41f1-9498-e930fd4716e6 + + true + SLA + 1030 + 2a368df3-91be-4ea7-9de4-c8882819c31c @@ -80507,6 +85496,13 @@ SLA Item 1033 + + bac09a04-ded7-443a-8db3-a22f8ec17216 + + true + SLA-element + 1030 + e917239c-0bb9-437d-8d51-3457c11dec55 @@ -80540,6 +85536,13 @@ Convert Rule 1033 + + 4cea389b-cf0b-4a7b-b08b-7a9f6cd61939 + + true + Konverteringsregel + 1030 + 5e4fc65e-6512-418a-ad35-34102609a6f2 @@ -80573,6 +85576,13 @@ Convert Rule Item 1033 + + 7ec2f1fb-0944-436d-8135-bf28b71e1976 + + true + Konverteringsregelelement + 1030 + 0cfb2ee8-e1d5-4c51-b058-3044804a7c98 @@ -80606,6 +85616,13 @@ Hierarchy Rule 1033 + + 5c2709d2-21ad-4541-9087-e0cc9f77a235 + + true + Hierarkiregel + 1030 + 2286e0fd-9a69-4668-9ca1-fb18a8826ceb @@ -80639,6 +85656,13 @@ Mobile Offline Profile 1033 + + 00436c9c-d151-4e0c-86b6-48545234c71e + + true + Mobile Offline-profil + 1030 + 9c99d6bb-3790-47b0-950c-014b747d12a9 @@ -80672,6 +85696,13 @@ Mobile Offline Profile Item 1033 + + ca1ce0f0-07ad-459a-bb00-f6a80d40b1aa + + true + Mobile Offline-profilelement + 1030 + a0d3a0b9-ee17-4be1-86f1-e7b5ebbe1a7a @@ -80705,6 +85736,13 @@ Similarity Rule 1033 + + b1eb4c2f-1ccf-42af-9320-6b3d04c18508 + + true + Lighedsregel + 1030 + d606c762-0741-4f34-b2b1-818f5b6128b7 @@ -80738,6 +85776,13 @@ Custom Control 1033 + + 2ed52491-1c28-4656-bedd-454d771f9894 + + true + Brugerdefineret kontrolelement + 1030 + 631ced83-509a-49c4-99b4-8f3ffc55d3c2 @@ -80771,6 +85816,13 @@ Custom Control Default Config 1033 + + 5626e407-9409-49bc-a9ec-2e5d73504f00 + + true + Standardkonfiguration for brugerdefineret kontrolelement + 1030 + ec71a702-a778-4074-b883-3dae457283a7 @@ -80804,6 +85856,13 @@ Data Source Mapping 1033 + + 90eb0735-28ba-4c55-828e-e5cefc304a0f + + true + Tilknytning af datakilde + 1030 + a5f448d5-eada-4970-8c13-ede8b219ee2e @@ -80837,6 +85896,13 @@ SDKMessage 1033 + + bc3a7841-0450-4770-b87d-b04c83fad233 + + true + SDKMessage + 1030 + 1325e625-8828-4ffb-9051-0564fc17286a @@ -80870,6 +85936,13 @@ SDKMessageFilter 1033 + + 3ef77621-5b46-4741-9a69-4ef0b5876559 + + true + SDKMessageFilter + 1030 + 653e864d-912c-42e1-9323-927a95fd78ce @@ -80903,6 +85976,13 @@ SdkMessagePair 1033 + + 60426e5f-0e6b-4e9c-ab63-612172705013 + + true + SdkMessagePair + 1030 + f3ba0616-fadc-4eca-ba00-281ff81f1ce2 @@ -80936,6 +86016,13 @@ SdkMessageRequest 1033 + + 5e8b1b8f-0735-415d-ad82-d134bcfddb6c + + true + SdkMessageRequest + 1030 + d62f2300-1dbe-4580-aa3f-f7e888b4f139 @@ -80969,6 +86056,13 @@ SdkMessageRequestField 1033 + + e89ae203-51cf-48a4-ba20-dace5d633425 + + true + SdkMessageRequestField + 1030 + d57c7e80-58f1-47f1-94ff-3626baf79966 @@ -81002,6 +86096,13 @@ SdkMessageResponse 1033 + + bb874c1a-cf23-49c0-b0b9-350ee707d44c + + true + SdkMessageResponse + 1030 + c6c6f188-bf75-4300-939b-1130b7c69917 @@ -81035,6 +86136,13 @@ SdkMessageResponseField 1033 + + f60e7181-7d6b-4a78-9e31-d1bbae050586 + + true + SdkMessageResponseField + 1030 + 442e93ae-098b-478c-8104-5e295d3af482 @@ -81068,6 +86176,13 @@ WebWizard 1033 + + c88b35e7-6808-4d35-8322-f9291e862373 + + true + WebWizard + 1030 + f830a047-67f3-457d-85e1-a9d7805e8c75 @@ -81101,6 +86216,13 @@ Index 1033 + + 4105ce0a-58fa-4ff9-9aeb-7969b2c0d5b2 + + true + Indeks + 1030 + a61eef9c-5117-42f9-b74c-ed2160034963 @@ -81134,6 +86256,13 @@ Import Map 1033 + + ccf1adf1-4edb-4d58-8c21-214d03ddf7fc + + true + Importer tilknytning + 1030 + eb593ac5-ebf3-4966-a57e-159610980deb @@ -81161,15 +86290,22 @@ - 45f97a20-93cd-4d9d-9373-badc5121726f + 905fd089-2e64-4ec8-b673-8b8a6e4017e4 true Canvas App 1033 + + 8d436e17-d959-4212-8530-f00d9fb1a4a1 + + true + Lærred-app + 1030 + - 45f97a20-93cd-4d9d-9373-badc5121726f + 905fd089-2e64-4ec8-b673-8b8a6e4017e4 true Canvas App @@ -81194,15 +86330,22 @@ - 6174e48e-ff3e-4b1a-a2cd-764c6de5f7be + fe6c5ab8-afbf-4035-b314-3bd3b326c84a true Connector 1033 + + 0e5eb4a9-92cf-4e2c-b811-fcca7721768e + + true + Connector + 1030 + - 6174e48e-ff3e-4b1a-a2cd-764c6de5f7be + fe6c5ab8-afbf-4035-b314-3bd3b326c84a true Connector @@ -81227,15 +86370,22 @@ - 11118f8e-5d20-422e-aabc-8259c8b2b201 + 1b801d8e-ff15-4970-b046-8d116621a990 true Connector 1033 + + afba9ecc-4f77-49e1-af32-cd3dd3181173 + + true + Connector + 1030 + - 11118f8e-5d20-422e-aabc-8259c8b2b201 + 1b801d8e-ff15-4970-b046-8d116621a990 true Connector @@ -81260,15 +86410,22 @@ - d62332b2-a2de-495b-99ec-4b55cd633c40 + 9c28d347-aa84-4213-beac-f5b51896c404 true Environment Variable Definition 1033 + + 1806fe85-af4a-43a1-9142-f82979576c89 + + true + Definition af miljøvariabel + 1030 + - d62332b2-a2de-495b-99ec-4b55cd633c40 + 9c28d347-aa84-4213-beac-f5b51896c404 true Environment Variable Definition @@ -81293,15 +86450,22 @@ - 7d297a52-017f-424f-9df0-6ad5ea19befe + b2c46bc9-c529-4f38-bf70-26cf91785202 true Environment Variable Value 1033 + + 1066f318-c9b1-4b2f-b53b-b0f82d19f989 + + true + Værdi for miljøvariabel + 1030 + - 7d297a52-017f-424f-9df0-6ad5ea19befe + b2c46bc9-c529-4f38-bf70-26cf91785202 true Environment Variable Value @@ -81326,15 +86490,22 @@ - 1a41e6de-e242-4e69-9c16-29fb4374b1d5 + 4232109e-df1d-4d7d-ae0d-2a1a08add409 true AI Project Type 1033 + + 7040fa9b-179d-4aea-b3c0-acc51d41a7c2 + + true + AI-projekttype + 1030 + - 1a41e6de-e242-4e69-9c16-29fb4374b1d5 + 4232109e-df1d-4d7d-ae0d-2a1a08add409 true AI Project Type @@ -81359,15 +86530,22 @@ - b13734e9-b00b-4220-bfa9-7506ab708525 + 38358320-4c5c-4a00-90da-2ba6f151641b true AI Project 1033 + + dc5d0dc6-7915-4ea2-b789-d84e585d54cb + + true + AI-projekt + 1030 + - b13734e9-b00b-4220-bfa9-7506ab708525 + 38358320-4c5c-4a00-90da-2ba6f151641b true AI Project @@ -81392,15 +86570,22 @@ - 174406b5-3ace-4a56-9577-7233c581d4cc + 1b655b86-48c8-4924-9449-ea68bca515cc true AI Configuration 1033 + + 5dc96c46-c703-4775-9aad-8d34195f3fb2 + + true + AI-konfiguration + 1030 + - 174406b5-3ace-4a56-9577-7233c581d4cc + 1b655b86-48c8-4924-9449-ea68bca515cc true AI Configuration @@ -81425,15 +86610,22 @@ - aa86702d-6cc4-4196-9821-6f56400572b9 + f2fe6a02-5c54-4417-817e-a69781951729 true Entity Analytics Configuration 1033 + + 471eb7e1-ff83-41a4-a864-cb4e19723605 + + true + Konfiguration af objektanalyse + 1030 + - aa86702d-6cc4-4196-9821-6f56400572b9 + f2fe6a02-5c54-4417-817e-a69781951729 true Entity Analytics Configuration @@ -81458,15 +86650,22 @@ - 52e92361-c366-4d8f-ae85-c042b5d2cbaf + 02812233-6e28-4e72-9be0-8d1ba3e4f71e true Attribute Image Configuration 1033 + + a328000c-5190-4142-80d6-506516bb4887 + + true + Konfiguration af attributbillede + 1030 + - 52e92361-c366-4d8f-ae85-c042b5d2cbaf + 02812233-6e28-4e72-9be0-8d1ba3e4f71e true Attribute Image Configuration @@ -81491,15 +86690,22 @@ - 92999c72-6cdc-475e-b701-b26b29c6f554 + 1ac70d4c-91e2-47b1-8244-8e547447594f true Entity Image Configuration 1033 + + 8dc52ee6-d60d-4250-bad8-c1a79995cdb8 + + true + Konfiguration af objektbillede + 1030 + - 92999c72-6cdc-475e-b701-b26b29c6f554 + 1ac70d4c-91e2-47b1-8244-8e547447594f true Entity Image Configuration @@ -81823,6 +87029,13 @@ Unique identifier of the required component's node 1033 + + aa55a13e-2091-43c4-a04e-e341a4f08033 + + true + Entydigt id for noden for den påkrævede komponent + 1030 + 73ce0af4-6996-41e2-92bd-c99d199c3f3e @@ -81841,6 +87054,13 @@ Required Component 1033 + + c36568b2-a2f6-4f57-8217-87a7ef337685 + + true + Påkrævet komponent + 1030 + 6e81525d-68ca-4d6b-b83e-dd52b1c11153 @@ -82206,6 +87426,13 @@ All of the possible component types for solutions. 1033 + + 9f75a6da-592a-43f9-ba98-374a051c5fe2 + + true + Alle de mulige komponenttyper for løsninger. + 1030 + 3250e1f4-b9bb-11de-844f-00155da18b00 @@ -82224,6 +87451,13 @@ Component Type 1033 + + 501f9977-ed07-46c3-a183-2737e526d456 + + true + Komponenttype + 1030 + 3250e1f3-b9bb-11de-844f-00155da18b00 @@ -82266,6 +87500,13 @@ Entity 1033 + + fe72ef59-ace9-4cae-a297-2795fb61c3c5 + + true + Objekt + 1030 + 3250e1f6-b9bb-11de-844f-00155da18b00 @@ -82299,6 +87540,13 @@ Attribute 1033 + + 55615991-abca-46a3-a140-139f1d26413f + + true + Attribut + 1030 + 3250e1f8-b9bb-11de-844f-00155da18b00 @@ -82332,6 +87580,13 @@ Relationship 1033 + + c9ece387-8ca0-4f62-acbb-e3693f4beaec + + true + Relation + 1030 + 3250e1fa-b9bb-11de-844f-00155da18b00 @@ -82365,6 +87620,13 @@ Attribute Picklist Value 1033 + + 8e3cd8e3-5a68-4dc2-a077-cb9d38cb8392 + + true + Værdi på valgliste med attributter + 1030 + 3250e1fc-b9bb-11de-844f-00155da18b00 @@ -82398,6 +87660,13 @@ Attribute Lookup Value 1033 + + 714ffbd8-e3eb-41f5-a17a-3004edbf956c + + true + Opslagsværdi for attribut + 1030 + 3250e1fe-b9bb-11de-844f-00155da18b00 @@ -82431,6 +87700,13 @@ View Attribute 1033 + + 73849f39-3f89-4c9b-b37b-1b950b63e6be + + true + Vis attribut + 1030 + 3250e200-b9bb-11de-844f-00155da18b00 @@ -82464,6 +87740,13 @@ Localized Label 1033 + + 21be73c4-2497-4f2f-9797-d283e120a9ca + + true + Lokaliseret etiket + 1030 + 3250e202-b9bb-11de-844f-00155da18b00 @@ -82497,6 +87780,13 @@ Relationship Extra Condition 1033 + + ff2d0745-7437-4260-8b5a-c6aac37d1628 + + true + Ekstra betingelse i relation + 1030 + 3250e204-b9bb-11de-844f-00155da18b00 @@ -82530,6 +87820,13 @@ Option Set 1033 + + 34a2b6fd-4336-48f2-ac72-29f9ab03a634 + + true + Grupperet indstilling + 1030 + 3250e206-b9bb-11de-844f-00155da18b00 @@ -82563,6 +87860,13 @@ Entity Relationship 1033 + + c1965ed6-2f4a-40ad-b9e8-635002b9f01d + + true + Objektrelation + 1030 + 3250e208-b9bb-11de-844f-00155da18b00 @@ -82596,6 +87900,13 @@ Entity Relationship Role 1033 + + be80b00f-f107-49e5-920e-e09328a50b56 + + true + Rolle i objektrelation + 1030 + 3250e20a-b9bb-11de-844f-00155da18b00 @@ -82629,6 +87940,13 @@ Entity Relationship Relationships 1033 + + 3dd44a68-27ba-4fd2-ad55-d697227d1984 + + true + Relationer i objektrelation + 1030 + 3250e20c-b9bb-11de-844f-00155da18b00 @@ -82662,6 +87980,13 @@ Managed Property 1033 + + 789c5bb1-8f6c-4aeb-858d-ae898680bb3b + + true + Administreret egenskab + 1030 + b66c9941-227d-11df-8577-00155da18b00 @@ -82695,6 +88020,13 @@ Entity Key 1033 + + 6c346370-cb82-45ea-a4fa-0ff096e0bd7c + + true + Objektnøgle + 1030 + 44b455a2-680b-44a3-98e6-af05d7fac1b2 @@ -82728,6 +88060,13 @@ Privilege 1033 + + 25547ca7-6775-468e-9d84-144e136d7440 + + true + Rettighed + 1030 + 223f03be-0e3f-4f76-b6ff-0ff1264afa58 @@ -82761,6 +88100,13 @@ PrivilegeObjectTypeCode 1033 + + dc598bed-733c-40d4-b2e3-eaae4579aff7 + + true + PrivilegeObjectTypeCode + 1030 + 30d7f58d-55ab-4eb8-8b19-a576555921bd @@ -82794,6 +88140,13 @@ Role 1033 + + d281e93a-af94-45b4-81aa-b63b97b92414 + + true + Rolle + 1030 + 35dbde9c-b9bd-11de-844f-00155da18b00 @@ -82827,6 +88180,13 @@ Role Privilege 1033 + + fcf32711-1167-4924-b0d0-c95d1d44fb94 + + true + Rollerettighed + 1030 + 35dbde9e-b9bd-11de-844f-00155da18b00 @@ -82860,6 +88220,13 @@ Display String 1033 + + 3b43f0fe-9a21-4b2c-a487-503ef211b739 + + true + Visningsstreng + 1030 + 35dbdea0-b9bd-11de-844f-00155da18b00 @@ -82893,6 +88260,13 @@ Display String Map 1033 + + 29f0f956-9d11-4a19-92a9-361c65e75989 + + true + Visningsstrengtilknytning + 1030 + 35dbdea2-b9bd-11de-844f-00155da18b00 @@ -82926,6 +88300,13 @@ Form 1033 + + 2288adcc-1e1d-453e-b5e1-6dcc5c26a7eb + + true + Formular + 1030 + 35dbdea4-b9bd-11de-844f-00155da18b00 @@ -82959,6 +88340,13 @@ Organization 1033 + + ea054f55-30b6-4aac-9926-d66c71998d92 + + true + Organisation + 1030 + 35dbdea6-b9bd-11de-844f-00155da18b00 @@ -82992,6 +88380,13 @@ Saved Query 1033 + + e2adda6d-07d6-4642-aa74-90c598df9a65 + + true + Gemt forespørgsel + 1030 + 35dbdea8-b9bd-11de-844f-00155da18b00 @@ -83025,6 +88420,13 @@ Workflow 1033 + + 4830f9e8-457a-43da-868f-a3793e6c0d97 + + true + Arbejdsproces + 1030 + 35dbdeae-b9bd-11de-844f-00155da18b00 @@ -83058,6 +88460,13 @@ Report 1033 + + d834ba5f-1b49-46a6-bf2e-2097927d6dab + + true + Rapport + 1030 + 2d2fa8a6-df9c-436b-89c1-cb9a79a94a1d @@ -83091,6 +88500,13 @@ Report Entity 1033 + + f109aaf3-72f3-4ccd-9ab7-985c97a5be53 + + true + Rapportobjekt + 1030 + e48fd8ee-6621-40bd-a9a1-a1e00544643e @@ -83124,6 +88540,13 @@ Report Category 1033 + + 09feed14-9a0f-4373-9e2e-2580ca87f79c + + true + Rapportkategori + 1030 + 91a7a3f9-d7a6-479b-b520-48e02f7319f9 @@ -83157,6 +88580,13 @@ Report Visibility 1033 + + 650a2e4e-7d47-4d82-967d-ed3efea31c65 + + true + Rapportsynlighed + 1030 + 270c9f8b-4f74-4bce-a7ab-ce3baa4e6093 @@ -83190,6 +88620,13 @@ Attachment 1033 + + ab962989-70f9-4196-9b78-80704eae0370 + + true + Vedhæftet fil + 1030 + f0e8d73c-b474-4c8d-9ae0-df0aea227d2e @@ -83223,6 +88660,13 @@ Email Template 1033 + + 96734669-465e-4489-a670-64bbba76c94a + + true + E-mail-skabelon + 1030 + 35dbdeb2-b9bd-11de-844f-00155da18b00 @@ -83256,6 +88700,13 @@ Contract Template 1033 + + e1ad718a-a5bf-4322-8402-9471d98168d7 + + true + Kontraktskabelon + 1030 + 35dbdeb4-b9bd-11de-844f-00155da18b00 @@ -83289,6 +88740,13 @@ KB Article Template 1033 + + 7b929693-574c-4cb0-8370-f7715c11fa90 + + true + Skabelon til KnowledgeBase-artikel + 1030 + 35dbdeb6-b9bd-11de-844f-00155da18b00 @@ -83322,6 +88780,13 @@ Mail Merge Template 1033 + + ceddb5ea-7f3d-4ae6-be1c-38adeea03cbd + + true + Skabelon til brevfletning + 1030 + 35dbdeb8-b9bd-11de-844f-00155da18b00 @@ -83355,6 +88820,13 @@ Duplicate Rule 1033 + + 8ffa522f-4c35-4345-90bd-9670f3063c9b + + true + Duplikeret regel + 1030 + 35dbdeba-b9bd-11de-844f-00155da18b00 @@ -83388,6 +88860,13 @@ Duplicate Rule Condition 1033 + + b74f7cd8-50cc-40f6-9f1d-3ed1be08f93c + + true + Dubletregeltilstand + 1030 + 35dbdebc-b9bd-11de-844f-00155da18b00 @@ -83421,6 +88900,13 @@ Entity Map 1033 + + 9f89bbb7-12b8-46c5-ab8c-7afc88822a4b + + true + Objekttilknytning + 1030 + 35dbdebe-b9bd-11de-844f-00155da18b00 @@ -83454,6 +88940,13 @@ Attribute Map 1033 + + d25dbd8a-b046-47b8-aaab-38922783eefc + + true + Attributtilknytning + 1030 + 35dbdec0-b9bd-11de-844f-00155da18b00 @@ -83487,6 +88980,13 @@ Ribbon Command 1033 + + e7b9e5e9-bf7d-43f3-bbed-0b9f4a5d5f22 + + true + Kommando på bånd + 1030 + 35dbdec2-b9bd-11de-844f-00155da18b00 @@ -83520,6 +89020,13 @@ Ribbon Context Group 1033 + + e1a03d3d-8c6c-4343-ab69-43e44030a2b8 + + true + Genvejsmenu til gruppe på bånd + 1030 + 35dbdec4-b9bd-11de-844f-00155da18b00 @@ -83553,6 +89060,13 @@ Ribbon Customization 1033 + + 21f2b89c-e834-49e9-b1bf-bf72796e17b1 + + true + Tilpasning af båndet + 1030 + 35dbdec6-b9bd-11de-844f-00155da18b00 @@ -83586,6 +89100,13 @@ Ribbon Rule 1033 + + 392b0442-f1d0-43cd-9b32-1aaa082e3a4d + + true + Båndregel + 1030 + 35dbdec8-b9bd-11de-844f-00155da18b00 @@ -83619,6 +89140,13 @@ Ribbon Tab To Command Map 1033 + + 7123f030-87a6-4b0e-9eb3-1bc6a496a8ae + + true + Tilknytning mellem fane på båndet og kommando + 1030 + 35dbdeca-b9bd-11de-844f-00155da18b00 @@ -83652,6 +89180,13 @@ Ribbon Diff 1033 + + 32a1984f-e0d7-49c1-8623-4ecbcf27fa8e + + true + Difference på bånd + 1030 + 35dbdecc-b9bd-11de-844f-00155da18b00 @@ -83685,6 +89220,13 @@ Saved Query Visualization 1033 + + 37683582-0d17-49ee-b2c6-a883fccc1bc8 + + true + Visualisering af forespørgsel blev gemt + 1030 + e4261e0c-b9bd-11de-844f-00155da18b00 @@ -83718,6 +89260,13 @@ System Form 1033 + + e29a885e-70a0-4e57-b71b-ae6d4e2bbf95 + + true + Systemformular + 1030 + e4261e0e-b9bd-11de-844f-00155da18b00 @@ -83751,6 +89300,13 @@ Web Resource 1033 + + 2558e188-d2f1-4fc4-bcd4-8a6dae6413bd + + true + Webressource + 1030 + e4261e10-b9bd-11de-844f-00155da18b00 @@ -83784,6 +89340,13 @@ Site Map 1033 + + 004ecd08-a085-4093-aba4-209440491a2d + + true + Oversigt over websted + 1030 + e4261e12-b9bd-11de-844f-00155da18b00 @@ -83817,6 +89380,13 @@ Connection Role 1033 + + 8af2a10f-7e4e-4535-ad38-330323c60881 + + true + Forbindelsesrolle + 1030 + e4261e14-b9bd-11de-844f-00155da18b00 @@ -83850,6 +89420,13 @@ Complex Control 1033 + + 3babdd2f-6d5e-4d4f-9868-b9d5cedff35f + + true + Komplekst kontrolelement + 1030 + 0d4bd12a-5149-49b2-925f-d09ce20c4be8 @@ -83883,6 +89460,13 @@ Field Security Profile 1033 + + 550cdfd3-3b45-491a-97fb-bcc4acef11fb + + true + Profil for feltsikkerhed + 1030 + 9d15b865-2d55-11df-838b-0019b9279bfb @@ -83916,6 +89500,13 @@ Field Permission 1033 + + a9205f4c-a02a-473d-ad85-79fcfad4ab56 + + true + Feltrettighed + 1030 + af8018e1-2d55-11df-838b-0019b9279bfb @@ -83949,6 +89540,13 @@ Plugin Type 1033 + + 4bd335bf-46a3-44ff-8ddb-7b229b67c54a + + true + Type af plug-in + 1030 + bda86701-56d0-48d3-8328-7891c3f3984f @@ -83982,6 +89580,13 @@ Plugin Assembly 1033 + + 609c5670-2988-4a54-9d74-74e5df1bf34e + + true + Plug-in-assembly + 1030 + bda86711-56d0-48d3-8328-7891c3f3984f @@ -84015,6 +89620,13 @@ SDK Message Processing Step 1033 + + b19ae986-efd8-4052-81fb-b954b2785948 + + true + Behandlingstrin for SDK-meddelelse + 1030 + bda86721-56d0-48d3-8328-7891c3f3984f @@ -84048,6 +89660,13 @@ SDK Message Processing Step Image 1033 + + e45102e8-f993-4346-901b-2fe40a35a7ac + + true + Behandlingstrinsbillede for SDK-meddelelse + 1030 + bda86731-56d0-48d3-8328-7891c3f3984f @@ -84081,6 +89700,13 @@ Service Endpoint 1033 + + 53b9d86b-2d66-4c9a-8894-8f3589fe05bd + + true + Slutpunkt for tjeneste + 1030 + bda86751-56d0-48d3-8328-7891c3f3984f @@ -84114,6 +89740,13 @@ Routing Rule 1033 + + 43301a2a-dbe3-415e-814e-ba40f6dd26df + + true + Ruteregel + 1030 + c7d53761-14ad-4e06-8a90-73d7cc57bde9 @@ -84147,6 +89780,13 @@ Routing Rule Item 1033 + + 90086ea8-9293-40d5-a890-210996693fab + + true + Ruteregelelement + 1030 + 7397d0fd-fa77-40ab-989a-c1d8593f6264 @@ -84180,6 +89820,13 @@ SLA 1033 + + d25a06f5-4a55-41f1-9498-e930fd4716e6 + + true + SLA + 1030 + 2a368df3-91be-4ea7-9de4-c8882819c31c @@ -84213,6 +89860,13 @@ SLA Item 1033 + + bac09a04-ded7-443a-8db3-a22f8ec17216 + + true + SLA-element + 1030 + e917239c-0bb9-437d-8d51-3457c11dec55 @@ -84246,6 +89900,13 @@ Convert Rule 1033 + + 4cea389b-cf0b-4a7b-b08b-7a9f6cd61939 + + true + Konverteringsregel + 1030 + 5e4fc65e-6512-418a-ad35-34102609a6f2 @@ -84279,6 +89940,13 @@ Convert Rule Item 1033 + + 7ec2f1fb-0944-436d-8135-bf28b71e1976 + + true + Konverteringsregelelement + 1030 + 0cfb2ee8-e1d5-4c51-b058-3044804a7c98 @@ -84312,6 +89980,13 @@ Hierarchy Rule 1033 + + 5c2709d2-21ad-4541-9087-e0cc9f77a235 + + true + Hierarkiregel + 1030 + 2286e0fd-9a69-4668-9ca1-fb18a8826ceb @@ -84345,6 +90020,13 @@ Mobile Offline Profile 1033 + + 00436c9c-d151-4e0c-86b6-48545234c71e + + true + Mobile Offline-profil + 1030 + 9c99d6bb-3790-47b0-950c-014b747d12a9 @@ -84378,6 +90060,13 @@ Mobile Offline Profile Item 1033 + + ca1ce0f0-07ad-459a-bb00-f6a80d40b1aa + + true + Mobile Offline-profilelement + 1030 + a0d3a0b9-ee17-4be1-86f1-e7b5ebbe1a7a @@ -84411,6 +90100,13 @@ Similarity Rule 1033 + + b1eb4c2f-1ccf-42af-9320-6b3d04c18508 + + true + Lighedsregel + 1030 + d606c762-0741-4f34-b2b1-818f5b6128b7 @@ -84444,6 +90140,13 @@ Custom Control 1033 + + 2ed52491-1c28-4656-bedd-454d771f9894 + + true + Brugerdefineret kontrolelement + 1030 + 631ced83-509a-49c4-99b4-8f3ffc55d3c2 @@ -84477,6 +90180,13 @@ Custom Control Default Config 1033 + + 5626e407-9409-49bc-a9ec-2e5d73504f00 + + true + Standardkonfiguration for brugerdefineret kontrolelement + 1030 + ec71a702-a778-4074-b883-3dae457283a7 @@ -84510,6 +90220,13 @@ Data Source Mapping 1033 + + 90eb0735-28ba-4c55-828e-e5cefc304a0f + + true + Tilknytning af datakilde + 1030 + a5f448d5-eada-4970-8c13-ede8b219ee2e @@ -84543,6 +90260,13 @@ SDKMessage 1033 + + bc3a7841-0450-4770-b87d-b04c83fad233 + + true + SDKMessage + 1030 + 1325e625-8828-4ffb-9051-0564fc17286a @@ -84576,6 +90300,13 @@ SDKMessageFilter 1033 + + 3ef77621-5b46-4741-9a69-4ef0b5876559 + + true + SDKMessageFilter + 1030 + 653e864d-912c-42e1-9323-927a95fd78ce @@ -84609,6 +90340,13 @@ SdkMessagePair 1033 + + 60426e5f-0e6b-4e9c-ab63-612172705013 + + true + SdkMessagePair + 1030 + f3ba0616-fadc-4eca-ba00-281ff81f1ce2 @@ -84642,6 +90380,13 @@ SdkMessageRequest 1033 + + 5e8b1b8f-0735-415d-ad82-d134bcfddb6c + + true + SdkMessageRequest + 1030 + d62f2300-1dbe-4580-aa3f-f7e888b4f139 @@ -84675,6 +90420,13 @@ SdkMessageRequestField 1033 + + e89ae203-51cf-48a4-ba20-dace5d633425 + + true + SdkMessageRequestField + 1030 + d57c7e80-58f1-47f1-94ff-3626baf79966 @@ -84708,6 +90460,13 @@ SdkMessageResponse 1033 + + bb874c1a-cf23-49c0-b0b9-350ee707d44c + + true + SdkMessageResponse + 1030 + c6c6f188-bf75-4300-939b-1130b7c69917 @@ -84741,6 +90500,13 @@ SdkMessageResponseField 1033 + + f60e7181-7d6b-4a78-9e31-d1bbae050586 + + true + SdkMessageResponseField + 1030 + 442e93ae-098b-478c-8104-5e295d3af482 @@ -84774,6 +90540,13 @@ WebWizard 1033 + + c88b35e7-6808-4d35-8322-f9291e862373 + + true + WebWizard + 1030 + f830a047-67f3-457d-85e1-a9d7805e8c75 @@ -84807,6 +90580,13 @@ Index 1033 + + 4105ce0a-58fa-4ff9-9aeb-7969b2c0d5b2 + + true + Indeks + 1030 + a61eef9c-5117-42f9-b74c-ed2160034963 @@ -84840,6 +90620,13 @@ Import Map 1033 + + ccf1adf1-4edb-4d58-8c21-214d03ddf7fc + + true + Importer tilknytning + 1030 + eb593ac5-ebf3-4966-a57e-159610980deb @@ -84867,15 +90654,22 @@ - 45f97a20-93cd-4d9d-9373-badc5121726f + 905fd089-2e64-4ec8-b673-8b8a6e4017e4 true Canvas App 1033 + + 8d436e17-d959-4212-8530-f00d9fb1a4a1 + + true + Lærred-app + 1030 + - 45f97a20-93cd-4d9d-9373-badc5121726f + 905fd089-2e64-4ec8-b673-8b8a6e4017e4 true Canvas App @@ -84900,15 +90694,22 @@ - 6174e48e-ff3e-4b1a-a2cd-764c6de5f7be + fe6c5ab8-afbf-4035-b314-3bd3b326c84a true Connector 1033 + + 0e5eb4a9-92cf-4e2c-b811-fcca7721768e + + true + Connector + 1030 + - 6174e48e-ff3e-4b1a-a2cd-764c6de5f7be + fe6c5ab8-afbf-4035-b314-3bd3b326c84a true Connector @@ -84933,15 +90734,22 @@ - 11118f8e-5d20-422e-aabc-8259c8b2b201 + 1b801d8e-ff15-4970-b046-8d116621a990 true Connector 1033 + + afba9ecc-4f77-49e1-af32-cd3dd3181173 + + true + Connector + 1030 + - 11118f8e-5d20-422e-aabc-8259c8b2b201 + 1b801d8e-ff15-4970-b046-8d116621a990 true Connector @@ -84966,15 +90774,22 @@ - d62332b2-a2de-495b-99ec-4b55cd633c40 + 9c28d347-aa84-4213-beac-f5b51896c404 true Environment Variable Definition 1033 + + 1806fe85-af4a-43a1-9142-f82979576c89 + + true + Definition af miljøvariabel + 1030 + - d62332b2-a2de-495b-99ec-4b55cd633c40 + 9c28d347-aa84-4213-beac-f5b51896c404 true Environment Variable Definition @@ -84999,15 +90814,22 @@ - 7d297a52-017f-424f-9df0-6ad5ea19befe + b2c46bc9-c529-4f38-bf70-26cf91785202 true Environment Variable Value 1033 + + 1066f318-c9b1-4b2f-b53b-b0f82d19f989 + + true + Værdi for miljøvariabel + 1030 + - 7d297a52-017f-424f-9df0-6ad5ea19befe + b2c46bc9-c529-4f38-bf70-26cf91785202 true Environment Variable Value @@ -85032,15 +90854,22 @@ - 1a41e6de-e242-4e69-9c16-29fb4374b1d5 + 4232109e-df1d-4d7d-ae0d-2a1a08add409 true AI Project Type 1033 + + 7040fa9b-179d-4aea-b3c0-acc51d41a7c2 + + true + AI-projekttype + 1030 + - 1a41e6de-e242-4e69-9c16-29fb4374b1d5 + 4232109e-df1d-4d7d-ae0d-2a1a08add409 true AI Project Type @@ -85065,15 +90894,22 @@ - b13734e9-b00b-4220-bfa9-7506ab708525 + 38358320-4c5c-4a00-90da-2ba6f151641b true AI Project 1033 + + dc5d0dc6-7915-4ea2-b789-d84e585d54cb + + true + AI-projekt + 1030 + - b13734e9-b00b-4220-bfa9-7506ab708525 + 38358320-4c5c-4a00-90da-2ba6f151641b true AI Project @@ -85098,15 +90934,22 @@ - 174406b5-3ace-4a56-9577-7233c581d4cc + 1b655b86-48c8-4924-9449-ea68bca515cc true AI Configuration 1033 + + 5dc96c46-c703-4775-9aad-8d34195f3fb2 + + true + AI-konfiguration + 1030 + - 174406b5-3ace-4a56-9577-7233c581d4cc + 1b655b86-48c8-4924-9449-ea68bca515cc true AI Configuration @@ -85131,15 +90974,22 @@ - aa86702d-6cc4-4196-9821-6f56400572b9 + f2fe6a02-5c54-4417-817e-a69781951729 true Entity Analytics Configuration 1033 + + 471eb7e1-ff83-41a4-a864-cb4e19723605 + + true + Konfiguration af objektanalyse + 1030 + - aa86702d-6cc4-4196-9821-6f56400572b9 + f2fe6a02-5c54-4417-817e-a69781951729 true Entity Analytics Configuration @@ -85164,15 +91014,22 @@ - 52e92361-c366-4d8f-ae85-c042b5d2cbaf + 02812233-6e28-4e72-9be0-8d1ba3e4f71e true Attribute Image Configuration 1033 + + a328000c-5190-4142-80d6-506516bb4887 + + true + Konfiguration af attributbillede + 1030 + - 52e92361-c366-4d8f-ae85-c042b5d2cbaf + 02812233-6e28-4e72-9be0-8d1ba3e4f71e true Attribute Image Configuration @@ -85197,15 +91054,22 @@ - 92999c72-6cdc-475e-b701-b26b29c6f554 + 1ac70d4c-91e2-47b1-8244-8e547447594f true Entity Image Configuration 1033 + + 8dc52ee6-d60d-4250-bad8-c1a79995cdb8 + + true + Konfiguration af objektbillede + 1030 + - 92999c72-6cdc-475e-b701-b26b29c6f554 + 1ac70d4c-91e2-47b1-8244-8e547447594f true Entity Image Configuration @@ -85485,6 +91349,13 @@ A component dependency in CRM. 1033 + + 7120565c-bdaf-4305-a95b-3cf3810e7cad + + true + En komponentafhængighed i CRM. + 1030 + a90cb7e2-13fa-48f0-a21e-255aca747db6 @@ -85503,6 +91374,13 @@ Dependency 1033 + + 1dc87ddd-3291-43c3-abe9-7f560d0cf729 + + true + Afhængighed + 1030 + 54ff2673-10cf-48a9-b4a6-2b01a8e7663a @@ -85521,6 +91399,13 @@ Dependency 1033 + + 5b87471a-1e04-437f-9049-b25f2695f902 + + true + Afhængighed + 1030 + b4587890-52e5-4736-8535-735174ac0db0 @@ -85996,15 +91881,22 @@ - 281df380-313d-4b07-beaf-9f5bfc634e84 + edaf5ef6-a187-4eb0-9d21-4ae4244ed998 true Date and time when the attachment was created. 1033 + + 6a6d14bd-5bf3-4fd2-81cd-69efd79089b2 + + true + Dato og klokkeslæt for oprettelse af den vedhæftede fil. + 1030 + - 281df380-313d-4b07-beaf-9f5bfc634e84 + edaf5ef6-a187-4eb0-9d21-4ae4244ed998 true Date and time when the attachment was created. @@ -86014,15 +91906,22 @@ - 42a2b4db-9326-4a29-92c1-6b6b7bba897a + 43926f6a-43fa-496b-b880-50a3815c153c true Created On 1033 + + 5a70b247-cb53-4ee3-8130-e10ebe1b2878 + + true + Oprettet + 1030 + - 42a2b4db-9326-4a29-92c1-6b6b7bba897a + 43926f6a-43fa-496b-b880-50a3815c153c true Created On @@ -86127,15 +92026,22 @@ - 5e0c1fd9-4be3-4d72-8ad9-30176cfdaf43 + c922724d-967b-43c7-85a5-8da5554cedee true Unique identifier of the file attachment. 1033 + + a3178f61-276c-4a0a-a6cb-e12b91aeaf24 + + true + Entydigt id for den vedhæftede fil. + 1030 + - 5e0c1fd9-4be3-4d72-8ad9-30176cfdaf43 + c922724d-967b-43c7-85a5-8da5554cedee true Unique identifier of the file attachment. @@ -86145,15 +92051,22 @@ - 12441513-333c-44ab-b0df-dea517aaf85f + d54322cc-65ce-482e-85e7-45352a71cea0 true FileAttachmentId 1033 + + 14f5c2b1-6c13-4900-b089-9435267b1287 + + true + FileAttachmentId + 1030 + - 12441513-333c-44ab-b0df-dea517aaf85f + d54322cc-65ce-482e-85e7-45352a71cea0 true FileAttachmentId @@ -86246,15 +92159,22 @@ - c800db48-cf39-4915-bb0a-4d65fff6af76 + 9685068e-65d2-4b97-91ab-06ce824217af true File name of the attachment. 1033 + + 19753a5d-97ba-4705-8ce1-3c62a844fe5f + + true + Filnavn på den vedhæftede fil. + 1030 + - c800db48-cf39-4915-bb0a-4d65fff6af76 + 9685068e-65d2-4b97-91ab-06ce824217af true File name of the attachment. @@ -86264,15 +92184,22 @@ - a01a33e1-e7cb-478d-b2ee-37778003e2bc + 77e2f42e-fcf5-4010-a96a-1364fdf142f4 true File Name 1033 + + b3b6de1a-36ac-4380-96d4-5d12c29633fa + + true + Filnavn + 1030 + - a01a33e1-e7cb-478d-b2ee-37778003e2bc + 77e2f42e-fcf5-4010-a96a-1364fdf142f4 true File Name @@ -86376,15 +92303,22 @@ - 6abf148f-9233-421b-ae14-8df4538abf7b + 382c5c28-e17b-49fd-bf66-4b53757ba099 true File pointer of the attachment. 1033 + + 13b28b48-69c3-4949-8467-b079e9935369 + + true + Filmarkør for den vedhæftede fil. + 1030 + - 6abf148f-9233-421b-ae14-8df4538abf7b + 382c5c28-e17b-49fd-bf66-4b53757ba099 true File pointer of the attachment. @@ -86394,15 +92328,22 @@ - 7bf1ea2e-0e4a-4282-b1c3-2017d319123b + 087e6f1e-91f6-48fa-9d28-272b6155ed3d true File Pointer 1033 + + 1c89a36d-0455-4b02-a79a-392629f6bd82 + + true + Filmarkør + 1030 + - 7bf1ea2e-0e4a-4282-b1c3-2017d319123b + 087e6f1e-91f6-48fa-9d28-272b6155ed3d true File Pointer @@ -86506,15 +92447,22 @@ - 956aa3ed-c33f-4a7e-96bd-26b0c5cfe9e1 + 57e3d1e3-e024-4199-8613-65241932d72c true File size of the attachment in bytes. 1033 + + 6557746b-c15c-4690-816b-241d936acd35 + + true + Filstørrelsen for den vedhæftede fil i byte. + 1030 + - 956aa3ed-c33f-4a7e-96bd-26b0c5cfe9e1 + 57e3d1e3-e024-4199-8613-65241932d72c true File size of the attachment in bytes. @@ -86524,15 +92472,22 @@ - 34b027c2-43fd-4c61-949e-2f2ea3bfb135 + f95c9b98-aa76-466a-8869-767d4898bfa7 true File Size (Bytes) 1033 + + 7d310bf7-1f69-4dc6-99d5-2ce5ba042c27 + + true + Filstørrelse (byte) + 1030 + - 34b027c2-43fd-4c61-949e-2f2ea3bfb135 + f95c9b98-aa76-466a-8869-767d4898bfa7 true File Size (Bytes) @@ -87289,15 +93244,22 @@ - 18f30bfa-cb3f-4c9b-877b-04c6b209d950 + 506269b6-4057-4819-9856-352ec23de0df true MIME type of the attachment. 1033 + + 256d3908-14c9-40f0-8297-ee4433b1b7ff + + true + MIME-type for den vedhæftede fil. + 1030 + - 18f30bfa-cb3f-4c9b-877b-04c6b209d950 + 506269b6-4057-4819-9856-352ec23de0df true MIME type of the attachment. @@ -87307,15 +93269,22 @@ - d94f0166-5096-4af8-b600-df073c15a7ac + 22429808-f914-4d7b-b849-f2d4e655ebb2 true MIME Type 1033 + + 52de6b00-96bf-40c0-a537-bdbff7e90c59 + + true + MIME-type + 1030 + - d94f0166-5096-4af8-b600-df073c15a7ac + 22429808-f914-4d7b-b849-f2d4e655ebb2 true MIME Type @@ -87419,15 +93388,22 @@ - 5d9a7f9e-fc64-4e77-af89-d6d955f8fc27 + 1dfe12e3-a11c-4c9d-8279-4c697d15e12c true Unique identifier of the object with which the attachment is associated. 1033 + + 24f23c44-079b-4096-8e33-996cc35d59e3 + + true + Entydigt id for det objekt, denne vedhæftede fil er knyttet til. + 1030 + - 5d9a7f9e-fc64-4e77-af89-d6d955f8fc27 + 1dfe12e3-a11c-4c9d-8279-4c697d15e12c true Unique identifier of the object with which the attachment is associated. @@ -87437,15 +93413,22 @@ - 4876ae75-12b2-43ef-804f-5b3463abd156 + c38e3485-f236-42cb-a248-55e201acd059 true Regarding 1033 + + a38e9b40-cdac-434b-869b-4c829bddefbd + + true + Angående + 1030 + - 4876ae75-12b2-43ef-804f-5b3463abd156 + c38e3485-f236-42cb-a248-55e201acd059 true Regarding @@ -87522,6 +93505,7 @@ activityfileattachment activitypointer + agentconversationmessagefile approvalprocess approvalstageintelligent asyncoperation @@ -87540,6 +93524,7 @@ imagedescriptor knowledgearticle mailbox + mcpresourcecontent msdyn_aibfeedbackloop msdyn_aibfile msdyn_aiconfiguration @@ -87559,6 +93544,7 @@ msdyn_planartifact msdyn_planattachment msdyn_pminferredtask + msdyn_powerappswrapbuild msdyn_richtextfile mspcat_catalogsubmissionfiles mspcat_packagestore @@ -87576,9 +93562,12 @@ revokeinheritedaccessrecordstracker ribbonclientmetadata searchcustomanalyzer + skillresource solution stagesolutionupload unstructuredfilesearchrecord + uxagentcomponentrevision + uxagentprojectfile webresource workflowbinary workflowlog @@ -87604,15 +93593,22 @@ - deaa5dc1-34f5-43db-812f-483ae49f11ec + b0c1ed03-9301-4b3b-b5c9-69c1f77a16fc true Type of entity with which the file attachment is associated. 1033 + + 8a8782d0-ca60-4e42-a5b5-dc73fe5366c2 + + true + Den type objekt, som den vedhæftede fil er tilknyttet. + 1030 + - deaa5dc1-34f5-43db-812f-483ae49f11ec + b0c1ed03-9301-4b3b-b5c9-69c1f77a16fc true Type of entity with which the file attachment is associated. @@ -87622,15 +93618,22 @@ - bc637e20-4ff3-40c6-8c71-15113bb10261 + 3ebfb59e-4d29-455d-9fe8-0d5326da2597 true Object Id Type Code 1033 + + 9cb92dfb-9b00-4f9c-a393-8a93c81a7030 + + true + Objekt-id-typekode + 1030 + - bc637e20-4ff3-40c6-8c71-15113bb10261 + 3ebfb59e-4d29-455d-9fe8-0d5326da2597 true Object Id Type Code @@ -87727,15 +93730,22 @@ - 03b70ac1-4a87-4d79-96bd-4f24090ba006 + 32598844-9b5e-41b7-82f3-dc520a85a252 true Type of entity with which the file attachment is associated. 1033 + + 7acfc25b-a064-4478-88ab-d6f84b2c1ae7 + + true + Den type objekt, som den vedhæftede fil er tilknyttet. + 1030 + - 03b70ac1-4a87-4d79-96bd-4f24090ba006 + 32598844-9b5e-41b7-82f3-dc520a85a252 true Type of entity with which the file attachment is associated. @@ -87745,15 +93755,22 @@ - f62eae8f-6263-45b8-b31a-6fb509739d46 + bddaebca-c2df-477b-b173-ce652af40fe5 true Object Type 1033 + + 1e3cd8ec-e3cd-4d5e-a76b-aae0288c99f4 + + true + Objekttype + 1030 + - f62eae8f-6263-45b8-b31a-6fb509739d46 + bddaebca-c2df-477b-b173-ce652af40fe5 true Object Type @@ -87833,15 +93850,22 @@ - 291f60f4-ff6f-47cc-a7f1-8edfe6bf9bb3 + d7b8d13d-6541-45fc-b4bf-f7d21674a225 true Type of entity with which the file attachment is associated. 1033 + + 0e6226e9-82b7-4acb-ada0-574f7c5762cd + + true + Den type objekt, som den vedhæftede fil er tilknyttet. + 1030 + - 291f60f4-ff6f-47cc-a7f1-8edfe6bf9bb3 + d7b8d13d-6541-45fc-b4bf-f7d21674a225 true Type of entity with which the file attachment is associated. @@ -87851,15 +93875,22 @@ - 372f2792-556d-41d1-a058-748051bf263f + 0ad8f4a7-d06a-4d37-a999-f7603d1e3135 true Object Type 1033 + + 996e0cdd-5d77-40a2-8148-3b906b7ac243 + + true + Objekttype + 1030 + - 372f2792-556d-41d1-a058-748051bf263f + 0ad8f4a7-d06a-4d37-a999-f7603d1e3135 true Object Type @@ -87893,15 +93924,22 @@ - d8e469c8-f947-4fe1-933c-2b8098e1ebd4 + 7b36daa6-5326-4983-b089-4d0f8dc60382 true Account 1033 + + 9c88834d-6228-4ee2-beeb-1014ecd600bf + + true + Firma + 1030 + - d8e469c8-f947-4fe1-933c-2b8098e1ebd4 + 7b36daa6-5326-4983-b089-4d0f8dc60382 true Account @@ -88028,15 +94066,22 @@ - 855d22ab-0f15-442c-b28b-de251e146fee + d4126b9e-b791-4e95-87a2-1be5a5fe4726 true Prefix of the file pointer in blob storage. 1033 + + 34538fed-fbd0-4279-9c74-a1f8094711c0 + + true + Præfiks for filmarkøren i Blob Storage. + 1030 + - 855d22ab-0f15-442c-b28b-de251e146fee + d4126b9e-b791-4e95-87a2-1be5a5fe4726 true Prefix of the file pointer in blob storage. @@ -88046,15 +94091,22 @@ - 2ddb5b51-fcbb-427b-b676-9549a0b52939 + 646bc985-c4ea-4599-8e1a-d4bb2c718a41 true Prefix 1033 + + a6b1ae13-3ec7-4e8c-9720-24f77dfa7fa1 + + true + Præfiks + 1030 + - 2ddb5b51-fcbb-427b-b676-9549a0b52939 + 646bc985-c4ea-4599-8e1a-d4bb2c718a41 true Prefix @@ -88158,15 +94210,22 @@ - 8fc80cd9-cc0a-4825-8034-a842216c64ee + fcc3a694-cc75-4292-a389-684871299c65 true Regarding attribute schema name of the attachment. 1033 + + 27a92c05-03b4-4b44-9219-7d9d6f9a117f + + true + Angående-attributtens skemanavn for den vedhæftede fil. + 1030 + - 8fc80cd9-cc0a-4825-8034-a842216c64ee + fcc3a694-cc75-4292-a389-684871299c65 true Regarding attribute schema name of the attachment. @@ -88176,15 +94235,22 @@ - 91609457-efa9-4050-8d8a-8e572202fa80 + 093d11cf-5760-4a43-8f68-d02352e2eef3 true Regarding Attribute Schema Name 1033 + + afb5ebb5-f40d-4154-8a75-33d27ec1333e + + true + Angående-attributtens skemanavn + 1030 + - 91609457-efa9-4050-8d8a-8e572202fa80 + 093d11cf-5760-4a43-8f68-d02352e2eef3 true Regarding Attribute Schema Name @@ -88288,166 +94354,50 @@ - 21e413d3-c305-4fb0-ac83-02666686ca75 + 914c2011-2843-4a89-98b1-deb420dd1ac4 true Storage pointer. 1033 - - - 21e413d3-c305-4fb0-ac83-02666686ca75 - - true - Storage pointer. - 1033 - - - - - 37bd80a2-52b6-4eb8-a379-0c41af0c8b56 + 8184ff6c-0966-4fb6-95a3-277f2ea4b193 true - Storage Pointer - 1033 + Filnavn. + 1030 - 37bd80a2-52b6-4eb8-a379-0c41af0c8b56 + 914c2011-2843-4a89-98b1-deb420dd1ac4 true - Storage Pointer + Storage pointer. 1033 - - fileattachment - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - false - false - false - - storagepointer - 2025-11-06T00:19:12.9769984 - - false - canmodifyrequirementlevelsettings - None - - StoragePointer - - - StringType - - 9.1.0.0 - false - 0 - - Text - Auto - 10 - - - Text - - - false - 0 - 10 - - - d5a9a0d8-acf5-4f3d-b7fc-ecb076e9fb3d - - - BigInt - false - false - false - - false - canmodifyadditionalsettings - true - - 11 - 2025-11-06T00:19:12.9299968 - - + + - 492950e8-53ed-44e4-b2a7-5eddff1ae837 + 0172b475-0976-4d19-8a70-b76eba271dd2 true - Version number of the file attachment. + Storage Pointer 1033 - - - 492950e8-53ed-44e4-b2a7-5eddff1ae837 - - true - Version number of the file attachment. - 1033 - - - - - 98bb8dd0-f27c-4685-91f1-563037122ab7 + 227b4dee-edce-4f8d-a057-b325154e3644 true - Version Number - 1033 + Filnavn + 1030 - 98bb8dd0-f27c-4685-91f1-563037122ab7 + 0172b475-0976-4d19-8a70-b76eba271dd2 true - Version Number + Storage Pointer 1033 @@ -88455,9 +94405,153 @@ - false + true canmodifyauditsettings - false + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + false + false + false + + storagepointer + 2025-11-06T00:19:12.9769984 + + false + canmodifyrequirementlevelsettings + None + + StoragePointer + + + StringType + + 9.1.0.0 + false + 0 + + Text + Auto + 10 + + + Text + + + false + 0 + 10 + + + d5a9a0d8-acf5-4f3d-b7fc-ecb076e9fb3d + + + BigInt + false + false + false + + false + canmodifyadditionalsettings + true + + 11 + 2025-11-06T00:19:12.9299968 + + + + + 28e50f67-e952-4799-a062-b3f3b35b1a18 + + true + Version number of the file attachment. + 1033 + + + 821a1a95-899d-4cd0-b39c-284007db2159 + + true + Versionsnummeret for den vedhæftede fil. + 1030 + + + + 28e50f67-e952-4799-a062-b3f3b35b1a18 + + true + Version number of the file attachment. + 1033 + + + + + + ecfcb249-4056-46d2-a875-f293ec6ce3f9 + + true + Version Number + 1033 + + + 5b58eeff-d191-4943-bf5a-7dcfedb68eac + + true + Versionsnummer + 1030 + + + + ecfcb249-4056-46d2-a875-f293ec6ce3f9 + + true + Version Number + 1033 + + + fileattachment + + + + false + canmodifyauditsettings + false false @@ -88590,15 +94684,22 @@ - 04705cac-6fe2-4f81-bcf4-a7ad7bea225a + 88dc1ce6-3b1a-4460-b994-3fcf20e5d0f7 true File Attachment 1033 + + b4b713f4-8924-410c-9e45-19ee575703ac + + true + Vedhæftet fil + 1030 + - 04705cac-6fe2-4f81-bcf4-a7ad7bea225a + 88dc1ce6-3b1a-4460-b994-3fcf20e5d0f7 true File Attachment @@ -88608,15 +94709,22 @@ - e2671eb9-44d8-42ee-b171-babca14031f9 + cd4e7da0-b96d-4d50-bc41-fc24ba902cd1 true FileAttachments 1033 + + 9503f6b8-8384-44c5-8dcd-bca4fd1c0c0d + + true + FileAttachments + 1030 + - e2671eb9-44d8-42ee-b171-babca14031f9 + cd4e7da0-b96d-4d50-bc41-fc24ba902cd1 true FileAttachments @@ -88626,15 +94734,22 @@ - 1e763740-b901-48dd-bf70-5f1106c190fd + d680b11b-951d-4899-a9f4-84f320fbfe0a true FileAttachment 1033 + + f8c52f0e-5320-4e65-8cd2-5e43c08731b4 + + true + FileAttachment + 1030 + - 1e763740-b901-48dd-bf70-5f1106c190fd + d680b11b-951d-4899-a9f4-84f320fbfe0a true FileAttachment @@ -88736,6 +94851,60 @@ fileattachment + + 1e7ed601-0e2f-f111-88b5-7c1e5287d1d8 + + false + + true + iscustomizable + true + + false + true + agentconversationmessagefile_FileAttachments + ParentChild + 1.0.0.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + agentconversationmessagefileid + agentconversationmessagefile + agentconversationmessagefile_FileAttachments + objectid + fileattachment + objectid_agentconversationmessagefile + + 2 + 7515f801-cbba-f011-bbd3-7c1e52365f30 @@ -89492,6 +95661,60 @@ 2 + + bacc602a-0d2f-f111-88b5-7c1e5287d1d8 + + false + + true + iscustomizable + true + + false + true + uxagentcomponentrevision_FileAttachments + ParentChild + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + uxagentcomponentrevisionid + uxagentcomponentrevision + uxagentcomponentrevision_FileAttachments + objectid + fileattachment + objectid_uxagentcomponentrevision + + 2 + 76f4cb42-caba-f011-bbd3-7c1e52365f30 @@ -90951,7 +97174,7 @@ 2 - c8588996-beba-f011-bbd3-7c1e52365f30 + bca57395-0d2f-f111-88b5-7c1e5287d1d8 false @@ -90961,9 +97184,9 @@ false true - msdyn_aidocumenttemplate_FileAttachments + uxagentprojectfile_FileAttachments ParentChild - 202510.4.21.1 + 9.1.2100003.0 OneToManyRelationship DoNotDisplay @@ -90995,17 +97218,17 @@ false false - msdyn_aidocumenttemplateid - msdyn_aidocumenttemplate - msdyn_aidocumenttemplate_FileAttachments + uxagentprojectfileid + uxagentprojectfile + uxagentprojectfile_FileAttachments objectid fileattachment - objectid_msdyn_aidocumenttemplate + objectid_uxagentprojectfile 2 - 395b8996-beba-f011-bbd3-7c1e52365f30 + c8588996-beba-f011-bbd3-7c1e52365f30 false @@ -91015,9 +97238,63 @@ false true - msdyn_aievent_FileAttachments + msdyn_aidocumenttemplate_FileAttachments ParentChild - 1.0 + 202510.4.21.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + msdyn_aidocumenttemplateid + msdyn_aidocumenttemplate + msdyn_aidocumenttemplate_FileAttachments + objectid + fileattachment + objectid_msdyn_aidocumenttemplate + + 2 + + + 395b8996-beba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + msdyn_aievent_FileAttachments + ParentChild + 1.0 OneToManyRelationship DoNotDisplay @@ -91058,6 +97335,60 @@ 2 + + cb8ab4a4-2f10-f111-8345-7c1e52216fd8 + + false + + true + iscustomizable + true + + false + true + mcpresourcecontent_FileAttachments + ParentChild + 9.1.287 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + mcpresourcecontentid + mcpresourcecontent + mcpresourcecontent_FileAttachments + objectid + fileattachment + objectid_mcpresourcecontent + + 2 + 7b50a8a5-6af5-4b29-8b55-1a4b235c1109 @@ -91814,6 +98145,60 @@ 2 + + 612943ea-b315-f111-8347-0022489f8311 + + false + + true + iscustomizable + true + + false + true + msdyn_powerappswrapbuild_FileAttachments + ParentChild + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + msdyn_powerappswrapbuildid + msdyn_powerappswrapbuild + msdyn_powerappswrapbuild_FileAttachments + objectid + fileattachment + objectid_msdyn_powerappswrapbuild + + 2 + 8a63ceec-cfba-f011-bbd3-7c1e52365f30 @@ -92138,12 +98523,66 @@ 2 + + c43595ff-f430-f111-88b4-7ced8d45db1a + + false + + true + iscustomizable + true + + false + true + skillresource_FileAttachments + ParentChild + 1.0.3372.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + skillresourceid + skillresource + skillresource_FileAttachments + objectid + fileattachment + objectid_skillresource + + 2 + 2026-01-25T00:30:03.2300032 55 - 7915f801-cbba-f011-bbd3-7c1e52365f30 + 227ed601-0e2f-f111-88b5-7c1e5287d1d8 true @@ -92153,9 +98592,9 @@ true false - FileAttachment_msdyn_kbattachment_msdyn_fileattachment + FileAttachment_agentconversationmessagefile_FileContent None - 1.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -92189,15 +98628,15 @@ false fileattachmentid fileattachment - FileAttachment_msdyn_kbattachment_msdyn_fileattachment - msdyn_fileattachment - msdyn_kbattachment - msdyn_fileattachment + FileAttachment_agentconversationmessagefile_FileContent + filecontent + agentconversationmessagefile + filecontent 0 - a3e2da02-f0ba-f011-bbd3-7c1e52365f30 + 7915f801-cbba-f011-bbd3-7c1e52365f30 true @@ -92207,9 +98646,9 @@ true false - FileAttachment_powerbidataset_Package + FileAttachment_msdyn_kbattachment_msdyn_fileattachment None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -92243,15 +98682,15 @@ false fileattachmentid fileattachment - FileAttachment_powerbidataset_Package - package - powerbidataset - package + FileAttachment_msdyn_kbattachment_msdyn_fileattachment + msdyn_fileattachment + msdyn_kbattachment + msdyn_fileattachment 0 - 3f881609-f0ba-f011-bbd3-7c1e52365f30 + a3e2da02-f0ba-f011-bbd3-7c1e52365f30 true @@ -92261,7 +98700,7 @@ true false - FileAttachment_powerbireport_Package + FileAttachment_powerbidataset_Package None 1.0.0.0 OneToManyRelationship @@ -92297,15 +98736,15 @@ false fileattachmentid fileattachment - FileAttachment_powerbireport_Package + FileAttachment_powerbidataset_Package package - powerbireport + powerbidataset package 0 - 740f5f0b-bbba-f011-bbd3-7c1e52365f30 + 3f881609-f0ba-f011-bbd3-7c1e52365f30 true @@ -92315,7 +98754,7 @@ true false - FileAttachment_workflowbinary_Data + FileAttachment_powerbireport_Package None 1.0.0.0 OneToManyRelationship @@ -92351,15 +98790,15 @@ false fileattachmentid fileattachment - FileAttachment_workflowbinary_Data - data - workflowbinary - data + FileAttachment_powerbireport_Package + package + powerbireport + package 0 - b20f5f0b-bbba-f011-bbd3-7c1e52365f30 + 740f5f0b-bbba-f011-bbd3-7c1e52365f30 true @@ -92369,9 +98808,9 @@ true false - FileAttachment_WorkflowLog_Inputs + FileAttachment_workflowbinary_Data None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -92405,15 +98844,15 @@ false fileattachmentid fileattachment - FileAttachment_workflowlog_Inputs - inputs - workflowlog - inputs + FileAttachment_workflowbinary_Data + data + workflowbinary + data 0 - b60f5f0b-bbba-f011-bbd3-7c1e52365f30 + b20f5f0b-bbba-f011-bbd3-7c1e52365f30 true @@ -92423,7 +98862,61 @@ true false - FileAttachment_WorkflowLog_Outputs + FileAttachment_WorkflowLog_Inputs + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + fileattachmentid + fileattachment + FileAttachment_workflowlog_Inputs + inputs + workflowlog + inputs + + 0 + + + b60f5f0b-bbba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + false + FileAttachment_WorkflowLog_Outputs None 1.0 OneToManyRelationship @@ -94141,7 +100634,7 @@ 0 - 7af4cb42-caba-f011-bbd3-7c1e52365f30 + becc602a-0d2f-f111-88b5-7c1e5287d1d8 true @@ -94151,7 +100644,7 @@ true false - FileAttachment_KnowledgeArticle_msdyn_contentstore + FileAttachment_uxagentcomponentrevision_RevisionCompiledCode None 1.0 OneToManyRelationship @@ -94187,15 +100680,15 @@ false fileattachmentid fileattachment - FileAttachment_KnowledgeArticle_msdyn_contentstore - msdyn_contentstore - knowledgearticle - msdyn_contentstore + FileAttachment_uxagentcomponentrevision_RevisionCompiledCode + revisioncompiledcode + uxagentcomponentrevision + revisioncompiledcode 0 - 9bf5cb42-caba-f011-bbd3-7c1e52365f30 + c3cc602a-0d2f-f111-88b5-7c1e5287d1d8 true @@ -94205,7 +100698,7 @@ true false - FileAttachment_msdyn_integratedsearchprovider_msdyn_htmlsample + FileAttachment_uxagentcomponentrevision_UserAttachment None 1.0 OneToManyRelationship @@ -94241,15 +100734,15 @@ false fileattachmentid fileattachment - FileAttachment_msdyn_integratedsearchprovider_msdyn_htmlsample - msdyn_htmlsample - msdyn_integratedsearchprovider - msdyn_htmlsample + FileAttachment_uxagentcomponentrevision_UserAttachment + userattachment + uxagentcomponentrevision + userattachment 0 - f55a4445-bcba-f011-bbd3-7c1e52365f30 + 7af4cb42-caba-f011-bbd3-7c1e52365f30 true @@ -94259,9 +100752,9 @@ true false - FileAttachment_approvalprocess_Inputs + FileAttachment_KnowledgeArticle_msdyn_contentstore None - 2.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -94295,15 +100788,15 @@ false fileattachmentid fileattachment - FileAttachment_approvalprocess_Inputs - inputs - approvalprocess - inputs + FileAttachment_KnowledgeArticle_msdyn_contentstore + msdyn_contentstore + knowledgearticle + msdyn_contentstore 0 - f95a4445-bcba-f011-bbd3-7c1e52365f30 + 9bf5cb42-caba-f011-bbd3-7c1e52365f30 true @@ -94313,9 +100806,9 @@ true false - FileAttachment_approvalprocess_Stages + FileAttachment_msdyn_integratedsearchprovider_msdyn_htmlsample None - 2.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -94349,15 +100842,15 @@ false fileattachmentid fileattachment - FileAttachment_approvalprocess_Stages - stages - approvalprocess - stages + FileAttachment_msdyn_integratedsearchprovider_msdyn_htmlsample + msdyn_htmlsample + msdyn_integratedsearchprovider + msdyn_htmlsample 0 - 975d4445-bcba-f011-bbd3-7c1e52365f30 + f55a4445-bcba-f011-bbd3-7c1e52365f30 true @@ -94367,9 +100860,9 @@ true false - FileAttachment_approvalstageintelligent_Inputs + FileAttachment_approvalprocess_Inputs None - 2.2.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -94403,15 +100896,15 @@ false fileattachmentid fileattachment - FileAttachment_approvalstageintelligent_Inputs + FileAttachment_approvalprocess_Inputs inputs - approvalstageintelligent + approvalprocess inputs 0 - 0cbd6f52-efba-f011-bbd3-7c1e52365f30 + f95a4445-bcba-f011-bbd3-7c1e52365f30 true @@ -94421,9 +100914,9 @@ true false - FileAttachment_msdyn_analysisjob_msdyn_AnalysisJobsReport + FileAttachment_approvalprocess_Stages None - 1.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -94457,15 +100950,15 @@ false fileattachmentid fileattachment - FileAttachment_msdyn_analysisjob_msdyn_AnalysisJobsReport - msdyn_analysisjobsreport - msdyn_analysisjob - msdyn_analysisjobsreport + FileAttachment_approvalprocess_Stages + stages + approvalprocess + stages 0 - 5d85965c-eeba-f011-bbd3-7c1e52365f30 + 975d4445-bcba-f011-bbd3-7c1e52365f30 true @@ -94475,9 +100968,9 @@ true false - FileAttachment_msdyn_pminferredtask_msdyn_lasterrorsreport + FileAttachment_approvalstageintelligent_Inputs None - 1.2.0.0 + 2.2.0.0 OneToManyRelationship DoNotDisplay @@ -94511,69 +101004,15 @@ false fileattachmentid fileattachment - FileAttachment_msdyn_pminferredtask_msdyn_lasterrorsreport - msdyn_lasterrorsreport - msdyn_pminferredtask - msdyn_lasterrorsreport - - 0 - - - b4afc767-acba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - false - FileAttachment_ImageDescriptor_FileId - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - fileattachmentid - fileattachment - FileAttachment_ImageDescriptor_FileId - fileid - imagedescriptor - FileId + FileAttachment_approvalstageintelligent_Inputs + inputs + approvalstageintelligent + inputs 0 - afde226c-b7ba-f011-bbd3-7c1e52365f30 + 0cbd6f52-efba-f011-bbd3-7c1e52365f30 true @@ -94583,7 +101022,7 @@ true false - FileAttachment_CanvasApp_BackgroundImage + FileAttachment_msdyn_analysisjob_msdyn_AnalysisJobsReport None 1.0.0.0 OneToManyRelationship @@ -94619,15 +101058,15 @@ false fileattachmentid fileattachment - FileAttachment_CanvasApp_BackgroundImage - background_image - canvasapp - backgroundimage + FileAttachment_msdyn_analysisjob_msdyn_AnalysisJobsReport + msdyn_analysisjobsreport + msdyn_analysisjob + msdyn_analysisjobsreport 0 - b3de226c-b7ba-f011-bbd3-7c1e52365f30 + 5d85965c-eeba-f011-bbd3-7c1e52365f30 true @@ -94637,9 +101076,9 @@ true false - FileAttachment_CanvasApp_SmallIcon + FileAttachment_msdyn_pminferredtask_msdyn_lasterrorsreport None - 1.0.0.0 + 1.2.0.0 OneToManyRelationship DoNotDisplay @@ -94673,27 +101112,27 @@ false fileattachmentid fileattachment - FileAttachment_CanvasApp_SmallIcon - small_icon - canvasapp - smallicon + FileAttachment_msdyn_pminferredtask_msdyn_lasterrorsreport + msdyn_lasterrorsreport + msdyn_pminferredtask + msdyn_lasterrorsreport 0 - b7de226c-b7ba-f011-bbd3-7c1e52365f30 + b4afc767-acba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true + false false - FileAttachment_CanvasApp_MediumIcon + FileAttachment_ImageDescriptor_FileId None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -94711,7 +101150,7 @@ 00000000-0000-0000-0000-000000000000 - RemoveLink + NoCascade NoCascade RemoveLink NoCascade @@ -94727,15 +101166,15 @@ false fileattachmentid fileattachment - FileAttachment_CanvasApp_MediumIcon - medium_icon - canvasapp - mediumicon + FileAttachment_ImageDescriptor_FileId + fileid + imagedescriptor + FileId 0 - bbde226c-b7ba-f011-bbd3-7c1e52365f30 + afde226c-b7ba-f011-bbd3-7c1e52365f30 true @@ -94745,7 +101184,7 @@ true false - FileAttachment_CanvasApp_LargeIcon + FileAttachment_CanvasApp_BackgroundImage None 1.0.0.0 OneToManyRelationship @@ -94781,15 +101220,15 @@ false fileattachmentid fileattachment - FileAttachment_CanvasApp_LargeIcon - large_icon + FileAttachment_CanvasApp_BackgroundImage + background_image canvasapp - largeicon + backgroundimage 0 - bfde226c-b7ba-f011-bbd3-7c1e52365f30 + b3de226c-b7ba-f011-bbd3-7c1e52365f30 true @@ -94799,7 +101238,7 @@ true false - FileAttachment_CanvasApp_WideIcon + FileAttachment_CanvasApp_SmallIcon None 1.0.0.0 OneToManyRelationship @@ -94835,15 +101274,15 @@ false fileattachmentid fileattachment - FileAttachment_CanvasApp_WideIcon - wide_icon + FileAttachment_CanvasApp_SmallIcon + small_icon canvasapp - wideicon + smallicon 0 - c3de226c-b7ba-f011-bbd3-7c1e52365f30 + b7de226c-b7ba-f011-bbd3-7c1e52365f30 true @@ -94853,7 +101292,7 @@ true false - FileAttachment_CanvasApp_TeamsIcon + FileAttachment_CanvasApp_MediumIcon None 1.0.0.0 OneToManyRelationship @@ -94889,15 +101328,15 @@ false fileattachmentid fileattachment - FileAttachment_CanvasApp_TeamsIcon - teams_icon + FileAttachment_CanvasApp_MediumIcon + medium_icon canvasapp - teamsicon + mediumicon 0 - c7de226c-b7ba-f011-bbd3-7c1e52365f30 + bbde226c-b7ba-f011-bbd3-7c1e52365f30 true @@ -94907,7 +101346,7 @@ true false - FileAttachment_CanvasApp_Document + FileAttachment_CanvasApp_LargeIcon None 1.0.0.0 OneToManyRelationship @@ -94943,15 +101382,15 @@ false fileattachmentid fileattachment - FileAttachment_CanvasApp_Document - document + FileAttachment_CanvasApp_LargeIcon + large_icon canvasapp - document + largeicon 0 - cbde226c-b7ba-f011-bbd3-7c1e52365f30 + bfde226c-b7ba-f011-bbd3-7c1e52365f30 true @@ -94961,7 +101400,7 @@ true false - FileAttachment_CanvasApp_Assets + FileAttachment_CanvasApp_WideIcon None 1.0.0.0 OneToManyRelationship @@ -94997,27 +101436,27 @@ false fileattachmentid fileattachment - FileAttachment_CanvasApp_Assets - assets + FileAttachment_CanvasApp_WideIcon + wide_icon canvasapp - assets + wideicon 0 - aa11836c-daba-f011-bbd3-7c1e52365f30 + c3de226c-b7ba-f011-bbd3-7c1e52365f30 - false + true - true + false iscustomizable - true + false - false - true - fileattachment_DeletedItemReferences + true + false + FileAttachment_CanvasApp_TeamsIcon None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -95035,9 +101474,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + RemoveLink NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -95051,15 +101490,15 @@ false fileattachmentid fileattachment - fileattachment_DeletedItemReferences - deletedobject - deleteditemreference - deletedobject_fileattachment + FileAttachment_CanvasApp_TeamsIcon + teams_icon + canvasapp + teamsicon 0 - f241e170-f2ba-f011-bbd3-7c1e52365f30 + c7de226c-b7ba-f011-bbd3-7c1e52365f30 true @@ -95069,9 +101508,9 @@ true false - FileAttachment_powerpagesitepublished_publishedmetadata + FileAttachment_CanvasApp_Document None - 1.0.2207.1 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -95105,15 +101544,15 @@ false fileattachmentid fileattachment - FileAttachment_powerpagesitepublished_publishedmetadata - publishedmetadata - powerpagesitepublished - publishedmetadata + FileAttachment_CanvasApp_Document + document + canvasapp + document 0 - f841e170-f2ba-f011-bbd3-7c1e52365f30 + cbde226c-b7ba-f011-bbd3-7c1e52365f30 true @@ -95123,9 +101562,9 @@ true false - FileAttachment_powerpagesitepublished_publishedsource + FileAttachment_CanvasApp_Assets None - 1.0.2207.1 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -95159,27 +101598,27 @@ false fileattachmentid fileattachment - FileAttachment_powerpagesitepublished_publishedsource - publishedsource - powerpagesitepublished - publishedsource + FileAttachment_CanvasApp_Assets + assets + canvasapp + assets 0 - a0246577-bfba-f011-bbd3-7c1e52365f30 + aa11836c-daba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true - false - FileAttachment_msdyn_AIBFile_msdyn_File + false + true + fileattachment_DeletedItemReferences None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -95197,9 +101636,9 @@ 00000000-0000-0000-0000-000000000000 - RemoveLink + NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -95213,15 +101652,15 @@ false fileattachmentid fileattachment - FileAttachment_msdyn_AIBFile_msdyn_File - msdyn_file - msdyn_aibfile - msdyn_file + fileattachment_DeletedItemReferences + deletedobject + deleteditemreference + deletedobject_fileattachment 0 - 3fedf877-b6ba-f011-bbd3-7c1e52365f30 + f241e170-f2ba-f011-bbd3-7c1e52365f30 true @@ -95231,9 +101670,9 @@ true false - FileAttachment_AsyncOperation_DataBlobId + FileAttachment_powerpagesitepublished_publishedmetadata None - 9.1.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -95267,15 +101706,15 @@ false fileattachmentid fileattachment - FileAttachment_AsyncOperation_DataBlobId - datablobid - asyncoperation - datablobid + FileAttachment_powerpagesitepublished_publishedmetadata + publishedmetadata + powerpagesitepublished + publishedmetadata 0 - 367c3379-f5ba-f011-bbd3-7c1e52365f30 + f841e170-f2ba-f011-bbd3-7c1e52365f30 true @@ -95285,9 +101724,9 @@ true false - FileAttachment_mspcat_CatalogSubmissionFiles_mspcat_File + FileAttachment_powerpagesitepublished_publishedsource None - 1.0.0.3 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -95321,15 +101760,15 @@ false fileattachmentid fileattachment - FileAttachment_mspcat_CatalogSubmissionFiles_mspcat_File - mspcat_file - mspcat_catalogsubmissionfiles - mspcat_file + FileAttachment_powerpagesitepublished_publishedsource + publishedsource + powerpagesitepublished + publishedsource 0 - 337d3379-f5ba-f011-bbd3-7c1e52365f30 + a0246577-bfba-f011-bbd3-7c1e52365f30 true @@ -95339,7 +101778,7 @@ true false - FileAttachment_mspcat_PackageStore_mspcat_PackageFile + FileAttachment_msdyn_AIBFile_msdyn_File None 1.0.0.0 OneToManyRelationship @@ -95375,15 +101814,15 @@ false fileattachmentid fileattachment - FileAttachment_mspcat_PackageStore_mspcat_PackageFile - mspcat_packagefile - mspcat_packagestore - mspcat_packagefile + FileAttachment_msdyn_AIBFile_msdyn_File + msdyn_file + msdyn_aibfile + msdyn_file 0 - bd3d437f-c8ba-f011-bbd3-7c1e52365f30 + 3fedf877-b6ba-f011-bbd3-7c1e52365f30 true @@ -95393,9 +101832,9 @@ true false - FileAttachment_activityfileattachment_FileContent + FileAttachment_AsyncOperation_DataBlobId None - 1.0.0.1 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -95429,15 +101868,15 @@ false fileattachmentid fileattachment - FileAttachment_activityfileattachment_FileContent - filecontent - activityfileattachment - filecontent + FileAttachment_AsyncOperation_DataBlobId + datablobid + asyncoperation + datablobid 0 - 45679183-e7ba-f011-bbd3-7c1e52365f30 + 367c3379-f5ba-f011-bbd3-7c1e52365f30 true @@ -95447,9 +101886,9 @@ true false - FileAttachment_msdyn_DataWorkspace_msdyn_Content + FileAttachment_mspcat_CatalogSubmissionFiles_mspcat_File None - 1.0.0.0 + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -95483,15 +101922,15 @@ false fileattachmentid fileattachment - FileAttachment_msdyn_DataWorkspace_msdyn_Content - msdyn_content - msdyn_dataworkspace - msdyn_content + FileAttachment_mspcat_CatalogSubmissionFiles_mspcat_File + mspcat_file + mspcat_catalogsubmissionfiles + mspcat_file 0 - e9831085-d7ba-f011-bbd3-7c1e52365f30 + 337d3379-f5ba-f011-bbd3-7c1e52365f30 true @@ -95501,18 +101940,18 @@ true false - FileAttachment_RibbonClientMetadata_RibbonJsonFileRef + FileAttachment_mspcat_PackageStore_mspcat_PackageFile None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -95537,15 +101976,15 @@ false fileattachmentid fileattachment - FileAttachment_RibbonClientMetadata_RibbonJsonFileRef - ribbonjsonfileref - ribbonclientmetadata - RibbonJsonFileRef + FileAttachment_mspcat_PackageStore_mspcat_PackageFile + mspcat_packagefile + mspcat_packagestore + mspcat_packagefile 0 - 6bd20c86-bdba-f011-bbd3-7c1e52365f30 + bd3d437f-c8ba-f011-bbd3-7c1e52365f30 true @@ -95555,9 +101994,9 @@ true false - FileAttachment_unstructuredfilesearchrecord_Filedata + FileAttachment_activityfileattachment_FileContent None - 1.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -95591,27 +102030,27 @@ false fileattachmentid fileattachment - FileAttachment_unstructuredfilesearchrecord_Filedata - filedata - unstructuredfilesearchrecord - filedata + FileAttachment_activityfileattachment_FileContent + filecontent + activityfileattachment + filecontent 0 - a34d4489-1d2c-428e-87fc-07669917902d + 45679183-e7ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true - true - FileAttachment_SyncErrors - Append - 9.1.0.0 + false + FileAttachment_msdyn_DataWorkspace_msdyn_Content + None + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -95629,13 +102068,13 @@ 00000000-0000-0000-0000-000000000000 - NoCascade - Cascade - Cascade - Cascade - Cascade - Cascade - Cascade + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade NoCascade @@ -95645,15 +102084,15 @@ false fileattachmentid fileattachment - FileAttachment_SyncErrors - regardingobjectid - syncerror - regardingobjectid_fileattachment_syncerror + FileAttachment_msdyn_DataWorkspace_msdyn_Content + msdyn_content + msdyn_dataworkspace + msdyn_content - 1 + 0 - 33978f89-e7ba-f011-bbd3-7c1e52365f30 + e9831085-d7ba-f011-bbd3-7c1e52365f30 true @@ -95663,18 +102102,180 @@ true false - FileAttachment_msdyn_Plan_msdyn_Content + FileAttachment_RibbonClientMetadata_RibbonJsonFileRef None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + fileattachmentid + fileattachment + FileAttachment_RibbonClientMetadata_RibbonJsonFileRef + ribbonjsonfileref + ribbonclientmetadata + RibbonJsonFileRef + + 0 + + + 6bd20c86-bdba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + false + FileAttachment_unstructuredfilesearchrecord_Filedata + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + fileattachmentid + fileattachment + FileAttachment_unstructuredfilesearchrecord_Filedata + filedata + unstructuredfilesearchrecord + filedata + + 0 + + + a34d4489-1d2c-428e-87fc-07669917902d + + false + + false + iscustomizable + true + + true + true + FileAttachment_SyncErrors + Append + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Cascade + Cascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + fileattachmentid + fileattachment + FileAttachment_SyncErrors + regardingobjectid + syncerror + regardingobjectid_fileattachment_syncerror + + 1 + + + 33978f89-e7ba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + false + FileAttachment_msdyn_Plan_msdyn_Content + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + true false @@ -96300,6 +102901,60 @@ 0 + + c0a57395-0d2f-f111-88b5-7c1e5287d1d8 + + true + + false + iscustomizable + false + + true + false + FileAttachment_uxagentprojectfile_FileContent + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + fileattachmentid + fileattachment + FileAttachment_uxagentprojectfile_FileContent + filecontent + uxagentprojectfile + filecontent + + 0 + cc588996-beba-f011-bbd3-7c1e52365f30 @@ -96462,6 +103117,60 @@ 0 + + cf8ab4a4-2f10-f111-8345-7c1e52216fd8 + + true + + false + iscustomizable + false + + true + false + FileAttachment_MCPResourceContent_Blob + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + fileattachmentid + fileattachment + FileAttachment_MCPResourceContent_Blob + blob + mcpresourcecontent + blob + + 0 + 9e0218a6-ac07-4373-a88c-628684140524 @@ -96700,7 +103409,7 @@ - + 10000 true false @@ -96728,7 +103437,7 @@ FileAttachment_DeletedItemReference_DeletedLogicalNames deletedlogicalnames deleteditemreference - deletedlogicalnames + DeletedLogicalNames 0 @@ -96948,6 +103657,60 @@ 0 + + aaa1b4d9-ef39-f111-88b4-7ced8d4af548 + + true + + false + iscustomizable + false + + true + false + FileAttachment_MCPResourceContent_TextBlob + None + 1.0.0.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + fileattachmentid + fileattachment + FileAttachment_MCPResourceContent_TextBlob + textblob + mcpresourcecontent + textblob + + 0 + 58ce36e2-b2ba-f011-bbd3-7c1e52365f30 @@ -97326,6 +104089,60 @@ 0 + + 652943ea-b315-f111-8347-0022489f8311 + + true + + false + iscustomizable + false + + true + false + FileAttachment_msdyn_powerappswrapbuild_msdyn_artifact + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + fileattachmentid + fileattachment + FileAttachment_msdyn_powerappswrapbuild_msdyn_artifact + msdyn_artifact + msdyn_powerappswrapbuild + msdyn_artifact + + 0 + 8e63ceec-cfba-f011-bbd3-7c1e52365f30 @@ -97704,6 +104521,60 @@ 0 + + c83595ff-f430-f111-88b4-7ced8d45db1a + + true + + false + iscustomizable + false + + true + false + FileAttachment_SkillResource_FileContent + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + fileattachmentid + fileattachment + FileAttachment_skillresource_FileContent + filecontent + skillresource + filecontent + + 0 + 8 @@ -97754,65 +104625,65 @@ - organization + managedidentity - e1bd1119-6e9d-45a4-bc15-12051e65a0bd + 15fdf69f-dfcb-4c1f-8f6d-23e5c2358464 0 - - 830b8f09-9d95-4f3f-b3d9-e4bebd7e547b + + 74bab346-44c1-4482-87b1-7a67c5b868a3 - String + Uniqueidentifier false false false false canmodifyadditionalsettings - false + true - 401 - 1900-01-01T00:00:00 + 44 + 2025-11-06T01:10:49.1299968 - 0def96b5-1045-4fa8-98d6-f391d8bef13a + b6e645a8-9974-48c3-a1d5-1c67157e6a3c true - ACI Web Endpoint URL. + Application Id 1033 - 0def96b5-1045-4fa8-98d6-f391d8bef13a + b6e645a8-9974-48c3-a1d5-1c67157e6a3c true - ACI Web Endpoint URL. + Application Id 1033 - 1397b6f9-ef07-4250-a630-8d8351022cae + f4806d84-d01e-46ef-9119-d954e6cbdcc5 true - ACI Tenant URL. + ApplicationId 1033 - 1397b6f9-ef07-4250-a630-8d8351022cae + f4806d84-d01e-46ef-9119-d954e6cbdcc5 true - ACI Tenant URL. + ApplicationId 1033 - organization + managedidentity @@ -97824,7 +104695,7 @@ false iscustomizable - true + false false false @@ -97841,7 +104712,7 @@ isrenameable false - false + true false false false @@ -97851,50 +104722,39 @@ false - false + true canmodifysearchsettings - false + true true - false - false + true + true true true true - aciwebendpointurl - 1900-01-01T00:00:00 + applicationid + 2025-11-06T01:10:49.1299968 - false + true canmodifyrequirementlevelsettings - None + ApplicationRequired - ACIWebEndpointUrl + ApplicationId - StringType + UniqueidentifierType - 8.2.0.0 + 9.0.0.0 false - 0 + - Text - Auto - 500 - - - Text - - - false - 0 - 1000 - - 0eb08e1d-f445-46dd-87cc-53bb59a728ee + + 7b4b3629-9c84-4292-b598-07c697ec91a1 - Lookup + String false false false @@ -97903,46 +104763,46 @@ canmodifyadditionalsettings false - 65 - 1900-01-01T00:00:00 + 45 + 2025-11-06T01:10:49.2099968 - be64cfee-2241-db11-898a-0007e9e17ebd + fcd95ceb-dadb-4b79-b6e2-670fb408e214 true - Unique identifier of the template to be used for acknowledgement when a user unsubscribes. + Contains a secret for the Azure Active Directory application. Once set, it cannot be read except by Dataverse. 1033 - be64cfee-2241-db11-898a-0007e9e17ebd + fcd95ceb-dadb-4b79-b6e2-670fb408e214 true - Unique identifier of the template to be used for acknowledgement when a user unsubscribes. + Contains a secret for the Azure Active Directory application. Once set, it cannot be read except by Dataverse. 1033 - d77487b2-5928-442c-a6e8-bde8a6752306 + a40bad79-b7bf-4a2b-86ad-1647e369a058 true - Acknowledgement Template + Client Secret 1033 - d77487b2-5928-442c-a6e8-bde8a6752306 + a40bad79-b7bf-4a2b-86ad-1647e369a058 true - Acknowledgement Template + Client Secret 1033 - organization + managedidentity @@ -97954,12 +104814,12 @@ false iscustomizable - true + false false false - true + false canmodifyglobalfiltersettings false @@ -97976,82 +104836,103 @@ false false - true + false canmodifyissortablesettings false false canmodifysearchsettings - false + true true - false - false - true - true + true + true + false + false true - acknowledgementtemplateid - 1900-01-01T00:00:00 + clientsecret + 2025-11-06T01:10:49.2099968 false canmodifyrequirementlevelsettings None - AcknowledgementTemplateId + ClientSecret - LookupType + StringType - 5.0.0.0 + 9.0.0.0 false - + 0 - None - - template - + Text + Auto + 100 + + + Text + + + false + 0 + 200 - - 2114aaa8-02ae-4a46-baf8-eb9030fcc187 + + 49e08ce0-43b5-4af0-9ed2-4c7b90919991 - acknowledgementtemplateid - String + + Uniqueidentifier false false false - false + true canmodifyadditionalsettings - false + true - 94 - 1900-01-01T00:00:00 + 40 + 2025-11-06T01:10:48.2099968 - 13c56b2b-2341-db11-898a-0007e9e17ebd + 5b4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Name of the template to be used for unsubscription acknowledgement. + false + For internal use only. 1033 - 13c56b2b-2341-db11-898a-0007e9e17ebd + 5b4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Name of the template to be used for unsubscription acknowledgement. + false + For internal use only. 1033 - - + + + 5c4b9c67-adba-f011-bbd3-7c1e52365f30 + + false + Row id unique + 1033 + + + + 5c4b9c67-adba-f011-bbd3-7c1e52365f30 + + false + Row id unique + 1033 + - organization + managedidentity @@ -98061,7 +104942,7 @@ false - false + true iscustomizable false @@ -98072,11 +104953,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable false @@ -98090,7 +104971,7 @@ false - false + true canmodifysearchsettings false @@ -98099,99 +104980,88 @@ false true false - false + true - acknowledgementtemplateidname - 1900-01-01T00:00:00 + componentidunique + 2025-11-06T01:10:48.2099968 - false + true canmodifyrequirementlevelsettings - None + SystemRequired - AcknowledgementTemplateIdName + ComponentIdUnique - StringType + UniqueidentifierType - 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 320 + 9.0.0.0 + false + + - - cf4fa9cc-6f97-424c-afcf-0db9c99aadf9 + + 3372b967-37e6-438a-98ad-f318929141ea - Boolean + Picklist false false false - false + true canmodifyadditionalsettings - false + true - 10148 - 2025-11-06T04:24:47.8899968 + 38 + 2025-11-06T01:10:48.1929984 - f210a82a-5fd7-4920-ab59-676cd32a2ede + 594b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information on whether filtering activity based on entity in app. + false + For internal use only. 1033 - f210a82a-5fd7-4920-ab59-676cd32a2ede + 594b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information on whether filtering activity based on entity in app. + false + For internal use only. 1033 - 6743ad77-87fd-4425-903c-e2922469b11d + 5a4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Enable Rich Editing Experience for Appointment + false + Component State 1033 - 6743ad77-87fd-4425-903c-e2922469b11d + 5a4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Enable Rich Editing Experience for Appointment + false + Component State 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false - false + true iscustomizable false @@ -98202,11 +105072,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable false @@ -98220,170 +105090,284 @@ false - false + true canmodifysearchsettings false - true + false false false true - true + false true - activitytypefilter - 2025-11-06T04:24:47.8899968 + componentstate + 2025-11-06T01:10:48.1929984 - false + true canmodifyrequirementlevelsettings SystemRequired - ActivityTypeFilter + ComponentState - BooleanType + PicklistType 9.0.0.0 false 0 - false + - 500a3e85-c8ba-f011-bbd3-7c1e52365f30 + faece09f-cefc-11de-8150-00155da18b00 - 520a3e85-c8ba-f011-bbd3-7c1e52365f30 + faece0a1-cefc-11de-8150-00155da18b00 true - Is filterting based on activity included in app is enabled + The state of this component. 1033 + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + - 520a3e85-c8ba-f011-bbd3-7c1e52365f30 + faece0a1-cefc-11de-8150-00155da18b00 true - Is filterting based on activity included in app is enabled + The state of this component. 1033 - 510a3e85-c8ba-f011-bbd3-7c1e52365f30 + faece0a0-cefc-11de-8150-00155da18b00 true - Is filterting based on activity included in app is enabled + Component State 1033 + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + - 510a3e85-c8ba-f011-bbd3-7c1e52365f30 + faece0a0-cefc-11de-8150-00155da18b00 true - Is filterting based on activity included in app is enabled + Component State 1033 - true + false false iscustomizable false - false + true true - organization_activitytypefilter - Boolean - 9.0.0.0 - - - - - - - - - - false - true - - - - 52d0259e-938b-48bb-847b-5a15ba4c77e6 + componentstate + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + faece0a3-cefc-11de-8150-00155da18b00 + + true + Published + 1033 + + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + + + + faece0a3-cefc-11de-8150-00155da18b00 - true - No - 1033 - - - - 52d0259e-938b-48bb-847b-5a15ba4c77e6 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 3cad83d4-b81f-4b60-b934-f9d7937be2aa + true + Published + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + faece0a5-cefc-11de-8150-00155da18b00 + + true + Unpublished + 1033 + + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + + + + faece0a5-cefc-11de-8150-00155da18b00 - true - Yes - 1033 - - - - 3cad83d4-b81f-4b60-b934-f9d7937be2aa - - true - Yes - 1033 - - - - 1 - - + true + Unpublished + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + faece0a7-cefc-11de-8150-00155da18b00 + + true + Deleted + 1033 + + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + + + + faece0a7-cefc-11de-8150-00155da18b00 + + true + Deleted + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 1f83e0bb-cefd-11de-8150-00155da18b00 + + true + Deleted Unpublished + 1033 + + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + + + + 1f83e0bb-cefd-11de-8150-00155da18b00 + + true + Deleted Unpublished + 1033 + + + + 3 + + + + + 0 + + - 45042b38-e677-4f81-a7c0-9aa2b4acc18e + da544a3f-e19f-48b7-97a0-ce634ab69d5a - activitytypefilter + componentstate Virtual false false false - false + true canmodifyadditionalsettings true - 10149 - 2025-11-06T04:24:47.9069952 + 39 + 2025-11-06T01:10:48.1929984 @@ -98393,7 +105377,7 @@ - organization + managedidentity @@ -98403,7 +105387,7 @@ false - false + true iscustomizable true @@ -98414,11 +105398,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable true @@ -98443,14 +105427,14 @@ false false - activitytypefiltername - 2025-11-06T04:24:47.9069952 + componentstatename + 2025-11-06T01:10:48.1929984 true canmodifyrequirementlevelsettings None - activitytypefilterName + componentstateName VirtualType @@ -98460,71 +105444,71 @@ - - 49737e31-5965-4afc-b56b-973825aca6ed + + 81d93a69-01bb-4515-87aa-ebeed1571b76 - Boolean + Lookup false false false - false + true canmodifyadditionalsettings - false + true - 10152 - 2025-11-06T04:24:47.9369984 + 3 + 2025-11-06T01:10:47.8329984 - b4041b5a-7ffe-4ea8-8a2c-c53ee4936e61 + f04a9c67-adba-f011-bbd3-7c1e52365f30 - true - Whether to show only activities configured in this app or all activities in the 'New activity' button. + false + Unique identifier of the user who created the record. 1033 - b4041b5a-7ffe-4ea8-8a2c-c53ee4936e61 + f04a9c67-adba-f011-bbd3-7c1e52365f30 - true - Whether to show only activities configured in this app or all activities in the 'New activity' button. + false + Unique identifier of the user who created the record. 1033 - 93523f84-65cc-410d-a1ce-97afae131add + f14a9c67-adba-f011-bbd3-7c1e52365f30 - true - Show only activities configured in the app when accessing 'New activity' button + false + Created By 1033 - 93523f84-65cc-410d-a1ce-97afae131add + f14a9c67-adba-f011-bbd3-7c1e52365f30 - true - Show only activities configured in the app when accessing 'New activity' button + false + Created By 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -98533,13 +105517,108 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + false + true + true + true + false + true + + createdby + 2025-11-06T01:10:47.8329984 + + true + canmodifyrequirementlevelsettings + None + + CreatedBy + + + LookupType + + 9.0.0.0 + false + + + None + + systemuser + + + + bf0545b1-b002-41ef-bdb4-67a0f52fb8d9 + + createdby + String + false + false + false + + true + canmodifyadditionalsettings + true + + 8 + 2025-11-06T01:10:47.8969984 + + + + + + + + + + managedidentity + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings false + + false + false + false + + true + isrenameable + true false false @@ -98551,170 +105630,60 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - activitytypefilterv2 - 2025-11-06T04:24:47.9369984 + createdbyname + 2025-11-06T01:10:47.8969984 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - ActivityTypeFilterV2 + CreatedByName - BooleanType + StringType - 9.2.0.0 - false + 9.0.0.0 + true 0 - true - - 590a3e85-c8ba-f011-bbd3-7c1e52365f30 - - - - - 5b0a3e85-c8ba-f011-bbd3-7c1e52365f30 - - true - Whether to show only app activities or all activities when accessing 'New activity' button - 1033 - - - - 5b0a3e85-c8ba-f011-bbd3-7c1e52365f30 - - true - Whether to show only app activities or all activities when accessing 'New activity' button - 1033 - - - - - - 5a0a3e85-c8ba-f011-bbd3-7c1e52365f30 - - true - Show only app activities - 1033 - - - - 5a0a3e85-c8ba-f011-bbd3-7c1e52365f30 - - true - Show only app activities - 1033 - - - - true - - false - iscustomizable - false - - false - true - organization_activitytypefilterv2 - Boolean - 9.2.0.0 - - - - - - - - - - false - true - - - - 8be2c473-58bf-4609-941d-8df382b1cdd2 - - true - No - 1033 - - - - 8be2c473-58bf-4609-941d-8df382b1cdd2 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 869cd755-9d5c-46e7-9ad5-4147e97c41ad - - true - Yes - 1033 - - - - 869cd755-9d5c-46e7-9ad5-4147e97c41ad - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 100 + + + Text + + false 0 + 200 - - d2b8dd45-3ed0-40cf-a023-1e1acb34fac1 + + 1c6c4613-bff0-4892-a140-46c675c3b14b - activitytypefilterv2 - Virtual + createdby + String false false false - false + true canmodifyadditionalsettings true - 10153 - 2025-11-06T04:24:47.9529984 + 9 + 2025-11-06T01:10:47.8969984 @@ -98724,7 +105693,7 @@ - organization + managedidentity @@ -98734,7 +105703,7 @@ false - false + true iscustomizable true @@ -98745,11 +105714,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable true @@ -98774,80 +105743,91 @@ false false - activitytypefilterv2name - 2025-11-06T04:24:47.9529984 + createdbyyominame + 2025-11-06T01:10:47.8969984 true canmodifyrequirementlevelsettings - None + SystemRequired - activitytypefilterv2Name + CreatedByYomiName - VirtualType + StringType - 9.2.0.0 + 9.0.0.0 true - + 0 + Text + Auto + 100 + createdbyname + + Text + + + false + 0 + 200 - - 924f63e5-4155-4991-bea2-c03ffb0f0c5b + + e4ff5e54-0586-4c64-bddc-350f575384ac - Boolean + DateTime false false false false canmodifyadditionalsettings - false + true - 10204 - 2025-11-06T06:14:32.7069952 + 2 + 2025-11-06T01:10:47.8169984 - 46dab501-f8ff-4a7f-9ad5-2eef57cda614 + ee4a9c67-adba-f011-bbd3-7c1e52365f30 true - Flag to indicate if the display column options on a view in model-driven apps is enabled + Date and time when the record was created. 1033 - 46dab501-f8ff-4a7f-9ad5-2eef57cda614 + ee4a9c67-adba-f011-bbd3-7c1e52365f30 true - Flag to indicate if the display column options on a view in model-driven apps is enabled + Date and time when the record was created. 1033 - cb236bae-4df9-45ef-9534-58ce5d636d28 + ef4a9c67-adba-f011-bbd3-7c1e52365f30 true - Advanced column editor enabled + Created On 1033 - cb236bae-4df9-45ef-9534-58ce5d636d28 + ef4a9c67-adba-f011-bbd3-7c1e52365f30 true - Advanced column editor enabled + Created On 1033 - organization + managedidentity - true + false canmodifyauditsettings false @@ -98855,10 +105835,10 @@ false iscustomizable - false + true false - false + true true canmodifyglobalfiltersettings @@ -98870,10 +105850,10 @@ false isrenameable - false + true false - false + true false false @@ -98882,146 +105862,51 @@ false - false + true canmodifysearchsettings true - true + false true true true - true + false true - advancedcolumneditorenabled - 2025-11-06T06:14:32.7069952 + createdon + 2025-11-06T01:10:47.8169984 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AdvancedColumnEditorEnabled + CreatedOn - BooleanType + DateTimeType - 9.1.0.0 + 9.0.0.0 false 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + DateAndTime + Inactive 0 + + false + canmodifybehavior + false + + + UserLocal + - - 3d1bfbad-1c67-4738-b301-35f5206ae733 + + 8bc82b5d-7631-499a-88b3-9b4c31a3b349 - advancedcolumneditorenabled - Virtual + + Lookup false false false @@ -99030,22 +105915,50 @@ canmodifyadditionalsettings true - 10205 - 2025-11-06T06:14:32.7229952 + 6 + 2025-11-06T01:10:47.8630016 - - + + + f64a9c67-adba-f011-bbd3-7c1e52365f30 + + false + Unique identifier of the delegate user who created the record. + 1033 + + + + f64a9c67-adba-f011-bbd3-7c1e52365f30 + + false + Unique identifier of the delegate user who created the record. + 1033 + - - + + + f74a9c67-adba-f011-bbd3-7c1e52365f30 + + false + Created By (Delegate) + 1033 + + + + f74a9c67-adba-f011-bbd3-7c1e52365f30 + + false + Created By (Delegate) + 1033 + - organization + managedidentity - true + false canmodifyauditsettings false @@ -99082,85 +105995,61 @@ true canmodifysearchsettings - false + true false - false - false + true + true true false - false + true - advancedcolumneditorenabledname - 2025-11-06T06:14:32.7229952 + createdonbehalfby + 2025-11-06T01:10:47.8630016 true canmodifyrequirementlevelsettings None - advancedcolumneditorenabledName + CreatedOnBehalfBy - VirtualType + LookupType - 9.1.0.0 - true + 9.0.0.0 + false + None + + systemuser + - - b54ec60b-a084-4478-9014-64b637fbdb8c + + 27456071-fa30-48c5-9b1d-c6e9e3a57f7c - - Boolean + createdonbehalfby + String false false false - false + true canmodifyadditionalsettings - false + true - 10202 - 2025-11-06T06:14:32.6930048 + 10 + 2025-11-06T01:10:47.8969984 - - - e4333c9b-cb7c-4671-ab95-5c884c1f7218 - - true - Flag to indicate if the advanced column filtering in a view in model-driven apps is enabled - 1033 - - - - e4333c9b-cb7c-4671-ab95-5c884c1f7218 - - true - Flag to indicate if the advanced column filtering in a view in model-driven apps is enabled - 1033 - + + - - - 126ee581-779f-4f12-9b45-bf08d3a5a99d - - true - Advanced column filtering enabled - 1033 - - - - 126ee581-779f-4f12-9b45-bf08d3a5a99d - - true - Advanced column filtering enabled - 1033 - + + - organization + managedidentity @@ -99170,9 +106059,9 @@ false - false + true iscustomizable - false + true false false @@ -99181,13 +106070,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -99199,146 +106088,50 @@ false - false + true canmodifysearchsettings - true + false - true - true - true + false + false + false true - true - true + false + false - advancedcolumnfilteringenabled - 2025-11-06T06:14:32.6930048 + createdonbehalfbyname + 2025-11-06T01:10:47.8969984 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AdvancedColumnFilteringEnabled + CreatedOnBehalfByName - BooleanType + StringType - 9.1.0.0 - false + 9.0.0.0 + true 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 100 + + + Text + + false 0 + 200 - - 0d8622d1-0f91-4e6b-91e1-7370a9111655 + + 6d5e2de8-d820-4587-9691-1e0823974c6e - advancedcolumnfilteringenabled - Virtual + createdonbehalfby + String false false false @@ -99347,8 +106140,8 @@ canmodifyadditionalsettings true - 10203 - 2025-11-06T06:14:32.6930048 + 11 + 2025-11-06T01:10:47.9129984 @@ -99358,7 +106151,7 @@ - organization + managedidentity @@ -99408,82 +106201,93 @@ false false - advancedcolumnfilteringenabledname - 2025-11-06T06:14:32.6930048 + createdonbehalfbyyominame + 2025-11-06T01:10:47.9129984 true canmodifyrequirementlevelsettings - None + SystemRequired - advancedcolumnfilteringenabledName + CreatedOnBehalfByYomiName - VirtualType + StringType - 9.1.0.0 + 9.0.0.0 true - + 0 + Text + Auto + 100 + createdonbehalfbyname + + Text + + + false + 0 + 200 - - cd002fc6-758f-4bbf-86fa-1cbdd52d8154 + + 6025d19d-2523-4f77-b09b-29de80c60c5b - Boolean + Picklist false false false false canmodifyadditionalsettings - false + true - 10198 - 2025-11-06T06:14:32.6470016 + 47 + 2025-11-06T01:10:49.24 - bc0b6f1e-39dc-4e5e-925e-6afb11968e9f + d12cb931-2014-40e4-8ac4-a5f2c4f525e4 true - Flag to indicate if the advanced filtering on all tables in a model-driven app is enabled + Where the Managed Identity will get the credentials to use. 1033 - bc0b6f1e-39dc-4e5e-925e-6afb11968e9f + d12cb931-2014-40e4-8ac4-a5f2c4f525e4 true - Flag to indicate if the advanced filtering on all tables in a model-driven app is enabled + Where the Managed Identity will get the credentials to use. 1033 - f4115586-1fd4-47dd-98ff-356632bd53b8 + f29d23e9-4ef8-471e-9129-812fa9f3e477 true - Advanced filtering enabled + Credential Source 1033 - f4115586-1fd4-47dd-98ff-356632bd53b8 + f29d23e9-4ef8-471e-9129-812fa9f3e477 true - Advanced filtering enabled + Credential Source 1033 - organization + managedidentity true canmodifyauditsettings - false + true false @@ -99516,7 +106320,7 @@ false - false + true canmodifysearchsettings true @@ -99527,47 +106331,61 @@ true true - advancedfilteringenabled - 2025-11-06T06:14:32.6470016 + credentialsource + 2025-11-06T01:10:49.24 - false + true canmodifyrequirementlevelsettings SystemRequired - AdvancedFilteringEnabled + CredentialSource - BooleanType + PicklistType - 9.1.0.0 + 9.0.0.0 false 0 - - false + + 0 - 315e90f0-678b-4e4d-97f1-886050c3cb46 + a84b9c67-adba-f011-bbd3-7c1e52365f30 - 05aedb96-402f-4dff-86e7-54b577874b2f + aa4b9c67-adba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + Select a source to indicate where the credential should be fetched from - Client Secret or KeyVault or Is managed 1033 - 05aedb96-402f-4dff-86e7-54b577874b2f + aa4b9c67-adba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + Select a source to indicate where the credential should be fetched from - Client Secret or KeyVault or Is managed 1033 - - + + + a94b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Credential Source + 1033 + + + + a94b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Credential Source + 1033 + false @@ -99576,85 +106394,157 @@ iscustomizable false - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + credentialsource + Picklist + 9.0.0.0 + + + + + + + + + + + false + true + + + + ee84306f-4f14-4149-90bd-10eb1835210a + + true + ClientSecret + 1033 + + + + ee84306f-4f14-4149-90bd-10eb1835210a - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + ClientSecret + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 03a47166-da1d-47eb-b31f-1278864a0596 + + true + KeyVault + 1033 + + + + 03a47166-da1d-47eb-b31f-1278864a0596 - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + KeyVault + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + 0cb6dc7f-6255-4450-9033-8ba46baf4150 + + true + IsManaged + 1033 + + + + 0cb6dc7f-6255-4450-9033-8ba46baf4150 + + true + IsManaged + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 58b31e41-774c-48cf-9f3e-859d2fb0f3ee + + true + MicrosoftFirstPartyCertificate + 1033 + + + + 58b31e41-774c-48cf-9f3e-859d2fb0f3ee + + true + MicrosoftFirstPartyCertificate + 1033 + + + + 3 + + + + + 0 + + - e3d5c3d5-d482-468b-ab52-d895fe2ab3a6 + 6874372f-9ec1-4684-ad64-9fc2d7f1316a - advancedfilteringenabled + credentialsource Virtual false false @@ -99664,8 +106554,8 @@ canmodifyadditionalsettings true - 10199 - 2025-11-06T06:14:32.6599936 + 48 + 2025-11-06T01:10:49.2569984 @@ -99675,7 +106565,7 @@ - organization + managedidentity @@ -99725,82 +106615,82 @@ false false - advancedfilteringenabledname - 2025-11-06T06:14:32.6599936 + credentialsourcename + 2025-11-06T01:10:49.2569984 true canmodifyrequirementlevelsettings None - advancedfilteringenabledName + credentialsourceName VirtualType - 9.1.0.0 + 9.0.0.0 true - - dba2c8a5-fad0-427c-9d99-d1ed742af8a1 + + 8eb69922-1da1-4b9a-b8e4-f364625ead36 - Boolean + Picklist false false false false canmodifyadditionalsettings - false + true - 10170 - 2025-11-06T06:05:19.8 + 54 + 2025-11-06T01:10:49.3330048 - b8aa5d5e-4daf-4730-9347-33de85ff6c0d + 311cd17a-086b-4c84-970a-368f0de9a37a true - Flag to indicate if the Advanced Lookup feature is enabled for lookup controls + Determines Identity type for Managed Identity 1033 - b8aa5d5e-4daf-4730-9347-33de85ff6c0d + 311cd17a-086b-4c84-970a-368f0de9a37a true - Flag to indicate if the Advanced Lookup feature is enabled for lookup controls + Determines Identity type for Managed Identity 1033 - 5418d5fc-0aa1-42bd-827b-cdbe257edace + fb509749-2fa6-4132-b41d-14521bb17aee true - Advanced lookup enabled + Identity Type 1033 - 5418d5fc-0aa1-42bd-827b-cdbe257edace + fb509749-2fa6-4132-b41d-14521bb17aee true - Advanced lookup enabled + Identity Type 1033 - organization + managedidentity true canmodifyauditsettings - false + true false @@ -99833,7 +106723,7 @@ false - false + true canmodifysearchsettings true @@ -99844,47 +106734,61 @@ true true - advancedlookupenabled - 2025-11-06T06:05:19.8 + identitytype + 2025-12-14T01:53:55.7529984 - false + true canmodifyrequirementlevelsettings None - AdvancedLookupEnabled + IdentityType - BooleanType + PicklistType - 9.1.0.0 + 9.0.0.0 false 0 - - false + + 0 - 315e90f0-678b-4e4d-97f1-886050c3cb46 + b04b9c67-adba-f011-bbd3-7c1e52365f30 - 05aedb96-402f-4dff-86e7-54b577874b2f + b24b9c67-adba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + Select Identity type for Managed Identity Record 1033 - 05aedb96-402f-4dff-86e7-54b577874b2f + b24b9c67-adba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + Select Identity type for Managed Identity Record 1033 - - + + + b14b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Identity Type + 1033 + + + + b14b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Identity Type + 1033 + false @@ -99893,85 +106797,157 @@ iscustomizable false - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + identitytype + Picklist + 9.0.0.0 + + + + + + + + + + + false + true + + + + 5034ee9e-facd-407c-bd42-0aace8a3c769 + + true + App Registeration + 1033 + + + + 5034ee9e-facd-407c-bd42-0aace8a3c769 - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + App Registeration + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 7250ef41-ae6e-42aa-af7f-12a30acf035f + + true + AgentId + 1033 + + + + 7250ef41-ae6e-42aa-af7f-12a30acf035f - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + AgentId + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + 8c8483f1-24d0-458a-9c72-6bbd2a242578 + + true + AgentIdentityBlueprint + 1033 + + + + 8c8483f1-24d0-458a-9c72-6bbd2a242578 + + true + AgentIdentityBlueprint + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 0fd0e6e1-0b89-4e2b-b054-0bdba210f265 + + true + AgentUser + 1033 + + + + 0fd0e6e1-0b89-4e2b-b054-0bdba210f265 + + true + AgentUser + 1033 + + + + 3 + + + + + 0 + + - de6cedc3-d2c4-4b78-ad10-388d93965a17 + c7fcc3a6-3c50-4286-9b5a-1a4e06290cbb - advancedlookupenabled + identitytype Virtual false false @@ -99981,8 +106957,8 @@ canmodifyadditionalsettings true - 10171 - 2025-11-06T06:05:19.8300032 + 55 + 2025-11-06T01:10:49.3330048 @@ -99992,7 +106968,7 @@ - organization + managedidentity @@ -100042,25 +107018,25 @@ false false - advancedlookupenabledname - 2025-11-06T06:05:19.8300032 + identitytypename + 2025-11-06T01:10:49.3330048 true canmodifyrequirementlevelsettings None - advancedlookupenabledName + identitytypeName VirtualType - 9.1.0.0 + 9.0.0.0 true - 91db33cb-47f7-4b61-b8d1-0b63045faafa + c1372259-b879-48c8-80d6-6ac4a90327bf Integer @@ -100068,62 +107044,62 @@ false false - false + true canmodifyadditionalsettings - false + true - 10185 - 2025-11-06T06:14:32.4569984 + 30 + 2025-11-06T01:10:48.0669952 - 7f911480-78ea-4181-bf93-868149b83b4e + 494b9c67-adba-f011-bbd3-7c1e52365f30 - true - Enables advanced lookup in grid edit filter panel + false + Sequence number of the import that created this record. 1033 - 7f911480-78ea-4181-bf93-868149b83b4e + 494b9c67-adba-f011-bbd3-7c1e52365f30 - true - Enables advanced lookup in grid edit filter panel + false + Sequence number of the import that created this record. 1033 - 5010100c-7221-43ea-8156-2d33bd5fe784 + 4a4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Enable Advanced Lookup In Edit Filter + false + Import Sequence Number 1033 - 5010100c-7221-43ea-8156-2d33bd5fe784 + 4a4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Enable Advanced Lookup In Edit Filter + false + Import Sequence Number 1033 - organization + managedidentity true canmodifyauditsettings - false + true false - false + true iscustomizable - false + true false false @@ -100132,13 +107108,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -100150,294 +107126,96 @@ false - false + true canmodifysearchsettings true true - true - true + false + false true - true + false true - advancedlookupineditfilter - 2025-11-06T06:14:32.4569984 + importsequencenumber + 2025-11-06T01:10:48.0669952 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AdvancedLookupInEditFilter + ImportSequenceNumber IntegerType - 9.1.0.0 + 9.0.0.0 false 0 None - 100 - 0 + 2147483647 + -2147483648 0 - - 5e1d6ced-ca6c-4a30-a172-9698a196a109 + + 28cfa2dc-ac6f-4152-a517-73f576005f10 - Boolean + ManagedProperty false false false - false + true canmodifyadditionalsettings true - 10117 - 2025-11-06T03:13:53.6729984 + 43 + 2025-11-06T01:10:48.2230016 - 1773dd44-1157-46a4-be7b-2728e961fb5b + 5f4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Indicates whether Azure AI Foundry model types for AI Prompts are enabled. + false + For internal use only. 1033 - 1773dd44-1157-46a4-be7b-2728e961fb5b + 5f4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Indicates whether Azure AI Foundry model types for AI Prompts are enabled. + false + For internal use only. 1033 - 65c4d0bc-6ce8-4260-8fa3-d1b4d4f383f5 + 604b9c67-adba-f011-bbd3-7c1e52365f30 - true - Enable Azure AI Foundry model types for AI Prompts. + false + Is Customizable 1033 - 65c4d0bc-6ce8-4260-8fa3-d1b4d4f383f5 + 604b9c67-adba-f011-bbd3-7c1e52365f30 - true - Enable Azure AI Foundry model types for AI Prompts. + false + Is Customizable 1033 - organization + managedidentity - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - aipromptsazureaifoundrymodeltypesenabled - 2025-11-06T03:13:53.6729984 - - false - canmodifyrequirementlevelsettings - SystemRequired - - AiPromptsAzureAIFoundryModelTypesEnabled - - - BooleanType - - 9.1.0.0 - false - 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - 2a35a953-8dce-4c23-b165-57694fbc9edb - - aipromptsazureaifoundrymodeltypesenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10118 - 2025-11-06T03:13:53.7069952 - - - - - - - - - - organization - - - - true canmodifyauditsettings false @@ -100445,7 +107223,7 @@ true iscustomizable - true + false false false @@ -100460,7 +107238,7 @@ true isrenameable - true + false false false @@ -100476,32 +107254,36 @@ canmodifysearchsettings false - false + true false false true - false - false + true + true - aipromptsazureaifoundrymodeltypesenabledname - 2025-11-06T03:13:53.7069952 + iscustomizable + 2025-11-06T01:10:48.2230016 true canmodifyrequirementlevelsettings - None + SystemRequired - aipromptsazureaifoundrymodeltypesenabledName + IsCustomizable - VirtualType + ManagedPropertyType - 9.1.0.0 - true + 9.0.0.0 + false + iscustomizableanddeletable + + 0 + Boolean - 60e91e20-fba3-4d19-b6be-2e5702c26c05 + 7ad56cd2-5096-409f-9564-f6d9c4a9509c Boolean @@ -100509,60 +107291,60 @@ false false - false + true canmodifyadditionalsettings true - 10111 - 2025-11-06T03:13:53.5869952 + 41 + 2025-11-06T01:10:48.2099968 - 4e287290-1b1a-468a-8a69-d725b50eab90 + 5d4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Indicates whether Basic model types for AI Prompts are enabled. + false + Indicates whether the solution component is part of a managed solution. 1033 - 4e287290-1b1a-468a-8a69-d725b50eab90 + 5d4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Indicates whether Basic model types for AI Prompts are enabled. + false + Indicates whether the solution component is part of a managed solution. 1033 - fcf4d9ab-699a-44cc-beee-d13409a9255e + 5e4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Enable Basic model types for AI Prompts. + false + Is Managed 1033 - fcf4d9ab-699a-44cc-beee-d13409a9255e + 5e4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Enable Basic model types for AI Prompts. + false + Is Managed 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false - false + true iscustomizable false @@ -100573,11 +107355,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable false @@ -100591,58 +107373,86 @@ false - false + true canmodifysearchsettings true - true - true + false + false true true - true + false true - aipromptsbasicmodeltypesenabled - 2025-11-06T03:13:53.5869952 + ismanaged + 2025-11-06T01:10:48.2099968 - false + true canmodifyrequirementlevelsettings SystemRequired - AiPromptsBasicModelTypesEnabled + IsManaged BooleanType - 9.1.0.0 + 9.0.0.0 false 0 false - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 9d04e035-5408-4c1d-a5aa-20445a02f691 - 05aedb96-402f-4dff-86e7-54b577874b2f + b41954a2-f3a5-47e9-ae13-ceb49de4465b true - Information that specifies whether a feature is enabled for the organization. + Information about whether the current component is managed. 1033 + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + b41954a2-f3a5-47e9-ae13-ceb49de4465b true - Information that specifies whether a feature is enabled for the organization. + Information about whether the current component is managed. 1033 - - + + + 45a188b1-91a8-4019-b582-cebda8081064 + + true + Is Component Managed + 1033 + + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + + + + 45a188b1-91a8-4019-b582-cebda8081064 + + true + Is Component Managed + 1033 + false @@ -100653,9 +107463,9 @@ true true - organization_featureenabled + ismanaged Boolean - 8.1.0.0 + 5.0.0.0 @@ -100670,18 +107480,25 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 443c7078-b7cb-47e7-8547-08dfa82950d0 true - No + Unmanaged 1033 + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 443c7078-b7cb-47e7-8547-08dfa82950d0 true - No + Unmanaged 1033 @@ -100703,18 +107520,25 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + ec886b5b-7e97-4c62-b30c-bf295639d540 true - Yes + Managed 1033 + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + ec886b5b-7e97-4c62-b30c-bf295639d540 true - Yes + Managed 1033 @@ -100727,9 +107551,9 @@ 0 - 1d707e78-ef64-4611-8d1e-4091a2db4ca7 + c55b34cc-7f61-4ecf-b7f2-3427c0bc18f1 - aipromptsbasicmodeltypesenabled + ismanaged Virtual false false @@ -100739,8 +107563,8 @@ canmodifyadditionalsettings true - 10112 - 2025-11-06T03:13:53.6130048 + 42 + 2025-11-06T01:10:48.2230016 @@ -100750,7 +107574,7 @@ - organization + managedidentity @@ -100800,28 +107624,28 @@ false false - aipromptsbasicmodeltypesenabledname - 2025-11-06T03:13:53.6130048 + ismanagedname + 2025-11-06T01:10:48.2230016 true canmodifyrequirementlevelsettings None - aipromptsbasicmodeltypesenabledName + ismanagedName VirtualType - 9.1.0.0 + 9.0.0.0 true - - 0ec7fccd-5a16-4f72-84b3-f7cf47ce3a28 + + def2d54a-0d8d-45ce-8279-f6596feaaa6d - Boolean + Lookup false false false @@ -100830,52 +107654,52 @@ canmodifyadditionalsettings true - 10109 - 2025-11-06T03:13:53.5330048 + 46 + 2025-11-06T01:10:49.2230016 - c79316f5-2050-45cc-a59c-452b5660be3d + fdd5eeae-38cc-4329-ba4b-671f6fd7de9b true - Indicates whether AI Prompts feature is enabled. + Unique identifier for keyvaultreference which contains the secret. 1033 - c79316f5-2050-45cc-a59c-452b5660be3d + fdd5eeae-38cc-4329-ba4b-671f6fd7de9b true - Indicates whether AI Prompts feature is enabled. + Unique identifier for keyvaultreference which contains the secret. 1033 - 171dc668-f654-4ba0-bd1e-53f20fc480b7 + 59fc5ca4-52b0-462e-821e-ebd6541b5293 true - Enable AI Prompts. + KeyVaultReferenceId 1033 - 171dc668-f654-4ba0-bd1e-53f20fc480b7 + 59fc5ca4-52b0-462e-821e-ebd6541b5293 true - Enable AI Prompts. + KeyVaultReferenceId 1033 - organization + managedidentity true canmodifyauditsettings - true + false false @@ -100919,135 +107743,32 @@ true true - aipromptsenabled - 2025-11-06T03:13:53.5330048 + keyvaultreferenceid + 2025-11-06T01:10:49.7699968 false canmodifyrequirementlevelsettings - SystemRequired + None - AiPromptsEnabled + KeyVaultReferenceId - BooleanType + LookupType - 9.1.0.0 + 9.0.0.0 false - 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - - 0 + + + None + + keyvaultreference + - - 60b885bf-5e9b-4455-8786-f1eb35747291 + + c6a37b2e-df24-4750-980c-04f7a20f5fe1 - aipromptsenabled - Virtual + keyvaultreferenceid + String false false false @@ -101056,8 +107777,8 @@ canmodifyadditionalsettings true - 10110 - 2025-11-06T03:13:53.5629952 + 56 + 2025-11-06T01:10:49.8169984 @@ -101067,13 +107788,13 @@ - organization + managedidentity true canmodifyauditsettings - false + true false @@ -101117,28 +107838,39 @@ false false - aipromptsenabledname - 2025-11-06T03:13:53.5629952 + keyvaultreferenceidname + 2025-11-06T01:10:49.8169984 true canmodifyrequirementlevelsettings None - aipromptsenabledName + keyvaultreferenceidName - VirtualType + StringType - 9.1.0.0 + 9.0.0.0 true - + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 200 - - 64dd2de8-484c-4a4c-8859-c4a01a406bf1 + + e9b6d977-5536-45a9-8527-9cc26e9baa77 - Boolean + Uniqueidentifier false false false @@ -101147,68 +107879,68 @@ canmodifyadditionalsettings true - 10115 - 2025-11-06T03:13:53.6429952 + 1 + 2025-11-06T01:10:47.8029952 - df2ff303-562d-4443-8799-c1331029bc74 + ec4a9c67-adba-f011-bbd3-7c1e52365f30 true - Indicates whether Premium model types for AI Prompts are enabled. + Unique identifier for entity instances 1033 - df2ff303-562d-4443-8799-c1331029bc74 + ec4a9c67-adba-f011-bbd3-7c1e52365f30 true - Indicates whether Premium model types for AI Prompts are enabled. + Unique identifier for entity instances 1033 - 0ff84b3d-5e86-408c-ac1d-5684af71389a + ed4a9c67-adba-f011-bbd3-7c1e52365f30 true - Enable Premium model types for AI Prompts. + ManagedIdentity Id 1033 - 0ff84b3d-5e86-408c-ac1d-5684af71389a + ed4a9c67-adba-f011-bbd3-7c1e52365f30 true - Enable Premium model types for AI Prompts. + ManagedIdentity Id 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false false iscustomizable - false + true false - false + true true canmodifyglobalfiltersettings false true - false + true false false @@ -101216,7 +107948,7 @@ false false - false + true false false @@ -101225,170 +107957,91 @@ false - false + true canmodifysearchsettings true true - true - true + false + false true - true + false true - aipromptspremiummodeltypesenabled - 2025-11-06T03:13:53.6429952 + managedidentityid + 2025-11-06T01:10:49.0669952 false canmodifyrequirementlevelsettings SystemRequired - AiPromptsPremiumModelTypesEnabled + ManagedIdentityId - BooleanType + UniqueidentifierType - 9.1.0.0 + 9.0.0.0 false - 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f + + + + + 9a374792-658a-49a1-a9a5-812028125841 + + + Lookup + false + false + false + + true + canmodifyadditionalsettings + true + + 5 + 2025-11-06T01:10:47.8630016 + + + + + f44a9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - + false + Unique identifier of the user who modified the record. + 1033 + + + + f44a9c67-adba-f011-bbd3-7c1e52365f30 - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - c58363d8-8163-4e77-9a5a-8e12884db342 - - aipromptspremiummodeltypesenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10116 - 2025-11-06T03:13:53.6600064 - - - - + false + Unique identifier of the user who modified the record. + 1033 + - - + + + f54a9c67-adba-f011-bbd3-7c1e52365f30 + + false + Modified By + 1033 + + + + f54a9c67-adba-f011-bbd3-7c1e52365f30 + + false + Modified By + 1033 + - organization + managedidentity - true + false canmodifyauditsettings false @@ -101425,97 +108078,73 @@ true canmodifysearchsettings - false + true false - false - false + true + true true false - false + true - aipromptspremiummodeltypesenabledname - 2025-11-06T03:13:53.6600064 + modifiedby + 2025-11-06T01:10:47.8630016 true canmodifyrequirementlevelsettings None - aipromptspremiummodeltypesenabledName + ModifiedBy - VirtualType + LookupType - 9.1.0.0 - true + 9.0.0.0 + false + None + + systemuser + - - 0ba0d68a-a3cb-4c96-8bca-08d3470f03c3 + + 5325b5bc-1a2a-450e-ac00-e1d851cd5b1c - - Boolean + modifiedby + String false false false - false + true canmodifyadditionalsettings true - 10113 - 2025-11-06T03:13:53.6269952 + 12 + 2025-11-06T01:10:47.9129984 - - - d04a809f-b02d-480f-ab79-bc34426ba4d4 - - true - Indicates whether Standard model types for AI Prompts are enabled. - 1033 - - - - d04a809f-b02d-480f-ab79-bc34426ba4d4 - - true - Indicates whether Standard model types for AI Prompts are enabled. - 1033 - + + - - - d223d23d-fe31-4277-9b21-4f4f178abae6 - - true - Enable Standard model types for AI Prompts. - 1033 - - - - d223d23d-fe31-4277-9b21-4f4f178abae6 - - true - Enable Standard model types for AI Prompts. - 1033 - + + - organization + managedidentity true canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -101524,13 +108153,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -101542,146 +108171,50 @@ false - false + true canmodifysearchsettings - true + false - true - true - true + false + false + false true - true - true + false + false - aipromptsstandardmodeltypesenabled - 2025-11-06T03:13:53.6269952 + modifiedbyname + 2025-11-06T01:10:47.9129984 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AiPromptsStandardModelTypesEnabled + ModifiedByName - BooleanType + StringType - 9.1.0.0 - false + 9.0.0.0 + true 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 100 + + + Text + + false 0 + 200 - - c6b68555-ccd1-4468-83a5-870cad7ae958 + + 5a258eb9-f0f3-461e-a59b-414e3db51b92 - aipromptsstandardmodeltypesenabled - Virtual + modifiedby + String false false false @@ -101690,8 +108223,8 @@ canmodifyadditionalsettings true - 10114 - 2025-11-06T03:13:53.6429952 + 13 + 2025-11-06T01:10:47.9129984 @@ -101701,7 +108234,7 @@ - organization + managedidentity @@ -101751,82 +108284,93 @@ false false - aipromptsstandardmodeltypesenabledname - 2025-11-06T03:13:53.6429952 + modifiedbyyominame + 2025-11-06T01:10:47.9129984 true canmodifyrequirementlevelsettings - None + SystemRequired - aipromptsstandardmodeltypesenabledName + ModifiedByYomiName - VirtualType + StringType - 9.1.0.0 + 9.0.0.0 true - + 0 + Text + Auto + 100 + modifiedbyname + + Text + + + false + 0 + 200 - - ff79b2dd-6da5-4ba0-bfa1-f3168ceedf06 + + e6f53b98-a6d3-4cc3-a509-51e6b5b492d5 - Boolean + DateTime false false false false canmodifyadditionalsettings - false + true - 130 - 1900-01-01T00:00:00 + 4 + 2025-11-06T01:10:47.8499968 - dbb404a1-bf38-4698-84c5-641b86e2e0dd + f24a9c67-adba-f011-bbd3-7c1e52365f30 true - Indicates whether background address book synchronization in Microsoft Office Outlook is allowed. + Date and time when the record was modified. 1033 - dbb404a1-bf38-4698-84c5-641b86e2e0dd + f24a9c67-adba-f011-bbd3-7c1e52365f30 true - Indicates whether background address book synchronization in Microsoft Office Outlook is allowed. + Date and time when the record was modified. 1033 - 3699794e-51ee-439e-bd43-991c39cb6635 + f34a9c67-adba-f011-bbd3-7c1e52365f30 true - Allow Address Book Synchronization + Modified On 1033 - 3699794e-51ee-439e-bd43-991c39cb6635 + f34a9c67-adba-f011-bbd3-7c1e52365f30 true - Allow Address Book Synchronization + Modified On 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false @@ -101835,7 +108379,7 @@ true false - false + true true canmodifyglobalfiltersettings @@ -101847,10 +108391,10 @@ false isrenameable - false + true false - false + true false false @@ -101859,204 +108403,109 @@ false - false + true canmodifysearchsettings - false + true - true - false - false + false + true + true true - true + false true - allowaddressbooksyncs - 1900-01-01T00:00:00 + modifiedon + 2025-11-06T01:10:47.8499968 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AllowAddressBookSyncs + ModifiedOn - BooleanType + DateTimeType - 5.0.0.0 + 9.0.0.0 false 0 - - false - - e3d29f93-4d77-4c8b-b372-6b04356e8817 - - - - - a8d67a9e-561d-4445-b926-8cf18bdecd60 - - true - Flag to enable or disable background address book synchronization in Microsoft Office Outlook. - 1033 - - - - a8d67a9e-561d-4445-b926-8cf18bdecd60 - - true - Flag to enable or disable background address book synchronization in Microsoft Office Outlook. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_allowaddressbooksyncs - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 6ed26b61-adb2-41cb-9cb7-2b409b1a92f5 - - true - No - 1033 - - - - 6ed26b61-adb2-41cb-9cb7-2b409b1a92f5 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 820ab97d-597f-41f5-9003-75a65ba90ded - - true - Yes - 1033 - - - - 820ab97d-597f-41f5-9003-75a65ba90ded - - true - Yes - 1033 - - - - 1 - - - - + + DateAndTime + Inactive + 0 + + false + canmodifybehavior + false + + + UserLocal + - - 4dda3e16-7627-4a0d-a37c-e085189030c9 + + c135a440-c140-40fe-b7fb-0c6bf46c4374 - Boolean + Lookup false false false - false + true canmodifyadditionalsettings true - 10023 - 2025-11-06T01:17:44.7430016 + 7 + 2025-11-06T01:10:47.88 - fabe392b-03e8-4f9c-a0cd-b474b6f4f6b0 + f84a9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies whether all application users are allowed to access the environment + false + Unique identifier of the delegate user who modified the record. 1033 - fabe392b-03e8-4f9c-a0cd-b474b6f4f6b0 + f84a9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies whether all application users are allowed to access the environment + false + Unique identifier of the delegate user who modified the record. 1033 - 40d48336-547c-4c6a-aaf4-96dddec2426a + f94a9c67-adba-f011-bbd3-7c1e52365f30 - true - Allow All Application Users Access. + false + Modified By (Delegate) 1033 - 40d48336-547c-4c6a-aaf4-96dddec2426a + f94a9c67-adba-f011-bbd3-7c1e52365f30 - true - Allow All Application Users Access. + false + Modified By (Delegate) 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -102067,13 +108516,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -102085,146 +108534,43 @@ false - false + true canmodifysearchsettings - false + true - true - false - false + false + true + true true - true + false true - allowapplicationuseraccess - 2025-11-06T01:17:44.7430016 + modifiedonbehalfby + 2025-11-06T01:10:47.88 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AllowApplicationUserAccess + ModifiedOnBehalfBy - BooleanType + LookupType - 1.0.0.15 + 9.0.0.0 false - 0 + - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - - 0 + None + + systemuser + - - 76547457-2463-41a2-bde4-8ba28cfde974 + + 15c9c42e-cb76-4087-866c-38b234848576 - allowapplicationuseraccess - Virtual + modifiedonbehalfby + String false false false @@ -102233,8 +108579,8 @@ canmodifyadditionalsettings true - 10024 - 2025-11-06T01:17:44.7570048 + 14 + 2025-11-06T01:10:47.9129984 @@ -102244,7 +108590,7 @@ - organization + managedidentity @@ -102294,86 +108640,69 @@ false false - allowapplicationuseraccessname - 2025-11-06T01:17:44.7570048 + modifiedonbehalfbyname + 2025-11-06T01:10:47.9129984 true canmodifyrequirementlevelsettings None - allowapplicationuseraccessName + ModifiedOnBehalfByName - VirtualType + StringType - 1.0.0.15 + 9.0.0.0 true - + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 200 - - 84090d3a-0ffb-479f-9850-154933ca8dab + + f29449bf-7402-4b36-999f-d908fa017ee2 - - Boolean + modifiedonbehalfby + String false false false - false + true canmodifyadditionalsettings - false + true - 78 - 1900-01-01T00:00:00 + 15 + 2025-11-06T01:10:47.9270016 - - - 321ed7e8-2241-db11-898a-0007e9e17ebd - - true - Indicates whether automatic response creation is allowed. - 1033 - - - - 321ed7e8-2241-db11-898a-0007e9e17ebd - - true - Indicates whether automatic response creation is allowed. - 1033 - + + - - - a5aa0b18-be12-4b54-b0b4-6ac60164c448 - - true - Allow Automatic Response Creation - 1033 - - - - a5aa0b18-be12-4b54-b0b4-6ac60164c448 - - true - Allow Automatic Response Creation - 1033 - + + - organization + managedidentity true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -102384,13 +108713,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -102402,194 +108731,98 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - allowautoresponsecreation - 1900-01-01T00:00:00 + modifiedonbehalfbyyominame + 2025-11-06T01:10:47.9270016 - false + true canmodifyrequirementlevelsettings - None + SystemRequired - AllowAutoResponseCreation + ModifiedOnBehalfByYomiName - BooleanType + StringType - 5.0.0.0 - false + 9.0.0.0 + true 0 - - false - - d0e2f8e0-7d6e-4459-9e94-97143e03a8bc - - - - - 138922e8-ca40-4816-8fc2-96e1b81eef66 - - true - Indication of whether automatic response creation is allowed. - 1033 - - - - 138922e8-ca40-4816-8fc2-96e1b81eef66 - - true - Indication of whether automatic response creation is allowed. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_allowautoresponsecreation - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 45c888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 45c888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 47c888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 47c888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - - + + Text + Auto + 100 + modifiedonbehalfbyname + + Text + + + false 0 + 200 - - 81ee1e88-9c7e-4953-bc92-af7839995f36 + + fa776e6f-9ecb-4655-8ac8-562c1edfb53b - Boolean + String false false false false canmodifyadditionalsettings - false + true - 71 - 1900-01-01T00:00:00 + 34 + 2025-11-06T01:10:48.1469952 - ed3fb506-2341-db11-898a-0007e9e17ebd + 628b1dd0-6f03-4aa4-8b7d-60457cfa976c true - Indicates whether automatic unsubscribe is allowed. + The name assigned to this Managed Identity. 1033 - ed3fb506-2341-db11-898a-0007e9e17ebd + 628b1dd0-6f03-4aa4-8b7d-60457cfa976c true - Indicates whether automatic unsubscribe is allowed. + The name assigned to this Managed Identity. 1033 - 6b33581a-34f7-4bb5-85fa-5af7be455395 + 556d35f7-14b9-4069-851a-9d7446065727 true - Allow Automatic Unsubscribe + Name 1033 - 6b33581a-34f7-4bb5-85fa-5af7be455395 + 556d35f7-14b9-4069-851a-9d7446065727 true - Allow Automatic Unsubscribe + Name 1033 - organization + managedidentity @@ -102601,7 +108834,7 @@ false iscustomizable - true + false false false @@ -102612,15 +108845,15 @@ true false - false + true false isrenameable false false - false - false + true + true false true @@ -102628,194 +108861,98 @@ false - false + true canmodifysearchsettings - false + true true - false - false + true + true true true true - allowautounsubscribe - 1900-01-01T00:00:00 + name + 2025-11-06T01:10:49.1469952 - false + true canmodifyrequirementlevelsettings - None + ApplicationRequired - AllowAutoUnsubscribe + Name - BooleanType + StringType - 5.0.0.0 + 9.0.0.0 false 0 - false - - 73e35d83-5411-4a35-bd0f-e196ff52d9ca - - - - - 5a6a3dfd-df17-46bf-9e71-5d7094fc44db - - true - Indication of whether automatic unsubscribe is allowed. - 1033 - - - - 5a6a3dfd-df17-46bf-9e71-5d7094fc44db - - true - Indication of whether automatic unsubscribe is allowed. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_allowautounsubscribe - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 49c888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 49c888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 4bc888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 4bc888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - - + Text + Auto + 100 + + + Text + + + false 0 + 200 - - 58e3e6ef-37b7-4227-9dde-3ad89c31435d + + 899c465f-0b96-421f-9d99-b58140736432 - Boolean + Uniqueidentifier false false false false canmodifyadditionalsettings - false + true - 70 - 1900-01-01T00:00:00 + 49 + 2025-11-06T01:10:49.2569984 - ebe9af0c-2341-db11-898a-0007e9e17ebd + 0f03adc0-f274-4d53-a934-08f8d27e546b true - Indicates whether automatic unsubscribe acknowledgement email is allowed to send. + ObjectId 1033 - ebe9af0c-2341-db11-898a-0007e9e17ebd + 0f03adc0-f274-4d53-a934-08f8d27e546b true - Indicates whether automatic unsubscribe acknowledgement email is allowed to send. + ObjectId 1033 - 9f607aca-ba23-4032-904d-6a065c8645cc + d1e1656f-82d6-4998-a323-4e92f199ba94 true - Allow Automatic Unsubscribe Acknowledgement + ObjectId 1033 - 9f607aca-ba23-4032-904d-6a065c8645cc + d1e1656f-82d6-4998-a323-4e92f199ba94 true - Allow Automatic Unsubscribe Acknowledgement + ObjectId 1033 - organization + managedidentity @@ -102827,7 +108964,7 @@ false iscustomizable - true + false false false @@ -102844,7 +108981,7 @@ isrenameable false - false + true false false false @@ -102854,146 +108991,39 @@ false - false + true canmodifysearchsettings - false + true - true - false - false + false + true + true true - true + false true - allowautounsubscribeacknowledgement - 1900-01-01T00:00:00 + objectid + 2025-11-06T01:10:49.2569984 - false + true canmodifyrequirementlevelsettings None - AllowAutoUnsubscribeAcknowledgement + ObjectId - BooleanType + UniqueidentifierType - 5.0.0.0 + 9.0.0.0 false - 0 + - false - - e02e1dbd-f370-4b0f-87fd-3df30a4fe738 - - - - - 17fb72f6-2393-4a62-bb9b-f844413ab7b5 - - true - Indication of whether automatic unsubscribe acknowledgement email is allowed to send. - 1033 - - - - 17fb72f6-2393-4a62-bb9b-f844413ab7b5 - - true - Indication of whether automatic unsubscribe acknowledgement email is allowed to send. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_allowautounsubscribeacknowledgement - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 4dc888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 4dc888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 4fc888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 4fc888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - - - 0 - - ceeec35a-f4f0-445e-ae38-c0cd235222e7 + + 4d696287-d7a3-47a7-a53e-cbf8ceeb8047 - Boolean + DateTime false false false @@ -103002,46 +109032,46 @@ canmodifyadditionalsettings true - 210 - 1900-01-01T00:00:00 + 31 + 2025-11-06T01:10:48.0829952 - 67e409f4-6135-4fcc-8711-62f4a8695132 + 4b4b9c67-adba-f011-bbd3-7c1e52365f30 true - Indicates whether Outlook Client message bar advertisement is allowed. + Date and time that the record was migrated. 1033 - 67e409f4-6135-4fcc-8711-62f4a8695132 + 4b4b9c67-adba-f011-bbd3-7c1e52365f30 true - Indicates whether Outlook Client message bar advertisement is allowed. + Date and time that the record was migrated. 1033 - 121ded16-a8c7-4146-9821-b22b6eb26bfd + 4c4b9c67-adba-f011-bbd3-7c1e52365f30 true - Allow Outlook Client Message Bar Advertisement + Record Created On 1033 - 121ded16-a8c7-4146-9821-b22b6eb26bfd + 4c4b9c67-adba-f011-bbd3-7c1e52365f30 true - Allow Outlook Client Message Bar Advertisement + Record Created On 1033 - organization + managedidentity @@ -103082,202 +109112,107 @@ true canmodifysearchsettings - false + true true false - false + true true - true + false true - allowclientmessagebarad - 1900-01-01T00:00:00 + overriddencreatedon + 2025-11-06T01:10:48.0829952 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AllowClientMessageBarAd + OverriddenCreatedOn - BooleanType + DateTimeType - 5.0.0.0 + 9.0.0.0 false 0 - - false - - 868d733d-5ee4-4c7c-b19d-c97cea0d34fd - - - - - 4149bbf6-f883-4350-841e-ea95d9a7e63b - - true - Flag to enable or disable ad in the message bar for Outlook Client. - 1033 - - - - 4149bbf6-f883-4350-841e-ea95d9a7e63b - - true - Flag to enable or disable ad in the message bar for Outlook Client. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_allowclientmessagebarad - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - b3ac8d02-0a2f-48fd-8862-95af8b2d6dfb - - true - No - 1033 - - - - b3ac8d02-0a2f-48fd-8862-95af8b2d6dfb - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 45162337-5e5c-4c12-80e8-301598a19dbf - - true - Yes - 1033 - - - - 45162337-5e5c-4c12-80e8-301598a19dbf - - true - Yes - 1033 - - - - 1 - - - - + + DateOnly + Inactive + 0 + + false + canmodifybehavior + false + + + UserLocal + - - 46b2373d-048a-43fd-84e3-04d71c86e8a7 + + e5554e6d-efc4-4a03-8df5-e2fc173a7129 - Boolean + DateTime false false false - false + true canmodifyadditionalsettings - false + true - 10161 - 2025-11-06T04:54:58 + 35 + 2025-11-06T01:10:48.1629952 - c60d5da8-4847-4557-ad17-447af8c88895 + 534b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information on whether connectors on power fx actions is enabled. + false + For internal use only. 1033 - c60d5da8-4847-4557-ad17-447af8c88895 + 534b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information on whether connectors on power fx actions is enabled. + false + For internal use only. 1033 - 13b10001-736f-447a-a975-f36e7802540d + 544b9c67-adba-f011-bbd3-7c1e52365f30 - true - Enable connectors on power fx actions. + false + Record Overwrite Time 1033 - 13b10001-736f-447a-a975-f36e7802540d + 544b9c67-adba-f011-bbd3-7c1e52365f30 - true - Enable connectors on power fx actions. + false + Record Overwrite Time 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false - false + true iscustomizable false @@ -103288,11 +109223,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable false @@ -103306,160 +109241,51 @@ false - false + true canmodifysearchsettings false - true + false false false true - true + false true - allowconnectorsonpowerfxactions - 2025-11-06T04:54:58 + overwritetime + 2025-11-06T01:10:48.1629952 - false + true canmodifyrequirementlevelsettings SystemRequired - AllowConnectorsOnPowerFXActions + OverwriteTime - BooleanType + DateTimeType - 9.2.0.0 + 9.0.0.0 false 0 - true - - 0e3261b8-ccba-f011-bbd3-7c1e52365f30 - - - - - 103261b8-ccba-f011-bbd3-7c1e52365f30 - - true - Enable or disable connectors on power fx actions. - 1033 - - - - 103261b8-ccba-f011-bbd3-7c1e52365f30 - - true - Enable or disable connectors on power fx actions. - 1033 - - - - - - 0f3261b8-ccba-f011-bbd3-7c1e52365f30 - - true - If connectors on power fx actions is enabled. - 1033 - - - - 0f3261b8-ccba-f011-bbd3-7c1e52365f30 - - true - If connectors on power fx actions is enabled. - 1033 - - - - true - - false - iscustomizable - false - - false - true - organization_allowconnectorsonpowerfxactions - Boolean - 9.2.0.0 - - - - - - - - - - false - true - - - - a2d78d1d-24ff-440d-b392-3d20898582e5 - - true - No - 1033 - - - - a2d78d1d-24ff-440d-b392-3d20898582e5 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - e9ef0b07-ca6c-4392-ac10-cca63c719426 - - true - Yes - 1033 - - - - e9ef0b07-ca6c-4392-ac10-cca63c719426 - - true - Yes - 1033 - - - - 1 - - - + DateAndTime + Inactive 0 + + false + canmodifybehavior + false + + + UserLocal + - - 2fd16133-9aff-44c7-95ac-ac840c801773 + + 88ee915a-4987-414f-ad9d-48c7453fde6d - allowconnectorsonpowerfxactions - Virtual + + Owner false false false @@ -103468,24 +109294,52 @@ canmodifyadditionalsettings true - 10162 - 2025-11-06T04:54:58.0169984 + 16 + 2025-11-06T01:10:47.9270016 - - + + + 134b9c67-adba-f011-bbd3-7c1e52365f30 + + false + Owner Id + 1033 + + + + 134b9c67-adba-f011-bbd3-7c1e52365f30 + + false + Owner Id + 1033 + - - + + + 144b9c67-adba-f011-bbd3-7c1e52365f30 + + false + Owner + 1033 + + + + 144b9c67-adba-f011-bbd3-7c1e52365f30 + + false + Owner + 1033 + - organization + managedidentity true canmodifyauditsettings - false + true false @@ -103494,7 +109348,7 @@ true false - false + true true canmodifyglobalfiltersettings @@ -103508,7 +109362,7 @@ isrenameable true - false + true false false false @@ -103520,97 +109374,88 @@ true canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - allowconnectorsonpowerfxactionsname - 2025-11-06T04:54:58.0169984 + ownerid + 2025-11-06T01:10:47.9270016 true canmodifyrequirementlevelsettings - None + SystemRequired - allowconnectorsonpowerfxactionsName + OwnerId - VirtualType + OwnerType - 9.2.0.0 - true + 9.0.0.0 + false + None + + systemuser + team + - eceb0067-5445-457b-8ce8-346a3359c669 + bbf80da8-240d-407f-b1c7-5fb8d951b4a0 - + ownerid String false false false - false + true canmodifyadditionalsettings true - 10027 - 2025-11-06T01:17:44.7730048 + 18 + 2025-11-06T01:10:47.96 - 12581bbe-799a-4387-9de3-f7513b2c2fc8 + 184b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies the Applications that are in allow list for the accessing DV resources. + false + Name of the owner 1033 - 12581bbe-799a-4387-9de3-f7513b2c2fc8 + 184b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies the Applications that are in allow list for the accessing DV resources. + false + Name of the owner 1033 - - - 6e36ad56-98f0-49e6-98bc-88aba406bb04 - - true - List of Applications that are in allow list for the accessing DV resources. - 1033 - - - - 6e36ad56-98f0-49e6-98bc-88aba406bb04 - - true - List of Applications that are in allow list for the accessing DV resources. - 1033 - + + - organization + managedidentity true canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -103619,13 +109464,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -103637,36 +109482,36 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - allowedapplicationsfordvaccess - 2025-11-06T01:17:44.7730048 + owneridname + 2025-11-06T01:10:47.96 - false + true canmodifyrequirementlevelsettings - None + SystemRequired - AllowedApplicationsForDVAccess + OwnerIdName StringType - 1.0.0.15 - false + 9.0.0.0 + true 0 Text Auto - 20000 + 100 Text @@ -103674,61 +109519,47 @@ false 0 - -1 + 200 - - 29c5eee0-5a6b-4eb1-9e54-0aba809bed0f + + e5c337b1-6dcd-46ff-84ad-8e04f2179677 - - String + ownerid + EntityName false false false - false + true canmodifyadditionalsettings true - 10018 - 2025-11-06T01:17:44.6630016 + 17 + 2025-11-06T01:10:47.9430016 - 00ae1c5c-693d-40ea-ae2e-0f269db88bd7 + 174b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies the range of IP addresses that are in allow list for the firewall. + false + Owner Id Type 1033 - 00ae1c5c-693d-40ea-ae2e-0f269db88bd7 + 174b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies the range of IP addresses that are in allow list for the firewall. + false + Owner Id Type 1033 - - - 29f91397-9265-4103-a953-7cc980c2e5df - - true - List of IP Ranges to be allowed by the firewall rule - 1033 - - - - 29f91397-9265-4103-a953-7cc980c2e5df - - true - List of IP Ranges to be allowed by the firewall rule - 1033 - + + - organization + managedidentity @@ -103738,9 +109569,9 @@ false - false + true iscustomizable - false + true false false @@ -103749,13 +109580,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -103767,7 +109598,7 @@ false - false + true canmodifysearchsettings false @@ -103776,101 +109607,80 @@ false true true - true + false - allowediprangeforfirewall - 2025-11-06T01:17:44.6630016 + owneridtype + 2025-11-06T01:10:47.9430016 - false + true canmodifyrequirementlevelsettings - None + SystemRequired - AllowedIpRangeForFirewall + OwnerIdType - StringType + EntityNameType - 1.0.0.15 + 9.0.0.0 false - 0 + - Text - Auto - 4000 - - - Text - - - false - 0 - 8000 + + + + true - 4ab2a391-44c8-4cca-8715-4db4b9025751 + 194b9c67-adba-f011-bbd3-7c1e52365f30 - + ownerid String false false false - false + true canmodifyadditionalsettings true - 10009 - 2025-11-06T01:16:32.3869952 + 19 + 2025-11-06T01:10:47.9730048 - 521779b0-106b-42ec-b23b-1d11557008fb + 1a4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies the range of IP addresses that are in allowed list for generating the SAS URIs. + false + Yomi name of the owner 1033 - 521779b0-106b-42ec-b23b-1d11557008fb + 1a4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies the range of IP addresses that are in allowed list for generating the SAS URIs. + false + Yomi name of the owner 1033 - - - e98a3966-3aed-4eac-b2e5-476c3bf7bdd9 - - true - List of IP Ranges to be allowed for generating the SAS URIs. - 1033 - - - - e98a3966-3aed-4eac-b2e5-476c3bf7bdd9 - - true - List of IP Ranges to be allowed for generating the SAS URIs. - 1033 - + + - organization + managedidentity true canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -103879,13 +109689,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -103897,98 +109707,98 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - allowediprangeforstorageaccesssignatures - 2025-11-06T01:16:32.3869952 + owneridyominame + 2025-11-06T01:10:47.9730048 - false + true canmodifyrequirementlevelsettings - None + SystemRequired - AllowedIpRangeForStorageAccessSignatures + OwnerIdYomiName StringType - 1.0.0.5 - false + 9.0.0.0 + true 0 Text Auto - 4000 - + 100 + owneridname Text false 0 - 8000 + 200 - - 76496ce2-d128-4fcd-bc16-57b8bcea6543 + + 9a1aa87b-ccb1-47ac-acbc-f4001b0a4512 - String + Lookup false false false - false + true canmodifyadditionalsettings true - 10167 - 2025-11-06T05:56:00.3369984 + 21 + 2025-11-06T01:10:47.9730048 - 78633873-6b76-4d0f-b3f3-d83ac53130bd + 1b4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Specifies list of allowed IP addresses for firewall. + false + Unique identifier for the business unit that owns the record 1033 - 78633873-6b76-4d0f-b3f3-d83ac53130bd + 1b4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Specifies list of allowed IP addresses for firewall. + false + Unique identifier for the business unit that owns the record 1033 - af705399-8c6c-4570-9f57-0f89b1b7c977 + 1c4b9c67-adba-f011-bbd3-7c1e52365f30 - true - List of IP Ranges to be allowed by the firewall rule + false + Owning Business Unit 1033 - af705399-8c6c-4570-9f57-0f89b1b7c977 + 1c4b9c67-adba-f011-bbd3-7c1e52365f30 - true - List of IP Ranges to be allowed by the firewall rule + false + Owning Business Unit 1033 - organization + managedidentity @@ -103998,24 +109808,24 @@ false - false + true iscustomizable - false + true false - false + true true canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -104027,108 +109837,203 @@ false - false + true canmodifysearchsettings - false + true - true - false - false + false + true + true true - true + false true - allowedlistofiprangesforfirewall - 2025-11-06T05:56:00.3369984 + owningbusinessunit + 2025-11-06T01:10:47.9730048 - false + true canmodifyrequirementlevelsettings None - AllowedListOfIpRangesForFirewall + OwningBusinessUnit - StringType + LookupType - 9.2.0.158 + 9.0.0.0 false - 0 + - Text - Auto - 1073741823 - - - Text - - - false - 0 - -1 + None + + businessunit + - cae66aa7-4aa7-4b03-8b3b-0d345c01e4e1 + b1cdb229-06c5-4848-a6a9-d284a0c5d0d8 - + owningbusinessunit String false false false - false + true canmodifyadditionalsettings + true + + 24 + 2025-11-06T01:10:48.0199936 + + + + + + + + + + managedidentity + + + + true + canmodifyauditsettings + true + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings false + + false + false + false + true + false + false + + owningbusinessunitname + 2025-11-06T01:10:48.0199936 + + true + canmodifyrequirementlevelsettings + SystemRequired + + OwningBusinessUnitName + + + StringType + + 9.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 200 + + + c1e66b00-3d9c-4154-b2a9-9a2aec93e90e + + + Lookup + false + false + false + + true + canmodifyadditionalsettings + true - 10001 - 2025-11-06T01:01:00.8269952 + 23 + 2025-11-06T01:10:48.0070016 - 850e1365-cb34-4e16-9535-1c89d1526953 + 244b9c67-adba-f011-bbd3-7c1e52365f30 - true - Allow upload or download of certain mime types. + false + Unique identifier for the team that owns the record. 1033 - 850e1365-cb34-4e16-9535-1c89d1526953 + 244b9c67-adba-f011-bbd3-7c1e52365f30 - true - Allow upload or download of certain mime types. + false + Unique identifier for the team that owns the record. 1033 - c247a450-d483-45a7-a778-93c066d6843b + 254b9c67-adba-f011-bbd3-7c1e52365f30 - true - List of allowed mime types. + false + Owning Team 1033 - c247a450-d483-45a7-a778-93c066d6843b + 254b9c67-adba-f011-bbd3-7c1e52365f30 - true - List of allowed mime types. + false + Owning Team 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -104139,13 +110044,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -104157,110 +110062,103 @@ false - false + true canmodifysearchsettings false - true + false false false true - true + false true - allowedmimetypes - 2026-01-25T00:30:06.5299968 + owningteam + 2025-11-06T01:10:48.0070016 - false + true canmodifyrequirementlevelsettings None - AllowedMimeTypes + OwningTeam - StringType + LookupType - 9.1.0.0 - false - 0 + 9.0.0.0 + true + - Text - Auto - 1073741823 - - - Text - - - false - 0 - -1 + None + + team + - - 584ca742-bbfa-4eb5-94bd-b6750496610c + + 7888137b-a6dc-4b20-b6f1-979ae4fd0694 - String + Lookup false false false - false + true canmodifyadditionalsettings true - 10019 - 2025-11-06T01:17:44.68 + 22 + 2025-11-06T01:10:47.9900032 - 64514ca7-26a0-4f2a-8336-b58a87e1d72e + 1d4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies the List of Service Tags that should be allowed by the firewall. + false + Unique identifier for the user that owns the record. 1033 - 64514ca7-26a0-4f2a-8336-b58a87e1d72e + 1d4b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies the List of Service Tags that should be allowed by the firewall. + false + Unique identifier for the user that owns the record. 1033 - ba2a31ff-dfc0-45f5-bca0-3c22783e4d50 + 1e4b9c67-adba-f011-bbd3-7c1e52365f30 - true - List of Service Tags to be allowed by the firewall rule + false + Owning User 1033 - ba2a31ff-dfc0-45f5-bca0-3c22783e4d50 + 1e4b9c67-adba-f011-bbd3-7c1e52365f30 - true - List of Service Tags to be allowed by the firewall rule + false + Owning User 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -104269,13 +110167,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -104287,110 +110185,103 @@ false - false + true canmodifysearchsettings false - true + false false false true - true + false true - allowedservicetagsforfirewall - 2025-11-06T01:17:44.68 + owninguser + 2025-11-06T01:10:47.9900032 - false + true canmodifyrequirementlevelsettings None - AllowedServiceTagsForFirewall + OwningUser - StringType + LookupType - 1.0.0.15 - false - 0 + 9.0.0.0 + true + - Text - Auto - 4000 - - - Text - - - false - 0 - 8000 + None + + systemuser + - - 55d2562c-d421-4d72-b56a-fcc1e80cee04 + + 85a4a17b-87ad-433d-88d5-78e0fd4003de - Boolean + Uniqueidentifier false false false - false + true canmodifyadditionalsettings - false + true - 165 - 1900-01-01T00:00:00 + 36 + 2025-11-06T01:10:48.1629952 - 0b83e8f1-83e2-4ab9-9f01-f3198b96d848 + 554b9c67-adba-f011-bbd3-7c1e52365f30 - true - Indicates whether auditing of changes to entity is allowed when no attributes have changed. + false + Unique identifier of the associated solution. 1033 - 0b83e8f1-83e2-4ab9-9f01-f3198b96d848 + 554b9c67-adba-f011-bbd3-7c1e52365f30 - true - Indicates whether auditing of changes to entity is allowed when no attributes have changed. + false + Unique identifier of the associated solution. 1033 - 06b5fcae-e056-45c7-8364-2c15ee9a471f + 564b9c67-adba-f011-bbd3-7c1e52365f30 - true - Allow Entity Level Auditing + false + Solution 1033 - 06b5fcae-e056-45c7-8364-2c15ee9a471f + 564b9c67-adba-f011-bbd3-7c1e52365f30 - true - Allow Entity Level Auditing + false + Solution 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false - false + true iscustomizable - true + false false false @@ -104399,11 +110290,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable false @@ -104417,209 +110308,102 @@ false - false + true canmodifysearchsettings false - true + false false false true false true - allowentityonlyaudit - 1900-01-01T00:00:00 + solutionid + 2025-11-06T01:10:48.1629952 - false + true canmodifyrequirementlevelsettings SystemRequired - AllowEntityOnlyAudit + SolutionId - BooleanType + UniqueidentifierType - 5.0.0.0 + 9.0.0.0 false - 0 - - true - - 453bbbaf-1e95-4a8e-8179-7266ccbaa3bd - - - - - 7fe5f56e-0ae3-4ff2-801b-f36483a6ede5 - - true - Allow Audit of changes to entity when no attribute is changed - 1033 - - - - 7fe5f56e-0ae3-4ff2-801b-f36483a6ede5 - - true - Allow Audit of changes to entity when no attribute is changed - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_allowentityonlyaudit - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 661a3047-bd83-4e5a-905f-9f2a3131ae14 - - true - No - 1033 - - - - 661a3047-bd83-4e5a-905f-9f2a3131ae14 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 0b6ed8e8-20c5-4496-b1b9-35aa0661cc43 - - true - Yes - 1033 - - - - 0b6ed8e8-20c5-4496-b1b9-35aa0661cc43 - - true - Yes - 1033 - - - - 1 - - - - - 0 + + - - fa9c6f5e-8042-4006-bf15-2e604f7fb80a + + ed8e9ff4-d61c-4d9c-a2ea-ff2e21ef12cb - Boolean + State false false false false canmodifyadditionalsettings - false + true - 10182 - 2025-11-06T06:14:32.3970048 + 25 + 2025-11-06T01:10:48.0199936 - 622e47fb-7c4d-47ac-b77c-a297351eaaf7 + 344b9c67-adba-f011-bbd3-7c1e52365f30 true - Enables ends-with searches in grids with the use of a leading wildcard on all tables in the environment + Status of the Managed Identity 1033 - 622e47fb-7c4d-47ac-b77c-a297351eaaf7 + 344b9c67-adba-f011-bbd3-7c1e52365f30 true - Enables ends-with searches in grids with the use of a leading wildcard on all tables in the environment + Status of the Managed Identity 1033 - aa23c48a-c9a1-45aa-a548-72ab8fbd4b30 + 354b9c67-adba-f011-bbd3-7c1e52365f30 true - Allow Leading Wildcards In Grid Search + Status 1033 - aa23c48a-c9a1-45aa-a548-72ab8fbd4b30 + 354b9c67-adba-f011-bbd3-7c1e52365f30 true - Allow Leading Wildcards In Grid Search + Status 1033 - organization + managedidentity true canmodifyauditsettings - false + true false false iscustomizable - false + true false - false + true true canmodifyglobalfiltersettings @@ -104631,7 +110415,7 @@ false isrenameable - false + true false false @@ -104643,145 +110427,165 @@ false - false + true canmodifysearchsettings true - true + false true true true true true - allowleadingwildcardsingridsearch - 2025-11-06T06:14:32.3970048 + statecode + 2025-11-06T01:10:48.0199936 - false + true canmodifyrequirementlevelsettings SystemRequired - AllowLeadingWildcardsInGridSearch + statecode - BooleanType + StateType - 9.1.0.0 + 9.0.0.0 false - 0 + - false + - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 3a4b9c67-adba-f011-bbd3-7c1e52365f30 - 05aedb96-402f-4dff-86e7-54b577874b2f + 3c4b9c67-adba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + Status of the Managed Identity 1033 - 05aedb96-402f-4dff-86e7-54b577874b2f + 3c4b9c67-adba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + Status of the Managed Identity 1033 - - + + + 3b4b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Status + 1033 + + + + 3b4b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Status + 1033 + - false + true false iscustomizable - false + true - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + managedidentity_statecode + State + 9.0.0.0 + + + + + + + + + + + false + true + + + + 374b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Active + 1033 + + + + 374b9c67-adba-f011-bbd3-7c1e52365f30 - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + Active + 1033 + + + + 0 + + 1 + Active + + + + + + + + + + + false + true + + + + 394b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Inactive + 1033 + + + + 394b9c67-adba-f011-bbd3-7c1e52365f30 - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + Inactive + 1033 + + + + 1 + + 2 + Inactive + + + - - 0 + - 6616c60e-61b1-4283-ab3e-11d64d01f4c6 + 3c5a1d89-55e3-4d77-a97c-38883003c84e - allowleadingwildcardsingridsearch + statecode Virtual false false @@ -104791,8 +110595,8 @@ canmodifyadditionalsettings true - 10183 - 2025-11-06T06:14:32.4099968 + 26 + 2025-11-06T01:10:48.0370048 @@ -104802,7 +110606,7 @@ - organization + managedidentity @@ -104852,88 +110656,88 @@ false false - allowleadingwildcardsingridsearchname - 2025-11-06T06:14:32.4099968 + statecodename + 2025-11-06T01:10:48.0370048 true canmodifyrequirementlevelsettings None - allowleadingwildcardsingridsearchName + statecodeName VirtualType - 9.1.0.0 + 9.0.0.0 true - - 6f960ea3-39bf-4127-9fa0-83a605900c63 + + 350b5966-0665-47ee-9518-87f4d46218be - Integer + Status false false false false canmodifyadditionalsettings - false + true - 10184 - 2025-11-06T06:14:32.4429952 + 27 + 2025-11-06T01:10:48.0370048 - 29b099bb-b867-4757-b06b-f60980bcd5a9 + 3e4b9c67-adba-f011-bbd3-7c1e52365f30 true - Enables ends-with searches in grids with the use of a leading wildcard on all tables in the environment + Reason for the status of the Managed Identity 1033 - 29b099bb-b867-4757-b06b-f60980bcd5a9 + 3e4b9c67-adba-f011-bbd3-7c1e52365f30 true - Enables ends-with searches in grids with the use of a leading wildcard on all tables in the environment + Reason for the status of the Managed Identity 1033 - 02dd8822-d551-4972-b9a6-f4db85a17586 + 3f4b9c67-adba-f011-bbd3-7c1e52365f30 true - Allow Leading Wildcards In Quick Find + Status Reason 1033 - 02dd8822-d551-4972-b9a6-f4db85a17586 + 3f4b9c67-adba-f011-bbd3-7c1e52365f30 true - Allow Leading Wildcards In Quick Find + Status Reason 1033 - organization + managedidentity true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -104948,7 +110752,7 @@ false isrenameable - false + true false false @@ -104960,7 +110764,7 @@ false - false + true canmodifysearchsettings true @@ -104971,93 +110775,187 @@ true true - allowleadingwildcardsinquickfind - 2025-11-06T06:14:32.4429952 + statuscode + 2025-11-06T01:10:48.0370048 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AllowLeadingWildcardsInQuickFind + statuscode - IntegerType + StatusType - 9.1.0.0 + 9.0.0.0 false - 0 + - None - 100 - 0 - - 0 + + + 444b9c67-adba-f011-bbd3-7c1e52365f30 + + + + + 464b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Reason for the status of the Managed Identity + 1033 + + + + 464b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Reason for the status of the Managed Identity + 1033 + + + + + + 454b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Status Reason + 1033 + + + + 454b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Status Reason + 1033 + + + + true + + false + iscustomizable + true + + false + true + managedidentity_statuscode + Status + 9.0.0.0 + + + + + + + + + + + false + true + + + + 414b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Active + 1033 + + + + 414b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Active + 1033 + + + + 1 + + 0 + + + + + + + + + + + + false + true + + + + 434b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Inactive + 1033 + + + + 434b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Inactive + 1033 + + + + 2 + + 1 + + + + + + - - e94146c3-f424-4b8b-ae02-2148d1b2c02f + + 634b8666-8073-4958-84f4-edf094ef9040 - - Boolean + statuscode + Virtual false false false - false + true canmodifyadditionalsettings true - 428 - 2025-11-06T00:19:21.5270016 + 28 + 2025-11-06T01:10:48.0530048 - - - 6af02a2e-e42e-4f8e-9e37-718190fa3473 - - true - Enable access to legacy web client UI - 1033 - - - - 6af02a2e-e42e-4f8e-9e37-718190fa3473 - - true - Enable access to legacy web client UI - 1033 - + + - - - 61a4f78d-303b-4d91-8919-a2e45a365651 - - true - Enable access to legacy web client UI - 1033 - - - - 61a4f78d-303b-4d91-8919-a2e45a365651 - - true - Enable access to legacy web client UI - 1033 - + + - organization + managedidentity true canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -105066,13 +110964,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -105084,146 +110982,39 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - allowlegacyclientexperience - 2025-11-06T00:19:21.5270016 + statuscodename + 2025-11-06T01:10:48.0530048 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AllowLegacyClientExperience + statuscodeName - BooleanType + VirtualType 9.0.0.0 - false - 0 - - true - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - - 0 + true + + - - d0bd3c59-1e37-449b-a80a-5d44d8ff188e + + f891e005-ba2e-4945-8606-1ff154837a92 - Boolean + Picklist false false false @@ -105232,46 +111023,46 @@ canmodifyadditionalsettings true - 427 - 2025-11-06T00:19:21.5730048 + 51 + 2025-11-06T01:10:49.2870016 - fcebc083-201f-4bd3-80dc-580eb4b4a91f + 57a0002c-2395-4239-a832-9d3a26d125b2 true - Enable embedding of certain legacy dialogs in Unified Interface browser client + Where the Scope of the SubjectName for Managed Identity will be determined. 1033 - fcebc083-201f-4bd3-80dc-580eb4b4a91f + 57a0002c-2395-4239-a832-9d3a26d125b2 true - Enable embedding of certain legacy dialogs in Unified Interface browser client + Where the Scope of the SubjectName for Managed Identity will be determined. 1033 - 59f40634-2fc6-494d-9982-8fd10832e5a7 + 733b0f30-3340-408a-b399-c9be62dc8e45 true - Enable embedding of certain legacy dialogs in Unified Interface browser client + Subject Scope 1033 - 59f40634-2fc6-494d-9982-8fd10832e5a7 + 733b0f30-3340-408a-b399-c9be62dc8e45 true - Enable embedding of certain legacy dialogs in Unified Interface browser client + Subject Scope 1033 - organization + managedidentity @@ -105310,58 +111101,72 @@ false - false + true canmodifysearchsettings - false + true true - false - false + true + true true true true - allowlegacydialogsembedding - 2025-11-06T00:19:21.5730048 + subjectscope + 2025-11-06T01:10:49.2870016 - false + true canmodifyrequirementlevelsettings SystemRequired - AllowLegacyDialogsEmbedding + SubjectScope - BooleanType + PicklistType 9.0.0.0 false 0 - true + 0 - 315e90f0-678b-4e4d-97f1-886050c3cb46 + ab4b9c67-adba-f011-bbd3-7c1e52365f30 - 05aedb96-402f-4dff-86e7-54b577874b2f + ad4b9c67-adba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + Select a scope to indicate the level of the subject name - Global Scope or Enviornment Scope or Dev Only Scope 1033 - 05aedb96-402f-4dff-86e7-54b577874b2f + ad4b9c67-adba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + Select a scope to indicate the level of the subject name - Global Scope or Enviornment Scope or Dev Only Scope 1033 - - + + + ac4b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Subject Scope + 1033 + + + + ac4b9c67-adba-f011-bbd3-7c1e52365f30 + + true + Subject Scope + 1033 + false @@ -105370,144 +111175,155 @@ iscustomizable false - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + subjectscope + Picklist + 9.0.0.0 + + + + + + + + + + + false + true + + + + 88789127-fc36-4463-a7e5-1925a84ae52f + + true + GlobalScope + 1033 + + + + 88789127-fc36-4463-a7e5-1925a84ae52f - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + GlobalScope + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 25e99b83-e6e8-46ec-b6c7-f8777a84aaac + + true + EnviornmentScope + 1033 + + + + 25e99b83-e6e8-46ec-b6c7-f8777a84aaac - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + EnviornmentScope + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + 67606c34-8536-4781-a933-6a553e05b3b7 + + true + DevOnlyScope + 1033 + + + + 67606c34-8536-4781-a933-6a553e05b3b7 + + true + DevOnlyScope + 1033 + + + + 2 + + + + - + + 0 + + - - 19d5b741-0ed4-4e5c-b3b3-c6e5bde7e37b + + 080425ce-f12a-4a2d-a8d8-4deffe581d53 - - Boolean + subjectscope + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 58 - 1900-01-01T00:00:00 + 52 + 2025-11-06T01:10:49.3030016 - - - b999ba00-2341-db11-898a-0007e9e17ebd - - true - Indicates whether marketing emails execution is allowed. - 1033 - - - - b999ba00-2341-db11-898a-0007e9e17ebd - - true - Indicates whether marketing emails execution is allowed. - 1033 - + + - - - cf0915ae-fb40-4670-8bc6-bbce31c0e98b - - true - Allow Marketing Email Execution - 1033 - - - - cf0915ae-fb40-4670-8bc6-bbce31c0e98b - - true - Allow Marketing Email Execution - 1033 - + + - organization + managedidentity true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -105518,13 +111334,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -105536,206 +111352,99 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - allowmarketingemailexecution - 1900-01-01T00:00:00 + subjectscopename + 2025-11-06T01:10:49.3030016 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AllowMarketingEmailExecution + subjectscopeName - BooleanType + VirtualType - 5.0.0.0 - false - 0 - - false - - ada613fa-4b66-4ad3-a4a8-61426b647b28 - - - - - c8161293-f748-42f8-8f46-a3e86505dbc2 - - true - Indication of whether marketing emails execution is allowed. - 1033 - - - - c8161293-f748-42f8-8f46-a3e86505dbc2 - - true - Indication of whether marketing emails execution is allowed. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_allowmarketingemailexecution - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 51c888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 51c888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 53c888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 53c888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - - - 0 + 9.0.0.0 + true + + - - bf6efc48-e9d8-469f-8b3a-3732e5615ff5 + + cfb9a269-48d7-4bb0-8957-dfe9bb2d34bf - Boolean + Uniqueidentifier false false false - false + true canmodifyadditionalsettings true - 10021 - 2025-11-06T01:17:44.7100032 + 37 + 2025-11-06T01:10:48.1769984 - ab25144d-bb47-4a52-89f5-fc142f665ebc + 574b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies whether Microsoft Trusted Service Tags are allowed + false + For internal use only. 1033 - ab25144d-bb47-4a52-89f5-fc142f665ebc + 574b9c67-adba-f011-bbd3-7c1e52365f30 - true - Information that specifies whether Microsoft Trusted Service Tags are allowed + false + For internal use only. 1033 - 7e1a6b6b-ef60-4d9a-b63a-6559fa8690c4 + 584b9c67-adba-f011-bbd3-7c1e52365f30 - true - Allow Microsoft Trusted Service Tags + false + Solution 1033 - 7e1a6b6b-ef60-4d9a-b63a-6559fa8690c4 + 584b9c67-adba-f011-bbd3-7c1e52365f30 - true - Allow Microsoft Trusted Service Tags + false + Solution 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false - false + true iscustomizable - true + false false false @@ -105744,11 +111453,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable false @@ -105762,178 +111471,99 @@ false - false + true canmodifysearchsettings false - true + false false false - true - true - true + false + false + false - allowmicrosofttrustedservicetags - 2025-11-06T01:17:44.7100032 + supportingsolutionid + 2025-11-06T01:10:48.1769984 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AllowMicrosoftTrustedServiceTags + SupportingSolutionId - BooleanType + UniqueidentifierType - 1.0.0.15 + 9.0.0.0 false - 0 + - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - - 0 - e4fce6e6-7206-4c3f-9e17-4d04eae7202a + ddd3142a-486c-400d-831e-7e2ec63f9c74 - allowmicrosofttrustedservicetags - Virtual + + Uniqueidentifier false false false - true + false canmodifyadditionalsettings true - 10022 - 2025-11-06T01:17:44.7270016 + 50 + 2025-11-06T01:10:49.2700032 - - + + + 80834036-1cab-4617-8b82-91438d249b21 + + true + The Id of the Azure Active Directory Tenant that the Application is part of. + 1033 + + + + 80834036-1cab-4617-8b82-91438d249b21 + + true + The Id of the Azure Active Directory Tenant that the Application is part of. + 1033 + - - + + + 85df9d1b-21aa-47a9-bca3-3cf1e575941a + + true + TenantId + 1033 + + + + 85df9d1b-21aa-47a9-bca3-3cf1e575941a + + true + TenantId + 1033 + - organization + managedidentity true canmodifyauditsettings - false + true false - true + false iscustomizable - true + false false false @@ -105942,15 +111572,15 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false - false + true false false false @@ -105962,91 +111592,91 @@ true canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - allowmicrosofttrustedservicetagsname - 2025-11-06T01:17:44.7270016 + tenantid + 2025-11-06T01:10:49.2700032 true canmodifyrequirementlevelsettings None - allowmicrosofttrustedservicetagsName + TenantId - VirtualType + UniqueidentifierType - 1.0.0.15 - true + 9.0.0.0 + false - + - - c954f1fe-9102-dc11-aa9d-00123f558caf + + 09e9602b-3380-4dad-a5d7-f01cd5b3ee50 - Boolean + Integer false false false false canmodifyadditionalsettings - false + true - 119 - 1900-01-01T00:00:00 + 32 + 2025-11-06T01:10:48.0999936 - 795b34c2-4103-dc11-aa9d-00123f558caf + 4d4b9c67-adba-f011-bbd3-7c1e52365f30 true - Indicates whether background offline synchronization in Microsoft Office Outlook is allowed. + For internal use only. 1033 - 795b34c2-4103-dc11-aa9d-00123f558caf + 4d4b9c67-adba-f011-bbd3-7c1e52365f30 true - Indicates whether background offline synchronization in Microsoft Office Outlook is allowed. + For internal use only. 1033 - d63e73f0-5c31-4339-ade9-308d73cdbd89 + 4e4b9c67-adba-f011-bbd3-7c1e52365f30 true - Allow Offline Scheduled Synchronization + Time Zone Rule Version Number 1033 - d63e73f0-5c31-4339-ade9-308d73cdbd89 + 4e4b9c67-adba-f011-bbd3-7c1e52365f30 true - Allow Offline Scheduled Synchronization + Time Zone Rule Version Number 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false @@ -106067,7 +111697,7 @@ false isrenameable - false + true false false @@ -106079,7 +111709,7 @@ false - false + true canmodifysearchsettings false @@ -106090,189 +111720,87 @@ true true - allowofflinescheduledsyncs - 1900-01-01T00:00:00 + timezoneruleversionnumber + 2025-11-06T01:10:48.0999936 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AllowOfflineScheduledSyncs + TimeZoneRuleVersionNumber - BooleanType + IntegerType - 5.0.0.0 + 9.0.0.0 false 0 - - false - - b1b9b957-63b5-4afa-8bc7-affe4b883cca - - - - - 8b758d5d-6657-4f07-8648-629e79afd621 - - true - Flag to enable or disable background offline synchronization in Microsoft Office Outlook. - 1033 - - - - 8b758d5d-6657-4f07-8648-629e79afd621 - - true - Flag to enable or disable background offline synchronization in Microsoft Office Outlook. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_allowofflinescheduledsyncs - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 7b5b34c2-4103-dc11-aa9d-00123f558caf - - true - No - 1033 - - - - 7b5b34c2-4103-dc11-aa9d-00123f558caf - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 7d5b34c2-4103-dc11-aa9d-00123f558caf - - true - Yes - 1033 - - - - 7d5b34c2-4103-dc11-aa9d-00123f558caf - - true - Yes - 1033 - - - - 1 - - - - + + None + 2147483647 + -1 + 0 - - cc2e82df-9ce8-4843-bc40-79cbae9751ed + + 6a13a9f3-2db3-4fe5-83b0-f72aa3148626 - Boolean + Integer false false false false canmodifyadditionalsettings - false + true - 57 - 1900-01-01T00:00:00 + 33 + 2025-11-06T01:10:48.1299968 - a426e7d6-2241-db11-898a-0007e9e17ebd + 4f4b9c67-adba-f011-bbd3-7c1e52365f30 true - Indicates whether scheduled synchronizations to Outlook are allowed. + Time zone code that was in use when the record was created. 1033 - a426e7d6-2241-db11-898a-0007e9e17ebd + 4f4b9c67-adba-f011-bbd3-7c1e52365f30 true - Indicates whether scheduled synchronizations to Outlook are allowed. + Time zone code that was in use when the record was created. 1033 - 57b8e9a9-13b3-4be0-9b89-65c5e07ff7ea + 504b9c67-adba-f011-bbd3-7c1e52365f30 true - Allow Scheduled Synchronization + UTC Conversion Time Zone Code 1033 - 57b8e9a9-13b3-4be0-9b89-65c5e07ff7ea + 504b9c67-adba-f011-bbd3-7c1e52365f30 true - Allow Scheduled Synchronization + UTC Conversion Time Zone Code 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false @@ -106293,7 +111821,7 @@ false isrenameable - false + true false false @@ -106305,7 +111833,7 @@ false - false + true canmodifysearchsettings false @@ -106316,135 +111844,33 @@ true true - allowoutlookscheduledsyncs - 1900-01-01T00:00:00 + utcconversiontimezonecode + 2025-11-06T01:10:48.1299968 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AllowOutlookScheduledSyncs + UTCConversionTimeZoneCode - BooleanType + IntegerType - 5.0.0.0 + 9.0.0.0 false 0 - - false - - ea4183d6-60bd-491a-b8bf-4b530e123771 - - - - - a4bc730c-41f7-4017-ba08-a7538cd3d9c6 - - true - Indication of whether scheduled synchronizations to Outlook are allowed. - 1033 - - - - a4bc730c-41f7-4017-ba08-a7538cd3d9c6 - - true - Indication of whether scheduled synchronizations to Outlook are allowed. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_allowoutlookscheduledsyncs - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 55c888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 55c888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 57c888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 57c888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - - + + None + 2147483647 + -1 + 0 - - 9abea9a0-0610-447d-a0c0-72ad01d4cab1 + + 7c9b0c93-3083-4488-9db6-a90398822fc6 - Boolean + Integer false false false @@ -106453,46 +111879,32 @@ canmodifyadditionalsettings false - 10188 - 2025-11-06T06:14:32.52 + 53 + 2025-11-06T01:10:49.3170048 - 9b96647f-19ea-4674-97b3-da55d4dffd92 + 3c6eb7e0-37d0-4577-939b-d63fed8d2846 true - Control whether the organization Allow Redirect Legacy Admin Settings To Modern UI + Version indicating the format of the FIC subject. 1033 - 9b96647f-19ea-4674-97b3-da55d4dffd92 + 3c6eb7e0-37d0-4577-939b-d63fed8d2846 true - Control whether the organization Allow Redirect Legacy Admin Settings To Modern UI + Version indicating the format of the FIC subject. 1033 - - - cfb6fea6-1fbf-46d2-88a3-a659dc7c16e5 - - true - Allow Redirect Legacy Admin Settings To Modern UI - 1033 - - - - cfb6fea6-1fbf-46d2-88a3-a659dc7c16e5 - - true - Allow Redirect Legacy Admin Settings To Modern UI - 1033 - + + - organization + managedidentity @@ -106542,135 +111954,33 @@ true true - allowredirectadminsettingstomodernui - 2025-11-06T06:14:32.52 + version + 2025-12-14T01:53:55.5330048 false canmodifyrequirementlevelsettings - SystemRequired + None - AllowRedirectAdminSettingsToModernUI + Version - BooleanType + IntegerType - 9.1.0.0 + 9.0.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + + None + 2147483647 + 0 0 - - a099d1ff-818b-4cd0-b45b-4261263a3b10 + + df485a53-3d61-4e4d-a9e6-493196aadb2b - allowredirectadminsettingstomodernui - Virtual + + BigInt false false false @@ -106679,147 +111989,56 @@ canmodifyadditionalsettings true - 10189 - 2025-11-06T06:14:32.5369984 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - allowredirectadminsettingstomodernuiname - 2025-11-06T06:14:32.5369984 - - true - canmodifyrequirementlevelsettings - None - - allowredirectadminsettingstomodernuiName - - - VirtualType - - 9.1.0.0 - true - - - - - 09c38e2a-fab3-4959-964d-75060aa8ea1d - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 120 - 1900-01-01T00:00:00 + 29 + 2025-11-06T01:10:48.0669952 - 5841b506-2341-db11-898a-0007e9e17ebd + 474b9c67-adba-f011-bbd3-7c1e52365f30 - true - Indicates whether users are allowed to send email to unresolved parties (parties must still have an email address). + false + Version Number 1033 - 5841b506-2341-db11-898a-0007e9e17ebd + 474b9c67-adba-f011-bbd3-7c1e52365f30 - true - Indicates whether users are allowed to send email to unresolved parties (parties must still have an email address). + false + Version Number 1033 - 5e5dd4cd-ac05-45c5-8264-c28c5cb0bad5 + 484b9c67-adba-f011-bbd3-7c1e52365f30 - true - Allow Unresolved Address Email Send + false + Version Number 1033 - 5e5dd4cd-ac05-45c5-8264-c28c5cb0bad5 + 484b9c67-adba-f011-bbd3-7c1e52365f30 - true - Allow Unresolved Address Email Send + false + Version Number 1033 - organization + managedidentity - true + false canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -106830,16 +112049,16 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false - false + true false false @@ -106848,1187 +112067,2183 @@ false - false + true canmodifysearchsettings false - true + false false false true - true + false true - allowunresolvedpartiesonemailsend - 1900-01-01T00:00:00 + versionnumber + 2025-11-06T01:10:48.0669952 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AllowUnresolvedPartiesOnEmailSend + VersionNumber - BooleanType + BigIntType - 5.0.0.0 + 9.0.0.0 false - 0 - - false - - 85c99d9c-688e-44a2-90a1-0c12cd36b4d8 - - - - - 49f91c89-bb3b-4448-ae0e-609979cfa336 - - true - Flag to allow the user to send email to unresolved parties (parties must still have an email address). - 1033 - - - - 49f91c89-bb3b-4448-ae0e-609979cfa336 - - true - Flag to allow the user to send email to unresolved parties (parties must still have an email address). - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_allowunresolvedpartiesonemailsend - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 59c888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 59c888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 5bc888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 5bc888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - - - 0 + + + 9223372036854775807 + -9223372036854775808 - - eb35f4cb-01a9-4d8a-b8db-d91951284782 + + false + false + false + + false + canbeincustomentityassociation + false + + + false + canbeinmanytomany + true + + + false + canbeprimaryentityinrelationship + true + + + false + canberelatedentityinrelationship + true + + true + + true + canchangetrackingbeenabled + true + + + false + cancreateattributes + false + + + false + cancreatecharts + true + + + false + cancreateforms + true + + + false + cancreateviews + true + + + false + canenablesynctoexternalsearchindex + false + + + true + canmodifyadditionalsettings + false + + true + false + Local + 2025-11-06T01:10:47.7869952 + + + false + + + + c3dbaa56-0a74-4ff2-a5fb-599a0c02cd69 + + true + Contains data to represent an Azure Active Directory Application used to connect to secure web-hosted resources. + 1033 + + + + c3dbaa56-0a74-4ff2-a5fb-599a0c02cd69 - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 211 - 1900-01-01T00:00:00 - - - - - 38a1d991-0fce-4374-a2a4-1c9cabe02b19 - - true - Indicates whether individuals can select their form mode preference in their personal options. - 1033 - - - - 38a1d991-0fce-4374-a2a4-1c9cabe02b19 - - true - Indicates whether individuals can select their form mode preference in their personal options. - 1033 - - - - - - fc9afcfe-b25a-4f04-8572-d739fcb3b4e2 - - true - Allow User Form Mode Preference - 1033 - - - - fc9afcfe-b25a-4f04-8572-d739fcb3b4e2 - - true - Allow User Form Mode Preference - 1033 - - - organization - - - + true + Contains data to represent an Azure Active Directory Application used to connect to secure web-hosted resources. + 1033 + + + + + + 7a300125-d07d-420d-a5bf-8b5900dddc68 + + true + Managed Identities + 1033 + + + + 7a300125-d07d-420d-a5bf-8b5900dddc68 + + true + Managed Identities + 1033 + + + + + + e07ec726-9994-4111-8d08-9d28f948904f + + true + Managed Identity + 1033 + + + + e07ec726-9994-4111-8d08-9d28f948904f + + true + Managed Identity + 1033 + + + false + + false + false + false + false + + + + + false + false + false + false + + true + canmodifyauditsettings + false + + false + false + false + + false + canmodifyconnectionsettings + false + + true + + false + iscustomizable + false + + false + false + + false + canmodifyduplicatedetectionsettings + true + + false + false + false + false + false + false + false + + false + canmodifymailmergesettings + true + + true + + false + ismappable + false + + false + false + + false + canmodifymobileclientreadonly + false + + true + + false + isrenameable + false + + false + false + false + true + true + true + + false + canmodifyqueuesettings + false + + + false + canmodifymobilevisibility + false + + + false + canmodifymobileclientvisibility + false + + managedidentity + + + + fa4a9c67-adba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + lk_managedidentity_createdby + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_managedidentity_createdby + createdby + managedidentity + createdby + + 0 + + + 004b9c67-adba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - allowuserformmodepreference - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - AllowUserFormModePreference - - - BooleanType - - 5.0.0.0 - false - 0 - - true - - 2a257c44-5800-47ce-8281-711013d87690 - - - - - 5a1ce94e-7b5a-4859-bcca-1c17750aab56 - - true - Indicates whether individuals can select their form mode preference in their personal options. - 1033 - - - - 5a1ce94e-7b5a-4859-bcca-1c17750aab56 - - true - Indicates whether individuals can select their form mode preference in their personal options. - 1033 - - - - - - 17bba173-28c1-4395-a1e3-dd4715a0b0b0 - - true - Allow User Form Mode Preference - 1033 - - - - 17bba173-28c1-4395-a1e3-dd4715a0b0b0 - - true - Allow User Form Mode Preference - 1033 - - - - false - - false - iscustomizable - false - - false - true - organization_allowuserformmodepreference - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 6c0310b5-4676-43cd-a1c2-e2b23f36e9f3 - - true - No - 1033 - - - - 6c0310b5-4676-43cd-a1c2-e2b23f36e9f3 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 8b6e1227-37bc-48ba-bf41-d3fdad304de6 - - true - Yes - 1033 - - - - 8b6e1227-37bc-48ba-bf41-d3fdad304de6 - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - d24021c6-af69-4908-90fb-a444954d6912 + false + true + lk_managedidentity_createdonbehalfby + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_managedidentity_createdonbehalfby + createdonbehalfby + managedidentity + createdonbehalfby + + 0 + + + 074b9c67-adba-f011-bbd3-7c1e52365f30 - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 10206 - 2025-11-06T06:14:32.7399936 - - - - - 45c3f113-0820-4b53-a596-3a70545a55db - - true - Flag to indicate if allow end users to hide system views in model-driven apps is enabled - 1033 - - - - 45c3f113-0820-4b53-a596-3a70545a55db - - true - Flag to indicate if allow end users to hide system views in model-driven apps is enabled - 1033 - - - - - - 4aca68b1-1446-4a81-817b-f119f0b1e11d - - true - Allow users hiding system views - 1033 - - - - 4aca68b1-1446-4a81-817b-f119f0b1e11d - - true - Allow users hiding system views - 1033 - - - organization - - - - true - canmodifyauditsettings - false - - false + false - false + true iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - + false + true + lk_managedidentity_modifiedby + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_managedidentity_modifiedby + modifiedby + managedidentity + modifiedby + + 0 + + + 0d4b9c67-adba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - allowusershidingsystemviews - 2025-11-06T06:14:32.7399936 - - false - canmodifyrequirementlevelsettings - SystemRequired - - AllowUsersHidingSystemViews - - - BooleanType - - 9.1.0.0 - false - 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - + + false + true + lk_managedidentity_modifiedonbehalfby + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - cfb6c967-167a-4ba4-a6d1-4c1efa029ae7 + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_managedidentity_modifiedonbehalfby + modifiedonbehalfby + managedidentity + modifiedonbehalfby + + 0 + + + 1f4b9c67-adba-f011-bbd3-7c1e52365f30 - allowusershidingsystemviews - Virtual - false - false - false - + false + true - canmodifyadditionalsettings + iscustomizable true - - 10207 - 2025-11-06T06:14:32.7399936 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false + + false + true + user_managedidentity + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_managedidentity + owninguser + managedidentity + owninguser + + 0 + + + 264b9c67-adba-f011-bbd3-7c1e52365f30 + + false true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - false - false - false - + true + team_managedidentity + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_managedidentity + owningteam + managedidentity + owningteam + + 0 + + + 2b4b9c67-adba-f011-bbd3-7c1e52365f30 + + false + true - isrenameable + iscustomizable true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - allowusershidingsystemviewsname - 2025-11-06T06:14:32.7399936 - - true - canmodifyrequirementlevelsettings - None - - allowusershidingsystemviewsName - - - VirtualType - - 9.1.0.0 - true - - - - - 99d2a07a-beaf-43dc-82b3-c1621089cba7 + + false + true + owner_managedidentity + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + ownerid + owner + owner_managedidentity + ownerid + managedidentity + ownerid + + 0 + + + 2f4b9c67-adba-f011-bbd3-7c1e52365f30 - - Boolean - false - false - false - - false - canmodifyadditionalsettings - true - - 249 - 1900-01-01T00:00:00 - - - - - 211cb183-31ff-4e08-b744-22860ce9bff1 - - true - Indicates whether the showing tablet application notification bars in a browser is allowed. - 1033 - - - - 211cb183-31ff-4e08-b744-22860ce9bff1 - - true - Indicates whether the showing tablet application notification bars in a browser is allowed. - 1033 - - - - - - 0d84b069-6df9-4295-a8a9-bff673126cc4 - - true - Allow the showing tablet application notification bars in a browser. - 1033 - - - - 0d84b069-6df9-4295-a8a9-bff673126cc4 - - true - Allow the showing tablet application notification bars in a browser. - 1033 - - - organization - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + business_unit_managedidentity + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_managedidentity + owningbusinessunit + managedidentity + owningbusinessunit + + 0 + + + 8cd09c6d-adba-f011-bbd3-7c1e52365f30 + + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - true - false - false - true - true - true - - allowusersseeappdownloadmessage - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - AllowUsersSeeAppdownloadMessage - - - BooleanType - - 6.0.0.0 - false - 0 - - true - - 3bf0aaab-b730-4daa-999a-fee9b00dce17 - - - - - 6634285b-a37b-4d9f-9fa6-3a2adab78891 - - true - Flag to enable or disable the showing tablet application notification bars in a browser. - 1033 - - - - 6634285b-a37b-4d9f-9fa6-3a2adab78891 - - true - Flag to enable or disable the showing tablet application notification bars in a browser. - 1033 - - - + true + keyvaultreference_ManagedIdentity + None + 9.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + - - - false - - false - iscustomizable - true - - false - true - organization_allowusersseeappdownloadmessage - Boolean - 6.0.0.0 - - - - - - - - - - false - true - - - - 51190052-1c48-476d-8de1-625e6c5490f2 - - true - No - 1033 - - - - 51190052-1c48-476d-8de1-625e6c5490f2 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 7643f515-011e-4a72-8a9f-0b27bedb3e27 - - true - Yes - 1033 - - - - 7643f515-011e-4a72-8a9f-0b27bedb3e27 - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - 4a4975e0-7cb1-415e-b7b7-43d7c264dd03 + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + keyvaultreferenceid + keyvaultreference + keyvaultreference_ManagedIdentity + keyvaultreferenceid + managedidentity + keyvaultreferenceid + + 0 + + + 2025-12-14T01:53:57.24 + 10032 + + + 88bf3d11-d5ba-f011-bbd3-7c1e52365f30 - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 10004 - 2025-11-06T01:05:35.4099968 - - - - - 232eebcf-14b3-4533-be8e-26b7810ce5ef - - true - Warning : Allowing Virtual Entity plugin execution on nested pipeline does not offer transactional support. i.e. if call in native entity pipeline fails, then virtual entity operation will not be reverted. - 1033 - - - - 232eebcf-14b3-4533-be8e-26b7810ce5ef - - true - Warning : Allowing Virtual Entity plugin execution on nested pipeline does not offer transactional support. i.e. if call in native entity pipeline fails, then virtual entity operation will not be reverted. - 1033 - - - - - - 989ec3d1-8f48-4523-9cd7-9a29b5544df3 - - true - Allow Virtual Entity Plugin Execution In Nested Pipeline. - 1033 - - - - 989ec3d1-8f48-4523-9cd7-9a29b5544df3 - - true - Allow Virtual Entity Plugin Execution In Nested Pipeline. - 1033 - - - organization - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable + true + managedidentity_ServiceEndpoint + None + 9.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_ServiceEndpoint + managedidentityid + serviceendpoint + managedidentityid + + 0 + + + 830c7722-e4ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable false - - false - false - false - false - + + false + true + ManagedIdentity_SharePointManagedIdentity_ManagedIdentityId + None + 9.1.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + ManagedIdentity_SharePointManagedIdentity_ManagedIdentityId + managedidentityid + sharepointmanagedidentity + ManagedIdentityId + + 0 + + + 42bf8728-afba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings + iscustomizable false - - + + false + true + managedidentity_pluginpackage + None + 9.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_pluginpackage + managedidentityid + pluginpackage + managedidentityid + + 0 + + + 0f185858-4305-f111-8408-6045bddd6baa + + true + false - canmodifysearchsettings + iscustomizable false - - true - false - false - true - true - true - - allowvirtualentitypluginexecutiononnestedpipeline - 2025-11-06T01:05:35.4099968 - - false - canmodifyrequirementlevelsettings - SystemRequired - - AllowVirtualEntityPluginExecutionOnNestedPipeline - - - BooleanType - - 9.2.0.0 - false - 0 - - false - - 03b46aad-acba-f011-bbd3-7c1e52365f30 - - + + true + true + managedidentity_githubappconfig_ManagedIdentityId + Append + 9.1.0.0 + OneToManyRelationship + + UseCollectionName + Details + - 05b46aad-acba-f011-bbd3-7c1e52365f30 + 1b0bed42-b00e-4dde-8384-09bcb48b07c7 true - Warning : Allowing Virtual Entity plugin execution on nested pipeline does not offer transactional support. i.e. if call in native entity pipeline fails, then virtual entity operation will not be reverted + 1033 - - - 05b46aad-acba-f011-bbd3-7c1e52365f30 - - true - Warning : Allowing Virtual Entity plugin execution on nested pipeline does not offer transactional support. i.e. if call in native entity pipeline fails, then virtual entity operation will not be reverted - 1033 - - - - - 04b46aad-acba-f011-bbd3-7c1e52365f30 + d9a61414-b99f-4858-aa60-4678c9887056 true - Allow Virtual Entity Plugin Execution In Nested Pipeline. - 1033 + + 1030 - 04b46aad-acba-f011-bbd3-7c1e52365f30 + 1b0bed42-b00e-4dde-8384-09bcb48b07c7 true - Allow Virtual Entity Plugin Execution In Nested Pipeline. + 1033 - - - true - - false - iscustomizable - false - - false - true - organization_allowvirtualentitypluginexecutiononnestedpipelines - Boolean - 9.2.0.0 - - - - - - - - - - false - true - - - - b24c11d5-24b9-4185-a8ae-32b315fd4f60 - - true - No - 1033 - - - - b24c11d5-24b9-4185-a8ae-32b315fd4f60 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - c421670d-43d0-4b80-a536-ba2e88dcc598 - - true - Yes - 1033 - - - - c421670d-43d0-4b80-a536-ba2e88dcc598 + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_githubappconfig_ManagedIdentityId + managedidentityid + githubappconfig + ManagedIdentityId + + 1 + + + 7b4b9c67-adba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + managedidentity_SyncErrors + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_SyncErrors + regardingobjectid + syncerror + regardingobjectid_managedidentity + + 0 + + + 814b9c67-adba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + managedidentity_DuplicateMatchingRecord + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_DuplicateMatchingRecord + duplicaterecordid + duplicaterecord + duplicaterecordid_managedidentity + + 0 + + + 854b9c67-adba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + managedidentity_DuplicateBaseRecord + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_DuplicateBaseRecord + baserecordid + duplicaterecord + baserecordid_managedidentity + + 0 + + + 8a4b9c67-adba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + managedidentity_AsyncOperations + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_AsyncOperations + regardingobjectid + asyncoperation + regardingobjectid_managedidentity + + 0 + + + 8e4b9c67-adba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + managedidentity_MailboxTrackingFolders + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_MailboxTrackingFolders + regardingobjectid + mailboxtrackingfolder + regardingobjectid_managedidentity + + 0 + + + 924b9c67-adba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + managedidentity_UserEntityInstanceDatas + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_UserEntityInstanceDatas + objectid + userentityinstancedata + objectid_managedidentity + + 0 + + + 984b9c67-adba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + managedidentity_ProcessSession + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_ProcessSession + regardingobjectid + processsession + regardingobjectid_managedidentity + + 0 + + + 9c4b9c67-adba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + managedidentity_BulkDeleteFailures + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_BulkDeleteFailures + regardingobjectid + bulkdeletefailure + regardingobjectid_managedidentity + + 0 + + + a04b9c67-adba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + managedidentity_PrincipalObjectAttributeAccesses + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_PrincipalObjectAttributeAccesses + objectid + principalobjectattributeaccess + objectid_managedidentity + + 0 + + + 76d09c6d-adba-f011-bbd3-7c1e52365f30 + + false + + false + iscustomizable + false + + true + true + managedidentity_PluginAssembly + None + 9.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_PluginAssembly + managedidentityid + pluginassembly + managedidentityid + + 0 + + + 82d09c6d-adba-f011-bbd3-7c1e52365f30 + + false + + false + iscustomizable + false + + true + true + managedidentity_KeyVaultReference + None + 9.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_KeyVaultReference + managedidentityid + keyvaultreference + managedidentityid + + 0 + + + 597c5088-d5ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + ComponentId_CertificateCredential_Managedidentity + None + 1.0.0.1 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + ComponentId_CertificateCredential_Managedidentity + componentid + certificatecredential + ComponentId_managedidentity + + 0 + + + 5db0958b-ceba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + managedidentity_emailserverprofile_managedidentityid + None + 9.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_emailserverprofile_managedidentityid + managedidentityid + emailserverprofile + managedidentityid + + 0 + + + 74b0958b-ceba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + managedidentity_emailserverprofile_acsmanagedidentityid + None + 9.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_emailserverprofile_acsmanagedidentityid + acsmanagedidentityid + emailserverprofile + acsmanagedidentityid + + 0 + + + 79b0958b-ceba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + managedidentity_emailserverprofile_purviewmanagedidentityid + None + 9.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_emailserverprofile_purviewmanagedidentityid + purviewmanagedidentityid + emailserverprofile + purviewmanagedidentityid + + 0 + + + 7fd21393-f4ba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + PowerPagesManagedIdentity_ManagedIdentity_ManagedIdentity + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + PowerPagesManagedIdentity_ManagedIdentity_ManagedIdentity + managedidentity + powerpagesmanagedidentity + ManagedIdentity + + 1 + + + 74fec5e2-0d30-f111-88b5-7c1e52fa88ee + + false + + true + iscustomizable + false + + false + true + ManagedIdentity_MCPServer_ManagedIdentityId + None + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 97ef3abd-5a15-4652-a341-348cadcf03bf - true - Yes - 1033 - - - - 1 - - - - - 0 - - - 956f5ae5-1b31-4990-afdc-4f99a0be06ee + false + + 1033 + + + + 97ef3abd-5a15-4652-a341-348cadcf03bf + + false + + 1033 + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + ManagedIdentity_MCPServer_ManagedIdentityId + managedidentityid + mcpserver + ManagedIdentityId + + 0 + + + 1f6611f9-2f10-f111-8345-7c1e52216fd8 - allowvirtualentitypluginexecutiononnestedpipeline - Virtual + false + + true + iscustomizable + false + + false + true + managedidentity_emailserverprofile_powerplatformmanagedidentityid + None + 9.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_emailserverprofile_powerplatformmanagedidentityid + powerplatformmanagedidentityid + emailserverprofile + powerplatformmanagedidentityid + + 0 + + + + 8 + UserOwned + + managedidentityid + + managedidentityid + + name + + + true + true + false + true + true + false + false + prvCreateManagedIdentity + e81ade60-0936-48ff-9b73-6d661d51430a + Create + + + true + true + false + true + true + false + false + prvReadManagedIdentity + 5db30ab6-817c-49af-92c4-4aeb15d86ff6 + Read + + + true + true + false + true + true + false + false + prvWriteManagedIdentity + 096d0127-ca2e-4bae-8b5f-47633278f3d3 + Write + + + true + true + false + true + true + false + false + prvDeleteManagedIdentity + c9d0a948-6e50-4101-8a7f-a2ddb9ca339d + Delete + + + true + true + false + true + true + false + false + prvAssignManagedIdentity + f207dac6-5a45-4a9b-9492-59974816841d + Assign + + + true + true + false + true + true + false + false + prvShareManagedIdentity + a7e16dbb-63e8-48b9-b554-d0aab094730d + Share + + + true + true + false + true + true + false + false + prvAppendManagedIdentity + 904dcf95-d792-49e9-9d53-067b70e16cc5 + Append + + + true + true + false + true + true + false + false + prvAppendToManagedIdentity + 491e891e-c12f-4a9b-89eb-17024ec60109 + AppendTo + + + + + ManagedIdentity + + + false + Standard + false + 9.0.0.0 + + + true + canchangehierarchicalrelationship + true + + + false + ManagedIdentities + + + false + + managedidentities + 0 + managedidentities + false + + false + canmodifymobileclientoffline + false + + false + false + + false + false + + + + organization + + e1bd1119-6e9d-45a4-bc15-12051e65a0bd + + 0 + + + 830b8f09-9d95-4f3f-b3d9-e4bebd7e547b + + + String false false false false canmodifyadditionalsettings - true + false - 10005 - 2025-11-06T01:05:35.4230016 + 401 + 1900-01-01T00:00:00 - - + + + 0def96b5-1045-4fa8-98d6-f391d8bef13a + + true + ACI Web Endpoint URL. + 1033 + + + 73609c29-6947-431f-a781-222c3d6d9d99 + + true + URL-adresse for ACI-webslutpunkt. + 1030 + + + + 0def96b5-1045-4fa8-98d6-f391d8bef13a + + true + ACI Web Endpoint URL. + 1033 + - - + + + 1397b6f9-ef07-4250-a630-8d8351022cae + + true + ACI Tenant URL. + 1033 + + + 3ca1e6b1-bdfa-41f9-a9c6-27b4c929803d + + true + URL-adresse for ACI-lejer. + 1030 + + + + 1397b6f9-ef07-4250-a630-8d8351022cae + + true + ACI Tenant URL. + 1033 + organization @@ -108036,7 +114251,7 @@ true canmodifyauditsettings - false + true false @@ -108057,7 +114272,7 @@ false isrenameable - true + false false false @@ -108069,39 +114284,50 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - allowvirtualentitypluginexecutiononnestedpipelinename - 2025-11-06T01:05:35.4230016 + aciwebendpointurl + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - allowvirtualentitypluginexecutiononnestedpipelineName + ACIWebEndpointUrl - VirtualType + StringType - 9.2.0.0 - true - - + 8.2.0.0 + false + 0 + + Text + Auto + 500 + + + Text + + + false + 0 + 1000 - - 2d8c3263-bc82-48ab-96cf-c0a729f52b63 + + 0eb08e1d-f445-46dd-87cc-53bb59a728ee - Boolean + Lookup false false false @@ -108110,42 +114336,56 @@ canmodifyadditionalsettings false - 124 + 65 1900-01-01T00:00:00 - 6a178ca5-2094-43bd-8599-8e9dde0f00f0 + be64cfee-2241-db11-898a-0007e9e17ebd true - Indicates whether Web-based export of grids to Microsoft Office Excel is allowed. + Unique identifier of the template to be used for acknowledgement when a user unsubscribes. 1033 + + 9ffa74d4-6570-49e5-b184-571b4de1c01d + + true + Entydigt id for den skabelon, der bruges til bekræftelse, når en bruger opsiger abonnement. + 1030 + - 6a178ca5-2094-43bd-8599-8e9dde0f00f0 + be64cfee-2241-db11-898a-0007e9e17ebd true - Indicates whether Web-based export of grids to Microsoft Office Excel is allowed. + Unique identifier of the template to be used for acknowledgement when a user unsubscribes. 1033 - dc81a17c-3fbb-420e-9c95-3ca0cf7a7d56 + d77487b2-5928-442c-a6e8-bde8a6752306 true - Allow Export to Excel + Acknowledgement Template 1033 + + d8feb935-167e-485c-97c9-e3c1d825c3dd + + true + Bekræftelsesskabelon + 1030 + - dc81a17c-3fbb-420e-9c95-3ca0cf7a7d56 + d77487b2-5928-442c-a6e8-bde8a6752306 true - Allow Export to Excel + Acknowledgement Template 1033 @@ -108199,134 +114439,31 @@ true true - allowwebexcelexport + acknowledgementtemplateid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - AllowWebExcelExport + AcknowledgementTemplateId - BooleanType + LookupType 5.0.0.0 false - 0 + - true - - 79c2174d-8c0b-4409-9abb-b621af867611 - - - - - c7481c68-2fbd-4cd8-8970-a5d9fc5bd95d - - true - Indicates whether Web-based export of grids to Microsoft Office Excel is permitted. - 1033 - - - - c7481c68-2fbd-4cd8-8970-a5d9fc5bd95d - - true - Indicates whether Web-based export of grids to Microsoft Office Excel is permitted. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_allowwebexcelexport - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 45066759-f598-4096-bef8-458f492626c2 - - true - No - 1033 - - - - 45066759-f598-4096-bef8-458f492626c2 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f3089731-d7f3-4c7f-bd99-eb68a5222e9e - - true - Yes - 1033 - - - - f3089731-d7f3-4c7f-bd99-eb68a5222e9e - - true - Yes - 1033 - - - - 1 - - - - - 0 + None + + template + - 0f6cfa2a-e1bc-4874-89c2-30805272670b + 2114aaa8-02ae-4a46-baf8-eb9030fcc187 - + acknowledgementtemplateid String false false @@ -108336,58 +114473,51 @@ canmodifyadditionalsettings false - 112 + 94 1900-01-01T00:00:00 - caabb2d4-0d28-4f54-967d-fc78d98ec3e1 + 13c56b2b-2341-db11-898a-0007e9e17ebd true - AM designator to use throughout Microsoft Dynamics CRM. + Name of the template to be used for unsubscription acknowledgement. 1033 - - - caabb2d4-0d28-4f54-967d-fc78d98ec3e1 - - true - AM designator to use throughout Microsoft Dynamics CRM. - 1033 - - - - - 9a8c05f2-7f41-48f0-98b3-b9364b083351 + c1c5eaf5-89e9-4a15-a437-f84dbd8ed5cb true - AM Designator - 1033 + Navnet på den skabelon, der bruges til bekræftelse på opsigelse af abonnement. + 1030 - 9a8c05f2-7f41-48f0-98b3-b9364b083351 + 13c56b2b-2341-db11-898a-0007e9e17ebd true - AM Designator + Name of the template to be used for unsubscription acknowledgement. 1033 + + + + organization - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -108418,32 +114548,32 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - amdesignator + acknowledgementtemplateidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - AMDesignator + AcknowledgementTemplateIdName StringType 5.0.0.0 - false + true 0 Text Auto - 25 + 100 Text @@ -108451,10 +114581,10 @@ false 0 - 50 + 320 - 824e4e4e-5255-4f46-b8ab-2e57baee6f4b + cf4fa9cc-6f97-424c-afcf-0db9c99aadf9 Boolean @@ -108466,42 +114596,56 @@ canmodifyadditionalsettings false - 329 - 1900-01-01T00:00:00 + 10148 + 2025-11-06T04:24:47.8899968 - 32cbabbb-998b-4471-a21d-d41b659ae257 + f210a82a-5fd7-4920-ab59-676cd32a2ede true - Indicates whether the appDesignerExperience is enabled for the organization. + Information on whether filtering activity based on entity in app. 1033 + + 59a48bfc-d7f0-4da5-811e-50b72226b56e + + true + Angiver, om filtreringsaktivitet er baseret på objekt i app. + 1030 + - 32cbabbb-998b-4471-a21d-d41b659ae257 + f210a82a-5fd7-4920-ab59-676cd32a2ede true - Indicates whether the appDesignerExperience is enabled for the organization. + Information on whether filtering activity based on entity in app. 1033 - 725a2184-b054-4223-a22e-b31884278bd7 + 6743ad77-87fd-4425-903c-e2922469b11d true - Enable App Designer Experience for this Organization + Enable Rich Editing Experience for Appointment 1033 + + ec02ad6e-5330-4548-a7f0-decd16af13ff + + true + Aktivér udvidet redigeringsoplevelse for aftale + 1030 + - 725a2184-b054-4223-a22e-b31884278bd7 + 6743ad77-87fd-4425-903c-e2922469b11d true - Enable App Designer Experience for this Organization + Enable Rich Editing Experience for Appointment 1033 @@ -108517,7 +114661,7 @@ false iscustomizable - true + false false false @@ -108555,60 +114699,88 @@ true true - appdesignerexperienceenabled - 1900-01-01T00:00:00 + activitytypefilter + 2026-04-04T09:58:58.4969984 false canmodifyrequirementlevelsettings SystemRequired - AppDesignerExperienceEnabled + ActivityTypeFilter BooleanType - 8.2.0.0 + 9.0.0.0 false 0 - + false - f2e09cc0-5299-4e8f-beb6-690b01441df5 + 500a3e85-c8ba-f011-bbd3-7c1e52365f30 - 9ee6e428-688d-4500-bdff-efcbc18ed7e8 + 520a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Information that specifies whether the app designer experience is enabled for the organization. + Is filterting based on activity included in app is enabled 1033 + + e1f4b0b4-6539-4c28-a7e2-c5ad1978482f + + true + Er filtrering baseret på aktivitet, der er inkluderet i appen, aktiveret + 1030 + - 9ee6e428-688d-4500-bdff-efcbc18ed7e8 + 520a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Information that specifies whether the app designer experience is enabled for the organization. + Is filterting based on activity included in app is enabled 1033 - - + + + 510a3e85-c8ba-f011-bbd3-7c1e52365f30 + + true + Is filterting based on activity included in app is enabled + 1033 + + + b9fb7acf-aceb-4a21-972b-8c79b2fd7079 + + true + Er filtrering baseret på aktivitet, der er inkluderet i appen, aktiveret + 1030 + + + + 510a3e85-c8ba-f011-bbd3-7c1e52365f30 + + true + Is filterting based on activity included in app is enabled + 1033 + - false + true false iscustomizable - true + false false true - organization_appdesignerexperienceenabled + organization_activitytypefilter Boolean - 8.2.0.0 + 9.0.0.0 @@ -108623,15 +114795,22 @@ - 3cb59237-98e2-4133-91b8-89f6c16481c4 + 52d0259e-938b-48bb-847b-5a15ba4c77e6 true No 1033 + + 6bd6f732-9f4e-42bd-8962-6057b7838a05 + + true + Ingen + 1030 + - 3cb59237-98e2-4133-91b8-89f6c16481c4 + 52d0259e-938b-48bb-847b-5a15ba4c77e6 true No @@ -108656,15 +114835,22 @@ - 2e321685-df59-4ba6-9cc6-e0c81e9f48e6 + 3cad83d4-b81f-4b60-b934-f9d7937be2aa true Yes 1033 + + ec763428-7c26-49a4-869a-31322f8ad3b2 + + true + Ja + 1030 + - 2e321685-df59-4ba6-9cc6-e0c81e9f48e6 + 3cad83d4-b81f-4b60-b934-f9d7937be2aa true Yes @@ -108676,336 +114862,24 @@ - - 0 - - - f3f09fb3-ceb2-4aad-b01f-68463d4e85b5 - - - Picklist - false - false - false - - false - canmodifyadditionalsettings - true - - 10025 - 2025-11-06T01:17:44.7570048 - - - - - 5560bdf8-055b-4cf4-a5e0-b060845c87fb - - true - Application Based Access Control Mode. 0 is Disabled, 1 is audit mode , 2 is enforcement mode - 1033 - - - - 5560bdf8-055b-4cf4-a5e0-b060845c87fb - - true - Application Based Access Control Mode. 0 is Disabled, 1 is audit mode , 2 is enforcement mode - 1033 - - - - - - 578d5d96-f831-41c3-83d1-92f238cf5f9a - - true - Application Based Access Control Mode - 1033 - - - - 578d5d96-f831-41c3-83d1-92f238cf5f9a - - true - Application Based Access Control Mode - 1033 - - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - applicationbasedaccesscontrolmode - 2025-11-06T01:17:44.7570048 - - false - canmodifyrequirementlevelsettings - SystemRequired - - ApplicationBasedAccessControlMode - - - PicklistType - - 1.0.0.15 - false - 0 - - 0 - - 5774de82-fc43-492e-b058-7259b0445c14 - - - - - 7e117460-aeba-f011-bbd3-7c1e52365f30 - - true - Application Based Access Control Mode. 0 is Disabled, 1 is Enabled, 2 is audit mode, 3 is Enabled for roles - 1033 - - - - 7e117460-aeba-f011-bbd3-7c1e52365f30 - - true - Application Based Access Control Mode. 0 is Disabled, 1 is Enabled, 2 is audit mode, 3 is Enabled for roles - 1033 - - - - - - 7d117460-aeba-f011-bbd3-7c1e52365f30 - - true - Application Based Access Control Mode. - 1033 - - - - 7d117460-aeba-f011-bbd3-7c1e52365f30 - - true - Application Based Access Control Mode. - 1033 - - - - false - - false - iscustomizable - false - - true - true - organization_applicationbasedaccesscontrolmode - Picklist - 1.0.0.15 - - - - - - - - - - - false - true - - - - ce084f1f-2eae-468e-a3db-fce5b6a2f081 - - true - Disabled - 1033 - - - - ce084f1f-2eae-468e-a3db-fce5b6a2f081 - - true - Disabled - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 543b1635-357c-4de1-8896-48861f9f1bd0 - - true - Enabled - 1033 - - - - 543b1635-357c-4de1-8896-48861f9f1bd0 - - true - Enabled - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - 994f532c-f32d-4e67-b2ed-bf0fc4c5d6d8 - - true - AuditMode - 1033 - - - - 994f532c-f32d-4e67-b2ed-bf0fc4c5d6d8 - - true - AuditMode - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - d97e759d-3462-463c-a2ee-1e045f7edd97 - - true - Enabled for roles - 1033 - - - - d97e759d-3462-463c-a2ee-1e045f7edd97 - - true - Enabled for roles - 1033 - - - - 3 - - - - - - 0 - - - 8b02b9da-e51f-4e85-93f5-1da810ee94d2 + 45042b38-e677-4f81-a7c0-9aa2b4acc18e - applicationbasedaccesscontrolmode + activitytypefilter Virtual false false false - true + false canmodifyadditionalsettings true - 10026 - 2025-11-06T01:17:44.7730048 + 10149 + 2025-11-06T04:24:47.9069952 @@ -109025,7 +114899,7 @@ false - true + false iscustomizable true @@ -109036,11 +114910,11 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable true @@ -109065,25 +114939,25 @@ false false - applicationbasedaccesscontrolmodename - 2025-11-06T01:17:44.7730048 + activitytypefiltername + 2025-11-06T04:24:47.9069952 true canmodifyrequirementlevelsettings None - applicationbasedaccesscontrolmodeName + activitytypefilterName VirtualType - 1.0.0.15 + 9.0.0.0 true - ea3c8b70-e31f-484a-aae5-235fd49b1f76 + 49737e31-5965-4afc-b56b-973825aca6ed Boolean @@ -109095,42 +114969,56 @@ canmodifyadditionalsettings false - 10144 - 2025-11-06T04:23:13.8099968 + 10152 + 2025-11-06T04:24:47.9369984 - b39cac69-4b4d-4851-82b0-c4caf4f300a4 + b4041b5a-7ffe-4ea8-8a2c-c53ee4936e61 true - Information on whether rich editing experience for Appointment is enabled. + Whether to show only activities configured in this app or all activities in the 'New activity' button. 1033 + + 0bf0927a-7f5f-4f75-aa78-f5a3f1b52a2c + + true + Angiver, om der kun skal vises aktiviteter, der er konfigureret i denne app eller alle aktiviteter, på knappen "Ny aktivitet". + 1030 + - b39cac69-4b4d-4851-82b0-c4caf4f300a4 + b4041b5a-7ffe-4ea8-8a2c-c53ee4936e61 true - Information on whether rich editing experience for Appointment is enabled. + Whether to show only activities configured in this app or all activities in the 'New activity' button. 1033 - 0da67591-3ae8-40dd-adb3-d5da58697c2b + 93523f84-65cc-410d-a1ce-97afae131add true - Enable Rich Editing Experience for Appointment + Show only activities configured in the app when accessing 'New activity' button 1033 + + 0a1a6230-40a6-479e-a719-d541ae326dc0 + + true + Vis kun aktiviteter, der er konfigureret i appen, når der trykkes på knappen 'Ny aktivitet' + 1030 + - 0da67591-3ae8-40dd-adb3-d5da58697c2b + 93523f84-65cc-410d-a1ce-97afae131add true - Enable Rich Editing Experience for Appointment + Show only activities configured in the app when accessing 'New activity' button 1033 @@ -109184,59 +115072,73 @@ true true - appointmentricheditorexperience - 2025-11-06T04:23:13.8099968 + activitytypefilterv2 + 2026-04-04T09:58:59.9330048 false canmodifyrequirementlevelsettings SystemRequired - AppointmentRichEditorExperience + ActivityTypeFilterV2 BooleanType - 9.0.0.0 + 9.2.0.0 false 0 - false + true - 0620544c-c8ba-f011-bbd3-7c1e52365f30 + 590a3e85-c8ba-f011-bbd3-7c1e52365f30 - 0820544c-c8ba-f011-bbd3-7c1e52365f30 + 5b0a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Enable or disable Rich Editing for Appointment + Whether to show only app activities or all activities when accessing 'New activity' button 1033 + + e1084ffd-9542-4c5b-a95a-aea87d97637a + + true + Angiver, om der kun skal vises appaktiviteter eller alle aktiviteter, når der trykkes på knappen 'Ny aktivitet' + 1030 + - 0820544c-c8ba-f011-bbd3-7c1e52365f30 + 5b0a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Enable or disable Rich Editing for Appointment + Whether to show only app activities or all activities when accessing 'New activity' button 1033 - 0720544c-c8ba-f011-bbd3-7c1e52365f30 + 5a0a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Is Rich Editing for Appointment Enabled + Show only app activities 1033 + + 2dd5574e-003a-4344-a083-db04438bb9e5 + + true + Vis kun appaktiviteter + 1030 + - 0720544c-c8ba-f011-bbd3-7c1e52365f30 + 5a0a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Is Rich Editing for Appointment Enabled + Show only app activities 1033 @@ -109249,9 +115151,9 @@ false true - organization_appointmentricheditorexperience + organization_activitytypefilterV2 Boolean - 9.0.0.0 + 9.2.0.0 @@ -109266,15 +115168,22 @@ - 9635f5df-102a-4888-b88c-fc0d81cc98f7 + 8be2c473-58bf-4609-941d-8df382b1cdd2 true No 1033 + + 48239dcf-4c0a-4f84-a08c-ae60d68cee37 + + true + Ingen + 1030 + - 9635f5df-102a-4888-b88c-fc0d81cc98f7 + 8be2c473-58bf-4609-941d-8df382b1cdd2 true No @@ -109299,15 +115208,22 @@ - 3a89e0fb-84ec-4bdd-bdf7-79e75caf48bd + 869cd755-9d5c-46e7-9ad5-4147e97c41ad true Yes 1033 + + 663a5a32-d5ab-4eb3-9e99-c7726405d0bb + + true + Ja + 1030 + - 3a89e0fb-84ec-4bdd-bdf7-79e75caf48bd + 869cd755-9d5c-46e7-9ad5-4147e97c41ad true Yes @@ -109323,9 +115239,9 @@ 0 - 314df449-d1b6-4b8f-a57f-94aeb165d7d2 + d2b8dd45-3ed0-40cf-a023-1e1acb34fac1 - appointmentricheditorexperience + activitytypefilterv2 Virtual false false @@ -109335,8 +115251,8 @@ canmodifyadditionalsettings true - 10145 - 2025-11-06T04:23:13.8269952 + 10153 + 2025-11-06T04:24:47.9529984 @@ -109396,25 +115312,25 @@ false false - appointmentricheditorexperiencename - 2025-11-06T04:23:13.8269952 + activitytypefilterv2name + 2025-11-06T04:24:47.9529984 true canmodifyrequirementlevelsettings None - appointmentricheditorexperienceName + activitytypefilterv2Name VirtualType - 9.0.0.0 + 9.2.0.0 true - f79a0fa9-e567-45d1-8c56-f22cd0549fbb + 924f63e5-4155-4991-bea2-c03ffb0f0c5b Boolean @@ -109426,42 +115342,56 @@ canmodifyadditionalsettings false - 10146 - 2025-11-06T04:24:47.8599936 + 10204 + 2025-11-06T06:14:32.7069952 - 69102aa6-da62-4a18-9e1b-504cb36d0f67 + 46dab501-f8ff-4a7f-9ad5-2eef57cda614 true - Information on whether Teams meeting experience for Appointment is enabled. + Flag to indicate if the display column options on a view in model-driven apps is enabled 1033 + + 0dda8066-06a2-4082-807a-2b1a654027f1 + + true + Flag, der angiver, om indstillingerne for vis kolonne i en visning i modelbaserede apps er aktiveret + 1030 + - 69102aa6-da62-4a18-9e1b-504cb36d0f67 + 46dab501-f8ff-4a7f-9ad5-2eef57cda614 true - Information on whether Teams meeting experience for Appointment is enabled. + Flag to indicate if the display column options on a view in model-driven apps is enabled 1033 - 6c328562-4262-4103-a34e-e1ff1a337d4f + cb236bae-4df9-45ef-9534-58ce5d636d28 true - Enable teams Meeting experience for appointment + Advanced column editor enabled 1033 + + 4b14db54-af1f-4f87-9584-ac8bb0b0f31b + + true + Avanceret kolonneeditor er aktiveret + 1030 + - 6c328562-4262-4103-a34e-e1ff1a337d4f + cb236bae-4df9-45ef-9534-58ce5d636d28 true - Enable teams Meeting experience for appointment + Advanced column editor enabled 1033 @@ -109471,7 +115401,7 @@ true canmodifyauditsettings - true + false false @@ -109506,83 +115436,76 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - appointmentwithteamsmeeting - 2025-11-06T04:24:47.8599936 + advancedcolumneditorenabled + 2025-11-06T06:14:32.7069952 false canmodifyrequirementlevelsettings SystemRequired - AppointmentWithTeamsMeeting + AdvancedColumnEditorEnabled BooleanType - 9.0.0.0 + 9.1.0.0 false 0 false - 4c0a3e85-c8ba-f011-bbd3-7c1e52365f30 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 4e0a3e85-c8ba-f011-bbd3-7c1e52365f30 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Enable or disable Teams meeting for Appointment + Information that specifies whether a feature is enabled for the organization. 1033 - - - 4e0a3e85-c8ba-f011-bbd3-7c1e52365f30 - - true - Enable or disable Teams meeting for Appointment - 1033 - - - - - 4d0a3e85-c8ba-f011-bbd3-7c1e52365f30 + 9aa58f12-110b-435b-9270-294a78494bba true - if appointment with Teams meeting is enabled - 1033 + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 - 4d0a3e85-c8ba-f011-bbd3-7c1e52365f30 + 05aedb96-402f-4dff-86e7-54b577874b2f true - if appointment with Teams meeting is enabled + Information that specifies whether a feature is enabled for the organization. 1033 - - - true + + + + + + + false false iscustomizable false - false + true true - organization_appointmentwithteamsmeeting + organization_featureenabled Boolean - 9.0.0.0 + 8.1.0.0 @@ -109597,15 +115520,22 @@ - 497ccbf6-4bf2-44be-8d40-73fb03befdbb + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 497ccbf6-4bf2-44be-8d40-73fb03befdbb + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -109630,15 +115560,22 @@ - 4771a3c6-65e2-40b5-9b60-8a753ac208cc + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 4771a3c6-65e2-40b5-9b60-8a753ac208cc + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -109654,20 +115591,20 @@ 0 - 5b7af424-226f-434d-a799-c1c7591b7ead + 3d1bfbad-1c67-4738-b301-35f5206ae733 - appointmentwithteamsmeeting + advancedcolumneditorenabled Virtual false false false - false + true canmodifyadditionalsettings true - 10147 - 2025-11-06T04:24:47.8729984 + 10205 + 2025-11-06T06:14:32.7229952 @@ -109687,7 +115624,7 @@ false - false + true iscustomizable true @@ -109698,11 +115635,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable true @@ -109727,25 +115664,25 @@ false false - appointmentwithteamsmeetingname - 2025-11-06T04:24:47.8729984 + advancedcolumneditorenabledname + 2025-11-06T06:14:32.7229952 true canmodifyrequirementlevelsettings None - appointmentwithteamsmeetingName + advancedcolumneditorenabledName VirtualType - 9.0.0.0 + 9.1.0.0 true - 979311d3-fcdb-4c71-8bba-56e48ebd9f9e + b54ec60b-a084-4478-9014-64b637fbdb8c Boolean @@ -109757,42 +115694,56 @@ canmodifyadditionalsettings false - 10150 - 2025-11-06T04:24:47.92 + 10202 + 2025-11-06T06:14:32.6930048 - ddea8d4c-86ab-425d-8271-351c8b1a3791 + e4333c9b-cb7c-4671-ab95-5c884c1f7218 true - Whether Teams meetings experience for appointments is enabled. + Flag to indicate if the advanced column filtering in a view in model-driven apps is enabled 1033 + + 33519328-1eca-4da8-8997-0fdb7b3e3685 + + true + Flag, der angiver, om den avancerede kolonnefiltrering i en visning i modelbaserede apps er aktiveret + 1030 + - ddea8d4c-86ab-425d-8271-351c8b1a3791 + e4333c9b-cb7c-4671-ab95-5c884c1f7218 true - Whether Teams meetings experience for appointments is enabled. + Flag to indicate if the advanced column filtering in a view in model-driven apps is enabled 1033 - bf02caba-7340-4599-8359-8198fdde5e19 + 126ee581-779f-4f12-9b45-bf08d3a5a99d true - Enable Teams meetings for appointments + Advanced column filtering enabled 1033 + + 34d4c77b-c215-4c1b-9e09-eadd61951388 + + true + Avanceret kolonnefiltrering er aktiveret + 1030 + - bf02caba-7340-4599-8359-8198fdde5e19 + 126ee581-779f-4f12-9b45-bf08d3a5a99d true - Enable Teams meetings for appointments + Advanced column filtering enabled 1033 @@ -109802,7 +115753,7 @@ true canmodifyauditsettings - true + false false @@ -109837,83 +115788,76 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - appointmentwithteamsmeetingv2 - 2025-11-06T04:24:47.92 + advancedcolumnfilteringenabled + 2025-11-06T06:14:32.6930048 false canmodifyrequirementlevelsettings SystemRequired - AppointmentWithTeamsMeetingV2 + AdvancedColumnFilteringEnabled BooleanType - 9.2.0.0 + 9.1.0.0 false 0 - true + false - 540a3e85-c8ba-f011-bbd3-7c1e52365f30 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 560a3e85-c8ba-f011-bbd3-7c1e52365f30 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Enable or disable Teams meetings for appointments + Information that specifies whether a feature is enabled for the organization. 1033 - - - 560a3e85-c8ba-f011-bbd3-7c1e52365f30 - - true - Enable or disable Teams meetings for appointments - 1033 - - - - - 550a3e85-c8ba-f011-bbd3-7c1e52365f30 + 9aa58f12-110b-435b-9270-294a78494bba true - If Teams meetings are enabled on appointments - 1033 + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 - 550a3e85-c8ba-f011-bbd3-7c1e52365f30 + 05aedb96-402f-4dff-86e7-54b577874b2f true - If Teams meetings are enabled on appointments + Information that specifies whether a feature is enabled for the organization. 1033 + + + + - true + false false iscustomizable false - false + true true - organization_appointmentwithteamsmeetingv2 + organization_featureenabled Boolean - 9.2.0.0 + 8.1.0.0 @@ -109928,15 +115872,22 @@ - 6c124e5b-a90a-41c6-b299-27cc3f79418f + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 6c124e5b-a90a-41c6-b299-27cc3f79418f + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -109961,15 +115912,22 @@ - fdd5d310-caae-4bb9-b54d-a2961fc7a130 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - fdd5d310-caae-4bb9-b54d-a2961fc7a130 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -109985,20 +115943,20 @@ 0 - 094073ce-7b82-4af1-8733-9b9e07d5494f + 0d8622d1-0f91-4e6b-91e1-7370a9111655 - appointmentwithteamsmeetingv2 + advancedcolumnfilteringenabled Virtual false false false - false + true canmodifyadditionalsettings true - 10151 - 2025-11-06T04:24:47.9369984 + 10203 + 2025-11-06T06:14:32.6930048 @@ -110018,7 +115976,7 @@ false - false + true iscustomizable true @@ -110029,11 +115987,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable true @@ -110058,25 +116016,25 @@ false false - appointmentwithteamsmeetingv2name - 2025-11-06T04:24:47.9369984 + advancedcolumnfilteringenabledname + 2025-11-06T06:14:32.6930048 true canmodifyrequirementlevelsettings None - appointmentwithteamsmeetingv2Name + advancedcolumnfilteringenabledName VirtualType - 9.2.0.0 + 9.1.0.0 true - 524e86e4-8b78-4c88-8554-2fb878fbc408 + cd002fc6-758f-4bbf-86fa-1cbdd52d8154 Boolean @@ -110086,44 +116044,58 @@ false canmodifyadditionalsettings - true + false - 10062 - 2025-11-06T02:47:57.6499968 + 10198 + 2025-11-06T06:14:32.6470016 - b9f68252-9873-492a-b0a9-76cdca67b480 + bc0b6f1e-39dc-4e5e-925e-6afb11968e9f true - Indicates whether Power Automate Automation Center preview features will be available for all users in this organization. + Flag to indicate if the advanced filtering on all tables in a model-driven app is enabled 1033 + + c0d53ba5-7a79-473d-8e30-1fc20fe1807a + + true + Flag, der angiver, om den avancerede filtrering af alle tabeller i en modelbaseret app er aktiveret + 1030 + - b9f68252-9873-492a-b0a9-76cdca67b480 + bc0b6f1e-39dc-4e5e-925e-6afb11968e9f true - Indicates whether Power Automate Automation Center preview features will be available for all users in this organization. + Flag to indicate if the advanced filtering on all tables in a model-driven app is enabled 1033 - fbb2a60b-10af-4dde-8ca8-35655041fc66 + f4115586-1fd4-47dd-98ff-356632bd53b8 true - Enable Power Automate Automation Center preview features for all users in this organization. + Advanced filtering enabled 1033 + + e85b5b10-5b6e-4891-8a0b-c6d14c49353b + + true + Avanceret filtrering er aktiveret + 1030 + - fbb2a60b-10af-4dde-8ca8-35655041fc66 + f4115586-1fd4-47dd-98ff-356632bd53b8 true - Enable Power Automate Automation Center preview features for all users in this organization. + Advanced filtering enabled 1033 @@ -110133,13 +116105,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -110154,7 +116126,7 @@ false isrenameable - true + false false false @@ -110166,34 +116138,34 @@ false - true + false canmodifysearchsettings - false + true true - false - false + true + true true true true - areautomationcenterpreviewfeaturesenabled - 2025-11-06T02:47:57.6499968 + advancedfilteringenabled + 2025-11-06T06:14:32.6470016 - true + false canmodifyrequirementlevelsettings SystemRequired - AreAutomationCenterPreviewFeaturesEnabled + AdvancedFilteringEnabled BooleanType - 1.9.2.0 + 9.1.0.0 false 0 - - true + + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -110206,6 +116178,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -110251,6 +116230,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -110284,6 +116270,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -110302,9 +116295,9 @@ 0 - fec14d33-af39-492b-b207-2c9f191f7ffa + e3d5c3d5-d482-468b-ab52-d895fe2ab3a6 - areautomationcenterpreviewfeaturesenabled + advancedfilteringenabled Virtual false false @@ -110314,8 +116307,8 @@ canmodifyadditionalsettings true - 10063 - 2025-11-06T02:47:57.6669952 + 10199 + 2025-11-06T06:14:32.6599936 @@ -110375,25 +116368,25 @@ false false - areautomationcenterpreviewfeaturesenabledname - 2025-11-06T02:47:57.6669952 + advancedfilteringenabledname + 2025-11-06T06:14:32.6599936 true canmodifyrequirementlevelsettings None - areautomationcenterpreviewfeaturesenabledName + advancedfilteringenabledName VirtualType - 1.9.2.0 + 9.1.0.0 true - 30a29a6f-542b-429f-a751-332fe0bb4ed5 + dba2c8a5-fad0-427c-9d99-d1ed742af8a1 Boolean @@ -110403,44 +116396,58 @@ false canmodifyadditionalsettings - true + false - 10081 - 2025-11-06T02:47:57.9769984 + 10170 + 2025-11-06T06:05:19.8 - 7d68eb3b-3b6f-4e98-9d1f-dc3e9bed4cc9 + b8aa5d5e-4daf-4730-9347-33de85ff6c0d true - Indicates whether Process Insights Preview features are enabled in this organization. + Flag to indicate if the Advanced Lookup feature is enabled for lookup controls 1033 + + 26d30050-f4e0-48d4-8e35-9f548a3e5e66 + + true + Flag, der angiver, om funktionen Avanceret opslag er aktiveret til opslagskontrolelementer + 1030 + - 7d68eb3b-3b6f-4e98-9d1f-dc3e9bed4cc9 + b8aa5d5e-4daf-4730-9347-33de85ff6c0d true - Indicates whether Process Insights Preview features are enabled in this organization. + Flag to indicate if the Advanced Lookup feature is enabled for lookup controls 1033 - 74c2e4be-ae67-4b11-afaa-988d5ad7381f + 5418d5fc-0aa1-42bd-827b-cdbe257edace true - Enable Process Insights Preview features for this organization + Advanced lookup enabled 1033 + + f50e2425-2977-4bce-bcc2-70dccfa87bf7 + + true + Avanceret opslag er aktiveret + 1030 + - 74c2e4be-ae67-4b11-afaa-988d5ad7381f + 5418d5fc-0aa1-42bd-827b-cdbe257edace true - Enable Process Insights Preview features for this organization + Advanced lookup enabled 1033 @@ -110450,13 +116457,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -110471,7 +116478,7 @@ false isrenameable - true + false false false @@ -110483,34 +116490,34 @@ false - true + false canmodifysearchsettings - false + true true - false - false + true + true true true true - areprocessinsightspreviewfeaturesenabled - 2025-11-06T02:47:57.9769984 + advancedlookupenabled + 2025-11-06T06:05:19.8 - true + false canmodifyrequirementlevelsettings - SystemRequired + None - AreProcessInsightsPreviewFeaturesEnabled + AdvancedLookupEnabled BooleanType - 1.9.2.0 + 9.1.0.0 false 0 - - true + + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -110523,6 +116530,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -110568,6 +116582,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -110601,6 +116622,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -110619,9 +116647,9 @@ 0 - 3a3be13d-8b12-4904-a46b-9ffb4878c7e3 + de6cedc3-d2c4-4b78-ad10-388d93965a17 - areprocessinsightspreviewfeaturesenabled + advancedlookupenabled Virtual false false @@ -110631,8 +116659,8 @@ canmodifyadditionalsettings true - 10082 - 2025-11-06T02:47:57.9929984 + 10171 + 2025-11-06T06:05:19.8300032 @@ -110692,25 +116720,25 @@ false false - areprocessinsightspreviewfeaturesenabledname - 2025-11-06T02:47:57.9929984 + advancedlookupenabledname + 2025-11-06T06:05:19.8300032 true canmodifyrequirementlevelsettings None - areprocessinsightspreviewfeaturesenabledName + advancedlookupenabledName VirtualType - 1.9.2.0 + 9.1.0.0 true - 2fc49eba-d021-4a33-8494-7acb4d808a0b + 91db33cb-47f7-4b61-b8d1-0b63045faafa Integer @@ -110722,42 +116750,56 @@ canmodifyadditionalsettings false - 456 - 2025-11-06T00:19:22.8530048 + 10185 + 2025-11-06T06:14:32.4569984 - 79f24759-35e9-4c9b-ab81-809ca28b957a + 7f911480-78ea-4181-bf93-868149b83b4e true - Audit Retention Period settings stored in Organization Database. + Enables advanced lookup in grid edit filter panel 1033 + + 73b003df-66d8-4565-bd16-b63e5b14aa68 + + true + Muliggør avanceret opslag i filterpanelet til redigering af gitter + 1030 + - 79f24759-35e9-4c9b-ab81-809ca28b957a + 7f911480-78ea-4181-bf93-868149b83b4e true - Audit Retention Period settings stored in Organization Database. + Enables advanced lookup in grid edit filter panel 1033 - dd12e256-d966-4a9f-936f-c17308c01107 + 5010100c-7221-43ea-8156-2d33bd5fe784 true - Audit Retention Period Settings + Enable Advanced Lookup In Edit Filter 1033 + + 76ddb63a-95d4-4af4-9b76-58d0ed70d0a3 + + true + Aktivér avanceret opslag i redigeringsfilter + 1030 + - dd12e256-d966-4a9f-936f-c17308c01107 + 5010100c-7221-43ea-8156-2d33bd5fe784 true - Audit Retention Period Settings + Enable Advanced Lookup In Edit Filter 1033 @@ -110802,23 +116844,23 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true true true - auditretentionperiod - 2025-11-06T00:19:22.8530048 + advancedlookupineditfilter + 2025-11-06T06:14:32.4569984 false canmodifyrequirementlevelsettings SystemRequired - AuditRetentionPeriod + AdvancedLookupInEditFilter IntegerType @@ -110826,62 +116868,62 @@ 9.1.0.0 false 0 - + None - 2147483647 - 30 - + 100 + 0 + 0 - - 417ddef6-6372-465e-90f4-539f2a58a73e + + 5e1d6ced-ca6c-4a30-a172-9698a196a109 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 463 - 2025-11-06T00:19:20.8370048 + 10117 + 2025-11-06T03:13:53.6729984 - dc8b9f0f-e761-4aa2-86e6-d5afd59482a8 + 1773dd44-1157-46a4-be7b-2728e961fb5b true - Audit Retention Period settings stored in Organization Database. + Indicates whether Azure AI Foundry model types for AI Prompts are enabled. 1033 - dc8b9f0f-e761-4aa2-86e6-d5afd59482a8 + 1773dd44-1157-46a4-be7b-2728e961fb5b true - Audit Retention Period settings stored in Organization Database. + Indicates whether Azure AI Foundry model types for AI Prompts are enabled. 1033 - 6aa121aa-e87e-4b43-a8d4-e196cc15336f + 65c4d0bc-6ce8-4260-8fa3-d1b4d4f383f5 true - Audit Retention Period Settings + Enable Azure AI Foundry model types for AI Prompts. 1033 - 6aa121aa-e87e-4b43-a8d4-e196cc15336f + 65c4d0bc-6ce8-4260-8fa3-d1b4d4f383f5 true - Audit Retention Period Settings + Enable Azure AI Foundry model types for AI Prompts. 1033 @@ -110891,7 +116933,7 @@ true canmodifyauditsettings - false + true false @@ -110926,88 +116968,183 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true true true - auditretentionperiodv2 - 2025-11-06T00:19:20.8370048 + aipromptsazureaifoundrymodeltypesenabled + 2025-11-06T03:13:53.6729984 false canmodifyrequirementlevelsettings SystemRequired - AuditRetentionPeriodV2 + AiPromptsAzureAIFoundryModelTypesEnabled - IntegerType + BooleanType 9.1.0.0 false 0 - - None - 2147483647 - -2147483648 - + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - - 94a950d6-212a-4c87-8670-5124bfc2b72f + + 2a35a953-8dce-4c23-b165-57694fbc9edb - - String + aipromptsazureaifoundrymodeltypesenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 10031 - 2025-11-06T01:28:59.7830016 + 10118 + 2025-11-06T03:13:53.7069952 - - - 692b9efa-3f5f-41b2-b155-aad593ee863e - - true - Audit Settings of the organization - 1033 - - - - 692b9efa-3f5f-41b2-b155-aad593ee863e - - true - Audit Settings of the organization - 1033 - + + - - - 5351c8bd-074c-478f-aa75-05484d91fff4 - - true - Audit Settings of the organization - 1033 - - - - 5351c8bd-074c-478f-aa75-05484d91fff4 - - true - Audit Settings of the organization - 1033 - + + organization @@ -111015,13 +117152,13 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -111030,13 +117167,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -111048,47 +117185,36 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - auditsettings - 2025-11-06T01:28:59.7830016 + aipromptsazureaifoundrymodeltypesenabledname + 2025-11-06T03:13:53.7069952 - false + true canmodifyrequirementlevelsettings None - AuditSettings + aipromptsazureaifoundrymodeltypesenabledName - StringType + VirtualType - 9.2.0.0 - false - 0 + 9.1.0.0 + true + - Text - Auto - 1073741823 - - - Text - - - false - 0 - -1 - 3ec6fecb-2992-4c19-bb63-bcc6cede6a2a + 60e91e20-fba3-4d19-b6be-2e5702c26c05 Boolean @@ -111098,44 +117224,44 @@ false canmodifyadditionalsettings - false + true - 190 - 1900-01-01T00:00:00 + 10111 + 2025-11-06T03:13:53.5869952 - f2dbf466-f524-4ef9-abc4-7a88a9963d47 + 4e287290-1b1a-468a-8a69-d725b50eab90 true - Select whether to auto apply the default customer entitlement on case creation. + Indicates whether Basic model types for AI Prompts are enabled. 1033 - f2dbf466-f524-4ef9-abc4-7a88a9963d47 + 4e287290-1b1a-468a-8a69-d725b50eab90 true - Select whether to auto apply the default customer entitlement on case creation. + Indicates whether Basic model types for AI Prompts are enabled. 1033 - 1ed60cba-c653-4840-b5db-248a3e824b60 + fcf4d9ab-699a-44cc-beee-d13409a9255e true - Auto Apply Default Entitlement on Case Create + Enable Basic model types for AI Prompts. 1033 - 1ed60cba-c653-4840-b5db-248a3e824b60 + fcf4d9ab-699a-44cc-beee-d13409a9255e true - Auto Apply Default Entitlement on Case Create + Enable Basic model types for AI Prompts. 1033 @@ -111151,7 +117277,7 @@ false iscustomizable - true + false false false @@ -111180,50 +117306,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - autoapplydefaultoncasecreate - 1900-01-01T00:00:00 + aipromptsbasicmodeltypesenabled + 2025-11-06T03:13:53.5869952 false canmodifyrequirementlevelsettings SystemRequired - AutoApplyDefaultonCaseCreate + AiPromptsBasicModelTypesEnabled BooleanType - 7.1.0.0 + 9.1.0.0 false 0 - + false - 3ad2c4bb-3171-4bd4-91b0-0b9503bf6695 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 5cda4db0-18cf-4e02-ad9d-96305d2e07b6 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether to auto apply the default customer entitlement on case creation. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 5cda4db0-18cf-4e02-ad9d-96305d2e07b6 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether to auto apply the default customer entitlement on case creation. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -111236,13 +117369,13 @@ false iscustomizable - true + false - false + true true - organization_autoapplydefaultoncasecreate + organization_featureenabled Boolean - 7.1.0.0 + 8.1.0.0 @@ -111257,15 +117390,22 @@ - 6150e85c-7740-4711-ba5c-d02cb1c83083 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 6150e85c-7740-4711-ba5c-d02cb1c83083 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -111290,15 +117430,22 @@ - 2ed5834c-9766-4019-acc9-ff3d8be9a1f1 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 2ed5834c-9766-4019-acc9-ff3d8be9a1f1 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -111310,24 +117457,24 @@ - + 0 - f1b2cc13-b1aa-4676-ab43-563d122788fc + 1d707e78-ef64-4611-8d1e-4091a2db4ca7 - autoapplydefaultoncasecreate + aipromptsbasicmodeltypesenabled Virtual false false false - false + true canmodifyadditionalsettings - false + true - 191 - 1900-01-01T00:00:00 + 10112 + 2025-11-06T03:13:53.6130048 @@ -111341,15 +117488,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -111358,13 +117505,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -111376,7 +117523,7 @@ false - false + true canmodifysearchsettings false @@ -111387,25 +117534,25 @@ false false - autoapplydefaultoncasecreatename - 1900-01-01T00:00:00 + aipromptsbasicmodeltypesenabledname + 2025-11-06T03:13:53.6130048 - false + true canmodifyrequirementlevelsettings None - AutoApplyDefaultonCaseCreateName + aipromptsbasicmodeltypesenabledName VirtualType - 7.1.0.0 + 9.1.0.0 true - + - dc541dad-5fd9-4751-9f21-967f588b7224 + 0ec7fccd-5a16-4f72-84b3-f7cf47ce3a28 Boolean @@ -111415,44 +117562,44 @@ false canmodifyadditionalsettings - false + true - 192 - 1900-01-01T00:00:00 + 10109 + 2025-11-06T03:13:53.5330048 - 7f03727d-d9a8-4db7-9620-c62722e5aaac + c79316f5-2050-45cc-a59c-452b5660be3d true - Select whether to auto apply the default customer entitlement on case update. + Indicates whether AI Prompts feature is enabled. 1033 - 7f03727d-d9a8-4db7-9620-c62722e5aaac + c79316f5-2050-45cc-a59c-452b5660be3d true - Select whether to auto apply the default customer entitlement on case update. + Indicates whether AI Prompts feature is enabled. 1033 - 23eea2a6-e3e8-4e49-b08a-fa1686afa81f + 171dc668-f654-4ba0-bd1e-53f20fc480b7 true - Auto Apply Default Entitlement on Case Update + Enable AI Prompts. 1033 - 23eea2a6-e3e8-4e49-b08a-fa1686afa81f + 171dc668-f654-4ba0-bd1e-53f20fc480b7 true - Auto Apply Default Entitlement on Case Update + Enable AI Prompts. 1033 @@ -111468,7 +117615,7 @@ false iscustomizable - true + false false false @@ -111497,50 +117644,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - autoapplydefaultoncaseupdate - 1900-01-01T00:00:00 + aipromptsenabled + 2025-11-06T03:13:53.5330048 false canmodifyrequirementlevelsettings SystemRequired - AutoApplyDefaultonCaseUpdate + AiPromptsEnabled BooleanType - 7.1.0.0 + 9.1.0.0 false 0 - + false - a52c0ca3-099f-4fc3-b69b-881cae95d014 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 5373d39b-51af-4ee8-b9fe-021c5f9a314e + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether to auto apply the default customer entitlement on case Update. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 5373d39b-51af-4ee8-b9fe-021c5f9a314e + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether to auto apply the default customer entitlement on case Update. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -111553,13 +117707,13 @@ false iscustomizable - true + false - false + true true - organization_autoapplydefaultoncaseupdate + organization_featureenabled Boolean - 7.1.0.0 + 8.1.0.0 @@ -111574,15 +117728,22 @@ - f10aeed3-a5f1-4c93-96eb-88de66cd1575 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - f10aeed3-a5f1-4c93-96eb-88de66cd1575 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -111607,15 +117768,22 @@ - 1e94edcf-8e60-4a92-a9d0-332ad31e6019 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 1e94edcf-8e60-4a92-a9d0-332ad31e6019 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -111627,24 +117795,24 @@ - + 0 - 7600e1f7-b891-43d8-a626-40c20dd022bd + 60b885bf-5e9b-4455-8786-f1eb35747291 - autoapplydefaultoncaseupdate + aipromptsenabled Virtual false false false - false + true canmodifyadditionalsettings - false + true - 193 - 1900-01-01T00:00:00 + 10110 + 2025-11-06T03:13:53.5629952 @@ -111658,15 +117826,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -111675,13 +117843,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -111693,7 +117861,7 @@ false - false + true canmodifysearchsettings false @@ -111704,25 +117872,25 @@ false false - autoapplydefaultoncaseupdatename - 1900-01-01T00:00:00 + aipromptsenabledname + 2025-11-06T03:13:53.5629952 - false + true canmodifyrequirementlevelsettings None - AutoApplyDefaultonCaseUpdateName + aipromptsenabledName VirtualType - 7.1.0.0 + 9.1.0.0 true - + - 25fd4f93-23ec-4e4e-b4a2-2fe50291f555 + 64dd2de8-484c-4a4c-8859-c4a01a406bf1 Boolean @@ -111732,44 +117900,44 @@ false canmodifyadditionalsettings - false + true - 350 - 1900-01-01T00:00:00 + 10115 + 2025-11-06T03:13:53.6429952 - 652a8986-e298-4a47-b3c2-ad2c2d2322a4 + df2ff303-562d-4443-8799-c1331029bc74 true - Indicates whether to Auto-apply SLA on case record update after SLA was manually applied. + Indicates whether Premium model types for AI Prompts are enabled. 1033 - 652a8986-e298-4a47-b3c2-ad2c2d2322a4 + df2ff303-562d-4443-8799-c1331029bc74 true - Indicates whether to Auto-apply SLA on case record update after SLA was manually applied. + Indicates whether Premium model types for AI Prompts are enabled. 1033 - dbe323fd-42e2-4d2b-9302-7c1618ed99ec + 0ff84b3d-5e86-408c-ac1d-5684af71389a true - Is Auto-apply SLA After Manually Over-riding + Enable Premium model types for AI Prompts. 1033 - dbe323fd-42e2-4d2b-9302-7c1618ed99ec + 0ff84b3d-5e86-408c-ac1d-5684af71389a true - Is Auto-apply SLA After Manually Over-riding + Enable Premium model types for AI Prompts. 1033 @@ -111785,7 +117953,7 @@ false iscustomizable - true + false false false @@ -111814,50 +117982,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - autoapplysla - 1900-01-01T00:00:00 + aipromptspremiummodeltypesenabled + 2025-11-06T03:13:53.6429952 false canmodifyrequirementlevelsettings SystemRequired - AutoApplySLA + AiPromptsPremiumModelTypesEnabled BooleanType - 8.0.0.0 + 9.1.0.0 false 0 - + false - 116c57f0-6be5-40c3-80d7-261be98414e2 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - cf2b0a5e-c786-4997-85ed-d1d82845f27b + 05aedb96-402f-4dff-86e7-54b577874b2f true - Flag to Auto Apply SLA + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - cf2b0a5e-c786-4997-85ed-d1d82845f27b + 05aedb96-402f-4dff-86e7-54b577874b2f true - Flag to Auto Apply SLA + Information that specifies whether a feature is enabled for the organization. 1033 @@ -111870,13 +118045,13 @@ false iscustomizable - true + false - false + true true - organization_autoapplysla + organization_featureenabled Boolean - 8.0.0.0 + 8.1.0.0 @@ -111891,15 +118066,22 @@ - d37a9481-d72c-4a11-b651-9841877c9be3 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - d37a9481-d72c-4a11-b651-9841877c9be3 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -111924,15 +118106,22 @@ - f13291a8-3829-45b9-b041-e79d901d0a39 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - f13291a8-3829-45b9-b041-e79d901d0a39 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -111944,60 +118133,32 @@ - + 0 - - 1ecd229c-58cb-43e2-ba9f-024f25bd098c + + c58363d8-8163-4e77-9a5a-8e12884db342 - - String + aipromptspremiummodeltypesenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 326 - 1900-01-01T00:00:00 + 10116 + 2025-11-06T03:13:53.6600064 - - - 71b6e43b-cd32-4205-9337-97ac0eed054e - - true - For internal use only. - 1033 - - - - 71b6e43b-cd32-4205-9337-97ac0eed054e - - true - For internal use only. - 1033 - + + - - - a07d5239-4f51-4b38-8520-ff3af8b3b8c0 - - true - For internal use only. - 1033 - - - - a07d5239-4f51-4b38-8520-ff3af8b3b8c0 - - true - For internal use only. - 1033 - + + organization @@ -112005,11 +118166,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -112020,13 +118181,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -112038,94 +118199,83 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - azureschedulerjobcollectionname - 1900-01-01T00:00:00 + aipromptspremiummodeltypesenabledname + 2025-11-06T03:13:53.6600064 - false + true canmodifyrequirementlevelsettings None - AzureSchedulerJobCollectionName + aipromptspremiummodeltypesenabledName - StringType + VirtualType - 8.0.0.0 - false - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 200 + 9.1.0.0 + true + + - - 65964be0-9c7c-4a6d-8f4e-2291726c17b2 + + 0ba0d68a-a3cb-4c96-8bca-08d3470f03c3 - Lookup + Boolean false false false false canmodifyadditionalsettings - false + true - 144 - 1900-01-01T00:00:00 + 10113 + 2025-11-06T03:13:53.6269952 - 0ed68c25-6495-4251-b472-4559e66ca0c6 + d04a809f-b02d-480f-ab79-bc34426ba4d4 true - Unique identifier of the base currency of the organization. + Indicates whether Standard model types for AI Prompts are enabled. 1033 - 0ed68c25-6495-4251-b472-4559e66ca0c6 + d04a809f-b02d-480f-ab79-bc34426ba4d4 true - Unique identifier of the base currency of the organization. + Indicates whether Standard model types for AI Prompts are enabled. 1033 - a430b364-f9f0-4ec4-8b48-d5ab609a9ae9 + d223d23d-fe31-4277-9b21-4f4f178abae6 true - Currency + Enable Standard model types for AI Prompts. 1033 - a430b364-f9f0-4ec4-8b48-d5ab609a9ae9 + d223d23d-fe31-4277-9b21-4f4f178abae6 true - Currency + Enable Standard model types for AI Prompts. 1033 @@ -112141,7 +118291,7 @@ false iscustomizable - true + false false false @@ -112176,45 +118326,169 @@ true true true - false + true true - basecurrencyid - 1900-01-01T00:00:00 + aipromptsstandardmodeltypesenabled + 2025-11-06T03:13:53.6269952 false canmodifyrequirementlevelsettings - None + SystemRequired - BaseCurrencyId + AiPromptsStandardModelTypesEnabled - LookupType + BooleanType - 5.0.0.0 + 9.1.0.0 false - - - None - - transactioncurrency - + 0 + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 - - 66b9965e-b9e2-451d-8744-d84bc0c83e86 + + c6b68555-ccd1-4468-83a5-870cad7ae958 - basecurrencyid - String + aipromptsstandardmodeltypesenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 150 - 1900-01-01T00:00:00 + 10114 + 2025-11-06T03:13:53.6429952 @@ -112228,15 +118502,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -112245,13 +118519,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -112263,7 +118537,7 @@ false - false + true canmodifysearchsettings false @@ -112274,39 +118548,28 @@ false false - basecurrencyidname - 1900-01-01T00:00:00 + aipromptsstandardmodeltypesenabledname + 2025-11-06T03:13:53.6429952 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - BaseCurrencyIdName + aipromptsstandardmodeltypesenabledName - StringType + VirtualType - 5.0.0.0 + 9.1.0.0 true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 200 + + - - 246ae268-19b8-4059-9161-6dfdb5d01ef2 + + ff79b2dd-6da5-4ba0-bfa1-f3168ceedf06 - Integer + Boolean false false false @@ -112315,42 +118578,56 @@ canmodifyadditionalsettings false - 157 + 130 1900-01-01T00:00:00 - b6492b59-711e-473e-b033-84dc7f17e174 + dbb404a1-bf38-4698-84c5-641b86e2e0dd true - Number of decimal places that can be used for the base currency. + Indicates whether background address book synchronization in Microsoft Office Outlook is allowed. 1033 + + b0137af2-91c1-4bed-a9a0-22754806f7fe + + true + Angiver, om synkronisering af adressebogen i baggrunden er tilladt i Microsoft Office Outlook. + 1030 + - b6492b59-711e-473e-b033-84dc7f17e174 + dbb404a1-bf38-4698-84c5-641b86e2e0dd true - Number of decimal places that can be used for the base currency. + Indicates whether background address book synchronization in Microsoft Office Outlook is allowed. 1033 - 698add65-3f1c-4d9e-bf11-3dcb24d03fff + 3699794e-51ee-439e-bd43-991c39cb6635 true - Base Currency Precision + Allow Address Book Synchronization 1033 + + f239113b-f122-4292-a644-5be641569ea3 + + true + Tillad synkronisering af adressekartotek + 1030 + - 698add65-3f1c-4d9e-bf11-3dcb24d03fff + 3699794e-51ee-439e-bd43-991c39cb6635 true - Base Currency Precision + Allow Address Book Synchronization 1033 @@ -112397,84 +118674,207 @@ canmodifysearchsettings false - false + true false false true - false + true true - basecurrencyprecision + allowaddressbooksyncs 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - BaseCurrencyPrecision + AllowAddressBookSyncs - IntegerType + BooleanType 5.0.0.0 false 0 - None - 10 - 0 + false + + e3d29f93-4d77-4c8b-b372-6b04356e8817 + + + + + a8d67a9e-561d-4445-b926-8cf18bdecd60 + + true + Flag to enable or disable background address book synchronization in Microsoft Office Outlook. + 1033 + + + 6d5c6215-449a-44aa-8bc4-eff661e05c3f + + true + Flag for aktivering/deaktivering af synkronisering af adressekartotek i baggrunden i Microsoft Office Outlook. + 1030 + + + + a8d67a9e-561d-4445-b926-8cf18bdecd60 + + true + Flag to enable or disable background address book synchronization in Microsoft Office Outlook. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_allowaddressbooksyncs + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 6ed26b61-adb2-41cb-9cb7-2b409b1a92f5 + + true + No + 1033 + + + 2d2a7955-11df-4acb-b509-bf9c8951534a + + true + Nej + 1030 + + + + 6ed26b61-adb2-41cb-9cb7-2b409b1a92f5 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 820ab97d-597f-41f5-9003-75a65ba90ded + + true + Yes + 1033 + + + 70de2b54-4d02-4f5e-af76-82457101a594 + + true + Ja + 1030 + + + + 820ab97d-597f-41f5-9003-75a65ba90ded + + true + Yes + 1033 + + + + 1 + + + 0 - - cf5b73fd-6d77-42ec-9c4c-ebf818182e4f + + 4dda3e16-7627-4a0d-a37c-e085189030c9 - String + Boolean false false false false canmodifyadditionalsettings - false + true - 158 - 1900-01-01T00:00:00 + 10023 + 2025-11-06T01:17:44.7430016 - 9fded292-9331-46b5-878f-20a63388a1d9 + fabe392b-03e8-4f9c-a0cd-b474b6f4f6b0 true - Symbol used for the base currency. + Information that specifies whether all application users are allowed to access the environment 1033 - 9fded292-9331-46b5-878f-20a63388a1d9 + fabe392b-03e8-4f9c-a0cd-b474b6f4f6b0 true - Symbol used for the base currency. + Information that specifies whether all application users are allowed to access the environment 1033 - d85118b2-e012-4373-a365-333f96b328a2 + 40d48336-547c-4c6a-aaf4-96dddec2426a true - Base Currency Symbol + Allow All Application Users Access. 1033 - d85118b2-e012-4373-a365-333f96b328a2 + 40d48336-547c-4c6a-aaf4-96dddec2426a true - Base Currency Symbol + Allow All Application Users Access. 1033 @@ -112521,46 +118921,254 @@ canmodifysearchsettings false - false + true false false true - false + true true - basecurrencysymbol - 1900-01-01T00:00:00 + allowapplicationuseraccess + 2025-11-06T01:17:44.7430016 false canmodifyrequirementlevelsettings SystemRequired - BaseCurrencySymbol + AllowApplicationUserAccess - StringType + BooleanType - 5.0.0.0 + 1.0.0.15 false 0 - - Text - Auto - 5 - - - Text - - - false + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - 8000 - - 47973d73-61ca-4166-8ce7-b4aa1be4f3d9 + + 76547457-2463-41a2-bde4-8ba28cfde974 + + allowapplicationuseraccess + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10024 + 2025-11-06T01:17:44.7570048 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + allowapplicationuseraccessname + 2025-11-06T01:17:44.7570048 + + true + canmodifyrequirementlevelsettings + None + + allowapplicationuseraccessName + + + VirtualType + + 1.0.0.15 + true + + + + + 84090d3a-0ffb-479f-9850-154933ca8dab - String + Boolean false false false @@ -112569,28 +119177,56 @@ canmodifyadditionalsettings false - 159 + 78 1900-01-01T00:00:00 - - + + + 321ed7e8-2241-db11-898a-0007e9e17ebd + + true + Indicates whether automatic response creation is allowed. + 1033 + + + 6a2cfc11-6be6-49ce-92fa-4bf1879cd6e8 + + true + Angiver, om automatisk oprettelse af respons er tilladt. + 1030 + + + + 321ed7e8-2241-db11-898a-0007e9e17ebd + + true + Indicates whether automatic response creation is allowed. + 1033 + - b882ef78-bc39-4190-9c3b-360016cbad12 + a5aa0b18-be12-4b54-b0b4-6ac60164c448 true - Base ISO Currency Code + Allow Automatic Response Creation 1033 + + 1e71b9f0-475d-49e7-9561-a1bd6ac1cf1f + + true + Tillad automatisk oprettelse af svar + 1030 + - b882ef78-bc39-4190-9c3b-360016cbad12 + a5aa0b18-be12-4b54-b0b4-6ac60164c448 true - Base ISO Currency Code + Allow Automatic Response Creation 1033 @@ -112637,46 +119273,163 @@ canmodifysearchsettings false - false + true false false - false - false - false + true + true + true - baseisocurrencycode + allowautoresponsecreation 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - BaseISOCurrencyCode + AllowAutoResponseCreation - StringType + BooleanType 5.0.0.0 false 0 - Text - Disabled - 5 - - - Text - + false + + d0e2f8e0-7d6e-4459-9e94-97143e03a8bc + + + + + 138922e8-ca40-4816-8fc2-96e1b81eef66 + + true + Indication of whether automatic response creation is allowed. + 1033 + + + ee451bd2-0bb4-439e-9606-d376ac3f0abf + + true + Angiver, om automatisk oprettelse af respons er tilladt. + 1030 + + + + 138922e8-ca40-4816-8fc2-96e1b81eef66 + + true + Indication of whether automatic response creation is allowed. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_allowautoresponsecreation + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 45c888bf-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + 0a7a0d08-3dfb-4f87-b3e2-89791d307c60 + + true + Nej + 1030 + + + + 45c888bf-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 47c888bf-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + d03e152e-ed3f-43f9-a521-81121eb662b3 + + true + Ja + 1030 + + + + 47c888bf-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 8000 - - 266840bd-6006-4270-aa3d-3affcc4e1147 + + 81ee1e88-9c7e-4953-bc92-af7839995f36 - String + Boolean false false false @@ -112685,42 +119438,56 @@ canmodifyadditionalsettings false - 239 + 71 1900-01-01T00:00:00 - 1adad6db-0f9c-49d2-8766-01df92dd8a68 + ed3fb506-2341-db11-898a-0007e9e17ebd true - Api Key to be used in requests to Bing Maps services. + Indicates whether automatic unsubscribe is allowed. 1033 + + fb948a34-40a9-4d51-b5f2-ac0c295a89e4 + + true + Angiver, om automatisk opsigelse af abonnement er tilladt. + 1030 + - 1adad6db-0f9c-49d2-8766-01df92dd8a68 + ed3fb506-2341-db11-898a-0007e9e17ebd true - Api Key to be used in requests to Bing Maps services. + Indicates whether automatic unsubscribe is allowed. 1033 - 806e2f95-b299-4ece-ad27-850c873f42b0 + 6b33581a-34f7-4bb5-85fa-5af7be455395 true - Bing Maps API Key + Allow Automatic Unsubscribe 1033 + + 7cc33c62-86a6-4b98-b7ed-e1c34445103d + + true + Tillad automatisk opsigelse + 1030 + - 806e2f95-b299-4ece-ad27-850c873f42b0 + 6b33581a-34f7-4bb5-85fa-5af7be455395 true - Bing Maps API Key + Allow Automatic Unsubscribe 1033 @@ -112774,36 +119541,153 @@ true true - bingmapsapikey + allowautounsubscribe 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - BingMapsApiKey + AllowAutoUnsubscribe - StringType + BooleanType - 6.0.0.0 + 5.0.0.0 false 0 - Text - Auto - 1024 - - - Text - + false + + 73e35d83-5411-4a35-bd0f-e196ff52d9ca + + + + + 5a6a3dfd-df17-46bf-9e71-5d7094fc44db + + true + Indication of whether automatic unsubscribe is allowed. + 1033 + + + 0b0a7e2a-4167-4a73-aef5-14a79be1b50f + + true + Angiver, om automatisk opsigelse af abonnement er tilladt. + 1030 + + + + 5a6a3dfd-df17-46bf-9e71-5d7094fc44db + + true + Indication of whether automatic unsubscribe is allowed. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_allowautounsubscribe + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 49c888bf-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + e57217f3-52cf-4209-99ba-5da462808a49 + + true + Nej + 1030 + + + + 49c888bf-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 4bc888bf-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + 7dc8f43c-e9a0-4644-a6df-e86d570915ea + + true + Ja + 1030 + + + + 4bc888bf-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 2048 - 13b2314b-3c3f-4c23-972c-07531c4bfcf7 + 58e3e6ef-37b7-4227-9dde-3ad89c31435d Boolean @@ -112813,44 +119697,58 @@ false canmodifyadditionalsettings - true + false - 10123 - 2025-11-06T03:38:23.8969984 + 70 + 1900-01-01T00:00:00 - c05670e8-e404-4555-878d-27e3f4fb3d56 + ebe9af0c-2341-db11-898a-0007e9e17ebd true - Enable this feature to prevent makers from accessing and downloading session transcripts + Indicates whether automatic unsubscribe acknowledgement email is allowed to send. 1033 + + 5f17a063-b9cd-40f1-9036-7841e1067687 + + true + Angiver, om det er tilladt automatisk at sende en e-mail som bekræftelse på en opsigelse af et abonnement. + 1030 + - c05670e8-e404-4555-878d-27e3f4fb3d56 + ebe9af0c-2341-db11-898a-0007e9e17ebd true - Enable this feature to prevent makers from accessing and downloading session transcripts + Indicates whether automatic unsubscribe acknowledgement email is allowed to send. 1033 - 7b8497ba-5c64-493a-a336-c5feded6eb8b + 9f607aca-ba23-4032-904d-6a065c8645cc true - Block access to session transcripts for Copilot Studio + Allow Automatic Unsubscribe Acknowledgement 1033 + + d34812ad-235b-4f22-8c64-6972dd34af20 + + true + Tillad automatisk bekræftelse af opsigelse + 1030 + - 7b8497ba-5c64-493a-a336-c5feded6eb8b + 9f607aca-ba23-4032-904d-6a065c8645cc true - Block access to session transcripts for Copilot Studio + Allow Automatic Unsubscribe Acknowledgement 1033 @@ -112904,41 +119802,48 @@ true true - blockaccesstosessiontranscriptsforcopilotstudio - 2025-12-14T02:08:40.1330048 + allowautounsubscribeacknowledgement + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - BlockAccessToSessionTranscriptsForCopilotStudio + AllowAutoUnsubscribeAcknowledgement BooleanType - 1.0.0.150 + 5.0.0.0 false 0 - + false - 315e90f0-678b-4e4d-97f1-886050c3cb46 + e02e1dbd-f370-4b0f-87fd-3df30a4fe738 - 05aedb96-402f-4dff-86e7-54b577874b2f + 17fb72f6-2393-4a62-bb9b-f844413ab7b5 true - Information that specifies whether a feature is enabled for the organization. + Indication of whether automatic unsubscribe acknowledgement email is allowed to send. 1033 + + 9f304c04-a8b7-40c0-bfbc-dcaa877af573 + + true + Angiver, om det er tilladt at sende en e-mail som bekræftelse på en automatisk opsigelse af et abonnement. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 17fb72f6-2393-4a62-bb9b-f844413ab7b5 true - Information that specifies whether a feature is enabled for the organization. + Indication of whether automatic unsubscribe acknowledgement email is allowed to send. 1033 @@ -112951,13 +119856,13 @@ false iscustomizable - false + true - true + false true - organization_featureenabled + organization_allowautounsubscribeacknowledgement Boolean - 8.1.0.0 + 5.0.0.0 @@ -112972,15 +119877,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 4dc888bf-e780-db11-9b85-00137299e160 true No 1033 + + de9ccdaf-4b78-4cd2-a876-911e9fba5cfd + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 4dc888bf-e780-db11-9b85-00137299e160 true No @@ -113005,15 +119917,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 4fc888bf-e780-db11-9b85-00137299e160 true Yes 1033 + + 6996b361-f1f0-4e99-906b-df6dc8677636 + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 4fc888bf-e780-db11-9b85-00137299e160 true Yes @@ -113025,32 +119944,74 @@ - + 0 - - bf92340f-4e85-4344-a7f4-338257ae1d83 + + ceeec35a-f4f0-445e-ae38-c0cd235222e7 - blockaccesstosessiontranscriptsforcopilotstudio - Virtual + + Boolean false false false - true + false canmodifyadditionalsettings true - 10124 - 2025-11-06T03:38:23.8969984 + 210 + 1900-01-01T00:00:00 - - + + + 67e409f4-6135-4fcc-8711-62f4a8695132 + + true + Indicates whether Outlook Client message bar advertisement is allowed. + 1033 + + + 6785c31d-2e5e-4f6e-a2aa-2671c85eed5f + + true + Angiver, om det er tilladt at vise annoncer på meddelelseslinjen i Outlook-klienten. + 1030 + + + + 67e409f4-6135-4fcc-8711-62f4a8695132 + + true + Indicates whether Outlook Client message bar advertisement is allowed. + 1033 + - - + + + 121ded16-a8c7-4146-9821-b22b6eb26bfd + + true + Allow Outlook Client Message Bar Advertisement + 1033 + + + 7ec8bc92-9eac-4249-89e1-6fa07cd063a7 + + true + Tillad annonce på meddelelseslinjen i Outlook-klienten + 1030 + + + + 121ded16-a8c7-4146-9821-b22b6eb26bfd + + true + Allow Outlook Client Message Bar Advertisement + 1033 + organization @@ -113058,11 +120019,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -113073,11 +120034,11 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable true @@ -113095,32 +120056,160 @@ canmodifysearchsettings false - false + true false false true - false - false + true + true - blockaccesstosessiontranscriptsforcopilotstudioname - 2025-11-06T03:38:23.8969984 + allowclientmessagebarad + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - blockaccesstosessiontranscriptsforcopilotstudioName + AllowClientMessageBarAd - VirtualType + BooleanType - 1.0.0.150 - true - - + 5.0.0.0 + false + 0 + + false + + 868d733d-5ee4-4c7c-b19d-c97cea0d34fd + + + + + 4149bbf6-f883-4350-841e-ea95d9a7e63b + + true + Flag to enable or disable ad in the message bar for Outlook Client. + 1033 + + + 9b719312-31cf-4daf-bc8c-1448f1c70e97 + + true + Flag til at aktivere eller deaktivere annonce på meddelelseslinjen i Outlook-klienten. + 1030 + + + + 4149bbf6-f883-4350-841e-ea95d9a7e63b + + true + Flag to enable or disable ad in the message bar for Outlook Client. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_allowclientmessagebarad + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + b3ac8d02-0a2f-48fd-8862-95af8b2d6dfb + + true + No + 1033 + + + 65804eaf-e951-4517-8429-848ca8807f2c + + true + Nej + 1030 + + + + b3ac8d02-0a2f-48fd-8862-95af8b2d6dfb + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 45162337-5e5c-4c12-80e8-301598a19dbf + + true + Yes + 1033 + + + d2b60622-aff0-452c-a38a-c6e91fa8cd06 + + true + Ja + 1030 + + + + 45162337-5e5c-4c12-80e8-301598a19dbf + + true + Yes + 1033 + + + + 1 + + + + + 0 - b8a77b34-5cfd-4507-99b4-b4a580e9cb0d + 46b2373d-048a-43fd-84e3-04d71c86e8a7 Boolean @@ -113130,44 +120219,58 @@ false canmodifyadditionalsettings - true + false - 10125 - 2025-11-06T03:38:23.9100032 + 10161 + 2025-11-06T04:54:58 - f6b253f0-302c-44f6-97a5-23279691b3a2 + c60d5da8-4847-4557-ad17-447af8c88895 true - Prevent makers from allowing end-users to use their credentials during authentication to use connectors, actions, flows, and triggers that are connected to an agent + Information on whether connectors on power fx actions is enabled. 1033 + + 8b07fdd6-500e-4a01-a3bd-7f2be5d23a81 + + true + Oplysninger, der angiver, om connectorer til Power Fx-handlinger er aktiveret. + 1030 + - f6b253f0-302c-44f6-97a5-23279691b3a2 + c60d5da8-4847-4557-ad17-447af8c88895 true - Prevent makers from allowing end-users to use their credentials during authentication to use connectors, actions, flows, and triggers that are connected to an agent + Information on whether connectors on power fx actions is enabled. 1033 - dfd6be53-659e-40e2-b2f7-57211480325f + 13b10001-736f-447a-a975-f36e7802540d true - Block makers from allowing end-users to use their credentials during authentication to use connectors, actions, flows, and triggers that are connected to an agent + Enable connectors on power fx actions. 1033 + + 60a4dd3b-b0bc-4958-9b74-3642ea1a5bb0 + + true + Aktivér connectorer på Power Fx-handlinger. + 1030 + - dfd6be53-659e-40e2-b2f7-57211480325f + 13b10001-736f-447a-a975-f36e7802540d true - Block makers from allowing end-users to use their credentials during authentication to use connectors, actions, flows, and triggers that are connected to an agent + Enable connectors on power fx actions. 1033 @@ -113183,7 +120286,7 @@ false iscustomizable - true + false false false @@ -113221,60 +120324,88 @@ true true - blockcopilotauthorauthentication - 2025-12-14T02:08:40.4930048 + allowconnectorsonpowerfxactions + 2025-11-06T04:54:58 false canmodifyrequirementlevelsettings SystemRequired - BlockCopilotAuthorAuthentication + AllowConnectorsOnPowerFXActions BooleanType - 1.0.0.150 + 9.2.0.0 false 0 - false + true - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 0e3261b8-ccba-f011-bbd3-7c1e52365f30 - 05aedb96-402f-4dff-86e7-54b577874b2f + 103261b8-ccba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + Enable or disable connectors on power fx actions. 1033 + + eb358efa-d994-447c-a473-5e5b9ce33ec3 + + true + Aktivér eller deaktiver connectorer på Power Fx-handlinger. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 103261b8-ccba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + Enable or disable connectors on power fx actions. 1033 - - + + + 0f3261b8-ccba-f011-bbd3-7c1e52365f30 + + true + If connectors on power fx actions is enabled. + 1033 + + + fd7a0927-e75b-4d5e-bf2c-26878d1ec5e8 + + true + Hvis connectorer på Power Fx-handlinger er aktiveret. + 1030 + + + + 0f3261b8-ccba-f011-bbd3-7c1e52365f30 + + true + If connectors on power fx actions is enabled. + 1033 + - false + true false iscustomizable false - true + false true - organization_featureenabled + organization_allowconnectorsonpowerfxactions Boolean - 8.1.0.0 + 9.2.0.0 @@ -113289,15 +120420,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + a2d78d1d-24ff-440d-b392-3d20898582e5 true No 1033 + + 879c2d90-f275-4d35-87ed-ddda75a7ec85 + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + a2d78d1d-24ff-440d-b392-3d20898582e5 true No @@ -113322,15 +120460,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + e9ef0b07-ca6c-4392-ac10-cca63c719426 true Yes 1033 + + 22e04272-bfcf-4e89-a485-72894a29cbe6 + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + e9ef0b07-ca6c-4392-ac10-cca63c719426 true Yes @@ -113346,9 +120491,9 @@ 0 - 073cbaf2-a0af-495e-a646-a895acf727fa + 2fd16133-9aff-44c7-95ac-ac840c801773 - blockcopilotauthorauthentication + allowconnectorsonpowerfxactions Virtual false false @@ -113358,8 +120503,8 @@ canmodifyadditionalsettings true - 10126 - 2025-11-06T03:38:23.9270016 + 10162 + 2025-11-06T04:54:58.0169984 @@ -113419,25 +120564,25 @@ false false - blockcopilotauthorauthenticationname - 2025-11-06T03:38:23.9270016 + allowconnectorsonpowerfxactionsname + 2025-11-06T04:54:58.0169984 true canmodifyrequirementlevelsettings None - blockcopilotauthorauthenticationName + allowconnectorsonpowerfxactionsName VirtualType - 1.0.0.150 + 9.2.0.0 true - db82b3de-2e79-4273-b3c0-84e3a5645f1a + eceb0067-5445-457b-8ce8-346a3359c669 String @@ -113449,42 +120594,42 @@ canmodifyadditionalsettings true - 10028 - 2025-11-06T01:17:44.7900032 + 10027 + 2025-11-06T01:17:44.7730048 - 92750a4d-f7f1-484d-be3d-1e97a83e2ad6 + 12581bbe-799a-4387-9de3-f7513b2c2fc8 true - Information that specifies the Applications that are in block list for the accessing DV resources. + Information that specifies the Applications that are in allow list for the accessing DV resources. 1033 - 92750a4d-f7f1-484d-be3d-1e97a83e2ad6 + 12581bbe-799a-4387-9de3-f7513b2c2fc8 true - Information that specifies the Applications that are in block list for the accessing DV resources. + Information that specifies the Applications that are in allow list for the accessing DV resources. 1033 - 0ccd323a-c3c2-4dc8-b222-2861ff2d0ffe + 6e36ad56-98f0-49e6-98bc-88aba406bb04 true - List of Applications that are in block list for the accessing DV resources. + List of Applications that are in allow list for the accessing DV resources. 1033 - 0ccd323a-c3c2-4dc8-b222-2861ff2d0ffe + 6e36ad56-98f0-49e6-98bc-88aba406bb04 true - List of Applications that are in block list for the accessing DV resources. + List of Applications that are in allow list for the accessing DV resources. 1033 @@ -113538,14 +120683,14 @@ true true - blockedapplicationsfordvaccess - 2025-11-06T01:17:44.7900032 + allowedapplicationsfordvaccess + 2025-11-06T01:17:44.7730048 false canmodifyrequirementlevelsettings None - BlockedApplicationsForDVAccess + AllowedApplicationsForDVAccess StringType @@ -113556,7 +120701,7 @@ Text Auto - 4000 + 20000 Text @@ -113564,10 +120709,10 @@ false 0 - 8000 + -1 - c6577ea1-0353-4f2a-9322-763b9ab5930e + 29c5eee0-5a6b-4eb1-9e54-0aba809bed0f String @@ -113577,44 +120722,44 @@ false canmodifyadditionalsettings - false + true - 117 - 1900-01-01T00:00:00 + 10018 + 2025-11-06T01:17:44.6630016 - 6b1ed7e8-2241-db11-898a-0007e9e17ebd + 00ae1c5c-693d-40ea-ae2e-0f269db88bd7 true - Prevent upload or download of certain attachment types that are considered dangerous. + Information that specifies the range of IP addresses that are in allow list for the firewall. 1033 - 6b1ed7e8-2241-db11-898a-0007e9e17ebd + 00ae1c5c-693d-40ea-ae2e-0f269db88bd7 true - Prevent upload or download of certain attachment types that are considered dangerous. + Information that specifies the range of IP addresses that are in allow list for the firewall. 1033 - da4e46e6-d6dd-43c3-8eb9-eab1bf3c7299 + 29f91397-9265-4103-a953-7cc980c2e5df true - Block Attachments + List of IP Ranges to be allowed by the firewall rule 1033 - da4e46e6-d6dd-43c3-8eb9-eab1bf3c7299 + 29f91397-9265-4103-a953-7cc980c2e5df true - Block Attachments + List of IP Ranges to be allowed by the firewall rule 1033 @@ -113630,7 +120775,7 @@ false iscustomizable - true + false false false @@ -113668,36 +120813,36 @@ true true - blockedattachments - 1900-01-01T00:00:00 + allowediprangeforfirewall + 2025-11-06T01:17:44.6630016 false canmodifyrequirementlevelsettings None - BlockedAttachments + AllowedIpRangeForFirewall StringType - 5.0.0.0 + 1.0.0.15 false 0 - + Text Auto - 1073741823 + 4000 Text - + false 0 - -1 + 8000 - 864ed6bd-b646-4fd4-871b-95f312b98070 + 4ab2a391-44c8-4cca-8715-4db4b9025751 String @@ -113707,44 +120852,44 @@ false canmodifyadditionalsettings - false + true - 10000 - 2025-11-06T01:01:00.8130048 + 10009 + 2025-11-06T01:16:32.3869952 - c42bd4cd-2551-4f48-abd1-851a5676759d + 521779b0-106b-42ec-b23b-1d11557008fb true - Prevent upload or download of certain mime types that are considered dangerous. + Information that specifies the range of IP addresses that are in allowed list for generating the SAS URIs. 1033 - c42bd4cd-2551-4f48-abd1-851a5676759d + 521779b0-106b-42ec-b23b-1d11557008fb true - Prevent upload or download of certain mime types that are considered dangerous. + Information that specifies the range of IP addresses that are in allowed list for generating the SAS URIs. 1033 - 34cfca27-c7f6-4881-a3bb-ff4dcc4f63a8 + e98a3966-3aed-4eac-b2e5-476c3bf7bdd9 true - List of blocked mime types. + List of IP Ranges to be allowed for generating the SAS URIs. 1033 - 34cfca27-c7f6-4881-a3bb-ff4dcc4f63a8 + e98a3966-3aed-4eac-b2e5-476c3bf7bdd9 true - List of blocked mime types. + List of IP Ranges to be allowed for generating the SAS URIs. 1033 @@ -113760,7 +120905,7 @@ false iscustomizable - true + false false false @@ -113798,25 +120943,25 @@ true true - blockedmimetypes - 2026-01-25T00:30:05.8729984 + allowediprangeforstorageaccesssignatures + 2025-11-06T01:16:32.3869952 false canmodifyrequirementlevelsettings None - BlockedMimeTypes + AllowedIpRangeForStorageAccessSignatures StringType - 9.1.0.0 + 1.0.0.5 false 0 Text Auto - 1073741823 + 4000 Text @@ -113824,13 +120969,13 @@ false 0 - -1 + 8000 - - d84144ca-c106-46cd-b887-873f89fbcaeb + + 76496ce2-d128-4fcd-bc16-57b8bcea6543 - Boolean + String false false false @@ -113839,42 +120984,42 @@ canmodifyadditionalsettings true - 10121 - 2025-11-06T03:38:23.8630016 + 10167 + 2025-11-06T05:56:00.3369984 - 3030bdbc-d724-41ed-b530-423c2b93e154 + 78633873-6b76-4d0f-b3f3-d83ac53130bd true - Enable this feature to block access to session transcripts and conversational transcripts from being written to Dataverse for an individual environment + Specifies list of allowed IP addresses for firewall. 1033 - 3030bdbc-d724-41ed-b530-423c2b93e154 + 78633873-6b76-4d0f-b3f3-d83ac53130bd true - Enable this feature to block access to session transcripts and conversational transcripts from being written to Dataverse for an individual environment + Specifies list of allowed IP addresses for firewall. 1033 - df497a3a-f9c9-41b5-b0db-32ce7c79166f + af705399-8c6c-4570-9f57-0f89b1b7c977 true - Block access to session transcripts and conversational transcript recording for Copilot Studio + List of IP Ranges to be allowed by the firewall rule 1033 - df497a3a-f9c9-41b5-b0db-32ce7c79166f + af705399-8c6c-4570-9f57-0f89b1b7c977 true - Block access to session transcripts and conversational transcript recording for Copilot Studio + List of IP Ranges to be allowed by the firewall rule 1033 @@ -113890,7 +121035,7 @@ false iscustomizable - true + false false false @@ -113928,153 +121073,85 @@ true true - blocktranscriptrecordingforcopilotstudio - 2025-12-14T02:08:39.4899968 + allowedlistofiprangesforfirewall + 2025-11-06T05:56:00.3369984 false canmodifyrequirementlevelsettings - SystemRequired + None - BlockTranscriptRecordingForCopilotStudio + AllowedListOfIpRangesForFirewall - BooleanType + StringType - 1.0.0.150 + 9.2.0.158 false 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 1073741823 + + + Text + + false 0 + -1 - - 0857515f-ed79-4775-a73a-2282a3f82646 + + cae66aa7-4aa7-4b03-8b3b-0d345c01e4e1 - blocktranscriptrecordingforcopilotstudio - Virtual + + String false false false - true + false canmodifyadditionalsettings - true + false - 10122 - 2025-11-06T03:38:23.88 + 10001 + 2025-11-06T01:01:00.8269952 - - + + + 850e1365-cb34-4e16-9535-1c89d1526953 + + true + Allow upload or download of certain mime types. + 1033 + + + + 850e1365-cb34-4e16-9535-1c89d1526953 + + true + Allow upload or download of certain mime types. + 1033 + - - + + + c247a450-d483-45a7-a778-93c066d6843b + + true + List of allowed mime types. + 1033 + + + + c247a450-d483-45a7-a778-93c066d6843b + + true + List of allowed mime types. + 1033 + organization @@ -114082,11 +121159,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -114097,13 +121174,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -114115,39 +121192,50 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - blocktranscriptrecordingforcopilotstudioname - 2025-11-06T03:38:23.88 + allowedmimetypes + 2026-01-25T00:30:06.5299968 - true + false canmodifyrequirementlevelsettings None - blocktranscriptrecordingforcopilotstudioName + AllowedMimeTypes - VirtualType + StringType - 1.0.0.150 - true - + 9.1.0.0 + false + 0 + Text + Auto + 1073741823 + + + Text + + + false + 0 + -1 - - 4a22033e-41f8-4504-885b-c8c94d3a8d13 + + 584ca742-bbfa-4eb5-94bd-b6750496610c - Boolean + String false false false @@ -114156,42 +121244,42 @@ canmodifyadditionalsettings true - 10249 - 2025-12-14T02:08:42.7270016 + 10019 + 2025-11-06T01:17:44.68 - bfe821de-512d-490b-a144-42c0dd6ebca1 + 64514ca7-26a0-4f2a-8336-b58a87e1d72e true - Enable this feature to block URLs and images in Copilot Studio and agent responses for an individual environment. URLs will be replaced with placeholders. + Information that specifies the List of Service Tags that should be allowed by the firewall. 1033 - bfe821de-512d-490b-a144-42c0dd6ebca1 + 64514ca7-26a0-4f2a-8336-b58a87e1d72e true - Enable this feature to block URLs and images in Copilot Studio and agent responses for an individual environment. URLs will be replaced with placeholders. + Information that specifies the List of Service Tags that should be allowed by the firewall. 1033 - c8908aca-d64f-4bc9-bf7a-37176e67d7fb + ba2a31ff-dfc0-45f5-bca0-3c22783e4d50 true - Block URLs and images in Copilot Studio responses + List of Service Tags to be allowed by the firewall rule 1033 - c8908aca-d64f-4bc9-bf7a-37176e67d7fb + ba2a31ff-dfc0-45f5-bca0-3c22783e4d50 true - Block URLs and images in Copilot Studio responses + List of Service Tags to be allowed by the firewall rule 1033 @@ -114207,7 +121295,7 @@ false iscustomizable - true + false false false @@ -114245,61 +121333,212 @@ true true - blockurlsinresponsesforcopilotstudio - 2025-12-14T02:08:42.7270016 + allowedservicetagsforfirewall + 2025-11-06T01:17:44.68 false canmodifyrequirementlevelsettings - SystemRequired + None - BlockUrlsInResponsesForCopilotStudio + AllowedServiceTagsForFirewall - BooleanType + StringType - 1.0.0.219 + 1.0.0.15 false 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f + Text + Auto + 4000 + + + Text + + + false + 0 + 8000 + + + 55d2562c-d421-4d72-b56a-fcc1e80cee04 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 165 + 1900-01-01T00:00:00 + + + + + 0b83e8f1-83e2-4ab9-9f01-f3198b96d848 - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - + true + Indicates whether auditing of changes to entity is allowed when no attributes have changed. + 1033 + + + ecbb7038-ca10-497a-b33c-d066165503b9 + + true + Angiver, om revision af ændringer til objektet er tilladt, når ingen attributter er blevet ændret. + 1030 + + + + 0b83e8f1-83e2-4ab9-9f01-f3198b96d848 + + true + Indicates whether auditing of changes to entity is allowed when no attributes have changed. + 1033 + + + + + + 06b5fcae-e056-45c7-8364-2c15ee9a471f + + true + Allow Entity Level Auditing + 1033 + + + 4d9ff2b7-00d4-4bb7-b882-4051f11dddca + + true + Tillad revision på objektniveau + 1030 + + + + 06b5fcae-e056-45c7-8364-2c15ee9a471f + + true + Allow Entity Level Auditing + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + false + true + + allowentityonlyaudit + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + AllowEntityOnlyAudit + + + BooleanType + + 5.0.0.0 + false + 0 + + true + + 453bbbaf-1e95-4a8e-8179-7266ccbaa3bd + + + + + 7fe5f56e-0ae3-4ff2-801b-f36483a6ede5 + + true + Allow Audit of changes to entity when no attribute is changed + 1033 + + + 33ca751b-85be-40dc-be22-97e4ce9906c1 + + true + Tillad revision af ændringer til objekt, når ingen attribut ændres + 1030 + + + + 7fe5f56e-0ae3-4ff2-801b-f36483a6ede5 + + true + Allow Audit of changes to entity when no attribute is changed + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_allowentityonlyaudit + Boolean + 5.0.0.0 + @@ -114313,15 +121552,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 661a3047-bd83-4e5a-905f-9f2a3131ae14 true No 1033 + + d037d33c-0ece-43b7-94e8-36b90620d8d0 + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 661a3047-bd83-4e5a-905f-9f2a3131ae14 true No @@ -114346,15 +121592,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 0b6ed8e8-20c5-4496-b1b9-35aa0661cc43 true Yes 1033 + + 97701f40-01f7-4d22-8a9d-6a96e88eeb57 + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 0b6ed8e8-20c5-4496-b1b9-35aa0661cc43 true Yes @@ -114366,102 +121619,11 @@ - + 0 - - 2efab48e-cee8-4971-a514-4c21ba0a4fcd - - blockurlsinresponsesforcopilotstudio - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10250 - 2025-12-14T02:08:42.8700032 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - blockurlsinresponsesforcopilotstudioname - 2025-12-14T02:08:42.8700032 - - true - canmodifyrequirementlevelsettings - None - - blockurlsinresponsesforcopilotstudioName - - - VirtualType - - 1.0.0.219 - true - - - - e9e9cc57-c370-4f8b-9a95-3f5a1515f673 + fa9c6f5e-8042-4006-bf15-2e604f7fb80a Boolean @@ -114473,42 +121635,56 @@ canmodifyadditionalsettings false - 420 - 1900-01-01T00:00:00 + 10182 + 2025-11-06T06:14:32.3970048 - c3b89568-470e-4b2d-90a3-8196d24939c5 + 622e47fb-7c4d-47ac-b77c-a297351eaaf7 true - Display cards in expanded state for interactive dashboard + Enables ends-with searches in grids with the use of a leading wildcard on all tables in the environment 1033 + + 8921f9d6-1f3a-4593-866a-cc1c048d84f2 + + true + Muliggør slutter med-søgninger i gitre med brug af et foranstillet jokertegn på alle tabeller i miljøet + 1030 + - c3b89568-470e-4b2d-90a3-8196d24939c5 + 622e47fb-7c4d-47ac-b77c-a297351eaaf7 true - Display cards in expanded state for interactive dashboard + Enables ends-with searches in grids with the use of a leading wildcard on all tables in the environment 1033 - b10a0080-885d-4af0-8f46-56cc79e9632d + aa23c48a-c9a1-45aa-a548-72ab8fbd4b30 true - Display cards in expanded state for Interactive Dashboard + Allow Leading Wildcards In Grid Search 1033 + + 23dbdd1c-5aec-490e-8678-1e5e740274cb + + true + Tillad foranstillede jokertegn i gittersøgning + 1030 + - b10a0080-885d-4af0-8f46-56cc79e9632d + aa23c48a-c9a1-45aa-a548-72ab8fbd4b30 true - Display cards in expanded state for Interactive Dashboard + Allow Leading Wildcards In Grid Search 1033 @@ -114518,13 +121694,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -114553,50 +121729,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - bounddashboarddefaultcardexpanded - 1900-01-01T00:00:00 + allowleadingwildcardsingridsearch + 2025-11-06T06:14:32.3970048 false canmodifyrequirementlevelsettings SystemRequired - BoundDashboardDefaultCardExpanded + AllowLeadingWildcardsInGridSearch BooleanType - 9.0.0.0 + 9.1.0.0 false 0 - + false - ce2839da-e865-42f3-bfc7-ea9669756498 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 2d0c2790-a760-446e-9cdc-58d7e16d6f43 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Flag to display cards in expanded state for Bound Dashboards + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 2d0c2790-a760-446e-9cdc-58d7e16d6f43 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Flag to display cards in expanded state for Bound Dashboards + Information that specifies whether a feature is enabled for the organization. 1033 @@ -114609,13 +121792,13 @@ false iscustomizable - true + false - false + true true - organization_bounddashboarddefaultcardexpanded + organization_featureenabled Boolean - 9.0.0.0 + 8.1.0.0 @@ -114630,15 +121813,22 @@ - b0c398f1-2bd0-4e58-a2dd-66c473725133 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - b0c398f1-2bd0-4e58-a2dd-66c473725133 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -114663,15 +121853,22 @@ - 75f9f1f0-77da-49fa-ac7f-0bf72b7bf114 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 75f9f1f0-77da-49fa-ac7f-0bf72b7bf114 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -114683,60 +121880,32 @@ - + 0 - - 8d778bd4-d346-4066-8417-6888d841f388 + + 6616c60e-61b1-4283-ab3e-11d64d01f4c6 - - String + allowleadingwildcardsingridsearch + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 77 - 1900-01-01T00:00:00 + 10183 + 2025-11-06T06:14:32.4099968 - - - c891aa12-2341-db11-898a-0007e9e17ebd - - true - Prefix used for bulk operation numbering. - 1033 - - - - c891aa12-2341-db11-898a-0007e9e17ebd - - true - Prefix used for bulk operation numbering. - 1033 - + + - - - 56b53b10-433f-4d9d-96fc-b1b5b1991755 - - true - Bulk Operation Prefix - 1033 - - - - 56b53b10-433f-4d9d-96fc-b1b5b1991755 - - true - Bulk Operation Prefix - 1033 - + + organization @@ -114744,11 +121913,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -114759,13 +121928,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -114777,50 +121946,39 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - bulkoperationprefix - 1900-01-01T00:00:00 + allowleadingwildcardsingridsearchname + 2025-11-06T06:14:32.4099968 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - BulkOperationPrefix + allowleadingwildcardsingridsearchName - StringType + VirtualType - 5.0.0.0 - false - 0 - - Text - Auto - 20 - - - Text - - - false - 0 - 40 + 9.1.0.0 + true + + - - 17daedc2-1276-4cba-8baa-631081e69318 + + 6f960ea3-39bf-4127-9fa0-83a605900c63 - String + Integer false false false @@ -114829,42 +121987,56 @@ canmodifyadditionalsettings false - 449 - 2025-11-06T00:19:20.0099968 + 10184 + 2025-11-06T06:14:32.4429952 - 7e410f0d-a1de-478a-bb89-ecf1ce5d0840 + 29b099bb-b867-4757-b06b-f60980bcd5a9 true - BusinessCardOptions + Enables ends-with searches in grids with the use of a leading wildcard on all tables in the environment 1033 + + 8d335616-8341-48cb-9945-1de889e86945 + + true + Muliggør slutter med-søgninger i gitre med brug af et foranstillet jokertegn på alle tabeller i miljøet + 1030 + - 7e410f0d-a1de-478a-bb89-ecf1ce5d0840 + 29b099bb-b867-4757-b06b-f60980bcd5a9 true - BusinessCardOptions + Enables ends-with searches in grids with the use of a leading wildcard on all tables in the environment 1033 - 7d22781b-8949-4a01-97a9-aa7b4e44a9d5 + 02dd8822-d551-4972-b9a6-f4db85a17586 true - Enable New BusinessCardOptions + Allow Leading Wildcards In Quick Find 1033 + + 9445514f-eda0-4597-b5d9-7af31042f148 + + true + Tillad foranstillede jokertegn i hurtig søgning + 1030 + - 7d22781b-8949-4a01-97a9-aa7b4e44a9d5 + 02dd8822-d551-4972-b9a6-f4db85a17586 true - Enable New BusinessCardOptions + Allow Leading Wildcards In Quick Find 1033 @@ -114874,13 +122046,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -114909,92 +122081,100 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - businesscardoptions - 2025-11-06T00:19:20.0099968 + allowleadingwildcardsinquickfind + 2025-11-06T06:14:32.4429952 false canmodifyrequirementlevelsettings SystemRequired - BusinessCardOptions + AllowLeadingWildcardsInQuickFind - StringType + IntegerType 9.1.0.0 false 0 - - Text - Auto - 1000 - - - Text - - - false + + None + 100 + 0 + 0 - 1000 - - 632aac23-30c9-40ca-a6d1-1a6a6aecca59 + + e94146c3-f424-4b8b-ae02-2148d1b2c02f - Uniqueidentifier + Boolean false false false false canmodifyadditionalsettings - false + true - 69 - 1900-01-01T00:00:00 + 428 + 2025-11-06T00:19:21.5270016 - 1f26e7d6-2241-db11-898a-0007e9e17ebd + 193f465c-4dbd-45bb-bc34-9a0545e6db98 true - Unique identifier of the business closure calendar of organization. + Enable access to legacy web client UI 1033 + + 4b6214ff-69a6-491d-99c2-e989fe9186e2 + + true + Aktivér adgang til brugergrænsefladen i ældre webklient + 1030 + - 1f26e7d6-2241-db11-898a-0007e9e17ebd + 193f465c-4dbd-45bb-bc34-9a0545e6db98 true - Unique identifier of the business closure calendar of organization. + Enable access to legacy web client UI 1033 - a988832b-3356-42cd-9690-ee5c192a5918 + 13cdf595-5ae6-44f1-a151-3355c7e41a20 true - Business Closure Calendar + Enable access to legacy web client UI 1033 + + bdad5cbb-8d9c-4cbb-95f7-a2dd341d24a7 + + true + Aktivér adgang til brugergrænsefladen i ældre webklient + 1030 + - a988832b-3356-42cd-9690-ee5c192a5918 + 13cdf595-5ae6-44f1-a151-3355c7e41a20 true - Business Closure Calendar + Enable access to legacy web client UI 1033 @@ -115002,9 +122182,9 @@ - false + true canmodifyauditsettings - false + true false @@ -115045,75 +122225,217 @@ false false true - false + true true - businessclosurecalendarid - 1900-01-01T00:00:00 + allowlegacyclientexperience + 2025-11-06T00:19:21.5270016 false canmodifyrequirementlevelsettings - None + SystemRequired - BusinessClosureCalendarId + AllowLegacyClientExperience - UniqueidentifierType + BooleanType - 5.0.0.0 + 9.0.0.0 false - + 0 + true + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 - - 172aeae3-805b-404d-abc1-93b30243526a + + d0bd3c59-1e37-449b-a80a-5d44d8ff188e - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 127 - 1900-01-01T00:00:00 + 427 + 2025-11-06T00:19:21.5730048 - e9cde1dc-2241-db11-898a-0007e9e17ebd + f4b29254-506b-4143-a18d-45bc2b9931c8 true - Calendar type for the system. Set to Gregorian US by default. + Enable embedding of certain legacy dialogs in Unified Interface browser client 1033 + + e5b7696a-7586-4b3d-a30b-178a0b4785df + + true + Aktivér indlejring af visse ældre dialogbokse i Unified Interface-browserklienten + 1030 + - e9cde1dc-2241-db11-898a-0007e9e17ebd + f4b29254-506b-4143-a18d-45bc2b9931c8 true - Calendar type for the system. Set to Gregorian US by default. + Enable embedding of certain legacy dialogs in Unified Interface browser client 1033 - 7aeba38a-04c1-43a5-938b-799725f34bfa + 06994d47-a593-48dc-9ade-f36cfd7c9450 true - Calendar Type + Enable embedding of certain legacy dialogs in Unified Interface browser client 1033 + + 3706e793-8b68-4823-969c-b40a38714b8f + + true + Aktivér indlejring af visse ældre dialogbokse i Unified Interface-browserklienten + 1030 + - 7aeba38a-04c1-43a5-938b-799725f34bfa + 06994d47-a593-48dc-9ade-f36cfd7c9450 true - Calendar Type + Enable embedding of certain legacy dialogs in Unified Interface browser client 1033 @@ -115129,7 +122451,7 @@ false iscustomizable - true + false false false @@ -115167,33 +122489,156 @@ true true - calendartype - 1900-01-01T00:00:00 + allowlegacydialogsembedding + 2025-11-06T00:19:21.5730048 false canmodifyrequirementlevelsettings - None + SystemRequired - CalendarType + AllowLegacyDialogsEmbedding - IntegerType + BooleanType - 5.0.0.0 + 9.0.0.0 false 0 - None - 2147483647 - -2147483648 + true + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - 4e6cb034-6493-442b-bff8-1d3160ef7b21 + + 19d5b741-0ed4-4e5c-b3b3-c6e5bde7e37b - String + Boolean false false false @@ -115202,42 +122647,56 @@ canmodifyadditionalsettings false - 80 + 58 1900-01-01T00:00:00 - 9dd8dee2-2241-db11-898a-0007e9e17ebd + b999ba00-2341-db11-898a-0007e9e17ebd true - Prefix used for campaign numbering. + Indicates whether marketing emails execution is allowed. 1033 + + 9338d584-29a0-4f09-9529-f1e0def2ed4e + + true + Angiver, om det er tilladt at sende marketing-e-mails. + 1030 + - 9dd8dee2-2241-db11-898a-0007e9e17ebd + b999ba00-2341-db11-898a-0007e9e17ebd true - Prefix used for campaign numbering. + Indicates whether marketing emails execution is allowed. 1033 - a596b09c-2cc2-48ae-a94c-c672ecaed3aa + cf0915ae-fb40-4670-8bc6-bbce31c0e98b true - Campaign Prefix + Allow Marketing Email Execution 1033 + + 398c370c-b511-4824-93eb-857b447848d5 + + true + Tillad udsendelse af marketing-e-mail + 1030 + - a596b09c-2cc2-48ae-a94c-c672ecaed3aa + cf0915ae-fb40-4670-8bc6-bbce31c0e98b true - Campaign Prefix + Allow Marketing Email Execution 1033 @@ -115291,36 +122750,153 @@ true true - campaignprefix + allowmarketingemailexecution 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - CampaignPrefix + AllowMarketingEmailExecution - StringType + BooleanType 5.0.0.0 false 0 - Text - Auto - 20 - - - Text - + false + + ada613fa-4b66-4ad3-a4a8-61426b647b28 + + + + + c8161293-f748-42f8-8f46-a3e86505dbc2 + + true + Indication of whether marketing emails execution is allowed. + 1033 + + + d90d83c3-d921-4457-aa6b-da4629fcf0dd + + true + Angiver, om det er tilladt at sende marketing-e-mails. + 1030 + + + + c8161293-f748-42f8-8f46-a3e86505dbc2 + + true + Indication of whether marketing emails execution is allowed. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_allowmarketingemailexecution + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 51c888bf-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + f31628c1-d172-4b3f-98a7-76bf4eca82db + + true + Nej + 1030 + + + + 51c888bf-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 53c888bf-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + b1fa5ad3-8951-42ab-b57d-d1ba11736f4b + + true + Ja + 1030 + + + + 53c888bf-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 40 - 7391365e-374a-40d3-b80a-f2a0b64cd2fc + bf6efc48-e9d8-469f-8b3a-3732e5615ff5 Boolean @@ -115330,44 +122906,44 @@ false canmodifyadditionalsettings - false + true - 10172 - 2025-11-06T06:14:32.2530048 + 10021 + 2025-11-06T01:17:44.7100032 - fc6cf115-e7d0-4d29-af9a-19f684cf2a53 + ab25144d-bb47-4a52-89f5-fc142f665ebc true - Indicates whether the organization can opt out of the new Relevance search experience (released in Oct 2020) + Information that specifies whether Microsoft Trusted Service Tags are allowed 1033 - fc6cf115-e7d0-4d29-af9a-19f684cf2a53 + ab25144d-bb47-4a52-89f5-fc142f665ebc true - Indicates whether the organization can opt out of the new Relevance search experience (released in Oct 2020) + Information that specifies whether Microsoft Trusted Service Tags are allowed 1033 - 4c6e8586-6e7a-40cd-8aab-a513be055e77 + 7e1a6b6b-ef60-4d9a-b63a-6559fa8690c4 true - Can disable Oct 2020 Search + Allow Microsoft Trusted Service Tags 1033 - 4c6e8586-6e7a-40cd-8aab-a513be055e77 + 7e1a6b6b-ef60-4d9a-b63a-6559fa8690c4 true - Can disable Oct 2020 Search + Allow Microsoft Trusted Service Tags 1033 @@ -115377,13 +122953,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -115412,28 +122988,28 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - canoptoutnewsearchexperience - 2025-11-06T06:14:32.2530048 + allowmicrosofttrustedservicetags + 2025-11-06T01:17:44.7100032 false canmodifyrequirementlevelsettings SystemRequired - CanOptOutNewSearchExperience + AllowMicrosoftTrustedServiceTags BooleanType - 9.1.0.0 + 1.0.0.15 false 0 @@ -115450,6 +123026,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -115495,6 +123078,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -115528,6 +123118,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -115546,9 +123143,9 @@ 0 - 39e17ea1-2c42-4041-846f-a7cc1c8a0a17 + e4fce6e6-7206-4c3f-9e17-4d04eae7202a - canoptoutnewsearchexperience + allowmicrosofttrustedservicetags Virtual false false @@ -115558,8 +123155,8 @@ canmodifyadditionalsettings true - 10173 - 2025-11-06T06:14:32.2700032 + 10022 + 2025-11-06T01:17:44.7270016 @@ -115619,25 +123216,25 @@ false false - canoptoutnewsearchexperiencename - 2025-11-06T06:14:32.2700032 + allowmicrosofttrustedservicetagsname + 2025-11-06T01:17:44.7270016 true canmodifyrequirementlevelsettings None - canoptoutnewsearchexperienceName + allowmicrosofttrustedservicetagsName VirtualType - 9.1.0.0 + 1.0.0.15 true - 363642f8-9492-401d-9b4e-30af2a531ebf + c954f1fe-9102-dc11-aa9d-00123f558caf Boolean @@ -115647,44 +123244,58 @@ false canmodifyadditionalsettings - true + false - 252 + 119 1900-01-01T00:00:00 - 038faa7c-dbec-48db-8e12-8e33e2cb70c7 + 795b34c2-4103-dc11-aa9d-00123f558caf true - Flag to cascade Update on incident. + Indicates whether background offline synchronization in Microsoft Office Outlook is allowed. 1033 + + 9595d4b6-dba9-4f30-ab0c-084d2871f8c2 + + true + Angiver om offline-synkronisering i baggrunden er tilladt i Microsoft Office Outlook. + 1030 + - 038faa7c-dbec-48db-8e12-8e33e2cb70c7 + 795b34c2-4103-dc11-aa9d-00123f558caf true - Flag to cascade Update on incident. + Indicates whether background offline synchronization in Microsoft Office Outlook is allowed. 1033 - ea0f6c59-05bf-4676-bf01-beb5f3691614 + d63e73f0-5c31-4339-ade9-308d73cdbd89 true - Cascade Status Update + Allow Offline Scheduled Synchronization 1033 + + 29765916-9668-48fa-9cfc-64dd85f02b89 + + true + Tillad planlagt synkronisering offline + 1030 + - ea0f6c59-05bf-4676-bf01-beb5f3691614 + d63e73f0-5c31-4339-ade9-308d73cdbd89 true - Cascade Status Update + Allow Offline Scheduled Synchronization 1033 @@ -115700,7 +123311,7 @@ false iscustomizable - false + true false false @@ -115738,41 +123349,48 @@ true true - cascadestatusupdate + allowofflinescheduledsyncs 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - CascadeStatusUpdate + AllowOfflineScheduledSyncs BooleanType - 6.1.0.0 + 5.0.0.0 false 0 false - 1dc3c241-b359-4a41-a682-4fb7cf87e08a + b1b9b957-63b5-4afa-8bc7-affe4b883cca - aea24fad-1f5b-4e0d-af85-a93c4e793937 + 8b758d5d-6657-4f07-8648-629e79afd621 true - Cascade Status Update + Flag to enable or disable background offline synchronization in Microsoft Office Outlook. 1033 + + 66f722d2-9992-4946-ab98-e0d0c4d8ce66 + + true + Flag for aktivering/deaktivering af offlinesynkronisering i baggrunden i Microsoft Office Outlook. + 1030 + - aea24fad-1f5b-4e0d-af85-a93c4e793937 + 8b758d5d-6657-4f07-8648-629e79afd621 true - Cascade Status Update + Flag to enable or disable background offline synchronization in Microsoft Office Outlook. 1033 @@ -115785,13 +123403,13 @@ false iscustomizable - false + true false true - organization_cascadestatusupdate + organization_allowofflinescheduledsyncs Boolean - 6.1.0.0 + 5.0.0.0 @@ -115806,15 +123424,22 @@ - e148a36c-5959-45f9-bc87-3faf997311d7 + 7b5b34c2-4103-dc11-aa9d-00123f558caf true No 1033 + + 398dd9f5-f0b2-4d14-a487-6c6bc15b6954 + + true + Nej + 1030 + - e148a36c-5959-45f9-bc87-3faf997311d7 + 7b5b34c2-4103-dc11-aa9d-00123f558caf true No @@ -115839,15 +123464,22 @@ - 5c28a06c-b643-47fc-836e-139cdce18261 + 7d5b34c2-4103-dc11-aa9d-00123f558caf true Yes 1033 + + 09a5217c-fdeb-45d5-9d06-7018c61bc5fc + + true + Ja + 1030 + - 5c28a06c-b643-47fc-836e-139cdce18261 + 7d5b34c2-4103-dc11-aa9d-00123f558caf true Yes @@ -115862,11 +123494,11 @@ 0 - - 14a34d80-7f99-4d54-87c4-90798585b827 + + cc2e82df-9ce8-4843-bc40-79cbae9751ed - String + Boolean false false false @@ -115875,42 +123507,56 @@ canmodifyadditionalsettings false - 21 + 57 1900-01-01T00:00:00 - 6e64cfee-2241-db11-898a-0007e9e17ebd + a426e7d6-2241-db11-898a-0007e9e17ebd true - Prefix to use for all cases throughout Microsoft Dynamics 365. + Indicates whether scheduled synchronizations to Outlook are allowed. 1033 + + 1959c85e-b976-4330-a09c-7a9157673df7 + + true + Angiver, om planlagte synkroniseringer med Outlook er tilladt. + 1030 + - 6e64cfee-2241-db11-898a-0007e9e17ebd + a426e7d6-2241-db11-898a-0007e9e17ebd true - Prefix to use for all cases throughout Microsoft Dynamics 365. + Indicates whether scheduled synchronizations to Outlook are allowed. 1033 - ba20cdae-5aa7-42d9-89e0-c3df811d8ccb + 57b8e9a9-13b3-4be0-9b89-65c5e07ff7ea true - Case Prefix + Allow Scheduled Synchronization 1033 + + 5581ed78-618d-43b3-bf71-6a388795f7b0 + + true + Tillad planlagt synkronisering + 1030 + - ba20cdae-5aa7-42d9-89e0-c3df811d8ccb + 57b8e9a9-13b3-4be0-9b89-65c5e07ff7ea true - Case Prefix + Allow Scheduled Synchronization 1033 @@ -115964,39 +123610,156 @@ true true - caseprefix + allowoutlookscheduledsyncs 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - CasePrefix + AllowOutlookScheduledSyncs - StringType + BooleanType 5.0.0.0 false 0 - Text - Auto - 20 - - - Text - + false + + ea4183d6-60bd-491a-b8bf-4b530e123771 + + + + + a4bc730c-41f7-4017-ba08-a7538cd3d9c6 + + true + Indication of whether scheduled synchronizations to Outlook are allowed. + 1033 + + + b379a9ca-01fd-4c17-9dd4-e1b2fd149a46 + + true + Angiver, om planlagte synkroniseringer med Outlook er tilladt. + 1030 + + + + a4bc730c-41f7-4017-ba08-a7538cd3d9c6 + + true + Indication of whether scheduled synchronizations to Outlook are allowed. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_allowoutlookscheduledsyncs + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 55c888bf-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + b0e193d0-c60c-4dd2-a9a9-edcfe78f83fc + + true + Nej + 1030 + + + + 55c888bf-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 57c888bf-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + 7d60c76a-ca32-4f98-9c0d-724094840f83 + + true + Ja + 1030 + + + + 57c888bf-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 40 - - 7bb2ae9c-3f22-4cb8-9079-70696ab42be3 + + 9abea9a0-0610-447d-a0c0-72ad01d4cab1 - String + Boolean false false false @@ -116005,42 +123768,56 @@ canmodifyadditionalsettings false - 374 - 1900-01-01T00:00:00 + 10188 + 2025-11-06T06:14:32.52 - e800ff20-6e21-4f32-9408-4de6064f73a7 + 9b96647f-19ea-4674-97b3-da55d4dffd92 true - Type the prefix to use for all categories in Microsoft Dynamics 365. + Control whether the organization Allow Redirect Legacy Admin Settings To Modern UI 1033 + + e41ec63c-0e8b-4298-8aa6-fafb880ae197 + + true + Kontrollér, om organisationen tillader, at ældre administratorindstillinger omdirigeres til en moderne brugergrænseflade + 1030 + - e800ff20-6e21-4f32-9408-4de6064f73a7 + 9b96647f-19ea-4674-97b3-da55d4dffd92 true - Type the prefix to use for all categories in Microsoft Dynamics 365. + Control whether the organization Allow Redirect Legacy Admin Settings To Modern UI 1033 - a3d26d1c-141a-4844-a079-ef1107330404 + cfb6fea6-1fbf-46d2-88a3-a659dc7c16e5 true - Category Prefix + Allow Redirect Legacy Admin Settings To Modern UI 1033 + + a1352f68-9c4f-4240-8ebd-bca07db445c2 + + true + Tillad omdirigering af ældre administratorindstillinger til en moderne brugergrænseflade + 1030 + - a3d26d1c-141a-4844-a079-ef1107330404 + cfb6fea6-1fbf-46d2-88a3-a659dc7c16e5 true - Category Prefix + Allow Redirect Legacy Admin Settings To Modern UI 1033 @@ -116050,13 +123827,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -116085,94 +123862,183 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - categoryprefix - 1900-01-01T00:00:00 + allowredirectadminsettingstomodernui + 2025-11-06T06:14:32.52 false canmodifyrequirementlevelsettings SystemRequired - CategoryPrefix + AllowRedirectAdminSettingsToModernUI - StringType + BooleanType - 8.1.0.0 + 9.1.0.0 false 0 - - Text - Auto - 20 - - - Text - - - false + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - 40 - - d63952e0-6a43-4c56-a405-8867403cf2db + + a099d1ff-818b-4cd0-b45b-4261263a3b10 - - String + allowredirectadminsettingstomodernui + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 424 - 2025-11-06T00:19:21.5869952 + 10189 + 2025-11-06T06:14:32.5369984 - - - 0fa5d56b-3269-48b8-a654-5592b1ec6a05 - - true - Client Features to be enabled as an XML BLOB. - 1033 - - - - 0fa5d56b-3269-48b8-a654-5592b1ec6a05 - - true - Client Features to be enabled as an XML BLOB. - 1033 - + + - - - c3d67a1c-de30-46d0-966d-46a66db41257 - - true - Client Feature Set - 1033 - - - - c3d67a1c-de30-46d0-966d-46a66db41257 - - true - Client Feature Set - 1033 - + + organization @@ -116180,13 +124046,13 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -116195,13 +124061,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -116213,50 +124079,39 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - clientfeatureset - 2025-11-06T00:19:21.5869952 + allowredirectadminsettingstomodernuiname + 2025-11-06T06:14:32.5369984 - false + true canmodifyrequirementlevelsettings None - ClientFeatureSet + allowredirectadminsettingstomodernuiName - StringType + VirtualType - 9.0.0.0 - false - 0 - - Text - Auto - 1073741823 - - - Text - - - false - 0 - -1 + 9.1.0.0 + true + + - - 5741e24c-2112-4182-93f6-4f6f9fb27465 + + 09c38e2a-fab3-4959-964d-75060aa8ea1d - String + Boolean false false false @@ -116265,42 +124120,56 @@ canmodifyadditionalsettings false - 443 - 2025-11-06T00:19:21.8230016 + 120 + 1900-01-01T00:00:00 - 471848ee-202f-4064-a64d-efab2dbdaef1 + 5841b506-2341-db11-898a-0007e9e17ebd true - Policy configuration for CSP + Indicates whether users are allowed to send email to unresolved parties (parties must still have an email address). 1033 + + bd1ade2d-036c-420b-b496-465725a0b36e + + true + Angiver, om brugere må sende e-mail til ukendte parter (parter skal have en e-mail-adresse). + 1030 + - 471848ee-202f-4064-a64d-efab2dbdaef1 + 5841b506-2341-db11-898a-0007e9e17ebd true - Policy configuration for CSP + Indicates whether users are allowed to send email to unresolved parties (parties must still have an email address). 1033 - ce269343-79a3-4258-ba61-43cc977c5e9d + 5e5dd4cd-ac05-45c5-8264-c28c5cb0bad5 true - Content Security Policy Configuration + Allow Unresolved Address Email Send 1033 + + 02300644-4dfd-467f-887d-2e10239467eb + + true + Tillad afsendelse af e-mail til ukendt adresse + 1030 + - ce269343-79a3-4258-ba61-43cc977c5e9d + 5e5dd4cd-ac05-45c5-8264-c28c5cb0bad5 true - Content Security Policy Configuration + Allow Unresolved Address Email Send 1033 @@ -116354,39 +124223,156 @@ true true - contentsecuritypolicyconfiguration - 2025-11-06T00:19:21.8230016 + allowunresolvedpartiesonemailsend + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - ContentSecurityPolicyConfiguration + AllowUnresolvedPartiesOnEmailSend - StringType + BooleanType - 9.1.0.0 + 5.0.0.0 false 0 - Text - Auto - 1073741823 - - - Text - + false + + 85c99d9c-688e-44a2-90a1-0c12cd36b4d8 + + + + + 49f91c89-bb3b-4448-ae0e-609979cfa336 + + true + Flag to allow the user to send email to unresolved parties (parties must still have an email address). + 1033 + + + 8db80052-5e1a-44dd-897b-df688846e60b + + true + Marker med flag for at tillade brugeren at sende e-mail til ukendte parter (parter skal have en e-mail-adresse). + 1030 + + + + 49f91c89-bb3b-4448-ae0e-609979cfa336 + + true + Flag to allow the user to send email to unresolved parties (parties must still have an email address). + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_allowunresolvedpartiesonemailsend + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 59c888bf-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + 734112d5-dcef-45c2-8571-6850537e91ef + + true + Nej + 1030 + + + + 59c888bf-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 5bc888bf-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + a3598dc4-c8e5-4c5e-8c2f-21471d3a7512 + + true + Ja + 1030 + + + + 5bc888bf-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + - false 0 - -1 - - 621c4443-929c-4ee6-be56-bce66d202db3 + + eb35f4cb-01a9-4d8a-b8db-d91951284782 - String + Boolean false false false @@ -116395,42 +124381,56 @@ canmodifyadditionalsettings false - 10213 - 2025-11-06T06:14:32.8169984 + 211 + 1900-01-01T00:00:00 - 236eeb6a-944c-4c22-bb66-9b7cbff15d8d + 38a1d991-0fce-4374-a2a4-1c9cabe02b19 true - Content Security Policy configuration for Canvas apps. + Indicates whether individuals can select their form mode preference in their personal options. 1033 + + f9838a6f-1b8c-49da-8998-3d1b35ede43a + + true + Angiver, om personer kan vælge deres foretrukne formulartilstand under deres personlige indstillinger. + 1030 + - 236eeb6a-944c-4c22-bb66-9b7cbff15d8d + 38a1d991-0fce-4374-a2a4-1c9cabe02b19 true - Content Security Policy configuration for Canvas apps. + Indicates whether individuals can select their form mode preference in their personal options. 1033 - 53fb05b6-5294-4249-a6b9-48ae2460e750 + fc9afcfe-b25a-4f04-8572-d739fcb3b4e2 true - Content Security Policy Configuration for Canvas apps + Allow User Form Mode Preference 1033 + + 32e63114-6b63-4b63-b11f-31aee1acd265 + + true + Tillad, at brugeren kan indstille formulartilstand + 1030 + - 53fb05b6-5294-4249-a6b9-48ae2460e750 + fc9afcfe-b25a-4f04-8572-d739fcb3b4e2 true - Content Security Policy Configuration for Canvas apps + Allow User Form Mode Preference 1033 @@ -116440,7 +124440,7 @@ true canmodifyauditsettings - false + true false @@ -116475,48 +124475,186 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - contentsecuritypolicyconfigurationforcanvas - 2025-11-06T06:14:32.8169984 + allowuserformmodepreference + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - ContentSecurityPolicyConfigurationForCanvas + AllowUserFormModePreference - StringType + BooleanType - 9.1.0.0 + 5.0.0.0 false 0 - - Text - Auto - 4000 - - - Text - - - false + + true + + 2a257c44-5800-47ce-8281-711013d87690 + + + + + 5a1ce94e-7b5a-4859-bcca-1c17750aab56 + + true + Indicates whether individuals can select their form mode preference in their personal options. + 1033 + + + 2108a858-0018-47a9-8aea-78c73b8cb574 + + true + Angiver, om personer kan vælge deres foretrukne formulartilstand under deres personlige indstillinger. + 1030 + + + + 5a1ce94e-7b5a-4859-bcca-1c17750aab56 + + true + Indicates whether individuals can select their form mode preference in their personal options. + 1033 + + + + + + 17bba173-28c1-4395-a1e3-dd4715a0b0b0 + + true + Allow User Form Mode Preference + 1033 + + + a7397671-8bf0-481f-a686-f8617a495d22 + + true + Tillad, at brugeren kan indstille formulartilstand + 1030 + + + + 17bba173-28c1-4395-a1e3-dd4715a0b0b0 + + true + Allow User Form Mode Preference + 1033 + + + + false + + false + iscustomizable + false + + false + true + organization_allowuserformmodepreference + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 6c0310b5-4676-43cd-a1c2-e2b23f36e9f3 + + true + No + 1033 + + + cc98f352-13f9-44f2-9e0c-54e2a9d2b659 + + true + Nej + 1030 + + + + 6c0310b5-4676-43cd-a1c2-e2b23f36e9f3 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 8b6e1227-37bc-48ba-bf41-d3fdad304de6 + + true + Yes + 1033 + + + 24efe89b-b9a1-4346-8ca5-24f1ef86a5d6 + + true + Ja + 1030 + + + + 8b6e1227-37bc-48ba-bf41-d3fdad304de6 + + true + Yes + 1033 + + + + 1 + + + + 0 - 8000 - - 43d80b01-5eb9-4398-b33c-dc2cc96f1bbc + + d24021c6-af69-4908-90fb-a444954d6912 - Integer + Boolean false false false @@ -116525,42 +124663,56 @@ canmodifyadditionalsettings false - 10215 - 2025-11-06T06:14:32.8630016 + 10206 + 2025-11-06T06:14:32.7399936 - 1e2a1a7b-2fb9-4884-b1b5-c1fd5b3d537b + 45c3f113-0820-4b53-a596-3a70545a55db true - Content Security Policy Options. + Flag to indicate if allow end users to hide system views in model-driven apps is enabled 1033 + + a0167ade-5f1d-40bc-8d6a-5de56d0bab9b + + true + Flag, der angiver, om Tillad slutbrugere at skjule systemvisninger i modelbaserede apps er aktiveret + 1030 + - 1e2a1a7b-2fb9-4884-b1b5-c1fd5b3d537b + 45c3f113-0820-4b53-a596-3a70545a55db true - Content Security Policy Options. + Flag to indicate if allow end users to hide system views in model-driven apps is enabled 1033 - 8c299db4-c2b7-4ccf-ae50-cc2feaf1bf8e + 4aca68b1-1446-4a81-817b-f119f0b1e11d true - Content Security Policy Options + Allow users hiding system views 1033 + + 3910f2bd-2498-4c14-8820-2af6b1cf6d12 + + true + Tillad brugere at skjule systemvisninger + 1030 + - 8c299db4-c2b7-4ccf-ae50-cc2feaf1bf8e + 4aca68b1-1446-4a81-817b-f119f0b1e11d true - Content Security Policy Options + Allow users hiding system views 1033 @@ -116607,216 +124759,181 @@ canmodifysearchsettings true - false + true true true true true true - contentsecuritypolicyoptions - 2025-11-06T06:14:32.8630016 + allowusershidingsystemviews + 2025-11-06T06:14:32.7399936 false canmodifyrequirementlevelsettings SystemRequired - ContentSecurityPolicyOptions + AllowUsersHidingSystemViews - IntegerType + BooleanType - 9.2.0.0 + 9.1.0.0 false 0 - None - 1024 - 0 - - 0 - - - 36809a81-d39d-4c78-8d52-cac38bfcbc2a - - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 10214 - 2025-11-06T06:14:32.8499968 - - - - - 5938296a-f440-4842-99a6-39032d0a2a03 - - true - Content Security Policy Report Uri. - 1033 - - - - 5938296a-f440-4842-99a6-39032d0a2a03 - - true - Content Security Policy Report Uri. - 1033 - - - - - - 3bed7ff4-03f5-420d-b383-67e6885ddfa4 + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f - true - Content Security Policy Report Uri - 1033 - - - - 3bed7ff4-03f5-420d-b383-67e6885ddfa4 + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + - true - Content Security Policy Report Uri - 1033 - - - organization - - - - true - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - contentsecuritypolicyreporturi - 2025-11-06T06:14:32.8499968 - - false - canmodifyrequirementlevelsettings - None - - ContentSecurityPolicyReportUri - - - StringType - - 9.1.0.0 - false - 0 - - Text - Auto - 4000 - - - Text - + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 8000 - - f8726762-ede0-48ff-9823-97373e8bb2e8 + + cfb6c967-167a-4ba4-a6d1-4c1efa029ae7 - - String + allowusershidingsystemviews + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 23 - 1900-01-01T00:00:00 + 10207 + 2025-11-06T06:14:32.7399936 - - - 2752c2fa-2241-db11-898a-0007e9e17ebd - - true - Prefix to use for all contracts throughout Microsoft Dynamics 365. - 1033 - - - - 2752c2fa-2241-db11-898a-0007e9e17ebd - - true - Prefix to use for all contracts throughout Microsoft Dynamics 365. - 1033 - + + - - - 88ff37cd-dc4a-4539-9d39-5d7f8262a414 - - true - Contract Prefix - 1033 - - - - 88ff37cd-dc4a-4539-9d39-5d7f8262a414 - - true - Contract Prefix - 1033 - + + organization @@ -116824,11 +124941,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -116839,13 +124956,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -116857,218 +124974,97 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - contractprefix - 1900-01-01T00:00:00 + allowusershidingsystemviewsname + 2025-11-06T06:14:32.7399936 - false + true canmodifyrequirementlevelsettings None - ContractPrefix + allowusershidingsystemviewsName - StringType + VirtualType - 5.0.0.0 - false - 0 - - Text - Auto - 20 - - - Text - - - false - 0 - 40 + 9.1.0.0 + true + + - - 3b217b7a-06a2-4e83-810a-7b6b48c4b195 + + 99d2a07a-beaf-43dc-82b3-c1621089cba7 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 10137 - 2025-11-06T04:12:32.7229952 + 249 + 1900-01-01T00:00:00 - 0c408322-d8a4-4d7e-b310-93e614ab54bc + 211cb183-31ff-4e08-b744-22860ce9bff1 true - Refresh rate for copresence data in seconds. + Indicates whether the showing tablet application notification bars in a browser is allowed. 1033 - - - 0c408322-d8a4-4d7e-b310-93e614ab54bc - - true - Refresh rate for copresence data in seconds. - 1033 - - - - - 22ce9546-b0f4-4d81-9385-65950d285bf4 + 361e3362-1771-4b0a-8ec2-f8f565b13fb0 true - CopresenceRefreshRate - 1033 + Angiver, om tabletprogrammers meddelelseslinje må vises i en browser. + 1030 - 22ce9546-b0f4-4d81-9385-65950d285bf4 + 211cb183-31ff-4e08-b744-22860ce9bff1 true - CopresenceRefreshRate + Indicates whether the showing tablet application notification bars in a browser is allowed. 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - copresencerefreshrate - 2025-11-06T04:12:32.7229952 - - false - canmodifyrequirementlevelsettings - SystemRequired - - CopresenceRefreshRate - - - IntegerType - - 9.2.0.0 - false - 0 - - None - 2147483647 - 30 - - 0 - - - 5870efc1-a636-47c3-9784-8f634e2e7a81 - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 327 - 1900-01-01T00:00:00 - - + + - d4a14713-32fe-44e5-b74f-d612aabe53dc + 0d84b069-6df9-4295-a8a9-bff673126cc4 true - Indicates whether the feature CortanaProactiveExperience Flow processes should be enabled for the organization. + Allow the showing tablet application notification bars in a browser. 1033 - - - d4a14713-32fe-44e5-b74f-d612aabe53dc - - true - Indicates whether the feature CortanaProactiveExperience Flow processes should be enabled for the organization. - 1033 - - - - - aeb1e018-58f1-4c37-9d9b-711111de28b0 + 37d60bfa-1509-4083-bdf8-6a0ba716c988 true - Enable Cortana Proactive Experience Flow processes for this Organization - 1033 + Tillad, at tabletprogrammers meddelelseslinje må vises i en browser. + 1030 - aeb1e018-58f1-4c37-9d9b-711111de28b0 + 0d84b069-6df9-4295-a8a9-bff673126cc4 true - Enable Cortana Proactive Experience Flow processes for this Organization + Allow the showing tablet application notification bars in a browser. 1033 @@ -117099,7 +125095,7 @@ false isrenameable - false + true false false @@ -117111,7 +125107,7 @@ false - false + true canmodifysearchsettings false @@ -117122,41 +125118,48 @@ true true - cortanaproactiveexperienceenabled + allowusersseeappdownloadmessage 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - CortanaProactiveExperienceEnabled + AllowUsersSeeAppdownloadMessage BooleanType - 8.0.0.0 + 6.0.0.0 false 0 - false + true - afa89fb2-dcc9-455a-9cbc-711ec12752fd + 3bf0aaab-b730-4daa-999a-fee9b00dce17 - df5c6610-b118-4a3e-9332-3f1a3529d701 + 6634285b-a37b-4d9f-9fa6-3a2adab78891 true - Information that specifies whether the cortana proactive Task Flow processes are enabled for the organization. + Flag to enable or disable the showing tablet application notification bars in a browser. 1033 + + 59a698f5-ae83-47f1-9445-ae00385bfa22 + + true + Flag for aktivering/deaktivering af visningen af tabletprogrammers meddelelseslinje i en browser. + 1030 + - df5c6610-b118-4a3e-9332-3f1a3529d701 + 6634285b-a37b-4d9f-9fa6-3a2adab78891 true - Information that specifies whether the cortana proactive Task Flow processes are enabled for the organization. + Flag to enable or disable the showing tablet application notification bars in a browser. 1033 @@ -117173,9 +125176,9 @@ false true - organization_cortanaproactiveexperienceenabled + organization_allowusersseeappdownloadmessage Boolean - 8.0.0.0 + 6.0.0.0 @@ -117190,15 +125193,22 @@ - cb544bab-89f7-445b-b0fb-4fe882bbd18c + 51190052-1c48-476d-8de1-625e6c5490f2 true No 1033 + + e3934252-21ff-4a40-83a2-aff0d42ea342 + + true + Nej + 1030 + - cb544bab-89f7-445b-b0fb-4fe882bbd18c + 51190052-1c48-476d-8de1-625e6c5490f2 true No @@ -117223,15 +125233,22 @@ - 2ecaa7f8-964e-4e8d-8d51-40f33b46ef48 + 7643f515-011e-4a72-8a9f-0b27bedb3e27 true Yes 1033 + + dc5550d8-ca1d-40da-9ea2-2e44adf5f624 + + true + Ja + 1030 + - 2ecaa7f8-964e-4e8d-8d51-40f33b46ef48 + 7643f515-011e-4a72-8a9f-0b27bedb3e27 true Yes @@ -117246,11 +125263,11 @@ 0 - - 3f206541-e304-46f6-bad0-fa3ef3b8702d + + 4a4975e0-7cb1-415e-b7b7-43d7c264dd03 - Lookup + Boolean false false false @@ -117259,42 +125276,42 @@ canmodifyadditionalsettings false - 55 - 1900-01-01T00:00:00 + 10004 + 2025-11-06T01:05:35.4099968 - 7f9af6ca-2241-db11-898a-0007e9e17ebd + 232eebcf-14b3-4533-be8e-26b7810ce5ef true - Unique identifier of the user who created the organization. + Warning : Allowing Virtual Entity plugin execution on nested pipeline does not offer transactional support. i.e. if call in native entity pipeline fails, then virtual entity operation will not be reverted. 1033 - 7f9af6ca-2241-db11-898a-0007e9e17ebd + 232eebcf-14b3-4533-be8e-26b7810ce5ef true - Unique identifier of the user who created the organization. + Warning : Allowing Virtual Entity plugin execution on nested pipeline does not offer transactional support. i.e. if call in native entity pipeline fails, then virtual entity operation will not be reverted. 1033 - 0ac50a40-ddfb-4dba-9f63-b90808327cd8 + 989ec3d1-8f48-4523-9cd7-9a29b5544df3 true - Created By + Allow Virtual Entity Plugin Execution In Nested Pipeline. 1033 - 0ac50a40-ddfb-4dba-9f63-b90808327cd8 + 989ec3d1-8f48-4523-9cd7-9a29b5544df3 true - Created By + Allow Virtual Entity Plugin Execution In Nested Pipeline. 1033 @@ -117302,9 +125319,9 @@ - false + true canmodifyauditsettings - false + true false @@ -117341,151 +125358,166 @@ canmodifysearchsettings false - false + true false false true - false + true true - createdby - 1900-01-01T00:00:00 + allowvirtualentitypluginexecutiononnestedpipeline + 2025-11-06T01:05:35.4099968 false canmodifyrequirementlevelsettings - None + SystemRequired - CreatedBy + AllowVirtualEntityPluginExecutionOnNestedPipeline - LookupType + BooleanType - 5.0.0.0 + 9.2.0.0 false - - - None - - systemuser - - - - c77fb333-2d00-4ee5-8de6-e2990c93c8c9 - - createdby - String - false - false - false - - false - canmodifyadditionalsettings - false - - 100 - 1900-01-01T00:00:00 - - - - - - - - - - organization - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - createdbyname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - CreatedByName - - - StringType - - 5.0.0.0 - true 0 - - Text - Auto - 100 - - - Text - - - false + + false + + 03b46aad-acba-f011-bbd3-7c1e52365f30 + + + + + 05b46aad-acba-f011-bbd3-7c1e52365f30 + + true + Warning : Allowing Virtual Entity plugin execution on nested pipeline does not offer transactional support. i.e. if call in native entity pipeline fails, then virtual entity operation will not be reverted + 1033 + + + + 05b46aad-acba-f011-bbd3-7c1e52365f30 + + true + Warning : Allowing Virtual Entity plugin execution on nested pipeline does not offer transactional support. i.e. if call in native entity pipeline fails, then virtual entity operation will not be reverted + 1033 + + + + + + 04b46aad-acba-f011-bbd3-7c1e52365f30 + + true + Allow Virtual Entity Plugin Execution In Nested Pipeline. + 1033 + + + + 04b46aad-acba-f011-bbd3-7c1e52365f30 + + true + Allow Virtual Entity Plugin Execution In Nested Pipeline. + 1033 + + + + true + + false + iscustomizable + false + + false + true + organization_allowvirtualentitypluginexecutiononnestedpipelines + Boolean + 9.2.0.0 + + + + + + + + + + false + true + + + + b24c11d5-24b9-4185-a8ae-32b315fd4f60 + + true + No + 1033 + + + + b24c11d5-24b9-4185-a8ae-32b315fd4f60 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + c421670d-43d0-4b80-a536-ba2e88dcc598 + + true + Yes + 1033 + + + + c421670d-43d0-4b80-a536-ba2e88dcc598 + + true + Yes + 1033 + + + + 1 + + + + 0 - 320 - - efa6801d-4bf2-4388-9022-f2e0f06fb9fd + + 956f5ae5-1b31-4990-afdc-4f99a0be06ee - createdby - String + allowvirtualentitypluginexecutiononnestedpipeline + Virtual false false false false canmodifyadditionalsettings - false + true - 153 - 1900-01-01T00:00:00 + 10005 + 2025-11-06T01:05:35.4230016 @@ -117499,7 +125531,7 @@ - false + true canmodifyauditsettings false @@ -117507,7 +125539,7 @@ false iscustomizable - false + true false false @@ -117522,7 +125554,7 @@ false isrenameable - false + true false false @@ -117534,7 +125566,7 @@ false - false + true canmodifysearchsettings false @@ -117545,39 +125577,28 @@ false false - createdbyyominame - 1900-01-01T00:00:00 + allowvirtualentitypluginexecutiononnestedpipelinename + 2025-11-06T01:05:35.4230016 - false + true canmodifyrequirementlevelsettings None - CreatedByYomiName + allowvirtualentitypluginexecutiononnestedpipelineName - StringType + VirtualType - 5.0.0.0 + 9.2.0.0 true - 0 - - Text - Auto - 100 - createdbyname - - Text - - - false - 0 - 320 + + - - 70be68bd-6d9e-4e1b-b96d-3684ad3a1286 + + 2d8c3263-bc82-48ab-96cf-c0a729f52b63 - DateTime + Boolean false false false @@ -117586,42 +125607,56 @@ canmodifyadditionalsettings false - 32 + 124 1900-01-01T00:00:00 - ac91aa12-2341-db11-898a-0007e9e17ebd + 6a178ca5-2094-43bd-8599-8e9dde0f00f0 true - Date and time when the organization was created. + Indicates whether Web-based export of grids to Microsoft Office Excel is allowed. 1033 + + 53267450-d8e9-4217-a57a-442d6fc05407 + + true + Angiver, om det er tilladt at udføre webbaseret eksport af gitre til Microsoft Office Excel. + 1030 + - ac91aa12-2341-db11-898a-0007e9e17ebd + 6a178ca5-2094-43bd-8599-8e9dde0f00f0 true - Date and time when the organization was created. + Indicates whether Web-based export of grids to Microsoft Office Excel is allowed. 1033 - 7404814f-6a72-41b7-a163-8f1f3f2a8c51 + dc81a17c-3fbb-420e-9c95-3ca0cf7a7d56 true - Created On + Allow Export to Excel 1033 + + be40e920-ea39-49c2-aac6-828e6ca5ec36 + + true + Tillad eksport til Excel + 1030 + - 7404814f-6a72-41b7-a163-8f1f3f2a8c51 + dc81a17c-3fbb-420e-9c95-3ca0cf7a7d56 true - Created On + Allow Export to Excel 1033 @@ -117629,15 +125664,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -117668,47 +125703,163 @@ canmodifysearchsettings false - false + true false false true - false + true true - createdon + allowwebexcelexport 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - CreatedOn + AllowWebExcelExport - DateTimeType + BooleanType 5.0.0.0 false 0 - DateAndTime - Inactive + true + + 79c2174d-8c0b-4409-9abb-b621af867611 + + + + + c7481c68-2fbd-4cd8-8970-a5d9fc5bd95d + + true + Indicates whether Web-based export of grids to Microsoft Office Excel is permitted. + 1033 + + + 13cb1611-c98c-4aa5-b25b-7c973607b2de + + true + Angiver, om det er tilladt at udføre webbaseret eksport af gitre til Microsoft Office Excel. + 1030 + + + + c7481c68-2fbd-4cd8-8970-a5d9fc5bd95d + + true + Indicates whether Web-based export of grids to Microsoft Office Excel is permitted. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_allowwebexcelexport + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 45066759-f598-4096-bef8-458f492626c2 + + true + No + 1033 + + + 50d5fb4f-87b4-4ab7-a6f7-241e11eb94ab + + true + Nej + 1030 + + + + 45066759-f598-4096-bef8-458f492626c2 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f3089731-d7f3-4c7f-bd99-eb68a5222e9e + + true + Yes + 1033 + + + 26748e0f-73bc-44f1-b2bf-7b528a784669 + + true + Ja + 1030 + + + + f3089731-d7f3-4c7f-bd99-eb68a5222e9e + + true + Yes + 1033 + + + + 1 + + + 0 - - false - canmodifybehavior - false - - - UserLocal - - - 3f9e11b9-56a7-46e6-82cd-4e476c7422d7 + + 0f6cfa2a-e1bc-4874-89c2-30805272670b - Lookup + String false false false @@ -117717,42 +125868,56 @@ canmodifyadditionalsettings false - 172 + 112 1900-01-01T00:00:00 - aca78121-9ff8-49f6-98d5-c645b16dfe4b + caabb2d4-0d28-4f54-967d-fc78d98ec3e1 true - Unique identifier of the delegate user who created the organization. + AM designator to use throughout Microsoft Dynamics CRM. 1033 + + 23f3fc6b-52e8-44cf-a280-bae7836e4c48 + + true + AM-betegnelse til brug overalt i Microsoft Dynamics CRM. + 1030 + - aca78121-9ff8-49f6-98d5-c645b16dfe4b + caabb2d4-0d28-4f54-967d-fc78d98ec3e1 true - Unique identifier of the delegate user who created the organization. + AM designator to use throughout Microsoft Dynamics CRM. 1033 - f8d85a4a-977a-4387-9445-1ab8c91be926 + 9a8c05f2-7f41-48f0-98b3-b9364b083351 true - Created By (Delegate) + AM Designator 1033 + + 569d6c72-5799-4396-9e25-69b6815b43e5 + + true + AM-betegnelse + 1030 + - f8d85a4a-977a-4387-9445-1ab8c91be926 + 9a8c05f2-7f41-48f0-98b3-b9364b083351 true - Created By (Delegate) + AM Designator 1033 @@ -117760,9 +125925,9 @@ - false + true canmodifyauditsettings - false + true false @@ -117799,127 +125964,32 @@ canmodifysearchsettings false - false + true false false true - false + true true - createdonbehalfby - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - CreatedOnBehalfBy - - - LookupType - - 5.0.0.0 - false - - - None - - systemuser - - - - 60fb4f3b-7369-48c7-9311-d12f45cf3ad8 - - createdonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - false - - 174 - 1900-01-01T00:00:00 - - - - - - - - - - organization - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - createdonbehalfbyname + amdesignator 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - CreatedOnBehalfByName + AMDesignator StringType 5.0.0.0 - true + false 0 Text Auto - 100 + 25 Text @@ -117927,112 +125997,10 @@ false 0 - 320 - - - ccbfd736-4540-44d1-bc57-e315131b6063 - - createdonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - false - - 175 - 1900-01-01T00:00:00 - - - - - - - - - - organization - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - createdonbehalfbyyominame - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - CreatedOnBehalfByYomiName - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 100 - createdonbehalfbyname - - Text - - - false - 0 - 320 + 50 - e843a583-1269-4bb3-a196-e07e82fa9fb8 + 824e4e4e-5255-4f46-b8ab-2e57baee6f4b Boolean @@ -118042,44 +126010,58 @@ false canmodifyadditionalsettings - true + false - 281 + 329 1900-01-01T00:00:00 - 60f1e242-fd74-49a1-8957-7f39dea75ed5 + 32cbabbb-998b-4471-a21d-d41b659ae257 true - Enable Initial state of newly created products to be Active instead of Draft + Indicates whether the appDesignerExperience is enabled for the organization. 1033 + + e95e3340-6f0a-40c0-98a7-1bce09a311ee + + true + Angiver, om appDesignerExperience er aktiveret for organisationen. + 1030 + - 60f1e242-fd74-49a1-8957-7f39dea75ed5 + 32cbabbb-998b-4471-a21d-d41b659ae257 true - Enable Initial state of newly created products to be Active instead of Draft + Indicates whether the appDesignerExperience is enabled for the organization. 1033 - 0e8c1e0f-3c11-473e-bc1f-8578817e5d84 + 725a2184-b054-4223-a22e-b31884278bd7 true - Enable Active Initial Product State + Enable App Designer Experience for this Organization 1033 + + 06a80105-ac9a-4eeb-8a0a-bfd4e0d5b5f2 + + true + Aktivér appdesigneroplevelsen for denne organisation + 1030 + - 0e8c1e0f-3c11-473e-bc1f-8578817e5d84 + 725a2184-b054-4223-a22e-b31884278bd7 true - Enable Active Initial Product State + Enable App Designer Experience for this Organization 1033 @@ -118095,7 +126077,7 @@ false iscustomizable - false + true false false @@ -118133,41 +126115,48 @@ true true - createproductswithoutparentinactivestate + appdesignerexperienceenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - CreateProductsWithoutParentInActiveState + AppDesignerExperienceEnabled BooleanType - 7.0.0.0 + 8.2.0.0 false 0 false - be629637-9c5a-4bf5-b24f-fe13959ff59f + f2e09cc0-5299-4e8f-beb6-690b01441df5 - 3bf9ab45-416c-408b-b0ef-21845aad1e3c + 9ee6e428-688d-4500-bdff-efcbc18ed7e8 true - Information that specifies whether orphan products are initially created in active state. + Information that specifies whether the app designer experience is enabled for the organization. 1033 + + a7a9050b-6694-47a1-95b7-3e66844d46c7 + + true + Oplysninger, der angiver, om appdesigneroplevelsen er aktiveret for organisationen. + 1030 + - 3bf9ab45-416c-408b-b0ef-21845aad1e3c + 9ee6e428-688d-4500-bdff-efcbc18ed7e8 true - Information that specifies whether orphan products are initially created in active state. + Information that specifies whether the app designer experience is enabled for the organization. 1033 @@ -118180,13 +126169,13 @@ false iscustomizable - false + true false true - organization_createproductswithoutparentinactivestate + organization_appdesignerexperienceenabled Boolean - 7.0.0.0 + 8.2.0.0 @@ -118201,15 +126190,22 @@ - b823c8e4-2b8b-47dc-bdf5-f3c54c5fe1da + 3cb59237-98e2-4133-91b8-89f6c16481c4 true No 1033 + + 5a43bd32-d188-45e9-adb2-e9f1664202e5 + + true + Nej + 1030 + - b823c8e4-2b8b-47dc-bdf5-f3c54c5fe1da + 3cb59237-98e2-4133-91b8-89f6c16481c4 true No @@ -118234,15 +126230,22 @@ - bd6589d5-3afb-4228-81d1-ebda122a0feb + 2e321685-df59-4ba6-9cc6-e0c81e9f48e6 true Yes 1033 + + 87d6d303-ea6f-4524-85dc-d8bb9ee98369 + + true + Ja + 1030 + - bd6589d5-3afb-4228-81d1-ebda122a0feb + 2e321685-df59-4ba6-9cc6-e0c81e9f48e6 true Yes @@ -118257,132 +126260,8 @@ 0 - - 3ce9bb52-7c2b-48e8-ba81-67511662f29a - - - Integer - false - false - false - - false - canmodifyadditionalsettings - true - - 10094 - 2025-11-06T02:47:58.1670016 - - - - - 18fa7ecf-5bba-4b32-929e-ab2c166115f9 - - true - Default time to live in minutes for new records in the Flow Logs entity for CUA logs. - 1033 - - - - 18fa7ecf-5bba-4b32-929e-ab2c166115f9 - - true - Default time to live in minutes for new records in the Flow Logs entity for CUA logs. - 1033 - - - - - - e38fb0e8-24cb-4db2-8393-c4bbd383b787 - - true - The TTL for records in the Flow Logs Entity for CUA logs. - 1033 - - - - e38fb0e8-24cb-4db2-8393-c4bbd383b787 - - true - The TTL for records in the Flow Logs Entity for CUA logs. - 1033 - - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - true - false - false - true - true - true - - cuaflowlogsttlinminutes - 2025-11-06T02:47:58.1670016 - - true - canmodifyrequirementlevelsettings - SystemRequired - - CuaFlowLogsTtlInMinutes - - - IntegerType - - 1.9.21.0 - false - 0 - - None - 33554432 - -1 - - 0 - - 48cb30c2-aa01-4ecb-b67e-109199665d52 + f3f09fb3-ceb2-4aad-b01f-68463d4e85b5 Picklist @@ -118394,42 +126273,42 @@ canmodifyadditionalsettings true - 10105 - 2025-11-06T02:47:58.3670016 + 10025 + 2025-11-06T01:17:44.7570048 - c04b0590-0f9d-4b9b-8b8f-c3d9acb50fa9 + 5560bdf8-055b-4cf4-a5e0-b060845c87fb true - Set the level of detail the computer use logs allow. + Application Based Access Control Mode. 0 is Disabled, 1 is audit mode , 2 is enforcement mode 1033 - c04b0590-0f9d-4b9b-8b8f-c3d9acb50fa9 + 5560bdf8-055b-4cf4-a5e0-b060845c87fb true - Set the level of detail the computer use logs allow. + Application Based Access Control Mode. 0 is Disabled, 1 is audit mode , 2 is enforcement mode 1033 - 459b5915-fac4-46ab-af54-c0a9da402cb5 + 578d5d96-f831-41c3-83d1-92f238cf5f9a true - Computer use logs verbosity + Application Based Access Control Mode 1033 - 459b5915-fac4-46ab-af54-c0a9da402cb5 + 578d5d96-f831-41c3-83d1-92f238cf5f9a true - Computer use logs verbosity + Application Based Access Control Mode 1033 @@ -118460,7 +126339,7 @@ false isrenameable - true + false false false @@ -118472,7 +126351,7 @@ false - true + false canmodifysearchsettings false @@ -118483,115 +126362,101 @@ true true - cuaflowlogsverbosity - 2025-11-06T02:47:58.3670016 + applicationbasedaccesscontrolmode + 2025-11-06T01:17:44.7570048 - true + false canmodifyrequirementlevelsettings SystemRequired - CuaFlowLogsVerbosity + ApplicationBasedAccessControlMode PicklistType - 1.9.27.0 + 1.0.0.15 false 0 - + 0 - dda1c0fd-baba-f011-bbd3-7c1e52365f30 + 5774de82-fc43-492e-b058-7259b0445c14 - dfa1c0fd-baba-f011-bbd3-7c1e52365f30 + 7e117460-aeba-f011-bbd3-7c1e52365f30 true - Set the level of detail the computer use logs allow. + Application Based Access Control Mode. 0 is Disabled, 1 is Enabled, 2 is audit mode, 3 is Enabled for roles 1033 - dfa1c0fd-baba-f011-bbd3-7c1e52365f30 + 7e117460-aeba-f011-bbd3-7c1e52365f30 true - Set the level of detail the computer use logs allow. + Application Based Access Control Mode. 0 is Disabled, 1 is Enabled, 2 is audit mode, 3 is Enabled for roles 1033 - dea1c0fd-baba-f011-bbd3-7c1e52365f30 + 7d117460-aeba-f011-bbd3-7c1e52365f30 true - Computer use logs verbosity + Application Based Access Control Mode. 1033 - dea1c0fd-baba-f011-bbd3-7c1e52365f30 + 7d117460-aeba-f011-bbd3-7c1e52365f30 true - Computer use logs verbosity + Application Based Access Control Mode. 1033 - - true + + false false iscustomizable false - false + true true - organization_cuaflowlogsverbosity + organization_applicationbasedaccesscontrolmode Picklist - 1.9.27.0 + 1.0.0.15 - - - ac25f1b0-a63c-4bf6-a347-eb58d5e2d6e7 - - true - Complete Computer use logs for full audit and traceability. Takes more storage space. - 1033 - - - - ac25f1b0-a63c-4bf6-a347-eb58d5e2d6e7 - - true - Complete Computer use logs for full audit and traceability. Takes more storage space. - 1033 - + + - + false true - da416554-2ff6-425f-a683-a61ed5cd1dab + ce084f1f-2eae-468e-a3db-fce5b6a2f081 true - All data + Disabled 1033 - da416554-2ff6-425f-a683-a61ed5cd1dab + ce084f1f-2eae-468e-a3db-fce5b6a2f081 true - All data + Disabled 1033 @@ -118604,41 +126469,27 @@ - - - 6227ae15-796f-42d2-a14c-e20750a2259d - - true - Essential Computer use logs without screenshots, minimizing storage. - 1033 - - - - 6227ae15-796f-42d2-a14c-e20750a2259d - - true - Essential Computer use logs without screenshots, minimizing storage. - 1033 - + + - + false true - b99a127c-114a-4474-8e68-f0df8a5a4239 + 543b1635-357c-4de1-8896-48861f9f1bd0 true - Data without screenshots + Enabled 1033 - b99a127c-114a-4474-8e68-f0df8a5a4239 + 543b1635-357c-4de1-8896-48861f9f1bd0 true - Data without screenshots + Enabled 1033 @@ -118651,46 +126502,65 @@ + + + + + false + true + - 473ad06f-0cc5-4b15-bfea-8b3e93c04a36 + 994f532c-f32d-4e67-b2ed-bf0fc4c5d6d8 true - Captures only basic system status and error data, minimizing collection and storage. + AuditMode 1033 - 473ad06f-0cc5-4b15-bfea-8b3e93c04a36 + 994f532c-f32d-4e67-b2ed-bf0fc4c5d6d8 true - Captures only basic system status and error data, minimizing collection and storage. + AuditMode 1033 + + + 2 + + + + + + + + + - + false true - 24b3d941-398a-4147-83cb-2d62300e64e7 + d97e759d-3462-463c-a2ee-1e045f7edd97 true - Minimal + Enabled for roles 1033 - 24b3d941-398a-4147-83cb-2d62300e64e7 + d97e759d-3462-463c-a2ee-1e045f7edd97 true - Minimal + Enabled for roles 1033 - 2 + 3 @@ -118703,9 +126573,9 @@ - ddf159e8-2e36-45ce-bcd5-f04b5a7d151a + 8b02b9da-e51f-4e85-93f5-1da810ee94d2 - cuaflowlogsverbosity + applicationbasedaccesscontrolmode Virtual false false @@ -118715,8 +126585,8 @@ canmodifyadditionalsettings true - 10106 - 2025-11-06T02:47:58.3670016 + 10026 + 2025-11-06T01:17:44.7730048 @@ -118776,28 +126646,28 @@ false false - cuaflowlogsverbosityname - 2025-11-06T02:47:58.3670016 + applicationbasedaccesscontrolmodename + 2025-11-06T01:17:44.7730048 true canmodifyrequirementlevelsettings None - cuaflowlogsverbosityName + applicationbasedaccesscontrolmodeName VirtualType - 1.9.27.0 + 1.0.0.15 true - - 2ad7ebb5-77c8-46b7-bd6c-0a22fe5be793 + + ea3c8b70-e31f-484a-aae5-235fd49b1f76 - Integer + Boolean false false false @@ -118806,42 +126676,56 @@ canmodifyadditionalsettings false - 138 - 1900-01-01T00:00:00 + 10144 + 2025-11-06T04:23:13.8099968 - 15224289-c149-47c2-b79c-acbe7ba359da + b39cac69-4b4d-4851-82b0-c4caf4f300a4 true - Number of decimal places that can be used for currency. + Information on whether rich editing experience for Appointment is enabled. 1033 + + 4a9a9149-788a-40a5-bf09-51caf99484e3 + + true + Information on whether rich editing experience for Appointment is enabled. + 1030 + - 15224289-c149-47c2-b79c-acbe7ba359da + b39cac69-4b4d-4851-82b0-c4caf4f300a4 true - Number of decimal places that can be used for currency. + Information on whether rich editing experience for Appointment is enabled. 1033 - c0a1423c-bc1a-44dd-b7a7-a9dec73c8d83 + 0da67591-3ae8-40dd-adb3-d5da58697c2b true - Currency Decimal Precision + Enable Rich Editing Experience for Appointment 1033 + + 784b6e45-1454-4830-8791-57e1e6787e6c + + true + Enable Rich Editing Experience for Appointment + 1030 + - c0a1423c-bc1a-44dd-b7a7-a9dec73c8d83 + 0da67591-3ae8-40dd-adb3-d5da58697c2b true - Currency Decimal Precision + Enable Rich Editing Experience for Appointment 1033 @@ -118857,7 +126741,7 @@ false iscustomizable - true + false false false @@ -118895,33 +126779,268 @@ true true - currencydecimalprecision - 1900-01-01T00:00:00 + appointmentricheditorexperience + 2025-11-06T04:23:13.8099968 false canmodifyrequirementlevelsettings SystemRequired - CurrencyDecimalPrecision + AppointmentRichEditorExperience - IntegerType + BooleanType - 5.0.0.0 + 9.0.0.0 false 0 - - None - 10 - 0 - + + false + + 0620544c-c8ba-f011-bbd3-7c1e52365f30 + + + + + 0820544c-c8ba-f011-bbd3-7c1e52365f30 + + true + Enable or disable Rich Editing for Appointment + 1033 + + + 06549085-d865-4344-a360-bc6f22699275 + + true + Enable or disable Rich Editing for Appointment + 1030 + + + + 0820544c-c8ba-f011-bbd3-7c1e52365f30 + + true + Enable or disable Rich Editing for Appointment + 1033 + + + + + + 0720544c-c8ba-f011-bbd3-7c1e52365f30 + + true + Is Rich Editing for Appointment Enabled + 1033 + + + 05fa3047-d322-4b4f-b471-b6a2186daa7c + + true + Is Rich Editing for Appointment Enabled + 1030 + + + + 0720544c-c8ba-f011-bbd3-7c1e52365f30 + + true + Is Rich Editing for Appointment Enabled + 1033 + + + + true + + false + iscustomizable + false + + false + true + organization_appointmentricheditorexperience + Boolean + 9.0.0.0 + + + + + + + + + + false + true + + + + 9635f5df-102a-4888-b88c-fc0d81cc98f7 + + true + No + 1033 + + + bcb5b71c-db6c-41df-8c49-737debfd4b3b + + true + No + 1030 + + + + 9635f5df-102a-4888-b88c-fc0d81cc98f7 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 3a89e0fb-84ec-4bdd-bdf7-79e75caf48bd + + true + Yes + 1033 + + + 620bc371-26bf-4d8e-94fa-5cd8e370a386 + + true + Yes + 1030 + + + + 3a89e0fb-84ec-4bdd-bdf7-79e75caf48bd + + true + Yes + 1033 + + + + 1 + + + + 0 - - f4449d9a-fb34-42d7-bffc-e8a7fcc5a1d3 + + 314df449-d1b6-4b8f-a57f-94aeb165d7d2 + + appointmentricheditorexperience + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 10145 + 2025-11-06T04:23:13.8269952 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + appointmentricheditorexperiencename + 2025-11-06T04:23:13.8269952 + + true + canmodifyrequirementlevelsettings + None + + appointmentricheditorexperienceName + + + VirtualType + + 9.0.0.0 + true + + + + + f79a0fa9-e567-45d1-8c56-f22cd0549fbb - Picklist + Boolean false false false @@ -118930,42 +127049,56 @@ canmodifyadditionalsettings false - 113 - 1900-01-01T00:00:00 + 10146 + 2025-11-06T04:24:47.8599936 - 1b144a86-2f80-49c8-9aa0-71c3faceae43 + 69102aa6-da62-4a18-9e1b-504cb36d0f67 true - Indicates whether to display money fields with currency code or currency symbol. + Information on whether Teams meeting experience for Appointment is enabled. 1033 + + 1872cae3-9cdf-46da-b26f-1833e4ce5123 + + true + Oplysninger, der angiver, om Teams-mødeoplevelsen for aftale er aktiveret. + 1030 + - 1b144a86-2f80-49c8-9aa0-71c3faceae43 + 69102aa6-da62-4a18-9e1b-504cb36d0f67 true - Indicates whether to display money fields with currency code or currency symbol. + Information on whether Teams meeting experience for Appointment is enabled. 1033 - 5f1267a6-d0c1-4c2c-b4bd-6b5338fad1df + 6c328562-4262-4103-a34e-e1ff1a337d4f true - Display Currencies Using + Enable teams Meeting experience for appointment 1033 + + c058dd36-2ec5-43c1-b269-d2c8ce0794c7 + + true + Aktivér Teams-mødeoplevelse til aftale + 1030 + - 5f1267a6-d0c1-4c2c-b4bd-6b5338fad1df + 6c328562-4262-4103-a34e-e1ff1a337d4f true - Display Currencies Using + Enable teams Meeting experience for appointment 1033 @@ -118981,7 +127114,7 @@ false iscustomizable - true + false false false @@ -119019,155 +127152,268 @@ true true - currencydisplayoption - 1900-01-01T00:00:00 + appointmentwithteamsmeeting + 2026-04-04T09:58:57.9330048 false canmodifyrequirementlevelsettings SystemRequired - CurrencyDisplayOption + AppointmentWithTeamsMeeting - PicklistType + BooleanType - 5.0.0.0 + 9.0.0.0 false 0 - - 0 + + false - 86c75443-7526-4eec-aa01-d7bdc6574831 + 4c0a3e85-c8ba-f011-bbd3-7c1e52365f30 - e4758518-f217-4f3a-bfcd-1fca4a4d14ec + 4e0a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Indication of whether to display money fields with currency code or currency symbol. + Enable or disable Teams meeting for Appointment 1033 + + ffcba0cb-79d6-404f-82ca-45b66e60c701 + + true + Aktivér eller deaktiver Teams-møde til aftale + 1030 + - e4758518-f217-4f3a-bfcd-1fca4a4d14ec + 4e0a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Indication of whether to display money fields with currency code or currency symbol. + Enable or disable Teams meeting for Appointment 1033 - 613b52d1-57a8-4eb1-a6d3-e72cf386cb66 + 4d0a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Display currencies using + if appointment with Teams meeting is enabled 1033 + + 0095bcd3-3e9f-4bda-a750-c1e4822aed0a + + true + hvis aftale med Teams-møde er aktiveret + 1030 + - 613b52d1-57a8-4eb1-a6d3-e72cf386cb66 + 4d0a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Display currencies using + if appointment with Teams meeting is enabled 1033 - false + true false iscustomizable - true + false false true - organization_currencydisplayoption - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - d13627e8-115e-4b54-b596-197488b00853 - - true - Currency symbol - 1033 - - - - d13627e8-115e-4b54-b596-197488b00853 + organization_appointmentwithteamsmeeting + Boolean + 9.0.0.0 + + + + + + + + + + false + true + + + + 497ccbf6-4bf2-44be-8d40-73fb03befdbb - true - Currency symbol - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - bb37c1fa-d32b-479c-bc36-36ac0241fae7 - - true - Currency code - 1033 - - - - bb37c1fa-d32b-479c-bc36-36ac0241fae7 + true + No + 1033 + + + 07bb1fda-c684-4c48-b92a-f698398055cd - true - Currency code - 1033 - - - - 1 - - - - + true + Ingen + 1030 + + + + 497ccbf6-4bf2-44be-8d40-73fb03befdbb + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 4771a3c6-65e2-40b5-9b60-8a753ac208cc + + true + Yes + 1033 + + + e5b98cac-3b97-4304-909a-c93735c104dc + + true + Ja + 1030 + + + + 4771a3c6-65e2-40b5-9b60-8a753ac208cc + + true + Yes + 1033 + + + + 1 + + - - + 0 - - - - f3818063-d92b-45e0-8c7a-278390de9b9b + + 5b7af424-226f-434d-a799-c1c7591b7ead + + appointmentwithteamsmeeting + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 10147 + 2025-11-06T04:24:47.8729984 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + appointmentwithteamsmeetingname + 2025-11-06T04:24:47.8729984 + + true + canmodifyrequirementlevelsettings + None + + appointmentwithteamsmeetingName + + + VirtualType + + 9.0.0.0 + true + + + + + 979311d3-fcdb-4c71-8bba-56e48ebd9f9e - Picklist + Boolean false false false @@ -119176,42 +127422,56 @@ canmodifyadditionalsettings false - 60 - 1900-01-01T00:00:00 + 10150 + 2025-11-06T04:24:47.92 - 349aba00-2341-db11-898a-0007e9e17ebd + ddea8d4c-86ab-425d-8271-351c8b1a3791 true - Information about how currency symbols are placed throughout Microsoft Dynamics CRM. + Whether Teams meetings experience for appointments is enabled. 1033 + + 5ee94a1b-49a6-44da-a872-061490dcbfe4 + + true + Angiver, om Teams-mødeoplevelsen for aftaler er aktiveret. + 1030 + - 349aba00-2341-db11-898a-0007e9e17ebd + ddea8d4c-86ab-425d-8271-351c8b1a3791 true - Information about how currency symbols are placed throughout Microsoft Dynamics CRM. + Whether Teams meetings experience for appointments is enabled. 1033 - 6f959722-c895-4edc-b8ff-268491b04433 + bf02caba-7340-4599-8359-8198fdde5e19 true - Currency Format Code + Enable Teams meetings for appointments 1033 + + 40753a30-02b1-4291-b9fd-46d46d84aa60 + + true + Aktivér Teams-møder til aftaler + 1030 + - 6f959722-c895-4edc-b8ff-268491b04433 + bf02caba-7340-4599-8359-8198fdde5e19 true - Currency Format Code + Enable Teams meetings for appointments 1033 @@ -119227,7 +127487,7 @@ false iscustomizable - true + false false false @@ -119265,206 +127525,176 @@ true true - currencyformatcode - 1900-01-01T00:00:00 + appointmentwithteamsmeetingv2 + 2026-04-04T09:58:59.2600064 false canmodifyrequirementlevelsettings SystemRequired - CurrencyFormatCode + AppointmentWithTeamsMeetingV2 - PicklistType + BooleanType - 5.0.0.0 + 9.2.0.0 false 0 - - 0 + + true - 51f8df74-d016-46c9-952d-0954770a0f69 + 540a3e85-c8ba-f011-bbd3-7c1e52365f30 - 62add094-cf16-43f2-b7cf-8b6a10db7d37 + 560a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Information about how currency symbols are placed throughout Microsoft CRM. + Enable or disable Teams meetings for appointments 1033 + + 85190cf7-017d-4f82-9a6f-8ccca8a651b5 + + true + Aktivér eller deaktiver Teams-møder til aftaler + 1030 + - 62add094-cf16-43f2-b7cf-8b6a10db7d37 + 560a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Information about how currency symbols are placed throughout Microsoft CRM. + Enable or disable Teams meetings for appointments 1033 - - + + + 550a3e85-c8ba-f011-bbd3-7c1e52365f30 + + true + If Teams meetings are enabled on appointments + 1033 + + + aa691ed7-3efa-456b-864c-ede2ce568476 + + true + Hvis Teams-møder er aktiveret til aftaler + 1030 + + + + 550a3e85-c8ba-f011-bbd3-7c1e52365f30 + + true + If Teams meetings are enabled on appointments + 1033 + - false + true false iscustomizable - true + false false true - organization_currencyformatcode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 59b6cfa4-c852-417c-a902-5eff309a90ea - - true - $123 - 1033 - - - - 59b6cfa4-c852-417c-a902-5eff309a90ea + organization_appointmentwithteamsmeetingV2 + Boolean + 9.2.0.0 + + + + + + + + + + false + true + + + + 6c124e5b-a90a-41c6-b299-27cc3f79418f - true - $123 - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 6b2f2383-961e-4ec3-8375-2576f8777922 - - true - 123$ - 1033 - - - - 6b2f2383-961e-4ec3-8375-2576f8777922 + true + No + 1033 + + + 66a0a56a-2f89-4772-bcda-b03aca27a1f1 - true - 123$ - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - 995f1e29-340a-41f3-8fc1-ddd51469d505 - - true - $ 123 - 1033 - - - - 995f1e29-340a-41f3-8fc1-ddd51469d505 + true + Ingen + 1030 + + + + 6c124e5b-a90a-41c6-b299-27cc3f79418f + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + fdd5d310-caae-4bb9-b54d-a2961fc7a130 - true - $ 123 - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - f361a0fb-f9c5-4fbd-89d3-4857c2dd0672 - - true - 123 $ - 1033 - - - - f361a0fb-f9c5-4fbd-89d3-4857c2dd0672 + true + Yes + 1033 + + + c0bfa4a5-fb74-48e7-a4ad-d289bf5a935c - true - 123 $ - 1033 - - - - 3 - - - - + true + Ja + 1030 + + + + fdd5d310-caae-4bb9-b54d-a2961fc7a130 + + true + Yes + 1033 + + + + 1 + + - - + 0 - - - aa310a98-4bbc-4619-b5f7-61920fbe4958 + 094073ce-7b82-4af1-8733-9b9e07d5494f - currencyformatcode + appointmentwithteamsmeetingv2 Virtual false false @@ -119472,10 +127702,10 @@ false canmodifyadditionalsettings - false + true - 96 - 1900-01-01T00:00:00 + 10151 + 2025-11-06T04:24:47.9369984 @@ -119489,7 +127719,7 @@ - false + true canmodifyauditsettings false @@ -119497,7 +127727,7 @@ false iscustomizable - false + true false false @@ -119512,7 +127742,7 @@ false isrenameable - false + true false false @@ -119524,7 +127754,7 @@ false - false + true canmodifysearchsettings false @@ -119535,72 +127765,86 @@ false false - currencyformatcodename - 1900-01-01T00:00:00 + appointmentwithteamsmeetingv2name + 2025-11-06T04:24:47.9369984 - false + true canmodifyrequirementlevelsettings None - CurrencyFormatCodeName + appointmentwithteamsmeetingv2Name VirtualType - 5.0.0.0 + 9.2.0.0 true - + - - f089ad38-18e9-48e5-9eb6-1e17a65f136c + + 524e86e4-8b78-4c88-8554-2fb878fbc408 - String + Boolean false false false false canmodifyadditionalsettings - false + true - 11 - 1900-01-01T00:00:00 + 10062 + 2025-11-06T02:47:57.6499968 - 8fe9af0c-2341-db11-898a-0007e9e17ebd + b9f68252-9873-492a-b0a9-76cdca67b480 true - Symbol used for currency throughout Microsoft Dynamics 365. + Indicates whether Power Automate Automation Center preview features will be available for all users in this organization. 1033 + + 34203c95-05e6-45d6-8205-dbbb990a2c30 + + true + Angiver, om forhåndsversionsfunktioner i Power Automate Automatiseringscenter er tilgængelige for alle brugere i denne organisation. + 1030 + - 8fe9af0c-2341-db11-898a-0007e9e17ebd + b9f68252-9873-492a-b0a9-76cdca67b480 true - Symbol used for currency throughout Microsoft Dynamics 365. + Indicates whether Power Automate Automation Center preview features will be available for all users in this organization. 1033 - 675e271b-f72d-4f99-857b-d3a37042bcb4 + fbb2a60b-10af-4dde-8ca8-35655041fc66 true - Currency Symbol + Enable Power Automate Automation Center preview features for all users in this organization. 1033 + + a0a69440-3259-488d-8936-2137de3fdad5 + + true + Aktivér forhåndsversionsfunktioner i Power Automate Automatiseringscenter for alle brugere i denne organisation. + 1030 + - 675e271b-f72d-4f99-857b-d3a37042bcb4 + fbb2a60b-10af-4dde-8ca8-35655041fc66 true - Currency Symbol + Enable Power Automate Automation Center preview features for all users in this organization. 1033 @@ -119631,7 +127875,7 @@ false isrenameable - false + true false false @@ -119643,7 +127887,7 @@ false - false + true canmodifysearchsettings false @@ -119654,85 +127898,174 @@ true true - currencysymbol - 1900-01-01T00:00:00 + areautomationcenterpreviewfeaturesenabled + 2026-05-11T16:05:38.9330048 - false + true canmodifyrequirementlevelsettings None - CurrencySymbol + AreAutomationCenterPreviewFeaturesEnabled - StringType + BooleanType - 5.0.0.0 + 1.9.2.0 false 0 - Text - Auto - 13 - - - Text - - - false + true + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - 26 - - 6947cec8-137a-4cb7-acb0-ffabcdf40539 + + fec14d33-af39-492b-b207-2c9f191f7ffa - - Integer + areautomationcenterpreviewfeaturesenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 87 - 1900-01-01T00:00:00 - 9.0.0.0 + 10063 + 2025-11-06T02:47:57.6669952 + - - - e2d8dee2-2241-db11-898a-0007e9e17ebd - - true - Current bulk operation number. Deprecated. Use SetAutoNumberSeed message. - 1033 - - - - e2d8dee2-2241-db11-898a-0007e9e17ebd - - true - Current bulk operation number. Deprecated. Use SetAutoNumberSeed message. - 1033 - + + - - - ca980f6d-6ea1-4a2e-b619-46f01196a4c2 - - true - Current Bulk Operation Number - 1033 - - - - ca980f6d-6ea1-4a2e-b619-46f01196a4c2 - - true - Current Bulk Operation Number - 1033 - + + organization @@ -119740,11 +128073,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -119755,13 +128088,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -119773,88 +128106,97 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - currentbulkoperationnumber - 1900-01-01T00:00:00 + areautomationcenterpreviewfeaturesenabledname + 2025-11-06T02:47:57.6669952 - false + true canmodifyrequirementlevelsettings None - CurrentBulkOperationNumber + areautomationcenterpreviewfeaturesenabledName - IntegerType + VirtualType - 5.0.0.0 - false - 0 - - None - 2147483647 - 0 - - 0 + 1.9.2.0 + true + + - - 917d262e-8680-4b47-807a-be9862b7ffe6 + + 30a29a6f-542b-429f-a751-332fe0bb4ed5 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 82 - 1900-01-01T00:00:00 - 9.0.0.0 + 10081 + 2025-11-06T02:47:57.9769984 + - 5e41b506-2341-db11-898a-0007e9e17ebd + 7d68eb3b-3b6f-4e98-9d1f-dc3e9bed4cc9 true - Current campaign number. Deprecated. Use SetAutoNumberSeed message. + Indicates whether Process Insights Preview features are enabled in this organization. 1033 + + 8066b60b-2e61-4cae-a62c-730743777492 + + true + Angiver, om forhåndsversionsfunktioner i procesindsigt er aktiveret i denne organisation. + 1030 + - 5e41b506-2341-db11-898a-0007e9e17ebd + 7d68eb3b-3b6f-4e98-9d1f-dc3e9bed4cc9 true - Current campaign number. Deprecated. Use SetAutoNumberSeed message. + Indicates whether Process Insights Preview features are enabled in this organization. 1033 - 25de19dd-0223-46a8-a1ad-2fca1ac5f720 + 74c2e4be-ae67-4b11-afaa-988d5ad7381f true - Current Campaign Number + Enable Process Insights Preview features for this organization 1033 + + 146526c2-efb3-4fe2-aa1f-36e363ec0b50 + + true + Aktivér forhåndsversionsfunktioner i procesindsigt for denne organisation + 1030 + - 25de19dd-0223-46a8-a1ad-2fca1ac5f720 + 74c2e4be-ae67-4b11-afaa-988d5ad7381f true - Current Campaign Number + Enable Process Insights Preview features for this organization 1033 @@ -119885,7 +128227,7 @@ false isrenameable - false + true false false @@ -119897,7 +128239,7 @@ false - false + true canmodifysearchsettings false @@ -119908,79 +128250,174 @@ true true - currentcampaignnumber - 1900-01-01T00:00:00 + areprocessinsightspreviewfeaturesenabled + 2026-05-11T16:05:41.3229952 - false + true canmodifyrequirementlevelsettings None - CurrentCampaignNumber + AreProcessInsightsPreviewFeaturesEnabled - IntegerType + BooleanType - 5.0.0.0 + 1.9.2.0 false 0 - None - 2147483647 - -2147483648 - + true + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - - 27ee4363-4f5a-4590-8c30-b7f292fec082 + + 3a3be13d-8b12-4904-a46b-9ffb4878c7e3 - - Integer + areprocessinsightspreviewfeaturesenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 22 - 1900-01-01T00:00:00 - 9.0.0.0 + 10082 + 2025-11-06T02:47:57.9929984 + - - - c1abc7f4-2241-db11-898a-0007e9e17ebd - - true - First case number to use. Deprecated. Use SetAutoNumberSeed message. - 1033 - - - - c1abc7f4-2241-db11-898a-0007e9e17ebd - - true - First case number to use. Deprecated. Use SetAutoNumberSeed message. - 1033 - + + - - - 87155f41-6450-4a62-bccd-b1cb918055bd - - true - Current Case Number - 1033 - - - - 87155f41-6450-4a62-bccd-b1cb918055bd - - true - Current Case Number - 1033 - + + organization @@ -119988,11 +128425,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -120003,13 +128440,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -120021,41 +128458,36 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - currentcasenumber - 1900-01-01T00:00:00 + areprocessinsightspreviewfeaturesenabledname + 2025-11-06T02:47:57.9929984 - false + true canmodifyrequirementlevelsettings None - CurrentCaseNumber + areprocessinsightspreviewfeaturesenabledName - IntegerType + VirtualType - 5.0.0.0 - false - 0 - - None - 2147483647 - -2147483648 - - 0 + 1.9.2.0 + true + + - 6258d65e-e1fa-483e-b145-028805668eee + 2fc49eba-d021-4a33-8494-7acb4d808a0b Integer @@ -120067,42 +128499,56 @@ canmodifyadditionalsettings false - 373 - 1900-01-01T00:00:00 - 9.0.0.0 + 456 + 2025-11-06T00:19:22.8530048 + - 9c425b03-a68b-4854-afa2-20f99ed3e716 + 157a174c-fd03-4961-90d9-db1de99b59f7 true - Enter the first number to use for Categories. Deprecated. Use SetAutoNumberSeed message. + Audit Retention Period settings stored in Organization Database. 1033 + + 5e47670f-3645-4265-bf31-067653426a04 + + true + Indstillinger for opbevaringsperiode for overvågning i organisationsdatabasen. + 1030 + - 9c425b03-a68b-4854-afa2-20f99ed3e716 + 157a174c-fd03-4961-90d9-db1de99b59f7 true - Enter the first number to use for Categories. Deprecated. Use SetAutoNumberSeed message. + Audit Retention Period settings stored in Organization Database. 1033 - fab136c1-8a22-4b86-995f-4435c742f49e + 446a90b2-25b5-4c5f-8bd9-965c2a80b95c true - Current Category Number + Audit Retention Period Settings 1033 + + 68c3a4a9-ef20-4873-b693-88a07beac19d + + true + Indstillinger for opbevaringsperiode for overvågning + 1030 + - fab136c1-8a22-4b86-995f-4435c742f49e + 446a90b2-25b5-4c5f-8bd9-965c2a80b95c true - Current Category Number + Audit Retention Period Settings 1033 @@ -120112,13 +128558,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -120149,37 +128595,37 @@ canmodifysearchsettings false - true + false false false true true true - currentcategorynumber - 1900-01-01T00:00:00 + auditretentionperiod + 2025-11-06T00:19:22.8530048 false canmodifyrequirementlevelsettings SystemRequired - CurrentCategoryNumber + AuditRetentionPeriod IntegerType - 8.1.0.0 + 9.1.0.0 false 0 None 2147483647 - -1 + 30 0 - c2fd0173-42ec-474c-91e8-c91bb64bbae8 + 417ddef6-6372-465e-90f4-539f2a58a73e Integer @@ -120191,42 +128637,56 @@ canmodifyadditionalsettings false - 24 - 1900-01-01T00:00:00 - 9.0.0.0 + 463 + 2025-11-06T00:19:20.8370048 + - 0e91aa12-2341-db11-898a-0007e9e17ebd + 6bf61fbb-c4a1-4252-9ee1-c013d7b5fe51 true - First contract number to use. Deprecated. Use SetAutoNumberSeed message. + Audit Retention Period settings stored in Organization Database. 1033 + + e7167a1d-b3e1-41c9-bee5-b31966d5939a + + true + Indstillinger for opbevaringsperiode for overvågning i organisationsdatabasen. + 1030 + - 0e91aa12-2341-db11-898a-0007e9e17ebd + 6bf61fbb-c4a1-4252-9ee1-c013d7b5fe51 true - First contract number to use. Deprecated. Use SetAutoNumberSeed message. + Audit Retention Period settings stored in Organization Database. 1033 - fa4b381d-de35-41f2-b448-5e2e153a0c20 + c23bd786-17f1-4375-a520-1133e3169257 true - Current Contract Number + Audit Retention Period Settings 1033 + + a2a211eb-246c-4152-9024-52cf080cc415 + + true + Indstillinger for opbevaringsperiode for overvågning + 1030 + - fa4b381d-de35-41f2-b448-5e2e153a0c20 + c23bd786-17f1-4375-a520-1133e3169257 true - Current Contract Number + Audit Retention Period Settings 1033 @@ -120236,13 +128696,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -120273,26 +128733,26 @@ canmodifysearchsettings false - true + false false false true true true - currentcontractnumber - 1900-01-01T00:00:00 + auditretentionperiodv2 + 2025-11-06T00:19:20.8370048 false canmodifyrequirementlevelsettings - None + SystemRequired - CurrentContractNumber + AuditRetentionPeriodV2 IntegerType - 5.0.0.0 + 9.1.0.0 false 0 @@ -120302,11 +128762,11 @@ 0 - - 03822bf7-7820-48b5-a111-a1954fabd631 + + 94a950d6-212a-4c87-8670-5124bfc2b72f - Integer + String false false false @@ -120315,42 +128775,42 @@ canmodifyadditionalsettings false - 105 - 1900-01-01T00:00:00 + 10031 + 2025-11-06T01:28:59.7830016 - 693d5ca6-efe3-4139-8583-d82695632c35 + 692b9efa-3f5f-41b2-b155-aad593ee863e true - Import sequence to use. + Audit Settings of the organization 1033 - 693d5ca6-efe3-4139-8583-d82695632c35 + 692b9efa-3f5f-41b2-b155-aad593ee863e true - Import sequence to use. + Audit Settings of the organization 1033 - 99bd7e59-ac6d-416c-b16d-ae4985660112 + 5351c8bd-074c-478f-aa75-05484d91fff4 true - Current Import Sequence Number + Audit Settings of the organization 1033 - 99bd7e59-ac6d-416c-b16d-ae4985660112 + 5351c8bd-074c-478f-aa75-05484d91fff4 true - Current Import Sequence Number + Audit Settings of the organization 1033 @@ -120366,7 +128826,7 @@ false iscustomizable - true + false false false @@ -120397,40 +128857,46 @@ canmodifysearchsettings false - false + true false false true - false + true true - currentimportsequencenumber - 1900-01-01T00:00:00 + auditsettings + 2025-11-06T01:28:59.7830016 false canmodifyrequirementlevelsettings - SystemRequired + None - CurrentImportSequenceNumber + AuditSettings - IntegerType + StringType - 5.0.0.0 + 9.2.0.0 false 0 - - None - 2147483647 - -2147483648 - + + Text + Auto + 1073741823 + + + Text + + + false 0 + -1 - - c8ab1d99-3d83-4f55-a913-1c39ae02a795 + + 3ec6fecb-2992-4c19-bb63-bcc6cede6a2a - Integer + Boolean false false false @@ -120439,42 +128905,56 @@ canmodifyadditionalsettings false - 30 + 190 1900-01-01T00:00:00 - 9.0.0.0 + - 1be9af0c-2341-db11-898a-0007e9e17ebd + f2dbf466-f524-4ef9-abc4-7a88a9963d47 true - First invoice number to use. Deprecated. Use SetAutoNumberSeed message. + Select whether to auto apply the default customer entitlement on case creation. 1033 + + eb6600fe-0a5a-4b50-af99-dc5ca45c9cc8 + + true + Vælg, om standardkundeberettigelsen skal anvendes automatisk ved oprettelse af sag. + 1030 + - 1be9af0c-2341-db11-898a-0007e9e17ebd + f2dbf466-f524-4ef9-abc4-7a88a9963d47 true - First invoice number to use. Deprecated. Use SetAutoNumberSeed message. + Select whether to auto apply the default customer entitlement on case creation. 1033 - f2b90b97-7a0d-44ff-b6bb-904b326e977a + 1ed60cba-c653-4840-b5db-248a3e824b60 true - Current Invoice Number + Auto Apply Default Entitlement on Case Create 1033 + + bc138b65-c841-4a1b-bb65-a2197c0d0d1b + + true + Anvend automatisk standardberettigelse ved oprettelse af sag + 1030 + - f2b90b97-7a0d-44ff-b6bb-904b326e977a + 1ed60cba-c653-4840-b5db-248a3e824b60 true - Current Invoice Number + Auto Apply Default Entitlement on Case Create 1033 @@ -120528,33 +129008,156 @@ true true - currentinvoicenumber + autoapplydefaultoncasecreate 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - CurrentInvoiceNumber + AutoApplyDefaultonCaseCreate - IntegerType + BooleanType - 5.0.0.0 + 7.1.0.0 false 0 - None - 2147483647 - -2147483648 + false + + 3ad2c4bb-3171-4bd4-91b0-0b9503bf6695 + + + + + 5cda4db0-18cf-4e02-ad9d-96305d2e07b6 + + true + Information that specifies whether to auto apply the default customer entitlement on case creation. + 1033 + + + ad946806-ac8d-42ce-88d8-22fa7d21a239 + + true + Angiver, om standardkundeberettigelsen skal anvendes automatisk ved oprettelse af sag. + 1030 + + + + 5cda4db0-18cf-4e02-ad9d-96305d2e07b6 + + true + Information that specifies whether to auto apply the default customer entitlement on case creation. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_autoapplydefaultoncasecreate + Boolean + 7.1.0.0 + + + + + + + + + + false + true + + + + 6150e85c-7740-4711-ba5c-d02cb1c83083 + + true + No + 1033 + + + 4ab623be-4892-4580-88c3-0cfc8b1fa33b + + true + Nej + 1030 + + + + 6150e85c-7740-4711-ba5c-d02cb1c83083 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 2ed5834c-9766-4019-acc9-ff3d8be9a1f1 + + true + Yes + 1033 + + + a3384d6d-fa49-4fef-a848-da9768a3cceb + + true + Ja + 1030 + + + + 2ed5834c-9766-4019-acc9-ff3d8be9a1f1 + + true + Yes + 1033 + + + + 1 + + + 0 - - da6fb1aa-a77f-4438-8706-3b45ee0adadf + + f1b2cc13-b1aa-4676-ab43-563d122788fc - - Integer + autoapplydefaultoncasecreate + Virtual false false false @@ -120563,58 +129166,30 @@ canmodifyadditionalsettings false - 372 + 191 1900-01-01T00:00:00 - 9.0.0.0 + - - - f95aa150-2f0d-41b0-8363-951d8f7a930d - - true - Enter the first number to use for knowledge articles. Deprecated. Use SetAutoNumberSeed message. - 1033 - - - - f95aa150-2f0d-41b0-8363-951d8f7a930d - - true - Enter the first number to use for knowledge articles. Deprecated. Use SetAutoNumberSeed message. - 1033 - + + - - - 5e01ea1d-3298-421b-9f90-a015a8e2c85f - - true - Current Knowledge Article Number - 1033 - - - - 5e01ea1d-3298-421b-9f90-a015a8e2c85f - - true - Current Knowledge Article Number - 1033 - + + organization - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -120645,40 +129220,35 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - currentkanumber + autoapplydefaultoncasecreatename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - CurrentKaNumber + AutoApplyDefaultonCaseCreateName - IntegerType + VirtualType - 8.0.0.0 - false - 0 + 7.1.0.0 + true + - None - 2147483647 - -1 - - 0 - - f6953285-291f-48da-a254-624c00ff904b + + dc541dad-5fd9-4751-9f21-967f588b7224 - Integer + Boolean false false false @@ -120687,42 +129257,56 @@ canmodifyadditionalsettings false - 20 + 192 1900-01-01T00:00:00 - 9.0.0.0 + - cc64cfee-2241-db11-898a-0007e9e17ebd + 7f03727d-d9a8-4db7-9620-c62722e5aaac true - First article number to use. Deprecated. Use SetAutoNumberSeed message. + Select whether to auto apply the default customer entitlement on case update. 1033 + + 9e5fb481-9d12-42c9-8fb0-7a5c4e877e17 + + true + Vælg, om standardkundeberettigelsen skal anvendes automatisk ved opdatering af sag. + 1030 + - cc64cfee-2241-db11-898a-0007e9e17ebd + 7f03727d-d9a8-4db7-9620-c62722e5aaac true - First article number to use. Deprecated. Use SetAutoNumberSeed message. + Select whether to auto apply the default customer entitlement on case update. 1033 - c1541cc1-6882-441e-ba50-ee96f7c3cc25 + 23eea2a6-e3e8-4e49-b08a-fa1686afa81f true - Current Article Number + Auto Apply Default Entitlement on Case Update 1033 + + ab11ec42-b41c-4a90-b4d0-4519db7ddad3 + + true + Anvend automatisk standardberettigelse ved opdatering af sag + 1030 + - c1541cc1-6882-441e-ba50-ee96f7c3cc25 + 23eea2a6-e3e8-4e49-b08a-fa1686afa81f true - Current Article Number + Auto Apply Default Entitlement on Case Update 1033 @@ -120776,33 +129360,156 @@ true true - currentkbnumber + autoapplydefaultoncaseupdate 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - CurrentKbNumber + AutoApplyDefaultonCaseUpdate - IntegerType + BooleanType - 5.0.0.0 + 7.1.0.0 false 0 - None - 2147483647 - -2147483648 + false + + a52c0ca3-099f-4fc3-b69b-881cae95d014 + + + + + 5373d39b-51af-4ee8-b9fe-021c5f9a314e + + true + Information that specifies whether to auto apply the default customer entitlement on case Update. + 1033 + + + d51f2d13-a82e-47df-a178-13543405ba2e + + true + Angiver, om standardkundeberettigelsen skal anvendes automatisk ved opdatering af sager. + 1030 + + + + 5373d39b-51af-4ee8-b9fe-021c5f9a314e + + true + Information that specifies whether to auto apply the default customer entitlement on case Update. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_autoapplydefaultoncaseupdate + Boolean + 7.1.0.0 + + + + + + + + + + false + true + + + + f10aeed3-a5f1-4c93-96eb-88de66cd1575 + + true + No + 1033 + + + 96593f59-6652-4585-a599-fbd9121387ee + + true + Nej + 1030 + + + + f10aeed3-a5f1-4c93-96eb-88de66cd1575 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 1e94edcf-8e60-4a92-a9d0-332ad31e6019 + + true + Yes + 1033 + + + 17343471-e085-4ae0-b319-83b606ba9764 + + true + Ja + 1030 + + + + 1e94edcf-8e60-4a92-a9d0-332ad31e6019 + + true + Yes + 1033 + + + + 1 + + + 0 - - b561e7c9-8f28-4b2b-880d-c6ae80ecf6e5 + + 7600e1f7-b891-43d8-a626-40c20dd022bd - - Integer + autoapplydefaultoncaseupdate + Virtual false false false @@ -120811,58 +129518,30 @@ canmodifyadditionalsettings false - 28 + 193 1900-01-01T00:00:00 - 9.0.0.0 + - - - e725e7d6-2241-db11-898a-0007e9e17ebd - - true - First order number to use. Deprecated. Use SetAutoNumberSeed message. - 1033 - - - - e725e7d6-2241-db11-898a-0007e9e17ebd - - true - First order number to use. Deprecated. Use SetAutoNumberSeed message. - 1033 - + + - - - 933d5de6-24a9-48e3-9cbd-598cde931463 - - true - Current Order Number - 1033 - - - - 933d5de6-24a9-48e3-9cbd-598cde931463 - - true - Current Order Number - 1033 - + + organization - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -120893,40 +129572,35 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - currentordernumber + autoapplydefaultoncaseupdatename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CurrentOrderNumber + AutoApplyDefaultonCaseUpdateName - IntegerType + VirtualType - 5.0.0.0 - false - 0 + 7.1.0.0 + true + - None - 2147483647 - -2147483648 - - 0 - - 8ad542eb-4e40-4c6b-8537-749f85a2348d + + 25fd4f93-23ec-4e4e-b4a2-2fe50291f555 - Integer + Boolean false false false @@ -120935,42 +129609,56 @@ canmodifyadditionalsettings false - 122 + 350 1900-01-01T00:00:00 - 2f52c2fa-2241-db11-898a-0007e9e17ebd + 652a8986-e298-4a47-b3c2-ad2c2d2322a4 true - First parsed table number to use. + Indicates whether to Auto-apply SLA on case record update after SLA was manually applied. 1033 + + c4fb02c4-c729-443e-b487-724d6c6b3b54 + + true + Angiver, om SLA skal anvendes automatisk til sagspostopdatering, når SLA er anvendt manuelt. + 1030 + - 2f52c2fa-2241-db11-898a-0007e9e17ebd + 652a8986-e298-4a47-b3c2-ad2c2d2322a4 true - First parsed table number to use. + Indicates whether to Auto-apply SLA on case record update after SLA was manually applied. 1033 - 241f6732-1428-41ba-861e-e25a633a154e + dbe323fd-42e2-4d2b-9302-7c1618ed99ec true - Current Parsed Table Number + Is Auto-apply SLA After Manually Over-riding 1033 + + d912d4cc-2075-4df3-a56c-66848f83e238 + + true + Anvendes SLA automatisk efter manuel tilsidesættelse + 1030 + - 241f6732-1428-41ba-861e-e25a633a154e + dbe323fd-42e2-4d2b-9302-7c1618ed99ec true - Current Parsed Table Number + Is Auto-apply SLA After Manually Over-riding 1033 @@ -121017,40 +129705,163 @@ canmodifysearchsettings false - false + true false false true - false + true true - currentparsedtablenumber + autoapplysla 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - CurrentParsedTableNumber + AutoApplySLA - IntegerType + BooleanType - 5.0.0.0 + 8.0.0.0 false 0 - None - 2147483647 - -2147483648 + false + + 116c57f0-6be5-40c3-80d7-261be98414e2 + + + + + cf2b0a5e-c786-4997-85ed-d1d82845f27b + + true + Flag to Auto Apply SLA + 1033 + + + 4833c94b-0f79-4aac-b8d3-b5f45ae1add9 + + true + Markér til SLA til automatisk anvendelse + 1030 + + + + cf2b0a5e-c786-4997-85ed-d1d82845f27b + + true + Flag to Auto Apply SLA + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_autoapplysla + Boolean + 8.0.0.0 + + + + + + + + + + false + true + + + + d37a9481-d72c-4a11-b651-9841877c9be3 + + true + No + 1033 + + + 5ddbea57-fef9-4c38-8825-ac15dba6cff0 + + true + Nej + 1030 + + + + d37a9481-d72c-4a11-b651-9841877c9be3 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f13291a8-3829-45b9-b041-e79d901d0a39 + + true + Yes + 1033 + + + afed773a-edd5-4440-bfc4-4ac525503abc + + true + Ja + 1030 + + + + f13291a8-3829-45b9-b041-e79d901d0a39 + + true + Yes + 1033 + + + + 1 + + + 0 - - 61ad2ef7-91d3-4c8c-82b9-50afac0fb469 + + 1ecd229c-58cb-43e2-ba9f-024f25bd098c - Integer + String false false false @@ -121059,42 +129870,56 @@ canmodifyadditionalsettings false - 26 + 326 1900-01-01T00:00:00 - 9.0.0.0 + - 0cabc7f4-2241-db11-898a-0007e9e17ebd + 71b6e43b-cd32-4205-9337-97ac0eed054e true - First quote number to use. Deprecated. Use SetAutoNumberSeed message. + For internal use only. 1033 + + 5fc9ca53-b9dc-4220-9227-f88e341d9d67 + + true + Kun til intern brug. + 1030 + - 0cabc7f4-2241-db11-898a-0007e9e17ebd + 71b6e43b-cd32-4205-9337-97ac0eed054e true - First quote number to use. Deprecated. Use SetAutoNumberSeed message. + For internal use only. 1033 - 48d5c54d-8cd8-4ea9-a8db-8b7b150417c1 + a07d5239-4f51-4b38-8520-ff3af8b3b8c0 true - Current Quote Number + For internal use only. 1033 + + 1722344b-24e2-43af-989b-72fe740410b9 + + true + Kun til intern brug. + 1030 + - 48d5c54d-8cd8-4ea9-a8db-8b7b150417c1 + a07d5239-4f51-4b38-8520-ff3af8b3b8c0 true - Current Quote Number + For internal use only. 1033 @@ -121148,33 +129973,39 @@ true true - currentquotenumber + azureschedulerjobcollectionname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CurrentQuoteNumber + AzureSchedulerJobCollectionName - IntegerType + StringType - 5.0.0.0 + 8.0.0.0 false 0 - None - 2147483647 - -2147483648 + Text + Auto + 100 + + + Text + + false 0 + 200 - - 80cb7ea8-f3d7-4e1e-b98a-0314ac64b839 + + 65964be0-9c7c-4a6d-8f4e-2291726c17b2 - Picklist + Lookup false false false @@ -121183,42 +130014,56 @@ canmodifyadditionalsettings false - 9 + 144 1900-01-01T00:00:00 - 21d7a218-2341-db11-898a-0007e9e17ebd + 0ed68c25-6495-4251-b472-4559e66ca0c6 true - Information about how the date is displayed throughout Microsoft CRM. + Unique identifier of the base currency of the organization. 1033 + + eb03a434-4562-4f8d-bdb1-e539b5801c64 + + true + Entydigt id for organisationens grundvaluta. + 1030 + - 21d7a218-2341-db11-898a-0007e9e17ebd + 0ed68c25-6495-4251-b472-4559e66ca0c6 true - Information about how the date is displayed throughout Microsoft CRM. + Unique identifier of the base currency of the organization. 1033 - 16798841-e911-4aab-a95c-0c70ec3970e7 + a430b364-f9f0-4ec4-8b48-d5ab609a9ae9 true - Date Format Code + Currency 1033 + + b868d5b6-7a18-4870-8549-ae7ef5ce1c13 + + true + Valuta + 1030 + - 16798841-e911-4aab-a95c-0c70ec3970e7 + a430b364-f9f0-4ec4-8b48-d5ab609a9ae9 true - Date Format Code + Currency 1033 @@ -121263,83 +130108,41 @@ false canmodifysearchsettings - false + true true - false - false + true + true true - true + false true - dateformatcode + basecurrencyid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - DateFormatCode + BaseCurrencyId - PicklistType + LookupType 5.0.0.0 false - 0 + - -1 - - a274c0ad-322f-4c51-9e71-c1eebaa90e3c - - - - - 7e119666-d698-463f-b6ec-12f9c2aee9a6 - - true - Information about how the date is displayed throughout Microsoft CRM. - 1033 - - - - 7e119666-d698-463f-b6ec-12f9c2aee9a6 - - true - Information about how the date is displayed throughout Microsoft CRM. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_dateformatcode - Picklist - 5.0.0.0 - - - - - - 0 - - + None + + transactioncurrency + - - 2eb20f53-def0-4f58-b310-4535c696840f + + 66b9965e-b9e2-451d-8744-d84bc0c83e86 - dateformatcode - Virtual + basecurrencyid + String false false false @@ -121348,7 +130151,7 @@ canmodifyadditionalsettings false - 45 + 150 1900-01-01T00:00:00 @@ -121409,28 +130212,39 @@ false false - dateformatcodename + basecurrencyidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - DateFormatCodeName + BaseCurrencyIdName - VirtualType + StringType 5.0.0.0 true - + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 200 - - bc35b207-be5a-48ae-ac2e-92da508f1c10 + + 246ae268-19b8-4059-9161-6dfdb5d01ef2 - String + Integer false false false @@ -121439,42 +130253,56 @@ canmodifyadditionalsettings false - 39 + 157 1900-01-01T00:00:00 - 0dabc7f4-2241-db11-898a-0007e9e17ebd + b6492b59-711e-473e-b033-84dc7f17e174 true - String showing how the date is displayed throughout Microsoft CRM. + Number of decimal places that can be used for the base currency. 1033 + + 1573a4cd-4d20-42b8-b401-270dffd28fc9 + + true + Det antal decimaler, der kan bruges til grundvalutaen. + 1030 + - 0dabc7f4-2241-db11-898a-0007e9e17ebd + b6492b59-711e-473e-b033-84dc7f17e174 true - String showing how the date is displayed throughout Microsoft CRM. + Number of decimal places that can be used for the base currency. 1033 - 5a31b15d-40eb-4639-bed3-60f7f225de03 + 698add65-3f1c-4d9e-bf11-3dcb24d03fff true - Date Format String + Base Currency Precision 1033 + + e714b4b2-496d-4377-bc25-e5a8d7a856c8 + + true + Præcision i grundvaluta + 1030 + - 5a31b15d-40eb-4639-bed3-60f7f225de03 + 698add65-3f1c-4d9e-bf11-3dcb24d03fff true - Date Format String + Base Currency Precision 1033 @@ -121521,43 +130349,37 @@ canmodifysearchsettings false - true + false false false true - true + false true - dateformatstring + basecurrencyprecision 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - DateFormatString + BaseCurrencyPrecision - StringType + IntegerType 5.0.0.0 false 0 - Text - Auto - 255 - - - Text - + None + 10 + 0 - false 0 - 510 - 35612ad8-0817-4d3b-bda7-8fb9983176b3 + cf5b73fd-6d77-42ec-9c4c-ebf818182e4f String @@ -121569,42 +130391,56 @@ canmodifyadditionalsettings false - 13 + 158 1900-01-01T00:00:00 - 3fd7a218-2341-db11-898a-0007e9e17ebd + 9fded292-9331-46b5-878f-20a63388a1d9 true - Character used to separate the month, the day, and the year in dates throughout Microsoft Dynamics 365. + Symbol used for the base currency. 1033 + + 049a9b6b-ac24-4049-ae6d-84d5b86484ad + + true + Det symbol, der bruges til grundvalutaen. + 1030 + - 3fd7a218-2341-db11-898a-0007e9e17ebd + 9fded292-9331-46b5-878f-20a63388a1d9 true - Character used to separate the month, the day, and the year in dates throughout Microsoft Dynamics 365. + Symbol used for the base currency. 1033 - 1b357bbc-2ef6-41ad-bc56-38b1d52e2950 + d85118b2-e012-4373-a365-333f96b328a2 true - Date Separator + Base Currency Symbol 1033 + + f6cd17c9-90f7-4c0f-beb4-450099d226e0 + + true + Symbol for grundvalutaen + 1030 + - 1b357bbc-2ef6-41ad-bc56-38b1d52e2950 + d85118b2-e012-4373-a365-333f96b328a2 true - Date Separator + Base Currency Symbol 1033 @@ -121651,21 +130487,21 @@ canmodifysearchsettings false - true + false false false true - true + false true - dateseparator + basecurrencysymbol 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - DateSeparator + BaseCurrencySymbol StringType @@ -121684,57 +130520,50 @@ false 0 - 10 + 8000 - - a73b723f-bf2e-467d-94b1-76935d4d5106 + + 47973d73-61ca-4166-8ce7-b4aa1be4f3d9 - Integer + String false false false false canmodifyadditionalsettings - true + false - 10232 - 2025-11-06T06:29:14.1830016 + 159 + 1900-01-01T00:00:00 + + + + - f66df4d6-a3b7-44f7-aad6-70111aaeb059 + b882ef78-bc39-4190-9c3b-360016cbad12 true - Number of days before we migrate email description to blob. + Base ISO Currency Code 1033 - - - f66df4d6-a3b7-44f7-aad6-70111aaeb059 - - true - Number of days before we migrate email description to blob. - 1033 - - - - - 54b1c370-edad-4678-a9a2-5099e20ff685 + e458f721-3bbc-41e6-9975-4358fcc38803 true - Number of days before we migrate email description to blob. - 1033 + ISO-valutakode + 1030 - 54b1c370-edad-4678-a9a2-5099e20ff685 + b882ef78-bc39-4190-9c3b-360016cbad12 true - Number of days before we migrate email description to blob. + Base ISO Currency Code 1033 @@ -121750,7 +130579,7 @@ false iscustomizable - false + true false false @@ -121781,40 +130610,46 @@ canmodifysearchsettings false - true + false false false - true - true - true + false + false + false - daysbeforeemaildescriptionismigrated - 2025-11-06T06:29:14.1830016 + baseisocurrencycode + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - DaysBeforeEmailDescriptionIsMigrated + BaseISOCurrencyCode - IntegerType + StringType - 1.8 + 5.0.0.0 false 0 - - None - 2147483647 - -2147483648 - + + Text + Disabled + 5 + + + Text + + + false 0 + 8000 - - 1ea13f65-c738-4de2-ae7c-4503609993ce + + 266840bd-6006-4270-aa3d-3affcc4e1147 - Integer + String false false false @@ -121823,42 +130658,56 @@ canmodifyadditionalsettings false - 10165 - 2025-11-06T05:04:29.4700032 + 239 + 1900-01-01T00:00:00 - 65feaa27-86a7-487d-9780-909577cce3af + 1adad6db-0f9c-49d2-8766-01df92dd8a68 true - Days of inactivity before sync is disabled for a Teams Chat. + Api Key to be used in requests to Bing Maps services. 1033 + + fe0b5694-d420-4e1d-8aeb-63b3c702ecba + + true + Api-nøgle, der skal bruges i forespørgsler til Bing Kort-tjenester. + 1030 + - 65feaa27-86a7-487d-9780-909577cce3af + 1adad6db-0f9c-49d2-8766-01df92dd8a68 true - Days of inactivity before sync is disabled for a Teams Chat. + Api Key to be used in requests to Bing Maps services. 1033 - 9b7189b8-710a-4b5b-87f3-e922d8d10611 + 806e2f95-b299-4ece-ad27-850c873f42b0 true - Days Before Inactive Teams Chat Sync Disabled + Bing Maps API Key 1033 + + a2e4fc4d-6047-4231-8740-f28666c170f3 + + true + API-nøgle til Bing Kort + 1030 + - 9b7189b8-710a-4b5b-87f3-e922d8d10611 + 806e2f95-b299-4ece-ad27-850c873f42b0 true - Days Before Inactive Teams Chat Sync Disabled + Bing Maps API Key 1033 @@ -121874,7 +130723,7 @@ false iscustomizable - false + true false false @@ -121912,77 +130761,83 @@ true true - daysbeforeinactiveteamschatsyncdisabled - 2025-11-06T05:04:29.4700032 + bingmapsapikey + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - DaysBeforeInactiveTeamsChatSyncDisabled + BingMapsApiKey - IntegerType + StringType - 9.2.0.0 + 6.0.0.0 false 0 - - None - 28 - 1 - + + Text + Auto + 1024 + + + Text + + + false 0 + 2048 - - 388e9335-9936-4699-96e4-d65530631a88 + + 13b2314b-3c3f-4c23-972c-07531c4bfcf7 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 323 - 1900-01-01T00:00:00 + 10123 + 2025-11-06T03:38:23.8969984 - c4fcdaa0-1d01-4cc1-b8ac-4c2bcdace791 + c05670e8-e404-4555-878d-27e3f4fb3d56 true - The maximum value for the Mobile Offline setting Days since record last modified + Enable this feature to prevent makers from accessing and downloading session transcripts 1033 - c4fcdaa0-1d01-4cc1-b8ac-4c2bcdace791 + c05670e8-e404-4555-878d-27e3f4fb3d56 true - The maximum value for the Mobile Offline setting Days since record last modified + Enable this feature to prevent makers from accessing and downloading session transcripts 1033 - dc4a41a5-4f32-4468-a6e2-a6d9a1024c8a + 7b8497ba-5c64-493a-a336-c5feded6eb8b true - Max value of Days since record last modified + Block access to session transcripts for Copilot Studio 1033 - dc4a41a5-4f32-4468-a6e2-a6d9a1024c8a + 7b8497ba-5c64-493a-a336-c5feded6eb8b true - Max value of Days since record last modified + Block access to session transcripts for Copilot Studio 1033 @@ -121998,7 +130853,7 @@ false iscustomizable - false + true false false @@ -122029,86 +130884,181 @@ canmodifysearchsettings false - false + true false false true - false + true true - dayssincerecordlastmodifiedmaxvalue - 1900-01-01T00:00:00 + blockaccesstosessiontranscriptsforcopilotstudio + 2025-12-14T02:08:40.1330048 false canmodifyrequirementlevelsettings SystemRequired - DaysSinceRecordLastModifiedMaxValue + BlockAccessToSessionTranscriptsForCopilotStudio - IntegerType + BooleanType - 8.0.0.0 + 1.0.0.150 false 0 - - None - 2147483647 - 0 - + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - - 09f9b062-93a5-4eeb-8a85-2ea50c53825e + + bf92340f-4e85-4344-a7f4-338257ae1d83 - - String + blockaccesstosessiontranscriptsforcopilotstudio + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 132 - 1900-01-01T00:00:00 + 10124 + 2025-11-06T03:38:23.8969984 - - - 247addb9-0fb5-40f2-9079-8b836188fd55 - - true - Symbol used for decimal in Microsoft Dynamics 365. - 1033 - - - - 247addb9-0fb5-40f2-9079-8b836188fd55 - - true - Symbol used for decimal in Microsoft Dynamics 365. - 1033 - + + - - - ccadc990-64b7-42c3-b2e3-95460afea6ba - - true - Decimal Symbol - 1033 - - - - ccadc990-64b7-42c3-b2e3-95460afea6ba - - true - Decimal Symbol - 1033 - + + organization @@ -122116,11 +131066,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -122131,13 +131081,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -122149,94 +131099,83 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - decimalsymbol - 1900-01-01T00:00:00 + blockaccesstosessiontranscriptsforcopilotstudioname + 2025-11-06T03:38:23.8969984 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - DecimalSymbol + blockaccesstosessiontranscriptsforcopilotstudioName - StringType + VirtualType - 5.0.0.0 - false - 0 - - Text - Auto - 5 - - - Text - - - false - 0 - 10 + 1.0.0.150 + true + + - - 5162fc32-9eec-428f-b656-0df6f7f51357 + + b8a77b34-5cfd-4507-99b4-b4a580e9cb0d - String + Boolean false false false false canmodifyadditionalsettings - false + true - 224 - 1900-01-01T00:00:00 + 10125 + 2025-11-06T03:38:23.9100032 - 3eedfa8d-bc51-4b17-873f-4c3671db3484 + f6b253f0-302c-44f6-97a5-23279691b3a2 true - Text area to enter default country code. + Prevent makers from allowing end-users to use their credentials during authentication to use connectors, actions, flows, and triggers that are connected to an agent 1033 - 3eedfa8d-bc51-4b17-873f-4c3671db3484 + f6b253f0-302c-44f6-97a5-23279691b3a2 true - Text area to enter default country code. + Prevent makers from allowing end-users to use their credentials during authentication to use connectors, actions, flows, and triggers that are connected to an agent 1033 - fe542b1f-0d49-457b-a445-b87314aad520 + dfd6be53-659e-40e2-b2f7-57211480325f true - Default Country Code + Block makers from allowing end-users to use their credentials during authentication to use connectors, actions, flows, and triggers that are connected to an agent 1033 - fe542b1f-0d49-457b-a445-b87314aad520 + dfd6be53-659e-40e2-b2f7-57211480325f true - Default Country Code + Block makers from allowing end-users to use their credentials during authentication to use connectors, actions, flows, and triggers that are connected to an agent 1033 @@ -122252,7 +131191,7 @@ false iscustomizable - false + true false false @@ -122290,85 +131229,174 @@ true true - defaultcountrycode - 1900-01-01T00:00:00 + blockcopilotauthorauthentication + 2025-12-14T02:08:40.4930048 false canmodifyrequirementlevelsettings - None + SystemRequired - DefaultCountryCode + BlockCopilotAuthorAuthentication - StringType + BooleanType - 5.0.0.0 + 1.0.0.150 false 0 - - Text - Auto - 30 - - - Text - - - false + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - 30 - - 45e94858-d2ca-4ffc-9327-dd6a435ff2f4 + + 073cbaf2-a0af-495e-a646-a895acf727fa - - String + blockcopilotauthorauthentication + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 400 - 1900-01-01T00:00:00 + 10126 + 2025-11-06T03:38:23.9270016 - - - d4b9b5ab-1933-4963-834b-276b89a2083a - - true - Name of the default crm custom. - 1033 - - - - d4b9b5ab-1933-4963-834b-276b89a2083a - - true - Name of the default crm custom. - 1033 - + + - - - f87db3c0-2eaf-48e8-a5f8-7f7591d48118 - - true - Name of the default app - 1033 - - - - f87db3c0-2eaf-48e8-a5f8-7f7591d48118 - - true - Name of the default app - 1033 - + + organization @@ -122376,11 +131404,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -122391,11 +131419,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable true @@ -122409,94 +131437,83 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - defaultcrmcustomname - 1900-01-01T00:00:00 + blockcopilotauthorauthenticationname + 2025-11-06T03:38:23.9270016 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - DefaultCrmCustomName + blockcopilotauthorauthenticationName - StringType + VirtualType - 8.2.0.0 - false - 0 - - Text - Auto - 100 - - - Text - - - true - 0 - 100 + 1.0.0.150 + true + + - - 9c0acd97-5dfc-4dc2-9da1-e9aaabe793fc + + db82b3de-2e79-4273-b3c0-84e3a5645f1a - Lookup + String false false false false canmodifyadditionalsettings - false + true - 237 - 1900-01-01T00:00:00 + 10028 + 2025-11-06T01:17:44.7900032 - 6a373832-c18d-4ba4-a20d-d7a55a3b6a32 + 92750a4d-f7f1-484d-be3d-1e97a83e2ad6 true - Unique identifier of the default email server profile. + Information that specifies the Applications that are in block list for the accessing DV resources. 1033 - 6a373832-c18d-4ba4-a20d-d7a55a3b6a32 + 92750a4d-f7f1-484d-be3d-1e97a83e2ad6 true - Unique identifier of the default email server profile. + Information that specifies the Applications that are in block list for the accessing DV resources. 1033 - 2d31a6e7-d129-4c79-ac4f-65658ea854dc + 0ccd323a-c3c2-4dc8-b222-2861ff2d0ffe true - Email Server Profile + List of Applications that are in block list for the accessing DV resources. 1033 - 2d31a6e7-d129-4c79-ac4f-65658ea854dc + 0ccd323a-c3c2-4dc8-b222-2861ff2d0ffe true - Email Server Profile + List of Applications that are in block list for the accessing DV resources. 1033 @@ -122512,7 +131529,7 @@ false iscustomizable - true + false false false @@ -122541,40 +131558,47 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - defaultemailserverprofileid - 1900-01-01T00:00:00 + blockedapplicationsfordvaccess + 2025-11-06T01:17:44.7900032 false canmodifyrequirementlevelsettings None - DefaultEmailServerProfileId + BlockedApplicationsForDVAccess - LookupType + StringType - 6.0.0.0 + 1.0.0.15 false - - - None - - emailserverprofile - + 0 + + Text + Auto + 4000 + + + Text + + + false + 0 + 8000 - 4bb9b15b-7d82-487e-8d65-123793bf9f5c + c6577ea1-0353-4f2a-9322-763b9ab5930e - defaultemailserverprofileid + String false false @@ -122584,44 +131608,72 @@ canmodifyadditionalsettings false - 235 + 117 1900-01-01T00:00:00 - 1cc34e59-deed-4d16-8d28-0affbe201a99 + 6b1ed7e8-2241-db11-898a-0007e9e17ebd true - Name of the email server profile to be used as default profile for the mailboxes. + Prevent upload or download of certain attachment types that are considered dangerous. 1033 + + 4c564f32-0f03-40d5-b7ce-15f0fff4d2b4 + + true + Forbyd overførsel eller hentning af bestemte typer vedhæftede filer, der vurderes at være farlige. + 1030 + - 1cc34e59-deed-4d16-8d28-0affbe201a99 + 6b1ed7e8-2241-db11-898a-0007e9e17ebd true - Name of the email server profile to be used as default profile for the mailboxes. + Prevent upload or download of certain attachment types that are considered dangerous. 1033 - - + + + da4e46e6-d6dd-43c3-8eb9-eab1bf3c7299 + + true + Block Attachments + 1033 + + + 7ef1297c-3ace-4770-a473-92202a028532 + + true + Blokér for vedhæftede filer + 1030 + + + + da4e46e6-d6dd-43c3-8eb9-eab1bf3c7299 + + true + Block Attachments + 1033 + organization - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -122652,32 +131704,32 @@ canmodifysearchsettings false - false + true false false true - false - false + true + true - defaultemailserverprofileidname + blockedattachments 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - DefaultEmailServerProfileIdName + BlockedAttachments StringType - 6.0.0.0 - true + 5.0.0.0 + false 0 Text Auto - 100 + 1073741823 Text @@ -122685,10 +131737,10 @@ false 0 - 200 + -1 - c99344cd-3a3a-49ac-9367-288522173c2a + 864ed6bd-b646-4fd4-871b-95f312b98070 String @@ -122700,42 +131752,42 @@ canmodifyadditionalsettings false - 231 - 1900-01-01T00:00:00 + 10000 + 2025-11-06T01:01:00.8130048 - 4be11623-5851-4461-b84e-28f976eaa2b4 + c42bd4cd-2551-4f48-abd1-851a5676759d true - XML string containing the default email settings that are applied when a user or queue is created. + Prevent upload or download of certain mime types that are considered dangerous. 1033 - 4be11623-5851-4461-b84e-28f976eaa2b4 + c42bd4cd-2551-4f48-abd1-851a5676759d true - XML string containing the default email settings that are applied when a user or queue is created. + Prevent upload or download of certain mime types that are considered dangerous. 1033 - 6a1bf628-3bfb-44bf-b22a-a47d4b352823 + 34cfca27-c7f6-4881-a3bb-ff4dcc4f63a8 true - Default Email Settings + List of blocked mime types. 1033 - 6a1bf628-3bfb-44bf-b22a-a47d4b352823 + 34cfca27-c7f6-4881-a3bb-ff4dcc4f63a8 true - Default Email Settings + List of blocked mime types. 1033 @@ -122789,22 +131841,22 @@ true true - defaultemailsettings - 1900-01-01T00:00:00 + blockedmimetypes + 2026-01-25T00:30:05.8729984 false canmodifyrequirementlevelsettings None - DefaultEmailSettings + BlockedMimeTypes StringType - 6.0.0.0 + 9.1.0.0 false 0 - + Text Auto 1073741823 @@ -122812,60 +131864,60 @@ Text - + false 0 -1 - - 2a47cf05-3f60-46ec-9428-b7f65008f1db + + d84144ca-c106-46cd-b887-873f89fbcaeb - Lookup + Boolean false false false false canmodifyadditionalsettings - false + true - 369 - 1900-01-01T00:00:00 + 10121 + 2025-11-06T03:38:23.8630016 - 275d1f3d-c6ea-4794-9003-58026d77a165 + 3030bdbc-d724-41ed-b530-423c2b93e154 true - Unique identifier of the default mobile offline profile. + Enable this feature to block access to session transcripts and conversational transcripts from being written to Dataverse for an individual environment 1033 - 275d1f3d-c6ea-4794-9003-58026d77a165 + 3030bdbc-d724-41ed-b530-423c2b93e154 true - Unique identifier of the default mobile offline profile. + Enable this feature to block access to session transcripts and conversational transcripts from being written to Dataverse for an individual environment 1033 - 7b743258-1e9c-483a-8a9d-4dfcb8fe396d + df497a3a-f9c9-41b5-b0db-32ce7c79166f true - Default Mobile Offline Profile + Block access to session transcripts and conversational transcript recording for Copilot Studio 1033 - 7b743258-1e9c-483a-8a9d-4dfcb8fe396d + df497a3a-f9c9-41b5-b0db-32ce7c79166f true - Default Mobile Offline Profile + Block access to session transcripts and conversational transcript recording for Copilot Studio 1033 @@ -122910,69 +131962,179 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - defaultmobileofflineprofileid - 1900-01-01T00:00:00 + blocktranscriptrecordingforcopilotstudio + 2025-12-14T02:08:39.4899968 false canmodifyrequirementlevelsettings - None + SystemRequired - DefaultMobileOfflineProfileId + BlockTranscriptRecordingForCopilotStudio - LookupType + BooleanType - 8.0.0.0 + 1.0.0.150 false - - - None - - mobileofflineprofile - + 0 + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 - - d1bbc0db-9312-4a36-bdce-0822408545dd + + 0857515f-ed79-4775-a73a-2282a3f82646 - defaultmobileofflineprofileid - String + blocktranscriptrecordingforcopilotstudio + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 370 - 1900-01-01T00:00:00 + 10122 + 2025-11-06T03:38:23.88 - - - a7f7848f-175f-4a50-bb90-3b81b5532c62 - - true - Name of the default mobile offline profile to be used as default profile for mobile offline. - 1033 - - - - a7f7848f-175f-4a50-bb90-3b81b5532c62 - - true - Name of the default mobile offline profile to be used as default profile for mobile offline. - 1033 - + + @@ -122982,15 +132144,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -122999,13 +132161,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -123017,7 +132179,7 @@ false - false + true canmodifysearchsettings false @@ -123028,83 +132190,72 @@ false false - defaultmobileofflineprofileidname - 1900-01-01T00:00:00 + blocktranscriptrecordingforcopilotstudioname + 2025-11-06T03:38:23.88 - false + true canmodifyrequirementlevelsettings None - DefaultMobileOfflineProfileIdName + blocktranscriptrecordingforcopilotstudioName - StringType + VirtualType - 8.0.0.0 + 1.0.0.150 true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 200 + + - - 6ed3bd88-c6ac-4632-91fa-1fd1ff7313cb + + 4a22033e-41f8-4504-885b-c8c94d3a8d13 - Picklist + Boolean false false false false canmodifyadditionalsettings - false + true - 166 - 1900-01-01T00:00:00 + 10249 + 2025-12-14T02:08:42.7270016 - 338347a9-f5df-4884-94dc-95e05afcd8f4 + bfe821de-512d-490b-a144-42c0dd6ebca1 true - Type of default recurrence end range date. + Enable this feature to block URLs and images in Copilot Studio and agent responses for an individual environment. URLs will be replaced with placeholders. 1033 - 338347a9-f5df-4884-94dc-95e05afcd8f4 + bfe821de-512d-490b-a144-42c0dd6ebca1 true - Type of default recurrence end range date. + Enable this feature to block URLs and images in Copilot Studio and agent responses for an individual environment. URLs will be replaced with placeholders. 1033 - 910b4388-6af5-4182-ab4a-21479f0dd368 + c8908aca-d64f-4bc9-bf7a-37176e67d7fb true - Default Recurrence End Range Type + Block URLs and images in Copilot Studio responses 1033 - 910b4388-6af5-4182-ab4a-21479f0dd368 + c8908aca-d64f-4bc9-bf7a-37176e67d7fb true - Default Recurrence End Range Type + Block URLs and images in Copilot Studio responses 1033 @@ -123152,204 +132303,172 @@ false true - true + false false true true true - defaultrecurrenceendrangetype - 1900-01-01T00:00:00 + blockurlsinresponsesforcopilotstudio + 2025-12-14T02:08:42.7270016 false canmodifyrequirementlevelsettings - None + SystemRequired - DefaultRecurrenceEndRangeType + BlockUrlsInResponsesForCopilotStudio - PicklistType + BooleanType - 5.0.0.0 + 1.0.0.219 false 0 - - + + false - 102cfb61-ec80-4d15-adc0-3fbf16412184 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 59b96e39-49ef-44c7-ba67-589a8b21e8df + 05aedb96-402f-4dff-86e7-54b577874b2f true - Specifies the default end recurrence range to be used in recurrence dialog. + Information that specifies whether a feature is enabled for the organization. 1033 - - - 59b96e39-49ef-44c7-ba67-589a8b21e8df - - true - Specifies the default end recurrence range to be used in recurrence dialog. - 1033 - - - - - c9a133d2-33a2-4f87-8e45-45f34b2d058e + 9aa58f12-110b-435b-9270-294a78494bba true - DefaultRecurrenceEndRangeType - 1033 + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 - c9a133d2-33a2-4f87-8e45-45f34b2d058e + 05aedb96-402f-4dff-86e7-54b577874b2f true - DefaultRecurrenceEndRangeType + Information that specifies whether a feature is enabled for the organization. 1033 + + + + false false iscustomizable - true + false - false + true true - organization_defaultrecurrenceendrangetype - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 7584015b-3cc6-436c-8072-a52d3d73743d - - true - No End Date - 1033 - - - - 7584015b-3cc6-436c-8072-a52d3d73743d + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - true - No End Date - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - ce0f3d69-31dc-4b89-9631-1b874b147659 - - true - Number of Occurrences - 1033 - - - - ce0f3d69-31dc-4b89-9631-1b874b147659 + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 - true - Number of Occurrences - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 2fbf640f-af2c-49c6-a445-83c179abade1 - - true - End By Date - 1033 - - - - 2fbf640f-af2c-49c6-a445-83c179abade1 + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 - true - End By Date - 1033 - - - - 3 - - - - + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + - - + 0 - - - e672f628-50f1-4acd-86f2-fb8ba9264050 + 2efab48e-cee8-4971-a514-4c21ba0a4fcd - defaultrecurrenceendrangetype + blockurlsinresponsesforcopilotstudio Virtual false false false - false + true canmodifyadditionalsettings - false + true - 167 - 1900-01-01T00:00:00 + 10250 + 2025-12-14T02:08:42.8700032 @@ -123363,15 +132482,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -123380,13 +132499,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -123398,39 +132517,39 @@ false - false + true canmodifysearchsettings false - true + false false false true - true + false false - defaultrecurrenceendrangetypename - 1900-01-01T00:00:00 + blockurlsinresponsesforcopilotstudioname + 2025-12-14T02:08:42.8700032 - false + true canmodifyrequirementlevelsettings None - DefaultRecurrenceEndRangeTypeName + blockurlsinresponsesforcopilotstudioName VirtualType - 5.0.0.0 + 1.0.0.219 true - + - - 5a33d949-021a-4be7-a8b4-27b25f1b67bc + + e9e9cc57-c370-4f8b-9a95-3f5a1515f673 - Memo + Boolean false false false @@ -123439,42 +132558,56 @@ canmodifyadditionalsettings false - 295 + 420 1900-01-01T00:00:00 - 2abd908d-d881-424e-8545-da9fd1f52a59 + c3b89568-470e-4b2d-90a3-8196d24939c5 true - Default theme data for the organization. + Display cards in expanded state for interactive dashboard 1033 + + e0828d82-196a-47d0-9b2b-a94dc4c89da1 + + true + Vis kort i udvidet tilstand til interaktivt dashboard + 1030 + - 2abd908d-d881-424e-8545-da9fd1f52a59 + c3b89568-470e-4b2d-90a3-8196d24939c5 true - Default theme data for the organization. + Display cards in expanded state for interactive dashboard 1033 - 9e99b272-dd9b-4250-b398-83e0e52eab11 + b10a0080-885d-4af0-8f46-56cc79e9632d true - Default Theme Data + Display cards in expanded state for Interactive Dashboard 1033 + + 452380bd-e16d-46a9-b7d0-8a39d5a534e0 + + true + Vis kort i udvidet tilstand til interaktivt dashboard + 1030 + - 9e99b272-dd9b-4250-b398-83e0e52eab11 + b10a0080-885d-4af0-8f46-56cc79e9632d true - Default Theme Data + Display cards in expanded state for Interactive Dashboard 1033 @@ -123482,15 +132615,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -123528,35 +132661,156 @@ true true - defaultthemedata + bounddashboarddefaultcardexpanded 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - DefaultThemeData + BoundDashboardDefaultCardExpanded - MemoType + BooleanType - 7.1.0.0 + 9.0.0.0 false - + 0 - TextArea - Auto - 1073741823 - - TextArea - - false + false + + ce2839da-e865-42f3-bfc7-ea9669756498 + + + + + 2d0c2790-a760-446e-9cdc-58d7e16d6f43 + + true + Flag to display cards in expanded state for Bound Dashboards + 1033 + + + dfac7479-60e2-4458-a93f-2e46c0d86a32 + + true + Markér for at få vist kort i udvidet tilstand til bundne dashboards + 1030 + + + + 2d0c2790-a760-446e-9cdc-58d7e16d6f43 + + true + Flag to display cards in expanded state for Bound Dashboards + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_bounddashboarddefaultcardexpanded + Boolean + 9.0.0.0 + + + + + + + + + + false + true + + + + b0c398f1-2bd0-4e58-a2dd-66c473725133 + + true + No + 1033 + + + 7eabde8b-e71d-4513-ae67-22831b92c1b2 + + true + Nej + 1030 + + + + b0c398f1-2bd0-4e58-a2dd-66c473725133 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 75f9f1f0-77da-49fa-ac7f-0bf72b7bf114 + + true + Yes + 1033 + + + 53159839-9609-4a43-8919-0e1abaf06a0a + + true + Ja + 1030 + + + + 75f9f1f0-77da-49fa-ac7f-0bf72b7bf114 + + true + Yes + 1033 + + + + 1 + + + + + 0 - - cbef538e-e3b6-4233-b7b6-21e83c32f5a0 + + 8d778bd4-d346-4066-8417-6888d841f388 - Uniqueidentifier + String false false false @@ -123565,42 +132819,56 @@ canmodifyadditionalsettings false - 309 + 77 1900-01-01T00:00:00 - 7a3b3663-5daf-4e56-b703-f46f519efea8 + c891aa12-2341-db11-898a-0007e9e17ebd true - Unique identifier of the delegated admin user for the organization. + Prefix used for bulk operation numbering. 1033 + + dc58fd1f-3264-4ccf-b2a4-f7c0ae8e5599 + + true + Det præfiks, der bruges til nummerering i massehandlinger. + 1030 + - 7a3b3663-5daf-4e56-b703-f46f519efea8 + c891aa12-2341-db11-898a-0007e9e17ebd true - Unique identifier of the delegated admin user for the organization. + Prefix used for bulk operation numbering. 1033 - aff1c507-4421-4689-867b-efeac57eb641 + 56b53b10-433f-4d9d-96fc-b1b5b1991755 true - Delegated Admin + Bulk Operation Prefix 1033 + + dcdcd493-519a-4e58-948d-057aa3b90188 + + true + Præfiks for massehandling + 1030 + - aff1c507-4421-4689-867b-efeac57eb641 + 56b53b10-433f-4d9d-96fc-b1b5b1991755 true - Delegated Admin + Bulk Operation Prefix 1033 @@ -123608,15 +132876,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -123651,75 +132919,100 @@ false false true - false + true true - delegatedadminuserid + bulkoperationprefix 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - DelegatedAdminUserId + BulkOperationPrefix - UniqueidentifierType + StringType - 7.1.0.0 + 5.0.0.0 false - + 0 + Text + Auto + 20 + + + Text + + + false + 0 + 40 - - 072b76a4-f1d4-4894-be8b-639c22d38a1e + + 17daedc2-1276-4cba-8baa-631081e69318 - Integer + String false false false false canmodifyadditionalsettings - true + false - 10074 - 2025-11-06T02:47:57.8669952 + 449 + 2025-11-06T00:19:20.0099968 - 555bc7bd-149d-4831-ac9c-1d02775b6a61 + 663a06a6-5a1f-42ee-af39-244ba5f21cb7 true - Default time to live in minutes for new desktop flow queue log records. + BusinessCardOptions 1033 + + a4861aeb-0242-487c-ad76-1f4314c24327 + + true + BusinessCardOptions + 1030 + - 555bc7bd-149d-4831-ac9c-1d02775b6a61 + 663a06a6-5a1f-42ee-af39-244ba5f21cb7 true - Default time to live in minutes for new desktop flow queue log records. + BusinessCardOptions 1033 - e16c774d-f181-419d-936f-b49f46d27377 + efc3c406-9870-43f6-8d3f-57ba651fee98 true - The TTL for new desktop flow queue log records. + Enable New BusinessCardOptions 1033 + + a402ce3c-77ed-4a53-835f-4dc1057535f5 + + true + Aktivér ny BusinessCardOptions + 1030 + - e16c774d-f181-419d-936f-b49f46d27377 + efc3c406-9870-43f6-8d3f-57ba651fee98 true - The TTL for new desktop flow queue log records. + Enable New BusinessCardOptions 1033 @@ -123750,7 +133043,7 @@ false isrenameable - true + false false false @@ -123762,7 +133055,7 @@ false - true + false canmodifysearchsettings false @@ -123773,77 +133066,97 @@ true true - desktopflowqueuelogsttlinminutes - 2025-11-06T02:47:57.8669952 + businesscardoptions + 2025-11-06T00:19:20.0099968 - true + false canmodifyrequirementlevelsettings SystemRequired - DesktopFlowQueueLogsTtlInMinutes + BusinessCardOptions - IntegerType + StringType - 1.8.0.0 + 9.1.0.0 false 0 - None - 33554432 - -1 - + Text + Auto + 1000 + + + Text + + + false 0 + 1000 - - ee81ba78-a6cb-4ca7-920a-9e7bf99b945c + + 632aac23-30c9-40ca-a6d1-1a6a6aecca59 - Picklist + Uniqueidentifier false false false false canmodifyadditionalsettings - true + false - 10067 - 2025-11-06T02:47:57.7430016 + 69 + 1900-01-01T00:00:00 - 8055d32c-c376-4f91-ab0e-dd0fbb286037 + 1f26e7d6-2241-db11-898a-0007e9e17ebd true - Toggle the activation of the Power Automate Desktop Flow run action logs. + Unique identifier of the business closure calendar of organization. 1033 + + 0c6427a7-2cbd-49e4-80ab-52c26741f449 + + true + Entydigt id for kalenderen med organisationens lukketider. + 1030 + - 8055d32c-c376-4f91-ab0e-dd0fbb286037 + 1f26e7d6-2241-db11-898a-0007e9e17ebd true - Toggle the activation of the Power Automate Desktop Flow run action logs. + Unique identifier of the business closure calendar of organization. 1033 - 9c73ce0f-b744-4e11-88c3-178b3bc4983e + a988832b-3356-42cd-9690-ee5c192a5918 true - Desktop Flow Run Action Logs Status + Business Closure Calendar 1033 + + 49d1d932-fb40-4f34-bd22-a8b588c76a35 + + true + Kalender med lukketider + 1030 + - 9c73ce0f-b744-4e11-88c3-178b3bc4983e + a988832b-3356-42cd-9690-ee5c192a5918 true - Desktop Flow Run Action Logs Status + Business Closure Calendar 1033 @@ -123851,15 +133164,15 @@ - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -123874,7 +133187,7 @@ false isrenameable - true + false false false @@ -123886,7 +133199,7 @@ false - true + false canmodifysearchsettings false @@ -123894,251 +133207,91 @@ false false true - true + false true - desktopflowrunactionlogsstatus - 2025-11-06T02:47:57.7430016 + businessclosurecalendarid + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - SystemRequired + None - DesktopFlowRunActionLogsStatus + BusinessClosureCalendarId - PicklistType + UniqueidentifierType - 1.7.4.0 + 5.0.0.0 false - 0 + - 0 - - d4a1c0fd-baba-f011-bbd3-7c1e52365f30 - - - - - d6a1c0fd-baba-f011-bbd3-7c1e52365f30 - - true - The status of activation of the Power Automate Desktop Flow Run Action logs. - 1033 - - - - d6a1c0fd-baba-f011-bbd3-7c1e52365f30 - - true - The status of activation of the Power Automate Desktop Flow Run Action logs. - 1033 - - - - - - d5a1c0fd-baba-f011-bbd3-7c1e52365f30 - - true - Desktop Flow Run Action Logs Status - 1033 - - - - d5a1c0fd-baba-f011-bbd3-7c1e52365f30 - - true - Desktop Flow Run Action Logs Status - 1033 - - - - true - - false - iscustomizable - false - - false - true - organization_desktopflowrunactionlogsstatus - Picklist - 1.7.4.0 - - - - - - - - - 98a4903e-98e8-4537-ad37-cd2757263512 - - true - Power Automate Desktop Flow Run Action Logs are enabled. - 1033 - - - - 98a4903e-98e8-4537-ad37-cd2757263512 - - true - Power Automate Desktop Flow Run Action Logs are enabled. - 1033 - - - - false - true - - - - 74debb9f-738d-40b9-9245-b48d30511537 - - true - Enabled - 1033 - - - - 74debb9f-738d-40b9-9245-b48d30511537 - - true - Enabled - 1033 - - - - 0 - - - - - - - - - - ddc93912-94f3-4d26-b8e9-486464170c4d - - true - Power Automate Desktop Flow Run Action Logs are saved only on failure. - 1033 - - - - ddc93912-94f3-4d26-b8e9-486464170c4d - - true - Power Automate Desktop Flow Run Action Logs are saved only on failure. - 1033 - - - - false - true - - - - a8b29e1c-4f3d-4533-8899-5c7b557c98f6 - - true - OnFailure - 1033 - - - - a8b29e1c-4f3d-4533-8899-5c7b557c98f6 - - true - OnFailure - 1033 - - - - 1 - - - - - - - - - - 89146724-8e28-41c8-8037-9ae237d5f62b - - true - Power Automate Desktop Flow Run Action Logs are disabled. - 1033 - - - - 89146724-8e28-41c8-8037-9ae237d5f62b - - true - Power Automate Desktop Flow Run Action Logs are disabled. - 1033 - - - - false - true - - - - 5f8b56e3-6af5-471c-967c-70524747da6d - - true - Disabled - 1033 - - - - 5f8b56e3-6af5-471c-967c-70524747da6d - - true - Disabled - 1033 - - - - 2 - - - - - - - - 0 - - - - 29b7318b-0ff7-4da3-9965-80e4b13b9d52 + + 172aeae3-805b-404d-abc1-93b30243526a - desktopflowrunactionlogsstatus - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true + false - 10068 - 2025-11-06T02:47:57.76 + 127 + 1900-01-01T00:00:00 - - + + + e9cde1dc-2241-db11-898a-0007e9e17ebd + + true + Calendar type for the system. Set to Gregorian US by default. + 1033 + + + 2f2f5ae3-1a4e-4f8f-bbf0-751eb25b9d33 + + true + Systemets kalendertype. Den er som standard indstillet til Gregoriansk USA. + 1030 + + + + e9cde1dc-2241-db11-898a-0007e9e17ebd + + true + Calendar type for the system. Set to Gregorian US by default. + 1033 + - - + + + 7aeba38a-04c1-43a5-938b-799725f34bfa + + true + Calendar Type + 1033 + + + 56bdc0aa-3767-4d36-9783-3facfb334a7e + + true + Kalendertype + 1030 + + + + 7aeba38a-04c1-43a5-938b-799725f34bfa + + true + Calendar Type + 1033 + organization @@ -124146,11 +133299,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -124161,13 +133314,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -124179,83 +133332,102 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - desktopflowrunactionlogsstatusname - 2025-11-06T02:47:57.76 + calendartype + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - desktopflowrunactionlogsstatusName + CalendarType - VirtualType + IntegerType - 1.7.4.0 - true - - + 5.0.0.0 + false + 0 + + None + 2147483647 + -2147483648 + + 0 - - 52c9c7f4-273d-4251-8148-4c9748430a7f + + 4e6cb034-6493-442b-bff8-1d3160ef7b21 - Picklist + String false false false false canmodifyadditionalsettings - true + false - 10071 - 2025-11-06T02:47:57.7900032 + 80 + 1900-01-01T00:00:00 - 5e6bd7c0-e604-4112-a9c7-368d3d8a0773 + 9dd8dee2-2241-db11-898a-0007e9e17ebd true - What verbosity level the Power Automate Desktop Flow Run Action Logs allow. + Prefix used for campaign numbering. 1033 + + fb731335-8bec-4ea9-ba08-1641d559b134 + + true + Det præfiks, der bruges til nummerering i kampagner. + 1030 + - 5e6bd7c0-e604-4112-a9c7-368d3d8a0773 + 9dd8dee2-2241-db11-898a-0007e9e17ebd true - What verbosity level the Power Automate Desktop Flow Run Action Logs allow. + Prefix used for campaign numbering. 1033 - dbbe8e5b-ee84-41a1-8ccb-df14b7484ef7 + a596b09c-2cc2-48ae-a94c-c672ecaed3aa true - Desktop Flow Run Action Log Verbosity + Campaign Prefix 1033 + + a51113a2-2029-458d-8a40-92371c1935fe + + true + Kampagnepræfiks + 1030 + - dbbe8e5b-ee84-41a1-8ccb-df14b7484ef7 + a596b09c-2cc2-48ae-a94c-c672ecaed3aa true - Desktop Flow Run Action Log Verbosity + Campaign Prefix 1033 @@ -124286,7 +133458,7 @@ false isrenameable - true + false false false @@ -124298,7 +133470,7 @@ false - true + false canmodifysearchsettings false @@ -124309,323 +133481,299 @@ true true - desktopflowrunactionlogverbosity - 2025-11-06T02:47:57.7900032 + campaignprefix + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - DesktopFlowRunActionLogVerbosity + CampaignPrefix - PicklistType + StringType - 1.8.47.0 + 5.0.0.0 false 0 - 0 - - daa1c0fd-baba-f011-bbd3-7c1e52365f30 - - - - - dca1c0fd-baba-f011-bbd3-7c1e52365f30 - - true - What verbosity level the Power Automate Desktop Flow Run Action logs allow. - 1033 - - - - dca1c0fd-baba-f011-bbd3-7c1e52365f30 + Text + Auto + 20 + + + Text + + + false + 0 + 40 + + + 7391365e-374a-40d3-b80a-f2a0b64cd2fc + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 10172 + 2025-11-06T06:14:32.2530048 + + + + + fc6cf115-e7d0-4d29-af9a-19f684cf2a53 - true - What verbosity level the Power Automate Desktop Flow Run Action logs allow. - 1033 - - - - - - dba1c0fd-baba-f011-bbd3-7c1e52365f30 - - true - Desktop Flow Run Action Log Verbosity - 1033 - - - - dba1c0fd-baba-f011-bbd3-7c1e52365f30 + true + Indicates whether the organization can opt out of the new Relevance search experience (released in Oct 2020) + 1033 + + + 8be60be2-ab9d-4058-bdd1-6cf86c8455f4 - true - Desktop Flow Run Action Log Verbosity - 1033 - - - - true - - false - iscustomizable - false - - false - true - organization_desktopflowrunactionlogverbosity - Picklist - 1.8.47.0 - - - + true + Angiver, om organisationen kan framelde sig den nye relevanssøgning (udgivet i oktober 2020) + 1030 + + + + fc6cf115-e7d0-4d29-af9a-19f684cf2a53 + + true + Indicates whether the organization can opt out of the new Relevance search experience (released in Oct 2020) + 1033 + + + + + + 4c6e8586-6e7a-40cd-8aab-a513be055e77 - - - - - 5b17d737-7fd8-4641-9e0b-678cb21b0173 - - true - All Power Automate Desktop Flow Run Action Logs are included. - 1033 - - - - 5b17d737-7fd8-4641-9e0b-678cb21b0173 - - true - All Power Automate Desktop Flow Run Action Logs are included. - 1033 - - - - false - true - - - - 0333458d-a026-490d-ab00-f4a0df6a2100 - - true - Full - 1033 - - - - 0333458d-a026-490d-ab00-f4a0df6a2100 - - true - Full - 1033 - - - - 0 - - - - - - - - - - b9e988c7-a88a-4f6d-a063-fb635c33b628 - - true - All Power Automate Desktop Flow Run Action Logs except Built-in Actions Logs. - 1033 - - - - b9e988c7-a88a-4f6d-a063-fb635c33b628 - - true - All Power Automate Desktop Flow Run Action Logs except Built-in Actions Logs. - 1033 - - - - false - true - - - - 2eae69ff-5574-4c0e-a5d3-546782c0ef58 - - true - Debug - 1033 - - - - 2eae69ff-5574-4c0e-a5d3-546782c0ef58 - - true - Debug - 1033 - - - - 1 - - - - + true + Can disable Oct 2020 Search + 1033 + + + 24f3ce2d-5be3-4cdd-949a-a240997ed541 - - - - - 56cad343-2199-4c55-b6b9-ca77d5d31018 - - true - Power Automate Desktop Flow Run Action Logs Using Log Message Action and all Warning and Errors Action Logs. - 1033 - - - - 56cad343-2199-4c55-b6b9-ca77d5d31018 - - true - Power Automate Desktop Flow Run Action Logs Using Log Message Action and all Warning and Errors Action Logs. - 1033 - - - - false - true - - - - 2208755b-9b05-40a1-bffe-7529af0dbc79 - - true - Custom - 1033 - - - - 2208755b-9b05-40a1-bffe-7529af0dbc79 - - true - Custom - 1033 - - - - 2 - - - - + true + Kan deaktivere oktober 2020-søgning + 1030 + + + + 4c6e8586-6e7a-40cd-8aab-a513be055e77 + + true + Can disable Oct 2020 Search + 1033 + + + organization + + + + true + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + canoptoutnewsearchexperience + 2025-11-06T06:14:32.2530048 + + false + canmodifyrequirementlevelsettings + SystemRequired + + CanOptOutNewSearchExperience + + + BooleanType + + 9.1.0.0 + false + 0 + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f - - - - - fd8737b7-2bd9-4b3a-b58b-385513eec823 - - true - Power Automate Desktop Flow Run Action Warning and Error Logs. - 1033 - - - - fd8737b7-2bd9-4b3a-b58b-385513eec823 + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - true - Power Automate Desktop Flow Run Action Warning and Error Logs. - 1033 - - - - false - true - - - - b943b919-9843-415f-a1c2-28a498606a77 - - true - Warning - 1033 - - - - b943b919-9843-415f-a1c2-28a498606a77 + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 - true - Warning - 1033 - - - - 3 - - - - - - - - - - e33ad8fc-d142-4097-beb7-39d8476d7c44 - - true - Power Automate Desktop Flow Run Action Error Logs only. - 1033 - - - - e33ad8fc-d142-4097-beb7-39d8476d7c44 + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 - true - Power Automate Desktop Flow Run Action Error Logs only. - 1033 - - - - false - true - - - - 617fab78-5a0f-4ee0-8a08-950cf8fa858c - - true - Error - 1033 - - - - 617fab78-5a0f-4ee0-8a08-950cf8fa858c + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b - true - Error - 1033 - - - - 4 - - - - + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + - 0 - - - 71c872f9-1702-445b-8fcd-f55cdacdc255 + 39e17ea1-2c42-4041-846f-a7cc1c8a0a17 - desktopflowrunactionlogverbosity + canoptoutnewsearchexperience Virtual false false @@ -124635,8 +133783,8 @@ canmodifyadditionalsettings true - 10072 - 2025-11-06T02:47:57.8070016 + 10173 + 2025-11-06T06:14:32.2700032 @@ -124696,28 +133844,28 @@ false false - desktopflowrunactionlogverbosityname - 2025-11-06T02:47:57.8070016 + canoptoutnewsearchexperiencename + 2025-11-06T06:14:32.2700032 true canmodifyrequirementlevelsettings None - desktopflowrunactionlogverbosityName + canoptoutnewsearchexperienceName VirtualType - 1.8.47.0 + 9.1.0.0 true - - 26ea9d73-eba2-4b4c-8d2b-4497622d37ba + + 363642f8-9492-401d-9b4e-30af2a531ebf - Picklist + Boolean false false false @@ -124726,42 +133874,56 @@ canmodifyadditionalsettings true - 10069 - 2025-11-06T02:47:57.76 + 252 + 1900-01-01T00:00:00 - c8b109e2-38cd-4886-bee6-972c478bb771 + 038faa7c-dbec-48db-8e12-8e33e2cb70c7 true - Where the Power Automate Desktop Flow Run Action logs are stored. + Flag to cascade Update on incident. 1033 + + 12fdb69b-5b86-44bb-9a40-271eb4d45b77 + + true + Markér for at overlappe Opdater ved hændelse. + 1030 + - c8b109e2-38cd-4886-bee6-972c478bb771 + 038faa7c-dbec-48db-8e12-8e33e2cb70c7 true - Where the Power Automate Desktop Flow Run Action logs are stored. + Flag to cascade Update on incident. 1033 - 2fc28b32-2762-4839-8153-ecff4df4f786 + ea0f6c59-05bf-4676-bf01-beb5f3691614 true - Desktop Flow Run Action Log Version + Cascade Status Update 1033 + + fa3c5af6-0783-4b2d-99e4-713e30d8b2b4 + + true + Vis overlappende statusopdatering + 1030 + - 2fc28b32-2762-4839-8153-ecff4df4f786 + ea0f6c59-05bf-4676-bf01-beb5f3691614 true - Desktop Flow Run Action Log Version + Cascade Status Update 1033 @@ -124777,7 +133939,7 @@ false iscustomizable - true + false false false @@ -124792,7 +133954,7 @@ false isrenameable - true + false false false @@ -124804,7 +133966,7 @@ false - true + false canmodifysearchsettings false @@ -124815,64 +133977,57 @@ true true - desktopflowrunactionlogversion - 2025-11-06T02:47:57.76 + cascadestatusupdate + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - SystemRequired + None - DesktopFlowRunActionLogVersion + CascadeStatusUpdate - PicklistType + BooleanType - 1.7.4.0 + 6.1.0.0 false 0 - 0 + false - d7a1c0fd-baba-f011-bbd3-7c1e52365f30 + 1dc3c241-b359-4a41-a682-4fb7cf87e08a - d9a1c0fd-baba-f011-bbd3-7c1e52365f30 + aea24fad-1f5b-4e0d-af85-a93c4e793937 true - Where the Power Automate Desktop Flow Run Action logs are stored. + Cascade Status Update 1033 - - - d9a1c0fd-baba-f011-bbd3-7c1e52365f30 - - true - Where the Power Automate Desktop Flow Run Action logs are stored. - 1033 - - - - - d8a1c0fd-baba-f011-bbd3-7c1e52365f30 + dc6f86b4-e884-4abb-aa0c-4e47f3f91599 true - Desktop Flow Run Action Log Version - 1033 + Vis overlappende statusopdatering + 1030 - d8a1c0fd-baba-f011-bbd3-7c1e52365f30 + aea24fad-1f5b-4e0d-af85-a93c4e793937 true - Desktop Flow Run Action Log Version + Cascade Status Update 1033 + + + + - - true + + false false iscustomizable @@ -124880,183 +134035,158 @@ false true - organization_desktopflowrunactionlogversion - Picklist - 1.7.4.0 - - - - - - - - - 5480200e-a770-473f-aff5-f777b541b0dd - - true - Power Automate Desktop Flow Run Action Logs are stored in the Additional Context field of the Flow Session. - 1033 - - - - 5480200e-a770-473f-aff5-f777b541b0dd - - true - Power Automate Desktop Flow Run Action Logs are stored in the Additional Context field of the Flow Session. - 1033 - - - - false - true - - - - 15e8911b-3d2c-4f31-99a7-ee67379b56b9 - - true - AdditionalContext - 1033 - - - - 15e8911b-3d2c-4f31-99a7-ee67379b56b9 - - true - AdditionalContext - 1033 - - - - 0 - - - - - - - - - - 0bd7c994-f36d-4344-a1b4-c8b6b4b66923 - - true - Power Automate Desktop Flow Run Action Logs are stored in the Flow Logs Dataverse Entity. - 1033 - - - - 0bd7c994-f36d-4344-a1b4-c8b6b4b66923 + organization_cascadestatusupdate + Boolean + 6.1.0.0 + + + + + + + + + + false + true + + + + e148a36c-5959-45f9-bc87-3faf997311d7 - true - Power Automate Desktop Flow Run Action Logs are stored in the Flow Logs Dataverse Entity. - 1033 - - - - false - true - - - - eb05e0b0-739b-4157-9e1e-401484304404 - - true - FlowLogs - 1033 - - - - eb05e0b0-739b-4157-9e1e-401484304404 + true + No + 1033 + + + 9ea32aaa-6772-4a96-aedd-ae3bb1052fcb - true - FlowLogs - 1033 - - - - 1 - - - - - - - - - - e346bea6-7881-447e-aabb-3b9386e8866e - - true - Power Automate Desktop Flow Run Action Logs are stored in the Additional Context field of the Flow Session and the Flow Logs Dataverse Entity. - 1033 - - - - e346bea6-7881-447e-aabb-3b9386e8866e + true + Nej + 1030 + + + + e148a36c-5959-45f9-bc87-3faf997311d7 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 5c28a06c-b643-47fc-836e-139cdce18261 - true - Power Automate Desktop Flow Run Action Logs are stored in the Additional Context field of the Flow Session and the Flow Logs Dataverse Entity. - 1033 - - - - false - true - - - - d66e7828-55f7-4fcd-802f-50ce71deec4c - - true - AdditionalContextAndFlowLogs - 1033 - - - - d66e7828-55f7-4fcd-802f-50ce71deec4c + true + Yes + 1033 + + + f0bf19a8-0d60-476b-a4bd-7f585bbbbdae - true - AdditionalContextAndFlowLogs - 1033 - - - - 2 - - - - + true + Ja + 1030 + + + + 5c28a06c-b643-47fc-836e-139cdce18261 + + true + Yes + 1033 + + + + 1 + + - - + 0 - - - - 5bebedda-eac9-41d2-9cd4-4d95eb06ae9f + + 14a34d80-7f99-4d54-87c4-90798585b827 - desktopflowrunactionlogversion - Virtual + + String false false false - true + false canmodifyadditionalsettings - true + false - 10070 - 2025-11-06T02:47:57.7730048 + 21 + 1900-01-01T00:00:00 - - + + + 6e64cfee-2241-db11-898a-0007e9e17ebd + + true + Prefix to use for all cases throughout Microsoft Dynamics 365. + 1033 + + + 95075069-7dff-4d0c-aa01-9ee016b4c4dd + + true + Præfiks til brug med alle sager i Microsoft Dynamics 365. + 1030 + + + + 6e64cfee-2241-db11-898a-0007e9e17ebd + + true + Prefix to use for all cases throughout Microsoft Dynamics 365. + 1033 + - - + + + ba20cdae-5aa7-42d9-89e0-c3df811d8ccb + + true + Case Prefix + 1033 + + + 2fc72b43-882a-49a3-8a5c-7c7a1e699c43 + + true + Sagspræfiks + 1030 + + + + ba20cdae-5aa7-42d9-89e0-c3df811d8ccb + + true + Case Prefix + 1033 + organization @@ -125064,11 +134194,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -125079,13 +134209,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -125097,36 +134227,47 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - desktopflowrunactionlogversionname - 2025-11-06T02:47:57.7730048 + caseprefix + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - desktopflowrunactionlogversionName + CasePrefix - VirtualType + StringType - 1.7.4.0 - true - - + 5.0.0.0 + false + 0 + + Text + Auto + 20 + + + Text + + + false + 0 + 40 - fd6c80cd-f744-4128-b2f0-8dce9c0a9712 + 7bb2ae9c-3f22-4cb8-9079-70696ab42be3 String @@ -125138,42 +134279,56 @@ canmodifyadditionalsettings false - 18 + 374 1900-01-01T00:00:00 - 0c64cfee-2241-db11-898a-0007e9e17ebd + e800ff20-6e21-4f32-9408-4de6064f73a7 true - Reason for disabling the organization. + Type the prefix to use for all categories in Microsoft Dynamics 365. 1033 + + 87ef9325-b171-49ef-b83b-ed760f2ab576 + + true + Skriv præfikset, der skal bruges til alle kategorier i Microsoft Dynamics 365. + 1030 + - 0c64cfee-2241-db11-898a-0007e9e17ebd + e800ff20-6e21-4f32-9408-4de6064f73a7 true - Reason for disabling the organization. + Type the prefix to use for all categories in Microsoft Dynamics 365. 1033 - 24d9611c-50e4-4de5-a391-170959a9a9ae + a3d26d1c-141a-4844-a079-ef1107330404 true - Disabled Reason + Category Prefix 1033 + + 3807afaa-5f07-4b10-b406-ca1ae836afa7 + + true + Kategoripræfiks + 1030 + - 24d9611c-50e4-4de5-a391-170959a9a9ae + a3d26d1c-141a-4844-a079-ef1107330404 true - Disabled Reason + Category Prefix 1033 @@ -125220,32 +134375,32 @@ canmodifysearchsettings false - false + true false false true - false + true true - disabledreason + categoryprefix 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - DisabledReason + CategoryPrefix StringType - 5.0.0.0 + 8.1.0.0 false 0 Text Auto - 500 + 20 Text @@ -125253,13 +134408,13 @@ false 0 - 1000 + 40 - - 26f156ef-ba2d-4a15-a14e-ac23971afddd + + d63952e0-6a43-4c56-a405-8867403cf2db - Boolean + String false false false @@ -125268,42 +134423,56 @@ canmodifyadditionalsettings false - 257 - 1900-01-01T00:00:00 + 424 + 2025-11-06T00:19:21.5869952 - 6a6909c8-91d2-4496-8645-c7363fc24114 + 76938a53-2e64-4096-b0b2-6987748b4073 true - Indicates whether Social Care is disabled. + Client Features to be enabled as an XML BLOB. 1033 + + a3d98649-ccef-41a7-97fc-a5fe1430328d + + true + Klintfunktioner, der skal aktiveres som et XML-BLOB. + 1030 + - 6a6909c8-91d2-4496-8645-c7363fc24114 + 76938a53-2e64-4096-b0b2-6987748b4073 true - Indicates whether Social Care is disabled. + Client Features to be enabled as an XML BLOB. 1033 - cfb0a39c-7adf-46f2-8182-498f93a0792c + c9d7e721-30d0-4e8b-98ff-5af9fcdff39d true - Is Social Care disabled + Client Feature Set 1033 + + 9a91fd7a-6c16-4482-9590-801c74df778a + + true + Klientfunktionssæt + 1030 + - cfb0a39c-7adf-46f2-8182-498f93a0792c + c9d7e721-30d0-4e8b-98ff-5af9fcdff39d true - Is Social Care disabled + Client Feature Set 1033 @@ -125319,7 +134488,7 @@ false iscustomizable - true + false false false @@ -125357,135 +134526,39 @@ true true - disablesocialcare - 1900-01-01T00:00:00 + clientfeatureset + 2025-11-06T00:19:21.5869952 false canmodifyrequirementlevelsettings - SystemRequired + None - DisableSocialCare + ClientFeatureSet - BooleanType + StringType - 6.1.0.0 + 9.0.0.0 false 0 - false - - 09e749b7-a837-4812-90f0-69ac5c43b7e0 - - - - - 9164ff8e-2b20-43ce-a4f9-4c249d438491 - - true - Flag to disable Social Care. - 1033 - - - - 9164ff8e-2b20-43ce-a4f9-4c249d438491 - - true - Flag to disable Social Care. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_disablesocialcare - Boolean - 6.1.0.0 - - - - - - - - - - false - true - - - - c66f8f3a-45bd-4650-8ad3-7b4e11f865fd - - true - No - 1033 - - - - c66f8f3a-45bd-4650-8ad3-7b4e11f865fd - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - b1190770-9d99-45ef-a84e-edc1ce4ceb5d - - true - Yes - 1033 - - - - b1190770-9d99-45ef-a84e-edc1ce4ceb5d - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 1073741823 + + + Text + + false 0 + -1 - - 02366f93-339f-4ef5-a9f2-cd0448bd09f8 + + 5741e24c-2112-4182-93f6-4f6f9fb27465 - Boolean + String false false false @@ -125494,42 +134567,56 @@ canmodifyadditionalsettings false - 10002 - 2025-11-06T01:05:35.3769984 + 443 + 2025-11-06T00:19:21.8230016 - 0c4b8234-c53f-4167-a33f-698e4b489ca3 + 41799ee9-9c08-437a-a881-7e45f9b00ec7 true - Disable sharing system labels for the organization. + Policy configuration for CSP 1033 + + d82baea2-33f9-45df-8ad8-74b1aa5f4b32 + + true + Politikkonfiguration til CSP + 1030 + - 0c4b8234-c53f-4167-a33f-698e4b489ca3 + 41799ee9-9c08-437a-a881-7e45f9b00ec7 true - Disable sharing system labels for the organization. + Policy configuration for CSP 1033 - 7fa4b4bf-9957-477f-8a85-3795fe23e5fb + 7a25a232-d752-45dd-a3be-61924dd243fe true - Disable System Labels Cache Sharing. + Content Security Policy Configuration 1033 + + dc01f12a-e1e1-48f6-b555-6b4e10503ec9 + + true + Konfiguration af sikkerhed for indhold + 1030 + - 7fa4b4bf-9957-477f-8a85-3795fe23e5fb + 7a25a232-d752-45dd-a3be-61924dd243fe true - Disable System Labels Cache Sharing. + Content Security Policy Configuration 1033 @@ -125545,7 +134632,7 @@ false iscustomizable - false + true false false @@ -125583,167 +134670,243 @@ true true - disablesystemlabelscachesharing - 2025-11-06T01:05:35.3769984 + contentsecuritypolicyconfiguration + 2025-11-06T00:19:21.8230016 false canmodifyrequirementlevelsettings SystemRequired - DisableSystemLabelsCacheSharing + ContentSecurityPolicyConfiguration - BooleanType + StringType - 9.2.0.0 + 9.1.0.0 false 0 - - false - - 00b46aad-acba-f011-bbd3-7c1e52365f30 - - - - - 02b46aad-acba-f011-bbd3-7c1e52365f30 - - true - Enable or disable System Labels Cache Sharing. - 1033 - - - - 02b46aad-acba-f011-bbd3-7c1e52365f30 + + Text + Auto + 1073741823 + + + Text + + + false + 0 + -1 + + + 621c4443-929c-4ee6-be56-bce66d202db3 + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 10213 + 2025-11-06T06:14:32.8169984 + + + + + 236eeb6a-944c-4c22-bb66-9b7cbff15d8d - true - Enable or disable System Labels Cache Sharing. - 1033 - - - - - - 01b46aad-acba-f011-bbd3-7c1e52365f30 - - true - System Labels Cache Sharing. - 1033 - - - - 01b46aad-acba-f011-bbd3-7c1e52365f30 + true + Content Security Policy configuration for Canvas apps. + 1033 + + + 4c0b2072-c4d0-4c7f-a987-9b7c14bc3af9 - true - System Labels Cache Sharing. - 1033 - - - - true - - false - iscustomizable - false - - false - true - organization_disablesystemlabelscachesharing - Boolean - 9.2.0.0 - - + true + Konfiguration af sikkerhedspolitik for indhold for lærredapps. + 1030 + + + + 236eeb6a-944c-4c22-bb66-9b7cbff15d8d - - - - - - - false - true - - - - a124d6e8-7689-46e7-962b-1882ec3db9c2 - - true - No - 1033 - - - - a124d6e8-7689-46e7-962b-1882ec3db9c2 - - true - No - 1033 - - - - 0 - - - - + true + Content Security Policy configuration for Canvas apps. + 1033 + + + + + + 53fb05b6-5294-4249-a6b9-48ae2460e750 + + true + Content Security Policy Configuration for Canvas apps + 1033 + + + f9f3382f-fb48-443d-bc90-9571dc77d70e + + true + Konfiguration af sikkerhedspolitik for indhold for lærredapps + 1030 + + + + 53fb05b6-5294-4249-a6b9-48ae2460e750 - - - - - - - false - true - - - - bbfb02e6-662d-473c-9aa5-adddd45e6b0a - - true - Yes - 1033 - - - - bbfb02e6-662d-473c-9aa5-adddd45e6b0a - - true - Yes - 1033 - - - - 1 - - - + true + Content Security Policy Configuration for Canvas apps + 1033 + + + organization + + + + true + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + contentsecuritypolicyconfigurationforcanvas + 2025-11-06T06:14:32.8169984 + + false + canmodifyrequirementlevelsettings + SystemRequired + + ContentSecurityPolicyConfigurationForCanvas + + + StringType + + 9.1.0.0 + false + 0 + + Text + Auto + 4000 + + + Text + + false 0 + 8000 - - c0556050-22b0-410e-ad7a-1c8e57c5365b + + 43d80b01-5eb9-4398-b33c-dc2cc96f1bbc - disablesystemlabelscachesharing - Virtual + + Integer false false false false canmodifyadditionalsettings - true + false - 10003 - 2025-11-06T01:05:35.4099968 + 10215 + 2025-11-06T06:14:32.8630016 - - + + + 1e2a1a7b-2fb9-4884-b1b5-c1fd5b3d537b + + true + Content Security Policy Options. + 1033 + + + b51159ea-a06e-4461-998f-2aed86b5e412 + + true + Indstillinger til Sikkerhedspolitik for indhold. + 1030 + + + + 1e2a1a7b-2fb9-4884-b1b5-c1fd5b3d537b + + true + Content Security Policy Options. + 1033 + - - + + + 8c299db4-c2b7-4ccf-ae50-cc2feaf1bf8e + + true + Content Security Policy Options + 1033 + + + f190b507-d759-4b1a-aa99-e489afacc213 + + true + Indstillinger til Sikkerhedspolitik for indhold + 1030 + + + + 8c299db4-c2b7-4ccf-ae50-cc2feaf1bf8e + + true + Content Security Policy Options + 1033 + organization @@ -125757,7 +134920,7 @@ false iscustomizable - true + false false false @@ -125772,7 +134935,7 @@ false isrenameable - true + false false false @@ -125784,39 +134947,44 @@ false - true + false canmodifysearchsettings - false + true false - false - false + true + true true - false - false + true + true - disablesystemlabelscachesharingname - 2025-11-06T01:05:35.4099968 + contentsecuritypolicyoptions + 2026-03-01T21:16:12.4499968 - true + false canmodifyrequirementlevelsettings None - disablesystemlabelscachesharingName + ContentSecurityPolicyOptions - VirtualType + IntegerType 9.2.0.0 - true - + false + 0 + None + 1024 + 0 + + 0 - - f14c5172-4338-4e79-a684-eabbcc3c282c + + 36809a81-d39d-4c78-8d52-cac38bfcbc2a - Picklist + String false false false @@ -125825,42 +134993,56 @@ canmodifyadditionalsettings false - 200 - 1900-01-01T00:00:00 + 10214 + 2025-11-06T06:14:32.8499968 - dbc9a332-ef67-4cf2-b1b6-7d6fd0c99a68 + 5938296a-f440-4842-99a6-39032d0a2a03 true - Discount calculation method for the QOOI product. + Content Security Policy Report Uri. 1033 + + e04ccc71-96c7-4d39-9d04-3f6e51e693b6 + + true + URI til rapport om sikkerhed for indhold. + 1030 + - dbc9a332-ef67-4cf2-b1b6-7d6fd0c99a68 + 5938296a-f440-4842-99a6-39032d0a2a03 true - Discount calculation method for the QOOI product. + Content Security Policy Report Uri. 1033 - 0dbdd78b-35bf-494e-8882-7dc047fe44d6 + 3bed7ff4-03f5-420d-b383-67e6885ddfa4 true - Discount calculation method + Content Security Policy Report Uri 1033 + + e11eb47c-4538-4e11-89ec-57f65670c857 + + true + URI til rapport om sikkerhed for indhold + 1030 + - 0dbdd78b-35bf-494e-8882-7dc047fe44d6 + 3bed7ff4-03f5-420d-b383-67e6885ddfa4 true - Discount calculation method + Content Security Policy Report Uri 1033 @@ -125870,13 +135052,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -125891,7 +135073,7 @@ false isrenameable - true + false false false @@ -125905,164 +135087,48 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - discountcalculationmethod - 1900-01-01T00:00:00 + contentsecuritypolicyreporturi + 2025-11-06T06:14:32.8499968 false canmodifyrequirementlevelsettings - SystemRequired + None - DiscountCalculationMethod + ContentSecurityPolicyReportUri - PicklistType + StringType - 7.0.0.0 + 9.1.0.0 false 0 - - 0 - - 149d8cab-160b-4ce2-8147-de98c25ff93c - - - - - 370a0be9-2842-43e6-ab6f-b4921b96874c - - true - Discount calculation Method for the QOOI product - 1033 - - - - 370a0be9-2842-43e6-ab6f-b4921b96874c - - true - Discount calculation Method for the QOOI product - 1033 - - - - - - 7e953496-4945-44a8-9e34-edd0de867314 - - true - Discount calculation Method - 1033 - - - - 7e953496-4945-44a8-9e34-edd0de867314 - - true - Discount calculation Method - 1033 - - - - false - - false - iscustomizable - false - - false - true - organization_discountcalculationmethod - Picklist - 7.0.0.0 - - - - - - - - - - - false - true - - - - b15d5038-849c-4419-a6f2-17e46f84baa3 - - true - Line item - 1033 - - - - b15d5038-849c-4419-a6f2-17e46f84baa3 - - true - Line item - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 9e6f3dc9-7710-4626-bc57-aee3820f605f - - true - Per unit - 1033 - - - - 9e6f3dc9-7710-4626-bc57-aee3820f605f - - true - Per unit - 1033 - - - - 1 - - - - - - - + + Text + Auto + 4000 + + + Text + + + false 0 - - + 8000 - - 27a2c6ee-4572-4c16-8c63-46e0b50c4ac4 + + f8726762-ede0-48ff-9823-97373e8bb2e8 - Boolean + String false false false @@ -126071,42 +135137,56 @@ canmodifyadditionalsettings false - 367 + 23 1900-01-01T00:00:00 - bef78427-343d-409d-b18e-00369a5f6792 + 2752c2fa-2241-db11-898a-0007e9e17ebd true - Indicates whether or not navigation tour is displayed. + Prefix to use for all contracts throughout Microsoft Dynamics 365. 1033 + + 5d33355c-1e52-473d-a241-6eb90cdb0088 + + true + Præfiks til brug med alle kontrakter i Microsoft Dynamics 365. + 1030 + - bef78427-343d-409d-b18e-00369a5f6792 + 2752c2fa-2241-db11-898a-0007e9e17ebd true - Indicates whether or not navigation tour is displayed. + Prefix to use for all contracts throughout Microsoft Dynamics 365. 1033 - 583ee820-8f28-4eb2-b9f1-bda06c21d846 + 88ff37cd-dc4a-4539-9d39-5d7f8262a414 true - Display Navigation Tour + Contract Prefix 1033 + + d22a49a3-d977-47f5-8605-25048994018b + + true + Kontraktpræfiks + 1030 + - 583ee820-8f28-4eb2-b9f1-bda06c21d846 + 88ff37cd-dc4a-4539-9d39-5d7f8262a414 true - Display Navigation Tour + Contract Prefix 1033 @@ -126122,7 +135202,7 @@ false iscustomizable - false + true false false @@ -126160,135 +135240,39 @@ true true - displaynavigationtour + contractprefix 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - DisplayNavigationTour + ContractPrefix - BooleanType + StringType - 7.0.0.0 + 5.0.0.0 false 0 - true - - b10fe6b2-a942-4fea-ae63-5e5457d33934 - - - - - 9391556b-24e5-4801-86c6-33afd4a81ea2 - - true - Flag to display Navigation Tour. - 1033 - - - - 9391556b-24e5-4801-86c6-33afd4a81ea2 - - true - Flag to display Navigation Tour. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_displaynavigationtour - Boolean - 7.0.0.0 - - - - - - - - - - false - true - - - - a3914f71-dc51-47d7-b0a4-c0b69dc33f61 - - true - No - 1033 - - - - a3914f71-dc51-47d7-b0a4-c0b69dc33f61 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 4c27b2d6-c469-4855-bbb5-dbac964ea0c3 - - true - Yes - 1033 - - - - 4c27b2d6-c469-4855-bbb5-dbac964ea0c3 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 20 + + + Text + + false 0 + 40 - - dbd40a7d-f526-4f4d-88b5-8483c0b410fe + + 3b217b7a-06a2-4e83-810a-7b6b48c4b195 - Picklist + Integer false false false @@ -126297,42 +135281,56 @@ canmodifyadditionalsettings false - 236 - 1900-01-01T00:00:00 + 10137 + 2025-11-06T04:12:32.7229952 - 3744a50f-97e2-4202-bde0-664f639eca91 + 0c408322-d8a4-4d7e-b310-93e614ab54bc true - Select if you want to use the Email Router or server-side synchronization for email processing. + Refresh rate for copresence data in seconds. 1033 + + 1f87a484-3818-4f5f-aa84-737fdc8768e4 + + true + Opdateringshastighed for copresence-data i sekunder. + 1030 + - 3744a50f-97e2-4202-bde0-664f639eca91 + 0c408322-d8a4-4d7e-b310-93e614ab54bc true - Select if you want to use the Email Router or server-side synchronization for email processing. + Refresh rate for copresence data in seconds. 1033 - f17092d8-8d06-4f0e-a558-388f4f2f93be + 22ce9546-b0f4-4d81-9385-65950d285bf4 true - Email Connection Channel + CopresenceRefreshRate 1033 + + ce10669d-567d-4e1f-9dfa-385080ae354c + + true + CopresenceRefreshRate + 1030 + - f17092d8-8d06-4f0e-a558-388f4f2f93be + 22ce9546-b0f4-4d81-9385-65950d285bf4 true - Email Connection Channel + CopresenceRefreshRate 1033 @@ -126348,7 +135346,7 @@ false iscustomizable - true + false false false @@ -126386,138 +135384,30 @@ true true - emailconnectionchannel - 1900-01-01T00:00:00 + copresencerefreshrate + 2025-11-06T04:12:32.7229952 false canmodifyrequirementlevelsettings SystemRequired - EmailConnectionChannel + CopresenceRefreshRate - PicklistType + IntegerType - 6.0.0.0 + 9.2.0.0 false 0 - - 0 - - 14813fa2-10d5-4aa8-8e8f-33cd5a3bc201 - - - - - 189c076c-fa92-4fb2-bf2b-ef7441944cc2 - - true - Select whether you want to use the Email Router or server-side synchronization for email processing. - 1033 - - - - 189c076c-fa92-4fb2-bf2b-ef7441944cc2 - - true - Select whether you want to use the Email Router or server-side synchronization for email processing. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_emailconnectionchannel - Picklist - 6.0.0.0 - - - - - - - - - - - false - true - - - - 48a35e84-ede0-422b-bdeb-4ca7375c64fe - - true - Server-Side Synchronization - 1033 - - - - 48a35e84-ede0-422b-bdeb-4ca7375c64fe - - true - Server-Side Synchronization - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - be9dfa2d-8d27-4e2b-a2f8-416a807cd5cb - - true - Microsoft Dynamics 365 Email Router - 1033 - - - - be9dfa2d-8d27-4e2b-a2f8-416a807cd5cb - - true - Microsoft Dynamics 365 Email Router - 1033 - - - - 1 - - - - - - - + + None + 2147483647 + 30 + 0 - - - 0d2824a7-0179-4b4d-ad91-c86e33e67664 + 5870efc1-a636-47c3-9784-8f634e2e7a81 Boolean @@ -126527,44 +135417,58 @@ false canmodifyadditionalsettings - true + false - 227 + 327 1900-01-01T00:00:00 - aa77c507-edfb-4dae-952d-d68521bb3c64 + d4a14713-32fe-44e5-b74f-d612aabe53dc true - Flag to turn email correlation on or off. + Indicates whether the feature CortanaProactiveExperience Flow processes should be enabled for the organization. 1033 + + c63778fb-ffba-4a89-a1af-68d25fe31dcf + + true + Angiver, om funktionen CortanaProactiveExperience til arbejdsprocesser skal aktiveres for organisationen. + 1030 + - aa77c507-edfb-4dae-952d-d68521bb3c64 + d4a14713-32fe-44e5-b74f-d612aabe53dc true - Flag to turn email correlation on or off. + Indicates whether the feature CortanaProactiveExperience Flow processes should be enabled for the organization. 1033 - 14566b76-f600-41a6-b2ec-148a8eed3100 + aeb1e018-58f1-4c37-9d9b-711111de28b0 true - Use Email Correlation + Enable Cortana Proactive Experience Flow processes for this Organization 1033 + + c0410e71-688a-4de0-bcc2-f6f3c58b0e33 + + true + Aktivér arbejdsprocesser for proaktiv Contana-oplevelse for denne organisation + 1030 + - 14566b76-f600-41a6-b2ec-148a8eed3100 + aeb1e018-58f1-4c37-9d9b-711111de28b0 true - Use Email Correlation + Enable Cortana Proactive Experience Flow processes for this Organization 1033 @@ -126580,7 +135484,7 @@ false iscustomizable - false + true false false @@ -126618,41 +135522,48 @@ true true - emailcorrelationenabled + cortanaproactiveexperienceenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - EmailCorrelationEnabled + CortanaProactiveExperienceEnabled BooleanType - 6.0.0.0 + 8.0.0.0 false 0 - true + false - 28b02666-4b81-4cd0-80c7-ed3cccfa7e49 + afa89fb2-dcc9-455a-9cbc-711ec12752fd - e952dade-929d-4d46-b00d-dcd5cee3e929 + df5c6610-b118-4a3e-9332-3f1a3529d701 true - Enable Email Correlation + Information that specifies whether the cortana proactive Task Flow processes are enabled for the organization. 1033 + + 4ab245e7-571d-4169-b375-3c0929694428 + + true + Oplysninger, der angiver, om de proaktive Contana-opgaveprocesser er aktiveret for organisationen. + 1030 + - e952dade-929d-4d46-b00d-dcd5cee3e929 + df5c6610-b118-4a3e-9332-3f1a3529d701 true - Enable Email Correlation + Information that specifies whether the cortana proactive Task Flow processes are enabled for the organization. 1033 @@ -126665,13 +135576,13 @@ false iscustomizable - false + true false true - organization_emailcorrelationenabled + organization_cortanaproactiveexperienceenabled Boolean - 6.0.0.0 + 8.0.0.0 @@ -126686,15 +135597,22 @@ - ea689728-e6a3-4c9a-9650-7d59615b9d74 + cb544bab-89f7-445b-b0fb-4fe882bbd18c true No 1033 + + cf557c4c-c42d-4d5b-a4ac-3a21362b0b1d + + true + Nej + 1030 + - ea689728-e6a3-4c9a-9650-7d59615b9d74 + cb544bab-89f7-445b-b0fb-4fe882bbd18c true No @@ -126719,15 +135637,22 @@ - 88e844ef-75b1-4cc0-a087-c321130fb7bd + 2ecaa7f8-964e-4e8d-8d51-40f33b46ef48 true Yes 1033 + + 99a4bfa1-90ff-497e-872f-7153a50fdb3b + + true + Ja + 1030 + - 88e844ef-75b1-4cc0-a087-c321130fb7bd + 2ecaa7f8-964e-4e8d-8d51-40f33b46ef48 true Yes @@ -126742,11 +135667,11 @@ 0 - - 4efcaa69-8e02-dc11-aa9d-00123f558caf + + 3f206541-e304-46f6-bad0-fa3ef3b8702d - Integer + Lookup false false false @@ -126755,42 +135680,56 @@ canmodifyadditionalsettings false - 140 + 55 1900-01-01T00:00:00 - 765b34c2-4103-dc11-aa9d-00123f558caf + 7f9af6ca-2241-db11-898a-0007e9e17ebd true - Normal polling frequency used for sending email in Microsoft Office Outlook. + Unique identifier of the user who created the organization. 1033 + + 3b089080-0120-4e9b-9190-e6f5b4380885 + + true + Entydigt id for den bruger, der oprettede organisationen. + 1030 + - 765b34c2-4103-dc11-aa9d-00123f558caf + 7f9af6ca-2241-db11-898a-0007e9e17ebd true - Normal polling frequency used for sending email in Microsoft Office Outlook. + Unique identifier of the user who created the organization. 1033 - f93aca93-9667-4c3f-8d30-1600a93776e1 + 0ac50a40-ddfb-4dba-9f63-b90808327cd8 true - Email Send Polling Frequency + Created By 1033 + + c4f1af7b-b38a-409f-bc78-971f1dc7b9e9 + + true + Oprettet af + 1030 + - f93aca93-9667-4c3f-8d30-1600a93776e1 + 0ac50a40-ddfb-4dba-9f63-b90808327cd8 true - Email Send Polling Frequency + Created By 1033 @@ -126798,15 +135737,15 @@ - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -126837,40 +135776,39 @@ canmodifysearchsettings false - true + false false false true - true + false true - emailsendpollingperiod + createdby 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - EmailSendPollingPeriod + CreatedBy - IntegerType + LookupType 5.0.0.0 false - 0 + None - 2147483647 - -2147483648 - - 0 + + systemuser + - - d4365fec-71f8-4b56-9d16-de9e0c61de32 + + c77fb333-2d00-4ee5-8de6-e2990c93c8c9 - - Boolean + createdby + String false false false @@ -126879,50 +135817,22 @@ canmodifyadditionalsettings false - 10209 - 2025-11-06T06:14:32.7699968 + 100 + 1900-01-01T00:00:00 - - - bcf6791c-b667-4dfe-9972-8bbcd11fdbb4 - - true - Determines whether records merged through the merge dialog in UCI are merged asynchronously - 1033 - - - - bcf6791c-b667-4dfe-9972-8bbcd11fdbb4 - - true - Determines whether records merged through the merge dialog in UCI are merged asynchronously - 1033 - + + - - - 84c56113-f292-42ef-91d2-3b3e7d038875 - - true - Asynchronous merge enabled for UCI - 1033 - - - - 84c56113-f292-42ef-91d2-3b3e7d038875 - - true - Asynchronous merge enabled for UCI - 1033 - + + organization - true + false canmodifyauditsettings false @@ -126959,154 +135869,58 @@ false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true - true + false + false - enableasyncmergeapiforuci - 2025-11-06T06:14:32.7699968 + createdbyname + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - EnableAsyncMergeAPIForUCI + CreatedByName - BooleanType + StringType - 9.1.0.0 - false + 5.0.0.0 + true 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + Text + Auto + 100 + + + Text + + + false 0 + 320 - - 00a18a1d-6ddb-4538-81e7-a65f82a8d2ed + + efa6801d-4bf2-4388-9022-f2e0f06fb9fd - enableasyncmergeapiforuci - Virtual + createdby + String false false false - true + false canmodifyadditionalsettings - true + false - 10210 - 2025-11-06T06:14:32.7869952 + 153 + 1900-01-01T00:00:00 @@ -127120,15 +135934,15 @@ - true + false canmodifyauditsettings false false - true + false iscustomizable - true + false false false @@ -127137,13 +135951,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -127155,7 +135969,7 @@ false - true + false canmodifysearchsettings false @@ -127166,72 +135980,97 @@ false false - enableasyncmergeapiforuciname - 2025-11-06T06:14:32.7869952 + createdbyyominame + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - enableasyncmergeapiforuciName + CreatedByYomiName - VirtualType + StringType - 9.1.0.0 + 5.0.0.0 true - - + 0 + + Text + Auto + 100 + createdbyname + + Text + + + false + 0 + 320 - - 42ecbd73-20d6-4bbb-8205-749f899b7971 + + 70be68bd-6d9e-4e1b-b96d-3684ad3a1286 - Boolean + DateTime false false false false canmodifyadditionalsettings - true + false - 222 + 32 1900-01-01T00:00:00 - 4ce19600-f012-4fef-aabc-78c02d83f590 + ac91aa12-2341-db11-898a-0007e9e17ebd true - Enable Integration with Bing Maps + Date and time when the organization was created. 1033 + + 6761df26-48d7-419d-8316-3246df56ec98 + + true + Dato og klokkeslæt for oprettelse af organisationen. + 1030 + - 4ce19600-f012-4fef-aabc-78c02d83f590 + ac91aa12-2341-db11-898a-0007e9e17ebd true - Enable Integration with Bing Maps + Date and time when the organization was created. 1033 - d210c166-15d9-44c9-8588-7e014359d76f + 7404814f-6a72-41b7-a163-8f1f3f2a8c51 true - Enable Integration with Bing Maps + Created On 1033 + + c81cfad0-48ea-43d7-8362-6ff77e2c2e0f + + true + Oprettet + 1030 + - d210c166-15d9-44c9-8588-7e014359d76f + 7404814f-6a72-41b7-a163-8f1f3f2a8c51 true - Enable Integration with Bing Maps + Created On 1033 @@ -127239,9 +136078,9 @@ - true + false canmodifyauditsettings - true + false false @@ -127278,142 +136117,47 @@ canmodifysearchsettings false - true + false false false true - true + false true - enablebingmapsintegration + createdon 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - EnableBingMapsIntegration + CreatedOn - BooleanType + DateTimeType 5.0.0.0 false 0 - true - - a37905c5-bd02-463c-93cc-fe99fa60cbd2 - - - - - 87fa9ce8-706c-4641-a666-e40aa95bcc73 - - true - Enable Integration with Bing Maps. - 1033 - - - - 87fa9ce8-706c-4641-a666-e40aa95bcc73 - - true - Enable Integration with Bing Maps. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_enablebingmapsintegration - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 00ffa620-ed06-4a0d-8483-14ea5b338f68 - - true - No - 1033 - - - - 00ffa620-ed06-4a0d-8483-14ea5b338f68 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 4d4d6dd9-2d39-43bc-868a-6700fde4c38a - - true - Yes - 1033 - - - - 4d4d6dd9-2d39-43bc-868a-6700fde4c38a - - true - Yes - 1033 - - - - 1 - - - + DateAndTime + Inactive 0 + + false + canmodifybehavior + false + + + UserLocal + - - 7fdb1896-e8e2-4725-ab2a-15eb059c22e9 + + 3f9e11b9-56a7-46e6-82cd-4e476c7422d7 - Boolean + Lookup false false false @@ -127422,42 +136166,56 @@ canmodifyadditionalsettings false - 10216 - 2025-11-06T06:14:32.88 + 172 + 1900-01-01T00:00:00 - 06a8ffb5-1b25-49b5-bde4-f48e6692b146 + aca78121-9ff8-49f6-98d5-c645b16dfe4b true - Note: By enabling this feature, you will also enable the automatic creation of enviornment variables when adding data sources for your apps. + Unique identifier of the delegate user who created the organization. 1033 + + add95299-6a70-4ebc-b97e-ca8401a2879d + + true + Entydigt id for den stedfortræderbruger, der oprettede organisationen. + 1030 + - 06a8ffb5-1b25-49b5-bde4-f48e6692b146 + aca78121-9ff8-49f6-98d5-c645b16dfe4b true - Note: By enabling this feature, you will also enable the automatic creation of enviornment variables when adding data sources for your apps. + Unique identifier of the delegate user who created the organization. 1033 - 1eae622d-cfcc-44a5-b0bd-e619e278f03e + f8d85a4a-977a-4387-9445-1ab8c91be926 true - Enable the creation of Canvas apps in Dataverse / Solution by default + Created By (Delegate) 1033 + + c0bcb5b5-35e1-4e85-b237-c8e1426fa3b1 + + true + Oprettet af (stedfortræder) + 1030 + - 1eae622d-cfcc-44a5-b0bd-e619e278f03e + f8d85a4a-977a-4387-9445-1ab8c91be926 true - Enable the creation of Canvas apps in Dataverse / Solution by default + Created By (Delegate) 1033 @@ -127465,7 +136223,7 @@ - true + false canmodifyauditsettings false @@ -127473,7 +136231,7 @@ false iscustomizable - false + true false false @@ -127502,204 +136260,6 @@ false canmodifysearchsettings - true - - true - true - true - true - true - true - - enablecanvasappsinsolutionsbydefault - 2025-11-06T06:14:32.88 - - false - canmodifyrequirementlevelsettings - SystemRequired - - EnableCanvasAppsInSolutionsByDefault - - - BooleanType - - 9.1.0.0 - false - 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - ea579261-16d6-4efa-8fed-48d0f1b3e4d4 - - enablecanvasappsinsolutionsbydefault - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10217 - 2025-11-06T06:14:32.8969984 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings false false @@ -127707,90 +136267,66 @@ false true false - false + true - enablecanvasappsinsolutionsbydefaultname - 2025-11-06T06:14:32.8969984 + createdonbehalfby + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - enablecanvasappsinsolutionsbydefaultName + CreatedOnBehalfBy - VirtualType + LookupType - 9.1.0.0 - true + 5.0.0.0 + false - + + None + + systemuser + - - 66b17c71-6ed3-4d1f-9c85-ea481d758075 + + 60fb4f3b-7369-48c7-9311-d12f45cf3ad8 - - Boolean + createdonbehalfby + String false false false false canmodifyadditionalsettings - true + false - 10131 - 2025-11-06T03:38:23.9900032 + 174 + 1900-01-01T00:00:00 - - - 3a7bb043-c96e-4150-9123-1fd035d4dbd0 - - true - Enable this feature to allow cross-geo boundary sharing of aggregated analytics data if your preferred data location for Viva Insights is different than the location of your environment - 1033 - - - - 3a7bb043-c96e-4150-9123-1fd035d4dbd0 - - true - Enable this feature to allow cross-geo boundary sharing of aggregated analytics data if your preferred data location for Viva Insights is different than the location of your environment - 1033 - + + - - - 8c4c9d43-fd25-4ed2-8faa-b95f98dfe390 - - true - Allow cross-geo boundary sharing of aggregated analytics data if your preferred data location for Viva Insights is different than the location of your environment - 1033 - - - - 8c4c9d43-fd25-4ed2-8faa-b95f98dfe390 - - true - Allow cross-geo boundary sharing of aggregated analytics data if your preferred data location for Viva Insights is different than the location of your environment - 1033 - + + organization - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -127821,152 +136357,56 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - enablecopilotstudiocrossgeosharedatawithvivainsights - 2025-12-14T02:08:42.5229952 + createdonbehalfbyname + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - EnableCopilotStudioCrossGeoShareDataWithVivaInsights + CreatedOnBehalfByName - BooleanType + StringType - 1.0.0.150 - false + 5.0.0.0 + true 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + Text + Auto + 100 + + + Text + + + false 0 + 320 - - 72d4944e-6d2a-4969-bdb0-d104db4deaa3 + + ccbfd736-4540-44d1-bc57-e315131b6063 - enablecopilotstudiocrossgeosharedatawithvivainsights - Virtual + createdonbehalfby + String false false false - true + false canmodifyadditionalsettings - true + false - 10132 - 2025-11-06T03:38:24.0029952 + 175 + 1900-01-01T00:00:00 @@ -127980,15 +136420,15 @@ - true + false canmodifyauditsettings false false - true + false iscustomizable - true + false false false @@ -127997,13 +136437,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -128015,7 +136455,7 @@ false - true + false canmodifysearchsettings false @@ -128026,25 +136466,36 @@ false false - enablecopilotstudiocrossgeosharedatawithvivainsightsname - 2025-11-06T03:38:24.0029952 + createdonbehalfbyyominame + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - enablecopilotstudiocrossgeosharedatawithvivainsightsName + CreatedOnBehalfByYomiName - VirtualType + StringType - 1.0.0.150 + 5.0.0.0 true - - + 0 + + Text + Auto + 100 + createdonbehalfbyname + + Text + + + false + 0 + 320 - 58ec8d35-b70e-46db-af15-2ce97ec7358f + e843a583-1269-4bb3-a196-e07e82fa9fb8 Boolean @@ -128056,42 +136507,56 @@ canmodifyadditionalsettings true - 10127 - 2025-11-06T03:38:23.9430016 + 281 + 1900-01-01T00:00:00 - 2bccd1b7-4213-4047-ab1d-f1633b1c0b52 + 60f1e242-fd74-49a1-8957-7f39dea75ed5 true - (Deprecated) Enable this feature to allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights for an individual environment + Enable Initial state of newly created products to be Active instead of Draft 1033 + + c8f6d4e7-bab9-4c30-8e14-eaad194b20b1 + + true + Aktivér, at den indledende tilstand for nyoprettede produkter skal være Aktiv i stedet for Kladde + 1030 + - 2bccd1b7-4213-4047-ab1d-f1633b1c0b52 + 60f1e242-fd74-49a1-8957-7f39dea75ed5 true - (Deprecated) Enable this feature to allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights for an individual environment + Enable Initial state of newly created products to be Active instead of Draft 1033 - 9cfea48b-81c8-4a93-bacf-b8b22a1a1dbb + 0e8c1e0f-3c11-473e-bc1f-8578817e5d84 true - (Deprecated) Allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights + Enable Active Initial Product State 1033 + + e7b7e96a-66bd-40a7-8892-8e2dbdf724fe + + true + Aktivér indledende produkttilstand som aktiv + 1030 + - 9cfea48b-81c8-4a93-bacf-b8b22a1a1dbb + 0e8c1e0f-3c11-473e-bc1f-8578817e5d84 true - (Deprecated) Allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights + Enable Active Initial Product State 1033 @@ -128107,7 +136572,7 @@ false iscustomizable - true + false false false @@ -128145,41 +136610,48 @@ true true - enablecopilotstudiosharedatawithvi - 2025-12-14T02:08:41.04 + createproductswithoutparentinactivestate + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - EnableCopilotStudioShareDataWithVI + CreateProductsWithoutParentInActiveState BooleanType - 1.0.0.150 + 7.0.0.0 false 0 - + false - 315e90f0-678b-4e4d-97f1-886050c3cb46 + be629637-9c5a-4bf5-b24f-fe13959ff59f - 05aedb96-402f-4dff-86e7-54b577874b2f + 3bf9ab45-416c-408b-b0ef-21845aad1e3c true - Information that specifies whether a feature is enabled for the organization. + Information that specifies whether orphan products are initially created in active state. 1033 + + 3b42ac4a-f1e2-4586-a8c9-823790e61be4 + + true + Oplysninger, der angiver, om uafhængige produkter i første omgang oprettes i aktiv tilstand. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 3bf9ab45-416c-408b-b0ef-21845aad1e3c true - Information that specifies whether a feature is enabled for the organization. + Information that specifies whether orphan products are initially created in active state. 1033 @@ -128194,11 +136666,11 @@ iscustomizable false - true + false true - organization_featureenabled + organization_createproductswithoutparentinactivestate Boolean - 8.1.0.0 + 7.0.0.0 @@ -128213,15 +136685,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + b823c8e4-2b8b-47dc-bdf5-f3c54c5fe1da true No 1033 + + 052d6b33-5c0a-4439-a244-a7133af1e826 + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + b823c8e4-2b8b-47dc-bdf5-f3c54c5fe1da true No @@ -128246,15 +136725,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + bd6589d5-3afb-4228-81d1-ebda122a0feb true Yes 1033 + + 65aed4bc-a70f-41df-a1ff-ce36c0640a0c + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + bd6589d5-3afb-4228-81d1-ebda122a0feb true Yes @@ -128266,32 +136752,74 @@ - + 0 - - 395186d7-e42e-464c-83a5-d58a8fb8cc9e + + 3ce9bb52-7c2b-48e8-ba81-67511662f29a - enablecopilotstudiosharedatawithvi - Virtual + + Integer false false false - true + false canmodifyadditionalsettings true - 10128 - 2025-11-06T03:38:23.9570048 + 10094 + 2025-11-06T02:47:58.1670016 - - + + + 18fa7ecf-5bba-4b32-929e-ab2c166115f9 + + true + Default time to live in minutes for new records in the Flow Logs entity for CUA logs. + 1033 + + + e8a75b28-763f-4b46-bac3-16b506026a4f + + true + Default time to live in minutes for new records in the Flow Logs entity for CUA logs. + 1030 + + + + 18fa7ecf-5bba-4b32-929e-ab2c166115f9 + + true + Default time to live in minutes for new records in the Flow Logs entity for CUA logs. + 1033 + - - + + + e38fb0e8-24cb-4db2-8393-c4bbd383b787 + + true + The TTL for records in the Flow Logs Entity for CUA logs. + 1033 + + + 3b2cdf94-2469-4346-9d7f-69afb916b119 + + true + The TTL for records in the Flow Logs Entity for CUA logs. + 1030 + + + + e38fb0e8-24cb-4db2-8393-c4bbd383b787 + + true + The TTL for records in the Flow Logs Entity for CUA logs. + 1033 + organization @@ -128299,11 +136827,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -128314,11 +136842,11 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable true @@ -128336,35 +136864,40 @@ canmodifysearchsettings false - false + true false false true - false - false + true + true - enablecopilotstudiosharedatawithviname - 2025-11-06T03:38:23.9570048 + cuaflowlogsttlinminutes + 2026-05-11T16:05:41.9330048 true canmodifyrequirementlevelsettings - None + SystemRequired - enablecopilotstudiosharedatawithviName + CuaFlowLogsTtlInMinutes - VirtualType + IntegerType - 1.0.0.150 - true - - + 1.9.21.0 + false + 0 + + None + 33554432 + -1 + + 0 - - 00e5fb17-7eb7-49db-a171-88571a793734 + + 48cb30c2-aa01-4ecb-b67e-109199665d52 - Boolean + Picklist false false false @@ -128373,42 +136906,56 @@ canmodifyadditionalsettings true - 10129 - 2025-11-06T03:38:23.9570048 + 10105 + 2025-11-06T02:47:58.3670016 - ca94ac05-f4d6-4139-b963-e33e39fb93cc + c04b0590-0f9d-4b9b-8b8f-c3d9acb50fa9 true - Enable this feature to allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights for an individual environment + Set the level of detail the computer use logs allow. 1033 + + 154f235c-aed5-4326-982d-764804d3eb4c + + true + Set the level of detail the computer use logs allow. + 1030 + - ca94ac05-f4d6-4139-b963-e33e39fb93cc + c04b0590-0f9d-4b9b-8b8f-c3d9acb50fa9 true - Enable this feature to allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights for an individual environment + Set the level of detail the computer use logs allow. 1033 - a253ceae-73ff-462f-a8e8-0cd7cd72cbec + 459b5915-fac4-46ab-af54-c0a9da402cb5 true - Allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights + Computer use logs verbosity 1033 + + 7ef175a0-d019-4758-8fd6-a4fe1b9521a0 + + true + Computer use logs verbosity + 1030 + - a253ceae-73ff-462f-a8e8-0cd7cd72cbec + 459b5915-fac4-46ab-af54-c0a9da402cb5 true - Allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights + Computer use logs verbosity 1033 @@ -128439,7 +136986,7 @@ false isrenameable - false + true false false @@ -128451,7 +136998,7 @@ false - false + true canmodifysearchsettings false @@ -128462,134 +137009,264 @@ true true - enablecopilotstudiosharedatawithvivainsights - 2025-12-14T02:08:41.3069952 + cuaflowlogsverbosity + 2026-05-11T16:05:42.4499968 - false + true canmodifyrequirementlevelsettings SystemRequired - EnableCopilotStudioShareDataWithVivaInsights + CuaFlowLogsVerbosity - BooleanType + PicklistType - 1.0.0.150 + 1.9.27.0 false 0 - - true + + 0 - 315e90f0-678b-4e4d-97f1-886050c3cb46 + dda1c0fd-baba-f011-bbd3-7c1e52365f30 - 05aedb96-402f-4dff-86e7-54b577874b2f + dfa1c0fd-baba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + Set the level of detail the computer use logs allow. 1033 + + c053fb87-a904-4be1-94fe-d6422cd5731b + + true + Set the level of detail the computer use logs allow. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + dfa1c0fd-baba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + Set the level of detail the computer use logs allow. 1033 - - + + + dea1c0fd-baba-f011-bbd3-7c1e52365f30 + + true + Computer use logs verbosity + 1033 + + + 5be0a1f3-95e6-4317-83fa-8fb983c13b83 + + true + Computer use logs verbosity + 1030 + + + + dea1c0fd-baba-f011-bbd3-7c1e52365f30 + + true + Computer use logs verbosity + 1033 + - - false + + true false iscustomizable false - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + organization_cuaflowlogsverbosity + Picklist + 1.9.27.0 + + + + + + + + + ac25f1b0-a63c-4bf6-a347-eb58d5e2d6e7 + + true + Complete Computer use logs for full audit and traceability. Takes more storage space. + 1033 + + + + ac25f1b0-a63c-4bf6-a347-eb58d5e2d6e7 - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + Complete Computer use logs for full audit and traceability. Takes more storage space. + 1033 + + + + false + true + + + + da416554-2ff6-425f-a683-a61ed5cd1dab + + true + All data + 1033 + + + 79b1e7ad-7962-4c7f-a7c6-16a6faf33301 + + true + All data + 1030 + + + + da416554-2ff6-425f-a683-a61ed5cd1dab - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + All data + 1033 + + + + 0 + + + + + + + + + + 6227ae15-796f-42d2-a14c-e20750a2259d + + true + Essential Computer use logs without screenshots, minimizing storage. + 1033 + + + + 6227ae15-796f-42d2-a14c-e20750a2259d + + true + Essential Computer use logs without screenshots, minimizing storage. + 1033 + + + + false + true + + + + b99a127c-114a-4474-8e68-f0df8a5a4239 + + true + Data without screenshots + 1033 + + + 43f3efbc-e398-4880-94a3-f55f61a92cd8 + + true + Data without screenshots + 1030 + + + + b99a127c-114a-4474-8e68-f0df8a5a4239 + + true + Data without screenshots + 1033 + + + + 1 + + + + + + + + + + 473ad06f-0cc5-4b15-bfea-8b3e93c04a36 + + true + Captures only basic system status and error data, minimizing collection and storage. + 1033 + + + + 473ad06f-0cc5-4b15-bfea-8b3e93c04a36 + + true + Captures only basic system status and error data, minimizing collection and storage. + 1033 + + + + false + true + + + + 24b3d941-398a-4147-83cb-2d62300e64e7 + + true + Minimal + 1033 + + + 2703ef3f-9011-4705-8072-2ce4c567e037 + + true + Minimal + 1030 + + + + 24b3d941-398a-4147-83cb-2d62300e64e7 + + true + Minimal + 1033 + + + + 2 + + + + + 0 + + - 957f8345-4915-4268-8142-79b0c89527e4 + ddf159e8-2e36-45ce-bcd5-f04b5a7d151a - enablecopilotstudiosharedatawithvivainsights + cuaflowlogsverbosity Virtual false false @@ -128599,8 +137276,8 @@ canmodifyadditionalsettings true - 10130 - 2025-11-06T03:38:23.9730048 + 10106 + 2025-11-06T02:47:58.3670016 @@ -128660,28 +137337,28 @@ false false - enablecopilotstudiosharedatawithvivainsightsname - 2025-11-06T03:38:23.9730048 + cuaflowlogsverbosityname + 2025-11-06T02:47:58.3670016 true canmodifyrequirementlevelsettings None - enablecopilotstudiosharedatawithvivainsightsName + cuaflowlogsverbosityName VirtualType - 1.0.0.150 + 1.9.27.0 true - - d7bd5d37-b67d-454f-9400-3fb5402ed4b2 + + 2ad7ebb5-77c8-46b7-bd6c-0a22fe5be793 - Boolean + Integer false false false @@ -128690,42 +137367,56 @@ canmodifyadditionalsettings false - 10239 - 2025-11-06T08:23:22.7030016 + 138 + 1900-01-01T00:00:00 - 642d8e4a-304f-409f-a8ff-bf83352c6f66 + 15224289-c149-47c2-b79c-acbe7ba359da true - Enables the Environment Settings App + Number of decimal places that can be used for currency. 1033 + + 4980f3d7-4223-4023-9234-34ef952fc564 + + true + Antallet af decimaler, der kan bruges til valuta. + 1030 + - 642d8e4a-304f-409f-a8ff-bf83352c6f66 + 15224289-c149-47c2-b79c-acbe7ba359da true - Enables the Environment Settings App + Number of decimal places that can be used for currency. 1033 - 0ecf66de-9470-4444-87f0-0f9f80643bd2 + c0a1423c-bc1a-44dd-b7a7-a9dec73c8d83 true - Enable Environment Settings App + Currency Decimal Precision 1033 + + 2bdf5fa1-0594-4b7a-b827-23561c444113 + + true + Decimalnøjagtighed for valuta + 1030 + - 0ecf66de-9470-4444-87f0-0f9f80643bd2 + c0a1423c-bc1a-44dd-b7a7-a9dec73c8d83 true - Enable Environment Settings App + Currency Decimal Precision 1033 @@ -128735,13 +137426,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -128770,279 +137461,100 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - enableenvironmentsettingsapp - 2025-11-06T08:23:22.7030016 + currencydecimalprecision + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - EnableEnvironmentSettingsApp + CurrencyDecimalPrecision - BooleanType + IntegerType - 9.1.0.0 + 5.0.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + None + 10 + 0 + 0 - - 14c530b8-6294-4b59-959b-441980f5ca34 - - enableenvironmentsettingsapp - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10240 - 2025-11-06T08:23:22.72 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - enableenvironmentsettingsappname - 2025-11-06T08:23:22.72 - - true - canmodifyrequirementlevelsettings - None - - enableenvironmentsettingsappName - - - VirtualType - - 9.1.0.0 - true - - - - - 99854b80-9acc-4335-9bf4-925b76778997 + + f4449d9a-fb34-42d7-bffc-e8a7fcc5a1d3 - Boolean + Picklist false false false false canmodifyadditionalsettings - true + false - 10046 - 2025-11-06T02:47:57.4 + 113 + 1900-01-01T00:00:00 - 5dd2e11f-71c7-418b-a420-2fc8b9e21f0e + 1b144a86-2f80-49c8-9aa0-71c3faceae43 true - Indicates whether the creation of flows is within a solution by default for this organization. + Indicates whether to display money fields with currency code or currency symbol. 1033 + + 065d80bf-813e-470e-b17b-b39a1e5fe9be + + true + Angiver, om der skal vises pengefelter med valutakode eller -symbol. + 1030 + - 5dd2e11f-71c7-418b-a420-2fc8b9e21f0e + 1b144a86-2f80-49c8-9aa0-71c3faceae43 true - Indicates whether the creation of flows is within a solution by default for this organization. + Indicates whether to display money fields with currency code or currency symbol. 1033 - a1372871-75b9-4213-b64f-bc930536085d + 5f1267a6-d0c1-4c2c-b4bd-6b5338fad1df true - Enable the creation of flows within a solution by default. + Display Currencies Using 1033 + + 9eb50c03-f29b-4dcf-a30c-ba75bdab3a1b + + true + Vis valutaer med + 1030 + - a1372871-75b9-4213-b64f-bc930536085d + 5f1267a6-d0c1-4c2c-b4bd-6b5338fad1df true - Enable the creation of flows within a solution by default. + Display Currencies Using 1033 @@ -129073,7 +137585,7 @@ false isrenameable - true + false false false @@ -129085,7 +137597,7 @@ false - true + false canmodifysearchsettings false @@ -129096,179 +137608,241 @@ true true - enableflowsinsolutionbydefault - 2025-11-06T02:47:57.4 + currencydisplayoption + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - EnableFlowsInSolutionByDefault + CurrencyDisplayOption - BooleanType + PicklistType - 1.3.9.0 + 5.0.0.0 false 0 - false + 0 - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 86c75443-7526-4eec-aa01-d7bdc6574831 - 05aedb96-402f-4dff-86e7-54b577874b2f + e4758518-f217-4f3a-bfcd-1fca4a4d14ec true - Information that specifies whether a feature is enabled for the organization. + Indication of whether to display money fields with currency code or currency symbol. 1033 + + 0468fd8d-7ca9-421d-a4a3-560895ebbe23 + + true + Angivelse af om der skal vises pengefelter med valutakode eller -symbol. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + e4758518-f217-4f3a-bfcd-1fca4a4d14ec true - Information that specifies whether a feature is enabled for the organization. + Indication of whether to display money fields with currency code or currency symbol. 1033 - - + + + 613b52d1-57a8-4eb1-a6d3-e72cf386cb66 + + true + Display currencies using + 1033 + + + 818c20e5-d245-4ec2-9181-ed0998ba4df2 + + true + Vis valutaer med + 1030 + + + + 613b52d1-57a8-4eb1-a6d3-e72cf386cb66 + + true + Display currencies using + 1033 + false false iscustomizable - false + true - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + organization_currencydisplayoption + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + d13627e8-115e-4b54-b596-197488b00853 + + true + Currency symbol + 1033 + + + eb0ddfa5-2b6a-4093-8d43-71464fa4e800 + + true + Valutasymbol + 1030 + + + + d13627e8-115e-4b54-b596-197488b00853 - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + Currency symbol + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + bb37c1fa-d32b-479c-bc36-36ac0241fae7 + + true + Currency code + 1033 + + + 1dc7b407-9e0c-42ee-8253-d76e5bcaadaf + + true + Valutakode + 1030 + + + + bb37c1fa-d32b-479c-bc36-36ac0241fae7 - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + Currency code + 1033 + + + + 1 + + + + - + + 0 + + - - 72a67902-9fad-45e7-887a-45d37be32a13 + + f3818063-d92b-45e0-8c7a-278390de9b9b - Boolean + Picklist false false false false canmodifyadditionalsettings - true + false - 10048 - 2025-11-06T02:47:57.4300032 + 60 + 1900-01-01T00:00:00 - 835227f6-ff9c-4c8f-8c96-d555f30273b8 + 349aba00-2341-db11-898a-0007e9e17ebd true - Organizations with this attribute set to true will be granted a grace period and excluded from the initial world wide enablement of 'creation of flows within a solution by default' functionality. Once the grace period expires, the functionality will be enabled in your organization. + Information about how currency symbols are placed throughout Microsoft Dynamics CRM. 1033 + + f0c0628b-26f0-411b-8590-143bdd78f756 + + true + Oplysninger om, hvordan valutasymboler placeres i Microsoft Dynamics CRM. + 1030 + - 835227f6-ff9c-4c8f-8c96-d555f30273b8 + 349aba00-2341-db11-898a-0007e9e17ebd true - Organizations with this attribute set to true will be granted a grace period and excluded from the initial world wide enablement of 'creation of flows within a solution by default' functionality. Once the grace period expires, the functionality will be enabled in your organization. + Information about how currency symbols are placed throughout Microsoft Dynamics CRM. 1033 - a3d3b8c9-398e-402b-9fbe-f5355428292e + 6f959722-c895-4edc-b8ff-268491b04433 true - Indicates whether the organization is opted into a grace period for auto-enablement of 'creation of flows within a solution by default' functionality. + Currency Format Code 1033 + + 1f880196-65a1-4db6-8db0-10d857c25dfe + + true + Formatkode for valuta + 1030 + - a3d3b8c9-398e-402b-9fbe-f5355428292e + 6f959722-c895-4edc-b8ff-268491b04433 true - Indicates whether the organization is opted into a grace period for auto-enablement of 'creation of flows within a solution by default' functionality. + Currency Format Code 1033 @@ -129299,7 +137873,7 @@ false isrenameable - true + false false false @@ -129311,7 +137885,7 @@ false - true + false canmodifysearchsettings false @@ -129322,41 +137896,48 @@ true true - enableflowsinsolutionbydefaultgraceperiod - 2025-11-06T02:47:57.4300032 + currencyformatcode + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - EnableFlowsInSolutionByDefaultGracePeriod + CurrencyFormatCode - BooleanType + PicklistType - 1.5.9.0 + 5.0.0.0 false 0 - false + 0 - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 51f8df74-d016-46c9-952d-0954770a0f69 - 05aedb96-402f-4dff-86e7-54b577874b2f + 62add094-cf16-43f2-b7cf-8b6a10db7d37 true - Information that specifies whether a feature is enabled for the organization. + Information about how currency symbols are placed throughout Microsoft CRM. 1033 + + 08126062-5595-4e99-8e6e-6aac50612c2a + + true + Angiver, hvordan valutasymboler placeres i Microsoft CRM. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 62add094-cf16-43f2-b7cf-8b6a10db7d37 true - Information that specifies whether a feature is enabled for the organization. + Information about how currency symbols are placed throughout Microsoft CRM. 1033 @@ -129369,98 +137950,198 @@ false iscustomizable - false + true - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + organization_currencyformatcode + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + 59b6cfa4-c852-417c-a902-5eff309a90ea + + true + $123 + 1033 + + + 0210195c-51c3-42f0-bb8c-eacf8547e125 + + true + kr.123 + 1030 + + + + 59b6cfa4-c852-417c-a902-5eff309a90ea - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + $123 + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 6b2f2383-961e-4ec3-8375-2576f8777922 + + true + 123$ + 1033 + + + 1af50c09-8d88-4e4d-bb54-ccc1202373f2 + + true + 123kr. + 1030 + + + + 6b2f2383-961e-4ec3-8375-2576f8777922 - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + 123$ + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + 995f1e29-340a-41f3-8fc1-ddd51469d505 + + true + $ 123 + 1033 + + + f8b1d0ac-0312-4e92-806e-23bc7df4be6a + + true + kr. 123 + 1030 + + + + 995f1e29-340a-41f3-8fc1-ddd51469d505 + + true + $ 123 + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + f361a0fb-f9c5-4fbd-89d3-4857c2dd0672 + + true + 123 $ + 1033 + + + 250cfa54-a99a-4b45-bfea-a67a961622b9 + + true + 123 kr. + 1030 + + + + f361a0fb-f9c5-4fbd-89d3-4857c2dd0672 + + true + 123 $ + 1033 + + + + 3 + + + + - + + 0 + + - 0e13553d-bdd2-40cc-bb05-c6e33a147644 + aa310a98-4bbc-4619-b5f7-61920fbe4958 - enableflowsinsolutionbydefaultgraceperiod + currencyformatcode Virtual false false false - true + false canmodifyadditionalsettings - true + false - 10049 - 2025-11-06T02:47:57.4470016 + 96 + 1900-01-01T00:00:00 @@ -129474,15 +138155,15 @@ - true + false canmodifyauditsettings false false - true + false iscustomizable - true + false false false @@ -129491,13 +138172,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -129509,7 +138190,7 @@ false - true + false canmodifysearchsettings false @@ -129520,46 +138201,88 @@ false false - enableflowsinsolutionbydefaultgraceperiodname - 2025-11-06T02:47:57.4470016 + currencyformatcodename + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - enableflowsinsolutionbydefaultgraceperiodName + CurrencyFormatCodeName VirtualType - 1.5.9.0 + 5.0.0.0 true - + - - c091ddc1-8ed3-449e-8169-986f80f02341 + + f089ad38-18e9-48e5-9eb6-1e17a65f136c - enableflowsinsolutionbydefault - Virtual + + String false false false - true + false canmodifyadditionalsettings - true + false - 10047 - 2025-11-06T02:47:57.4169984 + 11 + 1900-01-01T00:00:00 - - + + + 8fe9af0c-2341-db11-898a-0007e9e17ebd + + true + Symbol used for currency throughout Microsoft Dynamics 365. + 1033 + + + 2c81ada0-e688-4083-b86b-a70d24a68017 + + true + Det valutasymbol, der benyttes i Microsoft Dynamics 365. + 1030 + + + + 8fe9af0c-2341-db11-898a-0007e9e17ebd + + true + Symbol used for currency throughout Microsoft Dynamics 365. + 1033 + - - + + + 675e271b-f72d-4f99-857b-d3a37042bcb4 + + true + Currency Symbol + 1033 + + + 3b75f3d1-1e3d-4fb6-8a42-681d5b3fb449 + + true + Valutasymbol + 1030 + + + + 675e271b-f72d-4f99-857b-d3a37042bcb4 + + true + Currency Symbol + 1033 + organization @@ -129567,11 +138290,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -129582,13 +138305,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -129600,83 +138323,108 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - enableflowsinsolutionbydefaultname - 2025-11-06T02:47:57.4169984 + currencysymbol + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - enableflowsinsolutionbydefaultName + CurrencySymbol - VirtualType + StringType - 1.3.9.0 - true - - + 5.0.0.0 + false + 0 + + Text + Auto + 13 + + + Text + + + false + 0 + 26 - - 368118c9-9e43-4485-a512-e276f14cba5f + + 6947cec8-137a-4cb7-acb0-ffabcdf40539 - Boolean + Integer false false false false canmodifyadditionalsettings - true + false - 330 + 87 1900-01-01T00:00:00 - + 9.0.0.0 - d143eb68-b5c1-432a-9dcd-ab77d19e56c2 + e2d8dee2-2241-db11-898a-0007e9e17ebd true - Enable Integration with Immersive Skype + Current bulk operation number. Deprecated. Use SetAutoNumberSeed message. 1033 + + fc305114-aac9-44fe-b2ed-a7160d98b7cb + + true + Nummer på aktuelle massehandling. Udfaset. Brug SetAutoNumberSeed-meddelelse. + 1030 + - d143eb68-b5c1-432a-9dcd-ab77d19e56c2 + e2d8dee2-2241-db11-898a-0007e9e17ebd true - Enable Integration with Immersive Skype + Current bulk operation number. Deprecated. Use SetAutoNumberSeed message. 1033 - dc01c208-a08c-4718-a7b5-62bc311e5405 + ca980f6d-6ea1-4a2e-b619-46f01196a4c2 true - Enable Integration with Immersive Skype + Current Bulk Operation Number 1033 + + e8818906-4620-4694-870a-911b9503aa3f + + true + Nummer på den aktuelle massehandling + 1030 + - dc01c208-a08c-4718-a7b5-62bc311e5405 + ca980f6d-6ea1-4a2e-b619-46f01196a4c2 true - Enable Integration with Immersive Skype + Current Bulk Operation Number 1033 @@ -129692,7 +138440,7 @@ false iscustomizable - false + true false false @@ -129730,179 +138478,91 @@ true true - enableimmersiveskypeintegration + currentbulkoperationnumber 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - EnableImmersiveSkypeIntegration + CurrentBulkOperationNumber - BooleanType + IntegerType - 9.0.0.0 + 5.0.0.0 false 0 - true - - 2e7d545c-ab31-4464-99dc-37fc152b185e - - - - - 89a772ee-2df7-46d5-9687-6771dcd0bf44 - - true - Enable Integration with Immersive Skype. - 1033 - - - - 89a772ee-2df7-46d5-9687-6771dcd0bf44 - - true - Enable Integration with Immersive Skype. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_enableimmersiveskypeintegration - Boolean - 9.0.0.0 - - - - - - - - - - false - true - - - - f69da6e5-d6a1-471d-ab14-7e424aeaa70d - - true - No - 1033 - - - - f69da6e5-d6a1-471d-ab14-7e424aeaa70d - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - eadd343c-bcc0-4dc8-8e84-bd168e28b32c - - true - Yes - 1033 - - - - eadd343c-bcc0-4dc8-8e84-bd168e28b32c - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + 0 0 - - 079e0bd5-23e4-4410-ad0d-d0b043dd8981 + + 917d262e-8680-4b47-807a-be9862b7ffe6 - Boolean + Integer false false false false canmodifyadditionalsettings - true + false - 10012 - 2025-11-06T01:17:44.6029952 - + 82 + 1900-01-01T00:00:00 + 9.0.0.0 - 795826a2-bce4-4c40-9996-f3cf020f6271 + 5e41b506-2341-db11-898a-0007e9e17ebd true - Information that specifies whether IP based cookie binding is enabled + Current campaign number. Deprecated. Use SetAutoNumberSeed message. 1033 + + 7ebdbf9d-fb5d-4976-8c46-f4cb582eae77 + + true + Nummer på aktuelle kampagne. Udfaset. Brug SetAutoNumberSeed-meddelelse. + 1030 + - 795826a2-bce4-4c40-9996-f3cf020f6271 + 5e41b506-2341-db11-898a-0007e9e17ebd true - Information that specifies whether IP based cookie binding is enabled + Current campaign number. Deprecated. Use SetAutoNumberSeed message. 1033 - b637cf25-60b8-4535-8042-5bdc07c1a4be + 25de19dd-0223-46a8-a1ad-2fca1ac5f720 true - Enable IP Address Based Cookie Binding + Current Campaign Number 1033 + + cff7ba51-dd82-42bd-ad9e-ceb65488425f + + true + Nummer på den aktuelle kampagne + 1030 + - b637cf25-60b8-4535-8042-5bdc07c1a4be + 25de19dd-0223-46a8-a1ad-2fca1ac5f720 true - Enable IP Address Based Cookie Binding + Current Campaign Number 1033 @@ -129956,153 +138616,93 @@ true true - enableipbasedcookiebinding - 2025-11-06T01:17:44.6029952 + currentcampaignnumber + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - EnableIpBasedCookieBinding + CurrentCampaignNumber - BooleanType + IntegerType - 1.0.0.15 + 5.0.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + None + 2147483647 + -2147483648 + 0 - - 614ed499-d68e-4df8-9e80-065fc4205f64 + + 27ee4363-4f5a-4590-8c30-b7f292fec082 - enableipbasedcookiebinding - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true + false - 10013 - 2025-11-06T01:17:44.6169984 - + 22 + 1900-01-01T00:00:00 + 9.0.0.0 - - + + + c1abc7f4-2241-db11-898a-0007e9e17ebd + + true + First case number to use. Deprecated. Use SetAutoNumberSeed message. + 1033 + + + 09728370-7ae4-4652-b18c-918b0537efb8 + + true + Først sagsnummer, der skal anvendes. Udfaset. Brug SetAutoNumberSeed-meddelelse. + 1030 + + + + c1abc7f4-2241-db11-898a-0007e9e17ebd + + true + First case number to use. Deprecated. Use SetAutoNumberSeed message. + 1033 + - - + + + 87155f41-6450-4a62-bccd-b1cb918055bd + + true + Current Case Number + 1033 + + + 5b5f4595-82d4-42bf-9d1d-6aac516721d8 + + true + Nummer på den aktuelle sag + 1030 + + + + 87155f41-6450-4a62-bccd-b1cb918055bd + + true + Current Case Number + 1033 + organization @@ -130110,11 +138710,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -130125,13 +138725,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -130143,83 +138743,102 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - enableipbasedcookiebindingname - 2025-11-06T01:17:44.6169984 + currentcasenumber + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - enableipbasedcookiebindingName + CurrentCaseNumber - VirtualType + IntegerType - 1.0.0.15 - true - - + 5.0.0.0 + false + 0 + + None + 2147483647 + -2147483648 + + 0 - - ccf5fa1c-7ad8-4e8d-9d56-0f0147d74915 + + 6258d65e-e1fa-483e-b145-028805668eee - Boolean + Integer false false false false canmodifyadditionalsettings - true + false - 10014 - 2025-11-06T01:17:44.6329984 - + 373 + 1900-01-01T00:00:00 + 9.0.0.0 - 0b5240aa-1ad2-4e46-801e-abba6f6fb095 + 9c425b03-a68b-4854-afa2-20f99ed3e716 true - Information that specifies whether IP based firewall rule is enabled + Enter the first number to use for Categories. Deprecated. Use SetAutoNumberSeed message. 1033 + + 1d4f6013-f1d5-4691-8ebd-f64934adfd5b + + true + Angiv det første nummer, der skal bruges til kategorier. Udfaset. Brug SetAutoNumberSeed-meddelelse. + 1030 + - 0b5240aa-1ad2-4e46-801e-abba6f6fb095 + 9c425b03-a68b-4854-afa2-20f99ed3e716 true - Information that specifies whether IP based firewall rule is enabled + Enter the first number to use for Categories. Deprecated. Use SetAutoNumberSeed message. 1033 - f4f486f1-1eab-440a-a9fa-79091c75640c + fab136c1-8a22-4b86-995f-4435c742f49e true - Enable IP Range based Firewall + Current Category Number 1033 + + ca7138f2-752c-461a-9cb5-b7eeeb7519ab + + true + Det aktuelle kategorinummer + 1030 + - f4f486f1-1eab-440a-a9fa-79091c75640c + fab136c1-8a22-4b86-995f-4435c742f49e true - Enable IP Range based Firewall + Current Category Number 1033 @@ -130273,179 +138892,91 @@ true true - enableipbasedfirewallrule - 2025-11-06T01:17:44.6329984 + currentcategorynumber + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - EnableIpBasedFirewallRule + CurrentCategoryNumber - BooleanType + IntegerType - 1.0.0.15 + 8.1.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + None + 2147483647 + -1 + 0 - - 407f6a18-61aa-4926-95c9-f86c45f013af + + c2fd0173-42ec-474c-91e8-c91bb64bbae8 - Boolean + Integer false false false false canmodifyadditionalsettings - true + false - 10016 - 2025-11-06T01:17:44.6470016 - + 24 + 1900-01-01T00:00:00 + 9.0.0.0 - 85d2b156-475b-48f1-8012-36e909319434 + 0e91aa12-2341-db11-898a-0007e9e17ebd true - Information that specifies whether IP based firewall rule is enabled in Audit Only Mode + First contract number to use. Deprecated. Use SetAutoNumberSeed message. 1033 + + 9f21ad5f-555b-44f6-9c3c-c820d7ef33b9 + + true + Først kontraktnummer, der skal anvendes. Udfaset. Brug SetAutoNumberSeed-meddelelse. + 1030 + - 85d2b156-475b-48f1-8012-36e909319434 + 0e91aa12-2341-db11-898a-0007e9e17ebd true - Information that specifies whether IP based firewall rule is enabled in Audit Only Mode + First contract number to use. Deprecated. Use SetAutoNumberSeed message. 1033 - 530fa028-e748-4321-a875-6def7cda79ec + fa4b381d-de35-41f2-b448-5e2e153a0c20 true - Enable IP Range based Firewall In Audit Only Mode + Current Contract Number 1033 + + b8411d4c-52c8-441e-bc74-d9f3ed4332f1 + + true + Nummer på den aktuelle kontrakt + 1030 + - 530fa028-e748-4321-a875-6def7cda79ec + fa4b381d-de35-41f2-b448-5e2e153a0c20 true - Enable IP Range based Firewall In Audit Only Mode + Current Contract Number 1033 @@ -130499,153 +139030,93 @@ true true - enableipbasedfirewallruleinauditmode - 2025-11-06T01:17:44.6470016 + currentcontractnumber + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - EnableIpBasedFirewallRuleInAuditMode + CurrentContractNumber - BooleanType + IntegerType - 1.0.0.15 + 5.0.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + None + 2147483647 + -2147483648 + 0 - - 8ffeba81-1906-4cc8-aba9-a289e5744812 + + 03822bf7-7820-48b5-a111-a1954fabd631 - enableipbasedfirewallruleinauditmode - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true + false - 10017 - 2025-11-06T01:17:44.6630016 + 105 + 1900-01-01T00:00:00 - - + + + 693d5ca6-efe3-4139-8583-d82695632c35 + + true + Import sequence to use. + 1033 + + + 5724ac3a-bb1d-412f-927c-e08af6678411 + + true + Importsekvens, der skal bruges. + 1030 + + + + 693d5ca6-efe3-4139-8583-d82695632c35 + + true + Import sequence to use. + 1033 + - - + + + 99bd7e59-ac6d-416c-b16d-ae4985660112 + + true + Current Import Sequence Number + 1033 + + + 4fa7a314-fc79-4e28-a3a5-90552d072796 + + true + Nummer på den aktuelle importsekvens + 1030 + + + + 99bd7e59-ac6d-416c-b16d-ae4985660112 + + true + Current Import Sequence Number + 1033 + organization @@ -130653,11 +139124,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -130668,13 +139139,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -130686,7 +139157,7 @@ false - true + false canmodifysearchsettings false @@ -130695,48 +139166,95 @@ false true false - false + true - enableipbasedfirewallruleinauditmodename - 2025-11-06T01:17:44.6630016 + currentimportsequencenumber + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - enableipbasedfirewallruleinauditmodeName + CurrentImportSequenceNumber - VirtualType + IntegerType - 1.0.0.15 - true - - + 5.0.0.0 + false + 0 + + None + 2147483647 + -2147483648 + + 0 - - 00b87d20-ecf3-4b57-a111-7afcf59254ce + + c8ab1d99-3d83-4f55-a913-1c39ae02a795 - enableipbasedfirewallrule - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true + false - 10015 - 2025-11-06T01:17:44.6329984 - + 30 + 1900-01-01T00:00:00 + 9.0.0.0 - - + + + 1be9af0c-2341-db11-898a-0007e9e17ebd + + true + First invoice number to use. Deprecated. Use SetAutoNumberSeed message. + 1033 + + + 3aefa484-73a5-4e52-be83-a17a57126e41 + + true + Først fakturanummer, der skal anvendes. Udfaset. Brug SetAutoNumberSeed-meddelelse. + 1030 + + + + 1be9af0c-2341-db11-898a-0007e9e17ebd + + true + First invoice number to use. Deprecated. Use SetAutoNumberSeed message. + 1033 + - - + + + f2b90b97-7a0d-44ff-b6bb-904b326e977a + + true + Current Invoice Number + 1033 + + + 14861b89-6323-49e7-abc2-553e8c10abe0 + + true + Nummer på den aktuelle faktura + 1030 + + + + f2b90b97-7a0d-44ff-b6bb-904b326e977a + + true + Current Invoice Number + 1033 + organization @@ -130744,11 +139262,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -130759,13 +139277,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -130777,83 +139295,102 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - enableipbasedfirewallrulename - 2025-11-06T01:17:44.6329984 + currentinvoicenumber + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - enableipbasedfirewallruleName + CurrentInvoiceNumber - VirtualType + IntegerType - 1.0.0.15 - true - - + 5.0.0.0 + false + 0 + + None + 2147483647 + -2147483648 + + 0 - - 64d38e25-053a-4617-bdbc-e9928f3786d9 + + da6fb1aa-a77f-4438-8706-3b45ee0adadf - Boolean + Integer false false false false canmodifyadditionalsettings - true + false - 10007 - 2025-11-06T01:16:32.3399936 - + 372 + 1900-01-01T00:00:00 + 9.0.0.0 - f9741ee1-9f91-4fdb-977f-db8e7c5ee50e + f95aa150-2f0d-41b0-8363-951d8f7a930d true - Information that specifies whether IP based SAS URI generation rule is enabled + Enter the first number to use for knowledge articles. Deprecated. Use SetAutoNumberSeed message. 1033 + + ba966515-399e-4fc9-abd9-fef0c2aaebe7 + + true + Angiv det første nummer, der skal bruges til videnartikler. Udfaset. Brug SetAutoNumberSeed-meddelelse. + 1030 + - f9741ee1-9f91-4fdb-977f-db8e7c5ee50e + f95aa150-2f0d-41b0-8363-951d8f7a930d true - Information that specifies whether IP based SAS URI generation rule is enabled + Enter the first number to use for knowledge articles. Deprecated. Use SetAutoNumberSeed message. 1033 - be3441e8-534c-48a1-941b-172d456a7962 + 5e01ea1d-3298-421b-9f90-a015a8e2c85f true - Enable IP SAS URI generation rule + Current Knowledge Article Number 1033 + + 51500765-449e-47f4-bcd2-5c2b22ed89ce + + true + Aktuelt vidensartikelnummer + 1030 + - be3441e8-534c-48a1-941b-172d456a7962 + 5e01ea1d-3298-421b-9f90-a015a8e2c85f true - Enable IP SAS URI generation rule + Current Knowledge Article Number 1033 @@ -130907,103 +139444,93 @@ true true - enableipbasedstorageaccesssignaturerule - 2025-11-06T01:16:32.3399936 + currentkanumber + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - EnableIpBasedStorageAccessSignatureRule + CurrentKaNumber - BooleanType + IntegerType - 1.0.0.5 + 8.0.0.0 false 0 - - false - - 91e7003a-aeba-f011-bbd3-7c1e52365f30 - - - - - 93e7003a-aeba-f011-bbd3-7c1e52365f30 - - true - Information that specifies whether IP based SAS URI generation rule is enabled - 1033 - - - - 93e7003a-aeba-f011-bbd3-7c1e52365f30 - - true - Information that specifies whether IP based SAS URI generation rule is enabled - 1033 - - - - - - 92e7003a-aeba-f011-bbd3-7c1e52365f30 - - true - Enable IP SAS URI generation rule - 1033 - - - - 92e7003a-aeba-f011-bbd3-7c1e52365f30 - - true - Enable IP SAS URI generation rule - 1033 - - - - true - - false - iscustomizable - true - - false - true - _organization_enableipbasedstorageaccesssignaturerule - Boolean - 1.0.0.5 - - - - + + None + 2147483647 + -1 + 0 - - 27ed7f11-3d10-40ee-b910-112bb54a8d95 + + f6953285-291f-48da-a254-624c00ff904b - enableipbasedstorageaccesssignaturerule - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true + false - 10008 - 2025-11-06T01:16:32.3699968 - + 20 + 1900-01-01T00:00:00 + 9.0.0.0 - - + + + cc64cfee-2241-db11-898a-0007e9e17ebd + + true + First article number to use. Deprecated. Use SetAutoNumberSeed message. + 1033 + + + 6c619e93-42dd-4109-884c-dece482fefdf + + true + Først artikelnummer, der skal anvendes. Udfaset. Brug SetAutoNumberSeed-meddelelse. + 1030 + + + + cc64cfee-2241-db11-898a-0007e9e17ebd + + true + First article number to use. Deprecated. Use SetAutoNumberSeed message. + 1033 + - - + + + c1541cc1-6882-441e-ba50-ee96f7c3cc25 + + true + Current Article Number + 1033 + + + d2b4b48a-ae93-4a96-95af-1bb35d4029e2 + + true + Nummer på den aktuelle artikel + 1030 + + + + c1541cc1-6882-441e-ba50-ee96f7c3cc25 + + true + Current Article Number + 1033 + organization @@ -131011,11 +139538,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -131026,13 +139553,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -131044,39 +139571,44 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - enableipbasedstorageaccesssignaturerulename - 2025-11-06T01:16:32.3699968 + currentkbnumber + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - enableipbasedstorageaccesssignatureruleName + CurrentKbNumber - VirtualType + IntegerType - 1.0.0.5 - true - - + 5.0.0.0 + false + 0 + + None + 2147483647 + -2147483648 + + 0 - - 1366ce83-fba1-488d-9da1-f151a38f8a8a + + b561e7c9-8f28-4b2b-880d-c6ae80ecf6e5 - Boolean + Integer false false false @@ -131085,42 +139617,56 @@ canmodifyadditionalsettings false - 435 - 2025-11-06T00:19:20.1670016 - + 28 + 1900-01-01T00:00:00 + 9.0.0.0 - 93cd0a2d-4188-4c62-a778-a90ebd8d3eed + e725e7d6-2241-db11-898a-0007e9e17ebd true - Indicates whether the user has enabled or disabled Live Persona Card feature in UCI. + First order number to use. Deprecated. Use SetAutoNumberSeed message. 1033 + + 846970f6-e716-4bc2-ba7e-167b1cdfe841 + + true + Først ordrenummer, der skal anvendes. Udfaset. Brug SetAutoNumberSeed-meddelelse. + 1030 + - 93cd0a2d-4188-4c62-a778-a90ebd8d3eed + e725e7d6-2241-db11-898a-0007e9e17ebd true - Indicates whether the user has enabled or disabled Live Persona Card feature in UCI. + First order number to use. Deprecated. Use SetAutoNumberSeed message. 1033 - 9bd1bc22-e813-4aa4-8bae-543b2c624f42 + 933d5de6-24a9-48e3-9cbd-598cde931463 true - Indicates whether the user has enabled or disabled Live Persona Card feature in UCI. + Current Order Number 1033 + + c7ca555c-cc06-4758-bd67-0d22211e3ed2 + + true + Nummer på den aktuelle ordre + 1030 + - 9bd1bc22-e813-4aa4-8bae-543b2c624f42 + 933d5de6-24a9-48e3-9cbd-598cde931463 true - Indicates whether the user has enabled or disabled Live Persona Card feature in UCI. + Current Order Number 1033 @@ -131136,7 +139682,7 @@ false iscustomizable - false + true false false @@ -131174,149 +139720,33 @@ true true - enablelivepersonacarduci - 2025-11-06T00:19:20.1670016 + currentordernumber + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - EnableLivePersonaCardUCI + CurrentOrderNumber - BooleanType + IntegerType - 9.1.0.0 + 5.0.0.0 false 0 - true - - 55ffe278-6b49-4332-8bad-bf5178dc3110 - - - - - 287155ee-9072-4e8f-949f-32bae8bbcebf - - true - Indicates whether the user has enabled or disabled Live Persona Card feature in UCI. - 1033 - - - - 287155ee-9072-4e8f-949f-32bae8bbcebf - - true - Indicates whether the user has enabled or disabled Live Persona Card feature in UCI. - 1033 - - - - - - 6c6e9973-6bc9-49c2-b109-18045eb36ebc - - true - Live Persona Card UCI - 1033 - - - - 6c6e9973-6bc9-49c2-b109-18045eb36ebc - - true - Live Persona Card UCI - 1033 - - - - false - - false - iscustomizable - false - - false - true - organization_enablelivepersonacarduci - Boolean - 9.1.0.0 - - - - - - - - - - false - true - - - - 71cae0b7-57c2-487a-8ecb-7dda17ccd04f - - true - No - 1033 - - - - 71cae0b7-57c2-487a-8ecb-7dda17ccd04f - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 501f39e0-0908-4207-9898-6d71e64889b5 - - true - Yes - 1033 - - - - 501f39e0-0908-4207-9898-6d71e64889b5 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + -2147483648 0 - - 744cf9f9-20ae-488d-aa79-a0ae05f4bca0 + + 8ad542eb-4e40-4c6b-8537-749f85a2348d - Boolean + Integer false false false @@ -131325,42 +139755,56 @@ canmodifyadditionalsettings false - 446 - 2025-11-06T00:19:21.8700032 + 122 + 1900-01-01T00:00:00 - 28493541-a04c-4d4c-b195-bba88776aba3 + 2f52c2fa-2241-db11-898a-0007e9e17ebd true - Indicates whether the user has enabled or disabled LivePersonCardIntegration in Office. + First parsed table number to use. 1033 + + f5dbaf81-da47-40c6-896b-c2e84560a7e5 + + true + Første parsede tabelnummer, der skal bruges. + 1030 + - 28493541-a04c-4d4c-b195-bba88776aba3 + 2f52c2fa-2241-db11-898a-0007e9e17ebd true - Indicates whether the user has enabled or disabled LivePersonCardIntegration in Office. + First parsed table number to use. 1033 - 99b89397-c156-49f3-9e03-135aed22089f + 241f6732-1428-41ba-861e-e25a633a154e true - Indicates whether the user has enabled or disabled LivePersonCardIntegration in Office. + Current Parsed Table Number 1033 + + f98e56d8-2f81-4f63-88ed-96f0addb8317 + + true + Nummer på den aktuelle parsingtabel + 1030 + - 99b89397-c156-49f3-9e03-135aed22089f + 241f6732-1428-41ba-861e-e25a633a154e true - Indicates whether the user has enabled or disabled LivePersonCardIntegration in Office. + Current Parsed Table Number 1033 @@ -131376,7 +139820,7 @@ false iscustomizable - false + true false false @@ -131407,142 +139851,40 @@ canmodifysearchsettings false - true + false false false true - true + false true - enablelivepersoncardintegrationinoffice - 2025-11-06T00:19:21.8700032 + currentparsedtablenumber + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - EnableLivePersonCardIntegrationInOffice + CurrentParsedTableNumber - BooleanType + IntegerType - 9.1.0.0 + 5.0.0.0 false 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + -2147483648 0 - - d447db9f-7b38-478e-b483-786bc69a56a0 + + 61ad2ef7-91d3-4c8c-82b9-50afac0fb469 - Boolean + Integer false false false @@ -131551,42 +139893,56 @@ canmodifyadditionalsettings false - 402 + 26 1900-01-01T00:00:00 - + 9.0.0.0 - 72b6fd7a-ce86-4a56-9a12-72da38fe209f + 0cabc7f4-2241-db11-898a-0007e9e17ebd true - Select to enable learning path auhtoring. + First quote number to use. Deprecated. Use SetAutoNumberSeed message. 1033 + + ec4dd52a-a8b4-4f35-98c9-df70d2b3bee1 + + true + Først tilbudsnummer, der skal anvendes. Udfaset. Brug SetAutoNumberSeed-meddelelse. + 1030 + - 72b6fd7a-ce86-4a56-9a12-72da38fe209f + 0cabc7f4-2241-db11-898a-0007e9e17ebd true - Select to enable learning path auhtoring. + First quote number to use. Deprecated. Use SetAutoNumberSeed message. 1033 - 870ad82d-019c-499d-b138-2ee3ee365ff8 + 48d5c54d-8cd8-4ea9-a8db-8b7b150417c1 true - Enable Learning Path Authoring + Current Quote Number 1033 + + b16a873c-a6e2-4b6e-8fe9-8c55ad902215 + + true + Nummer på det aktuelle tilbud + 1030 + - 870ad82d-019c-499d-b138-2ee3ee365ff8 + 48d5c54d-8cd8-4ea9-a8db-8b7b150417c1 true - Enable Learning Path Authoring + Current Quote Number 1033 @@ -131602,7 +139958,7 @@ false iscustomizable - false + true false false @@ -131640,135 +139996,33 @@ true true - enablelpauthoring + currentquotenumber 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - EnableLPAuthoring + CurrentQuoteNumber - BooleanType + IntegerType - 8.2.0.0 + 5.0.0.0 false 0 - false - - 2260ffe0-f88e-4baf-988c-108c740e6a2d - - - - - 92114cc8-eeff-44be-954b-f925e357631d - - true - Flag to enable learning path content authoring. - 1033 - - - - 92114cc8-eeff-44be-954b-f925e357631d - - true - Flag to enable learning path content authoring. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_enablelpauthoring - Boolean - 8.2.0.0 - - - - - - - - - - false - true - - - - 8ce9c58b-0674-47ea-b377-acf6ca98ee3a - - true - No - 1033 - - - - 8ce9c58b-0674-47ea-b377-acf6ca98ee3a - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 783dd33b-4c1a-4fb9-acdf-82cdb757b8aa - - true - Yes - 1033 - - - - 783dd33b-4c1a-4fb9-acdf-82cdb757b8aa - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + -2147483648 0 - - 2b3f6783-c7fe-4f8f-9a5c-b1ba08c68b9a + + 80cb7ea8-f3d7-4e1e-b98a-0314ac64b839 - Boolean + Picklist false false false @@ -131777,42 +140031,56 @@ canmodifyadditionalsettings false - 10190 - 2025-11-06T06:14:32.5369984 + 9 + 1900-01-01T00:00:00 - b1e9ffd5-fba0-44bc-9acb-ccf77f9f3430 + 21d7a218-2341-db11-898a-0007e9e17ebd true - Control whether the organization Switch Maker Portal to Classic + Information about how the date is displayed throughout Microsoft CRM. 1033 + + ee2024a0-293b-414a-a115-be554fd26a8f + + true + Angiver, hvordan datoer vises i Microsoft Dynamics CRM. + 1030 + - b1e9ffd5-fba0-44bc-9acb-ccf77f9f3430 + 21d7a218-2341-db11-898a-0007e9e17ebd true - Control whether the organization Switch Maker Portal to Classic + Information about how the date is displayed throughout Microsoft CRM. 1033 - f6179b47-2e9f-4ec7-a638-cbc3efd2a052 + 16798841-e911-4aab-a95c-0c70ec3970e7 true - Switch Maker Portal to Classic + Date Format Code 1033 + + 1d07a2b0-ea6f-4d27-bd7b-74607b19f306 + + true + Formatkode for dato + 1030 + - f6179b47-2e9f-4ec7-a638-cbc3efd2a052 + 16798841-e911-4aab-a95c-0c70ec3970e7 true - Switch Maker Portal to Classic + Date Format Code 1033 @@ -131822,13 +140090,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -131857,50 +140125,57 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - enablemakerswitchtoclassic - 2025-11-06T06:14:32.5369984 + dateformatcode + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - EnableMakerSwitchToClassic + DateFormatCode - BooleanType + PicklistType - 9.1.0.0 + 5.0.0.0 false 0 - - false + + -1 - 315e90f0-678b-4e4d-97f1-886050c3cb46 + a274c0ad-322f-4c51-9e71-c1eebaa90e3c - 05aedb96-402f-4dff-86e7-54b577874b2f + 7e119666-d698-463f-b6ec-12f9c2aee9a6 true - Information that specifies whether a feature is enabled for the organization. + Information about how the date is displayed throughout Microsoft CRM. 1033 + + 1f470d15-a43a-4368-a87d-b0a2c679a485 + + true + Angiver, hvordan datoer vises i Microsoft Dynamics CRM. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 7e119666-d698-463f-b6ec-12f9c2aee9a6 true - Information that specifies whether a feature is enabled for the organization. + Information about how the date is displayed throughout Microsoft CRM. 1033 @@ -131913,98 +140188,37 @@ false iscustomizable - false + true - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + organization_dateformatcode + Picklist + 5.0.0.0 + + - + + 0 + + - 28c984db-f580-46be-9dad-044cfc645c1e + 2eb20f53-def0-4f58-b310-4535c696840f - enablemakerswitchtoclassic + dateformatcode Virtual false false false - true + false canmodifyadditionalsettings - true + false - 10191 - 2025-11-06T06:14:32.5500032 + 45 + 1900-01-01T00:00:00 @@ -132018,15 +140232,15 @@ - true + false canmodifyauditsettings false false - true + false iscustomizable - true + false false false @@ -132035,13 +140249,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -132053,7 +140267,7 @@ false - true + false canmodifysearchsettings false @@ -132064,72 +140278,86 @@ false false - enablemakerswitchtoclassicname - 2025-11-06T06:14:32.5500032 + dateformatcodename + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - enablemakerswitchtoclassicName + DateFormatCodeName VirtualType - 9.1.0.0 + 5.0.0.0 true - + - - d2b354cb-29fb-4d02-bddb-e0b8ee7334fb + + bc35b207-be5a-48ae-ac2e-92da508f1c10 - Boolean + String false false false false canmodifyadditionalsettings - true + false - 397 + 39 1900-01-01T00:00:00 - 0d40253a-5548-4673-9ba3-79a13e7dc2fc + 0dabc7f4-2241-db11-898a-0007e9e17ebd true - Enable Integration with Microsoft Flow + String showing how the date is displayed throughout Microsoft CRM. 1033 + + 8e8684c5-92b3-47c8-a0ae-e34f864d4d95 + + true + Streng, der viser, hvordan datoer vises i Microsoft Dynamics CRM. + 1030 + - 0d40253a-5548-4673-9ba3-79a13e7dc2fc + 0dabc7f4-2241-db11-898a-0007e9e17ebd true - Enable Integration with Microsoft Flow + String showing how the date is displayed throughout Microsoft CRM. 1033 - d320e2fd-32b5-421f-b1b5-90c459f4181b + 5a31b15d-40eb-4639-bed3-60f7f225de03 true - Enable Integration with Microsoft Flow + Date Format String 1033 + + 4e87ad78-c7d4-40f4-9b3c-2bd0c898c2dd + + true + Formatstreng for dato + 1030 + - d320e2fd-32b5-421f-b1b5-90c459f4181b + 5a31b15d-40eb-4639-bed3-60f7f225de03 true - Enable Integration with Microsoft Flow + Date Format String 1033 @@ -132145,7 +140373,7 @@ false iscustomizable - false + true false false @@ -132183,135 +140411,39 @@ true true - enablemicrosoftflowintegration - 2025-11-06T00:19:21.6669952 + dateformatstring + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - EnableMicrosoftFlowIntegration + DateFormatString - BooleanType + StringType - 8.2.0.0 + 5.0.0.0 false 0 - false - - 30a6196b-8d65-4b4b-9f8f-8df2fb890ee7 - - - - - 84644821-5d4d-457b-a758-617d474edc22 - - true - Enable Integration with Microsoft Flow. - 1033 - - - - 84644821-5d4d-457b-a758-617d474edc22 - - true - Enable Integration with Microsoft Flow. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_enablemicrosoftflowintegration - Boolean - 8.2.0.0 - - - - - - - - - - false - true - - - - dfb25404-8fdf-4016-862b-c8c53d80f29d - - true - No - 1033 - - - - dfb25404-8fdf-4016-862b-c8c53d80f29d - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 484b099d-8a83-42a8-9181-cb7c7e12a0a7 - - true - Yes - 1033 - - - - 484b099d-8a83-42a8-9181-cb7c7e12a0a7 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 255 + + + Text + + false 0 + 510 - - 520d388c-2020-411e-b0e1-32d49286eafc + + 35612ad8-0817-4d3b-bda7-8fb9983176b3 - Boolean + String false false false @@ -132320,42 +140452,56 @@ canmodifyadditionalsettings false - 135 + 13 1900-01-01T00:00:00 - e54545d1-e0ae-4cad-960f-edce58dbb5b2 + 3fd7a218-2341-db11-898a-0007e9e17ebd true - Enable pricing calculations on a Create call. + Character used to separate the month, the day, and the year in dates throughout Microsoft Dynamics 365. 1033 + + 387c4bae-86eb-4b12-ba20-b80cd9d16c8d + + true + Det tegn, der bruges til at adskille måned, dag og år i datoer i Microsoft Dynamics 365. + 1030 + - e54545d1-e0ae-4cad-960f-edce58dbb5b2 + 3fd7a218-2341-db11-898a-0007e9e17ebd true - Enable pricing calculations on a Create call. + Character used to separate the month, the day, and the year in dates throughout Microsoft Dynamics 365. 1033 - 160b9f52-25dd-455b-832a-0c5b19ce9b8a + 1b357bbc-2ef6-41ad-bc56-38b1d52e2950 true - Enable Pricing On Create + Date Separator 1033 + + 23cf3374-6c1c-4171-a45f-fcb6f8c31824 + + true + Datoseparator + 1030 + - 160b9f52-25dd-455b-832a-0c5b19ce9b8a + 1b357bbc-2ef6-41ad-bc56-38b1d52e2950 true - Enable Pricing On Create + Date Separator 1033 @@ -132409,179 +140555,97 @@ true true - enablepricingoncreate + dateseparator 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - EnablePricingOnCreate + DateSeparator - BooleanType + StringType 5.0.0.0 false 0 - true - - 81a79a68-2782-409c-9017-85ea8a1253da - - - - - 9375f973-b4ca-4f23-87e0-9fa1aa2441d6 - - true - Enable pricing calculations on a Create call. - 1033 - - - - 9375f973-b4ca-4f23-87e0-9fa1aa2441d6 - - true - Enable pricing calculations on a Create call. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_enablepricingoncreate - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 1b62a88a-65e0-494a-9328-2d5a27098315 - - true - No - 1033 - - - - 1b62a88a-65e0-494a-9328-2d5a27098315 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - c87d81df-e323-4843-b474-7de717145aa7 - - true - Yes - 1033 - - - - c87d81df-e323-4843-b474-7de717145aa7 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 5 + + + Text + + false 0 + 10 - - 787d141b-08f9-40a1-bb4f-0aaeeb5b445f + + a73b723f-bf2e-467d-94b1-76935d4d5106 - Boolean + Integer false false false false canmodifyadditionalsettings - false + true - 10154 - 2025-11-06T04:24:47.9670016 + 10232 + 2025-11-06T06:29:14.1830016 - 2e3c565d-85db-4b2d-a022-651b1c720b01 + f66df4d6-a3b7-44f7-aad6-70111aaeb059 true - Enable or disable Sensitivity Labels in Email. + Number of days before we migrate email description to blob. 1033 + + 3c89977e-7f49-4898-b54e-03ed146a1a4a + + true + Number of days before we migrate email description to blob. + 1030 + - 2e3c565d-85db-4b2d-a022-651b1c720b01 + f66df4d6-a3b7-44f7-aad6-70111aaeb059 true - Enable or disable Sensitivity Labels in Email. + Number of days before we migrate email description to blob. 1033 - aa8f2764-3a65-46cb-a16a-add186d63f0e + 54b1c370-edad-4678-a9a2-5099e20ff685 true - Enable or disable Sensitivity Labels in Email + Number of days before we migrate email description to blob. 1033 + + 4f317974-fb78-46bb-9b0d-27c5ebf463f3 + + true + Number of days before we migrate email description to blob. + 1030 + - aa8f2764-3a65-46cb-a16a-add186d63f0e + 54b1c370-edad-4678-a9a2-5099e20ff685 true - Enable or disable Sensitivity Labels in Email + Number of days before we migrate email description to blob. 1033 @@ -132635,284 +140699,91 @@ true true - enablesensitivitylabels - 2025-11-06T04:24:47.9670016 + daysbeforeemaildescriptionismigrated + 2025-11-06T06:29:14.1830016 false canmodifyrequirementlevelsettings - SystemRequired + None - EnableSensitivityLabels + DaysBeforeEmailDescriptionIsMigrated - BooleanType + IntegerType - 9.0.0.0 + 1.8 false 0 - false - - 5c0a3e85-c8ba-f011-bbd3-7c1e52365f30 - - - - - 5e0a3e85-c8ba-f011-bbd3-7c1e52365f30 - - true - Enable or disable Sensitivity Labels in Email - 1033 - - - - 5e0a3e85-c8ba-f011-bbd3-7c1e52365f30 - - true - Enable or disable Sensitivity Labels in Email - 1033 - - - - - - 5d0a3e85-c8ba-f011-bbd3-7c1e52365f30 - - true - Enable or disable Sensitivity Labels in Email - 1033 - - - - 5d0a3e85-c8ba-f011-bbd3-7c1e52365f30 - - true - Enable or disable Sensitivity Labels in Email - 1033 - - - - true - - false - iscustomizable - false - - false - true - organization_enablesensitivitylabels - Boolean - 9.0.0.0 - - - - - - - - - - false - true - - - - feb49c81-12d0-4314-856b-7ef92c2feb37 - - true - No - 1033 - - - - feb49c81-12d0-4314-856b-7ef92c2feb37 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 833cf939-0550-41ac-b74c-ef4a35dcb3c5 - - true - Yes - 1033 - - - - 833cf939-0550-41ac-b74c-ef4a35dcb3c5 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + -2147483648 0 - - 9ab6385e-d302-48f7-ab6c-64decb93e95e - - enablesensitivitylabels - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 10155 - 2025-11-06T04:24:47.9830016 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - enablesensitivitylabelsname - 2025-11-06T04:24:47.9830016 - - true - canmodifyrequirementlevelsettings - None - - enablesensitivitylabelsName - - - VirtualType - - 9.0.0.0 - true - - - - - ac3308cf-e3a1-4a8c-97fd-f8c2c862e626 + + 1ea13f65-c738-4de2-ae7c-4503609993ce - Boolean + Integer false false false false canmodifyadditionalsettings - true + false - 216 - 1900-01-01T00:00:00 + 10165 + 2025-11-06T05:04:29.4700032 - 073816a5-f32f-4b7f-8841-5391569b4776 + 65feaa27-86a7-487d-9780-909577cce3af true - Use Smart Matching. + Days of inactivity before sync is disabled for a Teams Chat. 1033 + + 804ac85c-a365-4337-9de5-a206b7dca9c6 + + true + Dage med inaktivitet, før synkronisering er deaktiveret for en Teams-chat. + 1030 + - 073816a5-f32f-4b7f-8841-5391569b4776 + 65feaa27-86a7-487d-9780-909577cce3af true - Use Smart Matching. + Days of inactivity before sync is disabled for a Teams Chat. 1033 - 4d1092a6-bae5-48f7-8aaf-cc48e0078e32 + 9b7189b8-710a-4b5b-87f3-e922d8d10611 true - Enable Smart Matching + Days Before Inactive Teams Chat Sync Disabled 1033 + + c4fd6cb7-976c-49f7-81cf-c0aafd45b631 + + true + Dage, før synkronisering af inaktiv Teams-chat deaktiveres + 1030 + - 4d1092a6-bae5-48f7-8aaf-cc48e0078e32 + 9b7189b8-710a-4b5b-87f3-e922d8d10611 true - Enable Smart Matching + Days Before Inactive Teams Chat Sync Disabled 1033 @@ -132966,135 +140837,33 @@ true true - enablesmartmatching - 1900-01-01T00:00:00 + daysbeforeinactiveteamschatsyncdisabled + 2026-04-04T10:07:57.8599936 false canmodifyrequirementlevelsettings - None + SystemRequired - EnableSmartMatching + DaysBeforeInactiveTeamsChatSyncDisabled - BooleanType + IntegerType - 5.0.0.0 + 9.2.0.0 false 0 - - false - - 7387de37-e603-47b8-a3a5-7e5eeaa0a936 - - - - - c0e90db5-9302-42a8-8ed7-c3038048b7ec - - true - Enable Smart Matching. - 1033 - - - - c0e90db5-9302-42a8-8ed7-c3038048b7ec - - true - Enable Smart Matching. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_enablesmartmatching - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 7ed0c812-e0a8-4826-adb7-8fbcc6532587 - - true - No - 1033 - - - - 7ed0c812-e0a8-4826-adb7-8fbcc6532587 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 2fccc211-ff69-4f2e-954e-51853127b8c1 - - true - Yes - 1033 - - - - 2fccc211-ff69-4f2e-954e-51853127b8c1 - - true - Yes - 1033 - - - - 1 - - - - + + None + 28 + 1 + 0 - - 86123c78-b5d2-4add-9889-598673a57b10 + + 388e9335-9936-4699-96e4-d65530631a88 - Boolean + Integer false false false @@ -133103,42 +140872,56 @@ canmodifyadditionalsettings false - 10218 - 2025-11-06T06:14:32.9100032 + 323 + 1900-01-01T00:00:00 - 593bb689-0bde-4d3b-a767-dc34b8670929 + c4fcdaa0-1d01-4cc1-b8ac-4c2bcdace791 true - Leave empty to use default setting. Set to on/off to enable/disable CDN for UCI. + The maximum value for the Mobile Offline setting Days since record last modified 1033 + + 2d202af8-8661-4244-9dc2-96eae7a7405d + + true + Maksimumværdien for Mobile Offline-indstillingen for dage siden sidste ændring af posten + 1030 + - 593bb689-0bde-4d3b-a767-dc34b8670929 + c4fcdaa0-1d01-4cc1-b8ac-4c2bcdace791 true - Leave empty to use default setting. Set to on/off to enable/disable CDN for UCI. + The maximum value for the Mobile Offline setting Days since record last modified 1033 - 58ac677d-b5f6-419a-86fc-21b62d5bd386 + dc4a41a5-4f32-4468-a6e2-a6d9a1024c8a true - Enable UCI CDN for organization + Max value of Days since record last modified 1033 + + 38aec37e-75be-4a9a-a54c-e2974b0eb732 + + true + Maks. værdi for dage siden sidste ændring af posten + 1030 + - 58ac677d-b5f6-419a-86fc-21b62d5bd386 + dc4a41a5-4f32-4468-a6e2-a6d9a1024c8a true - Enable UCI CDN for organization + Max value of Days since record last modified 1033 @@ -133148,7 +140931,7 @@ true canmodifyauditsettings - false + true false @@ -133183,279 +140966,100 @@ false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true + false true - enableunifiedclientcdn - 2025-11-06T06:14:32.9100032 + dayssincerecordlastmodifiedmaxvalue + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - EnableUnifiedClientCDN + DaysSinceRecordLastModifiedMaxValue - BooleanType + IntegerType - 9.1.0.0 + 8.0.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + None + 2147483647 + 0 + 0 - - 022ad85a-0a69-4692-8f2d-8374f0eb5cc4 - - enableunifiedclientcdn - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10219 - 2025-11-06T06:14:32.9100032 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - enableunifiedclientcdnname - 2025-11-06T06:14:32.9100032 - - true - canmodifyrequirementlevelsettings - None - - enableunifiedclientcdnName - - - VirtualType - - 9.1.0.0 - true - - - - - c05ac538-b774-43e4-8fef-573a839bd9ac + + 09f9b062-93a5-4eeb-8a85-2ea50c53825e - Boolean + String false false false false canmodifyadditionalsettings - true + false - 433 - 2025-11-06T00:19:22.6669952 + 132 + 1900-01-01T00:00:00 - bbe3aa17-3829-4f13-a647-54449898baf0 + 247addb9-0fb5-40f2-9079-8b836188fd55 true - Enable site map and commanding update + Symbol used for decimal in Microsoft Dynamics 365. 1033 + + 0b33f3d5-3caf-4d36-8de2-c304d4127561 + + true + Det decimalsymbol, der benyttes i Microsoft Dynamics 365. + 1030 + - bbe3aa17-3829-4f13-a647-54449898baf0 + 247addb9-0fb5-40f2-9079-8b836188fd55 true - Enable site map and commanding update + Symbol used for decimal in Microsoft Dynamics 365. 1033 - 9a6b8f93-d7d9-49b7-b270-dd3e065750d6 + ccadc990-64b7-42c3-b2e3-95460afea6ba true - Enable site map and commanding update + Decimal Symbol 1033 + + a2f37a10-a54d-4c14-9534-a92cd9ba200f + + true + Decimaltegn + 1030 + - 9a6b8f93-d7d9-49b7-b270-dd3e065750d6 + ccadc990-64b7-42c3-b2e3-95460afea6ba true - Enable site map and commanding update + Decimal Symbol 1033 @@ -133471,7 +141075,7 @@ false iscustomizable - false + true false false @@ -133509,135 +141113,39 @@ true true - enableunifiedinterfaceshellrefresh - 2025-11-06T00:19:22.6669952 + decimalsymbol + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - EnableUnifiedInterfaceShellRefresh + DecimalSymbol - BooleanType + StringType - 9.1.0.0 + 5.0.0.0 false 0 - true - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 5 + + + Text + + false 0 + 10 - - 2998c744-0e2c-4c20-9b8a-b6317d547ba7 + + 5162fc32-9eec-428f-b656-0df6f7f51357 - Boolean + String false false false @@ -133646,42 +141154,56 @@ canmodifyadditionalsettings false - 290 + 224 1900-01-01T00:00:00 - 9183993f-091e-43fb-b788-6893cd419d24 + 3eedfa8d-bc51-4b17-873f-4c3671db3484 true - Organization setting to enforce read only plugins. + Text area to enter default country code. 1033 + + 3f7294d4-d3e9-4947-8e61-2112d055cf8c + + true + Tekstområde til indtastning af standardlandekode. + 1030 + - 9183993f-091e-43fb-b788-6893cd419d24 + 3eedfa8d-bc51-4b17-873f-4c3671db3484 true - Organization setting to enforce read only plugins. + Text area to enter default country code. 1033 - 27453a2a-4360-4b97-9ca8-d5b9b455c2a5 + fe542b1f-0d49-457b-a445-b87314aad520 true - Organization setting to enforce read only plugins. + Default Country Code 1033 + + ce3147c2-1835-40f5-be55-697b823ab53d + + true + Standardlandekode + 1030 + - 27453a2a-4360-4b97-9ca8-d5b9b455c2a5 + fe542b1f-0d49-457b-a445-b87314aad520 true - Organization setting to enforce read only plugins. + Default Country Code 1033 @@ -133697,7 +141219,7 @@ false iscustomizable - true + false false false @@ -133735,135 +141257,39 @@ true true - enforcereadonlyplugins + defaultcountrycode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - EnforceReadOnlyPlugins + DefaultCountryCode - BooleanType + StringType - 7.1.0.0 + 5.0.0.0 false 0 - false - - 314e8e6f-2ffa-42b6-9b55-d872799f7dc2 - - - - - 56ff5255-44c7-4839-8ddc-fbf1fe6e2b5c - - true - Organization setting to enforce read only plugins. - 1033 - - - - 56ff5255-44c7-4839-8ddc-fbf1fe6e2b5c - - true - Organization setting to enforce read only plugins. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_enforcereadonlyplugins - Boolean - 7.1.0.0 - - - - - - - - - - false - true - - - - d806ab4b-84f5-4e7a-b3ef-40af89bc1490 - - true - No - 1033 - - - - d806ab4b-84f5-4e7a-b3ef-40af89bc1490 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 2fdc15ad-b217-4be6-a3d9-c07a08830f85 - - true - Yes - 1033 - - - - 2fdc15ad-b217-4be6-a3d9-c07a08830f85 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 30 + + + Text + + false 0 + 30 - - cd16fd23-229c-424a-8872-b73c345d0d14 + + 45e94858-d2ca-4ffc-9327-dd6a435ff2f4 - entityimageid - Virtual + + String false false false @@ -133872,42 +141298,56 @@ canmodifyadditionalsettings false - 246 + 400 1900-01-01T00:00:00 - b7dbadff-4ee1-4a34-b9df-6c91827fe46d + d4b9b5ab-1933-4963-834b-276b89a2083a true - The default image for the entity. + Name of the default crm custom. 1033 + + 4852020f-2730-4654-bb63-a070548a6e3d + + true + Navnet på standard crm custom. + 1030 + - b7dbadff-4ee1-4a34-b9df-6c91827fe46d + d4b9b5ab-1933-4963-834b-276b89a2083a true - The default image for the entity. + Name of the default crm custom. 1033 - 1203836d-c2f5-4687-9c92-8e1c78867cae + f87db3c0-2eaf-48e8-a5f8-7f7591d48118 true - Entity Image + Name of the default app 1033 + + b5149c98-d723-4eb1-8131-ca27cbd9212f + + true + Navnet for standardappen + 1030 + - 1203836d-c2f5-4687-9c92-8e1c78867cae + f87db3c0-2eaf-48e8-a5f8-7f7591d48118 true - Entity Image + Name of the default app 1033 @@ -133917,7 +141357,7 @@ true canmodifyauditsettings - false + true false @@ -133961,33 +141401,39 @@ true true - entityimage + defaultcrmcustomname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - EntityImage + DefaultCrmCustomName - - ImageType + + StringType - 6.0.0.0 - true - + 8.2.0.0 + false + 0 - false - true - 144 - 10240 - 144 + Text + Auto + 100 + + + Text + + + true + 0 + 100 - - 88fb3f27-90cf-4b69-be7a-df3d37af69fc + + 9c0acd97-5dfc-4dc2-9da1-e9aaabe793fc - entityimageid - BigInt + + Lookup false false false @@ -133996,30 +141442,72 @@ canmodifyadditionalsettings false - 247 + 237 1900-01-01T00:00:00 - - + + + 6a373832-c18d-4ba4-a20d-d7a55a3b6a32 + + true + Unique identifier of the default email server profile. + 1033 + + + e9cca778-b738-4191-a586-7e9edc8c3ed2 + + true + Entydigt id for standardmailserverprofilen. + 1030 + + + + 6a373832-c18d-4ba4-a20d-d7a55a3b6a32 + + true + Unique identifier of the default email server profile. + 1033 + - - + + + 2d31a6e7-d129-4c79-ac4f-65658ea854dc + + true + Email Server Profile + 1033 + + + 5013ea84-a06b-4b91-a733-d5b9aa8a8866 + + true + Mailserverprofil + 1030 + + + + 2d31a6e7-d129-4c79-ac4f-65658ea854dc + + true + Email Server Profile + 1033 + organization - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -134048,38 +141536,40 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - entityimage_timestamp + defaultemailserverprofileid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - EntityImage_Timestamp + DefaultEmailServerProfileId - BigIntType + LookupType 6.0.0.0 - true + false - 9223372036854775807 - -9223372036854775808 + None + + emailserverprofile + - 62b5e5b3-fedf-4dff-9e2f-ab28d3f8bb9b + 4bb9b15b-7d82-487e-8d65-123793bf9f5c - entityimageid + defaultemailserverprofileid String false false @@ -134089,12 +141579,33 @@ canmodifyadditionalsettings false - 248 + 235 1900-01-01T00:00:00 - - + + + 1cc34e59-deed-4d16-8d28-0affbe201a99 + + true + Name of the email server profile to be used as default profile for the mailboxes. + 1033 + + + 2b09ab09-3398-490d-b99f-fc209fa01a02 + + true + Navnet på den mailserverprofil, der skal bruges som postkassernes standardprofil. + 1030 + + + + 1cc34e59-deed-4d16-8d28-0affbe201a99 + + true + Name of the email server profile to be used as default profile for the mailboxes. + 1033 + @@ -134130,7 +141641,7 @@ false false - true + false false false @@ -134148,16 +141659,16 @@ false true false - true + false - entityimage_url + defaultemailserverprofileidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - EntityImage_URL + DefaultEmailServerProfileIdName StringType @@ -134166,23 +141677,23 @@ true 0 - Url + Text Auto - 200 + 100 - Url + Text false 0 - 400 + 200 - - 06321107-9d0a-4a1d-aed4-0423036007eb + + c99344cd-3a3a-49ac-9367-288522173c2a - Uniqueidentifier + String false false false @@ -134191,161 +141702,56 @@ canmodifyadditionalsettings false - 245 + 231 1900-01-01T00:00:00 - 652334f3-0e66-464f-987f-4982a6feba7a + 4be11623-5851-4461-b84e-28f976eaa2b4 true - For internal use only. + XML string containing the default email settings that are applied when a user or queue is created. 1033 - - - 652334f3-0e66-464f-987f-4982a6feba7a - - true - For internal use only. - 1033 - - - - - 41ca1c9b-ed2f-436c-903f-a29b7ad066a0 + 6afd6555-d405-41cf-bad9-5ed1d4f5be95 true - Entity Image Id - 1033 + XML-streng, der indeholder de standard-mailindstillinger, der anvendes, når en bruger eller kø oprettes. + 1030 - 41ca1c9b-ed2f-436c-903f-a29b7ad066a0 + 4be11623-5851-4461-b84e-28f976eaa2b4 true - Entity Image Id + XML string containing the default email settings that are applied when a user or queue is created. 1033 - - organization - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - entityimageid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - EntityImageId - - - UniqueidentifierType - - 6.0.0.0 - false - - - - - c17acfb4-b335-404e-ba77-5fda4a676c60 - - - Integer - false - false - false - - false - canmodifyadditionalsettings - false - - 300 - 1900-01-01T00:00:00 - - + + - a62e73c6-c387-4f75-b391-6eb5613d5dda + 6a1bf628-3bfb-44bf-b22a-a47d4b352823 true - Maximum number of days to keep change tracking deleted records + Default Email Settings 1033 - - - a62e73c6-c387-4f75-b391-6eb5613d5dda - - true - Maximum number of days to keep change tracking deleted records - 1033 - - - - - ee63abe0-a49a-41d6-a681-c3135fe338d4 + e282f748-bd23-4ad6-800f-ba0f0de06c9b true - Days to Expire Change Tracking Deleted Records - 1033 + Standard-mailindstillinger + 1030 - ee63abe0-a49a-41d6-a681-c3135fe338d4 + 6a1bf628-3bfb-44bf-b22a-a47d4b352823 true - Days to Expire Change Tracking Deleted Records + Default Email Settings 1033 @@ -134399,33 +141805,39 @@ true true - expirechangetrackingindays - 2025-11-06T00:19:22.1970048 + defaultemailsettings + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - ExpireChangeTrackingInDays + DefaultEmailSettings - IntegerType + StringType - 7.1.0.0 + 6.0.0.0 false 0 - None - 365 - 0 + Text + Auto + 1073741823 + + + Text + + false 0 + -1 - - 67376bab-6749-441d-a1e4-cbb8fb7987ea + + 2a47cf05-3f60-46ec-9428-b7f65008f1db - Integer + Lookup false false false @@ -134434,42 +141846,56 @@ canmodifyadditionalsettings false - 155 + 369 1900-01-01T00:00:00 - 79e7256f-0962-461f-b495-05460748ee4f + 275d1f3d-c6ea-4794-9003-58026d77a165 true - Maximum number of days before deleting inactive subscriptions. + Unique identifier of the default mobile offline profile. 1033 + + f748173b-597a-42a5-a472-d27772f4d24e + + true + Entydigt id for standardprofilen for Mobile Offline. + 1030 + - 79e7256f-0962-461f-b495-05460748ee4f + 275d1f3d-c6ea-4794-9003-58026d77a165 true - Maximum number of days before deleting inactive subscriptions. + Unique identifier of the default mobile offline profile. 1033 - a2065f49-7999-4086-8f23-0f78e988eb66 + 7b743258-1e9c-483a-8a9d-4dfcb8fe396d true - Days to Expire Subscriptions + Default Mobile Offline Profile 1033 + + b54b4e1c-b9c3-438d-9bfc-44f4bd4800e0 + + true + Standardprofil for Mobile Offline + 1030 + - a2065f49-7999-4086-8f23-0f78e988eb66 + 7b743258-1e9c-483a-8a9d-4dfcb8fe396d true - Days to Expire Subscriptions + Default Mobile Offline Profile 1033 @@ -134514,41 +141940,40 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - expiresubscriptionsindays - 2025-11-06T00:19:21.8070016 + defaultmobileofflineprofileid + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - ExpireSubscriptionsInDays + DefaultMobileOfflineProfileId - IntegerType + LookupType - 5.0.0.0 + 8.0.0.0 false - 0 + None - 2147483647 - 0 - - 0 + + mobileofflineprofile + - 0b970ec6-14e5-4241-8636-143beef1ffdb + d1bbc0db-9312-4a36-bdce-0822408545dd - + defaultmobileofflineprofileid String false false @@ -134558,58 +141983,51 @@ canmodifyadditionalsettings false - 391 + 370 1900-01-01T00:00:00 - f0fd08da-3ebf-402a-8fd9-fb7bddb32c04 + a7f7848f-175f-4a50-bb90-3b81b5532c62 true - Specify the base URL to use to look for external document suggestions. + Name of the default mobile offline profile to be used as default profile for mobile offline. 1033 - - - f0fd08da-3ebf-402a-8fd9-fb7bddb32c04 - - true - Specify the base URL to use to look for external document suggestions. - 1033 - - - - - b40bed50-7957-4c92-9821-8edf2a35e3bd + bc33a0c4-2e41-4bcb-bfbc-63282f96bc8d true - External Base URL - 1033 + Navnet på den standardprofil for Mobile Offline, som skal bruges til Mobile Offline. + 1030 - b40bed50-7957-4c92-9821-8edf2a35e3bd + a7f7848f-175f-4a50-bb90-3b81b5532c62 true - External Base URL + Name of the default mobile offline profile to be used as default profile for mobile offline. 1033 + + + + organization - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -134640,32 +142058,32 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - externalbaseurl + defaultmobileofflineprofileidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ExternalBaseUrl + DefaultMobileOfflineProfileIdName StringType - 8.2.0.0 - false + 8.0.0.0 + true 0 Text Auto - 500 + 100 Text @@ -134673,13 +142091,13 @@ false 0 - 1000 + 200 - - 5942f009-901f-4635-b864-aef02da72a15 + + 6ed3bd88-c6ac-4632-91fa-1fd1ff7313cb - String + Picklist false false false @@ -134688,42 +142106,56 @@ canmodifyadditionalsettings false - 316 + 166 1900-01-01T00:00:00 - fa405c85-16f8-4fb8-9869-7056b6c5ee5c + 338347a9-f5df-4884-94dc-95e05afcd8f4 true - XML string containing the ExternalPartyEnabled entities correlation keys for association of existing External Party instance entities to newly created IsExternalPartyEnabled entities.For internal use only + Type of default recurrence end range date. 1033 + + a6390e40-b7d6-4ced-9564-4aefc1a4e58b + + true + Type af standardslutdato for en gentagelsesperiode. + 1030 + - fa405c85-16f8-4fb8-9869-7056b6c5ee5c + 338347a9-f5df-4884-94dc-95e05afcd8f4 true - XML string containing the ExternalPartyEnabled entities correlation keys for association of existing External Party instance entities to newly created IsExternalPartyEnabled entities.For internal use only + Type of default recurrence end range date. 1033 - 2939dc73-47a4-474a-b9fc-2a5e312806ae + 910b4388-6af5-4182-ab4a-21479f0dd368 true - ExternalPartyEnabled Entities correlation Keys + Default Recurrence End Range Type 1033 + + b3484b08-a2ea-402a-8080-db66a35b7fb5 + + true + Standardsluttypen for gentagelsesperioden + 1030 + - 2939dc73-47a4-474a-b9fc-2a5e312806ae + 910b4388-6af5-4182-ab4a-21479f0dd368 true - ExternalPartyEnabled Entities correlation Keys + Default Recurrence End Range Type 1033 @@ -134771,105 +142203,261 @@ false true - false + true false true true true - externalpartycorrelationkeys + defaultrecurrenceendrangetype 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ExternalPartyCorrelationKeys + DefaultRecurrenceEndRangeType - StringType + PicklistType - 8.0.0.0 + 5.0.0.0 false 0 - Text - Auto - 1073741823 - - - Text - - - false - 0 - -1 - - - 1575c02e-625c-40a4-a65f-4542dff3be09 - - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 315 - 1900-01-01T00:00:00 - - - - - b810679e-c5ca-443e-b083-d6353e7c6b96 + + + 102cfb61-ec80-4d15-adc0-3fbf16412184 + + + + + 59b96e39-49ef-44c7-ba67-589a8b21e8df + + true + Specifies the default end recurrence range to be used in recurrence dialog. + 1033 + + + af409c40-e006-4154-8899-ca597db8b6ce + + true + Angiver den standardslutdato for en gentagelsesperiode, der skal bruges i den dialogboks, hvor gentagelser angives. + 1030 + + + + 59b96e39-49ef-44c7-ba67-589a8b21e8df - true - XML string containing the ExternalPartyEnabled entities settings. - 1033 - - - - b810679e-c5ca-443e-b083-d6353e7c6b96 - - true - XML string containing the ExternalPartyEnabled entities settings. - 1033 - + true + Specifies the default end recurrence range to be used in recurrence dialog. + 1033 + + + + + + c9a133d2-33a2-4f87-8e45-45f34b2d058e + + true + DefaultRecurrenceEndRangeType + 1033 + + + 113db219-4741-48e6-876d-df70c8a2549a + + true + DefaultRecurrenceEndRangeType + 1030 + + + + c9a133d2-33a2-4f87-8e45-45f34b2d058e + + true + DefaultRecurrenceEndRangeType + 1033 + + + + false + + false + iscustomizable + true + + false + true + organization_defaultrecurrenceendrangetype + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + 7584015b-3cc6-436c-8072-a52d3d73743d + + true + No End Date + 1033 + + + 8a79c02a-ab6b-4659-8270-8b465dca7ac1 + + true + Ingen slutdato + 1030 + + + + 7584015b-3cc6-436c-8072-a52d3d73743d + + true + No End Date + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + ce0f3d69-31dc-4b89-9631-1b874b147659 + + true + Number of Occurrences + 1033 + + + 4b01927e-d3c8-4782-9e6b-24986008b5e8 + + true + Antal forekomster + 1030 + + + + ce0f3d69-31dc-4b89-9631-1b874b147659 + + true + Number of Occurrences + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 2fbf640f-af2c-49c6-a445-83c179abade1 + + true + End By Date + 1033 + + + ae4c7670-a3d6-4d33-a5f8-a384ec70ea63 + + true + Slutdato + 1030 + + + + 2fbf640f-af2c-49c6-a445-83c179abade1 + + true + End By Date + 1033 + + + + 3 + + + + + + + + 0 + + + + + e672f628-50f1-4acd-86f2-fb8ba9264050 + + defaultrecurrenceendrangetype + Virtual + false + false + false + + false + canmodifyadditionalsettings + false + + 167 + 1900-01-01T00:00:00 + + + + - - - 255048dc-7b85-4e07-8559-d9317650b2cd - - true - ExternalPartyEnabled Entities Settings.For internal use only - 1033 - - - - 255048dc-7b85-4e07-8559-d9317650b2cd - - true - ExternalPartyEnabled Entities Settings.For internal use only - 1033 - + + organization - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -134905,41 +142493,30 @@ false true true - true + false - externalpartyentitysettings + defaultrecurrenceendrangetypename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ExternalPartyEntitySettings + DefaultRecurrenceEndRangeTypeName - StringType + VirtualType - 8.0.0.0 - false - 0 + 5.0.0.0 + true + - Text - Auto - 1073741823 - - - Text - - - false - 0 - -1 - - 2d9490b5-1a39-4bf9-8fb7-d1461916513d + + 5a33d949-021a-4be7-a8b4-27b25f1b67bc - String + Memo false false false @@ -134948,42 +142525,56 @@ canmodifyadditionalsettings false - 116 + 295 1900-01-01T00:00:00 - 9cd8dee2-2241-db11-898a-0007e9e17ebd + 2abd908d-d881-424e-8545-da9fd1f52a59 true - Features to be enabled as an XML BLOB. + Default theme data for the organization. 1033 + + 395b021a-bbc0-4004-8373-ea3959e55e97 + + true + Standardtemadata for organisationen. + 1030 + - 9cd8dee2-2241-db11-898a-0007e9e17ebd + 2abd908d-d881-424e-8545-da9fd1f52a59 true - Features to be enabled as an XML BLOB. + Default theme data for the organization. 1033 - c41ed890-3487-473e-8b04-9d289a175e98 + 9e99b272-dd9b-4250-b398-83e0e52eab11 true - Feature Set + Default Theme Data 1033 + + 1a072d2d-3c03-4b48-a56c-730704c60a80 + + true + Standardtemadata + 1030 + - c41ed890-3487-473e-8b04-9d289a175e98 + 9e99b272-dd9b-4250-b398-83e0e52eab11 true - Feature Set + Default Theme Data 1033 @@ -134991,15 +142582,15 @@ - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -135037,39 +142628,35 @@ true true - featureset + defaultthemedata 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - FeatureSet + DefaultThemeData - StringType + MemoType - 5.0.0.0 + 7.1.0.0 false - 0 + - Text + TextArea Auto 1073741823 - - - Text + + TextArea - false - 0 - -1 - - 0c8790b8-1d2c-4501-bb9c-c4a3a6957835 + + cbef538e-e3b6-4233-b7b6-21e83c32f5a0 - DateTime + Uniqueidentifier false false false @@ -135078,42 +142665,56 @@ canmodifyadditionalsettings false - 8 + 309 1900-01-01T00:00:00 - 6052c2fa-2241-db11-898a-0007e9e17ebd + 7a3b3663-5daf-4e56-b703-f46f519efea8 true - Start date for the fiscal period that is to be used throughout Microsoft CRM. + Unique identifier of the delegated admin user for the organization. 1033 + + 3e3ebb75-4d86-43bc-b366-b980a2937625 + + true + Entydigt id for organisationens stedfortræderadministratorbruger. + 1030 + - 6052c2fa-2241-db11-898a-0007e9e17ebd + 7a3b3663-5daf-4e56-b703-f46f519efea8 true - Start date for the fiscal period that is to be used throughout Microsoft CRM. + Unique identifier of the delegated admin user for the organization. 1033 - ec58107a-c534-48ba-b8ad-e17f168e7edd + aff1c507-4421-4689-867b-efeac57eb641 true - Fiscal Calendar Start + Delegated Admin 1033 + + 84ffecd6-67f9-42d9-a861-b9a4c7128f7d + + true + Stedfortræderadministrator + 1030 + - ec58107a-c534-48ba-b8ad-e17f168e7edd + aff1c507-4421-4689-867b-efeac57eb641 true - Fiscal Calendar Start + Delegated Admin 1033 @@ -135121,15 +142722,15 @@ - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -135164,87 +142765,89 @@ false false true - true + false true - fiscalcalendarstart + delegatedadminuserid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - FiscalCalendarStart + DelegatedAdminUserId - DateTimeType + UniqueidentifierType - 5.0.0.0 + 7.1.0.0 false - 0 + - DateOnly - Inactive - - 0 - - false - canmodifybehavior - false - - - UserLocal - - - 084cfe0d-9fea-4317-9def-592706dbb035 + + 072b76a4-f1d4-4894-be8b-639c22d38a1e - String + Integer false false false false canmodifyadditionalsettings - false + true - 35 - 1900-01-01T00:00:00 + 10074 + 2025-11-06T02:47:57.8669952 - 5cf1fbc4-2241-db11-898a-0007e9e17ebd + 555bc7bd-149d-4831-ac9c-1d02775b6a61 true - Information that specifies how the name of the fiscal period is displayed throughout Microsoft CRM. + Default time to live in minutes for new desktop flow queue log records. 1033 + + 68099fd1-2dd7-49c9-820b-4c7df68245fa + + true + Standardtid for tid til live i minutter for nye logposter i skrivebordsflowkø. + 1030 + - 5cf1fbc4-2241-db11-898a-0007e9e17ebd + 555bc7bd-149d-4831-ac9c-1d02775b6a61 true - Information that specifies how the name of the fiscal period is displayed throughout Microsoft CRM. + Default time to live in minutes for new desktop flow queue log records. 1033 - fe3acdff-b36a-4488-bab0-6f2015c763d4 + e16c774d-f181-419d-936f-b49f46d27377 true - Fiscal Period Format + The TTL for new desktop flow queue log records. 1033 + + 05cfce4a-e808-49f2-913a-b954333da12d + + true + TTL for nye logposter i skrivebordsflowkø. + 1030 + - fe3acdff-b36a-4488-bab0-6f2015c763d4 + e16c774d-f181-419d-936f-b49f46d27377 true - Fiscal Period Format + The TTL for new desktop flow queue log records. 1033 @@ -135275,7 +142878,7 @@ false isrenameable - false + true false false @@ -135287,7 +142890,7 @@ false - false + true canmodifysearchsettings false @@ -135298,36 +142901,30 @@ true true - fiscalperiodformat - 1900-01-01T00:00:00 + desktopflowqueuelogsttlinminutes + 2026-05-11T16:05:40.9330048 - false + true canmodifyrequirementlevelsettings - None + SystemRequired - FiscalPeriodFormat + DesktopFlowQueueLogsTtlInMinutes - StringType + IntegerType - 5.0.0.0 + 1.8.0.0 false 0 - Text - Auto - 25 - - - Text - - - false + None + 33554432 + -1 + 0 - 50 - 0d8324e6-918e-45b8-b309-250279989d19 + ee81ba78-a6cb-4ca7-920a-9e7bf99b945c Picklist @@ -135337,44 +142934,58 @@ false canmodifyadditionalsettings - false + true - 208 - 1900-01-01T00:00:00 + 10067 + 2025-11-06T02:47:57.7430016 - 3371ca16-7feb-4536-ab8c-cd9807919dc7 + 8055d32c-c376-4f91-ab0e-dd0fbb286037 true - Format in which the fiscal period will be displayed. + Toggle the activation of the Power Automate Desktop Flow run action logs. 1033 + + 12932209-392b-42cd-a672-a703f01bf2b1 + + true + Slå aktivering af handlingslogfiler til Power Automate-skrivebordsflow til/fra. + 1030 + - 3371ca16-7feb-4536-ab8c-cd9807919dc7 + 8055d32c-c376-4f91-ab0e-dd0fbb286037 true - Format in which the fiscal period will be displayed. + Toggle the activation of the Power Automate Desktop Flow run action logs. 1033 - e9d04d80-c037-447b-85ab-47a3914b3946 + 9c73ce0f-b744-4e11-88c3-178b3bc4983e true - Format for Fiscal Period + Desktop Flow Run Action Logs Status 1033 + + af299a19-5222-4ba4-90e0-dc1aaba6c9e8 + + true + Status for handlingslogfiler til kørsel af skrivebordsflow + 1030 + - e9d04d80-c037-447b-85ab-47a3914b3946 + 9c73ce0f-b744-4e11-88c3-178b3bc4983e true - Format for Fiscal Period + Desktop Flow Run Action Logs Status 1033 @@ -135405,7 +143016,7 @@ false isrenameable - false + true false false @@ -135417,7 +143028,7 @@ false - false + true canmodifysearchsettings false @@ -135428,172 +143039,141 @@ true true - fiscalperiodformatperiod - 1900-01-01T00:00:00 + desktopflowrunactionlogsstatus + 2026-05-11T16:05:39.3229952 - false + true canmodifyrequirementlevelsettings - None + SystemRequired - FiscalPeriodFormatPeriod + DesktopFlowRunActionLogsStatus PicklistType - 5.0.0.0 + 1.7.4.0 false 0 - -1 + 0 - 1a110e80-d464-4302-ba24-e7103d1a58bc + d4a1c0fd-baba-f011-bbd3-7c1e52365f30 - ad1ab5d6-b546-4717-9500-67d3fa455a0d + d6a1c0fd-baba-f011-bbd3-7c1e52365f30 true - Fiscal Period Format + The status of activation of the Power Automate Desktop Flow Run Action logs. 1033 + + 0e65b853-b818-4226-82ca-37da18b02890 + + true + Status for aktivering af handlingslogfiler til Power Automate-skrivebordsflow. + 1030 + - ad1ab5d6-b546-4717-9500-67d3fa455a0d + d6a1c0fd-baba-f011-bbd3-7c1e52365f30 true - Fiscal Period Format + The status of activation of the Power Automate Desktop Flow Run Action logs. 1033 - 05483850-2193-4a74-a333-aee8f723cc3e + d5a1c0fd-baba-f011-bbd3-7c1e52365f30 true - Fiscal Period Format + Desktop Flow Run Action Logs Status 1033 + + fc2eca7f-9c6f-421c-a2c4-cb38e5cd6cbd + + true + Status for handlingslogfiler til kørsel af skrivebordsflow + 1030 + - 05483850-2193-4a74-a333-aee8f723cc3e + d5a1c0fd-baba-f011-bbd3-7c1e52365f30 true - Fiscal Period Format + Desktop Flow Run Action Logs Status 1033 - - false + + true false iscustomizable - true + false false true - organization_fiscalperiodformat + organization_desktopflowrunactionlogsstatus Picklist - 5.0.0.0 + 1.7.4.0 - - - - - false - true - - 4e1542fc-bc4a-46cb-9412-39af782763b1 + 98a4903e-98e8-4537-ad37-cd2757263512 true - Quarter {0} + Power Automate Desktop Flow Run Action Logs are enabled. 1033 - 4e1542fc-bc4a-46cb-9412-39af782763b1 + 98a4903e-98e8-4537-ad37-cd2757263512 true - Quarter {0} + Power Automate Desktop Flow Run Action Logs are enabled. 1033 - - - 1 - - - - - - - - - - + false true - 136ec24b-74ba-4206-a3d1-48b2939f192b + 74debb9f-738d-40b9-9245-b48d30511537 true - Q{0} + Enabled 1033 - - - 136ec24b-74ba-4206-a3d1-48b2939f192b - - true - Q{0} - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - 7cfa396c-173c-44f1-96ec-6f2379558244 + 459c2002-2b23-4dab-9ba0-eba26c770c4d true - P{0} - 1033 + Aktiveret + 1030 - 7cfa396c-173c-44f1-96ec-6f2379558244 + 74debb9f-738d-40b9-9245-b48d30511537 true - P{0} + Enabled 1033 - 3 + 0 @@ -135601,65 +143181,53 @@ - - - - - false - true - - c0a0c700-9b5f-4f24-afdc-618ccf7dfd5b + ddc93912-94f3-4d26-b8e9-486464170c4d true - Month {0} + Power Automate Desktop Flow Run Action Logs are saved only on failure. 1033 - c0a0c700-9b5f-4f24-afdc-618ccf7dfd5b + ddc93912-94f3-4d26-b8e9-486464170c4d true - Month {0} + Power Automate Desktop Flow Run Action Logs are saved only on failure. 1033 - - - 4 - - - - - - - - - - + false true - afbf5a06-c3a9-4e32-b0e4-315c985acffc + a8b29e1c-4f3d-4533-8899-5c7b557c98f6 true - M{0} + OnFailure 1033 + + e4b363b3-d3ff-419a-84e9-a6b354a606b0 + + true + Ved fejl + 1030 + - afbf5a06-c3a9-4e32-b0e4-315c985acffc + a8b29e1c-4f3d-4533-8899-5c7b557c98f6 true - M{0} + OnFailure 1033 - 5 + 1 @@ -135667,91 +143235,79 @@ - - - - - false - true - - 1a4e1fa8-f828-4940-8352-c9a2984c805b + 89146724-8e28-41c8-8037-9ae237d5f62b true - Semester {0} + Power Automate Desktop Flow Run Action Logs are disabled. 1033 - 1a4e1fa8-f828-4940-8352-c9a2984c805b + 89146724-8e28-41c8-8037-9ae237d5f62b true - Semester {0} + Power Automate Desktop Flow Run Action Logs are disabled. 1033 - - - 6 - - - - - - - - - - + false true - 42def82a-597b-4db2-9f06-0e3ef46be451 + 5f8b56e3-6af5-471c-967c-70524747da6d true - Month Name + Disabled 1033 + + eb336763-d2f3-49fe-8dc8-7e4182afdd6e + + true + Deaktiveret + 1030 + - 42def82a-597b-4db2-9f06-0e3ef46be451 + 5f8b56e3-6af5-471c-967c-70524747da6d true - Month Name + Disabled 1033 - 7 + 2 - + 0 - 23fb8fa5-8b9f-435e-8594-7fa5613e1f4d + 29b7318b-0ff7-4da3-9965-80e4b13b9d52 - fiscalperiodformatperiod + desktopflowrunactionlogsstatus Virtual false false false - false + true canmodifyadditionalsettings - false + true - 209 - 1900-01-01T00:00:00 + 10068 + 2025-11-06T02:47:57.76 @@ -135765,15 +143321,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -135782,13 +143338,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -135800,7 +143356,7 @@ false - false + true canmodifysearchsettings false @@ -135811,72 +143367,86 @@ false false - fiscalperiodformatperiodname - 1900-01-01T00:00:00 + desktopflowrunactionlogsstatusname + 2025-11-06T02:47:57.76 - false + true canmodifyrequirementlevelsettings None - FiscalPeriodFormatPeriodName + desktopflowrunactionlogsstatusName VirtualType - 5.0.0.0 + 1.7.4.0 true - + - - c101c19d-e42e-4a6e-a289-371a08dcccf0 + + 52c9c7f4-273d-4251-8148-4c9748430a7f - Integer + Picklist false false false false canmodifyadditionalsettings - false + true - 7 - 1900-01-01T00:00:00 + 10071 + 2025-11-06T02:47:57.7900032 - 00d9dee2-2241-db11-898a-0007e9e17ebd + 5e6bd7c0-e604-4112-a9c7-368d3d8a0773 true - Type of fiscal period used throughout Microsoft CRM. + What verbosity level the Power Automate Desktop Flow Run Action Logs allow. 1033 + + 881956df-dd67-4450-ba06-ab1f3dd0dc7d + + true + Hvilket detaljeringsniveau handlingslogfilerne til kørsel af Power Automate-skrivebordsflow tillader. + 1030 + - 00d9dee2-2241-db11-898a-0007e9e17ebd + 5e6bd7c0-e604-4112-a9c7-368d3d8a0773 true - Type of fiscal period used throughout Microsoft CRM. + What verbosity level the Power Automate Desktop Flow Run Action Logs allow. 1033 - 7b1a87d1-81ea-4381-b5db-3dcf8d4145da + dbbe8e5b-ee84-41a1-8ccb-df14b7484ef7 true - Fiscal Period Type + Desktop Flow Run Action Log Verbosity 1033 + + 1ef3d778-bbb6-4a5b-a96c-0829a1d21c15 + + true + Detaljeringsgrad for logfiler for kørsel af skrivebordsflow + 1030 + - 7b1a87d1-81ea-4381-b5db-3dcf8d4145da + dbbe8e5b-ee84-41a1-8ccb-df14b7484ef7 true - Fiscal Period Type + Desktop Flow Run Action Log Verbosity 1033 @@ -135907,7 +143477,7 @@ false isrenameable - false + true false false @@ -135919,7 +143489,7 @@ false - false + true canmodifysearchsettings false @@ -135930,77 +143500,522 @@ true true - fiscalperiodtype - 1900-01-01T00:00:00 + desktopflowrunactionlogverbosity + 2026-05-11T16:05:40.2 - false + true canmodifyrequirementlevelsettings SystemRequired - FiscalPeriodType + DesktopFlowRunActionLogVerbosity - IntegerType + PicklistType - 5.0.0.0 + 1.8.47.0 false 0 - None - 2147483647 - -2147483648 - + 0 + + daa1c0fd-baba-f011-bbd3-7c1e52365f30 + + + + + dca1c0fd-baba-f011-bbd3-7c1e52365f30 + + true + What verbosity level the Power Automate Desktop Flow Run Action logs allow. + 1033 + + + fe4eef23-3d1a-4968-a899-d4a760e91b84 + + true + Hvilket detaljeringsniveau handlingslogfilerne til kørsel af Power Automate-skrivebordsflow tillader. + 1030 + + + + dca1c0fd-baba-f011-bbd3-7c1e52365f30 + + true + What verbosity level the Power Automate Desktop Flow Run Action logs allow. + 1033 + + + + + + dba1c0fd-baba-f011-bbd3-7c1e52365f30 + + true + Desktop Flow Run Action Log Verbosity + 1033 + + + 4ce2a491-5b86-4fe8-b111-e0d595cdcfbd + + true + Detaljeringsgrad for logfiler for kørsel af skrivebordsflow + 1030 + + + + dba1c0fd-baba-f011-bbd3-7c1e52365f30 + + true + Desktop Flow Run Action Log Verbosity + 1033 + + + + true + + false + iscustomizable + false + + false + true + organization_desktopflowrunactionlogverbosity + Picklist + 1.8.47.0 + + + + + + + + + 5b17d737-7fd8-4641-9e0b-678cb21b0173 + + true + All Power Automate Desktop Flow Run Action Logs are included. + 1033 + + + + 5b17d737-7fd8-4641-9e0b-678cb21b0173 + + true + All Power Automate Desktop Flow Run Action Logs are included. + 1033 + + + + false + true + + + + 0333458d-a026-490d-ab00-f4a0df6a2100 + + true + Full + 1033 + + + 48900d68-7d9d-428f-90e1-3132ce03d562 + + true + Fuld + 1030 + + + + 0333458d-a026-490d-ab00-f4a0df6a2100 + + true + Full + 1033 + + + + 0 + + + + + + + + + + b9e988c7-a88a-4f6d-a063-fb635c33b628 + + true + All Power Automate Desktop Flow Run Action Logs except Built-in Actions Logs. + 1033 + + + + b9e988c7-a88a-4f6d-a063-fb635c33b628 + + true + All Power Automate Desktop Flow Run Action Logs except Built-in Actions Logs. + 1033 + + + + false + true + + + + 2eae69ff-5574-4c0e-a5d3-546782c0ef58 + + true + Debug + 1033 + + + 46d220ea-ce0e-48a3-b055-b227d9089159 + + true + Fejlfinding + 1030 + + + + 2eae69ff-5574-4c0e-a5d3-546782c0ef58 + + true + Debug + 1033 + + + + 1 + + + + + + + + + + 56cad343-2199-4c55-b6b9-ca77d5d31018 + + true + Power Automate Desktop Flow Run Action Logs Using Log Message Action and all Warning and Errors Action Logs. + 1033 + + + + 56cad343-2199-4c55-b6b9-ca77d5d31018 + + true + Power Automate Desktop Flow Run Action Logs Using Log Message Action and all Warning and Errors Action Logs. + 1033 + + + + false + true + + + + 2208755b-9b05-40a1-bffe-7529af0dbc79 + + true + Custom + 1033 + + + 0f51dba8-7e83-4109-a367-a604d766a18d + + true + Brugerdefineret + 1030 + + + + 2208755b-9b05-40a1-bffe-7529af0dbc79 + + true + Custom + 1033 + + + + 2 + + + + + + + + + + fd8737b7-2bd9-4b3a-b58b-385513eec823 + + true + Power Automate Desktop Flow Run Action Warning and Error Logs. + 1033 + + + + fd8737b7-2bd9-4b3a-b58b-385513eec823 + + true + Power Automate Desktop Flow Run Action Warning and Error Logs. + 1033 + + + + false + true + + + + b943b919-9843-415f-a1c2-28a498606a77 + + true + Warning + 1033 + + + cfc06169-b612-44f6-a887-42ab44a49fba + + true + Advarsel + 1030 + + + + b943b919-9843-415f-a1c2-28a498606a77 + + true + Warning + 1033 + + + + 3 + + + + + + + + + + e33ad8fc-d142-4097-beb7-39d8476d7c44 + + true + Power Automate Desktop Flow Run Action Error Logs only. + 1033 + + + + e33ad8fc-d142-4097-beb7-39d8476d7c44 + + true + Power Automate Desktop Flow Run Action Error Logs only. + 1033 + + + + false + true + + + + 617fab78-5a0f-4ee0-8a08-950cf8fa858c + + true + Error + 1033 + + + 88dbcbe7-0545-457b-a836-18abaad58fb7 + + true + Fejl + 1030 + + + + 617fab78-5a0f-4ee0-8a08-950cf8fa858c + + true + Error + 1033 + + + + 4 + + + + + + + 0 + + - - 30b6ec2c-6753-4d8f-a637-aac0fb2b2fb0 + + 71c872f9-1702-445b-8fcd-f55cdacdc255 + + desktopflowrunactionlogverbosity + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10072 + 2025-11-06T02:47:57.8070016 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + desktopflowrunactionlogverbosityname + 2025-11-06T02:47:57.8070016 + + true + canmodifyrequirementlevelsettings + None + + desktopflowrunactionlogverbosityName + + + VirtualType + + 1.8.47.0 + true + + + + + 26ea9d73-eba2-4b4c-8d2b-4497622d37ba - Boolean + Picklist false false false false canmodifyadditionalsettings - false + true - 61 - 1900-01-01T00:00:00 - 5.0.0.0 + 10069 + 2025-11-06T02:47:57.76 + - 0191aa12-2341-db11-898a-0007e9e17ebd + c8b109e2-38cd-4886-bee6-972c478bb771 true - Information that specifies whether the fiscal settings have been updated. + Where the Power Automate Desktop Flow Run Action logs are stored. 1033 + + ab61f171-d808-4231-a7f0-1becb5819c74 + + true + Hvor handlingslogfilerne for kørsel af Power Automate-skrivebordsflow gemmes. + 1030 + - 0191aa12-2341-db11-898a-0007e9e17ebd + c8b109e2-38cd-4886-bee6-972c478bb771 true - Information that specifies whether the fiscal settings have been updated. + Where the Power Automate Desktop Flow Run Action logs are stored. 1033 - b2c904da-cbd2-407a-a0d3-8ed712db3dd3 + 2fc28b32-2762-4839-8153-ecff4df4f786 true - Is Fiscal Settings Updated + Desktop Flow Run Action Log Version 1033 + + 4d7c7c4b-2c5b-4fc5-abad-dce01c3d3aad + + true + Version af handlingslogfiler til kørsel af skrivebordsflow + 1030 + - b2c904da-cbd2-407a-a0d3-8ed712db3dd3 + 2fc28b32-2762-4839-8153-ecff4df4f786 true - Is Fiscal Settings Updated + Desktop Flow Run Action Log Version 1033 @@ -136031,7 +144046,7 @@ false isrenameable - false + true false false @@ -136043,157 +144058,287 @@ false - false + true canmodifysearchsettings false - false + true false false true - false - false + true + true - fiscalsettingsupdated - 1900-01-01T00:00:00 + desktopflowrunactionlogversion + 2026-05-11T16:05:39.7929984 - false + true canmodifyrequirementlevelsettings SystemRequired - FiscalSettingsUpdated + DesktopFlowRunActionLogVersion - BooleanType + PicklistType - 5.0.0.0 + 1.7.4.0 false 0 - false + 0 - b4e34166-b92b-4428-a2dc-cc7b235c8305 + d7a1c0fd-baba-f011-bbd3-7c1e52365f30 - c86def0c-517e-45c5-8e0d-2676e8e2d751 + d9a1c0fd-baba-f011-bbd3-7c1e52365f30 true - Information that specifies whether the fiscal settings have been updated. + Where the Power Automate Desktop Flow Run Action logs are stored. 1033 + + f6f2e656-671b-4f85-b4b9-8a0ca08f9464 + + true + Hvor handlingslogfilerne for kørsel af Power Automate-skrivebordsflow gemmes. + 1030 + - c86def0c-517e-45c5-8e0d-2676e8e2d751 + d9a1c0fd-baba-f011-bbd3-7c1e52365f30 true - Information that specifies whether the fiscal settings have been updated. + Where the Power Automate Desktop Flow Run Action logs are stored. 1033 - - + + + d8a1c0fd-baba-f011-bbd3-7c1e52365f30 + + true + Desktop Flow Run Action Log Version + 1033 + + + e5509979-a8f2-4daf-9cb1-7b122640dcc1 + + true + Version af handlingslogfiler til kørsel af skrivebordsflow + 1030 + + + + d8a1c0fd-baba-f011-bbd3-7c1e52365f30 + + true + Desktop Flow Run Action Log Version + 1033 + - - false + + true false iscustomizable - true + false false true - organization_fiscalsettingsupdated - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 5dc888bf-e780-db11-9b85-00137299e160 + organization_desktopflowrunactionlogversion + Picklist + 1.7.4.0 + + + + + + + + + 5480200e-a770-473f-aff5-f777b541b0dd + + true + Power Automate Desktop Flow Run Action Logs are stored in the Additional Context field of the Flow Session. + 1033 + + + + 5480200e-a770-473f-aff5-f777b541b0dd - true - No - 1033 - - - - 5dc888bf-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 5fc888bf-e780-db11-9b85-00137299e160 + true + Power Automate Desktop Flow Run Action Logs are stored in the Additional Context field of the Flow Session. + 1033 + + + + false + true + + + + 15e8911b-3d2c-4f31-99a7-ee67379b56b9 + + true + AdditionalContext + 1033 + + + bad5736f-8ed7-4849-bbcd-3e5084354ae7 + + true + AdditionalContext + 1030 + + + + 15e8911b-3d2c-4f31-99a7-ee67379b56b9 - true - Yes - 1033 - - - - 5fc888bf-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - + true + AdditionalContext + 1033 + + + + 0 + + + + + + + + + + 0bd7c994-f36d-4344-a1b4-c8b6b4b66923 + + true + Power Automate Desktop Flow Run Action Logs are stored in the Flow Logs Dataverse Entity. + 1033 + + + + 0bd7c994-f36d-4344-a1b4-c8b6b4b66923 + + true + Power Automate Desktop Flow Run Action Logs are stored in the Flow Logs Dataverse Entity. + 1033 + + + + false + true + + + + eb05e0b0-739b-4157-9e1e-401484304404 + + true + FlowLogs + 1033 + + + da001db7-4e3f-4810-b7c5-b4290ca976f0 + + true + FlowLogs + 1030 + + + + eb05e0b0-739b-4157-9e1e-401484304404 + + true + FlowLogs + 1033 + + + + 1 + + + + + + + + + + e346bea6-7881-447e-aabb-3b9386e8866e + + true + Power Automate Desktop Flow Run Action Logs are stored in the Additional Context field of the Flow Session and the Flow Logs Dataverse Entity. + 1033 + + + + e346bea6-7881-447e-aabb-3b9386e8866e + + true + Power Automate Desktop Flow Run Action Logs are stored in the Additional Context field of the Flow Session and the Flow Logs Dataverse Entity. + 1033 + + + + false + true + + + + d66e7828-55f7-4fcd-802f-50ce71deec4c + + true + AdditionalContextAndFlowLogs + 1033 + + + b0d750ee-4126-407b-9ed9-31aedd07ce3b + + true + AdditionalContextAndFlowLogs + 1030 + + + + d66e7828-55f7-4fcd-802f-50ce71deec4c + + true + AdditionalContextAndFlowLogs + 1033 + + + + 2 + + + + - + + 0 + + - 5dc4ec4e-d448-4eeb-bb6e-1e4eba1238d6 + 5bebedda-eac9-41d2-9cd4-4d95eb06ae9f - fiscalsettingsupdated + desktopflowrunactionlogversion Virtual false false false - false + true canmodifyadditionalsettings - false + true - 97 - 1900-01-01T00:00:00 - 5.0.0.0 + 10070 + 2025-11-06T02:47:57.7730048 + @@ -136206,15 +144351,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -136223,13 +144368,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -136241,7 +144386,7 @@ false - false + true canmodifysearchsettings false @@ -136252,28 +144397,28 @@ false false - fiscalsettingsupdatedname - 1900-01-01T00:00:00 + desktopflowrunactionlogversionname + 2025-11-06T02:47:57.7730048 - false + true canmodifyrequirementlevelsettings None - FiscalSettingsUpdatedName + desktopflowrunactionlogversionName VirtualType - 5.0.0.0 + 1.7.4.0 true - + - - 6f3797e5-8750-48a4-85aa-9713d66507ad + + fd6c80cd-f744-4128-b2f0-8dce9c0a9712 - Integer + String false false false @@ -136282,42 +144427,56 @@ canmodifyadditionalsettings false - 83 + 18 1900-01-01T00:00:00 - b440b506-2341-db11-898a-0007e9e17ebd + 0c64cfee-2241-db11-898a-0007e9e17ebd true - Information that specifies whether the fiscal year should be displayed based on the start date or the end date of the fiscal year. + Reason for disabling the organization. 1033 + + 7f2b3b2a-2fe6-4994-8ed9-75c43e490a07 + + true + Årsag til deaktivering af organisationen. + 1030 + - b440b506-2341-db11-898a-0007e9e17ebd + 0c64cfee-2241-db11-898a-0007e9e17ebd true - Information that specifies whether the fiscal year should be displayed based on the start date or the end date of the fiscal year. + Reason for disabling the organization. 1033 - 9c683525-b0fe-4101-a1f9-01fafd716ce8 + 24d9611c-50e4-4de5-a391-170959a9a9ae true - Fiscal Year Display + Disabled Reason 1033 + + a39069d4-720b-4dcb-a83e-108491737ee7 + + true + Årsag til deaktivering + 1030 + - 9c683525-b0fe-4101-a1f9-01fafd716ce8 + 24d9611c-50e4-4de5-a391-170959a9a9ae true - Fiscal Year Display + Disabled Reason 1033 @@ -136364,40 +144523,46 @@ canmodifysearchsettings false - true + false false false true - true + false true - fiscalyeardisplaycode + disabledreason 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - FiscalYearDisplayCode + DisabledReason - IntegerType + StringType 5.0.0.0 false 0 - None - - + Text + Auto + 500 + + + Text + + false 0 + 1000 - - de3a69bf-d3f7-4749-a571-31f96147467f + + 26f156ef-ba2d-4a15-a14e-ac23971afddd - String + Boolean false false false @@ -136406,42 +144571,56 @@ canmodifyadditionalsettings false - 34 + 257 1900-01-01T00:00:00 - 9226e7d6-2241-db11-898a-0007e9e17ebd + 6a6909c8-91d2-4496-8645-c7363fc24114 true - Information that specifies how the name of the fiscal year is displayed throughout Microsoft CRM. + Indicates whether Social Care is disabled. 1033 + + b0a893d3-d852-49d1-9b0f-8eced14524f6 + + true + Angiver, om Social Care er deaktiveret. + 1030 + - 9226e7d6-2241-db11-898a-0007e9e17ebd + 6a6909c8-91d2-4496-8645-c7363fc24114 true - Information that specifies how the name of the fiscal year is displayed throughout Microsoft CRM. + Indicates whether Social Care is disabled. 1033 - 2f721a61-1a60-4698-af17-95c1db83ff34 + cfb0a39c-7adf-46f2-8182-498f93a0792c true - Fiscal Year Format + Is Social Care disabled 1033 + + e5a17495-79e3-48e2-9b27-85fbdb45df6b + + true + Er Social Care deaktiveret + 1030 + - 2f721a61-1a60-4698-af17-95c1db83ff34 + cfb0a39c-7adf-46f2-8182-498f93a0792c true - Fiscal Year Format + Is Social Care disabled 1033 @@ -136495,39 +144674,156 @@ true true - fiscalyearformat + disablesocialcare 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - FiscalYearFormat + DisableSocialCare - StringType + BooleanType - 5.0.0.0 + 6.1.0.0 false 0 - Text - Auto - 25 - - - Text - + false + + 09e749b7-a837-4812-90f0-69ac5c43b7e0 + + + + + 9164ff8e-2b20-43ce-a4f9-4c249d438491 + + true + Flag to disable Social Care. + 1033 + + + a2fc2091-90c6-4e58-9627-8e1dee91595f + + true + Markér for at deaktivere Social Care. + 1030 + + + + 9164ff8e-2b20-43ce-a4f9-4c249d438491 + + true + Flag to disable Social Care. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_disablesocialcare + Boolean + 6.1.0.0 + + + + + + + + + + false + true + + + + c66f8f3a-45bd-4650-8ad3-7b4e11f865fd + + true + No + 1033 + + + 884fa35b-5804-456e-a998-e74b70f42e3a + + true + Nej + 1030 + + + + c66f8f3a-45bd-4650-8ad3-7b4e11f865fd + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + b1190770-9d99-45ef-a84e-edc1ce4ceb5d + + true + Yes + 1033 + + + bcf15055-3c24-41d0-80d4-07fa1719f5d6 + + true + Ja + 1030 + + + + b1190770-9d99-45ef-a84e-edc1ce4ceb5d + + true + Yes + 1033 + + + + 1 + + + - false 0 - 50 - - 72b39519-d790-4c0c-a156-f02d12318521 + + 02366f93-339f-4ef5-a9f2-cd0448bd09f8 - Picklist + Boolean false false false @@ -136536,42 +144832,42 @@ canmodifyadditionalsettings false - 194 - 1900-01-01T00:00:00 + 10002 + 2025-11-06T01:05:35.3769984 - bc6c8f94-32d4-460c-bfea-4d34a1518f72 + 0c4b8234-c53f-4167-a33f-698e4b489ca3 true - Prefix for the display of the fiscal year. + Disable sharing system labels for the organization. 1033 - bc6c8f94-32d4-460c-bfea-4d34a1518f72 + 0c4b8234-c53f-4167-a33f-698e4b489ca3 true - Prefix for the display of the fiscal year. + Disable sharing system labels for the organization. 1033 - cb22090c-9906-4c8e-9fe1-995ebd176bae + 7fa4b4bf-9957-477f-8a85-3795fe23e5fb true - Prefix for Fiscal Year + Disable System Labels Cache Sharing. 1033 - cb22090c-9906-4c8e-9fe1-995ebd176bae + 7fa4b4bf-9957-477f-8a85-3795fe23e5fb true - Prefix for Fiscal Year + Disable System Labels Cache Sharing. 1033 @@ -136587,7 +144883,7 @@ false iscustomizable - true + false false false @@ -136625,154 +144921,148 @@ true true - fiscalyearformatprefix - 1900-01-01T00:00:00 + disablesystemlabelscachesharing + 2025-11-06T01:05:35.3769984 false canmodifyrequirementlevelsettings - None + SystemRequired - FiscalYearFormatPrefix + DisableSystemLabelsCacheSharing - PicklistType + BooleanType - 5.0.0.0 + 9.2.0.0 false 0 - - + + false - 480fcdcc-8ece-48b9-a3b8-7d98e9faf470 + 00b46aad-acba-f011-bbd3-7c1e52365f30 - 1dbad5f6-6171-4b3a-9e88-6a14fd799770 + 02b46aad-acba-f011-bbd3-7c1e52365f30 true - Fiscal Year Format Prefix + Enable or disable System Labels Cache Sharing. 1033 - 1dbad5f6-6171-4b3a-9e88-6a14fd799770 + 02b46aad-acba-f011-bbd3-7c1e52365f30 true - Fiscal Year Format Prefix + Enable or disable System Labels Cache Sharing. 1033 - f5cd10c3-0d06-4bf9-8e57-f9ecaae3b615 + 01b46aad-acba-f011-bbd3-7c1e52365f30 true - Fiscal Year Format Prefix + System Labels Cache Sharing. 1033 - f5cd10c3-0d06-4bf9-8e57-f9ecaae3b615 + 01b46aad-acba-f011-bbd3-7c1e52365f30 true - Fiscal Year Format Prefix + System Labels Cache Sharing. 1033 - false + true false iscustomizable - true + false false true - organization_fiscalyearformatprefix - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 3f992a5b-3ca9-49ff-8c6e-f213ec4f6625 - - true - FY - 1033 - - - - 3f992a5b-3ca9-49ff-8c6e-f213ec4f6625 + organization_disablesystemlabelscachesharing + Boolean + 9.2.0.0 + + + + + + + + + + false + true + + + + a124d6e8-7689-46e7-962b-1882ec3db9c2 - true - FY - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - e5c3e7b6-bb07-471f-91db-a15ade930abf - - true - - 1033 - - - - e5c3e7b6-bb07-471f-91db-a15ade930abf + true + No + 1033 + + + + a124d6e8-7689-46e7-962b-1882ec3db9c2 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + bbfb02e6-662d-473c-9aa5-adddd45e6b0a - true - - 1033 - - - - 2 - - - - + true + Yes + 1033 + + + + bbfb02e6-662d-473c-9aa5-adddd45e6b0a + + true + Yes + 1033 + + + + 1 + + - - + 0 - - - 40150bf2-ba80-42d7-81c0-86728cbc7a59 + c0556050-22b0-410e-ad7a-1c8e57c5365b - fiscalyearformatprefix + disablesystemlabelscachesharing Virtual false false @@ -136780,10 +145070,10 @@ false canmodifyadditionalsettings - false + true - 195 - 1900-01-01T00:00:00 + 10003 + 2025-11-06T01:05:35.4099968 @@ -136797,7 +145087,7 @@ - false + true canmodifyauditsettings false @@ -136805,7 +145095,7 @@ false iscustomizable - false + true false false @@ -136820,7 +145110,7 @@ false isrenameable - false + true false false @@ -136832,7 +145122,7 @@ false - false + true canmodifysearchsettings false @@ -136843,25 +145133,25 @@ false false - fiscalyearformatprefixname - 1900-01-01T00:00:00 + disablesystemlabelscachesharingname + 2025-11-06T01:05:35.4099968 - false + true canmodifyrequirementlevelsettings None - FiscalYearFormatPrefixName + disablesystemlabelscachesharingName VirtualType - 5.0.0.0 + 9.2.0.0 true - + - 4fd64fda-9c08-498c-a4e2-bbe4f3a81b42 + f14c5172-4338-4e79-a684-eabbcc3c282c Picklist @@ -136873,42 +145163,56 @@ canmodifyadditionalsettings false - 196 + 200 1900-01-01T00:00:00 - 9f11ea0d-d92d-4d22-bbc1-2d25e8158a69 + dbc9a332-ef67-4cf2-b1b6-7d6fd0c99a68 true - Suffix for the display of the fiscal year. + Discount calculation method for the QOOI product. 1033 + + f1da2652-7fc2-427e-a662-5db9be380151 + + true + Rabatberegningsmetode for QOOI-produktet. + 1030 + - 9f11ea0d-d92d-4d22-bbc1-2d25e8158a69 + dbc9a332-ef67-4cf2-b1b6-7d6fd0c99a68 true - Suffix for the display of the fiscal year. + Discount calculation method for the QOOI product. 1033 - d427f8b6-df35-4b5d-9acd-c9ac6de7c7cc + 0dbdd78b-35bf-494e-8882-7dc047fe44d6 true - Suffix for Fiscal Year + Discount calculation method 1033 + + 400900cb-8ee8-4304-a9eb-0de5da8bb51c + + true + Rabatberegningsmetode + 1030 + - d427f8b6-df35-4b5d-9acd-c9ac6de7c7cc + 0dbdd78b-35bf-494e-8882-7dc047fe44d6 true - Suffix for Fiscal Year + Discount calculation method 1033 @@ -136939,7 +145243,7 @@ false isrenameable - false + true false false @@ -136962,59 +145266,73 @@ true true - fiscalyearformatsuffix + discountcalculationmethod 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - FiscalYearFormatSuffix + DiscountCalculationMethod PicklistType - 5.0.0.0 + 7.0.0.0 false 0 - + 0 - 354a0d56-47c8-4e41-9e4f-578111998723 + 149d8cab-160b-4ce2-8147-de98c25ff93c - af7b29ef-db79-4b67-a6a8-9c7bd2e72011 + 370a0be9-2842-43e6-ab6f-b4921b96874c true - Fiscal Year Format Suffix + Discount calculation Method for the QOOI product 1033 + + cca119ad-f515-4047-8305-9cee90c4568f + + true + Rabatberegningsmetode for QOOI-produkt + 1030 + - af7b29ef-db79-4b67-a6a8-9c7bd2e72011 + 370a0be9-2842-43e6-ab6f-b4921b96874c true - Fiscal Year Format Suffix + Discount calculation Method for the QOOI product 1033 - 60c977ca-38a3-4452-ac0e-f7beac8ac5ca + 7e953496-4945-44a8-9e34-edd0de867314 true - Fiscal Year Format Suffix + Discount calculation Method 1033 + + 1508bfb5-3819-404a-b0e3-061c0e5a827a + + true + Rabatberegningsmetode + 1030 + - 60c977ca-38a3-4452-ac0e-f7beac8ac5ca + 7e953496-4945-44a8-9e34-edd0de867314 true - Fiscal Year Format Suffix + Discount calculation Method 1033 @@ -137023,13 +145341,13 @@ false iscustomizable - true + false false true - organization_fiscalyearformatsuffix + organization_discountcalculationmethod Picklist - 5.0.0.0 + 7.0.0.0 @@ -137045,56 +145363,30 @@ - e9ba91f8-3376-4a64-893d-2202a5a402a5 + b15d5038-849c-4419-a6f2-17e46f84baa3 true - FY + Line item 1033 - - - e9ba91f8-3376-4a64-893d-2202a5a402a5 - - true - FY - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - acde7b26-814b-4598-8f98-035d21cf0b92 + 90df36a8-6db2-48b1-ae92-c28fa6b0c6b2 true - Fiscal Year - 1033 + Linjeelement + 1030 - acde7b26-814b-4598-8f98-035d21cf0b92 + b15d5038-849c-4419-a6f2-17e46f84baa3 true - Fiscal Year + Line item 1033 - 2 + 0 @@ -137111,23 +145403,30 @@ - 4dbc7ffa-c521-4c8b-8e03-bb84f1c7746a + 9e6f3dc9-7710-4626-bc57-aee3820f605f true - + Per unit 1033 + + ec2dadae-392b-4e7d-98f2-a71d35e8813f + + true + Pr. enhed + 1030 + - 4dbc7ffa-c521-4c8b-8e03-bb84f1c7746a + 9e6f3dc9-7710-4626-bc57-aee3820f605f true - + Per unit 1033 - 3 + 1 @@ -137139,11 +145438,11 @@ - - bfc186da-a24e-4f59-b377-c3fc02656717 + + 27a2c6ee-4572-4c16-8c63-46e0b50c4ac4 - fiscalyearformatsuffix - Virtual + + Boolean false false false @@ -137152,24 +145451,66 @@ canmodifyadditionalsettings false - 197 + 367 1900-01-01T00:00:00 - - + + + bef78427-343d-409d-b18e-00369a5f6792 + + true + Indicates whether or not navigation tour is displayed. + 1033 + + + 49bb090f-6884-4579-bb7f-174fb509e1a6 + + true + Angiver, om navigationsrundvisningen vises. + 1030 + + + + bef78427-343d-409d-b18e-00369a5f6792 + + true + Indicates whether or not navigation tour is displayed. + 1033 + - - + + + 583ee820-8f28-4eb2-b9f1-bda06c21d846 + + true + Display Navigation Tour + 1033 + + + bea52157-2e49-4619-896c-d09c18f73167 + + true + Vis navigationsrundvisning + 1030 + + + + 583ee820-8f28-4eb2-b9f1-bda06c21d846 + + true + Display Navigation Tour + 1033 + organization - false + true canmodifyauditsettings - false + true false @@ -137206,32 +145547,160 @@ canmodifysearchsettings false - false + true false false true - false - false + true + true - fiscalyearformatsuffixname + displaynavigationtour 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - FiscalYearFormatSuffixName + DisplayNavigationTour - VirtualType + BooleanType - 5.0.0.0 - true - + 7.0.0.0 + false + 0 + true + + b10fe6b2-a942-4fea-ae63-5e5457d33934 + + + + + 9391556b-24e5-4801-86c6-33afd4a81ea2 + + true + Flag to display Navigation Tour. + 1033 + + + 5037a286-56b5-4155-90c1-971ece2feef4 + + true + Markér for at starte navigationsrundvisningen. + 1030 + + + + 9391556b-24e5-4801-86c6-33afd4a81ea2 + + true + Flag to display Navigation Tour. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + organization_displaynavigationtour + Boolean + 7.0.0.0 + + + + + + + + + + false + true + + + + a3914f71-dc51-47d7-b0a4-c0b69dc33f61 + + true + No + 1033 + + + 08de55e6-17e6-49a0-94d2-63a6bbd65e1d + + true + Nej + 1030 + + + + a3914f71-dc51-47d7-b0a4-c0b69dc33f61 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 4c27b2d6-c469-4855-bbb5-dbac964ea0c3 + + true + Yes + 1033 + + + 5469ba06-6818-4c86-9b66-b25cfb50a750 + + true + Ja + 1030 + + + + 4c27b2d6-c469-4855-bbb5-dbac964ea0c3 + + true + Yes + 1033 + + + + 1 + + + + + 0 - 22641237-54de-472b-9018-8308403e3fe9 + dbd40a7d-f526-4f4d-88b5-8483c0b410fe Picklist @@ -137243,42 +145712,56 @@ canmodifyadditionalsettings false - 198 + 236 1900-01-01T00:00:00 - 6a939053-431f-400e-a83a-bf4b8c384fb9 + 3744a50f-97e2-4202-bde0-664f639eca91 true - Format for the year. + Select if you want to use the Email Router or server-side synchronization for email processing. 1033 + + 4e981bc8-f754-45a0-9bda-e6bba9d9dd0d + + true + Vælg denne, hvis du vil bruge E-mail Router eller synkronisering på serversiden til behandling af e-mails. + 1030 + - 6a939053-431f-400e-a83a-bf4b8c384fb9 + 3744a50f-97e2-4202-bde0-664f639eca91 true - Format for the year. + Select if you want to use the Email Router or server-side synchronization for email processing. 1033 - 18519af5-b8c6-436f-b321-1b2937352c86 + f17092d8-8d06-4f0e-a558-388f4f2f93be true - Fiscal Year Format Year + Email Connection Channel 1033 + + 86551ee4-453e-44ad-ba3b-5d0c9d7a58b0 + + true + Kanal til mailforbindelse + 1030 + - 18519af5-b8c6-436f-b321-1b2937352c86 + f17092d8-8d06-4f0e-a558-388f4f2f93be true - Fiscal Year Format Year + Email Connection Channel 1033 @@ -137332,61 +145815,54 @@ true true - fiscalyearformatyear + emailconnectionchannel 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - FiscalYearFormatYear + EmailConnectionChannel PicklistType - 5.0.0.0 + 6.0.0.0 false 0 - + 0 - 51c34d01-9514-439c-b530-b3c2bfa04112 + 14813fa2-10d5-4aa8-8e8f-33cd5a3bc201 - 98b348d4-c23a-4ba0-9dbf-e7467eea64fe + 189c076c-fa92-4fb2-bf2b-ef7441944cc2 true - Fiscal Year Format + Select whether you want to use the Email Router or server-side synchronization for email processing. 1033 - - - 98b348d4-c23a-4ba0-9dbf-e7467eea64fe - - true - Fiscal Year Format - 1033 - - - - - 9431f041-71a6-407e-9b45-de9819050127 + 8da6f555-f8f7-486d-b457-b096aa50537a true - Fiscal Year Format - 1033 + Vælg, om du vil bruge E-mail Router eller synkronisering på serversiden til behandling af e-mails. + 1030 - 9431f041-71a6-407e-9b45-de9819050127 + 189c076c-fa92-4fb2-bf2b-ef7441944cc2 true - Fiscal Year Format + Select whether you want to use the Email Router or server-side synchronization for email processing. 1033 + + + + false @@ -137397,9 +145873,9 @@ false true - organization_fiscalyearformatyear + organization_emailconnectionchannel Picklist - 5.0.0.0 + 6.0.0.0 @@ -137415,56 +145891,30 @@ - 846048b9-6751-4c48-883c-112f5ece6880 + 48a35e84-ede0-422b-bdeb-4ca7375c64fe true - YYYY + Server-Side Synchronization 1033 - - - 846048b9-6751-4c48-883c-112f5ece6880 - - true - YYYY - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - b98320db-bb92-4ae0-9002-6590f0a33e5a + 2a5ceec5-8002-4ad2-822a-613f41dfa56e true - YY - 1033 + Synkronisering på serversiden + 1030 - b98320db-bb92-4ae0-9002-6590f0a33e5a + 48a35e84-ede0-422b-bdeb-4ca7375c64fe true - YY + Server-Side Synchronization 1033 - 2 + 0 @@ -137481,23 +145931,30 @@ - 7b6896ba-8acf-4929-978b-c021a2d7a357 + be9dfa2d-8d27-4e2b-a2f8-416a807cd5cb true - GGYY + Microsoft Dynamics 365 Email Router 1033 + + 78759719-9f85-4e31-9aa3-b3d1a59883e6 + + true + Microsoft Dynamics 365 E-mail Router + 1030 + - 7b6896ba-8acf-4929-978b-c021a2d7a357 + be9dfa2d-8d27-4e2b-a2f8-416a807cd5cb true - GGYY + Microsoft Dynamics 365 Email Router 1033 - 3 + 1 @@ -137509,146 +145966,69 @@ - - 41e13694-60b0-486f-8004-3364c00256df - - fiscalyearformatyear - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 199 - 1900-01-01T00:00:00 - - - - - - - - - - organization - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - fiscalyearformatyearname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - FiscalYearFormatYearName - - - VirtualType - - 5.0.0.0 - true - - - - - a54e8c12-3fcb-42fa-8b26-f875b1cafd3d + + 0d2824a7-0179-4b4d-ad91-c86e33e67664 - String + Boolean false false false false canmodifyadditionalsettings - false + true - 36 + 227 1900-01-01T00:00:00 - 3498ba00-2341-db11-898a-0007e9e17ebd + aa77c507-edfb-4dae-952d-d68521bb3c64 true - Information that specifies how the names of the fiscal year and the fiscal period should be connected when displayed together. + Flag to turn email correlation on or off. 1033 + + fb02ce71-74d0-4fe1-b254-4d539e2831a3 + + true + Flag for aktivering og deaktivering af mailkorrelation. + 1030 + - 3498ba00-2341-db11-898a-0007e9e17ebd + aa77c507-edfb-4dae-952d-d68521bb3c64 true - Information that specifies how the names of the fiscal year and the fiscal period should be connected when displayed together. + Flag to turn email correlation on or off. 1033 - 524e3603-2ecc-4f2a-8654-588ce84fb6d7 + 14566b76-f600-41a6-b2ec-148a8eed3100 true - Fiscal Year Period Connector + Use Email Correlation 1033 + + c02976e7-36d5-426d-b6fc-8b08ccf14d07 + + true + Brug mailkorrelation + 1030 + - 524e3603-2ecc-4f2a-8654-588ce84fb6d7 + 14566b76-f600-41a6-b2ec-148a8eed3100 true - Fiscal Year Period Connector + Use Email Correlation 1033 @@ -137664,7 +146044,7 @@ false iscustomizable - true + false false false @@ -137702,36 +146082,153 @@ true true - fiscalyearperiodconnect + emailcorrelationenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - FiscalYearPeriodConnect + EmailCorrelationEnabled - StringType + BooleanType - 5.0.0.0 + 6.0.0.0 false 0 - Text - Auto - 5 - - - Text - + true + + 28b02666-4b81-4cd0-80c7-ed3cccfa7e49 + + + + + e952dade-929d-4d46-b00d-dcd5cee3e929 + + true + Enable Email Correlation + 1033 + + + b4d54254-8e12-4d2e-9fd5-097600be76ef + + true + Aktivér mailkorrelation + 1030 + + + + e952dade-929d-4d46-b00d-dcd5cee3e929 + + true + Enable Email Correlation + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + organization_emailcorrelationenabled + Boolean + 6.0.0.0 + + + + + + + + + + false + true + + + + ea689728-e6a3-4c9a-9650-7d59615b9d74 + + true + No + 1033 + + + 1f42c9fa-3c59-4125-948a-a9484166f1b6 + + true + Nej + 1030 + + + + ea689728-e6a3-4c9a-9650-7d59615b9d74 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 88e844ef-75b1-4cc0-a087-c321130fb7bd + + true + Yes + 1033 + + + f85061fe-7576-4038-a0ae-3f01c6005c1e + + true + Ja + 1030 + + + + 88e844ef-75b1-4cc0-a087-c321130fb7bd + + true + Yes + 1033 + + + + 1 + + + - false 0 - 10 - 11bca369-8212-432c-a98a-2f291e140ef8 + 4efcaa69-8e02-dc11-aa9d-00123f558caf Integer @@ -137741,168 +146238,58 @@ false canmodifyadditionalsettings - true + false - 10073 - 2025-11-06T02:47:57.8200064 + 140 + 1900-01-01T00:00:00 - f8ae8a1c-3841-40a7-bc14-f75bae31f7d9 + 765b34c2-4103-dc11-aa9d-00123f558caf true - Default time to live in minutes for new records in the Flow Logs entity. + Normal polling frequency used for sending email in Microsoft Office Outlook. 1033 - - - f8ae8a1c-3841-40a7-bc14-f75bae31f7d9 - - true - Default time to live in minutes for new records in the Flow Logs entity. - 1033 - - - - - bfd69ed8-f203-4dcd-86c9-d1324be853fb + 6c896ae1-6cee-4c6f-80b8-dc4a3cc5d11e true - The TTL for records in the Flow Logs Entity. - 1033 + Normal pollingfrekvens anvendt til e-mail-afsendelse i Microsoft Office Outlook. + 1030 - bfd69ed8-f203-4dcd-86c9-d1324be853fb + 765b34c2-4103-dc11-aa9d-00123f558caf true - The TTL for records in the Flow Logs Entity. + Normal polling frequency used for sending email in Microsoft Office Outlook. 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - true - false - false - true - true - true - - flowlogsttlinminutes - 2025-11-06T02:47:57.8200064 - - true - canmodifyrequirementlevelsettings - SystemRequired - - FlowLogsTtlInMinutes - - - IntegerType - - 1.8.0.0 - false - 0 - - None - 33554432 - -1 - - 0 - - - f2728539-ef6f-4b18-a82d-dc3c94c16cdb - - - Integer - false - false - false - - false - canmodifyadditionalsettings - true - - 10066 - 2025-11-06T02:47:57.7129984 - - + + - 5805bdf9-7717-43b1-96f0-e42476aa0962 + f93aca93-9667-4c3f-8d30-1600a93776e1 true - Time to live (in seconds) for flow run + Email Send Polling Frequency 1033 - - - 5805bdf9-7717-43b1-96f0-e42476aa0962 - - true - Time to live (in seconds) for flow run - 1033 - - - - - e8cb668f-76f0-4655-b010-dbb46eebf29d + ce877be2-2c60-4949-b01e-50c5dc3ab3a0 true - Time to live (in seconds) for flow run - 1033 + Pollingfrekvens for afsendelse af mail + 1030 - e8cb668f-76f0-4655-b010-dbb46eebf29d + f93aca93-9667-4c3f-8d30-1600a93776e1 true - Time to live (in seconds) for flow run + Email Send Polling Frequency 1033 @@ -137933,7 +146320,7 @@ false isrenameable - true + false false false @@ -137945,7 +146332,7 @@ false - true + false canmodifysearchsettings false @@ -137956,33 +146343,33 @@ true true - flowruntimetoliveinseconds - 2025-11-06T02:47:57.7129984 + emailsendpollingperiod + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - FlowRunTimeToLiveInSeconds + EmailSendPollingPeriod IntegerType - 1.6.2.0 + 5.0.0.0 false 0 None 2147483647 - 0 - + -2147483648 + 0 - - 517c15e7-ac7f-4e18-990b-1c11b445b3e7 + + d4365fec-71f8-4b56-9d16-de9e0c61de32 - Picklist + Boolean false false false @@ -137991,42 +146378,56 @@ canmodifyadditionalsettings false - 14 - 1900-01-01T00:00:00 + 10209 + 2025-11-06T06:14:32.7699968 - a8d8dee2-2241-db11-898a-0007e9e17ebd + bcf6791c-b667-4dfe-9972-8bbcd11fdbb4 true - Order in which names are to be displayed throughout Microsoft CRM. + Determines whether records merged through the merge dialog in UCI are merged asynchronously 1033 + + 5fa06c04-e49a-4c3f-b0e9-d91d782787dc + + true + Bestemmer, om poster, der flettes via dialogboksen Flet i UCI, flettes asynkront + 1030 + - a8d8dee2-2241-db11-898a-0007e9e17ebd + bcf6791c-b667-4dfe-9972-8bbcd11fdbb4 true - Order in which names are to be displayed throughout Microsoft CRM. + Determines whether records merged through the merge dialog in UCI are merged asynchronously 1033 - 98e21bf5-fe35-439f-94d3-7082efeee775 + 84c56113-f292-42ef-91d2-3b3e7d038875 true - Full Name Display Order + Asynchronous merge enabled for UCI 1033 + + 1aced3c3-04ee-459a-8ee3-885385e422eb + + true + Asynkron fletning er aktiveret for UCI + 1030 + - 98e21bf5-fe35-439f-94d3-7082efeee775 + 84c56113-f292-42ef-91d2-3b3e7d038875 true - Full Name Display Order + Asynchronous merge enabled for UCI 1033 @@ -138036,13 +146437,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -138071,50 +146472,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - fullnameconventioncode - 1900-01-01T00:00:00 + enableasyncmergeapiforuci + 2025-11-06T06:14:32.7699968 false canmodifyrequirementlevelsettings - SystemRequired + None - FullNameConventionCode + EnableAsyncMergeAPIForUCI - PicklistType + BooleanType - 5.0.0.0 + 9.1.0.0 false 0 - - 0 + + false - b9b3805b-40ac-4cb4-be0a-bef57f59271c + 315e90f0-678b-4e4d-97f1-886050c3cb46 - e2cc5af3-c1fd-45ce-a2fe-edce8d4051ad + 05aedb96-402f-4dff-86e7-54b577874b2f true - Order in which names are to be displayed throughout Microsoft CRM. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - e2cc5af3-c1fd-45ce-a2fe-edce8d4051ad + 05aedb96-402f-4dff-86e7-54b577874b2f true - Order in which names are to be displayed throughout Microsoft CRM. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -138127,302 +146535,112 @@ false iscustomizable - true + false - false + true true - organization_fullnameconventioncode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 3dd6a8fd-da71-4c4b-b52e-0d4b01374ac6 - - true - Last Name, First Name - 1033 - - - - 3dd6a8fd-da71-4c4b-b52e-0d4b01374ac6 - - true - Last Name, First Name - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 1f2fabf0-003a-49b3-b1c9-bbdef18eccba - - true - First Name - 1033 - - - - 1f2fabf0-003a-49b3-b1c9-bbdef18eccba - - true - First Name - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - d29e7455-7700-46ac-bba1-afcf2f9dc3e7 - - true - Last Name, First Name, Middle Initial - 1033 - - - - d29e7455-7700-46ac-bba1-afcf2f9dc3e7 - - true - Last Name, First Name, Middle Initial - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 9f1af66e-12dd-4b7c-91a4-3e1055f5c6db - - true - First Name, Middle Initial, Last Name - 1033 - - - - 9f1af66e-12dd-4b7c-91a4-3e1055f5c6db - - true - First Name, Middle Initial, Last Name - 1033 - - - - 3 - - - - - - - - - - - - false - true - - - - 81c30799-7327-4f7e-8390-ff5a79183a17 - - true - Last Name, First Name, Middle Name - 1033 - - - - 81c30799-7327-4f7e-8390-ff5a79183a17 + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - true - Last Name, First Name, Middle Name - 1033 - - - - 4 - - - - - - - - - - - - false - true - - - - d34248d2-7ac2-4406-9ebb-e2a01be070b5 - - true - First Name, Middle Name, Last Name - 1033 - - - - d34248d2-7ac2-4406-9ebb-e2a01be070b5 + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 - true - First Name, Middle Name, Last Name - 1033 - - - - 5 - - - - - - - - - - - - false - true - - - - f4b3bfbb-fb33-455f-8c5b-80fdaa4215b9 - - true - Last Name, space, First Name - 1033 - - - - f4b3bfbb-fb33-455f-8c5b-80fdaa4215b9 + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 - true - Last Name, space, First Name - 1033 - - - - 6 - - - - - - - - - - - - false - true - - - - a025e60a-a5b3-4486-9c95-4f85dbc66d1d - - true - Last Name, no space, First Name - 1033 - - - - a025e60a-a5b3-4486-9c95-4f85dbc66d1d + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b - true - Last Name, no space, First Name - 1033 - - - - 7 - - - - + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + - - + 0 - - - 3da61f23-5dd2-4b61-8963-bfaa3e5d9e03 + 00a18a1d-6ddb-4538-81e7-a65f82a8d2ed - fullnameconventioncode + enableasyncmergeapiforuci Virtual false false false - false + true canmodifyadditionalsettings - false + true - 46 - 1900-01-01T00:00:00 + 10210 + 2025-11-06T06:14:32.7869952 @@ -138436,15 +146654,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -138453,13 +146671,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -138471,7 +146689,7 @@ false - false + true canmodifysearchsettings false @@ -138482,196 +146700,86 @@ false false - fullnameconventioncodename - 1900-01-01T00:00:00 + enableasyncmergeapiforuciname + 2025-11-06T06:14:32.7869952 - false + true canmodifyrequirementlevelsettings None - FullNameConventionCodeName + enableasyncmergeapiforuciName VirtualType - 5.0.0.0 + 9.1.0.0 true - + - - 5554723e-c955-4e04-a915-b19ade256f00 + + 42ecbd73-20d6-4bbb-8205-749f899b7971 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 168 + 222 1900-01-01T00:00:00 - 196d54cc-acee-4e57-bf51-24b2871bcd70 + 4ce19600-f012-4fef-aabc-78c02d83f590 true - Specifies the maximum number of months in future for which the recurring activities can be created. + Enable Integration with Bing Maps 1033 - - - 196d54cc-acee-4e57-bf51-24b2871bcd70 - - true - Specifies the maximum number of months in future for which the recurring activities can be created. - 1033 - - - - - 6f5b3741-f69a-4b27-aabc-d77e4194fde0 + db422a44-7db9-4bc1-8efc-c684eb5b212e true - Future Expansion Window - 1033 + Aktivér integration med Bing Kort + 1030 - 6f5b3741-f69a-4b27-aabc-d77e4194fde0 + 4ce19600-f012-4fef-aabc-78c02d83f590 true - Future Expansion Window + Enable Integration with Bing Maps 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - futureexpansionwindow - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - FutureExpansionWindow - - - IntegerType - - 5.0.0.0 - false - 0 - - None - 140 - 1 - - 0 - - - 8d9d43cc-b83b-48f7-b14c-b07c0735129b - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 240 - 1900-01-01T00:00:00 - - + + - b1f3e8fd-3080-4744-967c-bcef4dbbe4e4 + d210c166-15d9-44c9-8588-7e014359d76f true - Indicates whether alerts will be generated for errors. + Enable Integration with Bing Maps 1033 - - - b1f3e8fd-3080-4744-967c-bcef4dbbe4e4 - - true - Indicates whether alerts will be generated for errors. - 1033 - - - - - 1a774304-e1b1-440b-b597-079892314845 + a04f23de-a54b-4cd0-a770-13ccf511d360 true - Generate Alerts For Errors - 1033 + Aktivér integration med Bing Kort + 1030 - 1a774304-e1b1-440b-b597-079892314845 + d210c166-15d9-44c9-8588-7e014359d76f true - Generate Alerts For Errors + Enable Integration with Bing Maps 1033 @@ -138687,7 +146795,7 @@ false iscustomizable - true + false false false @@ -138725,41 +146833,48 @@ true true - generatealertsforerrors + enablebingmapsintegration 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - GenerateAlertsForErrors + EnableBingMapsIntegration BooleanType - 6.0.0.0 + 5.0.0.0 false 0 true - ad77d47d-144a-48bb-9bad-d1d676997b23 + a37905c5-bd02-463c-93cc-fe99fa60cbd2 - 2faf3a8c-064d-41c4-90da-0ab0e5a48e0c + 87fa9ce8-706c-4641-a666-e40aa95bcc73 true - Whether or not to generate alerts for errors. + Enable Integration with Bing Maps. 1033 + + d628c9f8-861e-4598-806f-b06c0e75730a + + true + Aktivér integration med Bing Kort. + 1030 + - 2faf3a8c-064d-41c4-90da-0ab0e5a48e0c + 87fa9ce8-706c-4641-a666-e40aa95bcc73 true - Whether or not to generate alerts for errors. + Enable Integration with Bing Maps. 1033 @@ -138776,9 +146891,9 @@ false true - organization_generatealertsforerrors + organization_enablebingmapsintegration Boolean - 6.0.0.0 + 5.0.0.0 @@ -138793,15 +146908,22 @@ - ffa0d2e4-633b-4301-a510-205919cc96a8 + 00ffa620-ed06-4a0d-8483-14ea5b338f68 true No 1033 + + da917761-67c7-4fa0-a348-46689e358108 + + true + Nej + 1030 + - ffa0d2e4-633b-4301-a510-205919cc96a8 + 00ffa620-ed06-4a0d-8483-14ea5b338f68 true No @@ -138826,15 +146948,22 @@ - 22309c17-290e-4ed1-92da-86d3f5b6a6eb + 4d4d6dd9-2d39-43bc-868a-6700fde4c38a true Yes 1033 + + 0a241607-328d-4f24-9fb0-4d2c40a9088e + + true + Ja + 1030 + - 22309c17-290e-4ed1-92da-86d3f5b6a6eb + 4d4d6dd9-2d39-43bc-868a-6700fde4c38a true Yes @@ -138850,7 +146979,7 @@ 0 - 0fab86a8-399b-4ff6-8a7b-4feef0251d78 + 7fdb1896-e8e2-4725-ab2a-15eb059c22e9 Boolean @@ -138862,42 +146991,56 @@ canmodifyadditionalsettings false - 241 - 1900-01-01T00:00:00 + 10216 + 2025-11-06T06:14:32.88 - 649409ee-59b0-4155-a035-821f71d30dba + 06a8ffb5-1b25-49b5-bde4-f48e6692b146 true - Indicates whether alerts will be generated for information. + Note: By enabling this feature, you will also enable the automatic creation of enviornment variables when adding data sources for your apps. 1033 + + c37f5fd8-1ae6-4206-9bc4-57d33a37795d + + true + Bemærk! Når du aktiverer denne funktion, aktiverer du også automatisk oprettelse af miljøvariabler, når du tilføjer datakilder til dine apps. + 1030 + - 649409ee-59b0-4155-a035-821f71d30dba + 06a8ffb5-1b25-49b5-bde4-f48e6692b146 true - Indicates whether alerts will be generated for information. + Note: By enabling this feature, you will also enable the automatic creation of enviornment variables when adding data sources for your apps. 1033 - 141f2a0d-d85d-47aa-9530-88a404f9f09e + 1eae622d-cfcc-44a5-b0bd-e619e278f03e true - Generate Alerts For Information + Enable the creation of Canvas apps in Dataverse / Solution by default 1033 + + e9818b45-a3d0-4b83-8e4e-44584a369ddd + + true + Aktivér oprettelse af lærredsapps i Dataverse/løsning som standard + 1030 + - 141f2a0d-d85d-47aa-9530-88a404f9f09e + 1eae622d-cfcc-44a5-b0bd-e619e278f03e true - Generate Alerts For Information + Enable the creation of Canvas apps in Dataverse / Solution by default 1033 @@ -138907,13 +147050,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -138942,50 +147085,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - generatealertsforinformation - 1900-01-01T00:00:00 + enablecanvasappsinsolutionsbydefault + 2026-03-01T21:16:12.6470016 false canmodifyrequirementlevelsettings - SystemRequired + None - GenerateAlertsForInformation + EnableCanvasAppsInSolutionsByDefault BooleanType - 6.0.0.0 + 9.1.0.0 false 0 - - true + + false - 6b9dfeb8-c9bf-4286-b609-4d14dcf66763 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 37f4fb14-1a51-41b7-b457-60d5d9c69080 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Whether or not to generate alerts for information. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 37f4fb14-1a51-41b7-b457-60d5d9c69080 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Whether or not to generate alerts for information. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -139000,11 +147150,11 @@ iscustomizable false - false + true true - organization_generatealertsforinformation + organization_featureenabled Boolean - 6.0.0.0 + 8.1.0.0 @@ -139019,15 +147169,22 @@ - 8c8a29b9-1138-442b-a17a-d9561dfecdcc + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 8c8a29b9-1138-442b-a17a-d9561dfecdcc + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -139052,15 +147209,22 @@ - 97a4d084-7b15-4280-b1b1-6fa9272e7644 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 97a4d084-7b15-4280-b1b1-6fa9272e7644 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -139072,11 +147236,102 @@ - + 0 + + ea579261-16d6-4efa-8fed-48d0f1b3e4d4 + + enablecanvasappsinsolutionsbydefault + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10217 + 2025-11-06T06:14:32.8969984 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + enablecanvasappsinsolutionsbydefaultname + 2025-11-06T06:14:32.8969984 + + true + canmodifyrequirementlevelsettings + None + + enablecanvasappsinsolutionsbydefaultName + + + VirtualType + + 9.1.0.0 + true + + + - d35ef342-8c7a-4387-92b2-8400bf436aee + 66b17c71-6ed3-4d1f-9c85-ea481d758075 Boolean @@ -139086,44 +147341,44 @@ false canmodifyadditionalsettings - false + true - 242 - 1900-01-01T00:00:00 + 10131 + 2025-11-06T03:38:23.9900032 - e4c554fc-307e-42aa-a32a-92a8cbc9775b + 3a7bb043-c96e-4150-9123-1fd035d4dbd0 true - Indicates whether alerts will be generated for warnings. + Enable this feature to allow cross-geo boundary sharing of aggregated analytics data if your preferred data location for Viva Insights is different than the location of your environment 1033 - e4c554fc-307e-42aa-a32a-92a8cbc9775b + 3a7bb043-c96e-4150-9123-1fd035d4dbd0 true - Indicates whether alerts will be generated for warnings. + Enable this feature to allow cross-geo boundary sharing of aggregated analytics data if your preferred data location for Viva Insights is different than the location of your environment 1033 - 0d989dd3-3e88-45c5-938e-91e708c44f05 + 8c4c9d43-fd25-4ed2-8faa-b95f98dfe390 true - Generate Alerts For Warnings + Allow cross-geo boundary sharing of aggregated analytics data if your preferred data location for Viva Insights is different than the location of your environment 1033 - 0d989dd3-3e88-45c5-938e-91e708c44f05 + 8c4c9d43-fd25-4ed2-8faa-b95f98dfe390 true - Generate Alerts For Warnings + Allow cross-geo boundary sharing of aggregated analytics data if your preferred data location for Viva Insights is different than the location of your environment 1033 @@ -139177,41 +147432,48 @@ true true - generatealertsforwarnings - 1900-01-01T00:00:00 + enablecopilotstudiocrossgeosharedatawithvivainsights + 2025-12-14T02:08:42.5229952 false canmodifyrequirementlevelsettings SystemRequired - GenerateAlertsForWarnings + EnableCopilotStudioCrossGeoShareDataWithVivaInsights BooleanType - 6.0.0.0 + 1.0.0.150 false 0 - - true + + false - cd83f5eb-c5ec-4936-9a85-a70e94cb4525 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 5e755569-4cf1-4b39-8eaa-bf9903b3ebb6 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Whether or not to generate alerts for warnings. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 5e755569-4cf1-4b39-8eaa-bf9903b3ebb6 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Whether or not to generate alerts for warnings. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -139226,11 +147488,11 @@ iscustomizable false - false + true true - organization_generatealertsforwarnings + organization_featureenabled Boolean - 6.0.0.0 + 8.1.0.0 @@ -139245,15 +147507,22 @@ - b27e5e1b-53a8-476b-b892-8495db19bf5c + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - b27e5e1b-53a8-476b-b892-8495db19bf5c + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -139278,15 +147547,22 @@ - 4e82db6a-9fe6-45f6-8dfc-8e1b9711cff6 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 4e82db6a-9fe6-45f6-8dfc-8e1b9711cff6 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -139298,11 +147574,102 @@ - + 0 + + 72d4944e-6d2a-4969-bdb0-d104db4deaa3 + + enablecopilotstudiocrossgeosharedatawithvivainsights + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10132 + 2025-11-06T03:38:24.0029952 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + enablecopilotstudiocrossgeosharedatawithvivainsightsname + 2025-11-06T03:38:24.0029952 + + true + canmodifyrequirementlevelsettings + None + + enablecopilotstudiocrossgeosharedatawithvivainsightsName + + + VirtualType + + 1.0.0.150 + true + + + - a9efb25f-81e5-467b-ae12-198c50ad9185 + 58ec8d35-b70e-46db-af15-2ce97ec7358f Boolean @@ -139312,44 +147679,44 @@ false canmodifyadditionalsettings - false + true - 180 - 1900-01-01T00:00:00 + 10127 + 2025-11-06T03:38:23.9430016 - a933b57e-fdd9-40fc-acd8-b8b160846ff6 + 2bccd1b7-4213-4047-ab1d-f1633b1c0b52 true - Indicates whether Get Started content is enabled for this organization. + (Deprecated) Enable this feature to allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights for an individual environment 1033 - a933b57e-fdd9-40fc-acd8-b8b160846ff6 + 2bccd1b7-4213-4047-ab1d-f1633b1c0b52 true - Indicates whether Get Started content is enabled for this organization. + (Deprecated) Enable this feature to allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights for an individual environment 1033 - 31560c65-723f-420c-846f-f0c1ca6442f8 + 9cfea48b-81c8-4a93-bacf-b8b22a1a1dbb true - Is Get Started Pane Content Enabled + (Deprecated) Allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights 1033 - 31560c65-723f-420c-846f-f0c1ca6442f8 + 9cfea48b-81c8-4a93-bacf-b8b22a1a1dbb true - Is Get Started Pane Content Enabled + (Deprecated) Allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights 1033 @@ -139403,41 +147770,48 @@ true true - getstartedpanecontentenabled - 1900-01-01T00:00:00 + enablecopilotstudiosharedatawithvi + 2025-12-14T02:08:41.04 false canmodifyrequirementlevelsettings SystemRequired - GetStartedPaneContentEnabled + EnableCopilotStudioShareDataWithVI BooleanType - 5.0.0.0 + 1.0.0.150 false 0 - - true + + false - bb770c93-3910-4aa8-91c6-268ea77c1348 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - b58e87df-175d-4244-983f-c77aaa7eec7b + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether the Get Started pane in lists is enabled. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - b58e87df-175d-4244-983f-c77aaa7eec7b + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether the Get Started pane in lists is enabled. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -139450,13 +147824,13 @@ false iscustomizable - true + false - false + true true - organization_getstartedpanecontentenabled + organization_featureenabled Boolean - 5.0.0.0 + 8.1.0.0 @@ -139471,15 +147845,22 @@ - 70394354-f982-41f3-b234-6f2291b474a8 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 70394354-f982-41f3-b234-6f2291b474a8 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -139504,15 +147885,22 @@ - 4102aa16-b95f-4056-a0e4-0cd23cb8d139 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 4102aa16-b95f-4056-a0e4-0cd23cb8d139 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -139524,11 +147912,102 @@ - + 0 + + 395186d7-e42e-464c-83a5-d58a8fb8cc9e + + enablecopilotstudiosharedatawithvi + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10128 + 2025-11-06T03:38:23.9570048 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + enablecopilotstudiosharedatawithviname + 2025-11-06T03:38:23.9570048 + + true + canmodifyrequirementlevelsettings + None + + enablecopilotstudiosharedatawithviName + + + VirtualType + + 1.0.0.150 + true + + + - 649551c1-5e4e-48b4-a071-0a2a81edaa60 + 00e5fb17-7eb7-49db-a171-88571a793734 Boolean @@ -139538,44 +148017,44 @@ false canmodifyadditionalsettings - false + true - 278 - 1900-01-01T00:00:00 + 10129 + 2025-11-06T03:38:23.9570048 - d7e94902-1e8f-4fc1-bdc0-d813f22190df + ca94ac05-f4d6-4139-b963-e33e39fb93cc true - Indicates whether the append URL parameters is enabled. + Enable this feature to allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights for an individual environment 1033 - d7e94902-1e8f-4fc1-bdc0-d813f22190df + ca94ac05-f4d6-4139-b963-e33e39fb93cc true - Indicates whether the append URL parameters is enabled. + Enable this feature to allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights for an individual environment 1033 - 28efb9b1-2d27-46cf-81d9-3e6df1102af7 + a253ceae-73ff-462f-a8e8-0cd7cd72cbec true - Is AppendUrl Parameters enabled + Allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights 1033 - 28efb9b1-2d27-46cf-81d9-3e6df1102af7 + a253ceae-73ff-462f-a8e8-0cd7cd72cbec true - Is AppendUrl Parameters enabled + Allow Copilot Studio to share aggregated analytics data for custom agents with Viva Insights 1033 @@ -139629,41 +148108,48 @@ true true - globalappendurlparametersenabled - 1900-01-01T00:00:00 + enablecopilotstudiosharedatawithvivainsights + 2025-12-14T02:08:41.3069952 false canmodifyrequirementlevelsettings SystemRequired - GlobalAppendUrlParametersEnabled + EnableCopilotStudioShareDataWithVivaInsights BooleanType - 7.0.0.0 + 1.0.0.150 false 0 - + true - 6a40a20b-2a40-4238-b0d0-42d8bc6457d7 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 53e792f1-a821-4bf1-95fd-94a985f3ef06 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether the AppendUrl parameters is enabled. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 53e792f1-a821-4bf1-95fd-94a985f3ef06 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether the AppendUrl parameters is enabled. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -139676,13 +148162,13 @@ false iscustomizable - true + false - false + true true - organization_globalappendurlparametersenabled + organization_featureenabled Boolean - 7.0.0.0 + 8.1.0.0 @@ -139697,15 +148183,22 @@ - 7d509f1c-b146-4312-840a-25330b2bd8d9 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 7d509f1c-b146-4312-840a-25330b2bd8d9 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -139730,15 +148223,22 @@ - 6336040f-5dda-474e-bfa3-e791584b0a41 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 6336040f-5dda-474e-bfa3-e791584b0a41 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -139750,60 +148250,32 @@ - + 0 - - 2f13c89f-9225-49e5-bdce-3585cc2d6eb9 + + 957f8345-4915-4268-8142-79b0c89527e4 - - String + enablecopilotstudiosharedatawithvivainsights + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 276 - 1900-01-01T00:00:00 + 10130 + 2025-11-06T03:38:23.9730048 - - - 70128575-3685-47c4-9870-39d03973ab0d - - true - URL for the web page global help. - 1033 - - - - 70128575-3685-47c4-9870-39d03973ab0d - - true - URL for the web page global help. - 1033 - + + - - - dc6d36f3-7536-46f8-b561-9db57ffa308d - - true - Global Help URL. - 1033 - - - - dc6d36f3-7536-46f8-b561-9db57ffa308d - - true - Global Help URL. - 1033 - + + organization @@ -139811,11 +148283,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -139826,13 +148298,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -139844,47 +148316,36 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - globalhelpurl - 1900-01-01T00:00:00 + enablecopilotstudiosharedatawithvivainsightsname + 2025-11-06T03:38:23.9730048 - false + true canmodifyrequirementlevelsettings None - GlobalHelpUrl + enablecopilotstudiosharedatawithvivainsightsName - StringType + VirtualType - 7.0.0.0 - false - 0 - - Text - Auto - 500 - - - Text - - - false - 0 - 1000 + 1.0.0.150 + true + + - 52b84dc6-fee6-46d0-929a-3a2148319526 + d7bd5d37-b67d-454f-9400-3fb5402ed4b2 Boolean @@ -139896,42 +148357,42 @@ canmodifyadditionalsettings false - 277 - 1900-01-01T00:00:00 + 10239 + 2025-11-06T08:23:22.7030016 - b4af328d-44da-41e2-8e1f-43d28db89bed + 642d8e4a-304f-409f-a8ff-bf83352c6f66 true - Indicates whether the customizable global help is enabled. + Enables the Environment Settings App 1033 - b4af328d-44da-41e2-8e1f-43d28db89bed + 642d8e4a-304f-409f-a8ff-bf83352c6f66 true - Indicates whether the customizable global help is enabled. + Enables the Environment Settings App 1033 - 3b916609-7e27-47cd-b1b9-4a79bc483d90 + 0ecf66de-9470-4444-87f0-0f9f80643bd2 true - Is Customizable Global Help enabled + Enable Environment Settings App 1033 - 3b916609-7e27-47cd-b1b9-4a79bc483d90 + 0ecf66de-9470-4444-87f0-0f9f80643bd2 true - Is Customizable Global Help enabled + Enable Environment Settings App 1033 @@ -139941,13 +148402,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -139976,50 +148437,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - globalhelpurlenabled - 1900-01-01T00:00:00 + enableenvironmentsettingsapp + 2025-11-06T08:23:22.7030016 false canmodifyrequirementlevelsettings SystemRequired - GlobalHelpUrlEnabled + EnableEnvironmentSettingsApp BooleanType - 7.0.0.0 + 9.1.0.0 false 0 - - true + + false - 4b367181-8d18-48e4-8935-c769c7302ae8 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - fa6b17a0-c39e-481e-8c4c-2e6cf0e2cf84 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether the Custom Help is enabled. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - fa6b17a0-c39e-481e-8c4c-2e6cf0e2cf84 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether the Custom Help is enabled. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -140032,13 +148500,13 @@ false iscustomizable - true + false - false + true true - organization_globalhelpurlenabled + organization_featureenabled Boolean - 7.0.0.0 + 8.1.0.0 @@ -140053,15 +148521,22 @@ - ec4e31f6-6259-4972-a1ea-97fe14e320eb + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - ec4e31f6-6259-4972-a1ea-97fe14e320eb + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -140086,15 +148561,22 @@ - 6fcf76cb-0c17-4060-ba07-45c2e6600c58 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 6fcf76cb-0c17-4060-ba07-45c2e6600c58 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -140106,60 +148588,32 @@ - + 0 - - a849c432-21dc-492b-b28e-9d093222d0ad + + 14c530b8-6294-4b59-959b-441980f5ca34 - - Integer + enableenvironmentsettingsapp + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 188 - 1900-01-01T00:00:00 + 10240 + 2025-11-06T08:23:22.72 - - - 1f9588eb-9e60-462d-beaa-a890915a797d - - true - Number of days after the goal's end date after which the rollup of the goal stops automatically. - 1033 - - - - 1f9588eb-9e60-462d-beaa-a890915a797d - - true - Number of days after the goal's end date after which the rollup of the goal stops automatically. - 1033 - + + - - - fedc09d3-ae4c-4933-8dae-3447e89b42f4 - - true - Rollup Expiration Time for Goal - 1033 - - - - fedc09d3-ae4c-4933-8dae-3447e89b42f4 - - true - Rollup Expiration Time for Goal - 1033 - + + organization @@ -140167,11 +148621,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -140182,13 +148636,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -140200,212 +148654,97 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - goalrollupexpirytime - 1900-01-01T00:00:00 + enableenvironmentsettingsappname + 2025-11-06T08:23:22.72 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - GoalRollupExpiryTime + enableenvironmentsettingsappName - IntegerType + VirtualType - 5.0.0.0 - false - 0 - - None - 400 - 0 - - 0 + 9.1.0.0 + true + + - - 4f615993-f541-4262-8620-d6e49a142d71 + + 99854b80-9acc-4335-9bf4-925b76778997 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 189 - 1900-01-01T00:00:00 + 10046 + 2025-11-06T02:47:57.4 - 9c1e570a-a06b-4875-bef1-921586038b47 + 5dd2e11f-71c7-418b-a420-2fc8b9e21f0e true - Number of hours between automatic rollup jobs . + Indicates whether the creation of flows is within a solution by default for this organization. 1033 - - - 9c1e570a-a06b-4875-bef1-921586038b47 - - true - Number of hours between automatic rollup jobs . - 1033 - - - - - 67213c43-451b-472b-9242-9984e2670702 + 9dacbf0c-ad29-4b53-86b1-acceebd573ad true - Automatic Rollup Frequency for Goal - 1033 + Angiver, om oprettelsen af flows som standard er i en løsning for denne organisation. + 1030 - 67213c43-451b-472b-9242-9984e2670702 + 5dd2e11f-71c7-418b-a420-2fc8b9e21f0e true - Automatic Rollup Frequency for Goal + Indicates whether the creation of flows is within a solution by default for this organization. 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - goalrollupfrequency - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - GoalRollupFrequency - - - IntegerType - - 5.0.0.0 - false - 0 - - None - 2147483647 - 1 - - 0 - - - a156ab38-fb32-4909-8e68-43dadae48d48 - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 56 - 1900-01-01T00:00:00 - - + + - 8bf1fbc4-2241-db11-898a-0007e9e17ebd + a1372871-75b9-4213-b64f-bc930536085d true - For internal use only. + Enable the creation of flows within a solution by default. 1033 - - - 8bf1fbc4-2241-db11-898a-0007e9e17ebd - - true - For internal use only. - 1033 - - - - - 4ef44bf6-70e1-4e6b-9c10-a6d40f1ae082 + a4154069-e55e-495d-a570-80dd8a55e7fe true - Grant Access To Network Service - 1033 + Aktivér oprettelse af flows i en løsning som standard. + 1030 - 4ef44bf6-70e1-4e6b-9c10-a6d40f1ae082 + a1372871-75b9-4213-b64f-bc930536085d true - Grant Access To Network Service + Enable the creation of flows within a solution by default. 1033 @@ -140413,9 +148752,9 @@ - false + true canmodifyauditsettings - false + true false @@ -140436,7 +148775,7 @@ false isrenameable - false + true false false @@ -140448,7 +148787,7 @@ false - false + true canmodifysearchsettings false @@ -140456,44 +148795,51 @@ false false true - false + true true - grantaccesstonetworkservice - 1900-01-01T00:00:00 + enableflowsinsolutionbydefault + 2026-05-11T16:05:37.84 - false + true canmodifyrequirementlevelsettings None - GrantAccessToNetworkService + EnableFlowsInSolutionByDefault BooleanType - 5.0.0.0 + 1.3.9.0 false 0 false - 7de0f25e-796a-4cd9-ab6d-21373e0bd425 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 3b3dca0e-52d9-4517-8fd8-28f94ce3769c + 05aedb96-402f-4dff-86e7-54b577874b2f true - For internal use only. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 3b3dca0e-52d9-4517-8fd8-28f94ce3769c + 05aedb96-402f-4dff-86e7-54b577874b2f true - For internal use only. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -140506,13 +148852,13 @@ false iscustomizable - true + false - false + true true - organization_grantaccesstonetworkservice + organization_featureenabled Boolean - 5.0.0.0 + 8.1.0.0 @@ -140527,15 +148873,22 @@ - 61c888bf-e780-db11-9b85-00137299e160 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 61c888bf-e780-db11-9b85-00137299e160 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -140560,15 +148913,22 @@ - 63c888bf-e780-db11-9b85-00137299e160 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 63c888bf-e780-db11-9b85-00137299e160 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -140580,14 +148940,14 @@ - + 0 - - 1f78b6c3-7fc3-4bb5-9717-528a768d2983 + + 72a67902-9fad-45e7-887a-45d37be32a13 - Integer + Boolean false false false @@ -140596,166 +148956,56 @@ canmodifyadditionalsettings true - 214 - 1900-01-01T00:00:00 + 10048 + 2025-11-06T02:47:57.4300032 - c24951fa-fc34-4e02-9d98-a8157857de53 + 835227f6-ff9c-4c8f-8c96-d555f30273b8 true - Maximum difference allowed between subject keywords count of the email messaged to be correlated + Organizations with this attribute set to true will be granted a grace period and excluded from the initial world wide enablement of 'creation of flows within a solution by default' functionality. Once the grace period expires, the functionality will be enabled in your organization. 1033 - - - c24951fa-fc34-4e02-9d98-a8157857de53 - - true - Maximum difference allowed between subject keywords count of the email messaged to be correlated - 1033 - - - - - 923dea7a-d604-469a-b4ef-2279d1c59bb0 + 57208f4e-ab9b-443c-80fa-15981f38664a true - Hash Delta Subject Count - 1033 + Organisationer med denne attribut, der er angivet til sand, tildeles en frist og udelukkes fra den oprindelige globale aktivering af funktionen "oprettelse af flows i en løsning som standard". Når fristen udløber, aktiveres funktionen i din organisation. + 1030 - 923dea7a-d604-469a-b4ef-2279d1c59bb0 + 835227f6-ff9c-4c8f-8c96-d555f30273b8 true - Hash Delta Subject Count + Organizations with this attribute set to true will be granted a grace period and excluded from the initial world wide enablement of 'creation of flows within a solution by default' functionality. Once the grace period expires, the functionality will be enabled in your organization. 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - hashdeltasubjectcount - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - HashDeltaSubjectCount - - - IntegerType - - 5.0.0.0 - false - 0 - - None - 2147483647 - 0 - - 0 - - - 9ed4adaa-c227-49e6-9903-734832054786 - - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 212 - 1900-01-01T00:00:00 - - + + - da3d07ea-6864-4412-9c9f-97264ca106b5 + a3d3b8c9-398e-402b-9fbe-f5355428292e true - Filter Subject Keywords + Indicates whether the organization is opted into a grace period for auto-enablement of 'creation of flows within a solution by default' functionality. 1033 - - - da3d07ea-6864-4412-9c9f-97264ca106b5 - - true - Filter Subject Keywords - 1033 - - - - - 391d53ce-b563-4831-87ca-dad1312916c7 + fee260e6-c4fc-40d7-9225-9dafd30783ab true - Hash Filter Keywords - 1033 + Angiver, om organisationen som standard har valgt en frist for automatisk aktivering af funktionen "oprettelse af flows i en løsning som standard". + 1030 - 391d53ce-b563-4831-87ca-dad1312916c7 + a3d3b8c9-398e-402b-9fbe-f5355428292e true - Hash Filter Keywords + Indicates whether the organization is opted into a grace period for auto-enablement of 'creation of flows within a solution by default' functionality. 1033 @@ -140771,7 +149021,7 @@ false iscustomizable - false + true false false @@ -140786,7 +149036,7 @@ false isrenameable - false + true false false @@ -140798,7 +149048,7 @@ false - false + true canmodifysearchsettings false @@ -140809,85 +149059,174 @@ true true - hashfilterkeywords - 1900-01-01T00:00:00 + enableflowsinsolutionbydefaultgraceperiod + 2026-05-11T16:05:38.0099968 - false + true canmodifyrequirementlevelsettings None - HashFilterKeywords + EnableFlowsInSolutionByDefaultGracePeriod - StringType + BooleanType - 5.0.0.0 + 1.5.9.0 false 0 - Text - Auto - 1073741823 - - - Text - - - false + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - -1 - - 8cfbb823-9e97-4f62-83d5-c6dd1373fa26 + + 0e13553d-bdd2-40cc-bb05-c6e33a147644 - - Integer + enableflowsinsolutionbydefaultgraceperiod + Virtual false false false - false + true canmodifyadditionalsettings true - 213 - 1900-01-01T00:00:00 + 10049 + 2025-11-06T02:47:57.4470016 - - - 38337f8e-8051-4cf2-a662-14b4ed6cac5a - - true - Maximum number of subject keywords or recipients used for correlation - 1033 - - - - 38337f8e-8051-4cf2-a662-14b4ed6cac5a - - true - Maximum number of subject keywords or recipients used for correlation - 1033 - + + - - - b9b243f7-dac9-4dc0-a9dc-1c86e1d0ab7e - - true - Hash Max Count - 1033 - - - - b9b243f7-dac9-4dc0-a9dc-1c86e1d0ab7e - - true - Hash Max Count - 1033 - + + organization @@ -140895,13 +149234,13 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -140910,13 +149249,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -140928,90 +149267,57 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - hashmaxcount - 1900-01-01T00:00:00 + enableflowsinsolutionbydefaultgraceperiodname + 2025-11-06T02:47:57.4470016 - false + true canmodifyrequirementlevelsettings None - HashMaxCount + enableflowsinsolutionbydefaultgraceperiodName - IntegerType + VirtualType - 5.0.0.0 - false - 0 - - None - 2147483647 - 0 - - 0 + 1.5.9.0 + true + + - - 38fd1c45-2961-455b-8109-fadc95df016f + + c091ddc1-8ed3-449e-8169-986f80f02341 - - Integer + enableflowsinsolutionbydefault + Virtual false false false - false + true canmodifyadditionalsettings true - 215 - 1900-01-01T00:00:00 + 10047 + 2025-11-06T02:47:57.4169984 - - - 83395ce7-5770-4b8a-8112-317da5b2ebf3 - - true - Minimum number of recipients required to match for email messaged to be correlated - 1033 - - - - 83395ce7-5770-4b8a-8112-317da5b2ebf3 - - true - Minimum number of recipients required to match for email messaged to be correlated - 1033 - + + - - - 0430e998-25f3-4ecb-a5e9-ab721f5939db - - true - Hash Min Address Count - 1033 - - - - 0430e998-25f3-4ecb-a5e9-ab721f5939db - - true - Hash Min Address Count - 1033 - + + organization @@ -141019,13 +149325,13 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -141034,13 +149340,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -141052,214 +149358,97 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - hashminaddresscount - 1900-01-01T00:00:00 + enableflowsinsolutionbydefaultname + 2025-11-06T02:47:57.4169984 - false + true canmodifyrequirementlevelsettings None - HashMinAddressCount + enableflowsinsolutionbydefaultName - IntegerType + VirtualType - 5.0.0.0 - false - 0 - - None - 2147483647 - 0 - - 0 + 1.3.9.0 + true + + - - 1122d949-021a-4be7-a8b4-27b25f1b67bc + + 368118c9-9e43-4485-a512-e276f14cba5f - Memo + Boolean false false false false canmodifyadditionalsettings - false + true - 308 + 330 1900-01-01T00:00:00 - 1122d949-d881-424e-8545-da9fd1f52a59 + d143eb68-b5c1-432a-9dcd-ab77d19e56c2 true - High contrast theme data for the organization. + Enable Integration with Immersive Skype 1033 - - - 1122d949-d881-424e-8545-da9fd1f52a59 - - true - High contrast theme data for the organization. - 1033 - - - - - 1122d949-dd9b-4250-b398-83e0e52eab11 + 75b59882-760b-4fcf-968a-4b3951a9ce1b true - High contrast Theme Data - 1033 + Aktivér Integration med immersiv Skype + 1030 - 1122d949-dd9b-4250-b398-83e0e52eab11 + d143eb68-b5c1-432a-9dcd-ab77d19e56c2 true - High contrast Theme Data + Enable Integration with Immersive Skype 1033 - - organization - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - highcontrastthemedata - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - HighContrastThemeData - - - MemoType - - 7.1.0.0 - false - - - TextArea - Auto - 1073741823 - - TextArea - - false - - - cc8e608f-89d5-4a6d-b3aa-0f22f81a55d7 - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 89 - 1900-01-01T00:00:00 - - + + - 6841b506-2341-db11-898a-0007e9e17ebd + dc01c208-a08c-4718-a7b5-62bc311e5405 true - Indicates whether incoming email sent by internal Microsoft Dynamics 365 users or queues should be tracked. + Enable Integration with Immersive Skype 1033 - - - 6841b506-2341-db11-898a-0007e9e17ebd - - true - Indicates whether incoming email sent by internal Microsoft Dynamics 365 users or queues should be tracked. - 1033 - - - - - 3e76df11-708c-4a81-9f16-24f7b151cd34 + f90fa0dc-3577-41b7-aca8-4e421b4082f2 true - Ignore Internal Email - 1033 + Aktivér Integration med immersiv Skype + 1030 - 3e76df11-708c-4a81-9f16-24f7b151cd34 + dc01c208-a08c-4718-a7b5-62bc311e5405 true - Ignore Internal Email + Enable Integration with Immersive Skype 1033 @@ -141275,7 +149464,7 @@ false iscustomizable - true + false false false @@ -141313,41 +149502,48 @@ true true - ignoreinternalemail + enableimmersiveskypeintegration 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IgnoreInternalEmail + EnableImmersiveSkypeIntegration BooleanType - 5.0.0.0 + 9.0.0.0 false 0 - false + true - 3bb11f9c-42a9-4592-acb7-c3625e826c8f + 2e7d545c-ab31-4464-99dc-37fc152b185e - 17cff284-b685-4e81-a2e2-8498b06d8f05 + 89a772ee-2df7-46d5-9687-6771dcd0bf44 true - Indicates if incoming email sent by internal CRM users or queues should be tracked in CRM. + Enable Integration with Immersive Skype. 1033 + + 23dbb654-678b-4f87-83e8-5208c42dee7c + + true + Aktivér Integration med immersiv Skype. + 1030 + - 17cff284-b685-4e81-a2e2-8498b06d8f05 + 89a772ee-2df7-46d5-9687-6771dcd0bf44 true - Indicates if incoming email sent by internal CRM users or queues should be tracked in CRM. + Enable Integration with Immersive Skype. 1033 @@ -141360,13 +149556,13 @@ false iscustomizable - true + false false true - organization_ignoreinternalemail + organization_enableimmersiveskypeintegration Boolean - 5.0.0.0 + 9.0.0.0 @@ -141381,15 +149577,22 @@ - 3958aec5-e780-db11-9b85-00137299e160 + f69da6e5-d6a1-471d-ab14-7e424aeaa70d true No 1033 + + 70ab80d3-d88c-4cbd-a774-03046f396107 + + true + Nej + 1030 + - 3958aec5-e780-db11-9b85-00137299e160 + f69da6e5-d6a1-471d-ab14-7e424aeaa70d true No @@ -141414,15 +149617,22 @@ - 3b58aec5-e780-db11-9b85-00137299e160 + eadd343c-bcc0-4dc8-8e84-bd168e28b32c true Yes 1033 + + bb0674ac-4ad3-4f62-8ccb-c27557286e7d + + true + Ja + 1030 + - 3b58aec5-e780-db11-9b85-00137299e160 + eadd343c-bcc0-4dc8-8e84-bd168e28b32c true Yes @@ -141438,7 +149648,7 @@ 0 - 5edfa123-ce27-437e-9bbc-3f617f0f905e + 079e0bd5-23e4-4410-ad0d-d0b043dd8981 Boolean @@ -141448,44 +149658,44 @@ false canmodifyadditionalsettings - false + true - 10174 - 2025-11-06T06:14:32.2870016 + 10012 + 2025-11-06T01:17:44.6029952 - 6f2ea0c7-bba0-4eb7-85f9-c3bc50e3202d + 795826a2-bce4-4c40-9996-f3cf020f6271 true - Indicates whether an organization has consented to sharing search query data to help improve search results + Information that specifies whether IP based cookie binding is enabled 1033 - 6f2ea0c7-bba0-4eb7-85f9-c3bc50e3202d + 795826a2-bce4-4c40-9996-f3cf020f6271 true - Indicates whether an organization has consented to sharing search query data to help improve search results + Information that specifies whether IP based cookie binding is enabled 1033 - 6bb6d7d6-8d01-4ead-ab8b-170b3758995a + b637cf25-60b8-4535-8042-5bdc07c1a4be true - Share search query data + Enable IP Address Based Cookie Binding 1033 - 6bb6d7d6-8d01-4ead-ab8b-170b3758995a + b637cf25-60b8-4535-8042-5bdc07c1a4be true - Share search query data + Enable IP Address Based Cookie Binding 1033 @@ -141495,13 +149705,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -141530,28 +149740,28 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - improvesearchloggingenabled - 2025-11-06T06:14:32.2870016 + enableipbasedcookiebinding + 2025-11-06T01:17:44.6029952 false canmodifyrequirementlevelsettings SystemRequired - ImproveSearchLoggingEnabled + EnableIpBasedCookieBinding BooleanType - 9.1.0.0 + 1.0.0.15 false 0 @@ -141568,6 +149778,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -141613,6 +149830,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -141646,6 +149870,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -141664,9 +149895,9 @@ 0 - 0c5caf5d-0bee-4539-b9f2-bca9de17bc4b + 614ed499-d68e-4df8-9e80-065fc4205f64 - improvesearchloggingenabled + enableipbasedcookiebinding Virtual false false @@ -141676,8 +149907,8 @@ canmodifyadditionalsettings true - 10175 - 2025-11-06T06:14:32.3000064 + 10013 + 2025-11-06T01:17:44.6169984 @@ -141737,25 +149968,25 @@ false false - improvesearchloggingenabledname - 2025-11-06T06:14:32.3000064 + enableipbasedcookiebindingname + 2025-11-06T01:17:44.6169984 true canmodifyrequirementlevelsettings None - improvesearchloggingenabledName + enableipbasedcookiebindingName VirtualType - 9.1.0.0 + 1.0.0.15 true - 9b679700-c56a-4c07-b759-23d281477ae6 + ccf5fa1c-7ad8-4e8d-9d56-0f0147d74915 Boolean @@ -141767,42 +149998,42 @@ canmodifyadditionalsettings true - 413 - 1900-01-01T00:00:00 + 10014 + 2025-11-06T01:17:44.6329984 - a0f7e30a-97dc-49ae-bc7b-45789a3e575a + 0b5240aa-1ad2-4e46-801e-abba6f6fb095 true - Information that specifies whether Inactivity timeout is enabled + Information that specifies whether IP based firewall rule is enabled 1033 - a0f7e30a-97dc-49ae-bc7b-45789a3e575a + 0b5240aa-1ad2-4e46-801e-abba6f6fb095 true - Information that specifies whether Inactivity timeout is enabled + Information that specifies whether IP based firewall rule is enabled 1033 - 8cd8a8f6-5a33-4543-b489-77f21a36fda5 + f4f486f1-1eab-440a-a9fa-79091c75640c true - Inactivity timeout enabled + Enable IP Range based Firewall 1033 - 8cd8a8f6-5a33-4543-b489-77f21a36fda5 + f4f486f1-1eab-440a-a9fa-79091c75640c true - Inactivity timeout enabled + Enable IP Range based Firewall 1033 @@ -141818,7 +150049,7 @@ false iscustomizable - false + true false false @@ -141856,22 +150087,22 @@ true true - inactivitytimeoutenabled - 1900-01-01T00:00:00 + enableipbasedfirewallrule + 2025-11-06T01:17:44.6329984 false canmodifyrequirementlevelsettings SystemRequired - InactivityTimeoutEnabled + EnableIpBasedFirewallRule BooleanType - 8.2.0.0 + 1.0.0.15 false 0 - + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -141885,6 +150116,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -141930,6 +150168,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -141963,6 +150208,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -141977,58 +150229,58 @@ - + 0 - - 6a5d391f-b9b6-4813-9148-f46416a67be4 + + 407f6a18-61aa-4926-95c9-f86c45f013af - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 414 - 1900-01-01T00:00:00 + 10016 + 2025-11-06T01:17:44.6470016 - ecf10dc0-2d00-4f5b-a3a0-65ea3896f226 + 85d2b156-475b-48f1-8012-36e909319434 true - Inactivity timeout in minutes + Information that specifies whether IP based firewall rule is enabled in Audit Only Mode 1033 - ecf10dc0-2d00-4f5b-a3a0-65ea3896f226 + 85d2b156-475b-48f1-8012-36e909319434 true - Inactivity timeout in minutes + Information that specifies whether IP based firewall rule is enabled in Audit Only Mode 1033 - 1835fd61-795e-4d66-aea2-217ab23a25d3 + 530fa028-e748-4321-a875-6def7cda79ec true - Inactivity timeout in minutes + Enable IP Range based Firewall In Audit Only Mode 1033 - 1835fd61-795e-4d66-aea2-217ab23a25d3 + 530fa028-e748-4321-a875-6def7cda79ec true - Inactivity timeout in minutes + Enable IP Range based Firewall In Audit Only Mode 1033 @@ -142044,7 +150296,7 @@ false iscustomizable - false + true false false @@ -142082,79 +150334,174 @@ true true - inactivitytimeoutinmins - 1900-01-01T00:00:00 + enableipbasedfirewallruleinauditmode + 2025-11-06T01:17:44.6470016 false canmodifyrequirementlevelsettings - None + SystemRequired - InactivityTimeoutInMins + EnableIpBasedFirewallRuleInAuditMode - IntegerType + BooleanType - 8.2.0.0 + 1.0.0.15 false 0 - - None - 2147483647 - 0 - + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - - 45282896-3e2a-40b5-96f5-19075b469a1a + + 8ffeba81-1906-4cc8-aba9-a289e5744812 - - Integer + enableipbasedfirewallruleinauditmode + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 415 - 1900-01-01T00:00:00 + 10017 + 2025-11-06T01:17:44.6630016 - - - 85d9b0a5-93fe-43b8-9ad1-bfaf90cd3b3b - - true - Inactivity timeout reminder in minutes - 1033 - - - - 85d9b0a5-93fe-43b8-9ad1-bfaf90cd3b3b - - true - Inactivity timeout reminder in minutes - 1033 - + + - - - e7b6ac8d-01b9-4253-9f1e-b5f68091874e - - true - Inactivity timeout reminder in minutes - 1033 - - - - e7b6ac8d-01b9-4253-9f1e-b5f68091874e - - true - Inactivity timeout reminder in minutes - 1033 - + + organization @@ -142162,13 +150509,13 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -142177,13 +150524,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -142195,90 +150542,57 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - inactivitytimeoutreminderinmins - 1900-01-01T00:00:00 + enableipbasedfirewallruleinauditmodename + 2025-11-06T01:17:44.6630016 - false + true canmodifyrequirementlevelsettings None - InactivityTimeoutReminderInMins + enableipbasedfirewallruleinauditmodeName - IntegerType + VirtualType - 8.2.0.0 - false - 0 - - None - 2147483647 - 0 - - 0 + 1.0.0.15 + true + + - - 92419f4b-3649-4183-ab0f-9415f5fe5d57 + + 00b87d20-ecf3-4b57-a111-7afcf59254ce - - Integer + enableipbasedfirewallrule + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 226 - 1900-01-01T00:00:00 + 10015 + 2025-11-06T01:17:44.6329984 - - - 8166ce85-583b-4076-83a7-4fb7e772fcff - - true - Setting for the Async Service Mailbox Queue. Defines the retrieval batch size of exchange server. - 1033 - - - - 8166ce85-583b-4076-83a7-4fb7e772fcff - - true - Setting for the Async Service Mailbox Queue. Defines the retrieval batch size of exchange server. - 1033 - + + - - - 551f024b-55c9-4581-8843-f7b4e8bc9c32 - - true - Exchange Email Retrieval Batch Size - 1033 - - - - 551f024b-55c9-4581-8843-f7b4e8bc9c32 - - true - Exchange Email Retrieval Batch Size - 1033 - + + organization @@ -142286,11 +150600,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -142301,13 +150615,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -142319,88 +150633,83 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - incomingemailexchangeemailretrievalbatchsize - 1900-01-01T00:00:00 + enableipbasedfirewallrulename + 2025-11-06T01:17:44.6329984 - false + true canmodifyrequirementlevelsettings None - IncomingEmailExchangeEmailRetrievalBatchSize + enableipbasedfirewallruleName - IntegerType + VirtualType - 6.0.0.0 - false - 0 - - None - 2147483647 - 1 - - 0 + 1.0.0.15 + true + + - - ad6ebcfc-693b-4c94-9f9c-410e382473ed + + 64d38e25-053a-4617-bdbc-e9928f3786d9 - String + Boolean false false false false canmodifyadditionalsettings - false + true - 182 - 1900-01-01T00:00:00 + 10007 + 2025-11-06T01:16:32.3399936 - 75eac027-505b-43c7-8035-e98104315df8 + f9741ee1-9f91-4fdb-977f-db8e7c5ee50e true - Initial version of the organization. + Information that specifies whether IP based SAS URI generation rule is enabled 1033 - 75eac027-505b-43c7-8035-e98104315df8 + f9741ee1-9f91-4fdb-977f-db8e7c5ee50e true - Initial version of the organization. + Information that specifies whether IP based SAS URI generation rule is enabled 1033 - 5db88fc7-f473-4163-a8d2-59b7dd55eb44 + be3441e8-534c-48a1-941b-172d456a7962 true - Initial Version + Enable IP SAS URI generation rule 1033 - 5db88fc7-f473-4163-a8d2-59b7dd55eb44 + be3441e8-534c-48a1-941b-172d456a7962 true - Initial Version + Enable IP SAS URI generation rule 1033 @@ -142451,102 +150760,120 @@ false false true - false + true true - initialversion - 1900-01-01T00:00:00 + enableipbasedstorageaccesssignaturerule + 2025-11-06T01:16:32.3399936 false canmodifyrequirementlevelsettings - None + SystemRequired - InitialVersion + EnableIpBasedStorageAccessSignatureRule - StringType + BooleanType - 5.0.0.0 + 1.0.0.5 false 0 - - Text - Auto - 20 - - - Text - - - false + + false + + 91e7003a-aeba-f011-bbd3-7c1e52365f30 + + + + + 93e7003a-aeba-f011-bbd3-7c1e52365f30 + + true + Information that specifies whether IP based SAS URI generation rule is enabled + 1033 + + + + 93e7003a-aeba-f011-bbd3-7c1e52365f30 + + true + Information that specifies whether IP based SAS URI generation rule is enabled + 1033 + + + + + + 92e7003a-aeba-f011-bbd3-7c1e52365f30 + + true + Enable IP SAS URI generation rule + 1033 + + + + 92e7003a-aeba-f011-bbd3-7c1e52365f30 + + true + Enable IP SAS URI generation rule + 1033 + + + + true + + false + iscustomizable + true + + false + true + _organization_enableipbasedstorageaccesssignaturerule + Boolean + 1.0.0.5 + + + + 0 - 40 - 2445173b-8c12-45ed-aa2e-a261c718b360 + 27ed7f11-3d10-40ee-b910-112bb54a8d95 - - Uniqueidentifier + enableipbasedstorageaccesssignaturerule + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 67 - 1900-01-01T00:00:00 + 10008 + 2025-11-06T01:16:32.3699968 - - - 0b92aa12-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the integration user for the organization. - 1033 - - - - 0b92aa12-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the integration user for the organization. - 1033 - + + - - - 315fc8d7-3a8a-4d60-95ff-284afe0d2202 - - true - Integration User - 1033 - - - - 315fc8d7-3a8a-4d60-95ff-284afe0d2202 - - true - Integration User - 1033 - + + organization - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -142555,13 +150882,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -142573,39 +150900,39 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - integrationuserid - 1900-01-01T00:00:00 + enableipbasedstorageaccesssignaturerulename + 2025-11-06T01:16:32.3699968 - false + true canmodifyrequirementlevelsettings None - IntegrationUserId + enableipbasedstorageaccesssignatureruleName - UniqueidentifierType + VirtualType - 5.0.0.0 - false + 1.0.0.5 + true - + - - 0f974214-e71c-4891-aecc-793678957bf4 + + 1366ce83-fba1-488d-9da1-f151a38f8a8a - String + Boolean false false false @@ -142614,42 +150941,56 @@ canmodifyadditionalsettings false - 29 - 1900-01-01T00:00:00 + 435 + 2025-11-06T00:19:20.1670016 - dd98ba00-2341-db11-898a-0007e9e17ebd + 12c561a2-1242-4593-91bc-80bd285343d0 true - Prefix to use for all invoice numbers throughout Microsoft Dynamics 365. + Indicates whether the user has enabled or disabled Live Persona Card feature in UCI. 1033 + + ccb6ae66-57dc-4011-8329-96a7d9fbad68 + + true + Angiver, om brugeren har aktiveret eller deaktiveret funktionen Live personkort i UCI. + 1030 + - dd98ba00-2341-db11-898a-0007e9e17ebd + 12c561a2-1242-4593-91bc-80bd285343d0 true - Prefix to use for all invoice numbers throughout Microsoft Dynamics 365. + Indicates whether the user has enabled or disabled Live Persona Card feature in UCI. 1033 - b15c909b-55a4-4d38-b287-18080392c538 + e0330fa1-26f8-4ab6-ae36-dc2df6f50354 true - Invoice Prefix + Indicates whether the user has enabled or disabled Live Persona Card feature in UCI. 1033 + + 1d6d1a5c-d575-490e-a1e6-a266f8d3ffeb + + true + Angiver, om brugeren har aktiveret eller deaktiveret funktionen Live personkort i UCI. + 1030 + - b15c909b-55a4-4d38-b287-18080392c538 + e0330fa1-26f8-4ab6-ae36-dc2df6f50354 true - Invoice Prefix + Indicates whether the user has enabled or disabled Live Persona Card feature in UCI. 1033 @@ -142665,7 +151006,7 @@ false iscustomizable - true + false false false @@ -142703,39 +151044,177 @@ true true - invoiceprefix - 1900-01-01T00:00:00 + enablelivepersonacarduci + 2025-11-06T00:19:20.1670016 false canmodifyrequirementlevelsettings - None + SystemRequired - InvoicePrefix + EnableLivePersonaCardUCI - StringType + BooleanType - 5.0.0.0 + 9.1.0.0 false 0 - Text - Auto - 20 - - - Text - + true + + 55ffe278-6b49-4332-8bad-bf5178dc3110 + + + + + 28b8447e-3ec9-45cc-becf-301779227577 + + true + Indicates whether the user has enabled or disabled Live Persona Card feature in UCI. + 1033 + + + 605cadf1-575a-4a10-9c3f-e700b2eb0fe6 + + true + Angiver, om brugeren har aktiveret eller deaktiveret funktionen Live personkort i UCI. + 1030 + + + + 28b8447e-3ec9-45cc-becf-301779227577 + + true + Indicates whether the user has enabled or disabled Live Persona Card feature in UCI. + 1033 + + + + + + 350c50fa-3a01-4092-82c7-bbc0992d1307 + + true + Live Persona Card UCI + 1033 + + + 00160fef-9d12-4941-9172-28fa2f91bab3 + + true + Live personkort i UCI + 1030 + + + + 350c50fa-3a01-4092-82c7-bbc0992d1307 + + true + Live Persona Card UCI + 1033 + + + + false + + false + iscustomizable + false + + false + true + organization_enablelivepersonacarduci + Boolean + 9.1.0.0 + + + + + + + + + + false + true + + + + f791be49-47a3-4b35-b0e2-24af21a60355 + + true + No + 1033 + + + 2f19d9f9-2a4c-41ec-b319-ce409d10ef7a + + true + Nej + 1030 + + + + f791be49-47a3-4b35-b0e2-24af21a60355 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 5faddec2-db65-4e38-ac44-a954f6eec57f + + true + Yes + 1033 + + + a673d24c-b013-49c7-8138-1fdcc994bb0e + + true + Ja + 1030 + + + + 5faddec2-db65-4e38-ac44-a954f6eec57f + + true + Yes + 1033 + + + + 1 + + + - false 0 - 40 - - 1c7d790d-a435-4182-9096-cfa2635ba5c1 + + 744cf9f9-20ae-488d-aa79-a0ae05f4bca0 - Picklist + Boolean false false false @@ -142744,42 +151223,56 @@ canmodifyadditionalsettings false - 10010 - 2025-11-06T01:16:32.4 + 446 + 2025-11-06T00:19:21.8700032 - c1d9ce98-b781-4b2c-a046-7e2904e7b427 + 8c890529-f900-46e4-bce5-f5998b2782b4 true - IP Based SAS mode. + Indicates whether the user has enabled or disabled LivePersonCardIntegration in Office. 1033 + + b6f0e729-46a6-4b8b-8852-1fd886e9d5cd + + true + Angiver, om brugeren har aktiveret eller deaktiveret LivePersonCardIntegration i Office. + 1030 + - c1d9ce98-b781-4b2c-a046-7e2904e7b427 + 8c890529-f900-46e4-bce5-f5998b2782b4 true - IP Based SAS mode. + Indicates whether the user has enabled or disabled LivePersonCardIntegration in Office. 1033 - 6c25b18b-c12c-4723-af29-114fee9c70f0 + 38fdb68f-dbbd-449c-90b9-0287ec896ce6 true - IP Based SAS mode + Indicates whether the user has enabled or disabled LivePersonCardIntegration in Office. 1033 + + f0cedcdb-0e50-4744-87bc-0e9053358685 + + true + Angiver, om brugeren har aktiveret eller deaktiveret LivePersonCardIntegration i Office. + 1030 + - 6c25b18b-c12c-4723-af29-114fee9c70f0 + 38fdb68f-dbbd-449c-90b9-0287ec896ce6 true - IP Based SAS mode + Indicates whether the user has enabled or disabled LivePersonCardIntegration in Office. 1033 @@ -142800,7 +151293,7 @@ false false - false + true canmodifyglobalfiltersettings false @@ -142817,410 +151310,7 @@ false false - false - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - true - true - true - true - true - - ipbasedstorageaccesssignaturemode - 2025-11-06T01:16:32.4 - - false - canmodifyrequirementlevelsettings - SystemRequired - - IpBasedStorageAccessSignatureMode - - - PicklistType - - 1.0.0.5 - false - 0 - - 0 - - 94e7003a-aeba-f011-bbd3-7c1e52365f30 - - - - - 96e7003a-aeba-f011-bbd3-7c1e52365f30 - - true - Select which IP Based SAS URI restriction will be used. - 1033 - - - - 96e7003a-aeba-f011-bbd3-7c1e52365f30 - - true - Select which IP Based SAS URI restriction will be used. - 1033 - - - - - - 95e7003a-aeba-f011-bbd3-7c1e52365f30 - - true - IP Based SAS mode - 1033 - - - - 95e7003a-aeba-f011-bbd3-7c1e52365f30 - - true - IP Based SAS mode - 1033 - - - - false - - false - iscustomizable - false - - false - true - ipbasedstorageaccesssignaturemode - Picklist - 1.0.0.5 - - - - - - - - - - - false - true - - - - 72eea778-5fdc-40c1-8a4b-5699563cb1c3 - - true - IP Binding only - 1033 - - - - 72eea778-5fdc-40c1-8a4b-5699563cb1c3 - - true - IP Binding only - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 4713b6b1-39bd-45c7-ba51-1ba000991ec3 - - true - IP Firewall only - 1033 - - - - 4713b6b1-39bd-45c7-ba51-1ba000991ec3 - - true - IP Firewall only - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - a2b7e2f6-eccb-4c04-a5f9-0e7e05ed006b - - true - IP Binding and IP Firewall - 1033 - - - - a2b7e2f6-eccb-4c04-a5f9-0e7e05ed006b - - true - IP Binding and IP Firewall - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 2639a8d2-6a84-4a18-9001-1e572d2e2900 - - true - IP Binding or IP Firewall - 1033 - - - - 2639a8d2-6a84-4a18-9001-1e572d2e2900 - - true - IP Binding or IP Firewall - 1033 - - - - 3 - - - - - - - - 0 - - - - - 8fcf0483-5487-4696-a9af-144029ac3b32 - - ipbasedstorageaccesssignaturemode - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10011 - 2025-11-06T01:16:32.4169984 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - ipbasedstorageaccesssignaturemodename - 2025-11-06T01:16:32.4169984 - - true - canmodifyrequirementlevelsettings - None - - ipbasedstorageaccesssignaturemodeName - - - VirtualType - - 1.0.0.5 - true - - - - - eada3e5c-98ed-44e0-837e-750b756057f1 - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 386 - 1900-01-01T00:00:00 - - - - - 40563c35-dd91-4ce1-976b-b382fcc0ccd1 - - true - Indicates whether the feature Action Card should be enabled for the organization. - 1033 - - - - 40563c35-dd91-4ce1-976b-b382fcc0ccd1 - - true - Indicates whether the feature Action Card should be enabled for the organization. - 1033 - - - - - - 7827028b-1263-497d-9b32-a6e4004cf5d5 - - true - Enable Action Card for this Organization - 1033 - - - - 7827028b-1263-497d-9b32-a6e4004cf5d5 - - true - Enable Action Card for this Organization - 1033 - - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true + true canmodifyissortablesettings false @@ -143236,19 +151326,19 @@ true true - isactioncardenabled - 1900-01-01T00:00:00 + enablelivepersoncardintegrationinoffice + 2025-11-06T00:19:21.8700032 false canmodifyrequirementlevelsettings SystemRequired - IsActionCardEnabled + EnableLivePersonCardIntegrationInOffice BooleanType - 8.2.0.0 + 9.1.0.0 false 0 @@ -143265,6 +151355,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -143310,6 +151407,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -143343,6 +151447,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -143361,7 +151472,7 @@ 0 - a37250a9-be81-41fe-ae03-676654d03719 + d447db9f-7b38-478e-b483-786bc69a56a0 Boolean @@ -143371,44 +151482,58 @@ false canmodifyadditionalsettings - true + false - 418 + 402 1900-01-01T00:00:00 - fa31acd5-8c54-4f34-9459-3a46e050a25c + 72b6fd7a-ce86-4a56-9a12-72da38fe209f true - Information that specifies whether Action Support Feature is enabled + Select to enable learning path auhtoring. 1033 + + 95dee064-276a-4498-8609-eecea5c718e3 + + true + Markér for at aktivere oprettelse af læringsforløb. + 1030 + - fa31acd5-8c54-4f34-9459-3a46e050a25c + 72b6fd7a-ce86-4a56-9a12-72da38fe209f true - Information that specifies whether Action Support Feature is enabled + Select to enable learning path auhtoring. 1033 - c91bbddd-3e62-4cd5-9981-83a738c8ad1e + 870ad82d-019c-499d-b138-2ee3ee365ff8 true - Action Support Feature enabled + Enable Learning Path Authoring 1033 + + 6cae39e0-d166-4327-ba3a-6615ad171673 + + true + Aktivér oprettelse af læringsforløb + 1030 + - c91bbddd-3e62-4cd5-9981-83a738c8ad1e + 870ad82d-019c-499d-b138-2ee3ee365ff8 true - Action Support Feature enabled + Enable Learning Path Authoring 1033 @@ -143462,41 +151587,48 @@ true true - isactionsupportfeatureenabled + enablelpauthoring 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsActionSupportFeatureEnabled + EnableLPAuthoring BooleanType - 9.0.0.0 + 8.2.0.0 false 0 false - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 2260ffe0-f88e-4baf-988c-108c740e6a2d - 05aedb96-402f-4dff-86e7-54b577874b2f + 92114cc8-eeff-44be-954b-f925e357631d true - Information that specifies whether a feature is enabled for the organization. + Flag to enable learning path content authoring. 1033 + + 5c151117-2cf0-4db2-80f6-55c5aa0ded3a + + true + Flag til aktivering af oprettelse af indhold til læringsforløb. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 92114cc8-eeff-44be-954b-f925e357631d true - Information that specifies whether a feature is enabled for the organization. + Flag to enable learning path content authoring. 1033 @@ -143511,11 +151643,11 @@ iscustomizable false - true + false true - organization_featureenabled + organization_enablelpauthoring Boolean - 8.1.0.0 + 8.2.0.0 @@ -143530,15 +151662,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 8ce9c58b-0674-47ea-b377-acf6ca98ee3a true No 1033 + + 083feace-221e-4bbd-ba10-ac5ab93b5c6d + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 8ce9c58b-0674-47ea-b377-acf6ca98ee3a true No @@ -143563,15 +151702,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 783dd33b-4c1a-4fb9-acdf-82cdb757b8aa true Yes 1033 + + 4f010f3a-3c9f-471c-945c-0a6419f3d9ce + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 783dd33b-4c1a-4fb9-acdf-82cdb757b8aa true Yes @@ -143587,7 +151733,7 @@ 0 - 6d045ae1-4588-43a3-963e-13a186982b0b + 2b3f6783-c7fe-4f8f-9a5c-b1ba08c68b9a Boolean @@ -143599,42 +151745,56 @@ canmodifyadditionalsettings false - 389 - 1900-01-01T00:00:00 + 10190 + 2025-11-06T06:14:32.5369984 - 8ec5fbf1-9d3b-4391-8801-3f7a7716c434 + b1e9ffd5-fba0-44bc-9acb-ccf77f9f3430 true - Indicates whether the feature Relationship Analytics should be enabled for the organization. + Control whether the organization Switch Maker Portal to Classic 1033 + + 8f4bd881-b5c2-4410-9860-9c05f9e92f29 + + true + Kontrollér, om organisationen skifter Maker Portal til klassisk + 1030 + - 8ec5fbf1-9d3b-4391-8801-3f7a7716c434 + b1e9ffd5-fba0-44bc-9acb-ccf77f9f3430 true - Indicates whether the feature Relationship Analytics should be enabled for the organization. + Control whether the organization Switch Maker Portal to Classic 1033 - e093ca34-f1f4-4af2-96a6-3971de7c9260 + f6179b47-2e9f-4ec7-a638-cbc3efd2a052 true - Enable Relationship Analytics for this Organization + Switch Maker Portal to Classic 1033 + + b015d8f9-a188-4481-bb2a-9628f48d367b + + true + Skift Maker Portal til klassisk + 1030 + - e093ca34-f1f4-4af2-96a6-3971de7c9260 + f6179b47-2e9f-4ec7-a638-cbc3efd2a052 true - Enable Relationship Analytics for this Organization + Switch Maker Portal to Classic 1033 @@ -143644,13 +151804,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -143679,31 +151839,31 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - isactivityanalysisenabled - 1900-01-01T00:00:00 + enablemakerswitchtoclassic + 2025-11-06T06:14:32.5369984 false canmodifyrequirementlevelsettings SystemRequired - IsActivityAnalysisEnabled + EnableMakerSwitchToClassic BooleanType - 8.2.0.0 + 9.1.0.0 false 0 - + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -143717,6 +151877,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -143762,6 +151929,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -143795,6 +151969,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -143809,11 +151990,102 @@ - + 0 + + 28c984db-f580-46be-9dad-044cfc645c1e + + enablemakerswitchtoclassic + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10191 + 2025-11-06T06:14:32.5500032 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + enablemakerswitchtoclassicname + 2025-11-06T06:14:32.5500032 + + true + canmodifyrequirementlevelsettings + None + + enablemakerswitchtoclassicName + + + VirtualType + + 9.1.0.0 + true + + + - 24152489-b0a4-4165-8bc3-6b4d47928ee1 + d2b354cb-29fb-4d02-bddb-e0b8ee7334fb Boolean @@ -143823,44 +152095,58 @@ false canmodifyadditionalsettings - false + true - 460 - 2025-11-06T00:19:22.2429952 + 397 + 1900-01-01T00:00:00 - 4642ecf9-87a9-4a71-aa21-5dd87decdf74 + 0d40253a-5548-4673-9ba3-79a13e7dc2fc true - Indicates whether all money attributes are converted to decimal. + Enable Integration with Microsoft Flow 1033 + + 51bb24ed-3e97-466c-b925-aa322d3b2eca + + true + Aktivér integration med Microsoft Flow + 1030 + - 4642ecf9-87a9-4a71-aa21-5dd87decdf74 + 0d40253a-5548-4673-9ba3-79a13e7dc2fc true - Indicates whether all money attributes are converted to decimal. + Enable Integration with Microsoft Flow 1033 - 4e324173-c7b7-4ab5-9656-9fa97a95fd1e + d320e2fd-32b5-421f-b1b5-90c459f4181b true - Set if all money attributes are converted to decimal + Enable Integration with Microsoft Flow 1033 + + d673de93-a3e2-48cc-8d65-be3839bb7e67 + + true + Aktivér integration med Microsoft Flow + 1030 + - 4e324173-c7b7-4ab5-9656-9fa97a95fd1e + d320e2fd-32b5-421f-b1b5-90c459f4181b true - Set if all money attributes are converted to decimal + Enable Integration with Microsoft Flow 1033 @@ -143876,7 +152162,7 @@ false iscustomizable - true + false false false @@ -143907,48 +152193,55 @@ canmodifysearchsettings false - false + true false false true - false + true true - isallmoneydecimal - 2025-11-06T00:19:22.2429952 + enablemicrosoftflowintegration + 2025-11-06T00:19:21.6669952 false canmodifyrequirementlevelsettings SystemRequired - IsAllMoneyDecimal + EnableMicrosoftFlowIntegration BooleanType - 9.1.0.0 + 8.2.0.0 false 0 false - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 30a6196b-8d65-4b4b-9f8f-8df2fb890ee7 - 05aedb96-402f-4dff-86e7-54b577874b2f + 84644821-5d4d-457b-a758-617d474edc22 true - Information that specifies whether a feature is enabled for the organization. + Enable Integration with Microsoft Flow. 1033 + + 57856df6-4392-4023-8b24-87b23dad33c0 + + true + Aktivér integration med Microsoft Flow. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 84644821-5d4d-457b-a758-617d474edc22 true - Information that specifies whether a feature is enabled for the organization. + Enable Integration with Microsoft Flow. 1033 @@ -143963,11 +152256,11 @@ iscustomizable false - true + false true - organization_featureenabled + organization_enablemicrosoftflowintegration Boolean - 8.1.0.0 + 8.2.0.0 @@ -143982,15 +152275,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + dfb25404-8fdf-4016-862b-c8c53d80f29d true No 1033 + + a04700e0-a291-4f95-a340-9b070ef98cbe + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + dfb25404-8fdf-4016-862b-c8c53d80f29d true No @@ -144015,15 +152315,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 484b099d-8a83-42a8-9181-cb7c7e12a0a7 true Yes 1033 + + 5104bf7f-93eb-4041-ad03-8e737667c5c6 + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 484b099d-8a83-42a8-9181-cb7c7e12a0a7 true Yes @@ -144039,7 +152346,7 @@ 0 - 33c2add2-4f1d-49e9-99b3-22fbebcbdb0e + 520d388c-2020-411e-b0e1-32d49286eafc Boolean @@ -144051,42 +152358,56 @@ canmodifyadditionalsettings false - 134 + 135 1900-01-01T00:00:00 - f899ba00-2341-db11-898a-0007e9e17ebd + e54545d1-e0ae-4cad-960f-edce58dbb5b2 true - Indicates whether loading of Microsoft Dynamics 365 in a browser window that does not have address, tool, and menu bars is enabled. + Enable pricing calculations on a Create call. 1033 + + 166b6beb-f898-4cca-93e7-0f849856413e + + true + Aktiver prisberegninger ved forbindelsesoprettelse. + 1030 + - f899ba00-2341-db11-898a-0007e9e17ebd + e54545d1-e0ae-4cad-960f-edce58dbb5b2 true - Indicates whether loading of Microsoft Dynamics 365 in a browser window that does not have address, tool, and menu bars is enabled. + Enable pricing calculations on a Create call. 1033 - d09c4d6b-e365-484a-ba13-27739f5aef0f + 160b9f52-25dd-455b-832a-0c5b19ce9b8a true - Is Application Mode Enabled + Enable Pricing On Create 1033 + + d953b180-fc4d-4cf7-8f13-c381db016cdb + + true + Aktivér prisfastsættelse ved oprettelse + 1030 + - d09c4d6b-e365-484a-ba13-27739f5aef0f + 160b9f52-25dd-455b-832a-0c5b19ce9b8a true - Is Application Mode Enabled + Enable Pricing On Create 1033 @@ -144140,14 +152461,14 @@ true true - isappmode + enablepricingoncreate 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsAppMode + EnablePricingOnCreate BooleanType @@ -144156,25 +152477,32 @@ false 0 - false + true - f1ddee85-b9ec-4ebb-81f9-eb0a90f32397 + 81a79a68-2782-409c-9017-85ea8a1253da - d0f64d8e-89e8-4dc8-9a0d-672f785a57dd + 9375f973-b4ca-4f23-87e0-9fa1aa2441d6 true - Flag that determines whether or not Microsoft Dynamics CRM should be loaded in a browser window that does not have address, tool, and menu bars. + Enable pricing calculations on a Create call. 1033 + + 36572363-747d-4427-9961-edf9dbc9bcad + + true + Aktiver prisberegninger ved forbindelsesoprettelse. + 1030 + - d0f64d8e-89e8-4dc8-9a0d-672f785a57dd + 9375f973-b4ca-4f23-87e0-9fa1aa2441d6 true - Flag that determines whether or not Microsoft Dynamics CRM should be loaded in a browser window that does not have address, tool, and menu bars. + Enable pricing calculations on a Create call. 1033 @@ -144191,7 +152519,7 @@ false true - organization_isappmode + organization_enablepricingoncreate Boolean 5.0.0.0 @@ -144208,15 +152536,22 @@ - 3d58aec5-e780-db11-9b85-00137299e160 + 1b62a88a-65e0-494a-9328-2d5a27098315 true No 1033 + + f8f1f173-97a3-4275-9f09-8cc6f5c85da0 + + true + Nej + 1030 + - 3d58aec5-e780-db11-9b85-00137299e160 + 1b62a88a-65e0-494a-9328-2d5a27098315 true No @@ -144241,15 +152576,22 @@ - 3f58aec5-e780-db11-9b85-00137299e160 + c87d81df-e323-4843-b474-7de717145aa7 true Yes 1033 + + 03346bc1-842a-4990-abb6-c9d252070031 + + true + Ja + 1030 + - 3f58aec5-e780-db11-9b85-00137299e160 + c87d81df-e323-4843-b474-7de717145aa7 true Yes @@ -144265,7 +152607,7 @@ 0 - f05eea22-806e-45e6-973d-6059a3c9ffd0 + 787d141b-08f9-40a1-bb4f-0aaeeb5b445f Boolean @@ -144277,42 +152619,56 @@ canmodifyadditionalsettings false - 272 - 1900-01-01T00:00:00 + 10154 + 2025-11-06T04:24:47.9670016 - e9d13817-ed34-47dc-bc47-d5672d2c0bb7 + 2e3c565d-85db-4b2d-a022-651b1c720b01 true - Enable or disable attachments sync for outlook and exchange. + Enable or disable Sensitivity Labels in Email. 1033 + + 2ba12892-5e4a-4cc0-8ae8-fafbedc9a7ed + + true + Aktivér eller deaktiver følsomhedsmærkater i mail. + 1030 + - e9d13817-ed34-47dc-bc47-d5672d2c0bb7 + 2e3c565d-85db-4b2d-a022-651b1c720b01 true - Enable or disable attachments sync for outlook and exchange. + Enable or disable Sensitivity Labels in Email. 1033 - 3b64106e-3dfc-4b45-b540-c705294b4c8a + aa8f2764-3a65-46cb-a16a-add186d63f0e true - Is Attachment Sync Enabled + Enable or disable Sensitivity Labels in Email 1033 + + a7b620e9-3eea-44dd-bc54-d124db462f3b + + true + Aktivér eller deaktiver følsomhedsmærkater i mail + 1030 + - 3b64106e-3dfc-4b45-b540-c705294b4c8a + aa8f2764-3a65-46cb-a16a-add186d63f0e true - Is Attachment Sync Enabled + Enable or disable Sensitivity Labels in Email 1033 @@ -144328,7 +152684,7 @@ false iscustomizable - true + false false false @@ -144366,50 +152722,78 @@ true true - isappointmentattachmentsyncenabled - 1900-01-01T00:00:00 + enablesensitivitylabels + 2026-04-05T13:26:02.7270016 false canmodifyrequirementlevelsettings SystemRequired - IsAppointmentAttachmentSyncEnabled + EnableSensitivityLabels BooleanType - 7.0.0.0 + 9.0.0.0 false 0 - + false - 64a222c8-c710-4a9b-a776-7585b7303807 + 5c0a3e85-c8ba-f011-bbd3-7c1e52365f30 - 736bc7e1-349a-41e2-bd51-56afab7a8b60 + 5e0a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Is attachment sync enabled + Enable or disable Sensitivity Labels in Email 1033 + + 77b5ebe2-5ca9-4d56-8a06-a6695f032421 + + true + Aktivér eller deaktiver følsomhedsmærkater i mail + 1030 + - 736bc7e1-349a-41e2-bd51-56afab7a8b60 + 5e0a3e85-c8ba-f011-bbd3-7c1e52365f30 true - Is attachment sync enabled + Enable or disable Sensitivity Labels in Email 1033 - - + + + 5d0a3e85-c8ba-f011-bbd3-7c1e52365f30 + + true + Enable or disable Sensitivity Labels in Email + 1033 + + + 7aebbfc1-b970-436f-8ec2-269832819e6c + + true + Aktivér eller deaktiver følsomhedsmærkater i mail + 1030 + + + + 5d0a3e85-c8ba-f011-bbd3-7c1e52365f30 + + true + Enable or disable Sensitivity Labels in Email + 1033 + - false + true false iscustomizable @@ -144417,9 +152801,9 @@ false true - organization_isappointmentattachmentsyncenabled + organization_enablesensitivitylabels Boolean - 7.0.0.0 + 9.0.0.0 @@ -144434,15 +152818,22 @@ - 5dee1523-538e-45f8-b99a-2bd100a687a5 + feb49c81-12d0-4314-856b-7ef92c2feb37 true No 1033 + + 9d640df9-ec1e-462a-90ae-f493e25c3ccd + + true + Nej + 1030 + - 5dee1523-538e-45f8-b99a-2bd100a687a5 + feb49c81-12d0-4314-856b-7ef92c2feb37 true No @@ -144467,15 +152858,22 @@ - e573e457-56c5-43e2-8738-5cdca3e1e518 + 833cf939-0550-41ac-b74c-ef4a35dcb3c5 true Yes 1033 + + 01c1f0ca-8313-404a-b2cd-78f4fb5db0b9 + + true + Ja + 1030 + - e573e457-56c5-43e2-8738-5cdca3e1e518 + 833cf939-0550-41ac-b74c-ef4a35dcb3c5 true Yes @@ -144487,60 +152885,32 @@ - + 0 - - eeb3e9ae-27e4-4c53-bbad-7b648d52357c + + 9ab6385e-d302-48f7-ab6c-64decb93e95e - - Boolean + enablesensitivitylabels + Virtual false false false false canmodifyadditionalsettings - false + true - 273 - 1900-01-01T00:00:00 + 10155 + 2025-11-06T04:24:47.9830016 - - - 88483b10-6821-4df6-b4f4-a311d1942e49 - - true - Enable or disable assigned tasks sync for outlook and exchange. - 1033 - - - - 88483b10-6821-4df6-b4f4-a311d1942e49 - - true - Enable or disable assigned tasks sync for outlook and exchange. - 1033 - + + - - - 9e6523af-b0a2-4c6d-add9-3c6341e1b2f4 - - true - Is Assigned Tasks Sync Enabled - 1033 - - - - 9e6523af-b0a2-4c6d-add9-3c6341e1b2f4 - - true - Is Assigned Tasks Sync Enabled - 1033 - + + organization @@ -144548,7 +152918,7 @@ true canmodifyauditsettings - true + false false @@ -144569,7 +152939,7 @@ false isrenameable - false + true false false @@ -144581,143 +152951,36 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - isassignedtaskssyncenabled - 1900-01-01T00:00:00 + enablesensitivitylabelsname + 2025-11-06T04:24:47.9830016 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - IsAssignedTasksSyncEnabled + enablesensitivitylabelsName - BooleanType + VirtualType - 7.0.0.0 - false - 0 - - false - - 9904827d-9286-4e97-8b2a-658e6f1b04f9 - - - - - 64f66918-8def-4066-be53-32547e412e80 - - true - Is assigned tasks sync enabled - 1033 - - - - 64f66918-8def-4066-be53-32547e412e80 - - true - Is assigned tasks sync enabled - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_isassignedtaskssyncenabled - Boolean - 7.0.0.0 - - - - - - - - - - false - true - - - - e7eb6c3d-096e-46a9-b3a0-feb9df7a56ff - - true - No - 1033 - - - - e7eb6c3d-096e-46a9-b3a0-feb9df7a56ff - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 87411bb8-7940-4d6d-8ea3-0ca7e6f8aad8 - - true - Yes - 1033 - - - - 87411bb8-7940-4d6d-8ea3-0ca7e6f8aad8 - - true - Yes - 1033 - - - - 1 - - - - - 0 + 9.0.0.0 + true + + - 2489d54c-5661-4797-9ade-017bfb757cdf + ac3308cf-e3a1-4a8c-97fd-f8c2c862e626 Boolean @@ -144727,44 +152990,58 @@ false canmodifyadditionalsettings - false + true - 156 + 216 1900-01-01T00:00:00 - 2cfa0d15-d999-44fd-833c-280cd40719a3 + 073816a5-f32f-4b7f-8841-5391569b4776 true - Enable or disable auditing of changes. + Use Smart Matching. 1033 + + 02700e36-ebee-4b7a-943e-cb433e74516f + + true + Brug smart matchning. + 1030 + - 2cfa0d15-d999-44fd-833c-280cd40719a3 + 073816a5-f32f-4b7f-8841-5391569b4776 true - Enable or disable auditing of changes. + Use Smart Matching. 1033 - 4d8b6b2f-2dea-41a0-b703-b8653ab046b0 + 4d1092a6-bae5-48f7-8aaf-cc48e0078e32 true - Is Auditing Enabled + Enable Smart Matching 1033 + + 538aab03-66c2-4ed7-9a03-bf8416dac264 + + true + Aktivér smart matchning + 1030 + - 4d8b6b2f-2dea-41a0-b703-b8653ab046b0 + 4d1092a6-bae5-48f7-8aaf-cc48e0078e32 true - Is Auditing Enabled + Enable Smart Matching 1033 @@ -144780,7 +153057,7 @@ false iscustomizable - true + false false false @@ -144818,14 +153095,14 @@ true true - isauditenabled + enablesmartmatching 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsAuditEnabled + EnableSmartMatching BooleanType @@ -144836,23 +153113,30 @@ false - a74d007c-9b58-41af-92fb-b478e406168b + 7387de37-e603-47b8-a3a5-7e5eeaa0a936 - 032fde72-0aa8-4512-ba6c-e3106198fc7b + c0e90db5-9302-42a8-8ed7-c3038048b7ec true - Enable/Disable Auditing of changes + Enable Smart Matching. 1033 + + c92ea9b4-ca68-4288-9c68-268c2056f28d + + true + Aktivér smart matchning. + 1030 + - 032fde72-0aa8-4512-ba6c-e3106198fc7b + c0e90db5-9302-42a8-8ed7-c3038048b7ec true - Enable/Disable Auditing of changes + Enable Smart Matching. 1033 @@ -144865,11 +153149,11 @@ false iscustomizable - true + false false true - organization_isauditenabled + organization_enablesmartmatching Boolean 5.0.0.0 @@ -144886,15 +153170,22 @@ - b110635f-88f8-4efa-820e-16c7d58edb8d + 7ed0c812-e0a8-4826-adb7-8fbcc6532587 true No 1033 + + 44dfa3a7-b954-487e-b4f7-035a0dfb8137 + + true + Nej + 1030 + - b110635f-88f8-4efa-820e-16c7d58edb8d + 7ed0c812-e0a8-4826-adb7-8fbcc6532587 true No @@ -144919,15 +153210,22 @@ - fcf32dfe-090f-4223-8467-de41c0cf389a + 2fccc211-ff69-4f2e-954e-51853127b8c1 true Yes 1033 + + 968942a0-2679-4e1f-ab0a-b4d5a68119e2 + + true + Ja + 1030 + - fcf32dfe-090f-4223-8467-de41c0cf389a + 2fccc211-ff69-4f2e-954e-51853127b8c1 true Yes @@ -144943,7 +153241,7 @@ 0 - c1bd6713-59dc-4bf1-ad14-3d5105ace4a7 + 86123c78-b5d2-4add-9889-598673a57b10 Boolean @@ -144955,42 +153253,56 @@ canmodifyadditionalsettings false - 390 - 1900-01-01T00:00:00 + 10218 + 2025-11-06T06:14:32.9100032 - 1c3dc120-692b-400e-bdf0-b65b09e4d23c + 593bb689-0bde-4d3b-a767-dc34b8670929 true - Indicates whether the feature Auto Capture should be enabled for the organization. + Leave empty to use default setting. Set to on/off to enable/disable CDN for UCI. 1033 + + 8289e6aa-d070-4dde-ab37-6342892d652f + + true + Lad feltet være tomt for at bruge standardindstillingen. Angiv som til/fra for at aktivere/deaktivere CDN for UCI. + 1030 + - 1c3dc120-692b-400e-bdf0-b65b09e4d23c + 593bb689-0bde-4d3b-a767-dc34b8670929 true - Indicates whether the feature Auto Capture should be enabled for the organization. + Leave empty to use default setting. Set to on/off to enable/disable CDN for UCI. 1033 - 85246c42-af57-4f62-a9a4-b3fa946ac3e4 + 58ac677d-b5f6-419a-86fc-21b62d5bd386 true - Enable Auto Capture for this Organization + Enable UCI CDN for organization 1033 + + 26bfc738-5761-4857-8a91-12d4ce23440d + + true + Aktivér UCI CDN for organisationen + 1030 + - 85246c42-af57-4f62-a9a4-b3fa946ac3e4 + 58ac677d-b5f6-419a-86fc-21b62d5bd386 true - Enable Auto Capture for this Organization + Enable UCI CDN for organization 1033 @@ -145000,13 +153312,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -145035,31 +153347,31 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - isautodatacaptureenabled - 1900-01-01T00:00:00 + enableunifiedclientcdn + 2025-11-06T06:14:32.9100032 false canmodifyrequirementlevelsettings SystemRequired - IsAutoDataCaptureEnabled + EnableUnifiedClientCDN BooleanType - 8.2.0.0 + 9.1.0.0 false 0 - + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -145073,6 +153385,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -145118,6 +153437,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -145151,6 +153477,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -145165,11 +153498,102 @@ - + 0 + + 022ad85a-0a69-4692-8f2d-8374f0eb5cc4 + + enableunifiedclientcdn + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10219 + 2025-11-06T06:14:32.9100032 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + enableunifiedclientcdnname + 2025-11-06T06:14:32.9100032 + + true + canmodifyrequirementlevelsettings + None + + enableunifiedclientcdnName + + + VirtualType + + 9.1.0.0 + true + + + - 2c6de632-5a05-4c52-a8d3-e0a43ce9f17e + c05ac538-b774-43e4-8fef-573a839bd9ac Boolean @@ -145179,44 +153603,58 @@ false canmodifyadditionalsettings - false + true - 454 - 2025-11-06T00:19:22.9170048 + 433 + 2025-11-06T00:19:22.6669952 - b1e1ba7a-fa58-4c8f-94b5-9347b0fbc3b1 + 98e9495a-1ce2-4a10-88ff-e927cd2b8be2 true - Indicates whether the V2 feature of Auto Capture should be enabled for the organization. + Enable site map and commanding update 1033 + + 9c54df07-90d0-4a53-aacd-041042e15038 + + true + Aktivér oversigt over websted og kommandoopdatering + 1030 + - b1e1ba7a-fa58-4c8f-94b5-9347b0fbc3b1 + 98e9495a-1ce2-4a10-88ff-e927cd2b8be2 true - Indicates whether the V2 feature of Auto Capture should be enabled for the organization. + Enable site map and commanding update 1033 - 86c1feb1-ca67-4acb-89c3-a5d0d9d84be2 + d45646bc-400a-48e4-a6ad-a9dbf6cbf650 true - Enable Auto Capture V2 for this Organization + Enable site map and commanding update 1033 + + 1d563206-7320-494b-930b-3784323f7ea4 + + true + Aktivér oversigt over websted og kommandoopdatering + 1030 + - 86c1feb1-ca67-4acb-89c3-a5d0d9d84be2 + d45646bc-400a-48e4-a6ad-a9dbf6cbf650 true - Enable Auto Capture V2 for this Organization + Enable site map and commanding update 1033 @@ -145232,7 +153670,7 @@ false iscustomizable - true + false false false @@ -145270,14 +153708,14 @@ true true - isautodatacapturev2enabled - 2025-11-06T00:19:22.9170048 + enableunifiedinterfaceshellrefresh + 2025-11-06T00:19:22.6669952 false canmodifyrequirementlevelsettings SystemRequired - IsAutoDataCaptureV2Enabled + EnableUnifiedInterfaceShellRefresh BooleanType @@ -145286,7 +153724,7 @@ false 0 - false + true 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -145299,6 +153737,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -145344,6 +153789,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -145377,6 +153829,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -145395,7 +153854,7 @@ 0 - ee981c1f-5a2a-4867-84c7-23a400bdae38 + 2998c744-0e2c-4c20-9b8a-b6317d547ba7 Boolean @@ -145407,42 +153866,56 @@ canmodifyadditionalsettings false - 10140 - 2025-11-06T04:12:32.7869952 + 290 + 1900-01-01T00:00:00 - 8486edfc-b4a6-4075-9062-c9ade9e35aae + 9183993f-091e-43fb-b788-6893cd419d24 true - + Organization setting to enforce read only plugins. 1033 + + ed531231-8b8e-47fb-839f-b06648fff901 + + true + Organisationsindstilling for at gennemtvinge skrivebeskyttede plug-ins. + 1030 + - 8486edfc-b4a6-4075-9062-c9ade9e35aae + 9183993f-091e-43fb-b788-6893cd419d24 true - + Organization setting to enforce read only plugins. 1033 - d101dfc2-8711-4b5a-9fc2-ddb07040a2e1 + 27453a2a-4360-4b97-9ca8-d5b9b455c2a5 true - IsAutoInstallAppForD365InTeamsEnabled + Organization setting to enforce read only plugins. 1033 + + 09134660-a0c0-4a5e-8e29-bc11d4b81d22 + + true + Organisationsindstilling for at gennemtvinge skrivebeskyttede plug-ins. + 1030 + - d101dfc2-8711-4b5a-9fc2-ddb07040a2e1 + 27453a2a-4360-4b97-9ca8-d5b9b455c2a5 true - IsAutoInstallAppForD365InTeamsEnabled + Organization setting to enforce read only plugins. 1033 @@ -145458,7 +153931,7 @@ false iscustomizable - false + true false false @@ -145496,74 +153969,67 @@ true true - isautoinstallappford365inteamsenabled - 2025-11-06T04:12:32.7869952 + enforcereadonlyplugins + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsAutoInstallAppForD365InTeamsEnabled + EnforceReadOnlyPlugins BooleanType - 9.2.0.0 + 7.1.0.0 false 0 - + false - b67697cd-c6ba-f011-bbd3-7c1e52365f30 + 314e8e6f-2ffa-42b6-9b55-d872799f7dc2 - b87697cd-c6ba-f011-bbd3-7c1e52365f30 + 56ff5255-44c7-4839-8ddc-fbf1fe6e2b5c true - + Organization setting to enforce read only plugins. 1033 - - - b87697cd-c6ba-f011-bbd3-7c1e52365f30 - - true - - 1033 - - - - - b77697cd-c6ba-f011-bbd3-7c1e52365f30 + f1b14020-5027-4c97-9541-4c796f7415f8 true - IsAutoInstallAppForD365InTeamsEnabled - 1033 + Organisationsindstilling for at gennemtvinge skrivebeskyttede plug-ins. + 1030 - b77697cd-c6ba-f011-bbd3-7c1e52365f30 + 56ff5255-44c7-4839-8ddc-fbf1fe6e2b5c true - IsAutoInstallAppForD365InTeamsEnabled + Organization setting to enforce read only plugins. 1033 + + + + - true + false false iscustomizable - false + true false true - organization_isautoinstallappford365inteamsenabled + organization_enforcereadonlyplugins Boolean - 9.2.0.0 + 7.1.0.0 @@ -145578,15 +154044,22 @@ - 21b904f3-b178-46d9-9dd5-2c4214c987e5 + d806ab4b-84f5-4e7a-b3ef-40af89bc1490 true No 1033 + + 8c209e1e-5a2e-4dac-920c-d3ee897d5236 + + true + Nej + 1030 + - 21b904f3-b178-46d9-9dd5-2c4214c987e5 + d806ab4b-84f5-4e7a-b3ef-40af89bc1490 true No @@ -145611,15 +154084,22 @@ - df6dcc8e-ec13-4a98-bb3a-7d11431357e7 + 2fdc15ad-b217-4be6-a3d9-c07a08830f85 true Yes 1033 + + db3dba60-144d-4da3-ba2e-82df2e8f7167 + + true + Ja + 1030 + - df6dcc8e-ec13-4a98-bb3a-7d11431357e7 + 2fdc15ad-b217-4be6-a3d9-c07a08830f85 true Yes @@ -145631,149 +154111,72 @@ - + 0 - - 05fbdd7b-2e7f-40ed-b963-21022e3b31be + + cd16fd23-229c-424a-8872-b73c345d0d14 - isautoinstallappford365inteamsenabled + entityimageid Virtual false false false - - false - canmodifyadditionalsettings - true - - 10141 - 2025-11-06T04:12:32.8169984 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - isautoinstallappford365inteamsenabledname - 2025-11-06T04:12:32.8169984 - - true - canmodifyrequirementlevelsettings - None - - isautoinstallappford365inteamsenabledName - - - VirtualType - - 9.2.0.0 - true - - - - - 8a33059b-fd9e-49b1-84a1-be3d7820dfff - - - Boolean - false - false - false false canmodifyadditionalsettings false - 238 + 246 1900-01-01T00:00:00 - dc6def7a-06a1-427b-a267-55a4ad46d4e3 + b7dbadff-4ee1-4a34-b9df-6c91827fe46d true - Information on whether auto save is enabled. + The default image for the entity. 1033 + + 1690d32b-5ec2-4a1f-aca6-b316f7662002 + + true + Standardbilledet for objektet. + 1030 + - dc6def7a-06a1-427b-a267-55a4ad46d4e3 + b7dbadff-4ee1-4a34-b9df-6c91827fe46d true - Information on whether auto save is enabled. + The default image for the entity. 1033 - 3f397ab7-1b91-4ff9-8a1e-7c63baf782b0 + 1203836d-c2f5-4687-9c92-8e1c78867cae true - Auto Save Enabled + Entity Image 1033 + + f3e6a280-6a54-4e36-aa09-a0603873d756 + + true + Objektbillede + 1030 + - 3f397ab7-1b91-4ff9-8a1e-7c63baf782b0 + 1203836d-c2f5-4687-9c92-8e1c78867cae true - Auto Save Enabled + Entity Image 1033 @@ -145783,7 +154186,7 @@ true canmodifyauditsettings - true + false false @@ -145804,7 +154207,7 @@ false isrenameable - false + true false false @@ -145827,149 +154230,33 @@ true true - isautosaveenabled + entityimage 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsAutoSaveEnabled + EntityImage - - BooleanType + + ImageType 6.0.0.0 - false - 0 + true + - true - - 23a0f236-7aaa-4fbb-82d7-48b3931dc5e4 - - - - - 9bfa6873-aed5-4e6a-8cac-cdb807b2a62b - - true - Information on whether auto save is enabled. - 1033 - - - - 9bfa6873-aed5-4e6a-8cac-cdb807b2a62b - - true - Information on whether auto save is enabled. - 1033 - - - - - - 3df7ea8f-b1e2-4d8b-a663-94226ed9792e - - true - Auto Save Enabled - 1033 - - - - 3df7ea8f-b1e2-4d8b-a663-94226ed9792e - - true - Auto Save Enabled - 1033 - - - - false - - false - iscustomizable - true - - false - true - organization_isautosaveenabled - Boolean - 6.0.0.0 - - - - - - - - - - false - true - - - - a4306c59-b919-413b-830b-629d3777ebd9 - - true - No - 1033 - - - - a4306c59-b919-413b-830b-629d3777ebd9 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 108b2697-e81e-42d4-ac03-61bb5b403870 - - true - Yes - 1033 - - - - 108b2697-e81e-42d4-ac03-61bb5b403870 - - true - Yes - 1033 - - - - 1 - - - - - 0 + false + true + 144 + 10240 + 144 - - 4833104b-cd3f-4875-8073-7e68886ce603 + + 88fb3f27-90cf-4b69-be7a-df3d37af69fc - - Boolean + entityimageid + BigInt false false false @@ -145978,52 +154265,24 @@ canmodifyadditionalsettings false - 10138 - 2025-11-06T04:12:32.7529984 + 247 + 1900-01-01T00:00:00 - - - 142765b9-078b-44fb-b0a3-e88c265bd114 - - true - - 1033 - - - - 142765b9-078b-44fb-b0a3-e88c265bd114 - - true - - 1033 - + + - - - 989f5256-088f-4ed4-9426-b4cc4265fd4c - - true - IsBaseCardStaticFieldDataEnabled - 1033 - - - - 989f5256-088f-4ed4-9426-b4cc4265fd4c - - true - IsBaseCardStaticFieldDataEnabled - 1033 - + + organization - true + false canmodifyauditsettings - true + false false @@ -146060,166 +154319,47 @@ canmodifysearchsettings false - true + false false false true - true + false true - isbasecardstaticfielddataenabled - 2025-11-06T04:12:32.7529984 + entityimage_timestamp + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsBaseCardStaticFieldDataEnabled + EntityImage_Timestamp - BooleanType + BigIntType - 9.2.0.0 - false - 0 - - false - - b37697cd-c6ba-f011-bbd3-7c1e52365f30 - - - - - b57697cd-c6ba-f011-bbd3-7c1e52365f30 - - true - - 1033 - - - - b57697cd-c6ba-f011-bbd3-7c1e52365f30 - - true - - 1033 - - - - - - b47697cd-c6ba-f011-bbd3-7c1e52365f30 - - true - IsBaseCardStaticFieldDataEnabled - 1033 - - - - b47697cd-c6ba-f011-bbd3-7c1e52365f30 - - true - IsBaseCardStaticFieldDataEnabled - 1033 - - - - true - - false - iscustomizable - false - - false - true - organization_isbasecardstaticfielddataenabled - Boolean - 9.2.0.0 - - - - - - - - - - false - true - - - - 1ab025df-56b7-4f18-8859-233ae4a901d1 - - true - No - 1033 - - - - 1ab025df-56b7-4f18-8859-233ae4a901d1 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - cb70ced1-2a7a-4e78-97ca-4462bea90946 - - true - Yes - 1033 - - - - cb70ced1-2a7a-4e78-97ca-4462bea90946 - - true - Yes - 1033 - - - - 1 - - - - - 0 + 6.0.0.0 + true + + + 9223372036854775807 + -9223372036854775808 - - 1c81d7e5-1c5d-4e96-88f7-79605a34c6fa + + 62b5e5b3-fedf-4dff-9e2f-ab28d3f8bb9b - isbasecardstaticfielddataenabled - Virtual + entityimageid + String false false false false canmodifyadditionalsettings - true + false - 10139 - 2025-11-06T04:12:32.7869952 + 248 + 1900-01-01T00:00:00 @@ -146233,7 +154373,7 @@ - true + false canmodifyauditsettings false @@ -146241,7 +154381,7 @@ false iscustomizable - true + false false false @@ -146256,10 +154396,10 @@ false isrenameable - true + false false - false + true false false @@ -146268,7 +154408,7 @@ false - true + false canmodifysearchsettings false @@ -146277,30 +154417,41 @@ false true false - false + true - isbasecardstaticfielddataenabledname - 2025-11-06T04:12:32.7869952 + entityimage_url + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - isbasecardstaticfielddataenabledName + EntityImage_URL - VirtualType + StringType - 9.2.0.0 + 6.0.0.0 true - - + 0 + + Url + Auto + 200 + + + Url + + + false + 0 + 400 - - 67aa5065-cf9f-474d-ba14-b65de31c8a37 + + 06321107-9d0a-4a1d-aed4-0423036007eb - Boolean + Uniqueidentifier false false false @@ -146309,42 +154460,56 @@ canmodifyadditionalsettings false - 10224 - 2025-11-06T06:14:32.9730048 + 245 + 1900-01-01T00:00:00 - e7ed233c-1b89-4e84-bd6a-969768d4a914 + 652334f3-0e66-464f-987f-4982a6feba7a true - Determines whether users can make use of basic Geospatial featuers in Canvas apps. + For internal use only. 1033 + + 801e3197-c1f9-46a4-973a-c6fca9e00c0e + + true + Kun til intern brug. + 1030 + - e7ed233c-1b89-4e84-bd6a-969768d4a914 + 652334f3-0e66-464f-987f-4982a6feba7a true - Determines whether users can make use of basic Geospatial featuers in Canvas apps. + For internal use only. 1033 - b6e6e0bd-d7bb-4a23-aa65-0b89c853111b + 41ca1c9b-ed2f-436c-903f-a29b7ad066a0 true - Enable the basic Geospatial features in Canvas Apps + Entity Image Id 1033 + + 893e952e-ff7c-480b-bd28-a69bfcf16f9f + + true + Id for objektbillede + 1030 + - b6e6e0bd-d7bb-4a23-aa65-0b89c853111b + 41ca1c9b-ed2f-436c-903f-a29b7ad066a0 true - Enable the basic Geospatial features in Canvas Apps + Entity Image Id 1033 @@ -146352,7 +154517,7 @@ - true + false canmodifyauditsettings false @@ -146389,162 +154554,97 @@ false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true + false true - isbasicgeospatialintegrationenabled - 2025-11-06T06:14:32.9730048 + entityimageid + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsBasicGeospatialIntegrationEnabled + EntityImageId - BooleanType + UniqueidentifierType - 9.1.0.0 + 6.0.0.0 false - 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - - 0 + + - - 532e3aac-fd68-4354-b00e-73468212014b + + c17acfb4-b335-404e-ba77-5fda4a676c60 - isbasicgeospatialintegrationenabled - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true + false - 10225 - 2025-11-06T06:14:32.9900032 + 300 + 1900-01-01T00:00:00 - - + + + a62e73c6-c387-4f75-b391-6eb5613d5dda + + true + Maximum number of days to keep change tracking deleted records + 1033 + + + 68f5cced-5584-4f9d-8afe-f9dca3b1f4f7 + + true + Det maksimale antal dage, skift sporing af slettede poster skal bevares. + 1030 + + + + a62e73c6-c387-4f75-b391-6eb5613d5dda + + true + Maximum number of days to keep change tracking deleted records + 1033 + - - + + + ee63abe0-a49a-41d6-a681-c3135fe338d4 + + true + Days to Expire Change Tracking Deleted Records + 1033 + + + 0e6fc519-8646-4147-bfc3-1107c2ca6848 + + true + Dage til udløb af Skift sporing af slettede poster + 1030 + + + + ee63abe0-a49a-41d6-a681-c3135fe338d4 + + true + Days to Expire Change Tracking Deleted Records + 1033 + organization @@ -146552,11 +154652,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -146567,13 +154667,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -146585,83 +154685,102 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - isbasicgeospatialintegrationenabledname - 2025-11-06T06:14:32.9900032 + expirechangetrackingindays + 2025-11-06T00:19:22.1970048 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - isbasicgeospatialintegrationenabledName + ExpireChangeTrackingInDays - VirtualType + IntegerType - 9.1.0.0 - true - - + 7.1.0.0 + false + 0 + + None + 365 + 0 + + 0 - - 6e03b418-b5b1-4252-a6fc-7e684cdc5801 + + 67376bab-6749-441d-a1e4-cbb8fb7987ea - Boolean + Integer false false false false canmodifyadditionalsettings - true + false - 419 + 155 1900-01-01T00:00:00 - 03e96651-b21c-4a07-908e-083a0d19bda1 + 79e7256f-0962-461f-b495-05460748ee4f true - Information that specifies whether BPF Entity Customization Feature is enabled + Maximum number of days before deleting inactive subscriptions. 1033 + + 8912f94f-7fa3-4daa-968f-71e5604eefd8 + + true + Det maksimale antal dage, før inaktive abonnementer slettes. + 1030 + - 03e96651-b21c-4a07-908e-083a0d19bda1 + 79e7256f-0962-461f-b495-05460748ee4f true - Information that specifies whether BPF Entity Customization Feature is enabled + Maximum number of days before deleting inactive subscriptions. 1033 - 7f436ae9-b447-4102-910a-1cb1a9376859 + a2065f49-7999-4086-8f23-0f78e988eb66 true - BPF Entity Customization Feature enabled + Days to Expire Subscriptions 1033 + + f1c1f9e9-fd07-4fb8-81b8-fccfe305ccff + + true + Dage, før abonnementer udløber + 1030 + - 7f436ae9-b447-4102-910a-1cb1a9376859 + a2065f49-7999-4086-8f23-0f78e988eb66 true - BPF Entity Customization Feature enabled + Days to Expire Subscriptions 1033 @@ -146677,7 +154796,7 @@ false iscustomizable - false + true false false @@ -146715,179 +154834,91 @@ true true - isbpfentitycustomizationfeatureenabled - 1900-01-01T00:00:00 + expiresubscriptionsindays + 2025-11-06T00:19:21.8070016 false canmodifyrequirementlevelsettings SystemRequired - IsBPFEntityCustomizationFeatureEnabled + ExpireSubscriptionsInDays - BooleanType + IntegerType - 9.0.0.0 + 5.0.0.0 false 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + 0 0 - - 3ebe3b71-6baa-49d1-9dd9-6689756d0e5d + + 0b970ec6-14e5-4241-8636-143beef1ffdb - Boolean + String false false false false canmodifyadditionalsettings - true + false - 10088 - 2025-11-06T02:47:58.0870016 + 391 + 1900-01-01T00:00:00 - 4a8927c8-0358-419b-a95f-ce4d35898d1a + f0fd08da-3ebf-402a-8fd9-fb7bddb32c04 true - Indicates whether Power Automate savings feature is enabled for Cloudflow. + Specify the base URL to use to look for external document suggestions. 1033 + + 5165c4c0-8cb8-42dd-a7bf-82993922ab78 + + true + Angiv den basis-URL, der skal bruges til at lede efter eksterne dokumentforslag. + 1030 + - 4a8927c8-0358-419b-a95f-ce4d35898d1a + f0fd08da-3ebf-402a-8fd9-fb7bddb32c04 true - Indicates whether Power Automate savings feature is enabled for Cloudflow. + Specify the base URL to use to look for external document suggestions. 1033 - fc8c3267-8323-4f91-9245-a7b75dbd979c + b40bed50-7957-4c92-9821-8edf2a35e3bd true - Enable Power Automate savings feature for Cloudflow + External Base URL 1033 + + f49993c0-f324-4c39-bfde-aeddd9eec6fd + + true + Ekstern basis-URL + 1030 + - fc8c3267-8323-4f91-9245-a7b75dbd979c + b40bed50-7957-4c92-9821-8edf2a35e3bd true - Enable Power Automate savings feature for Cloudflow + External Base URL 1033 @@ -146918,7 +154949,7 @@ false isrenameable - true + false false false @@ -146930,7 +154961,7 @@ false - true + false canmodifysearchsettings false @@ -146941,153 +154972,99 @@ true true - iscloudflowsavingsenabled - 2025-11-06T02:47:58.0870016 + externalbaseurl + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - SystemRequired + None - IsCloudFlowSavingsEnabled + ExternalBaseUrl - BooleanType + StringType - 1.9.17.0 + 8.2.0.0 false 0 - true - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + Text + Auto + 500 + + + Text + + + false 0 + 1000 - - 1cc8a9f1-5502-4a4b-b41f-130c63df2515 + + 5942f009-901f-4635-b864-aef02da72a15 - iscloudflowsavingsenabled - Virtual + + String false false false - true + false canmodifyadditionalsettings - true + false - 10089 - 2025-11-06T02:47:58.1030016 + 316 + 1900-01-01T00:00:00 - - + + + fa405c85-16f8-4fb8-9869-7056b6c5ee5c + + true + XML string containing the ExternalPartyEnabled entities correlation keys for association of existing External Party instance entities to newly created IsExternalPartyEnabled entities.For internal use only + 1033 + + + 58db7a14-270e-45ac-a02d-469a5d90b606 + + true + XML-streng, der indeholder ExternalPartyEnabled-objekters korrelationsnøgler til tilknytning af eksterne parters eksisterende forekomstobjekter til de senest oprettede IsExternalPartyEnabled-objekter. Kun til intern brug. + 1030 + + + + fa405c85-16f8-4fb8-9869-7056b6c5ee5c + + true + XML string containing the ExternalPartyEnabled entities correlation keys for association of existing External Party instance entities to newly created IsExternalPartyEnabled entities.For internal use only + 1033 + - - + + + 2939dc73-47a4-474a-b9fc-2a5e312806ae + + true + ExternalPartyEnabled Entities correlation Keys + 1033 + + + c0107b0a-8537-4a9f-b2fb-28aa425efd9d + + true + Korrelationsnøgler for ExternalPartyEnabled-objekter + 1030 + + + + 2939dc73-47a4-474a-b9fc-2a5e312806ae + + true + ExternalPartyEnabled Entities correlation Keys + 1033 + organization @@ -147095,11 +155072,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -147110,13 +155087,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -147128,39 +155105,50 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - iscloudflowsavingsenabledname - 2025-11-06T02:47:58.1030016 + externalpartycorrelationkeys + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - iscloudflowsavingsenabledName + ExternalPartyCorrelationKeys - VirtualType + StringType - 1.9.17.0 - true - - + 8.0.0.0 + false + 0 + + Text + Auto + 1073741823 + + + Text + + + false + 0 + -1 - - 1e29b5f0-eeb0-49f9-90fb-610db9d5af02 + + 1575c02e-625c-40a4-a65f-4542dff3be09 - Boolean + String false false false @@ -147169,42 +155157,56 @@ canmodifyadditionalsettings false - 10159 - 2025-11-06T04:49:46.2870016 + 315 + 1900-01-01T00:00:00 - 42e72a83-eafa-4b83-84d6-58f4895b9304 + b810679e-c5ca-443e-b083-d6353e7c6b96 true - Read-only flag indicating whether clustering is enabled for the organization. + XML string containing the ExternalPartyEnabled entities settings. 1033 + + d27462eb-8cb7-4f2a-9427-95b7bab8b956 + + true + XML-streng, der indeholder indstillinger for ExternalPartyEnabled-objekter. + 1030 + - 42e72a83-eafa-4b83-84d6-58f4895b9304 + b810679e-c5ca-443e-b083-d6353e7c6b96 true - Read-only flag indicating whether clustering is enabled for the organization. + XML string containing the ExternalPartyEnabled entities settings. 1033 - 5e1ac6e8-c1f4-4241-8f3b-d659d3f06d18 + 255048dc-7b85-4e07-8559-d9317650b2cd true - Clustering is enabled. + ExternalPartyEnabled Entities Settings.For internal use only 1033 + + 2fa5a424-8fef-4a14-9aef-284222fa12d0 + + true + Indstillinger for ExternalPartyEnabled-objekter. Kun til intern brug. + 1030 + - 5e1ac6e8-c1f4-4241-8f3b-d659d3f06d18 + 255048dc-7b85-4e07-8559-d9317650b2cd true - Clustering is enabled. + ExternalPartyEnabled Entities Settings.For internal use only 1033 @@ -147214,13 +155216,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -147251,174 +155253,106 @@ canmodifysearchsettings false - false + true false false true - false + true true - isclusteringenabled - 2025-11-06T04:49:46.2870016 + externalpartyentitysettings + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IsClusteringEnabled + ExternalPartyEntitySettings - BooleanType + StringType - 9.2.0.0 + 8.0.0.0 false 0 - - false - - 7d9de503-ccba-f011-bbd3-7c1e52365f30 - - - - - 7f9de503-ccba-f011-bbd3-7c1e52365f30 - - true - Read-only flag indicating whether clustering is enabled for the organization. - 1033 - - - - 7f9de503-ccba-f011-bbd3-7c1e52365f30 - - true - Read-only flag indicating whether clustering is enabled for the organization. - 1033 - - - - - - 7e9de503-ccba-f011-bbd3-7c1e52365f30 - - true - Clustering enabled/disabled flag. - 1033 - - - - 7e9de503-ccba-f011-bbd3-7c1e52365f30 - - true - Clustering enabled/disabled flag. - 1033 - - - - true - - false - iscustomizable - false - - false - true - organization_isclusteringenabled - Boolean - 9.2.0.0 - - - - - - - - - - false - true - - - - d5f7ebb8-3ab6-4491-a2e2-72545321d280 - - true - No - 1033 - - - - d5f7ebb8-3ab6-4491-a2e2-72545321d280 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 4841c54b-c754-4cf4-b51f-00a93ded3e68 - - true - Yes - 1033 - - - - 4841c54b-c754-4cf4-b51f-00a93ded3e68 - - true - Yes - 1033 - - - - 1 - - - - + + Text + Auto + 1073741823 + + + Text + + + false 0 + -1 - - dc90c07f-60e9-48c1-8a53-96484aa88b62 + + 2d9490b5-1a39-4bf9-8fb7-d1461916513d - isclusteringenabled - Virtual + + String false false false - true + false canmodifyadditionalsettings - true + false - 10160 - 2025-11-06T04:49:46.3030016 + 116 + 1900-01-01T00:00:00 - - + + + 9cd8dee2-2241-db11-898a-0007e9e17ebd + + true + Features to be enabled as an XML BLOB. + 1033 + + + af71706d-b37e-4d06-b465-949ff2b05204 + + true + Funktioner, der skal aktiveres som et XML-BLOB. + 1030 + + + + 9cd8dee2-2241-db11-898a-0007e9e17ebd + + true + Features to be enabled as an XML BLOB. + 1033 + - - + + + c41ed890-3487-473e-8b04-9d289a175e98 + + true + Feature Set + 1033 + + + f9fc65bf-0ac1-4365-a01f-cd75f6b4a63b + + true + Funktionssæt + 1030 + + + + c41ed890-3487-473e-8b04-9d289a175e98 + + true + Feature Set + 1033 + organization @@ -147426,11 +155360,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -147441,13 +155375,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -147459,39 +155393,50 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - isclusteringenabledname - 2025-11-06T04:49:46.3030016 + featureset + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - isclusteringenabledName + FeatureSet - VirtualType + StringType - 9.2.0.0 - true - - + 5.0.0.0 + false + 0 + + Text + Auto + 1073741823 + + + Text + + + false + 0 + -1 - - e5a8df2f-0112-4501-8f6e-d7a1ad5c776f + + 0c8790b8-1d2c-4501-bb9c-c4a3a6957835 - Boolean + DateTime false false false @@ -147500,42 +155445,56 @@ canmodifyadditionalsettings false - 10133 - 2025-11-06T04:12:32.6470016 + 8 + 1900-01-01T00:00:00 - 027eef04-e8be-4ece-85cd-21a59fbefce0 + 6052c2fa-2241-db11-898a-0007e9e17ebd true - + Start date for the fiscal period that is to be used throughout Microsoft CRM. 1033 + + 683504a1-c4a8-4d31-8d27-75ebe2735306 + + true + Startdato for den regnskabsperiode, der bruges i Microsoft CRM. + 1030 + - 027eef04-e8be-4ece-85cd-21a59fbefce0 + 6052c2fa-2241-db11-898a-0007e9e17ebd true - + Start date for the fiscal period that is to be used throughout Microsoft CRM. 1033 - 875b0fb2-d34a-46c4-ac00-d25fe2e7d9c4 + ec58107a-c534-48ba-b8ad-e17f168e7edd true - IsCollaborationExperienceEnabled + Fiscal Calendar Start 1033 + + 722dd0c0-7b0c-4e69-9fbd-3dfe030f512d + + true + Start på regnskabskalender + 1030 + - 875b0fb2-d34a-46c4-ac00-d25fe2e7d9c4 + ec58107a-c534-48ba-b8ad-e17f168e7edd true - IsCollaborationExperienceEnabled + Fiscal Calendar Start 1033 @@ -147551,7 +155510,7 @@ false iscustomizable - false + true false false @@ -147589,167 +155548,100 @@ true true - iscollaborationexperienceenabled - 2025-11-06T04:12:32.6470016 + fiscalcalendarstart + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsCollaborationExperienceEnabled + FiscalCalendarStart - BooleanType + DateTimeType - 9.2.0.0 + 5.0.0.0 false 0 - - true - - ad7697cd-c6ba-f011-bbd3-7c1e52365f30 - - - - - af7697cd-c6ba-f011-bbd3-7c1e52365f30 - - true - - 1033 - - - - af7697cd-c6ba-f011-bbd3-7c1e52365f30 - - true - - 1033 - - - - - - ae7697cd-c6ba-f011-bbd3-7c1e52365f30 - - true - IsCollaborationExperienceEnabled - 1033 - - - - ae7697cd-c6ba-f011-bbd3-7c1e52365f30 - - true - IsCollaborationExperienceEnabled - 1033 - - - - true - - false - iscustomizable - false - - false - true - organization_iscollaborationexperienceenabled - Boolean - 9.2.0.0 - - - - - - - - - - false - true - - - - 797e3528-3cef-4624-8b81-385199e52510 - - true - No - 1033 - - - - 797e3528-3cef-4624-8b81-385199e52510 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 0fa76c55-93df-4826-86a3-8cee52d74516 - - true - Yes - 1033 - - - - 0fa76c55-93df-4826-86a3-8cee52d74516 - - true - Yes - 1033 - - - - 1 - - - - + + DateOnly + Inactive + 0 + + false + canmodifybehavior + false + + + UserLocal + - - 83885689-83af-4320-bacf-fb8661735423 + + 084cfe0d-9fea-4317-9def-592706dbb035 - iscollaborationexperienceenabled - Virtual + + String false false false false canmodifyadditionalsettings - true + false - 10134 - 2025-11-06T04:12:32.6770048 + 35 + 1900-01-01T00:00:00 - - + + + 5cf1fbc4-2241-db11-898a-0007e9e17ebd + + true + Information that specifies how the name of the fiscal period is displayed throughout Microsoft CRM. + 1033 + + + 725f1775-b41c-47e9-a46f-d46165f95cfb + + true + Angiver, hvordan navnet på regnskabsperioden vises i Microsoft CRM. + 1030 + + + + 5cf1fbc4-2241-db11-898a-0007e9e17ebd + + true + Information that specifies how the name of the fiscal period is displayed throughout Microsoft CRM. + 1033 + - - + + + fe3acdff-b36a-4488-bab0-6f2015c763d4 + + true + Fiscal Period Format + 1033 + + + 244a1623-45a8-42d4-b825-1ed897468ec6 + + true + Format af regnskabsperiode + 1030 + + + + fe3acdff-b36a-4488-bab0-6f2015c763d4 + + true + Fiscal Period Format + 1033 + organization @@ -147757,7 +155649,7 @@ true canmodifyauditsettings - false + true false @@ -147778,7 +155670,7 @@ false isrenameable - true + false false false @@ -147790,83 +155682,108 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - iscollaborationexperienceenabledname - 2025-11-06T04:12:32.6770048 + fiscalperiodformat + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - iscollaborationexperienceenabledName + FiscalPeriodFormat - VirtualType + StringType - 9.2.0.0 - true - - + 5.0.0.0 + false + 0 + + Text + Auto + 25 + + + Text + + + false + 0 + 50 - - 319ac2ce-e1c5-4372-a51d-63c99af3c16a + + 0d8324e6-918e-45b8-b309-250279989d19 - Boolean + Picklist false false false false canmodifyadditionalsettings - true + false - 10086 - 2025-11-06T02:47:58.04 + 208 + 1900-01-01T00:00:00 - 210f1c75-ef82-42be-a74b-f743a4263567 + 3371ca16-7feb-4536-ab8c-cd9807919dc7 true - Indicates whether Computer Use in MCS feature is enabled in this organization. + Format in which the fiscal period will be displayed. 1033 + + 3a3f56f1-adde-4bb0-a2da-fcd39e0e901e + + true + Det format, som regnskabsperioden skal vises i. + 1030 + - 210f1c75-ef82-42be-a74b-f743a4263567 + 3371ca16-7feb-4536-ab8c-cd9807919dc7 true - Indicates whether Computer Use in MCS feature is enabled in this organization. + Format in which the fiscal period will be displayed. 1033 - a59616d4-9ac8-4d95-b460-12aba2e8d13f + e9d04d80-c037-447b-85ab-47a3914b3946 true - Enable Computer Use in MCS feature for this organization + Format for Fiscal Period 1033 + + 8b93942c-8e34-44a1-b0c3-c5a7868ee3d4 + + true + Format for regnskabsperiode + 1030 + - a59616d4-9ac8-4d95-b460-12aba2e8d13f + e9d04d80-c037-447b-85ab-47a3914b3946 true - Enable Computer Use in MCS feature for this organization + Format for Fiscal Period 1033 @@ -147897,7 +155814,7 @@ false isrenameable - true + false false false @@ -147909,7 +155826,7 @@ false - true + false canmodifysearchsettings false @@ -147920,145 +155837,393 @@ true true - iscomputeruseinmcsenabled - 2025-11-06T02:47:58.04 + fiscalperiodformatperiod + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - SystemRequired + None - IsComputerUseInMCSEnabled + FiscalPeriodFormatPeriod - BooleanType + PicklistType - 1.9.6.0 + 5.0.0.0 false 0 - true + -1 - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 1a110e80-d464-4302-ba24-e7103d1a58bc - 05aedb96-402f-4dff-86e7-54b577874b2f + ad1ab5d6-b546-4717-9500-67d3fa455a0d true - Information that specifies whether a feature is enabled for the organization. + Fiscal Period Format 1033 + + 92500d80-ac68-4151-893f-c229e4999f49 + + true + Format af regnskabsperiode + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + ad1ab5d6-b546-4717-9500-67d3fa455a0d true - Information that specifies whether a feature is enabled for the organization. + Fiscal Period Format 1033 - - + + + 05483850-2193-4a74-a333-aee8f723cc3e + + true + Fiscal Period Format + 1033 + + + c89a25d5-70ac-45dd-8722-2aa058fbfcc8 + + true + Format af regnskabsperiode + 1030 + + + + 05483850-2193-4a74-a333-aee8f723cc3e + + true + Fiscal Period Format + 1033 + false false iscustomizable - false + true - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + organization_fiscalperiodformat + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + 4e1542fc-bc4a-46cb-9412-39af782763b1 + + true + Quarter {0} + 1033 + + + 9dc34e99-991f-4df1-ba01-8874a3dc4a8d + + true + {0}. kvartal + 1030 + + + + 4e1542fc-bc4a-46cb-9412-39af782763b1 - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + Quarter {0} + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + 136ec24b-74ba-4206-a3d1-48b2939f192b + + true + Q{0} + 1033 + + + c41d9d4f-3003-4d53-81b8-20fc930d6ccb + + true + K{0} + 1030 + + + + 136ec24b-74ba-4206-a3d1-48b2939f192b - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + Q{0} + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 7cfa396c-173c-44f1-96ec-6f2379558244 + + true + P{0} + 1033 + + + d538c1f4-e95a-4bcd-89c9-aac47d16f116 + + true + P{0} + 1030 + + + + 7cfa396c-173c-44f1-96ec-6f2379558244 + + true + P{0} + 1033 + + + + 3 + + + + + + + + + + + + false + true + + + + c0a0c700-9b5f-4f24-afdc-618ccf7dfd5b + + true + Month {0} + 1033 + + + e43b7b8b-fee3-4e91-b971-c525b39fe210 + + true + {0}. måned + 1030 + + + + c0a0c700-9b5f-4f24-afdc-618ccf7dfd5b + + true + Month {0} + 1033 + + + + 4 + + + + + + + + + + + + false + true + + + + afbf5a06-c3a9-4e32-b0e4-315c985acffc + + true + M{0} + 1033 + + + b1f6b37f-3a0c-45df-b4c9-b0a8c991c68d + + true + M{0} + 1030 + + + + afbf5a06-c3a9-4e32-b0e4-315c985acffc + + true + M{0} + 1033 + + + + 5 + + + + + + + + + + + + false + true + + + + 1a4e1fa8-f828-4940-8352-c9a2984c805b + + true + Semester {0} + 1033 + + + b9ab0010-9c36-4cc2-b0b0-38ba1910ea27 + + true + {0}. semester + 1030 + + + + 1a4e1fa8-f828-4940-8352-c9a2984c805b + + true + Semester {0} + 1033 + + + + 6 + + + + + + + + + + + + false + true + + + + 42def82a-597b-4db2-9f06-0e3ef46be451 + + true + Month Name + 1033 + + + dfe80080-a33d-4cf0-9921-058019a8bf67 + + true + Månedsnavn + 1030 + + + + 42def82a-597b-4db2-9f06-0e3ef46be451 + + true + Month Name + 1033 + + + + 7 + + + + - + + 0 + + - 8faed07d-9b49-4346-9c3d-1140734db728 + 23fb8fa5-8b9f-435e-8594-7fa5613e1f4d - iscomputeruseinmcsenabled + fiscalperiodformatperiod Virtual false false false - true + false canmodifyadditionalsettings - true + false - 10087 - 2025-11-06T02:47:58.0870016 + 209 + 1900-01-01T00:00:00 @@ -148072,15 +156237,15 @@ - true + false canmodifyauditsettings false false - true + false iscustomizable - true + false false false @@ -148089,13 +156254,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -148107,7 +156272,7 @@ false - true + false canmodifysearchsettings false @@ -148118,28 +156283,28 @@ false false - iscomputeruseinmcsenabledname - 2025-11-06T02:47:58.0870016 + fiscalperiodformatperiodname + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - iscomputeruseinmcsenabledName + FiscalPeriodFormatPeriodName VirtualType - 1.9.6.0 + 5.0.0.0 true - + - - 5d41a849-3cfa-422c-b647-31b68c966210 + + c101c19d-e42e-4a6e-a289-371a08dcccf0 - Boolean + Integer false false false @@ -148148,42 +156313,56 @@ canmodifyadditionalsettings false - 377 + 7 1900-01-01T00:00:00 - d0bed6e0-e21e-495b-9d22-4241d6e3d2aa + 00d9dee2-2241-db11-898a-0007e9e17ebd true - Information that specifies whether conflict detection for mobile client is enabled. + Type of fiscal period used throughout Microsoft CRM. 1033 + + 0c4fcaf3-f4ad-4549-999f-7d88a46d9fa0 + + true + Den type regnskabsperiode, der bruges i Microsoft CRM. + 1030 + - d0bed6e0-e21e-495b-9d22-4241d6e3d2aa + 00d9dee2-2241-db11-898a-0007e9e17ebd true - Information that specifies whether conflict detection for mobile client is enabled. + Type of fiscal period used throughout Microsoft CRM. 1033 - 8ba96640-15b3-42a7-84c6-822746dd920d + 7b1a87d1-81ea-4381-b5db-3dcf8d4145da true - Is Conflict Detection for Mobile Client enabled + Fiscal Period Type 1033 + + ebd37008-0ca4-4577-83f1-24e868445500 + + true + Type af regnskabsperiode + 1030 + - 8ba96640-15b3-42a7-84c6-822746dd920d + 7b1a87d1-81ea-4381-b5db-3dcf8d4145da true - Is Conflict Detection for Mobile Client enabled + Fiscal Period Type 1033 @@ -148199,7 +156378,7 @@ false iscustomizable - false + true false false @@ -148237,132 +156416,30 @@ true true - isconflictdetectionenabledformobileclient + fiscalperiodtype 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsConflictDetectionEnabledForMobileClient + FiscalPeriodType - BooleanType + IntegerType - 8.1.0.0 + 5.0.0.0 false 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + -2147483648 0 - 93a72740-7eb5-42f5-a3ae-ee55a3de8db6 + 30b6ec2c-6753-4d8f-a637-aac0fb2b2fb0 Boolean @@ -148374,42 +156451,56 @@ canmodifyadditionalsettings false - 274 + 61 1900-01-01T00:00:00 - + 5.0.0.0 - bd55cbd5-ab11-4d77-8e97-12afe5d8a2c2 + 0191aa12-2341-db11-898a-0007e9e17ebd true - Enable or disable mailing address sync for outlook and exchange. + Information that specifies whether the fiscal settings have been updated. 1033 + + a87bf6b4-998b-412b-9ee5-bb9f68582b54 + + true + Angiver, om indstillingerne for regnskab er blevet opdateret. + 1030 + - bd55cbd5-ab11-4d77-8e97-12afe5d8a2c2 + 0191aa12-2341-db11-898a-0007e9e17ebd true - Enable or disable mailing address sync for outlook and exchange. + Information that specifies whether the fiscal settings have been updated. 1033 - 6a8ce427-708b-46e7-96b5-80397e1701e2 + b2c904da-cbd2-407a-a0d3-8ed712db3dd3 true - Is Mailing Address Sync Enabled + Is Fiscal Settings Updated 1033 + + 05fc588a-ea01-4196-a7c1-e66cefce3da9 + + true + Er regnskabsindstillingerne opdateret? + 1030 + - 6a8ce427-708b-46e7-96b5-80397e1701e2 + b2c904da-cbd2-407a-a0d3-8ed712db3dd3 true - Is Mailing Address Sync Enabled + Is Fiscal Settings Updated 1033 @@ -148456,48 +156547,55 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - iscontactmailingaddresssyncenabled + fiscalsettingsupdated 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsContactMailingAddressSyncEnabled + FiscalSettingsUpdated BooleanType - 7.0.0.0 + 5.0.0.0 false 0 - true + false - 21ec4819-436c-4456-909e-cf3331975477 + b4e34166-b92b-4428-a2dc-cc7b235c8305 - ceab1cfe-82d9-4e01-ba72-953f9518efe9 + c86def0c-517e-45c5-8e0d-2676e8e2d751 true - Is mailing address sync enabled + Information that specifies whether the fiscal settings have been updated. 1033 + + 34375ea6-3893-43d5-9d98-95925f5e9e9d + + true + Angiver, om indstillingerne for regnskab er blevet opdateret. + 1030 + - ceab1cfe-82d9-4e01-ba72-953f9518efe9 + c86def0c-517e-45c5-8e0d-2676e8e2d751 true - Is mailing address sync enabled + Information that specifies whether the fiscal settings have been updated. 1033 @@ -148510,13 +156608,13 @@ false iscustomizable - false + true false true - organization_iscontactmailingaddresssyncenabled + organization_fiscalsettingsupdated Boolean - 7.0.0.0 + 5.0.0.0 @@ -148531,15 +156629,22 @@ - ea887a57-9f6c-401c-9353-7f6c88405465 + 5dc888bf-e780-db11-9b85-00137299e160 true No 1033 + + 1bea26ec-7978-4993-999e-28ab5be5d9d7 + + true + Nej + 1030 + - ea887a57-9f6c-401c-9353-7f6c88405465 + 5dc888bf-e780-db11-9b85-00137299e160 true No @@ -148564,15 +156669,22 @@ - ddbb143f-5a7e-46b2-b8cf-329e3a8dc335 + 5fc888bf-e780-db11-9b85-00137299e160 true Yes 1033 + + 31cf22d7-c030-4ee7-89e8-ee396f761e91 + + true + Ja + 1030 + - ddbb143f-5a7e-46b2-b8cf-329e3a8dc335 + 5fc888bf-e780-db11-9b85-00137299e160 true Yes @@ -148587,55 +156699,160 @@ 0 - - 7f5b8cab-562f-42f2-937f-02270985e267 + + 5dc4ec4e-d448-4eeb-bb6e-1e4eba1238d6 + + fiscalsettingsupdated + Virtual + false + false + false + + false + canmodifyadditionalsettings + false + + 97 + 1900-01-01T00:00:00 + 5.0.0.0 + + + + + + + + + organization + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + fiscalsettingsupdatedname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + FiscalSettingsUpdatedName + + + VirtualType + + 5.0.0.0 + true + + + + + 6f3797e5-8750-48a4-85aa-9713d66507ad - Boolean + Integer false false false false canmodifyadditionalsettings - true + false - 444 - 2025-11-06T00:19:22.1830016 + 83 + 1900-01-01T00:00:00 - 0a92ba0e-8d38-4c6c-bacc-c6db527f391d + b440b506-2341-db11-898a-0007e9e17ebd true - Indicates whether Content Security Policy has been enabled for the organization. + Information that specifies whether the fiscal year should be displayed based on the start date or the end date of the fiscal year. 1033 + + c3c98193-a562-400a-96b6-f94d12860b6e + + true + Angiver, om regnskabsåret skal vises baseret på regnskabsårets start- eller slutdato. + 1030 + - 0a92ba0e-8d38-4c6c-bacc-c6db527f391d + b440b506-2341-db11-898a-0007e9e17ebd true - Indicates whether Content Security Policy has been enabled for the organization. + Information that specifies whether the fiscal year should be displayed based on the start date or the end date of the fiscal year. 1033 - e318d4c0-5272-4463-a4a9-ed46153bd43e + 9c683525-b0fe-4101-a1f9-01fafd716ce8 true - Enable Content Security Policy for this organization + Fiscal Year Display 1033 + + 2a08b31d-0a54-45e1-9641-1c93441b31d8 + + true + Visning af regnskabsår + 1030 + - e318d4c0-5272-4463-a4a9-ed46153bd43e + 9c683525-b0fe-4101-a1f9-01fafd716ce8 true - Enable Content Security Policy for this organization + Fiscal Year Display 1033 @@ -148651,7 +156868,7 @@ false iscustomizable - false + true false false @@ -148689,135 +156906,33 @@ true true - iscontentsecuritypolicyenabled - 2025-11-06T00:19:22.1830016 + fiscalyeardisplaycode + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsContentSecurityPolicyEnabled + FiscalYearDisplayCode - BooleanType + IntegerType - 9.1.0.0 + 5.0.0.0 false 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + None + + 0 - - c558ad07-f5c3-42b9-8931-a0370e371ab9 + + de3a69bf-d3f7-4749-a571-31f96147467f - Boolean + String false false false @@ -148826,42 +156941,56 @@ canmodifyadditionalsettings false - 10211 - 2025-11-06T06:14:32.8 + 34 + 1900-01-01T00:00:00 - a4adf522-7038-4e37-9b79-d58cb6b6c33a + 9226e7d6-2241-db11-898a-0007e9e17ebd true - Indicates whether Content Security Policy has been enabled for this organization's Canvas apps. + Information that specifies how the name of the fiscal year is displayed throughout Microsoft CRM. 1033 + + 556e0958-c5ad-4419-a432-be395d0d4ad6 + + true + Angiver, hvordan navnet på regnskabsåret vises i Microsoft CRM. + 1030 + - a4adf522-7038-4e37-9b79-d58cb6b6c33a + 9226e7d6-2241-db11-898a-0007e9e17ebd true - Indicates whether Content Security Policy has been enabled for this organization's Canvas apps. + Information that specifies how the name of the fiscal year is displayed throughout Microsoft CRM. 1033 - 575b8b2c-0ccf-4432-b75b-bd846a2a1253 + 2f721a61-1a60-4698-af17-95c1db83ff34 true - Enable Content Security Policy for this organization's Canvas apps + Fiscal Year Format 1033 + + a0ea8239-2308-48bd-b209-e4b70e6b214b + + true + Format af regnskabsår + 1030 + - 575b8b2c-0ccf-4432-b75b-bd846a2a1253 + 2f721a61-1a60-4698-af17-95c1db83ff34 true - Enable Content Security Policy for this organization's Canvas apps + Fiscal Year Format 1033 @@ -148871,13 +157000,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -148906,279 +157035,106 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - iscontentsecuritypolicyenabledforcanvas - 2025-11-06T06:14:32.8 + fiscalyearformat + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsContentSecurityPolicyEnabledForCanvas + FiscalYearFormat - BooleanType + StringType - 9.1.0.0 + 5.0.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + Text + Auto + 25 + + + Text + + + false 0 + 50 - - a20de303-5bf3-4686-afe3-87efad22bc8b - - iscontentsecuritypolicyenabledforcanvas - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10212 - 2025-11-06T06:14:32.8 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - iscontentsecuritypolicyenabledforcanvasname - 2025-11-06T06:14:32.8 - - true - canmodifyrequirementlevelsettings - None - - iscontentsecuritypolicyenabledforcanvasName - - - VirtualType - - 9.1.0.0 - true - - - - - 7b65af1e-33c5-48fa-bc53-3cb6a815d59b + + 72b39519-d790-4c0c-a156-f02d12318521 - Boolean + Picklist false false false false canmodifyadditionalsettings - true + false - 447 - 2025-11-06T00:19:22.12 + 194 + 1900-01-01T00:00:00 - 96d11f44-674e-4ac2-9e2d-f5fd7a0e440d + bc6c8f94-32d4-460c-bfea-4d34a1518f72 true - Indicates whether Contextual email experience is enabled on this organization + Prefix for the display of the fiscal year. 1033 + + e665dc4b-8361-4d59-a771-4d9422d1bbdf + + true + Præfiks for visning af regnskabsåret. + 1030 + - 96d11f44-674e-4ac2-9e2d-f5fd7a0e440d + bc6c8f94-32d4-460c-bfea-4d34a1518f72 true - Indicates whether Contextual email experience is enabled on this organization + Prefix for the display of the fiscal year. 1033 - 4c1b8259-b3cd-44c9-8149-43eb3a98581b + cb22090c-9906-4c8e-9fe1-995ebd176bae true - Indicates whether Contextual email experience is enabled on this organization + Prefix for Fiscal Year 1033 + + 9cb88578-978c-4d42-9889-392ce65fe3c6 + + true + Præfiks for regnskabsår + 1030 + - 4c1b8259-b3cd-44c9-8149-43eb3a98581b + cb22090c-9906-4c8e-9fe1-995ebd176bae true - Indicates whether Contextual email experience is enabled on this organization + Prefix for Fiscal Year 1033 @@ -149194,7 +157150,7 @@ false iscustomizable - false + true false false @@ -149232,135 +157188,183 @@ true true - iscontextualemailenabled - 2025-11-06T00:19:22.12 + fiscalyearformatprefix + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsContextualEmailEnabled + FiscalYearFormatPrefix - BooleanType + PicklistType - 9.1.0.0 + 5.0.0.0 false 0 - false + - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 480fcdcc-8ece-48b9-a3b8-7d98e9faf470 - 05aedb96-402f-4dff-86e7-54b577874b2f + 1dbad5f6-6171-4b3a-9e88-6a14fd799770 true - Information that specifies whether a feature is enabled for the organization. + Fiscal Year Format Prefix 1033 + + 6453bbb2-9b7e-4fbf-9ebc-f35c492bb3f5 + + true + Præfiks for format af regnskabsår + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 1dbad5f6-6171-4b3a-9e88-6a14fd799770 true - Information that specifies whether a feature is enabled for the organization. + Fiscal Year Format Prefix 1033 - - + + + f5cd10c3-0d06-4bf9-8e57-f9ecaae3b615 + + true + Fiscal Year Format Prefix + 1033 + + + 0072d0c3-ca6d-43e4-9a4f-c770f03e3a79 + + true + Præfiks for format af regnskabsår + 1030 + + + + f5cd10c3-0d06-4bf9-8e57-f9ecaae3b615 + + true + Fiscal Year Format Prefix + 1033 + false false iscustomizable - false + true - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + organization_fiscalyearformatprefix + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + 3f992a5b-3ca9-49ff-8c6e-f213ec4f6625 + + true + FY + 1033 + + + 14bd6472-825e-4e71-9416-5cde8cf24844 + + true + + 1030 + + + + 3f992a5b-3ca9-49ff-8c6e-f213ec4f6625 - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + FY + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + e5c3e7b6-bb07-471f-91db-a15ade930abf + + true + + 1033 + + + 70fb0594-0af3-4003-ba77-73d171fc3edc + + true + + 1030 + + + + e5c3e7b6-bb07-471f-91db-a15ade930abf - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + + 1033 + + + + 2 + + + + + 0 + + - - c80cdad0-5597-453f-adf7-e84e93fd7f64 + + 40150bf2-ba80-42d7-81c0-86728cbc7a59 - - Boolean + fiscalyearformatprefix + Virtual false false false @@ -149369,52 +157373,24 @@ canmodifyadditionalsettings false - 452 - 2025-11-06T00:19:22.2899968 + 195 + 1900-01-01T00:00:00 - - - d38d6aa2-33ce-45ca-9294-0e4eeaaedc2d - - true - Select to enable Contextual Help in UCI. - 1033 - - - - d38d6aa2-33ce-45ca-9294-0e4eeaaedc2d - - true - Select to enable Contextual Help in UCI. - 1033 - + + - - - 10f4378d-b978-487b-bad7-4dc9e4a4ddea - - true - Enables Contextual Help in UCI - 1033 - - - - 10f4378d-b978-487b-bad7-4dc9e4a4ddea - - true - Enables Contextual Help in UCI - 1033 - + + organization - true + false canmodifyauditsettings - true + false false @@ -149451,142 +157427,35 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - iscontextualhelpenabled - 2025-11-06T00:19:22.2899968 + fiscalyearformatprefixname + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsContextualHelpEnabled + FiscalYearFormatPrefixName - BooleanType + VirtualType - 9.1.0.0 - false - 0 + 5.0.0.0 + true + - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - - 0 - - 4fac360b-a4fa-4642-930d-28993399323c + + 4fd64fda-9c08-498c-a4e2-bbe4f3a81b42 - Boolean + Picklist false false false @@ -149595,42 +157464,56 @@ canmodifyadditionalsettings false - 10235 - 2025-11-06T07:32:05.5000064 + 196 + 1900-01-01T00:00:00 - 6e76d2df-7cda-47f4-bfb8-183be1ce2467 + 9f11ea0d-d92d-4d22-bbc1-2d25e8158a69 true - Determines whether users can provide feedback Copilot experiences. + Suffix for the display of the fiscal year. 1033 + + 94c9fa43-6578-4f52-9dc1-3198c001912d + + true + Suffiks for visning af regnskabsåret. + 1030 + - 6e76d2df-7cda-47f4-bfb8-183be1ce2467 + 9f11ea0d-d92d-4d22-bbc1-2d25e8158a69 true - Determines whether users can provide feedback Copilot experiences. + Suffix for the display of the fiscal year. 1033 - 1732284c-26ad-4aab-a433-cfc77e0181a4 + d427f8b6-df35-4b5d-9acd-c9ac6de7c7cc true - Allow users to provide feedback to improve Copilot experiences + Suffix for Fiscal Year 1033 + + 8c9e2226-9031-400f-95a9-5a9a2aada401 + + true + Suffiks for regnskabsår + 1030 + - 1732284c-26ad-4aab-a433-cfc77e0181a4 + d427f8b6-df35-4b5d-9acd-c9ac6de7c7cc true - Allow users to provide feedback to improve Copilot experiences + Suffix for Fiscal Year 1033 @@ -149640,13 +157523,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -149675,154 +157558,242 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - iscopilotfeedbackenabled - 2025-11-06T07:32:05.5000064 + fiscalyearformatsuffix + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsCopilotFeedbackEnabled + FiscalYearFormatSuffix - BooleanType + PicklistType - 9.2.0.0 + 5.0.0.0 false 0 - - false + + - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 354a0d56-47c8-4e41-9e4f-578111998723 - 05aedb96-402f-4dff-86e7-54b577874b2f + af7b29ef-db79-4b67-a6a8-9c7bd2e72011 true - Information that specifies whether a feature is enabled for the organization. + Fiscal Year Format Suffix 1033 + + cddb4f54-d925-4d9b-942c-fb129a60413e + + true + Suffiks for format af regnskabsår + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + af7b29ef-db79-4b67-a6a8-9c7bd2e72011 true - Information that specifies whether a feature is enabled for the organization. + Fiscal Year Format Suffix 1033 - - + + + 60c977ca-38a3-4452-ac0e-f7beac8ac5ca + + true + Fiscal Year Format Suffix + 1033 + + + 8957a1e9-e1cf-40a4-a404-d37b8c4ec582 + + true + Suffiks for format af regnskabsår + 1030 + + + + 60c977ca-38a3-4452-ac0e-f7beac8ac5ca + + true + Fiscal Year Format Suffix + 1033 + false false iscustomizable - false + true - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + organization_fiscalyearformatsuffix + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + e9ba91f8-3376-4a64-893d-2202a5a402a5 + + true + FY + 1033 + + + 2967228e-b30d-4c69-98d6-14df33ed1389 + + true + + 1030 + + + + e9ba91f8-3376-4a64-893d-2202a5a402a5 - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + FY + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + acde7b26-814b-4598-8f98-035d21cf0b92 + + true + Fiscal Year + 1033 + + + 60f56283-2f48-4389-a9ac-5d4346e09e91 + + true + Regnskabsår + 1030 + + + + acde7b26-814b-4598-8f98-035d21cf0b92 - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + Fiscal Year + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 4dbc7ffa-c521-4c8b-8e03-bb84f1c7746a + + true + + 1033 + + + 6ebd7526-59ea-48fe-9646-817e048fb16b + + true + + 1030 + + + + 4dbc7ffa-c521-4c8b-8e03-bb84f1c7746a + + true + + 1033 + + + + 3 + + + + - + + 0 + + - d6167555-ffc1-4ae3-b4a4-e126608f455b + bfc186da-a24e-4f59-b377-c3fc02656717 - iscopilotfeedbackenabled + fiscalyearformatsuffix Virtual false false false - true + false canmodifyadditionalsettings - true + false - 10236 - 2025-11-06T07:32:05.5129984 + 197 + 1900-01-01T00:00:00 @@ -149836,15 +157807,15 @@ - true + false canmodifyauditsettings false false - true + false iscustomizable - true + false false false @@ -149853,13 +157824,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -149871,7 +157842,7 @@ false - true + false canmodifysearchsettings false @@ -149882,72 +157853,86 @@ false false - iscopilotfeedbackenabledname - 2025-11-06T07:32:05.5129984 + fiscalyearformatsuffixname + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - iscopilotfeedbackenabledName + FiscalYearFormatSuffixName VirtualType - 9.2.0.0 + 5.0.0.0 true - + - - 07076b16-7f09-4cd4-a8c4-a2f00a54fc38 + + 22641237-54de-472b-9018-8308403e3fe9 - Boolean + Picklist false false false false canmodifyadditionalsettings - true + false - 10054 - 2025-11-06T02:47:57.5229952 + 198 + 1900-01-01T00:00:00 - 8e612f4e-5e35-4709-b424-1f7deff6ba0b + 6a939053-431f-400e-a83a-bf4b8c384fb9 true - Indicates whether CUA on Hosted Groups V2 feature is enabled in this organization. + Format for the year. 1033 + + defaa101-8861-4dbb-b690-cf9441a72a1e + + true + Årsformat. + 1030 + - 8e612f4e-5e35-4709-b424-1f7deff6ba0b + 6a939053-431f-400e-a83a-bf4b8c384fb9 true - Indicates whether CUA on Hosted Groups V2 feature is enabled in this organization. + Format for the year. 1033 - 5a0c271b-a4ab-4857-8d31-fdfe40d63f8a + 18519af5-b8c6-436f-b321-1b2937352c86 true - Enable CUA on Hosted Groups v2 feature for this organization + Fiscal Year Format Year 1033 + + ad627148-9951-452d-b137-4a0f67606199 + + true + Årsformat af regnskabsår + 1030 + - 5a0c271b-a4ab-4857-8d31-fdfe40d63f8a + 18519af5-b8c6-436f-b321-1b2937352c86 true - Enable CUA on Hosted Groups v2 feature for this organization + Fiscal Year Format Year 1033 @@ -149978,7 +157963,7 @@ false isrenameable - true + false false false @@ -149990,7 +157975,7 @@ false - true + false canmodifysearchsettings false @@ -150001,145 +157986,233 @@ true true - iscuaonhmgv2enabled - 2025-11-06T02:47:57.5229952 + fiscalyearformatyear + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - SystemRequired + None - IsCuaOnHmgV2Enabled + FiscalYearFormatYear - BooleanType + PicklistType - 1.9.26.0 + 5.0.0.0 false 0 - true + - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 51c34d01-9514-439c-b530-b3c2bfa04112 - 05aedb96-402f-4dff-86e7-54b577874b2f + 98b348d4-c23a-4ba0-9dbf-e7467eea64fe true - Information that specifies whether a feature is enabled for the organization. + Fiscal Year Format 1033 + + 664c14da-ecea-477f-b18b-1e3fac15456e + + true + Format af regnskabsår + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 98b348d4-c23a-4ba0-9dbf-e7467eea64fe true - Information that specifies whether a feature is enabled for the organization. + Fiscal Year Format 1033 - - + + + 9431f041-71a6-407e-9b45-de9819050127 + + true + Fiscal Year Format + 1033 + + + c4a06b95-f4e3-42ae-9045-7ee85f618d28 + + true + Format af regnskabsår + 1030 + + + + 9431f041-71a6-407e-9b45-de9819050127 + + true + Fiscal Year Format + 1033 + false false iscustomizable - false + true - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + organization_fiscalyearformatyear + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + 846048b9-6751-4c48-883c-112f5ece6880 + + true + YYYY + 1033 + + + 06aeba02-86b5-4434-8175-a1ff4ce70aa0 + + true + ÅÅÅÅ + 1030 + + + + 846048b9-6751-4c48-883c-112f5ece6880 - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + YYYY + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + b98320db-bb92-4ae0-9002-6590f0a33e5a + + true + YY + 1033 + + + 615a850e-ff8f-4c50-aa4a-d6b7fdac201b + + true + ÅÅ + 1030 + + + + b98320db-bb92-4ae0-9002-6590f0a33e5a - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + YY + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 7b6896ba-8acf-4929-978b-c021a2d7a357 + + true + GGYY + 1033 + + + 8f6444e8-1f55-4871-9804-9ef53de4fc9a + + true + MMÅÅ + 1030 + + + + 7b6896ba-8acf-4929-978b-c021a2d7a357 + + true + GGYY + 1033 + + + + 3 + + + + - + + 0 + + - 9bb789f2-3f2f-4578-9368-4b40304c6d98 + 41e13694-60b0-486f-8004-3364c00256df - iscuaonhmgv2enabled + fiscalyearformatyear Virtual false false false - true + false canmodifyadditionalsettings - true + false - 10055 - 2025-11-06T02:47:57.5399936 + 199 + 1900-01-01T00:00:00 @@ -150153,15 +158226,15 @@ - true + false canmodifyauditsettings false false - true + false iscustomizable - true + false false false @@ -150170,13 +158243,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -150188,7 +158261,7 @@ false - true + false canmodifysearchsettings false @@ -150199,72 +158272,86 @@ false false - iscuaonhmgv2enabledname - 2025-11-06T02:47:57.5399936 + fiscalyearformatyearname + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - iscuaonhmgv2enabledName + FiscalYearFormatYearName VirtualType - 1.9.26.0 + 5.0.0.0 true - + - - 50a75a67-2862-4fea-9a13-85ec709097f2 + + a54e8c12-3fcb-42fa-8b26-f875b1cafd3d - Boolean + String false false false false canmodifyadditionalsettings - true + false - 440 - 2025-11-06T00:19:21.4630016 + 36 + 1900-01-01T00:00:00 - 82911eec-2662-4f17-8173-2333911715f2 + 3498ba00-2341-db11-898a-0007e9e17ebd true - Indicates whether Custom Controls in canvas PowerApps feature has been enabled for the organization. + Information that specifies how the names of the fiscal year and the fiscal period should be connected when displayed together. 1033 + + f8d4fb83-22c1-4a9d-9c03-be5383201608 + + true + Angiver, hvordan navnene på regnskabsåret og regnskabsperioden sammensættes, når de vises sammen. + 1030 + - 82911eec-2662-4f17-8173-2333911715f2 + 3498ba00-2341-db11-898a-0007e9e17ebd true - Indicates whether Custom Controls in canvas PowerApps feature has been enabled for the organization. + Information that specifies how the names of the fiscal year and the fiscal period should be connected when displayed together. 1033 - 75945dad-6abc-4017-b96a-14875e9242e6 + 524e3603-2ecc-4f2a-8654-588ce84fb6d7 true - Enable Custom Controls in canvas PowerApps feature for this organization + Fiscal Year Period Connector 1033 + + 21d9c9d1-3232-47a0-b615-f1372a058945 + + true + Tilslutning af periode i regnskabsår + 1030 + - 75945dad-6abc-4017-b96a-14875e9242e6 + 524e3603-2ecc-4f2a-8654-588ce84fb6d7 true - Enable Custom Controls in canvas PowerApps feature for this organization + Fiscal Year Period Connector 1033 @@ -150280,7 +158367,7 @@ false iscustomizable - false + true false false @@ -150318,179 +158405,97 @@ true true - iscustomcontrolsincanvasappsenabled - 2025-11-06T00:19:21.4630016 + fiscalyearperiodconnect + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsCustomControlsInCanvasAppsEnabled + FiscalYearPeriodConnect - BooleanType + StringType - 9.1.0.0 + 5.0.0.0 false 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 5 + + + Text + + false 0 + 10 - - fbc07d84-6ed3-41e3-a72a-07c54dece212 + + 11bca369-8212-432c-a98a-2f291e140ef8 - Boolean + Integer false false false false canmodifyadditionalsettings - false + true - 223 - 1900-01-01T00:00:00 + 10073 + 2025-11-06T02:47:57.8200064 - 84a5dd06-2ef8-47fb-a123-62820d16599f + f8ae8a1c-3841-40a7-bc14-f75bae31f7d9 true - Enable or disable country code selection. + Defines how long desktop flow logs are retained in Dataverse (V2 only). The default is 40,320 minutes (28 days). Set to 0 to retain logs indefinitely. 1033 + + c90e2e43-3c5f-4c19-bd7a-f3455d81b005 + + true + Standardtid for tid til live i minutter for nye poster i objektet Flow-logfiler. + 1030 + - 84a5dd06-2ef8-47fb-a123-62820d16599f + f8ae8a1c-3841-40a7-bc14-f75bae31f7d9 true - Enable or disable country code selection. + Defines how long desktop flow logs are retained in Dataverse (V2 only). The default is 40,320 minutes (28 days). Set to 0 to retain logs indefinitely. 1033 - 00b3edda-c9d5-4a12-ae22-cc7bb62d1845 + bfd69ed8-f203-4dcd-86c9-d1324be853fb true - Enable or disable country code selection + Desktop flow log retention period in minutes (V2 only) 1033 + + a1c62bdb-4de6-4ec8-8369-e4b383d3c365 + + true + TTL for poster i flowlog-objektet. + 1030 + - 00b3edda-c9d5-4a12-ae22-cc7bb62d1845 + bfd69ed8-f203-4dcd-86c9-d1324be853fb true - Enable or disable country code selection + Desktop flow log retention period in minutes (V2 only) 1033 @@ -150506,7 +158511,7 @@ false iscustomizable - false + true false false @@ -150521,7 +158526,7 @@ false isrenameable - false + true false false @@ -150533,7 +158538,7 @@ false - false + true canmodifysearchsettings false @@ -150544,179 +158549,91 @@ true true - isdefaultcountrycodecheckenabled - 1900-01-01T00:00:00 + flowlogsttlinminutes + 2026-05-11T16:05:40.84 - false + true canmodifyrequirementlevelsettings SystemRequired - IsDefaultCountryCodeCheckEnabled + FlowLogsTtlInMinutes - BooleanType + IntegerType - 5.0.0.0 + 1.8.0.0 false 0 - true - - a74d007c-9c58-41af-92fb-b478e406168b - - - - - 4c3bd677-6bf0-4099-9c5d-8aa117e8fee4 - - true - Enable or disable country code selection - 1033 - - - - 4c3bd677-6bf0-4099-9c5d-8aa117e8fee4 - - true - Enable or disable country code selection - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_iscountrycodeselectionenabled - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 5ec6acb7-d53a-4df8-b92f-7fca463a8de9 - - true - No - 1033 - - - - 5ec6acb7-d53a-4df8-b92f-7fca463a8de9 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - cd57c959-a0eb-45cc-85c4-3f979105a9a3 - - true - Yes - 1033 - - - - cd57c959-a0eb-45cc-85c4-3f979105a9a3 - - true - Yes - 1033 - - - - 1 - - - - + None + 33554432 + -1 + 0 - - 4100a9d6-34db-4dbd-8de3-be35eb36a678 + + f2728539-ef6f-4b18-a82d-dc3c94c16cdb - Boolean + Integer false false false false canmodifyadditionalsettings - false + true - 357 - 1900-01-01T00:00:00 + 10066 + 2025-11-06T02:47:57.7129984 - 6d7f4dd3-c8be-43d6-895e-a8b7f36efd41 + 5805bdf9-7717-43b1-96f0-e42476aa0962 true - Enable Delegation Access content + Time to live (in seconds) for flow run 1033 + + 2174f2d6-7af2-40a6-8ac7-e7649b4ef9c6 + + true + Tid til live (i sekunder) for flowkørsel + 1030 + - 6d7f4dd3-c8be-43d6-895e-a8b7f36efd41 + 5805bdf9-7717-43b1-96f0-e42476aa0962 true - Enable Delegation Access content + Time to live (in seconds) for flow run 1033 - 98987edf-1b5e-4ca3-a7fb-40e0bbded1fd + e8cb668f-76f0-4655-b010-dbb46eebf29d true - Is Delegation Access Enabled + Time to live (in seconds) for flow run 1033 + + e4145119-06b2-4ee4-befb-2ba329b94ba7 + + true + Tid til live (i sekunder) for flowkørsel + 1030 + - 98987edf-1b5e-4ca3-a7fb-40e0bbded1fd + e8cb668f-76f0-4655-b010-dbb46eebf29d true - Is Delegation Access Enabled + Time to live (in seconds) for flow run 1033 @@ -150732,7 +158649,7 @@ false iscustomizable - false + true false false @@ -150747,7 +158664,7 @@ false isrenameable - false + true false false @@ -150759,7 +158676,7 @@ false - false + true canmodifysearchsettings false @@ -150770,135 +158687,33 @@ true true - isdelegateaccessenabled - 1900-01-01T00:00:00 + flowruntimetoliveinseconds + 2026-05-11T16:05:39.2130048 - false + true canmodifyrequirementlevelsettings SystemRequired - IsDelegateAccessEnabled + FlowRunTimeToLiveInSeconds - BooleanType + IntegerType - 7.0.1.0 + 1.6.2.0 false 0 - false - - bd691f89-f4cd-45aa-b2f9-99beb48ba4b7 - - - - - ed6b8c14-e102-4dfe-a05a-347064dc3014 - - true - Is Delegation Access Enabled - 1033 - - - - ed6b8c14-e102-4dfe-a05a-347064dc3014 - - true - Is Delegation Access Enabled - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_isdelegationaccessenabled - Boolean - 7.0.1.0 - - - - - - - - - - false - true - - - - 911311c6-2ab7-40e6-bed0-f9add72b37a7 - - true - No - 1033 - - - - 911311c6-2ab7-40e6-bed0-f9add72b37a7 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - c515e02a-0909-4443-8585-54b88857dc6b - - true - Yes - 1033 - - - - c515e02a-0909-4443-8585-54b88857dc6b - - true - Yes - 1033 - - - - 1 - - - - + None + 2147483647 + 0 + 0 - - be0ed1c5-030b-45aa-8f69-36d299baef28 + + 517c15e7-ac7f-4e18-990b-1c11b445b3e7 - Boolean + Picklist false false false @@ -150907,42 +158722,56 @@ canmodifyadditionalsettings false - 378 + 14 1900-01-01T00:00:00 - 2f19748d-f98f-44f0-b59e-1b4e608490ae + a8d8dee2-2241-db11-898a-0007e9e17ebd true - Indicates whether the feature Action Hub should be enabled for the organization. + Order in which names are to be displayed throughout Microsoft CRM. 1033 + + a32c223e-7445-4416-b7c5-490f568dc5a2 + + true + Den rækkefølge, som navne vises i i Microsoft CRM. + 1030 + - 2f19748d-f98f-44f0-b59e-1b4e608490ae + a8d8dee2-2241-db11-898a-0007e9e17ebd true - Indicates whether the feature Action Hub should be enabled for the organization. + Order in which names are to be displayed throughout Microsoft CRM. 1033 - f50c7146-49d2-45c4-bc9d-333cd02fb6cf + 98e21bf5-fe35-439f-94d3-7082efeee775 true - Enable Action Hub for this Organization + Full Name Display Order 1033 + + 39572471-e824-48bd-b73b-0b42a5aa88e7 + + true + Visningsrækkefølge af fuldt navn + 1030 + - f50c7146-49d2-45c4-bc9d-333cd02fb6cf + 98e21bf5-fe35-439f-94d3-7082efeee775 true - Enable Action Hub for this Organization + Full Name Display Order 1033 @@ -150996,41 +158825,48 @@ true true - isdelveactionhubintegrationenabled + fullnameconventioncode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsDelveActionHubIntegrationEnabled + FullNameConventionCode - BooleanType + PicklistType - 8.1.0.0 + 5.0.0.0 false 0 - false + 0 - 315e90f0-678b-4e4d-97f1-886050c3cb46 + b9b3805b-40ac-4cb4-be0a-bef57f59271c - 05aedb96-402f-4dff-86e7-54b577874b2f + e2cc5af3-c1fd-45ce-a2fe-edce8d4051ad true - Information that specifies whether a feature is enabled for the organization. + Order in which names are to be displayed throughout Microsoft CRM. 1033 + + 30b0a152-f02b-4437-910e-305d5b8ce910 + + true + Den rækkefølge, som navne vises i i Microsoft CRM. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + e2cc5af3-c1fd-45ce-a2fe-edce8d4051ad true - Information that specifies whether a feature is enabled for the organization. + Order in which names are to be displayed throughout Microsoft CRM. 1033 @@ -151043,148 +158879,380 @@ false iscustomizable - false + true - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + organization_fullnameconventioncode + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + 3dd6a8fd-da71-4c4b-b52e-0d4b01374ac6 + + true + Last Name, First Name + 1033 + + + 02eeb57f-4b5d-4f65-9cbe-ec412b13e270 + + true + Efternavn, fornavn + 1030 + + + + 3dd6a8fd-da71-4c4b-b52e-0d4b01374ac6 - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + Last Name, First Name + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 1f2fabf0-003a-49b3-b1c9-bbdef18eccba + + true + First Name + 1033 + + + 05140d55-d5d4-43ec-be4b-c4bb3fc1805c + + true + Fornavn + 1030 + + + + 1f2fabf0-003a-49b3-b1c9-bbdef18eccba + + true + First Name + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + d29e7455-7700-46ac-bba1-afcf2f9dc3e7 + + true + Last Name, First Name, Middle Initial + 1033 + + + 12fbbc6b-c74b-4654-abd8-5703a0e7937a + + true + Efternavn, fornavn, midterinitial + 1030 + + + + d29e7455-7700-46ac-bba1-afcf2f9dc3e7 + + true + Last Name, First Name, Middle Initial + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 9f1af66e-12dd-4b7c-91a4-3e1055f5c6db + + true + First Name, Middle Initial, Last Name + 1033 + + + d026ff8c-98db-4403-8da0-de1685873030 + + true + Fornavn, midterinitial, efternavn + 1030 + + + + 9f1af66e-12dd-4b7c-91a4-3e1055f5c6db + + true + First Name, Middle Initial, Last Name + 1033 + + + + 3 + + + + + + + + + + + + false + true + + + + 81c30799-7327-4f7e-8390-ff5a79183a17 + + true + Last Name, First Name, Middle Name + 1033 + + + 528783a2-f39b-496a-b3ea-fe11b52a22be + + true + Efternavn, fornavn, mellemnavn + 1030 + + + + 81c30799-7327-4f7e-8390-ff5a79183a17 + + true + Last Name, First Name, Middle Name + 1033 + + + + 4 + + + + + + + + + + + + false + true + + + + d34248d2-7ac2-4406-9ebb-e2a01be070b5 + + true + First Name, Middle Name, Last Name + 1033 + + + 16892308-cb97-4292-82d2-b607e90f5394 + + true + Fornavn, midterinitial, efternavn + 1030 + + + + d34248d2-7ac2-4406-9ebb-e2a01be070b5 + + true + First Name, Middle Name, Last Name + 1033 + + + + 5 + + + + + + + + + + + + false + true + + + + f4b3bfbb-fb33-455f-8c5b-80fdaa4215b9 + + true + Last Name, space, First Name + 1033 + + + a228e2f3-5054-4d70-9887-a8b00525d418 + + true + Efternavn, mellemrum, fornavn + 1030 + + + + f4b3bfbb-fb33-455f-8c5b-80fdaa4215b9 + + true + Last Name, space, First Name + 1033 + + + + 6 + + + + + + + + + + + + false + true + + + + a025e60a-a5b3-4486-9c95-4f85dbc66d1d + + true + Last Name, no space, First Name + 1033 + + + 6e964cd1-ff07-4f9d-8feb-4272406ea148 + + true + Efternavn, intet mellemrum, fornavn + 1030 + + + + a025e60a-a5b3-4486-9c95-4f85dbc66d1d + + true + Last Name, no space, First Name + 1033 + + + + 7 + + + + + 0 + + - - 6b369759-075c-4452-85d6-6fc56857bbfe + + 3da61f23-5dd2-4b61-8963-bfaa3e5d9e03 - - Boolean + fullnameconventioncode + Virtual false false false false canmodifyadditionalsettings - true + false - 10079 - 2025-11-06T02:47:57.9469952 + 46 + 1900-01-01T00:00:00 - - - 8d69a0e8-cc00-47ec-a163-53c9b46cb2da - - true - Indicates whether connection embedding in Desktop Flows is enabled in this organization. - 1033 - - - - 8d69a0e8-cc00-47ec-a163-53c9b46cb2da - - true - Indicates whether connection embedding in Desktop Flows is enabled in this organization. - 1033 - + + - - - 2043d7e7-195c-4d0d-92c1-7ae58e473a40 - - true - Enable connection embedding in Desktop Flows for this organization - 1033 - - - - 2043d7e7-195c-4d0d-92c1-7ae58e473a40 - - true - Enable connection embedding in Desktop Flows for this organization - 1033 - + + organization - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -151199,7 +159267,7 @@ false isrenameable - true + false false false @@ -151211,164 +159279,99 @@ false - true + false canmodifysearchsettings false - true + false false false true - true - true + false + false - isdesktopflowconnectionembeddingenabled - 2025-11-06T02:47:57.9469952 + fullnameconventioncodename + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - SystemRequired + None - IsDesktopFlowConnectionEmbeddingEnabled + FullNameConventionCodeName - BooleanType + VirtualType - 1.8.9.0 - false - 0 + 5.0.0.0 + true + - true - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - - 0 - - d2bb57c7-cefc-4b1b-a7d0-753cddb61ce5 + + 5554723e-c955-4e04-a915-b19ade256f00 - isdesktopflowconnectionembeddingenabled - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true + false - 10080 - 2025-11-06T02:47:57.9629952 + 168 + 1900-01-01T00:00:00 - - + + + 196d54cc-acee-4e57-bf51-24b2871bcd70 + + true + Specifies the maximum number of months in future for which the recurring activities can be created. + 1033 + + + 21b42844-61c5-4dfd-8fb1-95ca3f9de429 + + true + Angiver det maksimale antal måneder frem i tiden, som den gentagne aktivitet kan oprettes for. + 1030 + + + + 196d54cc-acee-4e57-bf51-24b2871bcd70 + + true + Specifies the maximum number of months in future for which the recurring activities can be created. + 1033 + - - + + + 6f5b3741-f69a-4b27-aabc-d77e4194fde0 + + true + Future Expansion Window + 1033 + + + 49378fb7-ee15-4683-9ca6-00812a7a062d + + true + Vindue til udvidelse af vist tidsperiode + 1030 + + + + 6f5b3741-f69a-4b27-aabc-d77e4194fde0 + + true + Future Expansion Window + 1033 + organization @@ -151376,11 +159379,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -151391,13 +159394,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -151409,36 +159412,41 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - isdesktopflowconnectionembeddingenabledname - 2025-11-06T02:47:57.9629952 + futureexpansionwindow + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - isdesktopflowconnectionembeddingenabledName + FutureExpansionWindow - VirtualType + IntegerType - 1.8.9.0 - true - - + 5.0.0.0 + false + 0 + + None + 140 + 1 + + 0 - cf0b4fff-73f9-4b4b-be98-4fa8441da943 + 8d9d43cc-b83b-48f7-b14c-b07c0735129b Boolean @@ -151448,44 +159456,58 @@ false canmodifyadditionalsettings - true + false - 10075 - 2025-11-06T02:47:57.8829952 + 240 + 1900-01-01T00:00:00 - 5f50e5dc-3fa1-4506-b8e5-6bde509cfbe8 + b1f3e8fd-3080-4744-967c-bcef4dbbe4e4 true - Indicates whether the Desktop Flows UI Automation Runtime Repair for Attended feature for this organization. + Indicates whether alerts will be generated for errors. 1033 + + efb239cb-59ca-432e-a6d8-ca8f577f080b + + true + Angiver, om der genereres vigtige beskeder om fejl. + 1030 + - 5f50e5dc-3fa1-4506-b8e5-6bde509cfbe8 + b1f3e8fd-3080-4744-967c-bcef4dbbe4e4 true - Indicates whether the Desktop Flows UI Automation Runtime Repair for Attended feature for this organization. + Indicates whether alerts will be generated for errors. 1033 - d827a963-9f38-4f06-858d-a1d8ab996af2 + 1a774304-e1b1-440b-b597-079892314845 true - Enable the Desktop Flows UI Automation Runtime Repair for Attended feature for this organization + Generate Alerts For Errors 1033 + + c6450e66-7c42-488b-88f2-d750e07b4632 + + true + Generér vigtige beskeder om fejl + 1030 + - d827a963-9f38-4f06-858d-a1d8ab996af2 + 1a774304-e1b1-440b-b597-079892314845 true - Enable the Desktop Flows UI Automation Runtime Repair for Attended feature for this organization + Generate Alerts For Errors 1033 @@ -151516,7 +159538,7 @@ false isrenameable - true + false false false @@ -151528,7 +159550,7 @@ false - true + false canmodifysearchsettings false @@ -151539,41 +159561,48 @@ true true - isdesktopflowruntimerepairattendedenabled - 2025-11-06T02:47:57.8829952 + generatealertsforerrors + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - IsDesktopFlowRuntimeRepairAttendedEnabled + GenerateAlertsForErrors BooleanType - 1.8.6.0 + 6.0.0.0 false 0 true - 315e90f0-678b-4e4d-97f1-886050c3cb46 + ad77d47d-144a-48bb-9bad-d1d676997b23 - 05aedb96-402f-4dff-86e7-54b577874b2f + 2faf3a8c-064d-41c4-90da-0ab0e5a48e0c true - Information that specifies whether a feature is enabled for the organization. + Whether or not to generate alerts for errors. 1033 + + a7d75bd2-f056-4a32-94ed-faaf1902bcea + + true + Angiver, om der skal genereres vigtige beskeder om fejl. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 2faf3a8c-064d-41c4-90da-0ab0e5a48e0c true - Information that specifies whether a feature is enabled for the organization. + Whether or not to generate alerts for errors. 1033 @@ -151588,11 +159617,11 @@ iscustomizable false - true + false true - organization_featureenabled + organization_generatealertsforerrors Boolean - 8.1.0.0 + 6.0.0.0 @@ -151607,15 +159636,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + ffa0d2e4-633b-4301-a510-205919cc96a8 true No 1033 + + 384f3163-e3b5-4c30-af75-9699d6de933a + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + ffa0d2e4-633b-4301-a510-205919cc96a8 true No @@ -151640,15 +159676,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 22309c17-290e-4ed1-92da-86d3f5b6a6eb true Yes 1033 + + a9c7e51a-7c50-4671-976f-bd551b12f66f + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 22309c17-290e-4ed1-92da-86d3f5b6a6eb true Yes @@ -151660,102 +159703,11 @@ - + 0 - - 1519c85b-ab0b-42f9-ba9b-7620b9bc643a - - isdesktopflowruntimerepairattendedenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10076 - 2025-11-06T02:47:57.9000064 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - isdesktopflowruntimerepairattendedenabledname - 2025-11-06T02:47:57.9000064 - - true - canmodifyrequirementlevelsettings - None - - isdesktopflowruntimerepairattendedenabledName - - - VirtualType - - 1.8.6.0 - true - - - - 3360bbd4-f0c5-4ddf-ab58-a24e89128bf1 + 0fab86a8-399b-4ff6-8a7b-4feef0251d78 Boolean @@ -151765,44 +159717,58 @@ false canmodifyadditionalsettings - true + false - 10077 - 2025-11-06T02:47:57.9170048 + 241 + 1900-01-01T00:00:00 - 7ae4be55-8d67-4e67-85b7-42fec874e02f + 649409ee-59b0-4155-a035-821f71d30dba true - Indicates whether the Desktop Flows UI Automation Runtime Repair for Unattended feature for this organization. + Indicates whether alerts will be generated for information. 1033 + + 91fea086-0f6f-44ae-83a0-16b9f899a37b + + true + Angiver, om der genereres vigtige beskeder om oplysninger. + 1030 + - 7ae4be55-8d67-4e67-85b7-42fec874e02f + 649409ee-59b0-4155-a035-821f71d30dba true - Indicates whether the Desktop Flows UI Automation Runtime Repair for Unattended feature for this organization. + Indicates whether alerts will be generated for information. 1033 - 1bc8cb66-aace-4a6b-abc2-b7c8d407cadf + 141f2a0d-d85d-47aa-9530-88a404f9f09e true - Enable the Desktop Flows UI Automation Runtime Repair for Unattended feature for this organization + Generate Alerts For Information 1033 + + 38c11fc5-503a-4be5-a791-d9d27f68a418 + + true + Generér vigtige beskeder om oplysninger + 1030 + - 1bc8cb66-aace-4a6b-abc2-b7c8d407cadf + 141f2a0d-d85d-47aa-9530-88a404f9f09e true - Enable the Desktop Flows UI Automation Runtime Repair for Unattended feature for this organization + Generate Alerts For Information 1033 @@ -151833,7 +159799,7 @@ false isrenameable - true + false false false @@ -151845,7 +159811,7 @@ false - true + false canmodifysearchsettings false @@ -151856,41 +159822,48 @@ true true - isdesktopflowruntimerepairunattendedenabled - 2025-11-06T02:47:57.9170048 + generatealertsforinformation + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - IsDesktopFlowRuntimeRepairUnattendedEnabled + GenerateAlertsForInformation BooleanType - 1.8.6.0 + 6.0.0.0 false 0 true - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 6b9dfeb8-c9bf-4286-b609-4d14dcf66763 - 05aedb96-402f-4dff-86e7-54b577874b2f + 37f4fb14-1a51-41b7-b457-60d5d9c69080 true - Information that specifies whether a feature is enabled for the organization. + Whether or not to generate alerts for information. 1033 + + 15d04487-566a-4c48-a9b8-35769cc579fb + + true + Angiver, om der skal genereres vigtige beskeder om oplysninger. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 37f4fb14-1a51-41b7-b457-60d5d9c69080 true - Information that specifies whether a feature is enabled for the organization. + Whether or not to generate alerts for information. 1033 @@ -151905,11 +159878,11 @@ iscustomizable false - true + false true - organization_featureenabled + organization_generatealertsforinformation Boolean - 8.1.0.0 + 6.0.0.0 @@ -151924,15 +159897,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 8c8a29b9-1138-442b-a17a-d9561dfecdcc true No 1033 + + f87bfeac-9acb-4071-9c65-7f73bfafecd0 + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 8c8a29b9-1138-442b-a17a-d9561dfecdcc true No @@ -151957,15 +159937,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 97a4d084-7b15-4280-b1b1-6fa9272e7644 true Yes 1033 + + 523bb165-f2f7-4a1f-9ae9-5b6e38e0f8f1 + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 97a4d084-7b15-4280-b1b1-6fa9272e7644 true Yes @@ -151977,102 +159964,11 @@ - + 0 - - dd8b4792-2af9-423b-ae45-3d04ba2f5c92 - - isdesktopflowruntimerepairunattendedenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10078 - 2025-11-06T02:47:57.9299968 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - isdesktopflowruntimerepairunattendedenabledname - 2025-11-06T02:47:57.9299968 - - true - canmodifyrequirementlevelsettings - None - - isdesktopflowruntimerepairunattendedenabledName - - - VirtualType - - 1.8.6.0 - true - - - - 2b0e587a-f9a4-4bd6-bfec-f8f09c00e259 + d35ef342-8c7a-4387-92b2-8400bf436aee Boolean @@ -152082,44 +159978,58 @@ false canmodifyadditionalsettings - true + false - 10090 - 2025-11-06T02:47:58.1170048 + 242 + 1900-01-01T00:00:00 - 7840137b-dd15-4aff-b054-b7500d41866c + e4c554fc-307e-42aa-a32a-92a8cbc9775b true - Indicates whether Power Automate savings feature is enabled for Desktopflow. + Indicates whether alerts will be generated for warnings. 1033 + + f88481de-e8bb-40ba-a40f-7623c007a68e + + true + Angiver, om der genereres vigtige beskeder om advarsler. + 1030 + - 7840137b-dd15-4aff-b054-b7500d41866c + e4c554fc-307e-42aa-a32a-92a8cbc9775b true - Indicates whether Power Automate savings feature is enabled for Desktopflow. + Indicates whether alerts will be generated for warnings. 1033 - a1351497-210f-4566-a370-fe4cb8b4949e + 0d989dd3-3e88-45c5-938e-91e708c44f05 true - Enable Power Automate savings feature for Desktopflow + Generate Alerts For Warnings 1033 + + e7103fae-3e43-426d-9588-9b3a191ba6b9 + + true + Generér vigtige beskeder om advarsler + 1030 + - a1351497-210f-4566-a370-fe4cb8b4949e + 0d989dd3-3e88-45c5-938e-91e708c44f05 true - Enable Power Automate savings feature for Desktopflow + Generate Alerts For Warnings 1033 @@ -152150,7 +160060,7 @@ false isrenameable - true + false false false @@ -152162,7 +160072,7 @@ false - true + false canmodifysearchsettings false @@ -152173,41 +160083,48 @@ true true - isdesktopflowsavingsenabled - 2025-11-06T02:47:58.1170048 + generatealertsforwarnings + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - IsDesktopFlowSavingsEnabled + GenerateAlertsForWarnings BooleanType - 1.9.17.0 + 6.0.0.0 false 0 true - 315e90f0-678b-4e4d-97f1-886050c3cb46 + cd83f5eb-c5ec-4936-9a85-a70e94cb4525 - 05aedb96-402f-4dff-86e7-54b577874b2f + 5e755569-4cf1-4b39-8eaa-bf9903b3ebb6 true - Information that specifies whether a feature is enabled for the organization. + Whether or not to generate alerts for warnings. 1033 + + dc168862-8629-43d0-be4d-940975475ffa + + true + Angiver, om der skal genereres vigtige beskeder om advarsler. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 5e755569-4cf1-4b39-8eaa-bf9903b3ebb6 true - Information that specifies whether a feature is enabled for the organization. + Whether or not to generate alerts for warnings. 1033 @@ -152222,11 +160139,11 @@ iscustomizable false - true + false true - organization_featureenabled + organization_generatealertsforwarnings Boolean - 8.1.0.0 + 6.0.0.0 @@ -152241,15 +160158,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + b27e5e1b-53a8-476b-b892-8495db19bf5c true No 1033 + + 638fe76f-105f-44cc-9ef5-18e54cf9f911 + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + b27e5e1b-53a8-476b-b892-8495db19bf5c true No @@ -152274,15 +160198,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 4e82db6a-9fe6-45f6-8dfc-8e1b9711cff6 true Yes 1033 + + f7ac7f21-dfc8-4ce7-bc69-98ba9d3ce010 + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 4e82db6a-9fe6-45f6-8dfc-8e1b9711cff6 true Yes @@ -152294,102 +160225,11 @@ - + 0 - - 9d9d066f-f897-4f01-9cb6-73cddffcafa4 - - isdesktopflowsavingsenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10091 - 2025-11-06T02:47:58.1330048 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - isdesktopflowsavingsenabledname - 2025-11-06T02:47:58.1330048 - - true - canmodifyrequirementlevelsettings - None - - isdesktopflowsavingsenabledName - - - VirtualType - - 1.9.17.0 - true - - - - 7b390c4f-2a49-4f89-8b6c-b348ae4e02bd + a9efb25f-81e5-467b-ae12-198c50ad9185 Boolean @@ -152399,44 +160239,58 @@ false canmodifyadditionalsettings - true + false - 10044 - 2025-11-06T02:47:57.3830016 + 180 + 1900-01-01T00:00:00 - c1c77f1e-f53f-4412-b05e-f20d8bed875f + a933b57e-fdd9-40fc-acd8-b8b160846ff6 true - Indicates whether v2 schema for Desktop Flows is enabled in this organization. + Indicates whether Get Started content is enabled for this organization. 1033 + + 5e91884d-c246-43c7-b853-81ad99bc0daa + + true + Angiver, om indholdet i Introduktion er aktiveret for organisationen. + 1030 + - c1c77f1e-f53f-4412-b05e-f20d8bed875f + a933b57e-fdd9-40fc-acd8-b8b160846ff6 true - Indicates whether v2 schema for Desktop Flows is enabled in this organization. + Indicates whether Get Started content is enabled for this organization. 1033 - 1427cfe6-bc63-4c67-b03c-a3a1137eeaaa + 31560c65-723f-420c-846f-f0c1ca6442f8 true - Enable v2 schema for Desktop Flows in this organization. + Is Get Started Pane Content Enabled 1033 + + 6fed6861-81c8-4fc3-9a69-a39b75549604 + + true + Er indholdet i ruden Introduktion aktiveret? + 1030 + - 1427cfe6-bc63-4c67-b03c-a3a1137eeaaa + 31560c65-723f-420c-846f-f0c1ca6442f8 true - Enable v2 schema for Desktop Flows in this organization. + Is Get Started Pane Content Enabled 1033 @@ -152467,7 +160321,7 @@ false isrenameable - true + false false false @@ -152479,7 +160333,7 @@ false - true + false canmodifysearchsettings false @@ -152490,41 +160344,48 @@ true true - isdesktopflowschemav2enabled - 2025-11-06T02:47:57.3830016 + getstartedpanecontentenabled + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - IsDesktopFlowSchemaV2Enabled + GetStartedPaneContentEnabled BooleanType - 1.3.1.0 + 5.0.0.0 false 0 - false + true - 315e90f0-678b-4e4d-97f1-886050c3cb46 + bb770c93-3910-4aa8-91c6-268ea77c1348 - 05aedb96-402f-4dff-86e7-54b577874b2f + b58e87df-175d-4244-983f-c77aaa7eec7b true - Information that specifies whether a feature is enabled for the organization. + Information that specifies whether the Get Started pane in lists is enabled. 1033 + + aad7a7d8-1209-4106-baff-b0d43e7d8d4d + + true + Oplysninger om, hvorvidt ruden Introduktion på lister er aktiveret. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + b58e87df-175d-4244-983f-c77aaa7eec7b true - Information that specifies whether a feature is enabled for the organization. + Information that specifies whether the Get Started pane in lists is enabled. 1033 @@ -152537,13 +160398,13 @@ false iscustomizable - false + true - true + false true - organization_featureenabled + organization_getstartedpanecontentenabled Boolean - 8.1.0.0 + 5.0.0.0 @@ -152558,15 +160419,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 70394354-f982-41f3-b234-6f2291b474a8 true No 1033 + + 48e40e6b-e892-43c5-9dc5-6bab2ee3f53e + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 70394354-f982-41f3-b234-6f2291b474a8 true No @@ -152591,15 +160459,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 4102aa16-b95f-4056-a0e4-0cd23cb8d139 true Yes 1033 + + 9263177d-b229-43cc-b346-f3c17e332f3d + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 4102aa16-b95f-4056-a0e4-0cd23cb8d139 true Yes @@ -152611,102 +160486,11 @@ - + 0 - - 27889f55-37d0-498b-9207-b23ec377a9ed - - isdesktopflowschemav2enabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10045 - 2025-11-06T02:47:57.3830016 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - isdesktopflowschemav2enabledname - 2025-11-06T02:47:57.3830016 - - true - canmodifyrequirementlevelsettings - None - - isdesktopflowschemav2enabledName - - - VirtualType - - 1.3.1.0 - true - - - - e1e61125-f815-4e26-99a0-d509adba915b + 649551c1-5e4e-48b4-a071-0a2a81edaa60 Boolean @@ -152716,44 +160500,58 @@ false canmodifyadditionalsettings - true + false - 10060 - 2025-11-06T02:47:57.6329984 + 278 + 1900-01-01T00:00:00 - adaaa49a-19f5-49f0-b31f-8a13adaa7f31 + d7e94902-1e8f-4fc1-bdc0-d813f22190df true - Indicates whether Windows Vanilla Image will be available for Desktop Flow users in this organization. + Indicates whether the append URL parameters is enabled. 1033 + + 9d829723-b569-4380-aa84-034ad0b36e7c + + true + Angiver, om tilføjelsesparametrene til URL-adresse er aktiveret. + 1030 + - adaaa49a-19f5-49f0-b31f-8a13adaa7f31 + d7e94902-1e8f-4fc1-bdc0-d813f22190df true - Indicates whether Windows Vanilla Image will be available for Desktop Flow users in this organization. + Indicates whether the append URL parameters is enabled. 1033 - 7516bdd1-a8d4-4eaf-ad89-941407505e0f + 28efb9b1-2d27-46cf-81d9-3e6df1102af7 true - Enable Sharing the Windows Vanilla Image with every Desktop Flow user in this organization. + Is AppendUrl Parameters enabled 1033 + + 07b1a9ad-8575-49e1-b276-1347c0c71f6d + + true + Er AppendUrl-parametre aktiveret + 1030 + - 7516bdd1-a8d4-4eaf-ad89-941407505e0f + 28efb9b1-2d27-46cf-81d9-3e6df1102af7 true - Enable Sharing the Windows Vanilla Image with every Desktop Flow user in this organization. + Is AppendUrl Parameters enabled 1033 @@ -152784,7 +160582,7 @@ false isrenameable - true + false false false @@ -152796,7 +160594,7 @@ false - true + false canmodifysearchsettings false @@ -152807,41 +160605,48 @@ true true - isdesktopflowvanillaimagesharingenabled - 2025-11-06T02:47:57.6329984 + globalappendurlparametersenabled + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - IsDesktopFlowVanillaImageSharingEnabled + GlobalAppendUrlParametersEnabled BooleanType - 1.8.15.0 + 7.0.0.0 false 0 true - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 6a40a20b-2a40-4238-b0d0-42d8bc6457d7 - 05aedb96-402f-4dff-86e7-54b577874b2f + 53e792f1-a821-4bf1-95fd-94a985f3ef06 true - Information that specifies whether a feature is enabled for the organization. + Information that specifies whether the AppendUrl parameters is enabled. 1033 + + 64014101-842b-4dd4-8cb4-dd09c9b1cd38 + + true + Oplysninger, der angiver, om AppendUrl-parametrene er aktiveret. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 53e792f1-a821-4bf1-95fd-94a985f3ef06 true - Information that specifies whether a feature is enabled for the organization. + Information that specifies whether the AppendUrl parameters is enabled. 1033 @@ -152854,13 +160659,13 @@ false iscustomizable - false + true - true + false true - organization_featureenabled + organization_globalappendurlparametersenabled Boolean - 8.1.0.0 + 7.0.0.0 @@ -152875,15 +160680,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 7d509f1c-b146-4312-840a-25330b2bd8d9 true No 1033 + + 489258bf-2ae5-4f98-be72-63ac9c08463e + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 7d509f1c-b146-4312-840a-25330b2bd8d9 true No @@ -152908,15 +160720,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 6336040f-5dda-474e-bfa3-e791584b0a41 true Yes 1033 + + d1c0af20-dab2-432b-9092-6cf9d1dd9d2b + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 6336040f-5dda-474e-bfa3-e791584b0a41 true Yes @@ -152928,32 +160747,74 @@ - + 0 - - 0fcf0547-0319-4090-9037-e04012a9b651 + + 2f13c89f-9225-49e5-bdce-3585cc2d6eb9 - isdesktopflowvanillaimagesharingenabled - Virtual + + String false false false - true + false canmodifyadditionalsettings - true + false - 10061 - 2025-11-06T02:47:57.6499968 + 276 + 1900-01-01T00:00:00 - - + + + 70128575-3685-47c4-9870-39d03973ab0d + + true + URL for the web page global help. + 1033 + + + ccd9c3fd-0bd0-43c9-b947-bd9739f30882 + + true + URL-adresse til webside med global hjælp. + 1030 + + + + 70128575-3685-47c4-9870-39d03973ab0d + + true + URL for the web page global help. + 1033 + - - + + + dc6d36f3-7536-46f8-b561-9db57ffa308d + + true + Global Help URL. + 1033 + + + d2029df6-b437-40f8-9855-367c5cb6e6b6 + + true + URL-adresse til global hjælp. + 1030 + + + + dc6d36f3-7536-46f8-b561-9db57ffa308d + + true + Global Help URL. + 1033 + organization @@ -152961,11 +160822,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -152976,13 +160837,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -152994,36 +160855,47 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - isdesktopflowvanillaimagesharingenabledname - 2025-11-06T02:47:57.6499968 + globalhelpurl + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - isdesktopflowvanillaimagesharingenabledName + GlobalHelpUrl - VirtualType + StringType - 1.8.15.0 - true - - + 7.0.0.0 + false + 0 + + Text + Auto + 500 + + + Text + + + false + 0 + 1000 - db5be655-6f4a-4fcb-9163-6b94aa77c314 + 52b84dc6-fee6-46d0-929a-3a2148319526 Boolean @@ -153033,44 +160905,58 @@ false canmodifyadditionalsettings - true + false - 10101 - 2025-11-06T02:47:58.2899968 + 277 + 1900-01-01T00:00:00 - 142c55b2-a9c0-4e0f-8f40-efed56120b09 + b4af328d-44da-41e2-8e1f-43d28db89bed true - Indicates whether version control for Desktop Flows is enabled in this organization. + Indicates whether the customizable global help is enabled. 1033 + + d012dfa1-bea4-4143-9871-4b07c3e2da29 + + true + Angiver, om global hjælp, der kan tilpasses, er aktiveret. + 1030 + - 142c55b2-a9c0-4e0f-8f40-efed56120b09 + b4af328d-44da-41e2-8e1f-43d28db89bed true - Indicates whether version control for Desktop Flows is enabled in this organization. + Indicates whether the customizable global help is enabled. 1033 - 7fc43664-e3ca-4623-bb7d-564a6d9392b7 + 3b916609-7e27-47cd-b1b9-4a79bc483d90 true - Enable version control for Desktop Flows in this organization. + Is Customizable Global Help enabled 1033 + + 29907812-a105-41ed-9398-afeac2ae477b + + true + Er global hjælp, der kan tilpasses, aktiveret + 1030 + - 7fc43664-e3ca-4623-bb7d-564a6d9392b7 + 3b916609-7e27-47cd-b1b9-4a79bc483d90 true - Enable version control for Desktop Flows in this organization. + Is Customizable Global Help enabled 1033 @@ -153101,7 +160987,7 @@ false isrenameable - true + false false false @@ -153113,7 +160999,7 @@ false - true + false canmodifysearchsettings false @@ -153124,41 +161010,48 @@ true true - isdesktopflowversioncontrolenabled - 2025-11-06T02:47:58.2899968 + globalhelpurlenabled + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - IsDesktopFlowVersionControlEnabled + GlobalHelpUrlEnabled BooleanType - 1.9.25.0 + 7.0.0.0 false 0 - false + true - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 4b367181-8d18-48e4-8935-c769c7302ae8 - 05aedb96-402f-4dff-86e7-54b577874b2f + fa6b17a0-c39e-481e-8c4c-2e6cf0e2cf84 true - Information that specifies whether a feature is enabled for the organization. + Information that specifies whether the Custom Help is enabled. 1033 + + 411dc390-28de-4986-840c-936edff4ce77 + + true + Angiver, om brugerdefineret hjælp er aktiveret. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + fa6b17a0-c39e-481e-8c4c-2e6cf0e2cf84 true - Information that specifies whether a feature is enabled for the organization. + Information that specifies whether the Custom Help is enabled. 1033 @@ -153171,13 +161064,13 @@ false iscustomizable - false + true - true + false true - organization_featureenabled + organization_globalhelpurlenabled Boolean - 8.1.0.0 + 7.0.0.0 @@ -153192,15 +161085,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + ec4e31f6-6259-4972-a1ea-97fe14e320eb true No 1033 + + 9741d066-a6ac-410e-9f21-719a8b4ca0bf + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + ec4e31f6-6259-4972-a1ea-97fe14e320eb true No @@ -153225,15 +161125,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 6fcf76cb-0c17-4060-ba07-45c2e6600c58 true Yes 1033 + + 1fc97199-02c4-4e55-8086-04ee7a8efda3 + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 6fcf76cb-0c17-4060-ba07-45c2e6600c58 true Yes @@ -153245,58 +161152,72 @@ - + 0 - - 82c1daba-1f22-4bb8-b00a-447c85e138f6 + + a849c432-21dc-492b-b28e-9d093222d0ad - Boolean + Integer false false false false canmodifyadditionalsettings - true + false - 10103 - 2025-11-06T02:47:58.3069952 + 188 + 1900-01-01T00:00:00 - 4f480530-9d12-4f5e-8d45-1d1c0e6c4b97 + 1f9588eb-9e60-462d-beaa-a890915a797d true - Indicates if this organization will opt-in to automatically to enable version control for Desktop Flows. + Number of days after the goal's end date after which the rollup of the goal stops automatically. 1033 + + 1c2a2005-d122-46ee-b2c7-8b7087809f77 + + true + Det antal dage efter målets slutdato, hvor akkumuleringen af målet standser automatisk. + 1030 + - 4f480530-9d12-4f5e-8d45-1d1c0e6c4b97 + 1f9588eb-9e60-462d-beaa-a890915a797d true - Indicates if this organization will opt-in to automatically to enable version control for Desktop Flows. + Number of days after the goal's end date after which the rollup of the goal stops automatically. 1033 - 4b7b7013-9c91-4172-af17-abe4e3496940 + fedc09d3-ae4c-4933-8dae-3447e89b42f4 true - Opt-in of version control for Desktop Flows being automatically enabled for this organization. + Rollup Expiration Time for Goal 1033 + + 3792fa1d-7809-4b4b-a807-ff754ae66704 + + true + Slutdato for akkumulering af mål + 1030 + - 4b7b7013-9c91-4172-af17-abe4e3496940 + fedc09d3-ae4c-4933-8dae-3447e89b42f4 true - Opt-in of version control for Desktop Flows being automatically enabled for this organization. + Rollup Expiration Time for Goal 1033 @@ -153327,7 +161248,7 @@ false isrenameable - true + false false false @@ -153339,7 +161260,7 @@ false - true + false canmodifysearchsettings false @@ -153350,244 +161271,93 @@ true true - isdesktopflowversioncontrolenabledbydefault - 2025-11-06T02:47:58.3069952 + goalrollupexpirytime + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - IsDesktopFlowVersionControlEnabledByDefault + GoalRollupExpiryTime - BooleanType + IntegerType - 1.9.25.0 + 5.0.0.0 false 0 - true - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + None + 400 + 0 + 0 - - 5e54a98c-ed76-45c3-9517-ddd3a633747f + + 4f615993-f541-4262-8620-d6e49a142d71 - isdesktopflowversioncontrolenabledbydefault - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true - - 10104 - 2025-11-06T02:47:58.3529984 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings false - - false - false - false - true - false - false - - isdesktopflowversioncontrolenabledbydefaultname - 2025-11-06T02:47:58.3529984 - - true - canmodifyrequirementlevelsettings - None - - isdesktopflowversioncontrolenabledbydefaultName - - - VirtualType - - 1.9.25.0 - true - - - - - bcc832c7-7445-4ead-8891-a696fca40f31 - - isdesktopflowversioncontrolenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - 10102 - 2025-11-06T02:47:58.3069952 + 189 + 1900-01-01T00:00:00 - - + + + 9c1e570a-a06b-4875-bef1-921586038b47 + + true + Number of hours between automatic rollup jobs . + 1033 + + + 70cb0826-befc-440c-a748-9cb73dfb8fea + + true + Antallet af timer mellem automatisk akkumulering af job. + 1030 + + + + 9c1e570a-a06b-4875-bef1-921586038b47 + + true + Number of hours between automatic rollup jobs . + 1033 + - - + + + 67213c43-451b-472b-9242-9984e2670702 + + true + Automatic Rollup Frequency for Goal + 1033 + + + aabeb5dc-d551-4601-ba9d-36037c65ad47 + + true + Hyppighed af automatisk akkumulering af mål + 1030 + + + + 67213c43-451b-472b-9242-9984e2670702 + + true + Automatic Rollup Frequency for Goal + 1033 + organization @@ -153595,11 +161365,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -153610,13 +161380,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -153628,36 +161398,41 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - isdesktopflowversioncontrolenabledname - 2025-11-06T02:47:58.3069952 + goalrollupfrequency + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - isdesktopflowversioncontrolenabledName + GoalRollupFrequency - VirtualType + IntegerType - 1.9.25.0 - true - - + 5.0.0.0 + false + 0 + + None + 2147483647 + 1 + + 0 - b75e5e02-1f52-42db-beea-5f0757704386 + a156ab38-fb32-4909-8e68-43dadae48d48 Boolean @@ -153669,42 +161444,56 @@ canmodifyadditionalsettings false - 17 + 56 1900-01-01T00:00:00 - 7d1ed7e8-2241-db11-898a-0007e9e17ebd + 8bf1fbc4-2241-db11-898a-0007e9e17ebd true - Information that specifies whether the organization is disabled. + For internal use only. 1033 + + ecf45415-df8a-4e43-85cb-dda421678a06 + + true + Kun til intern brug. + 1030 + - 7d1ed7e8-2241-db11-898a-0007e9e17ebd + 8bf1fbc4-2241-db11-898a-0007e9e17ebd true - Information that specifies whether the organization is disabled. + For internal use only. 1033 - 210c24f5-3e5d-4545-ab3c-febe061a1c3d + 4ef44bf6-70e1-4e6b-9c10-a6d40f1ae082 true - Is Organization Disabled + Grant Access To Network Service 1033 + + 43ed7b42-e7cd-4415-ae5e-ff4d7dab21a8 + + true + Tildel adgang til netværkstjeneste + 1030 + - 210c24f5-3e5d-4545-ab3c-febe061a1c3d + 4ef44bf6-70e1-4e6b-9c10-a6d40f1ae082 true - Is Organization Disabled + Grant Access To Network Service 1033 @@ -153712,9 +161501,9 @@ - true + false canmodifyauditsettings - true + false false @@ -153751,21 +161540,21 @@ canmodifysearchsettings false - false + true false false true false true - isdisabled + grantaccesstonetworkservice 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IsDisabled + GrantAccessToNetworkService BooleanType @@ -153776,23 +161565,30 @@ false - 262d8833-44d2-4638-b0bb-82d5b5475647 + 7de0f25e-796a-4cd9-ab6d-21373e0bd425 - 6deac4e1-e740-4744-a35e-469845f95c77 + 3b3dca0e-52d9-4517-8fd8-28f94ce3769c true - Information that specifies whether the organization is disabled. + For internal use only. 1033 + + 06b5b337-2992-44f9-ad05-95343eb86e14 + + true + Kun til intern brug. + 1030 + - 6deac4e1-e740-4744-a35e-469845f95c77 + 3b3dca0e-52d9-4517-8fd8-28f94ce3769c true - Information that specifies whether the organization is disabled. + For internal use only. 1033 @@ -153809,7 +161605,7 @@ false true - organization_isdisabled + organization_grantaccesstonetworkservice Boolean 5.0.0.0 @@ -153826,15 +161622,22 @@ - 4158aec5-e780-db11-9b85-00137299e160 + 61c888bf-e780-db11-9b85-00137299e160 true No 1033 + + dccdca6a-6e56-4b31-841b-7825dd08909d + + true + Nej + 1030 + - 4158aec5-e780-db11-9b85-00137299e160 + 61c888bf-e780-db11-9b85-00137299e160 true No @@ -153859,15 +161662,22 @@ - 4358aec5-e780-db11-9b85-00137299e160 + 63c888bf-e780-db11-9b85-00137299e160 true Yes 1033 + + b15e4b49-195f-4bb3-87a2-1eb526a0caf2 + + true + Ja + 1030 + - 4358aec5-e780-db11-9b85-00137299e160 + 63c888bf-e780-db11-9b85-00137299e160 true Yes @@ -153882,37 +161692,79 @@ 0 - - b1f8ac9b-ff48-4a64-9711-246b42dd1db5 + + 1f78b6c3-7fc3-4bb5-9717-528a768d2983 - isdisabled - Virtual + + Integer false false false false canmodifyadditionalsettings - false + true - 44 + 214 1900-01-01T00:00:00 - - + + + c24951fa-fc34-4e02-9d98-a8157857de53 + + true + Maximum difference allowed between subject keywords count of the email messaged to be correlated + 1033 + + + 6baed69e-ce04-4f3d-b265-e51710f8b880 + + true + Den højst tilladte difference mellem antallet af emnenøgleord for de e-mails, der skal samkøres + 1030 + + + + c24951fa-fc34-4e02-9d98-a8157857de53 + + true + Maximum difference allowed between subject keywords count of the email messaged to be correlated + 1033 + - - + + + 923dea7a-d604-469a-b4ef-2279d1c59bb0 + + true + Hash Delta Subject Count + 1033 + + + 8c8bdb01-a466-4dbe-9385-c2b068d57ea1 + + true + Antal emner for hashdelta + 1030 + + + + 923dea7a-d604-469a-b4ef-2279d1c59bb0 + + true + Hash Delta Subject Count + 1033 + organization - false + true canmodifyauditsettings - false + true false @@ -153949,79 +161801,98 @@ canmodifysearchsettings false - false + true false false true - false - false + true + true - isdisabledname + hashdeltasubjectcount 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IsDisabledName + HashDeltaSubjectCount - VirtualType + IntegerType 5.0.0.0 - true - + false + 0 + None + 2147483647 + 0 + + 0 - - ff4a84e5-8db5-4d79-aad4-aeb402c4d3cf + + 9ed4adaa-c227-49e6-9903-734832054786 - Boolean + String false false false false canmodifyadditionalsettings - false + true - 149 + 212 1900-01-01T00:00:00 - 881c9b1e-2341-db11-898a-0007e9e17ebd + da3d07ea-6864-4412-9c9f-97264ca106b5 true - Indicates whether duplicate detection of records is enabled. + Filter Subject Keywords 1033 + + c0611ad1-b480-4981-ba40-028f83b936b0 + + true + Filtrer emnenøgleord + 1030 + - 881c9b1e-2341-db11-898a-0007e9e17ebd + da3d07ea-6864-4412-9c9f-97264ca106b5 true - Indicates whether duplicate detection of records is enabled. + Filter Subject Keywords 1033 - abd09da9-30c0-4302-9d32-8596a2206be2 + 391d53ce-b563-4831-87ca-dad1312916c7 true - Is Duplicate Detection Enabled + Hash Filter Keywords 1033 + + 1285ca2e-4cfb-4ed7-a478-922df610ac14 + + true + Nøgleord for hashfilter + 1030 + - abd09da9-30c0-4302-9d32-8596a2206be2 + 391d53ce-b563-4831-87ca-dad1312916c7 true - Is Duplicate Detection Enabled + Hash Filter Keywords 1033 @@ -154037,7 +161908,7 @@ false iscustomizable - true + false false false @@ -154075,179 +161946,97 @@ true true - isduplicatedetectionenabled + hashfilterkeywords 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsDuplicateDetectionEnabled + HashFilterKeywords - BooleanType + StringType 5.0.0.0 false 0 - false - - 85e46646-00d6-420d-a548-83dd78275407 - - - - - 64c55e8a-a12d-404b-a9e0-6cacd0ef3350 - - true - Flag to enable or disable duplicate detection of records in the system. - 1033 - - - - 64c55e8a-a12d-404b-a9e0-6cacd0ef3350 - - true - Flag to enable or disable duplicate detection of records in the system. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_isduplicatedetectionenabled - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 4558aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 4558aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 4758aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 4758aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 1073741823 + + + Text + + false 0 + -1 - - a637c587-54ee-4081-b70d-18e571f71cf1 + + 8cfbb823-9e97-4f62-83d5-c6dd1373fa26 - Boolean + Integer false false false false canmodifyadditionalsettings - false + true - 126 + 213 1900-01-01T00:00:00 - cc53c2fa-2241-db11-898a-0007e9e17ebd + 38337f8e-8051-4cf2-a662-14b4ed6cac5a true - Indicates whether duplicate detection of records during import is enabled. + Maximum number of subject keywords or recipients used for correlation 1033 + + 5631cbb0-3f0a-421a-a179-ff70beb22092 + + true + Det højeste antal emnenøgleord eller modtagere, der bruges til samkøring + 1030 + - cc53c2fa-2241-db11-898a-0007e9e17ebd + 38337f8e-8051-4cf2-a662-14b4ed6cac5a true - Indicates whether duplicate detection of records during import is enabled. + Maximum number of subject keywords or recipients used for correlation 1033 - f5d0e6bf-0f68-4bde-94ce-717b3d6b3d9a + b9b243f7-dac9-4dc0-a9dc-1c86e1d0ab7e true - Is Duplicate Detection Enabled For Import + Hash Max Count 1033 + + 430f9c25-2d20-4b40-9900-3de76dfc8f02 + + true + Højeste antal hash + 1030 + - f5d0e6bf-0f68-4bde-94ce-717b3d6b3d9a + b9b243f7-dac9-4dc0-a9dc-1c86e1d0ab7e true - Is Duplicate Detection Enabled For Import + Hash Max Count 1033 @@ -154263,7 +162052,7 @@ false iscustomizable - true + false false false @@ -154301,179 +162090,91 @@ true true - isduplicatedetectionenabledforimport + hashmaxcount 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsDuplicateDetectionEnabledForImport + HashMaxCount - BooleanType + IntegerType 5.0.0.0 false 0 - false - - 3c3daeef-3b5a-4564-8d05-f708f1c68128 - - - - - 81d81544-d517-4de6-b6e6-c56c32e0bd75 - - true - Flag to enable or disable duplicate detection of records during import. - 1033 - - - - 81d81544-d517-4de6-b6e6-c56c32e0bd75 - - true - Flag to enable or disable duplicate detection of records during import. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_isduplicatedetectionenabledforimport - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 4958aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 4958aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 4b58aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 4b58aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + 0 0 - - 1aa53adc-af0e-40d2-bf51-9cc0671d4ec3 + + 38fd1c45-2961-455b-8109-fadc95df016f - Boolean + Integer false false false false canmodifyadditionalsettings - false + true - 118 + 215 1900-01-01T00:00:00 - b363cfee-2241-db11-898a-0007e9e17ebd + 83395ce7-5770-4b8a-8112-317da5b2ebf3 true - Indicates whether duplicate detection of records during offline synchronization is enabled. + Minimum number of recipients required to match for email messaged to be correlated 1033 + + 114832eb-37b5-47a9-b527-d296bec11057 + + true + Minimumantal modtagere, der kræves for at sammenholde e-mails, der skal samkøres + 1030 + - b363cfee-2241-db11-898a-0007e9e17ebd + 83395ce7-5770-4b8a-8112-317da5b2ebf3 true - Indicates whether duplicate detection of records during offline synchronization is enabled. + Minimum number of recipients required to match for email messaged to be correlated 1033 - e599f87b-2e48-4282-a28f-4e0dd21f246b + 0430e998-25f3-4ecb-a5e9-ab721f5939db true - Is Duplicate Detection Enabled For Offline Synchronization + Hash Min Address Count 1033 + + 08eacfe7-799c-446a-8eb3-4cb6e0aea5cd + + true + Minimumantal adresser for hash + 1030 + - e599f87b-2e48-4282-a28f-4e0dd21f246b + 0430e998-25f3-4ecb-a5e9-ab721f5939db true - Is Duplicate Detection Enabled For Offline Synchronization + Hash Min Address Count 1033 @@ -154489,7 +162190,7 @@ false iscustomizable - true + false false false @@ -154527,132 +162228,170 @@ true true - isduplicatedetectionenabledforofflinesync + hashminaddresscount 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsDuplicateDetectionEnabledForOfflineSync + HashMinAddressCount - BooleanType + IntegerType 5.0.0.0 false 0 - false - - c5c8a7fc-604c-40f3-8671-f45b06f5c893 - - - - - 5c20ebbb-4a40-4b36-bef8-99d83e19ee4e - - true - Flag to enable or disable duplicate detection of records during offline synchronization. - 1033 - - - - 5c20ebbb-4a40-4b36-bef8-99d83e19ee4e + None + 2147483647 + 0 + + 0 + + + 1122d949-021a-4be7-a8b4-27b25f1b67bc + + + Memo + false + false + false + + false + canmodifyadditionalsettings + false + + 308 + 1900-01-01T00:00:00 + + + + + 1122d949-d881-424e-8545-da9fd1f52a59 - true - Flag to enable or disable duplicate detection of records during offline synchronization. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_isduplicatedetectionenabledforofflinesync - Boolean - 5.0.0.0 - - + true + High contrast theme data for the organization. + 1033 + + + 3ce21b1b-91e5-4913-b68b-462b2942fb8f + + true + Temadata om stor kontrast for organisationen. + 1030 + + + + 1122d949-d881-424e-8545-da9fd1f52a59 - - - - - - - false - true - - - - 4d58aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 4d58aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - + true + High contrast theme data for the organization. + 1033 + + + + + + 1122d949-dd9b-4250-b398-83e0e52eab11 + + true + High contrast Theme Data + 1033 + + + 89571943-e516-4bd5-b924-b6641a646ee6 + + true + Temadata om stor kontrast + 1030 + + + + 1122d949-dd9b-4250-b398-83e0e52eab11 - - - - - - - false - true - - - - 4f58aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 4f58aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - - - 0 + true + High contrast Theme Data + 1033 + + + organization + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + highcontrastthemedata + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + HighContrastThemeData + + + MemoType + + 7.1.0.0 + false + + + TextArea + Auto + 1073741823 + + TextArea + + false - 575c20f9-85cb-4a3a-85af-79c08aaa23e0 + cc8e608f-89d5-4a6d-b3aa-0f22f81a55d7 Boolean @@ -154664,42 +162403,56 @@ canmodifyadditionalsettings false - 115 + 89 1900-01-01T00:00:00 - 90d8dee2-2241-db11-898a-0007e9e17ebd + 6841b506-2341-db11-898a-0007e9e17ebd true - Indicates whether duplicate detection during online create or update is enabled. + Indicates whether incoming email sent by internal Microsoft Dynamics 365 users or queues should be tracked. 1033 + + 671f8b2c-893f-4342-9c80-157eadefe1cf + + true + Angiver, om den indgående e-mail, der er blevet sendt af interne Microsoft Dynamics 365-brugere eller -køer, skal spores. + 1030 + - 90d8dee2-2241-db11-898a-0007e9e17ebd + 6841b506-2341-db11-898a-0007e9e17ebd true - Indicates whether duplicate detection during online create or update is enabled. + Indicates whether incoming email sent by internal Microsoft Dynamics 365 users or queues should be tracked. 1033 - 85c72958-7577-4ab8-a368-252ad57172bd + 3e76df11-708c-4a81-9f16-24f7b151cd34 true - Is Duplicate Detection Enabled for Online Create/Update + Ignore Internal Email 1033 + + 97dccbb7-cc1c-4cba-92fe-8a3025c43859 + + true + Ignorer intern e-mail + 1030 + - 85c72958-7577-4ab8-a368-252ad57172bd + 3e76df11-708c-4a81-9f16-24f7b151cd34 true - Is Duplicate Detection Enabled for Online Create/Update + Ignore Internal Email 1033 @@ -154753,14 +162506,14 @@ true true - isduplicatedetectionenabledforonlinecreateupdate + ignoreinternalemail 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsDuplicateDetectionEnabledForOnlineCreateUpdate + IgnoreInternalEmail BooleanType @@ -154771,23 +162524,30 @@ false - cb2f49e0-33f1-432c-925a-6a0c468ffc14 + 3bb11f9c-42a9-4592-acb7-c3625e826c8f - a4be8fcf-1b7d-4c8b-8a86-adb9019d22cd + 17cff284-b685-4e81-a2e2-8498b06d8f05 true - Flag to enable or disable duplicate detection during online create or update. + Indicates if incoming email sent by internal CRM users or queues should be tracked in CRM. 1033 + + d153d3fa-4626-45c7-af7d-a38b48225e85 + + true + Angiver, om den indgående e-mail, der er blevet sendt af interne CRM-brugere eller køer, skal spores i CRM. + 1030 + - a4be8fcf-1b7d-4c8b-8a86-adb9019d22cd + 17cff284-b685-4e81-a2e2-8498b06d8f05 true - Flag to enable or disable duplicate detection during online create or update. + Indicates if incoming email sent by internal CRM users or queues should be tracked in CRM. 1033 @@ -154804,7 +162564,7 @@ false true - organization_isduplicatedetectionenabledforonlinecreateupdate + organization_ignoreinternalemail Boolean 5.0.0.0 @@ -154821,15 +162581,22 @@ - 5158aec5-e780-db11-9b85-00137299e160 + 3958aec5-e780-db11-9b85-00137299e160 true No 1033 + + ddf73f3e-cd53-40c1-b8c5-c8d4d482f190 + + true + Nej + 1030 + - 5158aec5-e780-db11-9b85-00137299e160 + 3958aec5-e780-db11-9b85-00137299e160 true No @@ -154854,15 +162621,22 @@ - 5358aec5-e780-db11-9b85-00137299e160 + 3b58aec5-e780-db11-9b85-00137299e160 true Yes 1033 + + ea438f8c-a960-4b2a-a486-9f653dda881e + + true + Ja + 1030 + - 5358aec5-e780-db11-9b85-00137299e160 + 3b58aec5-e780-db11-9b85-00137299e160 true Yes @@ -154878,7 +162652,7 @@ 0 - 64748bc2-1ffc-485a-8fee-68ff7c5cef90 + 5edfa123-ce27-437e-9bbc-3f617f0f905e Boolean @@ -154890,42 +162664,56 @@ canmodifyadditionalsettings false - 10247 - 2025-11-06T09:12:35.8130048 + 10174 + 2025-11-06T06:14:32.2870016 - 1a96aa92-b450-4274-926c-6b6782b9f0cf + 6f2ea0c7-bba0-4eb7-85f9-c3bc50e3202d true - Information on whether Smart Email Address Validation is enabled. + Indicates whether an organization has consented to sharing search query data to help improve search results 1033 + + 90f5601a-d9db-48fa-94d8-c7d17790b060 + + true + Angiver, om en organisation har givet samtykke til at dele søgeforespørgselsdata for at forbedre søgeresultaterne + 1030 + - 1a96aa92-b450-4274-926c-6b6782b9f0cf + 6f2ea0c7-bba0-4eb7-85f9-c3bc50e3202d true - Information on whether Smart Email Address Validation is enabled. + Indicates whether an organization has consented to sharing search query data to help improve search results 1033 - ee49ec86-8e93-44d4-984b-0f8237b76f46 + 6bb6d7d6-8d01-4ead-ab8b-170b3758995a true - Enable Smart Email Address Validation. + Share search query data 1033 + + a9c2fb60-7d04-42b6-b4d5-af3378703b27 + + true + Del søgeforespørgselsdata + 1030 + - ee49ec86-8e93-44d4-984b-0f8237b76f46 + 6bb6d7d6-8d01-4ead-ab8b-170b3758995a true - Enable Smart Email Address Validation. + Share search query data 1033 @@ -154935,7 +162723,7 @@ true canmodifyauditsettings - true + false false @@ -154970,83 +162758,76 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - isemailaddressvalidationenabled - 2025-11-06T09:12:35.8130048 + improvesearchloggingenabled + 2025-11-06T06:14:32.2870016 false canmodifyrequirementlevelsettings SystemRequired - IsEmailAddressValidationEnabled + ImproveSearchLoggingEnabled BooleanType - 9.2.0.0 + 9.1.0.0 false 0 false - 750908bb-f0ba-f011-bbd3-7c1e52365f30 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 770908bb-f0ba-f011-bbd3-7c1e52365f30 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Enable or disable Smart Email Address Validation. + Information that specifies whether a feature is enabled for the organization. 1033 - - - 770908bb-f0ba-f011-bbd3-7c1e52365f30 - - true - Enable or disable Smart Email Address Validation. - 1033 - - - - - 760908bb-f0ba-f011-bbd3-7c1e52365f30 + 9aa58f12-110b-435b-9270-294a78494bba true - If Smart Email Address Validation is enabled. - 1033 + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 - 760908bb-f0ba-f011-bbd3-7c1e52365f30 + 05aedb96-402f-4dff-86e7-54b577874b2f true - If Smart Email Address Validation is enabled. + Information that specifies whether a feature is enabled for the organization. 1033 + + + + - true + false false iscustomizable false - false + true true - organization_isemailaddressvalidationenabled + organization_featureenabled Boolean - 9.2.0.0 + 8.1.0.0 @@ -155061,15 +162842,22 @@ - fcf51db4-300a-44e4-b6dc-ffe9f3e53d9c + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - fcf51db4-300a-44e4-b6dc-ffe9f3e53d9c + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -155094,15 +162882,22 @@ - 3781d390-1c2f-4867-b61d-6d99c823cf4b + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 3781d390-1c2f-4867-b61d-6d99c823cf4b + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -155118,9 +162913,9 @@ 0 - 4ecf6b99-6e45-4cd5-8553-4d4ecde3002c + 0c5caf5d-0bee-4539-b9f2-bca9de17bc4b - isemailaddressvalidationenabled + improvesearchloggingenabled Virtual false false @@ -155130,8 +162925,8 @@ canmodifyadditionalsettings true - 10248 - 2025-11-06T09:12:35.8300032 + 10175 + 2025-11-06T06:14:32.3000064 @@ -155191,25 +162986,25 @@ false false - isemailaddressvalidationenabledname - 2025-11-06T09:12:35.8300032 + improvesearchloggingenabledname + 2025-11-06T06:14:32.3000064 true canmodifyrequirementlevelsettings None - isemailaddressvalidationenabledName + improvesearchloggingenabledName VirtualType - 9.2.0.0 + 9.1.0.0 true - 3c163f3d-008b-4fb2-b72d-269078ca50a5 + 9b679700-c56a-4c07-b759-23d281477ae6 Boolean @@ -155219,44 +163014,58 @@ false canmodifyadditionalsettings - false + true - 388 + 413 1900-01-01T00:00:00 - 6dd5770b-e9f3-443e-94b9-2e5d240bee7d + a0f7e30a-97dc-49ae-bc7b-45789a3e575a true - Allow tracking recipient activity on sent emails. + Information that specifies whether Inactivity timeout is enabled 1033 + + faf5b6d7-f72e-4740-b3cf-8c5a2e8bf8a2 + + true + Oplysninger, der angiver, om inaktivitetstimeout er aktiveret + 1030 + - 6dd5770b-e9f3-443e-94b9-2e5d240bee7d + a0f7e30a-97dc-49ae-bc7b-45789a3e575a true - Allow tracking recipient activity on sent emails. + Information that specifies whether Inactivity timeout is enabled 1033 - 65fb9c2e-0fe3-4e27-b2ab-d99a4b698345 + 8cd8a8f6-5a33-4543-b489-77f21a36fda5 true - Allow tracking recipient activity on sent emails + Inactivity timeout enabled 1033 + + ecf0f67e-bf6e-46fc-9cb4-781a8082dd1a + + true + Inaktivitetstimeout aktiveret + 1030 + - 65fb9c2e-0fe3-4e27-b2ab-d99a4b698345 + 8cd8a8f6-5a33-4543-b489-77f21a36fda5 true - Allow tracking recipient activity on sent emails + Inactivity timeout enabled 1033 @@ -155272,7 +163081,7 @@ false iscustomizable - true + false false false @@ -155310,14 +163119,14 @@ true true - isemailmonitoringallowed + inactivitytimeoutenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsEmailMonitoringAllowed + InactivityTimeoutEnabled BooleanType @@ -155326,25 +163135,32 @@ false 0 - true + false - 154e14af-b746-4721-abb7-bcc45e7898b8 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 92fcfcb4-4b5b-4e08-b4b3-3cb157b6f357 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Allow monitoring recipient activity on sent emails. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 92fcfcb4-4b5b-4e08-b4b3-3cb157b6f357 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Allow monitoring recipient activity on sent emails. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -155357,13 +163173,13 @@ false iscustomizable - true + false - false + true true - organization_isemailmonitoringallowed + organization_featureenabled Boolean - 8.2.0.0 + 8.1.0.0 @@ -155378,15 +163194,22 @@ - 8b1233a3-6281-4b0b-a2f0-3310c7c1ff02 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 8b1233a3-6281-4b0b-a2f0-3310c7c1ff02 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -155411,15 +163234,22 @@ - 2de19c17-0413-40fe-a549-bea5709294e1 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 2de19c17-0413-40fe-a549-bea5709294e1 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -155434,11 +163264,11 @@ 0 - - 90350bb9-b458-4bfe-92a8-6b237efa374c + + 6a5d391f-b9b6-4813-9148-f46416a67be4 - Boolean + Integer false false false @@ -155447,42 +163277,56 @@ canmodifyadditionalsettings false - 356 + 414 1900-01-01T00:00:00 - 8e405a47-8063-49a3-9351-a204e89fbb35 + ecf10dc0-2d00-4f5b-a3a0-65ea3896f226 true - Enable Email Server Profile content filtering + Inactivity timeout in minutes 1033 + + 6d966732-cd35-4374-b833-80a6c6952089 + + true + Inaktivitetstimeout i minutter + 1030 + - 8e405a47-8063-49a3-9351-a204e89fbb35 + ecf10dc0-2d00-4f5b-a3a0-65ea3896f226 true - Enable Email Server Profile content filtering + Inactivity timeout in minutes 1033 - 13d262cb-1110-40d4-b41a-a973c2068d26 + 1835fd61-795e-4d66-aea2-217ab23a25d3 true - Is Email Server Profile Content Filtering Enabled + Inactivity timeout in minutes 1033 + + beffd9c7-e7ee-465b-a2b8-278eabff45dc + + true + Inaktivitetstimeout i minutter + 1030 + - 13d262cb-1110-40d4-b41a-a973c2068d26 + 1835fd61-795e-4d66-aea2-217ab23a25d3 true - Is Email Server Profile Content Filtering Enabled + Inactivity timeout in minutes 1033 @@ -155536,135 +163380,33 @@ true true - isemailserverprofilecontentfilteringenabled + inactivitytimeoutinmins 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsEmailServerProfileContentFilteringEnabled + InactivityTimeoutInMins - BooleanType + IntegerType - 6.1.0.0 + 8.2.0.0 false 0 - false - - 493917fd-e66c-4cb5-b7a4-5145aa3d6313 - - - - - b6aa630b-afa5-48f9-95f1-e1190020b6db - - true - Is EmailServerProfile Content Filtering Enabled - 1033 - - - - b6aa630b-afa5-48f9-95f1-e1190020b6db - - true - Is EmailServerProfile Content Filtering Enabled - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_isemailserverprofilecontentfilteringenabled - Boolean - 6.1.0.0 - - - - - - - - - - false - true - - - - 5cc99519-4a92-49d4-ad86-81112a142cfd - - true - No - 1033 - - - - 5cc99519-4a92-49d4-ad86-81112a142cfd - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 64befae9-10e7-4b50-a48b-f00e55dff2ca - - true - Yes - 1033 - - - - 64befae9-10e7-4b50-a48b-f00e55dff2ca - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + 0 0 - - 3320cb3c-ae1f-4fc0-b4b2-e87b1497049e + + 45282896-3e2a-40b5-96f5-19075b469a1a - Boolean + Integer false false false @@ -155673,42 +163415,56 @@ canmodifyadditionalsettings false - 398 + 415 1900-01-01T00:00:00 - d1758b3f-b948-4a76-8599-71daf8ee13de + 85d9b0a5-93fe-43b8-9ad1-bfaf90cd3b3b true - Indicates whether appmodule is enabled for all roles + Inactivity timeout reminder in minutes 1033 + + fac5b05b-d863-40cd-acc8-464c7f79d83c + + true + Inaktivitetstimeoutpåmindelse i minutter + 1030 + - d1758b3f-b948-4a76-8599-71daf8ee13de + 85d9b0a5-93fe-43b8-9ad1-bfaf90cd3b3b true - Indicates whether appmodule is enabled for all roles + Inactivity timeout reminder in minutes 1033 - af6befff-1440-45d3-a6d4-b906a73a275a + e7b6ac8d-01b9-4253-9f1e-b5f68091874e true - option set values for isenabledforallroles + Inactivity timeout reminder in minutes 1033 + + 660923d3-8830-46f2-8bd2-8425d4d79b02 + + true + Inaktivitetstimeoutpåmindelse i minutter + 1030 + - af6befff-1440-45d3-a6d4-b906a73a275a + e7b6ac8d-01b9-4253-9f1e-b5f68091874e true - option set values for isenabledforallroles + Inactivity timeout reminder in minutes 1033 @@ -155724,7 +163480,7 @@ false iscustomizable - true + false false false @@ -155762,135 +163518,33 @@ true true - isenabledforallroles + inactivitytimeoutreminderinmins 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsEnabledForAllRoles + InactivityTimeoutReminderInMins - BooleanType + IntegerType 8.2.0.0 false 0 - true - - cd7a5269-5b84-41ca-af39-ac0ef4e9f1d5 - - - - - a60120ec-a65f-4c0f-8050-2a27455f0454 - - true - Allows to enable default app. - 1033 - - - - a60120ec-a65f-4c0f-8050-2a27455f0454 - - true - Allows to enable default app. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_isenabledforallroles - Boolean - 8.2.0.0 - - - - - - - - - - false - true - - - - de4920ae-7948-457e-8253-3b72396e4975 - - true - No - 1033 - - - - de4920ae-7948-457e-8253-3b72396e4975 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 57f8e716-90b0-4e59-ae48-1cf89aa3c980 - - true - Yes - 1033 - - - - 57f8e716-90b0-4e59-ae48-1cf89aa3c980 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + 0 0 - - a7082fee-9976-4545-961d-d67cd6c2db7e + + 92419f4b-3649-4183-ab0f-9415f5fe5d57 - Boolean + Integer false false false @@ -155899,42 +163553,56 @@ canmodifyadditionalsettings false - 423 - 2025-11-06T00:19:21.9330048 + 226 + 1900-01-01T00:00:00 - bc7e4a15-ec64-40a6-a229-51a94884d2f4 + 8166ce85-583b-4076-83a7-4fb7e772fcff true - Indicates whether the organization's files are being stored in Azure. + Setting for the Async Service Mailbox Queue. Defines the retrieval batch size of exchange server. 1033 + + 84e5b3d9-b006-4e2d-9d1c-2fd10fd41540 + + true + Indstilling for postkassekøen for den asynkrone tjeneste. Definerer størrelsen af Exchange-serverens hentningsbatch. + 1030 + - bc7e4a15-ec64-40a6-a229-51a94884d2f4 + 8166ce85-583b-4076-83a7-4fb7e772fcff true - Indicates whether the organization's files are being stored in Azure. + Setting for the Async Service Mailbox Queue. Defines the retrieval batch size of exchange server. 1033 - e38bdbdd-c5d8-414b-ae5a-15ceb261ab03 + 551f024b-55c9-4581-8843-f7b4e8bc9c32 true - Enable external file storage + Exchange Email Retrieval Batch Size 1033 + + 7ab2749e-2077-4a23-9d12-3f15b637332a + + true + Størrelse af hentningsbatch for Exchange-mail + 1030 + - e38bdbdd-c5d8-414b-ae5a-15ceb261ab03 + 551f024b-55c9-4581-8843-f7b4e8bc9c32 true - Enable external file storage + Exchange Email Retrieval Batch Size 1033 @@ -155950,7 +163618,7 @@ false iscustomizable - false + true false false @@ -155988,135 +163656,33 @@ true true - isexternalfilestorageenabled - 2025-11-06T00:19:21.9330048 + incomingemailexchangeemailretrievalbatchsize + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsExternalFileStorageEnabled + IncomingEmailExchangeEmailRetrievalBatchSize - BooleanType + IntegerType - 9.0.0.0 + 6.0.0.0 false 0 - false - - 93daf809-c842-43b4-9581-9ade177647b0 - - - - - 0208f696-3fd5-409c-95f6-734247dd3ee4 - - true - Information that specifies whether organization's files are being stored in Azure. - 1033 - - - - 0208f696-3fd5-409c-95f6-734247dd3ee4 - - true - Information that specifies whether organization's files are being stored in Azure. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_isexternalfilestorageenabled - Boolean - 9.0.0.0 - - - - - - - - - - false - true - - - - 36d683c3-2ebe-4f3c-9ff1-58a7c63999e1 - - true - No - 1033 - - - - 36d683c3-2ebe-4f3c-9ff1-58a7c63999e1 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 7e51a8fc-17c2-474d-b31f-4fa1460c832a - - true - Yes - 1033 - - - - 7e51a8fc-17c2-474d-b31f-4fa1460c832a - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + 1 0 - - e055006c-91b0-4f74-b0ec-e5ef60b2a098 + + ad6ebcfc-693b-4c94-9f9c-410e382473ed - Boolean + String false false false @@ -156125,42 +163691,56 @@ canmodifyadditionalsettings false - 310 + 182 1900-01-01T00:00:00 - 76e2cc31-3c3a-4028-b9e1-5a44b4aa6796 + 75eac027-505b-43c7-8035-e98104315df8 true - Select whether data can be synchronized with an external search index. + Initial version of the organization. 1033 + + f700ce87-e69c-4843-8d8d-017cd713f877 + + true + Første version af organisationen. + 1030 + - 76e2cc31-3c3a-4028-b9e1-5a44b4aa6796 + 75eac027-505b-43c7-8035-e98104315df8 true - Select whether data can be synchronized with an external search index. + Initial version of the organization. 1033 - d2b225fb-ce5a-4f13-92be-800ae24a4bcf + 5db88fc7-f473-4163-a8d2-59b7dd55eb44 true - Enable external search data syncing + Initial Version 1033 + + 356fbb97-66ff-4af5-b26d-6b97c87efb95 + + true + Første version + 1030 + - d2b225fb-ce5a-4f13-92be-800ae24a4bcf + 5db88fc7-f473-4163-a8d2-59b7dd55eb44 true - Enable external search data syncing + Initial Version 1033 @@ -156211,138 +163791,42 @@ false false true - true + false true - isexternalsearchindexenabled + initialversion 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsExternalSearchIndexEnabled + InitialVersion - BooleanType + StringType - 8.0.0.0 + 5.0.0.0 false 0 - false - - a6540944-c0e4-4cf5-9e5d-b1d57450004f - - - - - b5de20b5-3b5f-483d-b118-e909059e7502 - - true - Information that specifies whether data are syncing to an external search index. - 1033 - - - - b5de20b5-3b5f-483d-b118-e909059e7502 - - true - Information that specifies whether data are syncing to an external search index. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_isexternalsearchindexenabled - Boolean - 8.0.0.0 - - - - - - - - - - false - true - - - - f4e30cef-b701-4cd3-91e0-7293c2a5eaba - - true - No - 1033 - - - - f4e30cef-b701-4cd3-91e0-7293c2a5eaba - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 0adbd534-eb37-4fe2-80d1-31eb90e7f9fc - - true - Yes - 1033 - - - - 0adbd534-eb37-4fe2-80d1-31eb90e7f9fc - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 20 + + + Text + + false 0 + 40 - - e6bc78a1-a108-4371-9958-671c510fb587 + + 2445173b-8c12-45ed-aa2e-a261c718b360 - Boolean + Uniqueidentifier false false false @@ -156351,42 +163835,56 @@ canmodifyadditionalsettings false - 108 + 67 1900-01-01T00:00:00 - cee0eed0-2241-db11-898a-0007e9e17ebd + 0b92aa12-2341-db11-898a-0007e9e17ebd true - Indicates whether the fiscal period is displayed as the month number. + Unique identifier of the integration user for the organization. 1033 + + df2654e9-dd01-44d5-9448-660f56b3569b + + true + Entydigt id for integrationsbrugeren for organisationen. + 1030 + - cee0eed0-2241-db11-898a-0007e9e17ebd + 0b92aa12-2341-db11-898a-0007e9e17ebd true - Indicates whether the fiscal period is displayed as the month number. + Unique identifier of the integration user for the organization. 1033 - 27c1ed6a-6e2b-4dde-b3e6-52a297a22d6f + 315fc8d7-3a8a-4d60-95ff-284afe0d2202 true - Is Fiscal Period Monthly + Integration User 1033 + + 78fc5b5e-465a-45f6-a7ff-b36a604fc589 + + true + Integrationsbruger + 1030 + - 27c1ed6a-6e2b-4dde-b3e6-52a297a22d6f + 315fc8d7-3a8a-4d60-95ff-284afe0d2202 true - Is Fiscal Period Monthly + Integration User 1033 @@ -156394,15 +163892,15 @@ - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -156440,135 +163938,28 @@ true true - isfiscalperiodmonthbased + integrationuserid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsFiscalPeriodMonthBased + IntegrationUserId - BooleanType + UniqueidentifierType 5.0.0.0 false - 0 + - false - - adc43b8a-3ab8-45bd-bea4-548646332bfc - - - - - 562b3dfe-f742-4483-87a8-f354c8ab84d2 - - true - Indicates whether the fiscal period is displayed as the month number. - 1033 - - - - 562b3dfe-f742-4483-87a8-f354c8ab84d2 - - true - Indicates whether the fiscal period is displayed as the month number. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_isfiscalperiodmonthbased - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 5958aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 5958aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 5b58aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 5b58aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - - - 0 - - 43fb4039-8a37-45d1-8d44-111458ca6f66 + + 0f974214-e71c-4891-aecc-793678957bf4 - Boolean + String false false false @@ -156577,42 +163968,56 @@ canmodifyadditionalsettings false - 383 + 29 1900-01-01T00:00:00 - 8150188d-3e0b-49eb-ba8a-a1ad878f877a + dd98ba00-2341-db11-898a-0007e9e17ebd true - Select whether folders should be automatically created on SharePoint. + Prefix to use for all invoice numbers throughout Microsoft Dynamics 365. 1033 + + e13eba70-0888-473f-9e28-c4e0a6019121 + + true + Præfiks til brug med alle fakturanumre i Microsoft Dynamics 365. + 1030 + - 8150188d-3e0b-49eb-ba8a-a1ad878f877a + dd98ba00-2341-db11-898a-0007e9e17ebd true - Select whether folders should be automatically created on SharePoint. + Prefix to use for all invoice numbers throughout Microsoft Dynamics 365. 1033 - 2d3eac21-e6ce-4f66-a52f-53d05763061d + b15c909b-55a4-4d38-b287-18080392c538 true - Automatically create folders + Invoice Prefix 1033 + + ddb20c15-009b-4015-bcbb-1631bcceaced + + true + Fakturapræfiks + 1030 + - 2d3eac21-e6ce-4f66-a52f-53d05763061d + b15c909b-55a4-4d38-b287-18080392c538 true - Automatically create folders + Invoice Prefix 1033 @@ -156628,7 +164033,7 @@ false iscustomizable - false + true false false @@ -156666,135 +164071,39 @@ true true - isfolderautocreatedonsp + invoiceprefix 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsFolderAutoCreatedonSP + InvoicePrefix - BooleanType + StringType - 8.1.0.0 + 5.0.0.0 false 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 20 + + + Text + + false 0 + 40 - - 22625c31-9100-4493-a3b8-73c8587f2ae8 + + 1c7d790d-a435-4182-9096-cfa2635ba5c1 - Boolean + Picklist false false false @@ -156803,42 +164112,42 @@ canmodifyadditionalsettings false - 298 - 1900-01-01T00:00:00 + 10010 + 2025-11-06T01:16:32.4 - 8a5e8aad-621f-4cbd-86b9-bfca1d612142 + c1d9ce98-b781-4b2c-a046-7e2904e7b427 true - Enable or disable folder based tracking for Server Side Sync. + IP Based SAS mode. 1033 - 8a5e8aad-621f-4cbd-86b9-bfca1d612142 + c1d9ce98-b781-4b2c-a046-7e2904e7b427 true - Enable or disable folder based tracking for Server Side Sync. + IP Based SAS mode. 1033 - 318dadcb-b99f-42eb-aefe-99e27922abab + 6c25b18b-c12c-4723-af29-114fee9c70f0 true - Is Folder Based Tracking Enabled + IP Based SAS mode 1033 - 318dadcb-b99f-42eb-aefe-99e27922abab + 6c25b18b-c12c-4723-af29-114fee9c70f0 true - Is Folder Based Tracking Enabled + IP Based SAS mode 1033 @@ -156854,12 +164163,12 @@ false iscustomizable - true + false false false - true + false canmodifyglobalfiltersettings false @@ -156876,7 +164185,7 @@ false false - true + false canmodifyissortablesettings false @@ -156886,364 +164195,315 @@ false true - false - false + true + true true true true - isfolderbasedtrackingenabled - 1900-01-01T00:00:00 + ipbasedstorageaccesssignaturemode + 2025-11-06T01:16:32.4 false canmodifyrequirementlevelsettings SystemRequired - IsFolderBasedTrackingEnabled + IpBasedStorageAccessSignatureMode - BooleanType + PicklistType - 7.1.0.0 + 1.0.0.5 false 0 - false + 0 - e1a8138e-b1a0-41e4-8418-4ecccbd1c5d3 + 94e7003a-aeba-f011-bbd3-7c1e52365f30 - 224ba85d-3fc9-4b94-8149-5bc71c6cf99e + 96e7003a-aeba-f011-bbd3-7c1e52365f30 true - Is folder based tracking enabled + Select which IP Based SAS URI restriction will be used. 1033 - 224ba85d-3fc9-4b94-8149-5bc71c6cf99e + 96e7003a-aeba-f011-bbd3-7c1e52365f30 true - Is folder based tracking enabled + Select which IP Based SAS URI restriction will be used. 1033 - - - - - false - - false - iscustomizable - false - - false - true - organization_isfolderbasedtrackingenabled - Boolean - 7.1.0.0 - - - - - - - - - - false - true - - - - d17150c2-ab37-40eb-8b04-6b03587b8b3b - - true - No - 1033 - - - - d17150c2-ab37-40eb-8b04-6b03587b8b3b - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - b71cb4b3-c60d-43c8-ba86-0373c63ae45d - - true - Yes - 1033 - - - - b71cb4b3-c60d-43c8-ba86-0373c63ae45d - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - 62b015d9-68c3-43d4-adaf-4483199e97c1 - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 283 - 1900-01-01T00:00:00 - - - - - 06b1239c-757e-428a-b35c-a689252acc06 - - true - Indicates whether full-text search for Quick Find entities should be enabled for the organization. - 1033 - - - - 06b1239c-757e-428a-b35c-a689252acc06 - - true - Indicates whether full-text search for Quick Find entities should be enabled for the organization. - 1033 - - - - - - 090ae247-371d-4e3c-b339-08792d5a158d - - true - Enable Full-text search for Quick Find - 1033 - - - - 090ae247-371d-4e3c-b339-08792d5a158d - - true - Enable Full-text search for Quick Find - 1033 - - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - isfulltextsearchenabled - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - IsFullTextSearchEnabled - - - BooleanType - - 7.1.0.0 - false - 0 - - true - - 1f1eba0b-e74c-4034-8cc1-55074466ab13 - - - 62d8149d-2bc2-4d64-bd11-a10f9b7fb808 + 95e7003a-aeba-f011-bbd3-7c1e52365f30 true - Information that specifies whether full-text search is enabled for the organization. + IP Based SAS mode 1033 - 62d8149d-2bc2-4d64-bd11-a10f9b7fb808 + 95e7003a-aeba-f011-bbd3-7c1e52365f30 true - Information that specifies whether full-text search is enabled for the organization. + IP Based SAS mode 1033 - - - - - + false false iscustomizable - true + false false true - organization_isfulltextsearchenabled - Boolean - 7.1.0.0 - - - - - - - - - - false - true - - - - d162f8f5-e746-4836-9e33-6ec838c3d3fb + ipbasedstorageaccesssignaturemode + Picklist + 1.0.0.5 + + + + + + + + + + + false + true + + + + 72eea778-5fdc-40c1-8a4b-5699563cb1c3 + + true + IP Binding only + 1033 + + + + 72eea778-5fdc-40c1-8a4b-5699563cb1c3 - true - No - 1033 - - - - d162f8f5-e746-4836-9e33-6ec838c3d3fb - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - c1a383f0-262f-41fd-994e-20bbe3663a6d + true + IP Binding only + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 4713b6b1-39bd-45c7-ba51-1ba000991ec3 + + true + IP Firewall only + 1033 + + + + 4713b6b1-39bd-45c7-ba51-1ba000991ec3 - true - Yes - 1033 - - - - c1a383f0-262f-41fd-994e-20bbe3663a6d - - true - Yes - 1033 - - - - 1 - - + true + IP Firewall only + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + a2b7e2f6-eccb-4c04-a5f9-0e7e05ed006b + + true + IP Binding and IP Firewall + 1033 + + + + a2b7e2f6-eccb-4c04-a5f9-0e7e05ed006b + + true + IP Binding and IP Firewall + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 2639a8d2-6a84-4a18-9001-1e572d2e2900 + + true + IP Binding or IP Firewall + 1033 + + + + 2639a8d2-6a84-4a18-9001-1e572d2e2900 + + true + IP Binding or IP Firewall + 1033 + + + + 3 + + + + - + + 0 + + + + + 8fcf0483-5487-4696-a9af-144029ac3b32 + + ipbasedstorageaccesssignaturemode + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10011 + 2025-11-06T01:16:32.4169984 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + ipbasedstorageaccesssignaturemodename + 2025-11-06T01:16:32.4169984 + + true + canmodifyrequirementlevelsettings + None + + ipbasedstorageaccesssignaturemodeName + + + VirtualType + + 1.0.0.5 + true + + - 8284885b-5cfb-4677-b5c4-dee59a98533f + eada3e5c-98ed-44e0-837e-750b756057f1 Boolean @@ -157253,44 +164513,58 @@ false canmodifyadditionalsettings - true + false - 462 - 2025-11-06T00:19:22.6829952 + 386 + 1900-01-01T00:00:00 - 6ee17d0c-14c6-49a2-8da9-1ae8d06aa423 + 40563c35-dd91-4ce1-976b-b382fcc0ccd1 true - Indicates whether geospatial capabilities leveraging Azure Maps are enabled. + Indicates whether the feature Action Card should be enabled for the organization. 1033 + + d7d75ee4-4824-424b-b8e3-bff26088068a + + true + Angiver, om funktionen Handlingskort skal aktiveres for organisationen. + 1030 + - 6ee17d0c-14c6-49a2-8da9-1ae8d06aa423 + 40563c35-dd91-4ce1-976b-b382fcc0ccd1 true - Indicates whether geospatial capabilities leveraging Azure Maps are enabled. + Indicates whether the feature Action Card should be enabled for the organization. 1033 - 0b342654-dbdd-4d03-8835-6856bfa7f868 + 7827028b-1263-497d-9b32-a6e4004cf5d5 true - Enable geospatial Azure Maps integration. + Enable Action Card for this Organization 1033 + + 1d5fde40-76a1-47a5-8bd7-a2793a22aba0 + + true + Aktivér handlingskort for denne organisation + 1030 + - 0b342654-dbdd-4d03-8835-6856bfa7f868 + 7827028b-1263-497d-9b32-a6e4004cf5d5 true - Enable geospatial Azure Maps integration. + Enable Action Card for this Organization 1033 @@ -157306,7 +164580,7 @@ false iscustomizable - false + true false false @@ -157344,19 +164618,19 @@ true true - isgeospatialazuremapsintegrationenabled - 2025-11-06T00:19:22.6829952 + isactioncardenabled + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - IsGeospatialAzureMapsIntegrationEnabled + IsActionCardEnabled BooleanType - 9.1.0.0 + 8.2.0.0 false 0 @@ -157373,6 +164647,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -157418,6 +164699,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -157451,6 +164739,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -157469,7 +164764,7 @@ 0 - 48af566e-62f7-4355-82c8-c85f24508d69 + a37250a9-be81-41fe-ae03-676654d03719 Boolean @@ -157479,44 +164774,58 @@ false canmodifyadditionalsettings - false + true - 261 + 418 1900-01-01T00:00:00 - 46338f53-fbaa-42e5-8f07-53f741fb7251 + fa31acd5-8c54-4f34-9459-3a46e050a25c true - Enable Hierarchical Security Model + Information that specifies whether Action Support Feature is enabled 1033 + + 5fa665db-ad3f-47a1-81a2-552e4e2ab248 + + true + Oplysninger, der angiver, om supportfunktionen for handlingen er aktiveret + 1030 + - 46338f53-fbaa-42e5-8f07-53f741fb7251 + fa31acd5-8c54-4f34-9459-3a46e050a25c true - Enable Hierarchical Security Model + Information that specifies whether Action Support Feature is enabled 1033 - 4aecf7ee-24de-4d36-9842-7782f541f1ca + c91bbddd-3e62-4cd5-9981-83a738c8ad1e true - Enable Hierarchical Security Model + Action Support Feature enabled 1033 + + 998a4b90-cb5e-4294-b73d-9caf34546b97 + + true + Supportfunktionen for handlingen er ikke aktiveret. + 1030 + - 4aecf7ee-24de-4d36-9842-7782f541f1ca + c91bbddd-3e62-4cd5-9981-83a738c8ad1e true - Enable Hierarchical Security Model + Action Support Feature enabled 1033 @@ -157532,7 +164841,7 @@ false iscustomizable - true + false false false @@ -157570,41 +164879,48 @@ true true - ishierarchicalsecuritymodelenabled + isactionsupportfeatureenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsHierarchicalSecurityModelEnabled + IsActionSupportFeatureEnabled BooleanType - 7.0.0.0 + 9.0.0.0 false 0 - true + false - 29cac084-395c-431c-b054-372173173e4b + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 01019452-b08b-4d58-b86c-a88d03d3cec6 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Is hierarchical security model enabled + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 01019452-b08b-4d58-b86c-a88d03d3cec6 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Is hierarchical security model enabled + Information that specifies whether a feature is enabled for the organization. 1033 @@ -157619,11 +164935,11 @@ iscustomizable false - false + true true - organization_hierarchicalsecuritymodelenabled + organization_featureenabled Boolean - 7.0.0.0 + 8.1.0.0 @@ -157638,15 +164954,22 @@ - 9d38a607-8e0d-42eb-87ff-ee16aba6f778 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 9d38a607-8e0d-42eb-87ff-ee16aba6f778 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -157671,15 +164994,22 @@ - 4d417a54-29ee-4d6e-bedf-2fefd43941f6 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 4d417a54-29ee-4d6e-bedf-2fefd43941f6 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -157695,7 +165025,7 @@ 0 - a697a485-eb5d-4636-9a46-28a3b4923d13 + 6d045ae1-4588-43a3-963e-13a186982b0b Boolean @@ -157705,44 +165035,58 @@ false canmodifyadditionalsettings - true + false - 10107 - 2025-11-06T03:13:53.5030016 + 389 + 1900-01-01T00:00:00 - 955e19ab-ab04-4e39-9408-aa9f01bde8aa + 8ec5fbf1-9d3b-4391-8801-3f7a7716c434 true - Indicates whether data collection for ideas in canvas PowerApps has been enabled. + Indicates whether the feature Relationship Analytics should be enabled for the organization. 1033 + + bf4f5e65-f74a-43bf-8108-a81e0a7acd58 + + true + Angiver, om funktionen Relationsanalyse skal aktiveres for organisationen. + 1030 + - 955e19ab-ab04-4e39-9408-aa9f01bde8aa + 8ec5fbf1-9d3b-4391-8801-3f7a7716c434 true - Indicates whether data collection for ideas in canvas PowerApps has been enabled. + Indicates whether the feature Relationship Analytics should be enabled for the organization. 1033 - 1e9358d0-adf1-45e7-b3dd-fe9693361268 + e093ca34-f1f4-4af2-96a6-3971de7c9260 true - Enable Ideas data collection. + Enable Relationship Analytics for this Organization 1033 + + f2c3b89b-a627-4f77-8b4e-ec14f3908d22 + + true + Aktivér relationsanalyse for denne organisation + 1030 + - 1e9358d0-adf1-45e7-b3dd-fe9693361268 + e093ca34-f1f4-4af2-96a6-3971de7c9260 true - Enable Ideas data collection. + Enable Relationship Analytics for this Organization 1033 @@ -157758,7 +165102,7 @@ false iscustomizable - false + true false false @@ -157796,22 +165140,22 @@ true true - isideasdatacollectionenabled - 2025-11-06T03:13:53.5030016 + isactivityanalysisenabled + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsIdeasDataCollectionEnabled + IsActivityAnalysisEnabled BooleanType - 9.1.0.0 + 8.2.0.0 false 0 - + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -157825,6 +165169,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -157870,6 +165221,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -157903,6 +165261,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -157917,102 +165282,11 @@ - + 0 - - 9d455c24-5992-431e-97af-90999cc40250 - - isideasdatacollectionenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10108 - 2025-11-06T03:13:53.5330048 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - isideasdatacollectionenabledname - 2025-11-06T03:13:53.5330048 - - true - canmodifyrequirementlevelsettings - None - - isideasdatacollectionenabledName - - - VirtualType - - 9.1.0.0 - true - - - - 20283753-e96c-4033-8a17-28d3c5493917 + 24152489-b0a4-4165-8bc3-6b4d47928ee1 Boolean @@ -158022,44 +165296,58 @@ false canmodifyadditionalsettings - true + false - 430 - 2025-11-06T00:19:19.9000064 + 460 + 2025-11-06T00:19:22.2429952 - 4a51bfd1-6604-4ad2-b2de-b105d1764611 + e2967993-75bb-4a18-abb2-5260df6a120b true - Give Consent to use LUIS in Dynamics 365 Bot + Indicates whether all money attributes are converted to decimal. 1033 + + d708d778-338c-4ff3-8beb-63952606498c + + true + Angiver, om alle pengeattributter konverteres til decimaler. + 1030 + - 4a51bfd1-6604-4ad2-b2de-b105d1764611 + e2967993-75bb-4a18-abb2-5260df6a120b true - Give Consent to use LUIS in Dynamics 365 Bot + Indicates whether all money attributes are converted to decimal. 1033 - 35934aa3-ff9d-440f-bb04-2e326d1fceb9 + 042f859e-76d0-4d30-a210-6aac66b0b250 true - LUIS Consent for Dynamics 365 Bot + Set if all money attributes are converted to decimal 1033 + + 8a033039-8236-4cab-97fe-91ff4916be92 + + true + Angiv, om alle pengeattributter konverteres til decimaler + 1030 + - 35934aa3-ff9d-440f-bb04-2e326d1fceb9 + 042f859e-76d0-4d30-a210-6aac66b0b250 true - LUIS Consent for Dynamics 365 Bot + Set if all money attributes are converted to decimal 1033 @@ -158075,7 +165363,7 @@ false iscustomizable - false + true false false @@ -158106,26 +165394,26 @@ canmodifysearchsettings false - true + false false false true - true + false true - isluisenabledford365bot - 2025-11-06T00:19:19.9000064 + isallmoneydecimal + 2025-11-06T00:19:22.2429952 false canmodifyrequirementlevelsettings SystemRequired - IsLUISEnabledforD365Bot + IsAllMoneyDecimal BooleanType - 9.0.2.0 + 9.1.0.0 false 0 @@ -158142,6 +165430,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -158187,6 +165482,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -158220,6 +165522,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -158238,7 +165547,7 @@ 0 - edea12eb-eecf-4879-8b19-6ffe9bcb0302 + 33c2add2-4f1d-49e9-99b3-22fbebcbdb0e Boolean @@ -158250,42 +165559,56 @@ canmodifyadditionalsettings false - 305 + 134 1900-01-01T00:00:00 - dc631e5d-1156-4611-8ecd-4d02c69f9ead + f899ba00-2341-db11-898a-0007e9e17ebd true - Enable or disable forced unlocking for Server Side Sync mailboxes. + Indicates whether loading of Microsoft Dynamics 365 in a browser window that does not have address, tool, and menu bars is enabled. 1033 + + 5b2ffee1-8d18-4099-a893-a3b495007f07 + + true + Angiver, om indlæsning af Microsoft Dynamics 365 i et browservindue, der ikke har nogen adresse-, værktøjs- og menulinjer, er aktiveret. + 1030 + - dc631e5d-1156-4611-8ecd-4d02c69f9ead + f899ba00-2341-db11-898a-0007e9e17ebd true - Enable or disable forced unlocking for Server Side Sync mailboxes. + Indicates whether loading of Microsoft Dynamics 365 in a browser window that does not have address, tool, and menu bars is enabled. 1033 - 1f25269e-ee08-4caf-a1a6-fa2604fa63e9 + d09c4d6b-e365-484a-ba13-27739f5aef0f true - Is Mailbox Forced Unlocking Enabled + Is Application Mode Enabled 1033 + + 49e6d923-8e8e-4d84-921a-8baf8dfe2d40 + + true + Er programtilstand aktiveret? + 1030 + - 1f25269e-ee08-4caf-a1a6-fa2604fa63e9 + d09c4d6b-e365-484a-ba13-27739f5aef0f true - Is Mailbox Forced Unlocking Enabled + Is Application Mode Enabled 1033 @@ -158339,41 +165662,48 @@ true true - ismailboxforcedunlockingenabled + isappmode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsMailboxForcedUnlockingEnabled + IsAppMode BooleanType - 7.1.0.0 + 5.0.0.0 false 0 false - e2ac6b5a-a178-49da-a022-310ed9cd1d8e + f1ddee85-b9ec-4ebb-81f9-eb0a90f32397 - 202d0d29-7ac4-45d5-8390-58bcc4f02570 + d0f64d8e-89e8-4dc8-9a0d-672f785a57dd true - Is Mailbox Forced Unlocking Enabled + Flag that determines whether or not Microsoft Dynamics CRM should be loaded in a browser window that does not have address, tool, and menu bars. 1033 + + f1302996-148b-4757-8dc0-687daea812d1 + + true + Flag, der bestemmer, om Microsoft Dynamics CRM skal indlæses i et browservindue, der ikke har nogen adresse-, værktøjs- og menulinjer. + 1030 + - 202d0d29-7ac4-45d5-8390-58bcc4f02570 + d0f64d8e-89e8-4dc8-9a0d-672f785a57dd true - Is Mailbox Forced Unlocking Enabled + Flag that determines whether or not Microsoft Dynamics CRM should be loaded in a browser window that does not have address, tool, and menu bars. 1033 @@ -158386,13 +165716,13 @@ false iscustomizable - false + true false true - organization_ismailboxforcedunlockingenabled + organization_isappmode Boolean - 7.1.0.0 + 5.0.0.0 @@ -158407,15 +165737,22 @@ - 7ca2ab35-8847-4d3f-bf06-4af03653e7c3 + 3d58aec5-e780-db11-9b85-00137299e160 true No 1033 + + 8e81c993-2d37-46fd-8a2d-145ebd8fa417 + + true + Nej + 1030 + - 7ca2ab35-8847-4d3f-bf06-4af03653e7c3 + 3d58aec5-e780-db11-9b85-00137299e160 true No @@ -158440,15 +165777,22 @@ - 9aa6dbd0-d11b-40e1-be97-baf39aa5f298 + 3f58aec5-e780-db11-9b85-00137299e160 true Yes 1033 + + 517dcb80-6dff-4be4-b85a-ac2a765c0d03 + + true + Ja + 1030 + - 9aa6dbd0-d11b-40e1-be97-baf39aa5f298 + 3f58aec5-e780-db11-9b85-00137299e160 true Yes @@ -158464,7 +165808,7 @@ 0 - 6e4ad9cf-0398-4b31-9b0f-c7f77639bee5 + f05eea22-806e-45e6-973d-6059a3c9ffd0 Boolean @@ -158476,42 +165820,56 @@ canmodifyadditionalsettings false - 282 + 272 1900-01-01T00:00:00 - 5cbecf7e-8666-4d21-a2d7-1d3ad1d92a3c + e9d13817-ed34-47dc-bc47-d5672d2c0bb7 true - Enable or disable mailbox keep alive for Server Side Sync. + Enable or disable attachments sync for outlook and exchange. 1033 + + e7c18f67-80e1-4046-a3fd-85155a9e89ff + + true + Aktivér eller deaktiver synkronisering af vedhæftede filer for Outlook og Exchange. + 1030 + - 5cbecf7e-8666-4d21-a2d7-1d3ad1d92a3c + e9d13817-ed34-47dc-bc47-d5672d2c0bb7 true - Enable or disable mailbox keep alive for Server Side Sync. + Enable or disable attachments sync for outlook and exchange. 1033 - 2c471f94-9423-4f04-963b-e2419dd6ee3d + 3b64106e-3dfc-4b45-b540-c705294b4c8a true - Is Mailbox Keep Alive Enabled + Is Attachment Sync Enabled 1033 + + e1f75ecf-08dc-4ae2-9d90-caa843371984 + + true + Er synkronisering af vedhæftede filer aktiveret + 1030 + - 2c471f94-9423-4f04-963b-e2419dd6ee3d + 3b64106e-3dfc-4b45-b540-c705294b4c8a true - Is Mailbox Keep Alive Enabled + Is Attachment Sync Enabled 1033 @@ -158565,14 +165923,14 @@ true true - ismailboxinactivebackoffenabled + isappointmentattachmentsyncenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsMailboxInactiveBackoffEnabled + IsAppointmentAttachmentSyncEnabled BooleanType @@ -158583,23 +165941,30 @@ false - 9ebdc6be-0414-4f8d-aaa5-89fa74678e2f + 64a222c8-c710-4a9b-a776-7585b7303807 - 1cd89a49-3509-4a80-9fbc-8e2bfb84697e + 736bc7e1-349a-41e2-bd51-56afab7a8b60 true - Is Mailbox Keep Alive Enabled + Is attachment sync enabled 1033 + + 559cf5d2-2f16-45c3-8bf8-bf784244ffc9 + + true + Er synkronisering af vedhæftede filer aktiveret + 1030 + - 1cd89a49-3509-4a80-9fbc-8e2bfb84697e + 736bc7e1-349a-41e2-bd51-56afab7a8b60 true - Is Mailbox Keep Alive Enabled + Is attachment sync enabled 1033 @@ -158616,7 +165981,7 @@ false true - organization_ismailboxinactivebackoffenabled + organization_isappointmentattachmentsyncenabled Boolean 7.0.0.0 @@ -158633,15 +165998,22 @@ - 12f1806e-e0bf-4852-87be-78c0608feab3 + 5dee1523-538e-45f8-b99a-2bd100a687a5 true No 1033 + + 344ab1b2-5b8c-4949-88bd-a993a8b1e2a8 + + true + Nej + 1030 + - 12f1806e-e0bf-4852-87be-78c0608feab3 + 5dee1523-538e-45f8-b99a-2bd100a687a5 true No @@ -158666,15 +166038,22 @@ - e4251af5-4b11-47d9-b00c-8f96082e4807 + e573e457-56c5-43e2-8738-5cdca3e1e518 true Yes 1033 + + 4b396d31-4a44-47e5-ba9a-c7f705f5b435 + + true + Ja + 1030 + - e4251af5-4b11-47d9-b00c-8f96082e4807 + e573e457-56c5-43e2-8738-5cdca3e1e518 true Yes @@ -158690,7 +166069,7 @@ 0 - 5fdf54c7-3bdb-473b-8863-b5cb439b7505 + eeb3e9ae-27e4-4c53-bbad-7b648d52357c Boolean @@ -158700,44 +166079,58 @@ false canmodifyadditionalsettings - true + false - 438 - 2025-11-06T00:19:21.4 + 273 + 1900-01-01T00:00:00 - d72cda09-56a8-4e88-8666-043006daf248 + 88483b10-6821-4df6-b4f4-a311d1942e49 true - Indicates whether Manual Sales Forecasting feature has been enabled for the organization. + Enable or disable assigned tasks sync for outlook and exchange. 1033 + + e3912696-2f74-4abc-a440-d53c28da7f6b + + true + Aktivér eller deaktiver synkronisering af tildelte opgaver for Outlook og Exchange. + 1030 + - d72cda09-56a8-4e88-8666-043006daf248 + 88483b10-6821-4df6-b4f4-a311d1942e49 true - Indicates whether Manual Sales Forecasting feature has been enabled for the organization. + Enable or disable assigned tasks sync for outlook and exchange. 1033 - 4b7d3bb3-afd6-42af-bcaf-352e9b8e21a5 + 9e6523af-b0a2-4c6d-add9-3c6341e1b2f4 true - Enable Manual Sales Forecasting feature for this organization + Is Assigned Tasks Sync Enabled 1033 + + 94b67d3d-5edb-4c5b-9f9a-9f1ecc680a03 + + true + Er synkronisering af tildelte opgaver aktiveret + 1030 + - 4b7d3bb3-afd6-42af-bcaf-352e9b8e21a5 + 9e6523af-b0a2-4c6d-add9-3c6341e1b2f4 true - Enable Manual Sales Forecasting feature for this organization + Is Assigned Tasks Sync Enabled 1033 @@ -158753,7 +166146,7 @@ false iscustomizable - false + true false false @@ -158791,41 +166184,48 @@ true true - ismanualsalesforecastingenabled - 2025-11-06T00:19:21.4 + isassignedtaskssyncenabled + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsManualSalesForecastingEnabled + IsAssignedTasksSyncEnabled BooleanType - 9.1.0.0 + 7.0.0.0 false 0 false - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 9904827d-9286-4e97-8b2a-658e6f1b04f9 - 05aedb96-402f-4dff-86e7-54b577874b2f + 64f66918-8def-4066-be53-32547e412e80 true - Information that specifies whether a feature is enabled for the organization. + Is assigned tasks sync enabled 1033 + + 8fbc18e3-8fa4-4b92-841d-35ba4615c0ee + + true + Er synkronisering af tildelte opgaver aktiveret + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 64f66918-8def-4066-be53-32547e412e80 true - Information that specifies whether a feature is enabled for the organization. + Is assigned tasks sync enabled 1033 @@ -158840,11 +166240,11 @@ iscustomizable false - true + false true - organization_featureenabled + organization_isassignedtaskssyncenabled Boolean - 8.1.0.0 + 7.0.0.0 @@ -158859,15 +166259,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + e7eb6c3d-096e-46a9-b3a0-feb9df7a56ff true No 1033 + + 13ca791d-b7f0-4a0e-9e1b-426113cdb577 + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + e7eb6c3d-096e-46a9-b3a0-feb9df7a56ff true No @@ -158892,15 +166299,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 87411bb8-7940-4d6d-8ea3-0ca7e6f8aad8 true Yes 1033 + + aabcd0fa-6787-4a57-be3c-810d4dd4146e + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 87411bb8-7940-4d6d-8ea3-0ca7e6f8aad8 true Yes @@ -158916,7 +166330,7 @@ 0 - 2d510052-f471-47d0-9941-80aa3cf69a9c + 2489d54c-5661-4797-9ade-017bfb757cdf Boolean @@ -158928,42 +166342,56 @@ canmodifyadditionalsettings false - 404 + 156 1900-01-01T00:00:00 - c9dc1da4-1a5c-4d96-ae77-fa2c97e6d15d + 2cfa0d15-d999-44fd-833c-280cd40719a3 true - Information that specifies whether mobile client on demand sync is enabled. + Enable or disable auditing of changes. 1033 + + da9556c5-1d70-4fa3-b1e5-fbb9ea465651 + + true + Aktivér eller deaktiver revision af ændringer. + 1030 + - c9dc1da4-1a5c-4d96-ae77-fa2c97e6d15d + 2cfa0d15-d999-44fd-833c-280cd40719a3 true - Information that specifies whether mobile client on demand sync is enabled. + Enable or disable auditing of changes. 1033 - 11305b0a-e780-4cee-93de-8657ad26caf4 + 4d8b6b2f-2dea-41a0-b703-b8653ab046b0 true - Is Mobile Client On Demand Sync enabled + Is Auditing Enabled 1033 + + 28cc2b20-1fbb-4196-b2bc-90ca7b545df4 + + true + Er revision aktiveret? + 1030 + - 11305b0a-e780-4cee-93de-8657ad26caf4 + 4d8b6b2f-2dea-41a0-b703-b8653ab046b0 true - Is Mobile Client On Demand Sync enabled + Is Auditing Enabled 1033 @@ -158979,7 +166407,7 @@ false iscustomizable - false + true false false @@ -159017,41 +166445,48 @@ true true - ismobileclientondemandsyncenabled + isauditenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsMobileClientOnDemandSyncEnabled + IsAuditEnabled BooleanType - 8.2.0.0 + 5.0.0.0 false 0 false - 315e90f0-678b-4e4d-97f1-886050c3cb46 + a74d007c-9b58-41af-92fb-b478e406168b - 05aedb96-402f-4dff-86e7-54b577874b2f + 032fde72-0aa8-4512-ba6c-e3106198fc7b true - Information that specifies whether a feature is enabled for the organization. + Enable/Disable Auditing of changes 1033 + + 342eee3d-909c-4066-893e-463b5b6b8525 + + true + Aktivér/deaktiver revision af ændringer + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 032fde72-0aa8-4512-ba6c-e3106198fc7b true - Information that specifies whether a feature is enabled for the organization. + Enable/Disable Auditing of changes 1033 @@ -159064,13 +166499,13 @@ false iscustomizable - false + true - true + false true - organization_featureenabled + organization_isauditenabled Boolean - 8.1.0.0 + 5.0.0.0 @@ -159085,15 +166520,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + b110635f-88f8-4efa-820e-16c7d58edb8d true No 1033 + + a8b169f8-1279-46cb-811c-a38ba702d718 + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + b110635f-88f8-4efa-820e-16c7d58edb8d true No @@ -159118,15 +166560,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + fcf32dfe-090f-4223-8467-de41c0cf389a true Yes 1033 + + 1c0b1309-c393-49e8-9a73-7f3c30103ba6 + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + fcf32dfe-090f-4223-8467-de41c0cf389a true Yes @@ -159142,7 +166591,7 @@ 0 - 6e7ec5d9-7aa5-45c8-bbdf-b8ccc1b78845 + c1bd6713-59dc-4bf1-ad14-3d5105ace4a7 Boolean @@ -159154,42 +166603,56 @@ canmodifyadditionalsettings false - 311 + 390 1900-01-01T00:00:00 - af7f9cab-89cf-4257-9dd4-a2f294c9a786 + 1c3dc120-692b-400e-bdf0-b65b09e4d23c true - Indicates whether the feature MobileOffline should be enabled for the organization. + Indicates whether the feature Auto Capture should be enabled for the organization. 1033 + + b122f8e7-1fe5-4bc3-8932-5ecd0ee7fbbd + + true + Angiver, om funktionen for automatisk registrering skal aktiveres for denne organisation. + 1030 + - af7f9cab-89cf-4257-9dd4-a2f294c9a786 + 1c3dc120-692b-400e-bdf0-b65b09e4d23c true - Indicates whether the feature MobileOffline should be enabled for the organization. + Indicates whether the feature Auto Capture should be enabled for the organization. 1033 - 211980ec-3c75-49d9-a29a-eb5391eb33e3 + 85246c42-af57-4f62-a9a4-b3fa946ac3e4 true - Enable MobileOffline for this Organization + Enable Auto Capture for this Organization 1033 + + 98b54ccc-8c9c-4b12-bc0c-609fe97167f5 + + true + Aktivér funktionen for automatisk registrering for denne organisation + 1030 + - 211980ec-3c75-49d9-a29a-eb5391eb33e3 + 85246c42-af57-4f62-a9a4-b3fa946ac3e4 true - Enable MobileOffline for this Organization + Enable Auto Capture for this Organization 1033 @@ -159243,41 +166706,48 @@ true true - ismobileofflineenabled + isautodatacaptureenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsMobileOfflineEnabled + IsAutoDataCaptureEnabled BooleanType - 8.0.0.0 + 8.2.0.0 false 0 false - 6a53d805-969d-4bcb-aca2-c327debd88f2 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 2d2db3b7-c2d5-495b-bc5d-a896ad1bb656 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether MobileOffline is enabled for the organization. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 2d2db3b7-c2d5-495b-bc5d-a896ad1bb656 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether MobileOffline is enabled for the organization. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -159290,13 +166760,13 @@ false iscustomizable - true + false - false + true true - organization_ismobileofflineenabled + organization_featureenabled Boolean - 8.0.0.0 + 8.1.0.0 @@ -159311,15 +166781,22 @@ - 8a6557ea-cd19-4ad2-a8bf-8addf7518978 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 8a6557ea-cd19-4ad2-a8bf-8addf7518978 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -159344,15 +166821,22 @@ - bfda25f9-662c-4f3d-bb8f-7c59da7015d0 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - bfda25f9-662c-4f3d-bb8f-7c59da7015d0 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -159368,7 +166852,7 @@ 0 - 06319163-7451-45c9-b679-aba33e8928c3 + 2c6de632-5a05-4c52-a8d3-e0a43ce9f17e Boolean @@ -159378,44 +166862,58 @@ false canmodifyadditionalsettings - true + false - 464 - 2025-11-06T00:19:20.2599936 + 454 + 2025-11-06T00:19:22.9170048 - d8d056fb-810c-40b7-9479-ff9f208e0ee6 + dbaa0e30-b6fb-4273-bba9-13e1e1de22c0 true - Indicates whether Model Apps can be embedded within Microsoft Teams. This is a tenant admin controlled preview/experimental feature. + Indicates whether the V2 feature of Auto Capture should be enabled for the organization. 1033 + + e182a57d-b60f-4769-9624-1b92bb9695aa + + true + Angiver, om V2-funktionen for automatisk registrering skal aktiveres for denne organisation. + 1030 + - d8d056fb-810c-40b7-9479-ff9f208e0ee6 + dbaa0e30-b6fb-4273-bba9-13e1e1de22c0 true - Indicates whether Model Apps can be embedded within Microsoft Teams. This is a tenant admin controlled preview/experimental feature. + Indicates whether the V2 feature of Auto Capture should be enabled for the organization. 1033 - b486b818-5ed8-4009-bcf4-a278506facf7 + 585a6092-d35a-4002-a4ac-af3187934fed true - Enable embedding Model Apps in Microsoft Teams + Enable Auto Capture V2 for this Organization 1033 + + 52525c62-e26c-4aee-a4d9-f8da2cf29915 + + true + Aktivér automatisk registrering V2 for denne organisation + 1030 + - b486b818-5ed8-4009-bcf4-a278506facf7 + 585a6092-d35a-4002-a4ac-af3187934fed true - Enable embedding Model Apps in Microsoft Teams + Enable Auto Capture V2 for this Organization 1033 @@ -159431,7 +166929,7 @@ false iscustomizable - false + true false false @@ -159469,14 +166967,14 @@ true true - ismodeldrivenappsinmsteamsenabled - 2025-11-06T00:19:20.2599936 + isautodatacapturev2enabled + 2025-11-06T00:19:22.9170048 false canmodifyrequirementlevelsettings SystemRequired - IsModelDrivenAppsInMSTeamsEnabled + IsAutoDataCaptureV2Enabled BooleanType @@ -159498,6 +166996,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -159543,6 +167048,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -159576,6 +167088,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -159594,7 +167113,7 @@ 0 - cc3a4c82-9f89-4ad7-b6de-b3239f3c6ce8 + ee981c1f-5a2a-4867-84c7-23a400bdae38 Boolean @@ -159604,44 +167123,58 @@ false canmodifyadditionalsettings - true + false - 10083 - 2025-11-06T02:47:57.9929984 + 10140 + 2025-11-06T04:12:32.7869952 - 79ff0594-1fd3-4297-a9a3-8c7f365a742f + 8486edfc-b4a6-4075-9062-c9ade9e35aae true - Indicates whether the maker can create Power Automate money based saving rules. + 1033 + + 52056004-47f5-4753-9993-fc5d3f4f8b11 + + true + + 1030 + - 79ff0594-1fd3-4297-a9a3-8c7f365a742f + 8486edfc-b4a6-4075-9062-c9ade9e35aae true - Indicates whether the maker can create Power Automate money based saving rules. + 1033 - c1de5d56-dcd1-49f8-a896-a98a34354d4c + d101dfc2-8711-4b5a-9fc2-ddb07040a2e1 true - Enable the ability to makers to create Power Automate money savings rule + IsAutoInstallAppForD365InTeamsEnabled 1033 + + dbb0707f-89f6-418d-94ce-bd3d333e733d + + true + IsAutoInstallAppForD365InTeamsEnabled + 1030 + - c1de5d56-dcd1-49f8-a896-a98a34354d4c + d101dfc2-8711-4b5a-9fc2-ddb07040a2e1 true - Enable the ability to makers to create Power Automate money savings rule + IsAutoInstallAppForD365InTeamsEnabled 1033 @@ -159657,7 +167190,7 @@ false iscustomizable - true + false false false @@ -159672,7 +167205,7 @@ false isrenameable - true + false false false @@ -159684,7 +167217,7 @@ false - true + false canmodifysearchsettings false @@ -159695,60 +167228,88 @@ true true - ismoneysavingsallowed - 2025-11-06T02:47:57.9929984 + isautoinstallappford365inteamsenabled + 2025-11-06T04:12:32.7869952 - true + false canmodifyrequirementlevelsettings SystemRequired - IsMoneySavingsAllowed + IsAutoInstallAppForD365InTeamsEnabled BooleanType - 1.9.4.0 + 9.2.0.0 false 0 - - true + + false - 315e90f0-678b-4e4d-97f1-886050c3cb46 + b67697cd-c6ba-f011-bbd3-7c1e52365f30 - 05aedb96-402f-4dff-86e7-54b577874b2f + b87697cd-c6ba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + 1033 + + 6c4e53ed-4756-43ca-b8c2-f62d382466e2 + + true + + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + b87697cd-c6ba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + 1033 - - + + + b77697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + IsAutoInstallAppForD365InTeamsEnabled + 1033 + + + 8b163220-6a39-4ae0-8ccf-589035a0ae20 + + true + IsAutoInstallAppForD365InTeamsEnabled + 1030 + + + + b77697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + IsAutoInstallAppForD365InTeamsEnabled + 1033 + - false + true false iscustomizable false - true + false true - organization_featureenabled + organization_isautoinstallappford365inteamsenabled Boolean - 8.1.0.0 + 9.2.0.0 @@ -159763,15 +167324,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 21b904f3-b178-46d9-9dd5-2c4214c987e5 true No 1033 + + c4522261-b3bd-4c7a-8797-1bb75d62bd4d + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 21b904f3-b178-46d9-9dd5-2c4214c987e5 true No @@ -159796,15 +167364,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + df6dcc8e-ec13-4a98-bb3a-7d11431357e7 true Yes 1033 + + 95091706-a231-4589-bc9f-137cc4c2f9fc + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + df6dcc8e-ec13-4a98-bb3a-7d11431357e7 true Yes @@ -159820,20 +167395,20 @@ 0 - b3c38560-e325-420f-972d-c5aa44579425 + 05fbdd7b-2e7f-40ed-b963-21022e3b31be - ismoneysavingsallowed + isautoinstallappford365inteamsenabled Virtual false false false - true + false canmodifyadditionalsettings true - 10084 - 2025-11-06T02:47:58.0099968 + 10141 + 2025-11-06T04:12:32.8169984 @@ -159853,7 +167428,7 @@ false - true + false iscustomizable true @@ -159864,11 +167439,11 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable true @@ -159893,25 +167468,25 @@ false false - ismoneysavingsallowedname - 2025-11-06T02:47:58.0099968 + isautoinstallappford365inteamsenabledname + 2025-11-06T04:12:32.8169984 true canmodifyrequirementlevelsettings None - ismoneysavingsallowedName + isautoinstallappford365inteamsenabledName VirtualType - 1.9.4.0 + 9.2.0.0 true - 33fa5b02-aa90-4a3c-b7cb-fa7a86680fa7 + 8a33059b-fd9e-49b1-84a1-be3d7820dfff Boolean @@ -159921,44 +167496,58 @@ false canmodifyadditionalsettings - true + false - 436 - 2025-11-06T00:19:21.6499968 + 238 + 1900-01-01T00:00:00 - 990a1a0b-4923-4de3-828a-a5d07ad96e8d + dc6def7a-06a1-427b-a267-55a4ad46d4e3 true - Indicates whether Microsoft Teams Collaboration feature has been enabled for the organization. + Information on whether auto save is enabled. 1033 + + 445cd97d-4b07-4f8f-babd-322f162fca95 + + true + Oplysninger om, hvorvidt automatisk lagring er aktiveret. + 1030 + - 990a1a0b-4923-4de3-828a-a5d07ad96e8d + dc6def7a-06a1-427b-a267-55a4ad46d4e3 true - Indicates whether Microsoft Teams Collaboration feature has been enabled for the organization. + Information on whether auto save is enabled. 1033 - b79879d0-1b60-4216-be89-e0bc20646062 + 3f397ab7-1b91-4ff9-8a1e-7c63baf782b0 true - Enable Microsoft Teams Collaboration for this organization + Auto Save Enabled 1033 + + a7b7fdf1-991e-4eab-8081-57f22d901338 + + true + Automatisk lagring er aktiveret + 1030 + - b79879d0-1b60-4216-be89-e0bc20646062 + 3f397ab7-1b91-4ff9-8a1e-7c63baf782b0 true - Enable Microsoft Teams Collaboration for this organization + Auto Save Enabled 1033 @@ -159974,7 +167563,7 @@ false iscustomizable - false + true false false @@ -160012,60 +167601,88 @@ true true - ismsteamscollaborationenabled - 2025-11-06T00:19:21.6499968 + isautosaveenabled + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsMSTeamsCollaborationEnabled + IsAutoSaveEnabled BooleanType - 9.1.0.0 + 6.0.0.0 false 0 - false + true - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 23a0f236-7aaa-4fbb-82d7-48b3931dc5e4 - 05aedb96-402f-4dff-86e7-54b577874b2f + 9bfa6873-aed5-4e6a-8cac-cdb807b2a62b true - Information that specifies whether a feature is enabled for the organization. + Information on whether auto save is enabled. 1033 + + 9858239c-e644-48a7-ac08-c961b6cc51da + + true + Oplysninger om, hvorvidt automatisk lagring er aktiveret. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 9bfa6873-aed5-4e6a-8cac-cdb807b2a62b true - Information that specifies whether a feature is enabled for the organization. + Information on whether auto save is enabled. 1033 - - + + + 3df7ea8f-b1e2-4d8b-a663-94226ed9792e + + true + Auto Save Enabled + 1033 + + + e8b32bb3-848c-43da-b000-247ed8bf675c + + true + Automatisk lagring er aktiveret + 1030 + + + + 3df7ea8f-b1e2-4d8b-a663-94226ed9792e + + true + Auto Save Enabled + 1033 + false false iscustomizable - false + true - true + false true - organization_featureenabled + organization_isautosaveenabled Boolean - 8.1.0.0 + 6.0.0.0 @@ -160080,15 +167697,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + a4306c59-b919-413b-830b-629d3777ebd9 true No 1033 + + ebcd18ab-bbd7-4c3a-ad5e-5067424eb5d4 + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + a4306c59-b919-413b-830b-629d3777ebd9 true No @@ -160113,15 +167737,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 108b2697-e81e-42d4-ac03-61bb5b403870 true Yes 1033 + + db571848-0f54-4da4-9911-c744a14f889a + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 108b2697-e81e-42d4-ac03-61bb5b403870 true Yes @@ -160137,7 +167768,7 @@ 0 - bf0f3e4b-afd6-4766-a683-f6af40d5d52b + 4833104b-cd3f-4875-8073-7e68886ce603 Boolean @@ -160147,44 +167778,58 @@ false canmodifyadditionalsettings - true + false - 429 - 2025-11-06T00:19:21.12 + 10138 + 2025-11-06T04:12:32.7529984 - 4f2a1d4d-af64-4ff6-9216-b2e473061542 + 142765b9-078b-44fb-b0a3-e88c265bd114 true - Indicates whether Microsoft Teams integration has been enabled for the organization. + 1033 + + cd26c25f-4ce7-4506-84b1-c08e4fff99b7 + + true + + 1030 + - 4f2a1d4d-af64-4ff6-9216-b2e473061542 + 142765b9-078b-44fb-b0a3-e88c265bd114 true - Indicates whether Microsoft Teams integration has been enabled for the organization. + 1033 - 9e173f40-5587-4fe7-ad69-bb8203fff0ea + 989f5256-088f-4ed4-9426-b4cc4265fd4c true - Enable Microsoft Teams integration + IsBaseCardStaticFieldDataEnabled 1033 + + fd316883-dee4-4f5d-bb98-96acd3c9225f + + true + IsBaseCardStaticFieldDataEnabled + 1030 + - 9e173f40-5587-4fe7-ad69-bb8203fff0ea + 989f5256-088f-4ed4-9426-b4cc4265fd4c true - Enable Microsoft Teams integration + IsBaseCardStaticFieldDataEnabled 1033 @@ -160238,60 +167883,88 @@ true true - ismsteamsenabled - 2025-11-06T00:19:21.12 + isbasecardstaticfielddataenabled + 2025-11-06T04:12:32.7529984 false canmodifyrequirementlevelsettings SystemRequired - IsMSTeamsEnabled + IsBaseCardStaticFieldDataEnabled BooleanType - 9.0.2.0 + 9.2.0.0 false 0 - + false - 315e90f0-678b-4e4d-97f1-886050c3cb46 + b37697cd-c6ba-f011-bbd3-7c1e52365f30 - 05aedb96-402f-4dff-86e7-54b577874b2f + b57697cd-c6ba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + 1033 + + 984b3622-3352-4aa4-8b8c-0d4ff4faf0e8 + + true + + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + b57697cd-c6ba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + 1033 - - + + + b47697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + IsBaseCardStaticFieldDataEnabled + 1033 + + + 285f9c64-e33f-47cd-af0f-18791a22198f + + true + IsBaseCardStaticFieldDataEnabled + 1030 + + + + b47697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + IsBaseCardStaticFieldDataEnabled + 1033 + - false + true false iscustomizable false - true + false true - organization_featureenabled + organization_isbasecardstaticfielddataenabled Boolean - 8.1.0.0 + 9.2.0.0 @@ -160306,15 +167979,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 1ab025df-56b7-4f18-8859-233ae4a901d1 true No 1033 + + 943fa254-560f-4693-a1a4-377ab47499bf + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 1ab025df-56b7-4f18-8859-233ae4a901d1 true No @@ -160339,15 +168019,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + cb70ced1-2a7a-4e78-97ca-4462bea90946 true Yes 1033 + + 180de4ff-83f5-490b-8980-f0ea5eec8d1e + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + cb70ced1-2a7a-4e78-97ca-4462bea90946 true Yes @@ -160359,14 +168046,14 @@ - + 0 - - 397d6d90-3684-4a1f-a29c-25a7b849b7b9 + + 1c81d7e5-1c5d-4e96-88f7-79605a34c6fa - - Boolean + isbasecardstaticfielddataenabled + Virtual false false false @@ -160375,44 +168062,16 @@ canmodifyadditionalsettings true - 434 - 2025-11-06T00:19:20.8829952 + 10139 + 2025-11-06T04:12:32.7869952 - - - fa018c47-d41d-43cb-9d19-b4773e6914d4 - - true - Indicates whether the user has enabled or disabled Microsoft Teams integration. - 1033 - - - - fa018c47-d41d-43cb-9d19-b4773e6914d4 - - true - Indicates whether the user has enabled or disabled Microsoft Teams integration. - 1033 - + + - - - d1f6ef0c-8896-4956-a048-2ac12085b5a1 - - true - Microsoft Teams integration changed by user - 1033 - - - - d1f6ef0c-8896-4956-a048-2ac12085b5a1 - - true - Microsoft Teams integration changed by user - 1033 - + + organization @@ -160420,13 +168079,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - false + true false false @@ -160441,7 +168100,7 @@ false isrenameable - false + true false false @@ -160453,143 +168112,36 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - ismsteamssettingchangedbyuser - 2025-11-06T00:19:20.8829952 + isbasecardstaticfielddataenabledname + 2025-11-06T04:12:32.7869952 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - IsMSTeamsSettingChangedByUser + isbasecardstaticfielddataenabledName - BooleanType + VirtualType - 9.1.0.0 - false - 0 - - false - - 54ba1c35-9a85-41a5-b2f4-cd407fbefcff - - - - - 6ce1e6fa-a0c7-4fee-96aa-f4bee3b60100 - - true - Indicates whether the user has enabled or disabled Microsoft Teams integration. - 1033 - - - - 6ce1e6fa-a0c7-4fee-96aa-f4bee3b60100 - - true - Indicates whether the user has enabled or disabled Microsoft Teams integration. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_msteamssettingchangedbyuser - Boolean - 9.1.0.0 - - - - - - - - - - false - true - - - - cd81ee7a-c36e-4254-acee-394a1c22fca0 - - true - No - 1033 - - - - cd81ee7a-c36e-4254-acee-394a1c22fca0 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 2e98cb8f-5482-4713-84d8-7291125c6a83 - - true - Yes - 1033 - - - - 2e98cb8f-5482-4713-84d8-7291125c6a83 - - true - Yes - 1033 - - - - 1 - - - - - 0 + 9.2.0.0 + true + + - 24d34f07-1245-4da5-9b80-1b23933c5644 + 67aa5065-cf9f-474d-ba14-b65de31c8a37 Boolean @@ -160599,44 +168151,58 @@ false canmodifyadditionalsettings - true + false - 437 - 2025-11-06T00:19:20.3529984 + 10224 + 2025-11-06T06:14:32.9730048 - 51380b12-6bf7-42de-844c-d49303d8eeaf + e7ed233c-1b89-4e84-bd6a-969768d4a914 true - Indicates whether Microsoft Teams User Sync feature has been enabled for the organization. + Determines whether users can make use of basic Geospatial featuers in Canvas apps. 1033 + + a8ae6191-711a-483d-8115-c03cb71c5b9c + + true + Bestemmer, om brugerne kan gøre brug af grundlæggende geospatiale færdigheder i lærredapps. + 1030 + - 51380b12-6bf7-42de-844c-d49303d8eeaf + e7ed233c-1b89-4e84-bd6a-969768d4a914 true - Indicates whether Microsoft Teams User Sync feature has been enabled for the organization. + Determines whether users can make use of basic Geospatial featuers in Canvas apps. 1033 - ef195172-e6aa-465e-98a6-38ed039298ef + b6e6e0bd-d7bb-4a23-aa65-0b89c853111b true - Enable Microsoft Teams User Sync for this organization + Enable the basic Geospatial features in Canvas Apps 1033 + + 8ca335b6-fa36-4532-b173-7d1ee678a41e + + true + Aktivér de grundlæggende geospatiale funktioner i lærredapps + 1030 + - ef195172-e6aa-465e-98a6-38ed039298ef + b6e6e0bd-d7bb-4a23-aa65-0b89c853111b true - Enable Microsoft Teams User Sync for this organization + Enable the basic Geospatial features in Canvas Apps 1033 @@ -160646,7 +168212,7 @@ true canmodifyauditsettings - true + false false @@ -160681,23 +168247,23 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - ismsteamsusersyncenabled - 2025-11-06T00:19:20.3529984 + isbasicgeospatialintegrationenabled + 2025-11-06T06:14:32.9730048 false canmodifyrequirementlevelsettings SystemRequired - IsMSTeamsUserSyncEnabled + IsBasicGeospatialIntegrationEnabled BooleanType @@ -160705,7 +168271,7 @@ 9.1.0.0 false 0 - + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -160719,6 +168285,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -160764,6 +168337,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -160797,6 +168377,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -160811,11 +168398,102 @@ - + 0 + + 532e3aac-fd68-4354-b00e-73468212014b + + isbasicgeospatialintegrationenabled + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10225 + 2025-11-06T06:14:32.9900032 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + isbasicgeospatialintegrationenabledname + 2025-11-06T06:14:32.9900032 + + true + canmodifyrequirementlevelsettings + None + + isbasicgeospatialintegrationenabledName + + + VirtualType + + 9.1.0.0 + true + + + - 2c21c87e-9cfa-43db-9629-afccdf9256ad + 6e03b418-b5b1-4252-a6fc-7e684cdc5801 Boolean @@ -160827,42 +168505,56 @@ canmodifyadditionalsettings true - 455 - 2025-11-06T00:19:21.3229952 + 419 + 1900-01-01T00:00:00 - 90bfa0cb-a224-43f1-9525-63ceeefdaed8 + 03e96651-b21c-4a07-908e-083a0d19bda1 true - Indicates whether new add product experience is enabled. + Information that specifies whether BPF Entity Customization Feature is enabled 1033 + + 236a2a82-a513-4c36-bf9f-f546d1675268 + + true + Oplysninger, der angiver, om tilpasningsfunktion for BPF-objekt er aktiveret + 1030 + - 90bfa0cb-a224-43f1-9525-63ceeefdaed8 + 03e96651-b21c-4a07-908e-083a0d19bda1 true - Indicates whether new add product experience is enabled. + Information that specifies whether BPF Entity Customization Feature is enabled 1033 - 98778880-12a0-45f7-b014-d127b6af1eed + 7f436ae9-b447-4102-910a-1cb1a9376859 true - Indicates whether new add product experience is enabled in opportunity form + BPF Entity Customization Feature enabled 1033 + + 5d114475-32e6-4cb4-9a99-8f68c6da3806 + + true + Tilpasningsfunktion for BPF-objekt er aktiveret + 1030 + - 98778880-12a0-45f7-b014-d127b6af1eed + 7f436ae9-b447-4102-910a-1cb1a9376859 true - Indicates whether new add product experience is enabled in opportunity form + BPF Entity Customization Feature enabled 1033 @@ -160916,19 +168608,19 @@ true true - isnewaddproductexperienceenabled - 2025-11-06T00:19:21.3229952 + isbpfentitycustomizationfeatureenabled + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsNewAddProductExperienceEnabled + IsBPFEntityCustomizationFeatureEnabled BooleanType - 9.1.0.0 + 9.0.0.0 false 0 @@ -160945,6 +168637,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -160990,6 +168689,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -161023,6 +168729,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -161041,7 +168754,7 @@ 0 - d53e5a5b-f382-473e-9771-50d5f4bbbf40 + 3ebe3b71-6baa-49d1-9dd9-6689756d0e5d Boolean @@ -161051,44 +168764,58 @@ false canmodifyadditionalsettings - false + true - 426 - 2025-11-06T00:19:21.9000064 + 10088 + 2025-11-06T02:47:58.0870016 - a4699a70-4af6-43b4-bc2f-6dd941da000e + 4a8927c8-0358-419b-a95f-ce4d35898d1a true - Indicates whether the feature Notes Analysis should be enabled for the organization. + Indicates whether Power Automate savings feature is enabled for Cloudflow. 1033 + + 1389b7f5-5f41-48e7-bc79-5dab314e8372 + + true + Indicates whether Power Automate savings feature is enabled for Cloudflow. + 1030 + - a4699a70-4af6-43b4-bc2f-6dd941da000e + 4a8927c8-0358-419b-a95f-ce4d35898d1a true - Indicates whether the feature Notes Analysis should be enabled for the organization. + Indicates whether Power Automate savings feature is enabled for Cloudflow. 1033 - 8cc2cd9b-4b59-4f5b-9e3b-18e45d4d3bbc + fc8c3267-8323-4f91-9245-a7b75dbd979c true - Enable Notes Analysis for this Organization + Enable Power Automate savings feature for Cloudflow 1033 + + 3c9957d2-c999-45ff-b20f-9060e995697b + + true + Enable Power Automate savings feature for Cloudflow + 1030 + - 8cc2cd9b-4b59-4f5b-9e3b-18e45d4d3bbc + fc8c3267-8323-4f91-9245-a7b75dbd979c true - Enable Notes Analysis for this Organization + Enable Power Automate savings feature for Cloudflow 1033 @@ -161119,7 +168846,7 @@ false isrenameable - false + true false false @@ -161131,7 +168858,7 @@ false - false + true canmodifysearchsettings false @@ -161142,23 +168869,23 @@ true true - isnotesanalysisenabled - 2025-11-06T00:19:21.9000064 + iscloudflowsavingsenabled + 2026-05-11T16:05:41.6530048 - false + true canmodifyrequirementlevelsettings SystemRequired - IsNotesAnalysisEnabled + IsCloudFlowSavingsEnabled BooleanType - 9.0.0.0 + 1.9.17.0 false 0 - false + true 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -161171,6 +168898,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -161216,6 +168950,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -161249,6 +168990,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -161263,11 +169011,102 @@ - + 0 + + 1cc8a9f1-5502-4a4b-b41f-130c63df2515 + + iscloudflowsavingsenabled + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10089 + 2025-11-06T02:47:58.1030016 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + iscloudflowsavingsenabledname + 2025-11-06T02:47:58.1030016 + + true + canmodifyrequirementlevelsettings + None + + iscloudflowsavingsenabledName + + + VirtualType + + 1.9.17.0 + true + + + - 1ce7d54c-37df-4b10-80b8-3830b986e8e2 + 1e29b5f0-eeb0-49f9-90fb-610db9d5af02 Boolean @@ -161279,42 +169118,56 @@ canmodifyadditionalsettings false - 10142 - 2025-11-06T04:12:32.8169984 + 10159 + 2025-11-06T04:49:46.2870016 - 16e18c50-9326-4810-ada2-5b26b84aae60 + 42e72a83-eafa-4b83-84d6-58f4895b9304 true - + Read-only flag indicating whether clustering is enabled for the organization. 1033 + + 808a1afa-1300-4922-b921-9c9d612fc225 + + true + Skrivebeskyttet flag, der angiver, om gruppering er aktiveret for organisationen. + 1030 + - 16e18c50-9326-4810-ada2-5b26b84aae60 + 42e72a83-eafa-4b83-84d6-58f4895b9304 true - + Read-only flag indicating whether clustering is enabled for the organization. 1033 - 8f0a5d15-4c1e-4d29-9dd8-77da9224e6ab + 5e1ac6e8-c1f4-4241-8f3b-d659d3f06d18 true - IsNotificationForD365InTeamsEnabled + Clustering is enabled. 1033 + + 4958e555-d342-459b-9358-6ed32c8ef10a + + true + Gruppering er aktiveret. + 1030 + - 8f0a5d15-4c1e-4d29-9dd8-77da9224e6ab + 5e1ac6e8-c1f4-4241-8f3b-d659d3f06d18 true - IsNotificationForD365InTeamsEnabled + Clustering is enabled. 1033 @@ -161324,7 +169177,7 @@ true canmodifyauditsettings - true + false false @@ -161361,21 +169214,21 @@ canmodifysearchsettings false - true + false false false true - true + false true - isnotificationford365inteamsenabled - 2025-11-06T04:12:32.8169984 + isclusteringenabled + 2026-04-26T15:58:59.8930048 false canmodifyrequirementlevelsettings - SystemRequired + None - IsNotificationForD365InTeamsEnabled + IsClusteringEnabled BooleanType @@ -161386,41 +169239,55 @@ false - b97697cd-c6ba-f011-bbd3-7c1e52365f30 + 7d9de503-ccba-f011-bbd3-7c1e52365f30 - bb7697cd-c6ba-f011-bbd3-7c1e52365f30 + 7f9de503-ccba-f011-bbd3-7c1e52365f30 true - + Read-only flag indicating whether clustering is enabled for the organization. 1033 + + 1ec8948a-13d1-4bea-8bc4-e511e9d6440b + + true + Skrivebeskyttet flag, der angiver, om gruppering er aktiveret for organisationen. + 1030 + - bb7697cd-c6ba-f011-bbd3-7c1e52365f30 + 7f9de503-ccba-f011-bbd3-7c1e52365f30 true - + Read-only flag indicating whether clustering is enabled for the organization. 1033 - ba7697cd-c6ba-f011-bbd3-7c1e52365f30 + 7e9de503-ccba-f011-bbd3-7c1e52365f30 true - IsNotificationForD365InTeamsEnabled + Clustering enabled/disabled flag. 1033 + + 5f23b1c9-a2d1-4a3e-8a7d-834c860abbbe + + true + Flag for aktiveret/deaktiveret gruppering. + 1030 + - ba7697cd-c6ba-f011-bbd3-7c1e52365f30 + 7e9de503-ccba-f011-bbd3-7c1e52365f30 true - IsNotificationForD365InTeamsEnabled + Clustering enabled/disabled flag. 1033 @@ -161433,7 +169300,7 @@ false true - organization_isnotificationford365inteamsenabled + organization_isclusteringenabled Boolean 9.2.0.0 @@ -161450,15 +169317,22 @@ - 7b7d16ff-d6ad-4561-afc9-1375836dc257 + d5f7ebb8-3ab6-4491-a2e2-72545321d280 true No 1033 + + 08f2687a-9c57-4c5f-8994-e9f336ec1e3c + + true + Nej + 1030 + - 7b7d16ff-d6ad-4561-afc9-1375836dc257 + d5f7ebb8-3ab6-4491-a2e2-72545321d280 true No @@ -161483,15 +169357,22 @@ - 63821266-6b6a-45d0-818d-671fd29eedc5 + 4841c54b-c754-4cf4-b51f-00a93ded3e68 true Yes 1033 + + 21ba7512-2945-49cb-aa8b-6e44e6623b75 + + true + Ja + 1030 + - 63821266-6b6a-45d0-818d-671fd29eedc5 + 4841c54b-c754-4cf4-b51f-00a93ded3e68 true Yes @@ -161507,20 +169388,20 @@ 0 - f5b572d3-a4e9-4547-9b0f-0ae86418af30 + dc90c07f-60e9-48c1-8a53-96484aa88b62 - isnotificationford365inteamsenabled + isclusteringenabled Virtual false false false - false + true canmodifyadditionalsettings true - 10143 - 2025-11-06T04:12:32.8499968 + 10160 + 2025-11-06T04:49:46.3030016 @@ -161540,7 +169421,7 @@ false - false + true iscustomizable true @@ -161551,11 +169432,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable true @@ -161580,14 +169461,14 @@ false false - isnotificationford365inteamsenabledname - 2025-11-06T04:12:32.8499968 + isclusteringenabledname + 2025-11-06T04:49:46.3030016 true canmodifyrequirementlevelsettings None - isnotificationford365inteamsenabledName + isclusteringenabledName VirtualType @@ -161598,7 +169479,7 @@ - c6ac482e-c259-4fe9-b5d9-382026dd7f90 + e5a8df2f-0112-4501-8f6e-d7a1ad5c776f Boolean @@ -161610,42 +169491,56 @@ canmodifyadditionalsettings false - 312 - 1900-01-01T00:00:00 + 10133 + 2025-11-06T04:12:32.6470016 - 5e682041-b642-4409-bc8d-5a9c21ba78b2 + 027eef04-e8be-4ece-85cd-21a59fbefce0 true - Indicates whether the feature OfficeGraph should be enabled for the organization. + 1033 + + b7ff2daa-d065-4cc0-98a7-27b1b096df2c + + true + + 1030 + - 5e682041-b642-4409-bc8d-5a9c21ba78b2 + 027eef04-e8be-4ece-85cd-21a59fbefce0 true - Indicates whether the feature OfficeGraph should be enabled for the organization. + 1033 - a46e2970-e618-472a-a757-4b95ea04542e + 875b0fb2-d34a-46c4-ac00-d25fe2e7d9c4 true - Enable OfficeGraph for this Organization + IsCollaborationExperienceEnabled 1033 + + e08688b5-a128-4398-9ef7-9a66c8935d7b + + true + IsCollaborationExperienceEnabled + 1030 + - a46e2970-e618-472a-a757-4b95ea04542e + 875b0fb2-d34a-46c4-ac00-d25fe2e7d9c4 true - Enable OfficeGraph for this Organization + IsCollaborationExperienceEnabled 1033 @@ -161661,7 +169556,7 @@ false iscustomizable - true + false false false @@ -161699,60 +169594,88 @@ true true - isofficegraphenabled - 1900-01-01T00:00:00 + iscollaborationexperienceenabled + 2025-11-06T04:12:32.6470016 false canmodifyrequirementlevelsettings SystemRequired - IsOfficeGraphEnabled + IsCollaborationExperienceEnabled BooleanType - 8.0.0.0 + 9.2.0.0 false 0 - - false + + true - 5c4bf93a-6278-4cc1-9b7e-e59752dbfd4b + ad7697cd-c6ba-f011-bbd3-7c1e52365f30 - f881b3e0-d787-4dbf-b046-d8fcbe28f79f + af7697cd-c6ba-f011-bbd3-7c1e52365f30 true - Information that specifies whether office graph is enabled for the organization. + 1033 + + 9da3798c-2789-4ea4-8305-fa850f5b40e3 + + true + + 1030 + - f881b3e0-d787-4dbf-b046-d8fcbe28f79f + af7697cd-c6ba-f011-bbd3-7c1e52365f30 true - Information that specifies whether office graph is enabled for the organization. + 1033 - - + + + ae7697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + IsCollaborationExperienceEnabled + 1033 + + + 7a8208f7-5a69-484b-8182-892aa12c685a + + true + IsCollaborationExperienceEnabled + 1030 + + + + ae7697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + IsCollaborationExperienceEnabled + 1033 + - false + true false iscustomizable - true + false false true - organization_isofficegraphenabled + organization_iscollaborationexperienceenabled Boolean - 8.0.0.0 + 9.2.0.0 @@ -161767,15 +169690,22 @@ - 1fc0219a-6068-4d0b-8522-b957f0c07827 + 797e3528-3cef-4624-8b81-385199e52510 true No 1033 + + 704971ff-8677-49aa-a423-99389dd3e6d5 + + true + Nej + 1030 + - 1fc0219a-6068-4d0b-8522-b957f0c07827 + 797e3528-3cef-4624-8b81-385199e52510 true No @@ -161800,15 +169730,22 @@ - e712120a-947a-4569-b4b0-60aca03b6156 + 0fa76c55-93df-4826-86a3-8cee52d74516 true Yes 1033 + + 43a9efcd-2383-4c23-a7e0-56481372fc8c + + true + Ja + 1030 + - e712120a-947a-4569-b4b0-60aca03b6156 + 0fa76c55-93df-4826-86a3-8cee52d74516 true Yes @@ -161820,11 +169757,102 @@ - + 0 + + 83885689-83af-4320-bacf-fb8661735423 + + iscollaborationexperienceenabled + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 10134 + 2025-11-06T04:12:32.6770048 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + iscollaborationexperienceenabledname + 2025-11-06T04:12:32.6770048 + + true + canmodifyrequirementlevelsettings + None + + iscollaborationexperienceenabledName + + + VirtualType + + 9.2.0.0 + true + + + - 56b95f74-2ecc-445c-8679-f1405e34fcea + 319ac2ce-e1c5-4372-a51d-63c99af3c16a Boolean @@ -161834,44 +169862,58 @@ false canmodifyadditionalsettings - false + true - 313 - 1900-01-01T00:00:00 + 10086 + 2025-11-06T02:47:58.04 - 618165ac-80f5-4dd0-b238-6ed5866003eb + 210f1c75-ef82-42be-a74b-f743a4263567 true - Indicates whether the feature One Drive should be enabled for the organization. + Indicates whether Computer Use in MCS feature is enabled in this organization. 1033 + + 43472fb7-24fb-4be1-8dcd-45fe81e2d879 + + true + Angiver, om funktionen Computerbrug i MCS er aktiveret i denne organisation. + 1030 + - 618165ac-80f5-4dd0-b238-6ed5866003eb + 210f1c75-ef82-42be-a74b-f743a4263567 true - Indicates whether the feature One Drive should be enabled for the organization. + Indicates whether Computer Use in MCS feature is enabled in this organization. 1033 - e1fc1f10-1f0d-4de9-9136-0563cb95df3f + a59616d4-9ac8-4d95-b460-12aba2e8d13f true - Enable One Drive for this Organization + Enable Computer Use in MCS feature for this organization 1033 + + dc852654-59a5-4935-934b-929298c48310 + + true + Aktivér funktionen Computerbrug i MCS for denne organisation + 1030 + - e1fc1f10-1f0d-4de9-9136-0563cb95df3f + a59616d4-9ac8-4d95-b460-12aba2e8d13f true - Enable One Drive for this Organization + Enable Computer Use in MCS feature for this organization 1033 @@ -161887,7 +169929,7 @@ false iscustomizable - false + true false false @@ -161902,7 +169944,7 @@ false isrenameable - false + true false false @@ -161914,7 +169956,7 @@ false - false + true canmodifysearchsettings false @@ -161925,41 +169967,48 @@ true true - isonedriveenabled - 1900-01-01T00:00:00 + iscomputeruseinmcsenabled + 2026-05-11T16:05:41.56 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - IsOneDriveEnabled + IsComputerUseInMCSEnabled BooleanType - 8.0.0.0 + 1.9.6.0 false 0 - false + true - 2928bd4e-1efc-4634-9740-434e4bfae6f1 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - ff6c1ff4-446a-447c-8fb9-11d32274cf27 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether one drive is enabled for the organization. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - ff6c1ff4-446a-447c-8fb9-11d32274cf27 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether one drive is enabled for the organization. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -161974,11 +170023,11 @@ iscustomizable false - false + true true - organization_isonedriveenabled + organization_featureenabled Boolean - 8.0.0.0 + 8.1.0.0 @@ -161993,15 +170042,22 @@ - 1707434a-1993-4c8c-b826-13ff714f8e9d + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 1707434a-1993-4c8c-b826-13ff714f8e9d + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -162026,15 +170082,22 @@ - bc8dcbdc-58a7-43b2-a48f-3adc49b9add7 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - bc8dcbdc-58a7-43b2-a48f-3adc49b9add7 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -162046,11 +170109,102 @@ - + 0 + + 8faed07d-9b49-4346-9c3d-1140734db728 + + iscomputeruseinmcsenabled + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10087 + 2025-11-06T02:47:58.0870016 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + iscomputeruseinmcsenabledname + 2025-11-06T02:47:58.0870016 + + true + canmodifyrequirementlevelsettings + None + + iscomputeruseinmcsenabledName + + + VirtualType + + 1.9.6.0 + true + + + - 85e5ecee-ff38-48cc-85de-e6d1fdd7bfa8 + 5d41a849-3cfa-422c-b647-31b68c966210 Boolean @@ -162062,42 +170216,56 @@ canmodifyadditionalsettings false - 441 - 2025-11-06T00:19:21.4470016 + 377 + 1900-01-01T00:00:00 - 77807ec3-11eb-4929-bc62-b45c2885dd89 + d0bed6e0-e21e-495b-9d22-4241d6e3d2aa true - Indicates whether PAI feature has been enabled for the organization. + Information that specifies whether conflict detection for mobile client is enabled. 1033 + + 79ea8ff5-a602-4ee1-b7e9-90efd9c661ea + + true + Oplysninger, der angiver, om konfliktregistrering for mobilklient er aktiveret. + 1030 + - 77807ec3-11eb-4929-bc62-b45c2885dd89 + d0bed6e0-e21e-495b-9d22-4241d6e3d2aa true - Indicates whether PAI feature has been enabled for the organization. + Information that specifies whether conflict detection for mobile client is enabled. 1033 - 86510625-a016-439d-a5b0-99d355881589 + 8ba96640-15b3-42a7-84c6-822746dd920d true - Enable PAI feature for this organization + Is Conflict Detection for Mobile Client enabled 1033 + + 80a9e3e5-282d-4d09-9ad9-c81ccd6bbbc8 + + true + Er konfliktregistrering for mobilklient aktiveret + 1030 + - 86510625-a016-439d-a5b0-99d355881589 + 8ba96640-15b3-42a7-84c6-822746dd920d true - Enable PAI feature for this organization + Is Conflict Detection for Mobile Client enabled 1033 @@ -162113,7 +170281,7 @@ false iscustomizable - true + false false false @@ -162151,23 +170319,23 @@ true true - ispaienabled - 2025-11-06T00:19:21.4470016 + isconflictdetectionenabledformobileclient + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsPAIEnabled + IsConflictDetectionEnabledForMobileClient BooleanType - 9.1.0.0 + 8.1.0.0 false 0 - true + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -162180,6 +170348,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -162225,6 +170400,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -162258,6 +170440,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -162275,11 +170464,11 @@ 0 - - 1566f34d-bc4b-49cd-9b68-d8460f3f7fc7 + + 93a72740-7eb5-42f5-a3ae-ee55a3de8db6 - String + Boolean false false false @@ -162288,172 +170477,56 @@ canmodifyadditionalsettings false - 439 - 2025-11-06T00:19:21.7129984 + 274 + 1900-01-01T00:00:00 - b3deea55-f4d8-47ee-9d16-7a7dbb8595c0 + bd55cbd5-ab11-4d77-8e97-12afe5d8a2c2 true - Indicates whether PDF Generation feature has been enabled for the organization. + Enable or disable mailing address sync for outlook and exchange. 1033 - - - b3deea55-f4d8-47ee-9d16-7a7dbb8595c0 - - true - Indicates whether PDF Generation feature has been enabled for the organization. - 1033 - - - - - 4dd9e892-1d95-48ca-a69c-23fd63a6923a + 628d4684-df25-4d7c-99c5-d352b2a5c6bc true - Enable PDF Generation feature for this organization - 1033 + Aktivér eller deaktiver synkronisering af postadresser for Outlook og Exchange. + 1030 - 4dd9e892-1d95-48ca-a69c-23fd63a6923a + bd55cbd5-ab11-4d77-8e97-12afe5d8a2c2 true - Enable PDF Generation feature for this organization + Enable or disable mailing address sync for outlook and exchange. 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - ispdfgenerationenabled - 2025-11-06T00:19:21.7129984 - - false - canmodifyrequirementlevelsettings - SystemRequired - - IsPDFGenerationEnabled - - - StringType - - 9.1.0.0 - false - 0 - - Text - Auto - 1000 - - - Text - - - false - 0 - 1000 - - - b904cc2c-3d0f-4616-b1a5-a5f2a2a167ae - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - true - - 10056 - 2025-11-06T02:47:57.5570048 - - + + - aa970849-4320-4d5e-89a7-fb8e81d02a48 + 6a8ce427-708b-46e7-96b5-80397e1701e2 true - Indicates whether the Per Process overage feature is enabled in this organization. + Is Mailing Address Sync Enabled 1033 - - - aa970849-4320-4d5e-89a7-fb8e81d02a48 - - true - Indicates whether the Per Process overage feature is enabled in this organization. - 1033 - - - - - 336a6501-36ae-431c-96a9-3365323babe4 + 84f05420-90e0-4fae-8462-9c9e56ddf687 true - Enable the Per Process overage feature for this organization - 1033 + Er synkronisering af postadresser aktiveret + 1030 - 336a6501-36ae-431c-96a9-3365323babe4 + 6a8ce427-708b-46e7-96b5-80397e1701e2 true - Enable the Per Process overage feature for this organization + Is Mailing Address Sync Enabled 1033 @@ -162484,7 +170557,7 @@ false isrenameable - true + false false false @@ -162496,7 +170569,7 @@ false - true + false canmodifysearchsettings false @@ -162507,41 +170580,48 @@ true true - isperprocesscapacityoverageenabled - 2025-11-06T02:47:57.5570048 + iscontactmailingaddresssyncenabled + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - IsPerProcessCapacityOverageEnabled + IsContactMailingAddressSyncEnabled BooleanType - 1.7.8.0 + 7.0.0.0 false 0 true - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 21ec4819-436c-4456-909e-cf3331975477 - 05aedb96-402f-4dff-86e7-54b577874b2f + ceab1cfe-82d9-4e01-ba72-953f9518efe9 true - Information that specifies whether a feature is enabled for the organization. + Is mailing address sync enabled 1033 + + af17a39c-85a6-4e56-ad2d-3fd0b1ad5305 + + true + Er synkronisering af postadresser aktiveret + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + ceab1cfe-82d9-4e01-ba72-953f9518efe9 true - Information that specifies whether a feature is enabled for the organization. + Is mailing address sync enabled 1033 @@ -162556,11 +170636,11 @@ iscustomizable false - true + false true - organization_featureenabled + organization_iscontactmailingaddresssyncenabled Boolean - 8.1.0.0 + 7.0.0.0 @@ -162575,15 +170655,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + ea887a57-9f6c-401c-9353-7f6c88405465 true No 1033 + + 9d9c46dd-ce99-49cd-88b2-cda129e199f1 + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + ea887a57-9f6c-401c-9353-7f6c88405465 true No @@ -162608,15 +170695,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + ddbb143f-5a7e-46b2-b8cf-329e3a8dc335 true Yes 1033 + + 7d0a87b6-4a24-4e9b-afc4-f20deaa4daa9 + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + ddbb143f-5a7e-46b2-b8cf-329e3a8dc335 true Yes @@ -162628,102 +170722,11 @@ - + 0 - - 65f42c99-1549-44ee-ac42-e1afdab9c59f - - isperprocesscapacityoverageenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10057 - 2025-11-06T02:47:57.5699968 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - isperprocesscapacityoverageenabledname - 2025-11-06T02:47:57.5699968 - - true - canmodifyrequirementlevelsettings - None - - isperprocesscapacityoverageenabledName - - - VirtualType - - 1.7.8.0 - true - - - - a9eca9d6-9d56-49d9-a444-432e6c1c522a + 7f5b8cab-562f-42f2-937f-02270985e267 Boolean @@ -162735,42 +170738,56 @@ canmodifyadditionalsettings true - 450 - 2025-11-06T00:19:21.7900032 + 444 + 2025-11-06T00:19:22.1830016 - 1376cf71-99a0-4d3a-a461-fa871c199d2d + a4632eb8-a740-42b1-9c27-5903e02891b6 true - Indicates whether playbook feature has been enabled for the organization. + Indicates whether Content Security Policy has been enabled for the organization. 1033 + + 5c2b4897-9062-4cbc-b89b-823667c16642 + + true + Angiver, om politik for sikkerhed for indhold er aktiveret for organisationen. + 1030 + - 1376cf71-99a0-4d3a-a461-fa871c199d2d + a4632eb8-a740-42b1-9c27-5903e02891b6 true - Indicates whether playbook feature has been enabled for the organization. + Indicates whether Content Security Policy has been enabled for the organization. 1033 - 4ff722c5-b147-4c3c-bea3-c853b38ea5e1 + 6c0a79f3-6358-4690-bca2-51fc3c32ae1b true - Enable playbook feature for this organization + Enable Content Security Policy for this organization 1033 + + 0618779d-4441-4cf5-a53d-231abb0787c8 + + true + Aktivér politik for sikkerhed for indhold for denne organisation + 1030 + - 4ff722c5-b147-4c3c-bea3-c853b38ea5e1 + 6c0a79f3-6358-4690-bca2-51fc3c32ae1b true - Enable playbook feature for this organization + Enable Content Security Policy for this organization 1033 @@ -162824,14 +170841,14 @@ true true - isplaybookenabled - 2025-11-06T00:19:21.7900032 + iscontentsecuritypolicyenabled + 2025-11-06T00:19:22.1830016 false canmodifyrequirementlevelsettings SystemRequired - IsPlaybookEnabled + IsContentSecurityPolicyEnabled BooleanType @@ -162853,6 +170870,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -162898,6 +170922,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -162931,6 +170962,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -162949,7 +170987,7 @@ 0 - 652e300a-214f-4caf-af79-6ab3c1b3d33a + c558ad07-f5c3-42b9-8931-a0370e371ab9 Boolean @@ -162961,42 +170999,56 @@ canmodifyadditionalsettings false - 148 - 1900-01-01T00:00:00 + 10211 + 2025-11-06T06:14:32.8 - e5800bc6-fc7b-4c69-bed0-f4f3bbfaf8f5 + a4adf522-7038-4e37-9b79-d58cb6b6c33a true - Information on whether IM presence is enabled. + Indicates whether Content Security Policy has been enabled for this organization's Canvas apps. 1033 + + 306df64a-8f60-4dc5-aab6-b99b3809b099 + + true + Angiver, om politik for sikkerhed for indhold er aktiveret for denne organisations lærredapps. + 1030 + - e5800bc6-fc7b-4c69-bed0-f4f3bbfaf8f5 + a4adf522-7038-4e37-9b79-d58cb6b6c33a true - Information on whether IM presence is enabled. + Indicates whether Content Security Policy has been enabled for this organization's Canvas apps. 1033 - ba7baae9-d4b6-4659-9efa-ecc2ad25b68d + 575b8b2c-0ccf-4432-b75b-bd846a2a1253 true - Presence Enabled + Enable Content Security Policy for this organization's Canvas apps 1033 + + dfc49c56-8d74-4ffa-a9a1-4fa60b0b061a + + true + Aktivér politik for sikkerhed for indhold for denne organisations lærredapps + 1030 + - ba7baae9-d4b6-4659-9efa-ecc2ad25b68d + 575b8b2c-0ccf-4432-b75b-bd846a2a1253 true - Presence Enabled + Enable Content Security Policy for this organization's Canvas apps 1033 @@ -163006,13 +171058,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -163041,83 +171093,76 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - ispresenceenabled - 1900-01-01T00:00:00 + iscontentsecuritypolicyenabledforcanvas + 2025-11-06T06:14:32.8 false canmodifyrequirementlevelsettings - None + SystemRequired - IsPresenceEnabled + IsContentSecurityPolicyEnabledForCanvas BooleanType - 5.0.0.0 + 9.1.0.0 false 0 - - true + + false - feecbb3c-e260-4683-b8d3-83bc7741b097 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - e5fe4006-6165-47a4-860a-8c1714354293 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information on whether IM presence is enabled. + Information that specifies whether a feature is enabled for the organization. 1033 - - - e5fe4006-6165-47a4-860a-8c1714354293 - - true - Information on whether IM presence is enabled. - 1033 - - - - - ed93de6c-b253-4078-9164-4d8cd407d328 + 9aa58f12-110b-435b-9270-294a78494bba true - Presence Enabled - 1033 + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 - ed93de6c-b253-4078-9164-4d8cd407d328 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Presence Enabled + Information that specifies whether a feature is enabled for the organization. 1033 + + + + false false iscustomizable - true + false - false + true true - organization_ispresenceenabled + organization_featureenabled Boolean - 5.0.0.0 + 8.1.0.0 @@ -163132,15 +171177,22 @@ - c9aeb5d9-a324-4d22-a2aa-f4ecc8176752 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - c9aeb5d9-a324-4d22-a2aa-f4ecc8176752 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -163165,15 +171217,22 @@ - 25264aa8-fb3b-4c98-af3f-96eec30cc0c9 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 25264aa8-fb3b-4c98-af3f-96eec30cc0c9 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -163185,24 +171244,24 @@ - + 0 - 9c04281c-2211-4e0a-b0d3-075fcc3937af + a20de303-5bf3-4686-afe3-87efad22bc8b - ispresenceenabled + iscontentsecuritypolicyenabledforcanvas Virtual false false false - false + true canmodifyadditionalsettings - false + true - 152 - 1900-01-01T00:00:00 + 10212 + 2025-11-06T06:14:32.8 @@ -163216,15 +171275,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -163233,13 +171292,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -163251,36 +171310,36 @@ false - false + true canmodifysearchsettings false - true + false false false true - true + false false - ispresenceenabledname - 1900-01-01T00:00:00 + iscontentsecuritypolicyenabledforcanvasname + 2025-11-06T06:14:32.8 - false + true canmodifyrequirementlevelsettings None - IsPresenceEnabledName + iscontentsecuritypolicyenabledforcanvasName VirtualType - 5.0.0.0 + 9.1.0.0 true - + - f151e296-720e-4a20-ba2d-07c1055403c7 + 7b65af1e-33c5-48fa-bc53-3cb6a815d59b Boolean @@ -163290,44 +171349,58 @@ false canmodifyadditionalsettings - false + true - 392 - 1900-01-01T00:00:00 + 447 + 2025-11-06T00:19:22.12 - 15394208-1737-4328-adce-e330a7b32e10 + ea4aacd9-9b01-4176-9cc7-fe3d8b6d3552 true - Indicates whether the Preview feature for Action Card should be enabled for the organization. + Indicates whether Contextual email experience is enabled on this organization 1033 + + 72e8723f-f62e-4bd4-8493-a17f6fc560a0 + + true + Angiver, om kontekstafhængig mailoplevelse er aktiveret for denne organisation. + 1030 + - 15394208-1737-4328-adce-e330a7b32e10 + ea4aacd9-9b01-4176-9cc7-fe3d8b6d3552 true - Indicates whether the Preview feature for Action Card should be enabled for the organization. + Indicates whether Contextual email experience is enabled on this organization 1033 - 71d7453e-48a0-4fd7-8afa-1a6afc55c976 + d6424d3c-c2ad-43ba-8643-06c3c7fd9887 true - Enable Preview Action Card feature for this Organization + Indicates whether Contextual email experience is enabled on this organization 1033 + + 923b5bd4-6be8-4499-9d2b-e7eb6d43f0d1 + + true + Angiver, om kontekstafhængig mailoplevelse er aktiveret for denne organisation. + 1030 + - 71d7453e-48a0-4fd7-8afa-1a6afc55c976 + d6424d3c-c2ad-43ba-8643-06c3c7fd9887 true - Enable Preview Action Card feature for this Organization + Indicates whether Contextual email experience is enabled on this organization 1033 @@ -163343,7 +171416,7 @@ false iscustomizable - true + false false false @@ -163381,19 +171454,19 @@ true true - ispreviewenabledforactioncard - 1900-01-01T00:00:00 + iscontextualemailenabled + 2025-11-06T00:19:22.12 false canmodifyrequirementlevelsettings SystemRequired - IsPreviewEnabledForActionCard + IsContextualEmailEnabled BooleanType - 8.2.0.0 + 9.1.0.0 false 0 @@ -163410,6 +171483,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -163455,6 +171535,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -163488,6 +171575,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -163506,7 +171600,7 @@ 0 - 7ba01678-1a0b-42f9-ac55-6bfe444a8328 + c80cdad0-5597-453f-adf7-e84e93fd7f64 Boolean @@ -163518,42 +171612,56 @@ canmodifyadditionalsettings false - 399 - 1900-01-01T00:00:00 + 452 + 2025-11-06T00:19:22.2899968 - d923e5d0-6274-47b8-a74c-8c26786f5a6e + 4e504c6a-8deb-4755-b287-7c00634cdb18 true - Indicates whether the feature Auto Capture should be enabled for the organization at Preview Settings. + Select to enable Contextual Help in UCI. 1033 + + 1101a99e-53c5-4a22-a02d-f15882d08ef4 + + true + Markér dette for at aktivere kontekstafhængig hjælp i UCI. + 1030 + - d923e5d0-6274-47b8-a74c-8c26786f5a6e + 4e504c6a-8deb-4755-b287-7c00634cdb18 true - Indicates whether the feature Auto Capture should be enabled for the organization at Preview Settings. + Select to enable Contextual Help in UCI. 1033 - 5c50d8b6-b728-413c-9285-292a5b4554a6 + dde80b98-b350-41de-abbc-87c16569cdd7 true - Enable Auto Capture for this Organization at Preview Settings + Enables Contextual Help in UCI 1033 + + 1ca9317a-b311-49d9-a893-df354327ec68 + + true + Aktiverer kontekstafhængig hjælp i UCI + 1030 + - 5c50d8b6-b728-413c-9285-292a5b4554a6 + dde80b98-b350-41de-abbc-87c16569cdd7 true - Enable Auto Capture for this Organization at Preview Settings + Enables Contextual Help in UCI 1033 @@ -163569,7 +171677,7 @@ false iscustomizable - true + false false false @@ -163607,19 +171715,19 @@ true true - ispreviewforautocaptureenabled - 1900-01-01T00:00:00 + iscontextualhelpenabled + 2025-11-06T00:19:22.2899968 false canmodifyrequirementlevelsettings SystemRequired - IsPreviewForAutoCaptureEnabled + IsContextualHelpEnabled BooleanType - 8.2.0.0 + 9.1.0.0 false 0 @@ -163636,6 +171744,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -163681,6 +171796,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -163714,6 +171836,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -163732,7 +171861,7 @@ 0 - 9c7e0f5d-f37d-4ed2-a30c-a6a661fb817f + 4fac360b-a4fa-4642-930d-28993399323c Boolean @@ -163744,42 +171873,56 @@ canmodifyadditionalsettings false - 393 - 1900-01-01T00:00:00 + 10235 + 2025-11-06T07:32:05.5000064 - c05ac2a7-d90f-4668-a3ce-fe5d1fcb4479 + 6e76d2df-7cda-47f4-bfb8-183be1ce2467 true - Is Preview For Email Monitoring Allowed. + Determines whether users can provide feedback Copilot experiences. 1033 + + b0dce6bb-f58c-4b73-b88f-97d6f3cd976f + + true + Determines whether users can provide feedback Copilot experiences. + 1030 + - c05ac2a7-d90f-4668-a3ce-fe5d1fcb4479 + 6e76d2df-7cda-47f4-bfb8-183be1ce2467 true - Is Preview For Email Monitoring Allowed. + Determines whether users can provide feedback Copilot experiences. 1033 - 7f94f16d-658d-45ae-8595-789135f96361 + 1732284c-26ad-4aab-a433-cfc77e0181a4 true - Allows Preview For Email Monitoring + Allow users to provide feedback to improve Copilot experiences 1033 + + f817ca40-eb83-4c4b-875e-be534d913c48 + + true + Allow users to provide feedback to improve Copilot experiences + 1030 + - 7f94f16d-658d-45ae-8595-789135f96361 + 1732284c-26ad-4aab-a433-cfc77e0181a4 true - Allows Preview For Email Monitoring + Allow users to provide feedback to improve Copilot experiences 1033 @@ -163789,13 +171932,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -163824,50 +171967,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - ispreviewforemailmonitoringallowed - 1900-01-01T00:00:00 + iscopilotfeedbackenabled + 2025-11-06T07:32:05.5000064 false canmodifyrequirementlevelsettings SystemRequired - IsPreviewForEmailMonitoringAllowed + IsCopilotFeedbackEnabled BooleanType - 8.2.0.0 + 9.2.0.0 false 0 - - true + + false - 58e75c4f-c5a7-4492-a1ed-5aebe6c894e2 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 86ecc2ee-3a14-4ad8-9239-b83035c76a12 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Allows Preview For Email Monitoring. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 86ecc2ee-3a14-4ad8-9239-b83035c76a12 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Allows Preview For Email Monitoring. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -163880,13 +172030,13 @@ false iscustomizable - true + false - false + true true - organization_ispreviewforemailmonitoringallowed + organization_featureenabled Boolean - 8.2.0.0 + 8.1.0.0 @@ -163901,15 +172051,22 @@ - d34873b7-b87c-4e32-bf38-104902210d6a + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - d34873b7-b87c-4e32-bf38-104902210d6a + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -163934,15 +172091,22 @@ - 88203146-349a-4e3b-aa92-fe044d3ea0ad + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 88203146-349a-4e3b-aa92-fe044d3ea0ad + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -163954,11 +172118,102 @@ - + 0 + + d6167555-ffc1-4ae3-b4a4-e126608f455b + + iscopilotfeedbackenabled + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10236 + 2025-11-06T07:32:05.5129984 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + iscopilotfeedbackenabledname + 2025-11-06T07:32:05.5129984 + + true + canmodifyrequirementlevelsettings + None + + iscopilotfeedbackenabledName + + + VirtualType + + 9.2.0.0 + true + + + - 8f5b8cab-562f-42f2-937f-02270985e267 + 07076b16-7f09-4cd4-a8c4-a2f00a54fc38 Boolean @@ -163970,42 +172225,56 @@ canmodifyadditionalsettings true - 445 - 2025-11-06T00:19:20.8999936 + 10054 + 2025-11-06T02:47:57.5229952 - 31c1a3a3-b3b2-4bd8-8251-10a1446df63c + 8e612f4e-5e35-4709-b424-1f7deff6ba0b true - Indicates whether PriceList is mandatory for adding existing products to sales entities. + Indicates whether CUA on Hosted Groups V2 feature is enabled in this organization. 1033 + + 6381f691-8369-4d43-8d66-4498c2062ca7 + + true + Indicates whether CUA on Hosted Groups V2 feature is enabled in this organization. + 1030 + - 31c1a3a3-b3b2-4bd8-8251-10a1446df63c + 8e612f4e-5e35-4709-b424-1f7deff6ba0b true - Indicates whether PriceList is mandatory for adding existing products to sales entities. + Indicates whether CUA on Hosted Groups V2 feature is enabled in this organization. 1033 - d1a5d76a-684f-4336-8475-df22676b607f + 5a0c271b-a4ab-4857-8d31-fdfe40d63f8a true - Indicates whether PriceList is mandatory for adding existing products to sales entities + Enable CUA on Hosted Groups v2 feature for this organization 1033 + + dcccb951-8feb-4ded-a65e-703fb64ef2d4 + + true + Enable CUA on Hosted Groups v2 feature for this organization + 1030 + - d1a5d76a-684f-4336-8475-df22676b607f + 5a0c271b-a4ab-4857-8d31-fdfe40d63f8a true - Indicates whether PriceList is mandatory for adding existing products to sales entities + Enable CUA on Hosted Groups v2 feature for this organization 1033 @@ -164021,7 +172290,7 @@ false iscustomizable - false + true false false @@ -164036,7 +172305,7 @@ false isrenameable - false + true false false @@ -164048,7 +172317,7 @@ false - false + true canmodifysearchsettings false @@ -164059,19 +172328,19 @@ true true - ispricelistmandatory - 2025-11-06T00:19:20.8999936 + iscuaonhmgv2enabled + 2026-05-11T16:05:38.4029952 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - IsPriceListMandatory + IsCuaOnHmgV2Enabled BooleanType - 9.1.0.0 + 1.9.26.0 false 0 @@ -164088,6 +172357,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -164133,6 +172409,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -164166,6 +172449,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -164180,11 +172470,102 @@ - + 0 + + 9bb789f2-3f2f-4578-9368-4b40304c6d98 + + iscuaonhmgv2enabled + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10055 + 2025-11-06T02:47:57.5399936 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + iscuaonhmgv2enabledname + 2025-11-06T02:47:57.5399936 + + true + canmodifyrequirementlevelsettings + None + + iscuaonhmgv2enabledName + + + VirtualType + + 1.9.26.0 + true + + + - f705e906-b470-416f-859f-650f7f7b437a + 50a75a67-2862-4fea-9a13-85ec709097f2 Boolean @@ -164196,42 +172577,56 @@ canmodifyadditionalsettings true - 10058 - 2025-11-06T02:47:57.5699968 + 440 + 2025-11-06T00:19:21.4630016 - 7e98420f-ebac-4863-ae8e-d6b55c6376c2 + 52b48730-a5a1-49e5-9873-67bbd4c040b2 true - Indicates whether the Process capacity auto-claim feature is enabled in this organization. + Indicates whether Custom Controls in canvas PowerApps feature has been enabled for the organization. 1033 + + c92394d8-df48-49ef-b839-07df2d31efcf + + true + Angiver, om funktionen Brugerdefinerede kontrolelementer i lærredapps i PowerApps er aktiveret for organisationen. + 1030 + - 7e98420f-ebac-4863-ae8e-d6b55c6376c2 + 52b48730-a5a1-49e5-9873-67bbd4c040b2 true - Indicates whether the Process capacity auto-claim feature is enabled in this organization. + Indicates whether Custom Controls in canvas PowerApps feature has been enabled for the organization. 1033 - 07cac79c-2b13-4d70-808c-2329984a003f + e40cd4d3-56e7-4af4-b08b-dac24edba8bd true - Enable the Process capacity auto-claim feature for this organization + Enable Custom Controls in canvas PowerApps feature for this organization 1033 + + 81f6ca8e-db28-4319-8931-0329a1918cd8 + + true + Aktivér funktionen Brugerdefinerede kontrolelementer i lærredapps i PowerApps for denne organisation + 1030 + - 07cac79c-2b13-4d70-808c-2329984a003f + e40cd4d3-56e7-4af4-b08b-dac24edba8bd true - Enable the Process capacity auto-claim feature for this organization + Enable Custom Controls in canvas PowerApps feature for this organization 1033 @@ -164247,7 +172642,7 @@ false iscustomizable - true + false false false @@ -164262,7 +172657,7 @@ false isrenameable - true + false false false @@ -164274,7 +172669,7 @@ false - true + false canmodifysearchsettings false @@ -164285,23 +172680,23 @@ true true - isprocesscapacityautoclaimenabled - 2025-11-06T02:47:57.5699968 + iscustomcontrolsincanvasappsenabled + 2025-11-06T00:19:21.4630016 - true + false canmodifyrequirementlevelsettings SystemRequired - IsProcessCapacityAutoClaimEnabled + IsCustomControlsInCanvasAppsEnabled BooleanType - 1.8.18.0 + 9.1.0.0 false 0 - true + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -164314,6 +172709,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -164359,6 +172761,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -164392,6 +172801,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -164406,102 +172822,11 @@ - + 0 - - ddbf6adb-f1ce-42d0-8270-e03e25aa1650 - - isprocesscapacityautoclaimenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10059 - 2025-11-06T02:47:57.6169984 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - isprocesscapacityautoclaimenabledname - 2025-11-06T02:47:57.6169984 - - true - canmodifyrequirementlevelsettings - None - - isprocesscapacityautoclaimenabledName - - - VirtualType - - 1.8.18.0 - true - - - - 901d9b7d-0479-426f-a4c4-8c96abde45e6 + fbc07d84-6ed3-41e3-a72a-07c54dece212 Boolean @@ -164511,44 +172836,58 @@ false canmodifyadditionalsettings - true + false - 10099 - 2025-11-06T02:47:58.2599936 + 223 + 1900-01-01T00:00:00 - 47909fae-2dfe-4001-af5c-08cb03422c69 + 84a5dd06-2ef8-47fb-a123-62820d16599f true - Indicates whether Process Mining is enabled in this organization. + Enable or disable country code selection. 1033 + + f6197018-a14f-42e3-9516-4fe3c2352425 + + true + Aktivér eller deaktiver valg af landekode. + 1030 + - 47909fae-2dfe-4001-af5c-08cb03422c69 + 84a5dd06-2ef8-47fb-a123-62820d16599f true - Indicates whether Process Mining is enabled in this organization. + Enable or disable country code selection. 1033 - 1289305c-380b-484f-affa-c1f5fd440609 + 00b3edda-c9d5-4a12-ae22-cc7bb62d1845 true - Enable Process Mining for this organization + Enable or disable country code selection 1033 + + 58ffd882-3e7e-4b97-a327-1bde538a8b8d + + true + Aktivér eller deaktiver valg af landekode + 1030 + - 1289305c-380b-484f-affa-c1f5fd440609 + 00b3edda-c9d5-4a12-ae22-cc7bb62d1845 true - Enable Process Mining for this organization + Enable or disable country code selection 1033 @@ -164564,7 +172903,7 @@ false iscustomizable - true + false false false @@ -164579,7 +172918,7 @@ false isrenameable - true + false false false @@ -164591,7 +172930,7 @@ false - true + false canmodifysearchsettings false @@ -164602,41 +172941,48 @@ true true - isprocessminingenabled - 2025-11-06T02:47:58.2599936 + isdefaultcountrycodecheckenabled + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - IsProcessMiningEnabled + IsDefaultCountryCodeCheckEnabled BooleanType - 1.9.24.0 + 5.0.0.0 false 0 true - 315e90f0-678b-4e4d-97f1-886050c3cb46 + a74d007c-9c58-41af-92fb-b478e406168b - 05aedb96-402f-4dff-86e7-54b577874b2f + 4c3bd677-6bf0-4099-9c5d-8aa117e8fee4 true - Information that specifies whether a feature is enabled for the organization. + Enable or disable country code selection 1033 + + 40585654-66f1-4866-b2c2-0460ff81f24f + + true + Aktivér eller deaktiver valg af landekode + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 4c3bd677-6bf0-4099-9c5d-8aa117e8fee4 true - Information that specifies whether a feature is enabled for the organization. + Enable or disable country code selection 1033 @@ -164651,11 +172997,11 @@ iscustomizable false - true + false true - organization_featureenabled + organization_iscountrycodeselectionenabled Boolean - 8.1.0.0 + 5.0.0.0 @@ -164670,15 +173016,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 5ec6acb7-d53a-4df8-b92f-7fca463a8de9 true No 1033 + + 91696ffa-0748-4f2f-a377-cf4e161d2a53 + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 5ec6acb7-d53a-4df8-b92f-7fca463a8de9 true No @@ -164703,15 +173056,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + cd57c959-a0eb-45cc-85c4-3f979105a9a3 true Yes 1033 + + dcfed3f8-90e0-4674-85d1-41bc39c28011 + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + cd57c959-a0eb-45cc-85c4-3f979105a9a3 true Yes @@ -164723,102 +173083,11 @@ - + 0 - - d5f02880-f219-4fec-b3e0-1ec1ec41a078 - - isprocessminingenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10100 - 2025-11-06T02:47:58.2729984 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - isprocessminingenabledname - 2025-11-06T02:47:58.2729984 - - true - canmodifyrequirementlevelsettings - None - - isprocessminingenabledName - - - VirtualType - - 1.9.24.0 - true - - - - accaf5c4-67d2-4c3e-8830-de49195880f8 + 4100a9d6-34db-4dbd-8de3-be35eb36a678 Boolean @@ -164828,44 +173097,58 @@ false canmodifyadditionalsettings - true + false - 442 - 2025-11-06T00:19:20.4470016 + 357 + 1900-01-01T00:00:00 - ea51102d-be3f-478d-a903-ed60f726e0c7 + 6d7f4dd3-c8be-43d6-895e-a8b7f36efd41 true - Select whether to use the standard Out-of-box Opportunity Close experience or opt to for a customized experience. + Enable Delegation Access content 1033 + + ab0b20a7-e42d-4565-933c-67e3e3d8405c + + true + Aktivér indhold til stedfortræderadgang + 1030 + - ea51102d-be3f-478d-a903-ed60f726e0c7 + 6d7f4dd3-c8be-43d6-895e-a8b7f36efd41 true - Select whether to use the standard Out-of-box Opportunity Close experience or opt to for a customized experience. + Enable Delegation Access content 1033 - 28057f37-3aca-4f27-bf50-adb49cc71966 + 98987edf-1b5e-4ca3-a7fb-40e0bbded1fd true - Enable quick create form for opportunity close feature for this organization + Is Delegation Access Enabled 1033 + + 57fd8da7-6810-45c9-bb41-c2826a2bec36 + + true + Er stedfortræderadgang aktiveret + 1030 + - 28057f37-3aca-4f27-bf50-adb49cc71966 + 98987edf-1b5e-4ca3-a7fb-40e0bbded1fd true - Enable quick create form for opportunity close feature for this organization + Is Delegation Access Enabled 1033 @@ -164919,41 +173202,48 @@ true true - isquickcreateenabledforopportunityclose - 2025-11-06T00:19:20.4470016 + isdelegateaccessenabled + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsQuickCreateEnabledForOpportunityClose + IsDelegateAccessEnabled BooleanType - 9.1.0.0 + 7.0.1.0 false 0 false - 315e90f0-678b-4e4d-97f1-886050c3cb46 + bd691f89-f4cd-45aa-b2f9-99beb48ba4b7 - 05aedb96-402f-4dff-86e7-54b577874b2f + ed6b8c14-e102-4dfe-a05a-347064dc3014 true - Information that specifies whether a feature is enabled for the organization. + Is Delegation Access Enabled 1033 + + cbd6f67a-b2fd-4288-b7ca-1bcb2b9012d6 + + true + Er stedfortræderadgang aktiveret + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + ed6b8c14-e102-4dfe-a05a-347064dc3014 true - Information that specifies whether a feature is enabled for the organization. + Is Delegation Access Enabled 1033 @@ -164968,11 +173258,11 @@ iscustomizable false - true + false true - organization_featureenabled + organization_isdelegationaccessenabled Boolean - 8.1.0.0 + 7.0.1.0 @@ -164987,15 +173277,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 911311c6-2ab7-40e6-bed0-f9add72b37a7 true No 1033 + + 8a266248-b48d-47d6-b2c9-cb5c2d11f04d + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 911311c6-2ab7-40e6-bed0-f9add72b37a7 true No @@ -165020,15 +173317,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + c515e02a-0909-4443-8585-54b88857dc6b true Yes 1033 + + 7c3b2d61-c71c-46e8-99aa-8ffd8766edad + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + c515e02a-0909-4443-8585-54b88857dc6b true Yes @@ -165044,7 +173348,7 @@ 0 - 966059b7-7372-46ea-8b81-1d7545341554 + be0ed1c5-030b-45aa-8f69-36d299baef28 Boolean @@ -165056,42 +173360,56 @@ canmodifyadditionalsettings false - 425 - 2025-11-06T00:19:20.3830016 + 378 + 1900-01-01T00:00:00 - 1b5c956b-f54d-4653-aa9e-32a6ac623ebc + 2f19748d-f98f-44f0-b59e-1b4e608490ae true - Enable or disable auditing of read operations. + Indicates whether the feature Action Hub should be enabled for the organization. 1033 + + a0157b86-0ae4-485e-ae28-9a6a7fb603db + + true + Angiver, om handlingshubfunktionen skal aktiveres for organisationen. + 1030 + - 1b5c956b-f54d-4653-aa9e-32a6ac623ebc + 2f19748d-f98f-44f0-b59e-1b4e608490ae true - Enable or disable auditing of read operations. + Indicates whether the feature Action Hub should be enabled for the organization. 1033 - 3580e5f4-1add-47d9-af35-926a744a7472 + f50c7146-49d2-45c4-bc9d-333cd02fb6cf true - Is Read Auditing Enabled + Enable Action Hub for this Organization 1033 + + 65fb5048-cc15-4788-86f1-0da47edc8f99 + + true + Aktivér handlingshub for denne organisation + 1030 + - 3580e5f4-1add-47d9-af35-926a744a7472 + f50c7146-49d2-45c4-bc9d-333cd02fb6cf true - Is Read Auditing Enabled + Enable Action Hub for this Organization 1033 @@ -165107,7 +173425,7 @@ false iscustomizable - false + true false false @@ -165145,41 +173463,48 @@ true true - isreadauditenabled - 2025-11-06T00:19:20.3830016 + isdelveactionhubintegrationenabled + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsReadAuditEnabled + IsDelveActionHubIntegrationEnabled BooleanType - 9.0.0.0 + 8.1.0.0 false 0 false - b874d64a-3c33-4beb-9e8d-67b39c0d641e + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 6e362795-d2c0-4f00-bf98-d2c6697d0a39 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Enable/Disable Auditing of read operations + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 6e362795-d2c0-4f00-bf98-d2c6697d0a39 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Enable/Disable Auditing of read operations + Information that specifies whether a feature is enabled for the organization. 1033 @@ -165194,11 +173519,11 @@ iscustomizable false - false + true true - organization_isreadauditenabled + organization_featureenabled Boolean - 9.0.0.0 + 8.1.0.0 @@ -165213,15 +173538,22 @@ - ab17f674-cb17-4456-9a6f-a749edad73a7 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - ab17f674-cb17-4456-9a6f-a749edad73a7 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -165246,15 +173578,22 @@ - 878d5c37-6cef-48dd-883c-bda357734ff2 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 878d5c37-6cef-48dd-883c-bda357734ff2 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -165270,7 +173609,7 @@ 0 - c85a8985-5fa5-4524-a094-d29a8929ad8f + 6b369759-075c-4452-85d6-6fc56857bbfe Boolean @@ -165280,44 +173619,58 @@ false canmodifyadditionalsettings - false + true - 406 - 1900-01-01T00:00:00 + 10079 + 2025-11-06T02:47:57.9469952 - 989e106f-224d-4648-99d4-264471338e59 + 8d69a0e8-cc00-47ec-a163-53c9b46cb2da true - Indicates whether the feature Relationship Insights should be enabled for the organization. + Indicates whether connection embedding in Desktop Flows is enabled in this organization. 1033 + + 31ab9b7f-f2be-47bb-9e99-4af57c5786d6 + + true + Angiver, om integrering af forbindelse i skrivebordsflows er aktiveret i denne organisation. + 1030 + - 989e106f-224d-4648-99d4-264471338e59 + 8d69a0e8-cc00-47ec-a163-53c9b46cb2da true - Indicates whether the feature Relationship Insights should be enabled for the organization. + Indicates whether connection embedding in Desktop Flows is enabled in this organization. 1033 - 082d5f7f-e790-4bdc-a744-efde21c802f5 + 2043d7e7-195c-4d0d-92c1-7ae58e473a40 true - Enable Relationship Insights for this Organization + Enable connection embedding in Desktop Flows for this organization 1033 + + 94c0d158-d14e-4150-bef1-8e50f4194e69 + + true + Aktivér integrering af forbindelse i skrivebordsflows i denne organisation + 1030 + - 082d5f7f-e790-4bdc-a744-efde21c802f5 + 2043d7e7-195c-4d0d-92c1-7ae58e473a40 true - Enable Relationship Insights for this Organization + Enable connection embedding in Desktop Flows for this organization 1033 @@ -165348,7 +173701,7 @@ false isrenameable - false + true false false @@ -165360,7 +173713,7 @@ false - false + true canmodifysearchsettings false @@ -165371,23 +173724,23 @@ true true - isrelationshipinsightsenabled - 1900-01-01T00:00:00 + isdesktopflowconnectionembeddingenabled + 2026-05-11T16:05:41.2300032 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - IsRelationshipInsightsEnabled + IsDesktopFlowConnectionEmbeddingEnabled BooleanType - 8.2.0.0 + 1.8.9.0 false 0 - false + true 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -165400,6 +173753,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -165445,6 +173805,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -165478,6 +173845,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -165492,60 +173866,32 @@ - + 0 - - 8979916b-ae0c-4e24-86af-93a550fb302d + + d2bb57c7-cefc-4b1b-a7d0-753cddb61ce5 - - Boolean + isdesktopflowconnectionembeddingenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 403 - 1900-01-01T00:00:00 + 10080 + 2025-11-06T02:47:57.9629952 - - - 23d5e98a-778f-4a57-92ad-e402f4d6327d - - true - Indicates if the synchronization of user resource booking with Exchange is enabled at organization level. - 1033 - - - - 23d5e98a-778f-4a57-92ad-e402f4d6327d - - true - Indicates if the synchronization of user resource booking with Exchange is enabled at organization level. - 1033 - + + - - - 702a84e5-00f8-4a00-b0f4-c3979facecf3 - - true - Resource booking synchronization enabled - 1033 - - - - 702a84e5-00f8-4a00-b0f4-c3979facecf3 - - true - Resource booking synchronization enabled - 1033 - + + organization @@ -165553,11 +173899,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -165568,13 +173914,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -165586,7 +173932,7 @@ false - false + true canmodifysearchsettings false @@ -165594,135 +173940,28 @@ false false true - true - true + false + false - isresourcebookingexchangesyncenabled - 1900-01-01T00:00:00 + isdesktopflowconnectionembeddingenabledname + 2025-11-06T02:47:57.9629952 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - IsResourceBookingExchangeSyncEnabled + isdesktopflowconnectionembeddingenabledName - BooleanType + VirtualType - 8.2.0.0 - false - 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - - 0 + 1.8.9.0 + true + + - 5fd54301-98ad-438d-8d99-c680606be560 + cf0b4fff-73f9-4b4b-be98-4fa8441da943 Boolean @@ -165734,42 +173973,56 @@ canmodifyadditionalsettings true - 458 - 2025-11-06T00:19:21.1500032 + 10075 + 2025-11-06T02:47:57.8829952 - ad993210-fb3b-4d64-aab0-9205747ac146 + 5f50e5dc-3fa1-4506-b8e5-6bde509cfbe8 true - Indicates whether rich text editor for notes experience is enabled on this organization + Indicates whether the Desktop Flows UI Automation Runtime Repair for Attended feature for this organization. 1033 + + 1ab7c2e0-4690-4ce6-a428-46001e54ecc1 + + true + Angiver, om Reparation af automatisering af brugergrænseflade for skrivebordsflows på kørselstidspunktet reparerer den overvågede funktion for denne organisation. + 1030 + - ad993210-fb3b-4d64-aab0-9205747ac146 + 5f50e5dc-3fa1-4506-b8e5-6bde509cfbe8 true - Indicates whether rich text editor for notes experience is enabled on this organization + Indicates whether the Desktop Flows UI Automation Runtime Repair for Attended feature for this organization. 1033 - a8cb8ba7-f497-4f50-93de-47fc5adc6a54 + d827a963-9f38-4f06-858d-a1d8ab996af2 true - Indicates whether rich text editor for notes experience is enabled on this organization + Enable the Desktop Flows UI Automation Runtime Repair for Attended feature for this organization 1033 + + cde5b8c6-3bea-4794-8929-6c80a71dcecb + + true + Aktivér Reparation af automatisering af brugergrænseflade for skrivebordsflows på kørselstidspunktet reparerer den overvågede funktion for denne organisation + 1030 + - a8cb8ba7-f497-4f50-93de-47fc5adc6a54 + d827a963-9f38-4f06-858d-a1d8ab996af2 true - Indicates whether rich text editor for notes experience is enabled on this organization + Enable the Desktop Flows UI Automation Runtime Repair for Attended feature for this organization 1033 @@ -165785,7 +174038,7 @@ false iscustomizable - false + true false false @@ -165800,7 +174053,7 @@ false isrenameable - false + true false false @@ -165812,7 +174065,7 @@ false - false + true canmodifysearchsettings false @@ -165823,23 +174076,23 @@ true true - isrichtextnotesenabled - 2025-11-06T00:19:21.1500032 + isdesktopflowruntimerepairattendedenabled + 2026-05-11T16:05:41.0130048 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - IsRichTextNotesEnabled + IsDesktopFlowRuntimeRepairAttendedEnabled BooleanType - 9.1.0.0 + 1.8.6.0 false 0 - false + true 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -165852,6 +174105,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -165897,6 +174157,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -165930,6 +174197,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -165944,11 +174218,102 @@ - + 0 + + 1519c85b-ab0b-42f9-ba9b-7620b9bc643a + + isdesktopflowruntimerepairattendedenabled + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10076 + 2025-11-06T02:47:57.9000064 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + isdesktopflowruntimerepairattendedenabledname + 2025-11-06T02:47:57.9000064 + + true + canmodifyrequirementlevelsettings + None + + isdesktopflowruntimerepairattendedenabledName + + + VirtualType + + 1.8.6.0 + true + + + - 14c7cf32-5125-4f2e-9300-920b0b62bd8f + 3360bbd4-f0c5-4ddf-ab58-a24e89128bf1 Boolean @@ -165960,42 +174325,56 @@ canmodifyadditionalsettings true - 10042 - 2025-11-06T02:47:57.3369984 + 10077 + 2025-11-06T02:47:57.9170048 - 42cec093-486f-4237-9261-33505460b0c5 + 7ae4be55-8d67-4e67-85b7-42fec874e02f true - Indicates whether AAD Join for RPA Autoscale is enabled in this organization.. + Indicates whether the Desktop Flows UI Automation Runtime Repair for Unattended feature for this organization. 1033 + + 6dff14bd-a2bb-4bab-9e79-eeda61b38d8f + + true + Angiver, om Reparation af automatisering af brugergrænseflade for skrivebordsflows på kørselstidspunktet reparerer den uovervågede funktion for denne organisation. + 1030 + - 42cec093-486f-4237-9261-33505460b0c5 + 7ae4be55-8d67-4e67-85b7-42fec874e02f true - Indicates whether AAD Join for RPA Autoscale is enabled in this organization.. + Indicates whether the Desktop Flows UI Automation Runtime Repair for Unattended feature for this organization. 1033 - 44c8d762-b943-49b0-98fc-59c2e8e45d85 + 1bc8cb66-aace-4a6b-abc2-b7c8d407cadf true - Enable AAD Join for RPA Autoscale feature for this organization. + Enable the Desktop Flows UI Automation Runtime Repair for Unattended feature for this organization 1033 + + b7ddf55a-ae59-4702-8d21-1a9b3d8c76d9 + + true + Aktivér Reparation af automatisering af brugergrænseflade for skrivebordsflows på kørselstidspunktet reparerer den uovervågede funktion for denne organisation + 1030 + - 44c8d762-b943-49b0-98fc-59c2e8e45d85 + 1bc8cb66-aace-4a6b-abc2-b7c8d407cadf true - Enable AAD Join for RPA Autoscale feature for this organization. + Enable the Desktop Flows UI Automation Runtime Repair for Unattended feature for this organization 1033 @@ -166049,19 +174428,19 @@ true true - isrpaautoscaleaadjoinenabled - 2025-11-06T02:47:57.3369984 + isdesktopflowruntimerepairunattendedenabled + 2026-05-11T16:05:41.1069952 true canmodifyrequirementlevelsettings - SystemRequired + None - IsRpaAutoscaleAadJoinEnabled + IsDesktopFlowRuntimeRepairUnattendedEnabled BooleanType - 1.3.4.0 + 1.8.6.0 false 0 @@ -166078,6 +174457,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -166123,6 +174509,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -166156,6 +174549,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -166174,9 +174574,9 @@ 0 - 488c7538-ccca-4b68-9a61-d1b4b1b04d03 + dd8b4792-2af9-423b-ae45-3d04ba2f5c92 - isrpaautoscaleaadjoinenabled + isdesktopflowruntimerepairunattendedenabled Virtual false false @@ -166186,8 +174586,8 @@ canmodifyadditionalsettings true - 10043 - 2025-11-06T02:47:57.3529984 + 10078 + 2025-11-06T02:47:57.9299968 @@ -166247,25 +174647,25 @@ false false - isrpaautoscaleaadjoinenabledname - 2025-11-06T02:47:57.3529984 + isdesktopflowruntimerepairunattendedenabledname + 2025-11-06T02:47:57.9299968 true canmodifyrequirementlevelsettings None - isrpaautoscaleaadjoinenabledName + isdesktopflowruntimerepairunattendedenabledName VirtualType - 1.3.4.0 + 1.8.6.0 true - c26fd24b-6fe0-43e0-a917-f8b142596286 + 2b0e587a-f9a4-4bd6-bfec-f8f09c00e259 Boolean @@ -166277,42 +174677,56 @@ canmodifyadditionalsettings true - 10040 - 2025-11-06T02:47:57.3069952 + 10090 + 2025-11-06T02:47:58.1170048 - fa0b6957-8ef0-4918-b447-848e27eee164 + 7840137b-dd15-4aff-b054-b7500d41866c true - Indicates whether Autoscale feature for RPA is enabled in this organization. + Indicates whether Power Automate savings feature is enabled for Desktopflow. 1033 + + f237cb93-41c1-4224-9a1f-ec57294ae985 + + true + Indicates whether Power Automate savings feature is enabled for Desktopflow. + 1030 + - fa0b6957-8ef0-4918-b447-848e27eee164 + 7840137b-dd15-4aff-b054-b7500d41866c true - Indicates whether Autoscale feature for RPA is enabled in this organization. + Indicates whether Power Automate savings feature is enabled for Desktopflow. 1033 - c56605b5-4e92-4d44-a913-34a65bdeb12f + a1351497-210f-4566-a370-fe4cb8b4949e true - Enable RPA Autoscale feature for this organization + Enable Power Automate savings feature for Desktopflow 1033 + + 9ee0df40-d882-4f94-b3a2-6331d54a311b + + true + Enable Power Automate savings feature for Desktopflow + 1030 + - c56605b5-4e92-4d44-a913-34a65bdeb12f + a1351497-210f-4566-a370-fe4cb8b4949e true - Enable RPA Autoscale feature for this organization + Enable Power Automate savings feature for Desktopflow 1033 @@ -166366,19 +174780,19 @@ true true - isrpaautoscaleenabled - 2025-11-06T02:47:57.3069952 + isdesktopflowsavingsenabled + 2026-05-11T16:05:41.7769984 true canmodifyrequirementlevelsettings SystemRequired - IsRpaAutoscaleEnabled + IsDesktopFlowSavingsEnabled BooleanType - 1.3.0.0 + 1.9.17.0 false 0 @@ -166395,6 +174809,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -166440,6 +174861,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -166473,6 +174901,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -166491,9 +174926,9 @@ 0 - 6bab0425-1ab3-4aa3-a764-64944e3eb5dc + 9d9d066f-f897-4f01-9cb6-73cddffcafa4 - isrpaautoscaleenabled + isdesktopflowsavingsenabled Virtual false false @@ -166503,8 +174938,8 @@ canmodifyadditionalsettings true - 10041 - 2025-11-06T02:47:57.32 + 10091 + 2025-11-06T02:47:58.1330048 @@ -166564,25 +174999,25 @@ false false - isrpaautoscaleenabledname - 2025-11-06T02:47:57.32 + isdesktopflowsavingsenabledname + 2025-11-06T02:47:58.1330048 true canmodifyrequirementlevelsettings None - isrpaautoscaleenabledName + isdesktopflowsavingsenabledName VirtualType - 1.3.0.0 + 1.9.17.0 true - 528d13e9-7c0a-4a99-a1a3-b0b3803b421b + 7b390c4f-2a49-4f89-8b6c-b348ae4e02bd Boolean @@ -166594,42 +175029,56 @@ canmodifyadditionalsettings true - 10052 - 2025-11-06T02:47:57.4930048 + 10044 + 2025-11-06T02:47:57.3830016 - 32631385-8980-4af1-a5f6-c4840e299ba0 + c1c77f1e-f53f-4412-b05e-f20d8bed875f true - Indicates whether RPA Box feature is enabled in this organization in locations outside the tenant's geographical location. + Indicates whether v2 schema for Desktop Flows is enabled in this organization. 1033 + + b062973f-ee1b-49e9-93e3-60c24852f1f9 + + true + Angiver, om v2-skema for skrivebordsflows er aktiveret i denne organisation. + 1030 + - 32631385-8980-4af1-a5f6-c4840e299ba0 + c1c77f1e-f53f-4412-b05e-f20d8bed875f true - Indicates whether RPA Box feature is enabled in this organization in locations outside the tenant's geographical location. + Indicates whether v2 schema for Desktop Flows is enabled in this organization. 1033 - 41752c6c-a513-4954-bcb7-1ee9544f7e59 + 1427cfe6-bc63-4c67-b03c-a3a1137eeaaa true - Enable RPA Box cross geo feature for this organization + Enable v2 schema for Desktop Flows in this organization. 1033 + + 877aed1d-45ac-4673-9527-27494b1bd4f5 + + true + Aktivér v2-skema for skrivebordsflows i denne organisation. + 1030 + - 41752c6c-a513-4954-bcb7-1ee9544f7e59 + 1427cfe6-bc63-4c67-b03c-a3a1137eeaaa true - Enable RPA Box cross geo feature for this organization + Enable v2 schema for Desktop Flows in this organization. 1033 @@ -166683,19 +175132,19 @@ true true - isrpaboxcrossgeoenabled - 2025-11-06T02:47:57.4930048 + isdesktopflowschemav2enabled + 2026-05-11T16:05:37.7129984 true canmodifyrequirementlevelsettings - SystemRequired + None - IsRpaBoxCrossGeoEnabled + IsDesktopFlowSchemaV2Enabled BooleanType - 1.4.25.0 + 1.3.1.0 false 0 @@ -166712,6 +175161,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -166757,6 +175213,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -166790,6 +175253,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -166808,9 +175278,9 @@ 0 - ffd3c52a-87aa-497c-966b-cf802598a7e3 + 27889f55-37d0-498b-9207-b23ec377a9ed - isrpaboxcrossgeoenabled + isdesktopflowschemav2enabled Virtual false false @@ -166820,8 +175290,8 @@ canmodifyadditionalsettings true - 10053 - 2025-11-06T02:47:57.5100032 + 10045 + 2025-11-06T02:47:57.3830016 @@ -166881,25 +175351,25 @@ false false - isrpaboxcrossgeoenabledname - 2025-11-06T02:47:57.5100032 + isdesktopflowschemav2enabledname + 2025-11-06T02:47:57.3830016 true canmodifyrequirementlevelsettings None - isrpaboxcrossgeoenabledName + isdesktopflowschemav2enabledName VirtualType - 1.4.25.0 + 1.3.1.0 true - c63a8012-707d-4238-b2b0-baa32b9930ed + e1e61125-f815-4e26-99a0-d509adba915b Boolean @@ -166911,42 +175381,56 @@ canmodifyadditionalsettings true - 10050 - 2025-11-06T02:47:57.4630016 + 10060 + 2025-11-06T02:47:57.6329984 - 9bff8683-65f4-4d8c-a1d8-985b91ac9393 + adaaa49a-19f5-49f0-b31f-8a13adaa7f31 true - Indicates whether RPA Box feature is enabled in this organization. + Indicates whether Windows Vanilla Image will be available for Desktop Flow users in this organization. 1033 + + a5061ed7-890f-4c82-91af-450f63280fb5 + + true + Angiver, om Windows Vanilla-afbildning vil være tilgængelig for brugere af skrivebordsflow i denne organisation. + 1030 + - 9bff8683-65f4-4d8c-a1d8-985b91ac9393 + adaaa49a-19f5-49f0-b31f-8a13adaa7f31 true - Indicates whether RPA Box feature is enabled in this organization. + Indicates whether Windows Vanilla Image will be available for Desktop Flow users in this organization. 1033 - 18e1ed86-50cb-465f-916d-59bb653cca49 + 7516bdd1-a8d4-4eaf-ad89-941407505e0f true - Enable RPA Box feature for this organization + Enable Sharing the Windows Vanilla Image with every Desktop Flow user in this organization. 1033 + + 5cada061-43ca-4c40-aa1f-bcad131f0332 + + true + Aktivér Deling af Windows Vanilla-afbildning med alle brugere af skrivebordsflow i denne organisation. + 1030 + - 18e1ed86-50cb-465f-916d-59bb653cca49 + 7516bdd1-a8d4-4eaf-ad89-941407505e0f true - Enable RPA Box feature for this organization + Enable Sharing the Windows Vanilla Image with every Desktop Flow user in this organization. 1033 @@ -167000,19 +175484,19 @@ true true - isrpaboxenabled - 2025-11-06T02:47:57.4630016 + isdesktopflowvanillaimagesharingenabled + 2026-05-11T16:05:38.7469952 true canmodifyrequirementlevelsettings - SystemRequired + None - IsRpaBoxEnabled + IsDesktopFlowVanillaImageSharingEnabled BooleanType - 1.4.0.0 + 1.8.15.0 false 0 @@ -167029,6 +175513,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -167074,6 +175565,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -167107,6 +175605,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -167125,9 +175630,9 @@ 0 - 01a35828-fe1b-41dd-bd0f-1c5ac2d7ecc0 + 0fcf0547-0319-4090-9037-e04012a9b651 - isrpaboxenabled + isdesktopflowvanillaimagesharingenabled Virtual false false @@ -167137,8 +175642,8 @@ canmodifyadditionalsettings true - 10051 - 2025-11-06T02:47:57.4770048 + 10061 + 2025-11-06T02:47:57.6499968 @@ -167198,25 +175703,25 @@ false false - isrpaboxenabledname - 2025-11-06T02:47:57.4770048 + isdesktopflowvanillaimagesharingenabledname + 2025-11-06T02:47:57.6499968 true canmodifyrequirementlevelsettings None - isrpaboxenabledName + isdesktopflowvanillaimagesharingenabledName VirtualType - 1.4.0.0 + 1.8.15.0 true - 2a103f40-2046-4c0d-9982-de6b06fa68de + db5be655-6f4a-4fcb-9163-6b94aa77c314 Boolean @@ -167228,42 +175733,56 @@ canmodifyadditionalsettings true - 10038 - 2025-11-06T02:47:57.2729984 + 10101 + 2025-11-06T02:47:58.2899968 - 20015e4f-85c7-4dca-975a-8ec12909a166 + 142c55b2-a9c0-4e0f-8f40-efed56120b09 true - Indicates whether Unattended runs feature for RPA is enabled in this organization. + Indicates whether version control for Desktop Flows is enabled in this organization. 1033 + + fe923cd2-6539-46c9-aef5-db3949ea10c2 + + true + Indicates whether version control for Desktop Flows is enabled in this organization. + 1030 + - 20015e4f-85c7-4dca-975a-8ec12909a166 + 142c55b2-a9c0-4e0f-8f40-efed56120b09 true - Indicates whether Unattended runs feature for RPA is enabled in this organization. + Indicates whether version control for Desktop Flows is enabled in this organization. 1033 - 15a4b40d-ac60-4298-9aed-74a9b8a23da7 + 7fc43664-e3ca-4623-bb7d-564a6d9392b7 true - Enable RPA Unattended feature for this organization + Enable version control for Desktop Flows in this organization. 1033 + + 368b475d-c2a7-4278-a2e2-f462a770bb3c + + true + Enable version control for Desktop Flows in this organization. + 1030 + - 15a4b40d-ac60-4298-9aed-74a9b8a23da7 + 7fc43664-e3ca-4623-bb7d-564a6d9392b7 true - Enable RPA Unattended feature for this organization + Enable version control for Desktop Flows in this organization. 1033 @@ -167317,23 +175836,23 @@ true true - isrpaunattendedenabled - 2025-11-06T02:47:57.2729984 + isdesktopflowversioncontrolenabled + 2026-05-11T16:05:42.2630016 true canmodifyrequirementlevelsettings - SystemRequired + None - IsRpaUnattendedEnabled + IsDesktopFlowVersionControlEnabled BooleanType - 1.3.0.0 + 1.9.25.0 false 0 - true + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -167346,6 +175865,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -167391,6 +175917,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -167424,6 +175957,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -167441,99 +175981,8 @@ 0 - - 25de6615-c2b5-45f5-b195-c28c4d2e5ca0 - - isrpaunattendedenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10039 - 2025-11-06T02:47:57.2899968 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - isrpaunattendedenabledname - 2025-11-06T02:47:57.2899968 - - true - canmodifyrequirementlevelsettings - None - - isrpaunattendedenabledName - - - VirtualType - - 1.3.0.0 - true - - - - 17e2f902-33e1-4f28-aeb6-8015350806a9 + 82c1daba-1f22-4bb8-b00a-447c85e138f6 Boolean @@ -167545,42 +175994,56 @@ canmodifyadditionalsettings true - 453 - 2025-11-06T00:19:21.3529984 + 10103 + 2025-11-06T02:47:58.3069952 - f04820f2-d938-45f5-8eee-c862f40f3ae6 + 4f480530-9d12-4f5e-8d45-1d1c0e6c4b97 true - Indicates whether Sales Assistant mobile app has been enabled for the organization. + Indicates if this organization will opt-in to automatically to enable version control for Desktop Flows. 1033 + + 67c7312e-20f5-4104-a1f5-5a7967d6d082 + + true + Indicates if this organization will opt-in to automatically to enable version control for Desktop Flows. + 1030 + - f04820f2-d938-45f5-8eee-c862f40f3ae6 + 4f480530-9d12-4f5e-8d45-1d1c0e6c4b97 true - Indicates whether Sales Assistant mobile app has been enabled for the organization. + Indicates if this organization will opt-in to automatically to enable version control for Desktop Flows. 1033 - 1296e94f-5040-44d4-8e04-f2ce651deb8d + 4b7b7013-9c91-4172-af17-abe4e3496940 true - Enable Sales Assistant mobile app + Opt-in of version control for Desktop Flows being automatically enabled for this organization. 1033 + + 89691e68-e106-4a1c-a045-e0eaefb725d1 + + true + Opt-in of version control for Desktop Flows being automatically enabled for this organization. + 1030 + - 1296e94f-5040-44d4-8e04-f2ce651deb8d + 4b7b7013-9c91-4172-af17-abe4e3496940 true - Enable Sales Assistant mobile app + Opt-in of version control for Desktop Flows being automatically enabled for this organization. 1033 @@ -167596,7 +176059,7 @@ false iscustomizable - false + true false false @@ -167611,7 +176074,7 @@ false isrenameable - false + true false false @@ -167623,7 +176086,7 @@ false - false + true canmodifysearchsettings false @@ -167634,23 +176097,23 @@ true true - issalesassistantenabled - 2025-11-06T00:19:21.3529984 + isdesktopflowversioncontrolenabledbydefault + 2026-05-11T16:05:42.3869952 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - IsSalesAssistantEnabled + IsDesktopFlowVersionControlEnabledByDefault BooleanType - 9.1.0.0 + 1.9.25.0 false 0 - false + true 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -167663,6 +176126,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -167708,6 +176178,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -167741,6 +176218,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -167755,14 +176239,196 @@ - + 0 - - d02d67a5-b8b3-47d0-b483-0bf2ea47d17e + + 5e54a98c-ed76-45c3-9517-ddd3a633747f + + isdesktopflowversioncontrolenabledbydefault + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10104 + 2025-11-06T02:47:58.3529984 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + isdesktopflowversioncontrolenabledbydefaultname + 2025-11-06T02:47:58.3529984 + + true + canmodifyrequirementlevelsettings + None + + isdesktopflowversioncontrolenabledbydefaultName + + + VirtualType + + 1.9.25.0 + true + + + + + bcc832c7-7445-4ead-8891-a696fca40f31 + + isdesktopflowversioncontrolenabled + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10102 + 2025-11-06T02:47:58.3069952 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + isdesktopflowversioncontrolenabledname + 2025-11-06T02:47:58.3069952 + + true + canmodifyrequirementlevelsettings + None + + isdesktopflowversioncontrolenabledName + + + VirtualType + + 1.9.25.0 + true + + + + + 03ab9b5c-8251-452c-8db7-fe4efd753840 - Boolean + Picklist false false false @@ -167771,42 +176437,56 @@ canmodifyadditionalsettings true - 10095 - 2025-11-06T02:47:58.1970048 + 10251 + 2026-05-11T16:05:42.7170048 - d6d11ce8-4da2-415f-bb1c-a5d847688d6f + 337ad7e7-5468-43dd-8f0c-99db19e461de true - Indicates whether sending CUA audit logs to Purview is enabled. + Overrides whether version control for Desktop Flows is enabled in this organization. 1033 + + a941e7d0-e6bd-480b-8682-6e08372fe8e1 + + true + Overrides whether version control for Desktop Flows is enabled in this organization. + 1030 + - d6d11ce8-4da2-415f-bb1c-a5d847688d6f + 337ad7e7-5468-43dd-8f0c-99db19e461de true - Indicates whether sending CUA audit logs to Purview is enabled. + Overrides whether version control for Desktop Flows is enabled in this organization. 1033 - b3e28dde-78f3-4d00-83f5-d0116c05bf47 + 00193c5e-3fd1-467d-a7eb-ad2b386785b1 true - Enable sending CUA audit logs to Purview + Override whether version control for Desktop Flows is enabled in this organization. 1033 + + 12e3cec6-f85e-4653-973b-1bc22a13f81e + + true + Override whether version control for Desktop Flows is enabled in this organization. + 1030 + - b3e28dde-78f3-4d00-83f5-d0116c05bf47 + 00193c5e-3fd1-467d-a7eb-ad2b386785b1 true - Enable sending CUA audit logs to Purview + Override whether version control for Desktop Flows is enabled in this organization. 1033 @@ -167860,134 +176540,236 @@ true true - issendcuaauditlogtopurviewenabled - 2025-11-06T02:47:58.1970048 + isdesktopflowversioncontrolenabledoverride + 2026-05-11T16:05:42.7170048 true canmodifyrequirementlevelsettings SystemRequired - IsSendCuaAuditLogToPurviewEnabled + IsDesktopFlowVersionControlEnabledOverride - BooleanType + PicklistType - 1.9.27.0 + 1.10.3.0 false 0 - false + 0 - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 677e3437-534d-f111-bec7-002248a2a8d1 + + + + - 05aedb96-402f-4dff-86e7-54b577874b2f + 687e3437-534d-f111-bec7-002248a2a8d1 true - Information that specifies whether a feature is enabled for the organization. + organization_isdesktopflowversioncontrolenabledoverride 1033 - 05aedb96-402f-4dff-86e7-54b577874b2f + 687e3437-534d-f111-bec7-002248a2a8d1 true - Information that specifies whether a feature is enabled for the organization. + organization_isdesktopflowversioncontrolenabledoverride 1033 - - - - - false + true false iscustomizable false - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + organization_isdesktopflowversioncontrolenabledoverride + Picklist + 1.10.3.0 + + + + + + + + + 81e10c49-d129-4daf-bcc0-c854b180424d + + true + No override is set; the organization inherits the default version control setting for Desktop Flows. + 1033 + + + + 81e10c49-d129-4daf-bcc0-c854b180424d - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + No override is set; the organization inherits the default version control setting for Desktop Flows. + 1033 + + + + false + true + + + + 1c6d5a7f-a6f1-4858-ae54-9da948c2c6c1 + + true + Unset + 1033 + + + 970cce76-1c73-43a8-b008-f6beaea04a8e + + true + Unset + 1030 + + + + 1c6d5a7f-a6f1-4858-ae54-9da948c2c6c1 - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + Unset + 1033 + + + + 0 + + + + + + + + + + c3ac8e93-a339-4f5a-ba56-2cebe7d3920b + + true + Version control for Desktop Flows is explicitly enabled in this organization. + 1033 + + + + c3ac8e93-a339-4f5a-ba56-2cebe7d3920b + + true + Version control for Desktop Flows is explicitly enabled in this organization. + 1033 + + + + false + true + + + + 3d3bfcf9-a74d-4463-bec2-86c3fdfd7b26 + + true + Enabled + 1033 + + + e5546852-f4e0-4f45-aae7-0a4c286da6d0 + + true + Enabled + 1030 + + + + 3d3bfcf9-a74d-4463-bec2-86c3fdfd7b26 + + true + Enabled + 1033 + + + + 1 + + + + + + + + + + 1ce79b90-3634-4e61-96c9-ed093667b7ed + + true + Version control for Desktop Flows is explicitly disabled in this organization. + 1033 + + + + 1ce79b90-3634-4e61-96c9-ed093667b7ed + + true + Version control for Desktop Flows is explicitly disabled in this organization. + 1033 + + + + false + true + + + + e50da7ba-6508-44ec-b3a7-bbf8ed9e5ee7 + + true + Disabled + 1033 + + + a313f1ba-267a-4c89-a2b1-fe9abe8cf8bc + + true + Disabled + 1030 + + + + e50da7ba-6508-44ec-b3a7-bbf8ed9e5ee7 + + true + Disabled + 1033 + + + + 2 + + + + + 0 + + - 098ffd45-43c7-4e2e-b4ff-f760ee166348 + 0610d485-a375-42ed-ab35-b65f3b56ac32 - issendcuaauditlogtopurviewenabled + isdesktopflowversioncontrolenabledoverride Virtual false false @@ -167997,8 +176779,8 @@ canmodifyadditionalsettings true - 10096 - 2025-11-06T02:47:58.2269952 + 10252 + 2026-05-11T16:05:42.84 @@ -168058,25 +176840,25 @@ false false - issendcuaauditlogtopurviewenabledname - 2025-11-06T02:47:58.2269952 + isdesktopflowversioncontrolenabledoverridename + 2026-05-11T16:05:42.84 true canmodifyrequirementlevelsettings None - issendcuaauditlogtopurviewenabledName + isdesktopflowversioncontrolenabledoverrideName VirtualType - 1.9.27.0 + 1.10.3.0 true - 65a2f27f-aa70-4da2-bce5-031bd1edd364 + b75e5e02-1f52-42db-beea-5f0757704386 Boolean @@ -168088,42 +176870,56 @@ canmodifyadditionalsettings false - 10135 - 2025-11-06T04:12:32.6930048 + 17 + 1900-01-01T00:00:00 - e5ef69e5-3089-420f-90ea-1ff1f1cdbdcb + 7d1ed7e8-2241-db11-898a-0007e9e17ebd true - + Information that specifies whether the organization is disabled. 1033 + + 92a2685d-876c-4b1b-b1ff-a1c981e73947 + + true + Angiver, om organisationen er deaktiveret. + 1030 + - e5ef69e5-3089-420f-90ea-1ff1f1cdbdcb + 7d1ed7e8-2241-db11-898a-0007e9e17ebd true - + Information that specifies whether the organization is disabled. 1033 - af085c42-f18e-45d6-968f-f039c421b8e9 + 210c24f5-3e5d-4545-ab3c-febe061a1c3d true - IsSharingInOrgAllowed + Is Organization Disabled 1033 + + b691d3f6-d3c9-461f-ba90-099eddff5dc3 + + true + Er organisationen deaktiveret? + 1030 + - af085c42-f18e-45d6-968f-f039c421b8e9 + 210c24f5-3e5d-4545-ab3c-febe061a1c3d true - IsSharingInOrgAllowed + Is Organization Disabled 1033 @@ -168139,7 +176935,7 @@ false iscustomizable - false + true false false @@ -168170,81 +176966,74 @@ canmodifysearchsettings false - true + false false false true - true + false true - issharinginorgallowed - 2025-11-06T04:12:32.6930048 + isdisabled + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsSharingInOrgAllowed + IsDisabled BooleanType - 9.2.0.0 + 5.0.0.0 false 0 - - true + + false - b07697cd-c6ba-f011-bbd3-7c1e52365f30 + 262d8833-44d2-4638-b0bb-82d5b5475647 - b27697cd-c6ba-f011-bbd3-7c1e52365f30 + 6deac4e1-e740-4744-a35e-469845f95c77 true - + Information that specifies whether the organization is disabled. 1033 - - - b27697cd-c6ba-f011-bbd3-7c1e52365f30 - - true - - 1033 - - - - - b17697cd-c6ba-f011-bbd3-7c1e52365f30 + d93993c9-7e93-4855-af3e-417e16288470 true - IsSharingInOrgAllowed - 1033 + Angiver, om organisationen er deaktiveret. + 1030 - b17697cd-c6ba-f011-bbd3-7c1e52365f30 + 6deac4e1-e740-4744-a35e-469845f95c77 true - IsSharingInOrgAllowed + Information that specifies whether the organization is disabled. 1033 + + + + - true + false false iscustomizable - false + true false true - organization_issharinginorgallowed + organization_isdisabled Boolean - 9.2.0.0 + 5.0.0.0 @@ -168259,15 +177048,22 @@ - 668c2eea-62b9-4568-8fff-cb8fce4f935a + 4158aec5-e780-db11-9b85-00137299e160 true No 1033 + + cc643e0c-b0ef-44c2-a137-cdc776ec4e89 + + true + Nej + 1030 + - 668c2eea-62b9-4568-8fff-cb8fce4f935a + 4158aec5-e780-db11-9b85-00137299e160 true No @@ -168292,15 +177088,22 @@ - 9f2c4cb1-cec8-461e-9310-c955bcdcba37 + 4358aec5-e780-db11-9b85-00137299e160 true Yes 1033 + + c3885dc1-2d56-4654-a3b4-890816f0a187 + + true + Ja + 1030 + - 9f2c4cb1-cec8-461e-9310-c955bcdcba37 + 4358aec5-e780-db11-9b85-00137299e160 true Yes @@ -168312,13 +177115,13 @@ - + 0 - 8c910cd7-0882-43c8-9f25-17313ead92e3 + b1f8ac9b-ff48-4a64-9711-246b42dd1db5 - issharinginorgallowed + isdisabled Virtual false false @@ -168326,10 +177129,10 @@ false canmodifyadditionalsettings - true + false - 10136 - 2025-11-06T04:12:32.7229952 + 44 + 1900-01-01T00:00:00 @@ -168343,7 +177146,7 @@ - true + false canmodifyauditsettings false @@ -168351,7 +177154,7 @@ false iscustomizable - true + false false false @@ -168366,7 +177169,7 @@ false isrenameable - true + false false false @@ -168378,7 +177181,7 @@ false - true + false canmodifysearchsettings false @@ -168389,25 +177192,25 @@ false false - issharinginorgallowedname - 2025-11-06T04:12:32.7229952 + isdisabledname + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - issharinginorgallowedName + IsDisabledName VirtualType - 9.2.0.0 + 5.0.0.0 true - + - b7bc53fd-8fd4-42b9-97d3-45f38acf96e8 + ff4a84e5-8db5-4d79-aad4-aeb402c4d3cf Boolean @@ -168419,42 +177222,56 @@ canmodifyadditionalsettings false - 136 + 149 1900-01-01T00:00:00 - 679ccf8c-6f12-47b2-8731-e5f26baaa87a + 881c9b1e-2341-db11-898a-0007e9e17ebd true - Enable sales order processing integration. + Indicates whether duplicate detection of records is enabled. 1033 + + f0835250-1a19-4333-b2c4-916f5ebb1778 + + true + Angiver, om registrering af dubletter af poster er aktiveret. + 1030 + - 679ccf8c-6f12-47b2-8731-e5f26baaa87a + 881c9b1e-2341-db11-898a-0007e9e17ebd true - Enable sales order processing integration. + Indicates whether duplicate detection of records is enabled. 1033 - 7c1725d1-0f60-414a-a6ba-8cffc672960a + abd09da9-30c0-4302-9d32-8596a2206be2 true - Is Sales Order Integration Enabled + Is Duplicate Detection Enabled 1033 + + 129b0b88-07c3-4e4e-8ac2-9e10333ec77e + + true + Er registrering af dubletter aktiveret? + 1030 + - 7c1725d1-0f60-414a-a6ba-8cffc672960a + abd09da9-30c0-4302-9d32-8596a2206be2 true - Is Sales Order Integration Enabled + Is Duplicate Detection Enabled 1033 @@ -168508,14 +177325,14 @@ true true - issopintegrationenabled + isduplicatedetectionenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsSOPIntegrationEnabled + IsDuplicateDetectionEnabled BooleanType @@ -168526,23 +177343,30 @@ false - ef0d10ec-557e-498b-b8e5-81f150f7440a + 85e46646-00d6-420d-a548-83dd78275407 - 1bdfe267-8449-443d-9dcc-388b3469bc70 + 64c55e8a-a12d-404b-a9e0-6cacd0ef3350 true - Enable sales order processing integration. + Flag to enable or disable duplicate detection of records in the system. 1033 + + 0d03139b-ac87-448f-b55a-070b9509512c + + true + Flag for aktivering/deaktivering af registrering af dubletter af poster i systemet. + 1030 + - 1bdfe267-8449-443d-9dcc-388b3469bc70 + 64c55e8a-a12d-404b-a9e0-6cacd0ef3350 true - Enable sales order processing integration. + Flag to enable or disable duplicate detection of records in the system. 1033 @@ -168559,7 +177383,7 @@ false true - organization_issopintegrationenabled + organization_isduplicatedetectionenabled Boolean 5.0.0.0 @@ -168576,15 +177400,22 @@ - 3d932dc4-69b1-44ba-86c6-a42e0c5814a4 + 4558aec5-e780-db11-9b85-00137299e160 true No 1033 + + a14f4ca9-a761-4df6-84fd-ed2d261e1d1f + + true + Nej + 1030 + - 3d932dc4-69b1-44ba-86c6-a42e0c5814a4 + 4558aec5-e780-db11-9b85-00137299e160 true No @@ -168609,15 +177440,22 @@ - 6f2ba086-c36d-4384-b92a-d60da4c500c9 + 4758aec5-e780-db11-9b85-00137299e160 true Yes 1033 + + 8f422d4d-d10c-4dfe-90df-de3abda0f89e + + true + Ja + 1030 + - 6f2ba086-c36d-4384-b92a-d60da4c500c9 + 4758aec5-e780-db11-9b85-00137299e160 true Yes @@ -168633,7 +177471,7 @@ 0 - 091944c1-1f7a-421f-8ee0-2ea6ebd18760 + a637c587-54ee-4081-b70d-18e571f71cf1 Boolean @@ -168645,42 +177483,56 @@ canmodifyadditionalsettings false - 408 + 126 1900-01-01T00:00:00 - 8e6dc699-1070-4f22-a37c-4cf9d07c126f + cc53c2fa-2241-db11-898a-0007e9e17ebd true - Information on whether text wrap is enabled. + Indicates whether duplicate detection of records during import is enabled. 1033 + + c6d63a8b-9e84-4639-918c-f6393e472e53 + + true + Angiver, om registrering af dubletter af poster under import er aktiveret. + 1030 + - 8e6dc699-1070-4f22-a37c-4cf9d07c126f + cc53c2fa-2241-db11-898a-0007e9e17ebd true - Information on whether text wrap is enabled. + Indicates whether duplicate detection of records during import is enabled. 1033 - b72a3c7d-b377-445f-a314-224ba36a7524 + f5d0e6bf-0f68-4bde-94ce-717b3d6b3d9a true - Enable Text Wrap + Is Duplicate Detection Enabled For Import 1033 + + b2bf5868-3cb9-4c9c-9d33-6f756630d8e3 + + true + Er registrering af dubletter aktiveret til import? + 1030 + - b72a3c7d-b377-445f-a314-224ba36a7524 + f5d0e6bf-0f68-4bde-94ce-717b3d6b3d9a true - Enable Text Wrap + Is Duplicate Detection Enabled For Import 1033 @@ -168734,74 +177586,67 @@ true true - istextwrapenabled + isduplicatedetectionenabledforimport 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsTextWrapEnabled + IsDuplicateDetectionEnabledForImport BooleanType - 9.0.0.0 + 5.0.0.0 false 0 - true + false - e7f5d264-c73f-4a9d-80e5-cb54a1c7687c + 3c3daeef-3b5a-4564-8d05-f708f1c68128 - bde42f4a-f5d5-4d08-9a64-0838690eb335 + 81d81544-d517-4de6-b6e6-c56c32e0bd75 true - Enable or disable text wrap + Flag to enable or disable duplicate detection of records during import. 1033 - - - bde42f4a-f5d5-4d08-9a64-0838690eb335 - - true - Enable or disable text wrap - 1033 - - - - - 31740bb8-b36d-4f7e-b0c2-8fe3f6fd6d89 + 1a43bcc7-9cdc-42b7-9bec-8c0783212e0d true - Is Text Wrap Enabled - 1033 + Flag for aktivering/deaktivering af registrering af dubletter af poster under import. + 1030 - 31740bb8-b36d-4f7e-b0c2-8fe3f6fd6d89 + 81d81544-d517-4de6-b6e6-c56c32e0bd75 true - Is Text Wrap Enabled + Flag to enable or disable duplicate detection of records during import. 1033 + + + + false false iscustomizable - false + true false true - organization_istextwrapenabled + organization_isduplicatedetectionenabledforimport Boolean - 9.0.0.0 + 5.0.0.0 @@ -168816,15 +177661,22 @@ - 46202b57-32f3-44c0-a066-0d4f7020965b + 4958aec5-e780-db11-9b85-00137299e160 true No 1033 + + 364de861-4ccd-4ea3-a9d3-8a4dec102dd5 + + true + Nej + 1030 + - 46202b57-32f3-44c0-a066-0d4f7020965b + 4958aec5-e780-db11-9b85-00137299e160 true No @@ -168849,15 +177701,22 @@ - 83667be6-44db-468e-9cc6-b76454db868e + 4b58aec5-e780-db11-9b85-00137299e160 true Yes 1033 + + d05b564c-bc76-462c-bf11-3eae118f81db + + true + Ja + 1030 + - 83667be6-44db-468e-9cc6-b76454db868e + 4b58aec5-e780-db11-9b85-00137299e160 true Yes @@ -168873,7 +177732,7 @@ 0 - 43f26fc7-7ff9-415c-baa1-b23cc20a4d6e + 1aa53adc-af0e-40d2-bf51-9cc0671d4ec3 Boolean @@ -168883,44 +177742,58 @@ false canmodifyadditionalsettings - true + false - 10097 - 2025-11-06T02:47:58.2269952 + 118 + 1900-01-01T00:00:00 - ed7c6bc9-6e17-46ce-84ae-025d52cc8001 + b363cfee-2241-db11-898a-0007e9e17ebd true - Indicates whether CUA log upload to Dataverse is enabled. + Indicates whether duplicate detection of records during offline synchronization is enabled. 1033 + + 9fe6b860-854b-476f-a509-0ac99370e760 + + true + Angiver, om registrering af dubletter af poster under offlinesynkronisering er aktiveret. + 1030 + - ed7c6bc9-6e17-46ce-84ae-025d52cc8001 + b363cfee-2241-db11-898a-0007e9e17ebd true - Indicates whether CUA log upload to Dataverse is enabled. + Indicates whether duplicate detection of records during offline synchronization is enabled. 1033 - b7c8421c-139c-4987-9b9f-8a8c35e4da7c + e599f87b-2e48-4282-a28f-4e0dd21f246b true - Enable CUA log upload to Dataverse + Is Duplicate Detection Enabled For Offline Synchronization 1033 + + 170324c7-e3df-4ab1-8462-5a77207550d3 + + true + Er registrering af dubletter aktiveret for synkronisering offline? + 1030 + - b7c8421c-139c-4987-9b9f-8a8c35e4da7c + e599f87b-2e48-4282-a28f-4e0dd21f246b true - Enable CUA log upload to Dataverse + Is Duplicate Detection Enabled For Offline Synchronization 1033 @@ -168951,7 +177824,7 @@ false isrenameable - true + false false false @@ -168963,7 +177836,7 @@ false - true + false canmodifysearchsettings false @@ -168974,41 +177847,48 @@ true true - isuploadcualogtodataverseenabled - 2025-11-06T02:47:58.2269952 + isduplicatedetectionenabledforofflinesync + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - IsUploadCuaLogToDataverseEnabled + IsDuplicateDetectionEnabledForOfflineSync BooleanType - 1.9.27.0 + 5.0.0.0 false 0 - true + false - 315e90f0-678b-4e4d-97f1-886050c3cb46 + c5c8a7fc-604c-40f3-8671-f45b06f5c893 - 05aedb96-402f-4dff-86e7-54b577874b2f + 5c20ebbb-4a40-4b36-bef8-99d83e19ee4e true - Information that specifies whether a feature is enabled for the organization. + Flag to enable or disable duplicate detection of records during offline synchronization. 1033 + + a21eab84-b1e5-42da-8974-9cb9111105a3 + + true + Flag for aktivering/deaktivering af registrering af dubletter af poster under offlinesynkronisering. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 5c20ebbb-4a40-4b36-bef8-99d83e19ee4e true - Information that specifies whether a feature is enabled for the organization. + Flag to enable or disable duplicate detection of records during offline synchronization. 1033 @@ -169021,13 +177901,13 @@ false iscustomizable - false + true - true + false true - organization_featureenabled + organization_isduplicatedetectionenabledforofflinesync Boolean - 8.1.0.0 + 5.0.0.0 @@ -169042,15 +177922,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 4d58aec5-e780-db11-9b85-00137299e160 true No 1033 + + 3dbd5b23-99e3-4167-924b-66a3f3e8e389 + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 4d58aec5-e780-db11-9b85-00137299e160 true No @@ -169075,15 +177962,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 4f58aec5-e780-db11-9b85-00137299e160 true Yes 1033 + + 63943ade-ddcc-49b7-9baf-2ea131b6c687 + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 4f58aec5-e780-db11-9b85-00137299e160 true Yes @@ -169095,102 +177989,11 @@ - + 0 - - f25bb0c6-09e0-476e-806c-58022745e834 - - isuploadcualogtodataverseenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10098 - 2025-11-06T02:47:58.2429952 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - isuploadcualogtodataverseenabledname - 2025-11-06T02:47:58.2429952 - - true - canmodifyrequirementlevelsettings - None - - isuploadcualogtodataverseenabledName - - - VirtualType - - 1.9.27.0 - true - - - - 06656503-afc5-49f4-8266-d5556bef76c1 + 575c20f9-85cb-4a3a-85af-79c08aaa23e0 Boolean @@ -169202,42 +178005,56 @@ canmodifyadditionalsettings false - 219 + 115 1900-01-01T00:00:00 - ebcebca4-3fe2-48db-8a3a-27d8018fad82 + 90d8dee2-2241-db11-898a-0007e9e17ebd true - Enable or disable auditing of user access. + Indicates whether duplicate detection during online create or update is enabled. 1033 + + f73930e3-af17-40c8-b488-a918cc555b42 + + true + Angiver, om registrering af dubletter under onlineoprettelse/-opdatering er aktiveret. + 1030 + - ebcebca4-3fe2-48db-8a3a-27d8018fad82 + 90d8dee2-2241-db11-898a-0007e9e17ebd true - Enable or disable auditing of user access. + Indicates whether duplicate detection during online create or update is enabled. 1033 - e5fef054-2637-479c-b4f1-82a023df1b1f + 85c72958-7577-4ab8-a368-252ad57172bd true - Is User Access Auditing Enabled + Is Duplicate Detection Enabled for Online Create/Update 1033 + + 2ba78807-c57b-4ca4-91e5-60be917a6378 + + true + Er registrering af dubletter aktiveret for oprettelse/opdatering online? + 1030 + - e5fef054-2637-479c-b4f1-82a023df1b1f + 85c72958-7577-4ab8-a368-252ad57172bd true - Is User Access Auditing Enabled + Is Duplicate Detection Enabled for Online Create/Update 1033 @@ -169291,14 +178108,14 @@ true true - isuseraccessauditenabled + isduplicatedetectionenabledforonlinecreateupdate 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsUserAccessAuditEnabled + IsDuplicateDetectionEnabledForOnlineCreateUpdate BooleanType @@ -169309,23 +178126,30 @@ false - 274bb047-70dc-4a56-8596-dd735bb22928 + cb2f49e0-33f1-432c-925a-6a0c468ffc14 - f936b3ae-01b1-4f71-b748-352fb9cdce85 + a4be8fcf-1b7d-4c8b-8a86-adb9019d22cd true - Enable/Disable Auditing of user access + Flag to enable or disable duplicate detection during online create or update. 1033 + + 3758c08f-b7dd-4518-af52-3fa9ce396cb1 + + true + Flag for aktivering/deaktivering af registrering af dubletter under online oprettelse/opdatering. + 1030 + - f936b3ae-01b1-4f71-b748-352fb9cdce85 + a4be8fcf-1b7d-4c8b-8a86-adb9019d22cd true - Enable/Disable Auditing of user access + Flag to enable or disable duplicate detection during online create or update. 1033 @@ -169342,7 +178166,7 @@ false true - organization_isuseraccessauditenabled + organization_isduplicatedetectionenabledforonlinecreateupdate Boolean 5.0.0.0 @@ -169359,15 +178183,22 @@ - dea50c57-bcbe-4928-90dd-fe2708b9132d + 5158aec5-e780-db11-9b85-00137299e160 true No 1033 + + 1731de3d-d87b-496f-8596-d314f7fa69a2 + + true + Nej + 1030 + - dea50c57-bcbe-4928-90dd-fe2708b9132d + 5158aec5-e780-db11-9b85-00137299e160 true No @@ -169392,15 +178223,22 @@ - ace7cc18-e01c-4efd-a3b1-14f06453d729 + 5358aec5-e780-db11-9b85-00137299e160 true Yes 1033 + + a965656b-1dcc-4a9a-ba85-4ace6065e36e + + true + Ja + 1030 + - ace7cc18-e01c-4efd-a3b1-14f06453d729 + 5358aec5-e780-db11-9b85-00137299e160 true Yes @@ -169415,11 +178253,11 @@ 0 - - 80c5b38a-ec16-4058-8bed-e8ad8a7317c1 + + 64748bc2-1ffc-485a-8fee-68ff7c5cef90 - Picklist + Boolean false false false @@ -169428,42 +178266,56 @@ canmodifyadditionalsettings false - 131 - 1900-01-01T00:00:00 - 5.0.0.0 + 10247 + 2025-11-06T09:12:35.8130048 + - ec3fb506-2341-db11-898a-0007e9e17ebd + 1a96aa92-b450-4274-926c-6b6782b9f0cf true - Indicates whether loading of Microsoft Dynamics 365 in a browser window that does not have address, tool, and menu bars is enabled. + Information on whether Smart Email Address Validation is enabled. 1033 + + 6ace2096-c8c6-488c-8d5a-c1d1474a2e1a + + true + Information on whether Smart Email Address Validation is enabled. + 1030 + - ec3fb506-2341-db11-898a-0007e9e17ebd + 1a96aa92-b450-4274-926c-6b6782b9f0cf true - Indicates whether loading of Microsoft Dynamics 365 in a browser window that does not have address, tool, and menu bars is enabled. + Information on whether Smart Email Address Validation is enabled. 1033 - acc95c0d-4a55-4257-a3f7-c168a4f69496 + ee49ec86-8e93-44d4-984b-0f8237b76f46 true - ISV Integration Mode + Enable Smart Email Address Validation. 1033 + + 686b2cd4-324a-45fe-9faa-33db39382240 + + true + Enable Smart Email Address Validation. + 1030 + - acc95c0d-4a55-4257-a3f7-c168a4f69496 + ee49ec86-8e93-44d4-984b-0f8237b76f46 true - ISV Integration Mode + Enable Smart Email Address Validation. 1033 @@ -169479,7 +178331,7 @@ false iscustomizable - true + false false false @@ -169515,492 +178367,90 @@ false true true - false + true - isvintegrationcode - 1900-01-01T00:00:00 + isemailaddressvalidationenabled + 2025-11-06T09:12:35.8130048 false canmodifyrequirementlevelsettings SystemRequired - ISVIntegrationCode + IsEmailAddressValidationEnabled - PicklistType + BooleanType - 5.0.0.0 + 9.2.0.0 false 0 - - -1 + + false - f797005c-57e6-4321-a127-7e83b01de025 + 750908bb-f0ba-f011-bbd3-7c1e52365f30 - 18d79d8e-b00e-48b8-a555-77f511d37035 + 770908bb-f0ba-f011-bbd3-7c1e52365f30 true - Flag that determines whether or not MSCRM should be loaded in an browser window that does not have address, tool and menu bars. + Enable or disable Smart Email Address Validation. 1033 + + 9272c1ea-7566-4bb6-af00-1ba25e2b6335 + + true + Enable or disable Smart Email Address Validation. + 1030 + - 18d79d8e-b00e-48b8-a555-77f511d37035 + 770908bb-f0ba-f011-bbd3-7c1e52365f30 true - Flag that determines whether or not MSCRM should be loaded in an browser window that does not have address, tool and menu bars. + Enable or disable Smart Email Address Validation. 1033 - - - - - false - - false - iscustomizable - true - - false - true - organization_isvintegrationcode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 711da092-489e-408c-8534-0648ca59b2a4 - - true - None - 1033 - - - - 711da092-489e-408c-8534-0648ca59b2a4 - - true - None - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - e17c3731-d698-47f2-a138-db70a1acf772 - - true - Web - 1033 - - - - e17c3731-d698-47f2-a138-db70a1acf772 - - true - Web - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - 839e0227-2cc6-46fb-b1f1-9f139cc4d856 - - true - Outlook Workstation Client - 1033 - - - - 839e0227-2cc6-46fb-b1f1-9f139cc4d856 - - true - Outlook Workstation Client - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 1e9ac49f-1878-49be-b7bd-5545bc5f447a - - true - Web; Outlook Workstation Client - 1033 - - - - 1e9ac49f-1878-49be-b7bd-5545bc5f447a - - true - Web; Outlook Workstation Client - 1033 - - - - 3 - - - - - - - - - - - - false - true - - - - 5cf7fd20-98ff-4f9d-93aa-5d2b563790df - - true - Outlook Laptop Client - 1033 - - - - 5cf7fd20-98ff-4f9d-93aa-5d2b563790df - - true - Outlook Laptop Client - 1033 - - - - 4 - - - - - - - - - - - - false - true - - - - f6b1500b-4d5a-4486-8f51-7017675186a4 - - true - Web; Outlook Laptop Client - 1033 - - - - f6b1500b-4d5a-4486-8f51-7017675186a4 - - true - Web; Outlook Laptop Client - 1033 - - - - 5 - - - - - - - - - - - - false - true - - - - eed001c9-eccf-42d3-9e9a-3f0a5352dc01 - - true - Outlook - 1033 - - - - eed001c9-eccf-42d3-9e9a-3f0a5352dc01 - - true - Outlook - 1033 - - - - 6 - - - - - - - - - - - - false - true - - - - c0cc421d-7cb6-4c08-990c-884d2b7616c8 - - true - All - 1033 - - - - c0cc421d-7cb6-4c08-990c-884d2b7616c8 - - true - All - 1033 - - - - 7 - - - - - - - - 0 - - - - - a15b59b5-47c2-4189-9fc6-e6726d63af1d - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - true - - 10092 - 2025-11-06T02:47:58.1500032 - - - - - 7cdcd4f8-9e57-454c-94d9-647852f720bb - - true - Indicates whether Power Automate savings feature is enabled for WorkQueue. - 1033 - - - - 7cdcd4f8-9e57-454c-94d9-647852f720bb - - true - Indicates whether Power Automate savings feature is enabled for WorkQueue. - 1033 - - - - - - 17ae992b-a964-4c9f-8f56-74f7e2b0af54 - - true - Enable Power Automate savings feature for WorkQueue - 1033 - - - - 17ae992b-a964-4c9f-8f56-74f7e2b0af54 - - true - Enable Power Automate savings feature for WorkQueue - 1033 - - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - true - false - false - true - true - true - - isworkqueuesavingsenabled - 2025-11-06T02:47:58.1500032 - - true - canmodifyrequirementlevelsettings - SystemRequired - - IsWorkQueueSavingsEnabled - - - BooleanType - - 1.9.17.0 - false - 0 - - true - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - 05aedb96-402f-4dff-86e7-54b577874b2f + 760908bb-f0ba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + If Smart Email Address Validation is enabled. 1033 + + 68f9f91f-b516-4e38-9e00-02797f3985ec + + true + If Smart Email Address Validation is enabled. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 760908bb-f0ba-f011-bbd3-7c1e52365f30 true - Information that specifies whether a feature is enabled for the organization. + If Smart Email Address Validation is enabled. 1033 - - - - - false + true false iscustomizable false - true + false true - organization_featureenabled + organization_isemailaddressvalidationenabled Boolean - 8.1.0.0 + 9.2.0.0 @@ -170015,15 +178465,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + fcf51db4-300a-44e4-b6dc-ffe9f3e53d9c true No 1033 + + e07c778f-4a06-4975-8b63-d21577ae4ee3 + + true + No + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + fcf51db4-300a-44e4-b6dc-ffe9f3e53d9c true No @@ -170048,15 +178505,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 3781d390-1c2f-4867-b61d-6d99c823cf4b true Yes 1033 + + 9033ff9a-8f47-46f5-a9aa-aaa41ae523fc + + true + Yes + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 3781d390-1c2f-4867-b61d-6d99c823cf4b true Yes @@ -170072,9 +178536,9 @@ 0 - ee4d4f9a-1351-454e-88e5-c3282041f573 + 4ecf6b99-6e45-4cd5-8553-4d4ecde3002c - isworkqueuesavingsenabled + isemailaddressvalidationenabled Virtual false false @@ -170084,8 +178548,8 @@ canmodifyadditionalsettings true - 10093 - 2025-11-06T02:47:58.1670016 + 10248 + 2025-11-06T09:12:35.8300032 @@ -170145,25 +178609,25 @@ false false - isworkqueuesavingsenabledname - 2025-11-06T02:47:58.1670016 + isemailaddressvalidationenabledname + 2025-11-06T09:12:35.8300032 true canmodifyrequirementlevelsettings None - isworkqueuesavingsenabledName + isemailaddressvalidationenabledName VirtualType - 1.9.17.0 + 9.2.0.0 true - 9f5b8cab-562f-42f2-937f-02270985e267 + 3c163f3d-008b-4fb2-b72d-269078ca50a5 Boolean @@ -170173,44 +178637,58 @@ false canmodifyadditionalsettings - true + false - 461 - 2025-11-06T00:19:22.0269952 + 388 + 1900-01-01T00:00:00 - ece62e6f-b778-47ae-b416-a567a3e88946 + 6dd5770b-e9f3-443e-94b9-2e5d240bee7d true - Indicates whether Write-in Products can be added to Opportunity/Quote/Order/Invoice or not. + Allow tracking recipient activity on sent emails. 1033 + + b3ca0e0d-1208-49af-baa5-c97ee32bdd50 + + true + Tillad sporing af modtageraktivitet på sendte mails. + 1030 + - ece62e6f-b778-47ae-b416-a567a3e88946 + 6dd5770b-e9f3-443e-94b9-2e5d240bee7d true - Indicates whether Write-in Products can be added to Opportunity/Quote/Order/Invoice or not. + Allow tracking recipient activity on sent emails. 1033 - b7d41fc3-031b-4089-936d-7719e8e3db24 + 65fb9c2e-0fe3-4e27-b2ab-d99a4b698345 true - Indicates whether Write-in Products can be added to Opportunity/Quote/Order/Invoice or not + Allow tracking recipient activity on sent emails 1033 + + 4659546e-5075-4cf6-9875-f0f2215f820e + + true + Tillad sporing af modtageraktivitet på sendte mails + 1030 + - b7d41fc3-031b-4089-936d-7719e8e3db24 + 65fb9c2e-0fe3-4e27-b2ab-d99a4b698345 true - Indicates whether Write-in Products can be added to Opportunity/Quote/Order/Invoice or not + Allow tracking recipient activity on sent emails 1033 @@ -170226,7 +178704,7 @@ false iscustomizable - false + true false false @@ -170264,41 +178742,48 @@ true true - iswriteinproductsallowed - 2025-11-06T00:19:22.0269952 + isemailmonitoringallowed + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsWriteInProductsAllowed + IsEmailMonitoringAllowed BooleanType - 9.1.0.0 + 8.2.0.0 false 0 true - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 154e14af-b746-4721-abb7-bcc45e7898b8 - 05aedb96-402f-4dff-86e7-54b577874b2f + 92fcfcb4-4b5b-4e08-b4b3-3cb157b6f357 true - Information that specifies whether a feature is enabled for the organization. + Allow monitoring recipient activity on sent emails. 1033 + + b33d3c8c-b136-4d3a-995e-d076e5f50963 + + true + Tillad overvågning af modtageraktivitet på sendte mails. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + 92fcfcb4-4b5b-4e08-b4b3-3cb157b6f357 true - Information that specifies whether a feature is enabled for the organization. + Allow monitoring recipient activity on sent emails. 1033 @@ -170311,13 +178796,13 @@ false iscustomizable - false + true - true + false true - organization_featureenabled + organization_isemailmonitoringallowed Boolean - 8.1.0.0 + 8.2.0.0 @@ -170332,15 +178817,22 @@ - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 8b1233a3-6281-4b0b-a2f0-3310c7c1ff02 true No 1033 + + 22be1f1f-01a6-4eb0-98fb-6540790a8843 + + true + Nej + 1030 + - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + 8b1233a3-6281-4b0b-a2f0-3310c7c1ff02 true No @@ -170365,15 +178857,22 @@ - f35414f9-6316-4617-82ea-dfb3602119e3 + 2de19c17-0413-40fe-a549-bea5709294e1 true Yes 1033 + + 97d16bc2-b1a8-4443-9698-094574e26fa9 + + true + Ja + 1030 + - f35414f9-6316-4617-82ea-dfb3602119e3 + 2de19c17-0413-40fe-a549-bea5709294e1 true Yes @@ -170388,11 +178887,11 @@ 0 - - b5978001-5a12-4c3b-874b-5a1022398257 + + 90350bb9-b458-4bfe-92a8-6b237efa374c - String + Boolean false false false @@ -170401,42 +178900,56 @@ canmodifyadditionalsettings false - 371 + 356 1900-01-01T00:00:00 - 3a2d141d-80e6-4570-a88b-1586d984c061 + 8e405a47-8063-49a3-9351-a204e89fbb35 true - Type the prefix to use for all knowledge articles in Microsoft Dynamics 365. + Enable Email Server Profile content filtering 1033 + + a9ad5e26-61b7-4ccc-bda4-f61f063f130d + + true + Aktivér Mailserverprofil-indholdsfiltrering + 1030 + - 3a2d141d-80e6-4570-a88b-1586d984c061 + 8e405a47-8063-49a3-9351-a204e89fbb35 true - Type the prefix to use for all knowledge articles in Microsoft Dynamics 365. + Enable Email Server Profile content filtering 1033 - 575a68ea-a5d6-4c3e-afc7-d5eef471c6fa + 13d262cb-1110-40d4-b41a-a973c2068d26 true - Knowledge Article Prefix + Is Email Server Profile Content Filtering Enabled 1033 + + 8716160c-0259-4996-939a-a8c2fd626721 + + true + Er Mailserverprofil-indholdsfiltrering aktiveret + 1030 + - 575a68ea-a5d6-4c3e-afc7-d5eef471c6fa + 13d262cb-1110-40d4-b41a-a973c2068d26 true - Knowledge Article Prefix + Is Email Server Profile Content Filtering Enabled 1033 @@ -170452,7 +178965,7 @@ false iscustomizable - true + false false false @@ -170490,39 +179003,156 @@ true true - kaprefix + isemailserverprofilecontentfilteringenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - KaPrefix + IsEmailServerProfileContentFilteringEnabled - StringType + BooleanType - 8.0.0.0 + 6.1.0.0 false 0 - Text - Auto - 20 - - - Text - + false + + 493917fd-e66c-4cb5-b7a4-5145aa3d6313 + + + + + b6aa630b-afa5-48f9-95f1-e1190020b6db + + true + Is EmailServerProfile Content Filtering Enabled + 1033 + + + 63bd0446-3ec5-4246-833c-a68f6b2ad1b1 + + true + Er Mailserverprofil-indholdsfiltrering aktiveret + 1030 + + + + b6aa630b-afa5-48f9-95f1-e1190020b6db + + true + Is EmailServerProfile Content Filtering Enabled + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + organization_isemailserverprofilecontentfilteringenabled + Boolean + 6.1.0.0 + + + + + + + + + + false + true + + + + 5cc99519-4a92-49d4-ad86-81112a142cfd + + true + No + 1033 + + + 8e6176a1-5abe-4bde-a26f-6ab6b4e3f086 + + true + Nej + 1030 + + + + 5cc99519-4a92-49d4-ad86-81112a142cfd + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 64befae9-10e7-4b50-a48b-f00e55dff2ca + + true + Yes + 1033 + + + 67532baa-e7fe-4047-b7a5-2a415f209a0d + + true + Ja + 1030 + + + + 64befae9-10e7-4b50-a48b-f00e55dff2ca + + true + Yes + 1033 + + + + 1 + + + - false 0 - 40 - - 0e789e56-89ff-4e0a-823a-a955b536736f + + 3320cb3c-ae1f-4fc0-b4b2-e87b1497049e - String + Boolean false false false @@ -170531,42 +179161,56 @@ canmodifyadditionalsettings false - 19 + 398 1900-01-01T00:00:00 - a097ba00-2341-db11-898a-0007e9e17ebd + d1758b3f-b948-4a76-8599-71daf8ee13de true - Prefix to use for all articles in Microsoft Dynamics 365. + Indicates whether appmodule is enabled for all roles 1033 + + de0e6a84-335b-4a98-8893-31eda3e0c33b + + true + Angiver, om appmodulet er aktiveret for alle roller + 1030 + - a097ba00-2341-db11-898a-0007e9e17ebd + d1758b3f-b948-4a76-8599-71daf8ee13de true - Prefix to use for all articles in Microsoft Dynamics 365. + Indicates whether appmodule is enabled for all roles 1033 - 147353bb-94f0-4bff-ad35-a6569c7b0ea3 + af6befff-1440-45d3-a6d4-b906a73a275a true - Article Prefix + option set values for isenabledforallroles 1033 + + cfc41900-12f8-48bf-bf6c-20a230209faf + + true + værdier til grupperet indstilling for isenabledforallroles + 1030 + - 147353bb-94f0-4bff-ad35-a6569c7b0ea3 + af6befff-1440-45d3-a6d4-b906a73a275a true - Article Prefix + option set values for isenabledforallroles 1033 @@ -170620,39 +179264,156 @@ true true - kbprefix + isenabledforallroles 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - KbPrefix + IsEnabledForAllRoles - StringType + BooleanType - 5.0.0.0 + 8.2.0.0 false 0 - Text - Auto - 20 - - - Text - + true + + cd7a5269-5b84-41ca-af39-ac0ef4e9f1d5 + + + + + a60120ec-a65f-4c0f-8050-2a27455f0454 + + true + Allows to enable default app. + 1033 + + + 57c95dcd-083f-43c1-9221-c0d270e65fb1 + + true + Tillader, at standardapp aktiveres. + 1030 + + + + a60120ec-a65f-4c0f-8050-2a27455f0454 + + true + Allows to enable default app. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_isenabledforallroles + Boolean + 8.2.0.0 + + + + + + + + + + false + true + + + + de4920ae-7948-457e-8253-3b72396e4975 + + true + No + 1033 + + + 868269b1-b21b-4c31-bab6-f5ab904ea8ce + + true + Nej + 1030 + + + + de4920ae-7948-457e-8253-3b72396e4975 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 57f8e716-90b0-4e59-ae48-1cf89aa3c980 + + true + Yes + 1033 + + + ac261610-1c2e-415b-90db-d74fdaeceb89 + + true + Ja + 1030 + + + + 57f8e716-90b0-4e59-ae48-1cf89aa3c980 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 40 - - b16881ba-3893-4a45-96e0-4f94998d597c + + a7082fee-9976-4545-961d-d67cd6c2db7e - String + Boolean false false false @@ -170661,42 +179422,56 @@ canmodifyadditionalsettings false - 279 - 1900-01-01T00:00:00 + 423 + 2025-11-06T00:19:21.9330048 - 9ff5cef5-5f4c-4893-b727-717c94fde1f0 + a21a88e1-d4d8-4cc2-bce2-be1ef3210874 true - XML string containing the Knowledge Management settings that are applied in Knowledge Management Wizard. + Indicates whether the organization's files are being stored in Azure. 1033 + + 6bbc53d2-6ebd-4fbf-8af4-f0b6b82a37e9 + + true + Angiver, om organisationens filer lagres i Azure. + 1030 + - 9ff5cef5-5f4c-4893-b727-717c94fde1f0 + a21a88e1-d4d8-4cc2-bce2-be1ef3210874 true - XML string containing the Knowledge Management settings that are applied in Knowledge Management Wizard. + Indicates whether the organization's files are being stored in Azure. 1033 - c1dda368-cddd-4f49-b297-1bc439a3e04b + 0d434f9e-8f0a-43f3-93c8-eb2915176d7b true - Knowledge Management Settings + Enable external file storage 1033 + + 9dc5399d-c111-46cd-b4ca-305fd6ff9a72 + + true + Aktivér eksternt fillager + 1030 + - c1dda368-cddd-4f49-b297-1bc439a3e04b + 0d434f9e-8f0a-43f3-93c8-eb2915176d7b true - Knowledge Management Settings + Enable external file storage 1033 @@ -170712,7 +179487,7 @@ false iscustomizable - true + false false false @@ -170750,163 +179525,156 @@ true true - kmsettings - 1900-01-01T00:00:00 + isexternalfilestorageenabled + 2025-11-06T00:19:21.9330048 false canmodifyrequirementlevelsettings - None + SystemRequired - KMSettings + IsExternalFileStorageEnabled - StringType + BooleanType - 7.1.0.0 + 9.0.0.0 false 0 - Text - Auto - 1073741823 - - - Text - - - false - 0 - -1 - - - edf31550-c2f8-4a5e-903b-30d336dd2712 - - - Integer - false - false - false - - false - canmodifyadditionalsettings - false - - 37 - 1900-01-01T00:00:00 - - - - - 6ee9af0c-2341-db11-898a-0007e9e17ebd - - true - Preferred language for the organization. - 1033 - - - - 6ee9af0c-2341-db11-898a-0007e9e17ebd - - true - Preferred language for the organization. - 1033 - - - - - - 4e3a4fad-ed5f-4028-a200-bcd447b6015b + false + + 93daf809-c842-43b4-9581-9ade177647b0 + + + + + d686c30f-74e5-4681-a173-dedeb0a648b5 + + true + Information that specifies whether organization's files are being stored in Azure. + 1033 + + + 5dd9b673-be61-4e53-b94a-49bd51cb3c60 + + true + Oplysninger, der angiver, om organisationens filer lagres i Azure. + 1030 + + + + d686c30f-74e5-4681-a173-dedeb0a648b5 - true - Language - 1033 - - - - 4e3a4fad-ed5f-4028-a200-bcd447b6015b + true + Information that specifies whether organization's files are being stored in Azure. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + organization_isexternalfilestorageenabled + Boolean + 9.0.0.0 + + - true - Language - 1033 - - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - false - true - - languagecode - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - LanguageCode - - - IntegerType - - 5.0.0.0 - false - 0 - - Locale - 2147483647 - 0 + + + + + + + false + true + + + + 496f0963-cec3-47b0-9261-28870c494669 + + true + No + 1033 + + + 405a2498-cc23-42f4-9fb0-51d151645e33 + + true + Nej + 1030 + + + + 496f0963-cec3-47b0-9261-28870c494669 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 977c08d1-b9c1-4a80-817b-6aa37fcef389 + + true + Yes + 1033 + + + 8d9c13c1-b420-4170-b275-f70cd307c769 + + true + Ja + 1030 + + + + 977c08d1-b9c1-4a80-817b-6aa37fcef389 + + true + Yes + 1033 + + + + 1 + + + 0 - - 258a8212-4065-4957-b7df-9a9d0669a48a + + e055006c-91b0-4f74-b0ec-e5ef60b2a098 - languagecode - Virtual + + Boolean false false false @@ -170915,30 +179683,72 @@ canmodifyadditionalsettings false - 47 + 310 1900-01-01T00:00:00 - - + + + 76e2cc31-3c3a-4028-b9e1-5a44b4aa6796 + + true + Select whether data can be synchronized with an external search index. + 1033 + + + 512a066f-cb16-4661-9088-352efb614395 + + true + Vælg, om data kan synkroniseres med et eksternt søgeindeks. + 1030 + + + + 76e2cc31-3c3a-4028-b9e1-5a44b4aa6796 + + true + Select whether data can be synchronized with an external search index. + 1033 + - - + + + d2b225fb-ce5a-4f13-92be-800ae24a4bcf + + true + Enable external search data syncing + 1033 + + + f5cbdc8f-a1f1-4c89-9c27-ab72b1cce261 + + true + Aktiver synkronisering af eksterne søgedata + 1030 + + + + d2b225fb-ce5a-4f13-92be-800ae24a4bcf + + true + Enable external search data syncing + 1033 + organization - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -170969,35 +179779,163 @@ canmodifysearchsettings false - false + true false false true - false - false + true + true - languagecodename + isexternalsearchindexenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - LanguageCodeName + IsExternalSearchIndexEnabled - VirtualType + BooleanType - 5.0.0.0 - true - + 8.0.0.0 + false + 0 + false + + a6540944-c0e4-4cf5-9e5d-b1d57450004f + + + + + b5de20b5-3b5f-483d-b118-e909059e7502 + + true + Information that specifies whether data are syncing to an external search index. + 1033 + + + 8ba21b74-320d-4b85-a288-a182af5b5ff8 + + true + Oplysninger, der angiver, om data synkroniseres til et eksternt søgeindeks. + 1030 + + + + b5de20b5-3b5f-483d-b118-e909059e7502 + + true + Information that specifies whether data are syncing to an external search index. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_isexternalsearchindexenabled + Boolean + 8.0.0.0 + + + + + + + + + + false + true + + + + f4e30cef-b701-4cd3-91e0-7293c2a5eaba + + true + No + 1033 + + + ab59ba82-5581-4469-87b2-62961d5f475e + + true + Nej + 1030 + + + + f4e30cef-b701-4cd3-91e0-7293c2a5eaba + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 0adbd534-eb37-4fe2-80d1-31eb90e7f9fc + + true + Yes + 1033 + + + 520c6a74-629f-4aa5-a72c-6240ef347dd1 + + true + Ja + 1030 + + + + 0adbd534-eb37-4fe2-80d1-31eb90e7f9fc + + true + Yes + 1033 + + + + 1 + + + + + 0 - - 09368252-ebbb-43dc-9213-686a8d51346e + + e6bc78a1-a108-4371-9958-671c510fb587 - Picklist + Boolean false false false @@ -171006,42 +179944,56 @@ canmodifyadditionalsettings false - 10237 - 2025-11-06T07:35:38.8130048 + 108 + 1900-01-01T00:00:00 - e2c4e7f0-e1b3-409d-9977-9ccbe328a979 + cee0eed0-2241-db11-898a-0007e9e17ebd true - Show legacy app for admins + Indicates whether the fiscal period is displayed as the month number. 1033 + + 02eebf5a-6c31-4e9b-8c18-f217fbea2383 + + true + Angiver, om regnskabsperioden vises som månedsnummer. + 1030 + - e2c4e7f0-e1b3-409d-9977-9ccbe328a979 + cee0eed0-2241-db11-898a-0007e9e17ebd true - Show legacy app for admins + Indicates whether the fiscal period is displayed as the month number. 1033 - 98b6691b-0894-456a-9c66-01aa4477d55e + 27c1ed6a-6e2b-4dde-b3e6-52a297a22d6f true - Show legacy app for admins + Is Fiscal Period Monthly 1033 + + d3e7e9be-efe4-48fd-9c9e-9f1ab538ae49 + + true + Er regnskabsperioden månedlig? + 1030 + - 98b6691b-0894-456a-9c66-01aa4477d55e + 27c1ed6a-6e2b-4dde-b3e6-52a297a22d6f true - Show legacy app for admins + Is Fiscal Period Monthly 1033 @@ -171051,18 +180003,18 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false - false + true canmodifyglobalfiltersettings false @@ -171079,7 +180031,7 @@ false false - false + true canmodifyissortablesettings false @@ -171089,285 +180041,162 @@ false true - true - true + false + false true true true - legacyapptoggle - 2025-11-06T07:35:38.8130048 + isfiscalperiodmonthbased + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - LegacyAppToggle + IsFiscalPeriodMonthBased - PicklistType + BooleanType - 9.1.0.0 + 5.0.0.0 false 0 - 0 + false - 84415f2f-e3ba-f011-bbd3-7c1e52365f30 + adc43b8a-3ab8-45bd-bea4-548646332bfc - 86415f2f-e3ba-f011-bbd3-7c1e52365f30 + 562b3dfe-f742-4483-87a8-f354c8ab84d2 true - Show legacy app for admins + Indicates whether the fiscal period is displayed as the month number. 1033 - - - 86415f2f-e3ba-f011-bbd3-7c1e52365f30 - - true - Show legacy app for admins - 1033 - - - - - 85415f2f-e3ba-f011-bbd3-7c1e52365f30 + f4f4647d-7fe7-43be-bcc2-0c6f89622a47 true - Show legacy app for admins - 1033 + Angiver, om regnskabsperioden vises som månedsnummer. + 1030 - 85415f2f-e3ba-f011-bbd3-7c1e52365f30 + 562b3dfe-f742-4483-87a8-f354c8ab84d2 true - Show legacy app for admins + Indicates whether the fiscal period is displayed as the month number. 1033 + + + + - true + false false iscustomizable - false + true false true - organization_legacyapptoggle - Picklist - 9.1.0.0 - - - - - - - - - - - false - true - - - - 57addaf8-6ffb-47e9-88f7-a482ac72dcf7 - - true - Auto - 1033 - - - - 57addaf8-6ffb-47e9-88f7-a482ac72dcf7 + organization_isfiscalperiodmonthbased + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 5958aec5-e780-db11-9b85-00137299e160 - true - Auto - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 5edf82b7-f0b2-4df7-af0c-098b6f8cc848 - - true - On - 1033 - - - - 5edf82b7-f0b2-4df7-af0c-098b6f8cc848 + true + No + 1033 + + + 2063ee96-79a3-4707-9642-eca650885280 - true - On - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - 26df991f-2281-444c-b81a-7608eed63aa9 - - true - Off - 1033 - - - - 26df991f-2281-444c-b81a-7608eed63aa9 + true + Nej + 1030 + + + + 5958aec5-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 5b58aec5-e780-db11-9b85-00137299e160 - true - Off - 1033 - - - - 2 - - - - + true + Yes + 1033 + + + 0577b9f5-8b11-4ec0-8876-41ba10344fce + + true + Ja + 1030 + + + + 5b58aec5-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + - - + 0 - - - - - d2527cc4-8b0e-4962-9806-73058d5244d9 - - legacyapptoggle - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10238 - 2025-11-06T07:35:38.8300032 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - legacyapptogglename - 2025-11-06T07:35:38.8300032 - - true - canmodifyrequirementlevelsettings - None - - legacyapptoggleName - - - VirtualType - - 9.1.0.0 - true - - - - 433af445-c35c-4041-acb9-136597391ee4 + + 43fb4039-8a37-45d1-8d44-111458ca6f66 - Integer + Boolean false false false @@ -171376,42 +180205,56 @@ canmodifyadditionalsettings false - 109 + 383 1900-01-01T00:00:00 - de897eab-26e7-4149-8f1d-38d4cfc37d59 + 8150188d-3e0b-49eb-ba8a-a1ad878f877a true - Unique identifier of the locale of the organization. + Select whether folders should be automatically created on SharePoint. 1033 + + f9d75721-5c01-4382-a1d7-e871276b95c4 + + true + Vælg, om mapper automatisk skal oprettes på SharePoint. + 1030 + - de897eab-26e7-4149-8f1d-38d4cfc37d59 + 8150188d-3e0b-49eb-ba8a-a1ad878f877a true - Unique identifier of the locale of the organization. + Select whether folders should be automatically created on SharePoint. 1033 - d6de6b3c-0889-4d76-ae9b-677a67b193e9 + 2d3eac21-e6ce-4f66-a52f-53d05763061d true - Locale + Automatically create folders 1033 + + 4e22f5da-d2ed-4ff4-aa28-6ac0c2ddf9e7 + + true + Opret mapper automatisk + 1030 + - d6de6b3c-0889-4d76-ae9b-677a67b193e9 + 2d3eac21-e6ce-4f66-a52f-53d05763061d true - Locale + Automatically create folders 1033 @@ -171427,7 +180270,7 @@ false iscustomizable - true + false false false @@ -171465,33 +180308,156 @@ true true - localeid + isfolderautocreatedonsp 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - LocaleId + IsFolderAutoCreatedonSP - IntegerType + BooleanType - 5.0.0.0 + 8.1.0.0 false 0 - Locale - 2147483647 - 0 + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - 34ccc1d4-f5bb-41a9-abbc-63cb5f522ca0 + + 22625c31-9100-4493-a3b8-73c8587f2ae8 - Integer + Boolean false false false @@ -171500,42 +180466,56 @@ canmodifyadditionalsettings false - 102 + 298 1900-01-01T00:00:00 - b92c1a70-649e-4cee-bb7f-a6a4ea232acc + 8a5e8aad-621f-4cbd-86b9-bfca1d612142 true - Information that specifies how the Long Date format is displayed in Microsoft Dynamics 365. + Enable or disable folder based tracking for Server Side Sync. 1033 + + 4d2b68ca-ea1c-4e85-9287-39cb82a03347 + + true + Aktivér eller deaktiver mappebaseret sporing til synkronisering på serversiden. + 1030 + - b92c1a70-649e-4cee-bb7f-a6a4ea232acc + 8a5e8aad-621f-4cbd-86b9-bfca1d612142 true - Information that specifies how the Long Date format is displayed in Microsoft Dynamics 365. + Enable or disable folder based tracking for Server Side Sync. 1033 - ccac388c-972c-423b-9392-5f57d7d50262 + 318dadcb-b99f-42eb-aefe-99e27922abab true - Long Date Format + Is Folder Based Tracking Enabled 1033 + + 85bad012-0a7c-4e28-8c64-2265974d82ab + + true + Er mappebaseret sporing aktiveret + 1030 + - ccac388c-972c-423b-9392-5f57d7d50262 + 318dadcb-b99f-42eb-aefe-99e27922abab true - Long Date Format + Is Folder Based Tracking Enabled 1033 @@ -171589,33 +180569,156 @@ true true - longdateformatcode + isfolderbasedtrackingenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - LongDateFormatCode + IsFolderBasedTrackingEnabled - IntegerType + BooleanType - 5.0.0.0 + 7.1.0.0 false 0 - None - 2147483647 - -2147483648 + false + + e1a8138e-b1a0-41e4-8418-4ecccbd1c5d3 + + + + + 224ba85d-3fc9-4b94-8149-5bc71c6cf99e + + true + Is folder based tracking enabled + 1033 + + + 33df773c-bc77-4fca-a1fc-651f1fc2c584 + + true + Er mappebaseret sporing aktiveret + 1030 + + + + 224ba85d-3fc9-4b94-8149-5bc71c6cf99e + + true + Is folder based tracking enabled + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + organization_isfolderbasedtrackingenabled + Boolean + 7.1.0.0 + + + + + + + + + + false + true + + + + d17150c2-ab37-40eb-8b04-6b03587b8b3b + + true + No + 1033 + + + 381c0c24-1723-4dcf-b352-cc6fe4b0eb58 + + true + Nej + 1030 + + + + d17150c2-ab37-40eb-8b04-6b03587b8b3b + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + b71cb4b3-c60d-43c8-ba86-0373c63ae45d + + true + Yes + 1033 + + + 8c78f5b2-3832-4f4f-9eb7-fec68ef8bb7e + + true + Ja + 1030 + + + + b71cb4b3-c60d-43c8-ba86-0373c63ae45d + + true + Yes + 1033 + + + + 1 + + + 0 - - 2ad9b7f2-3e1f-4eb0-8f57-5bb138b8efd1 + + 62b015d9-68c3-43d4-adaf-4483199e97c1 - Integer + Boolean false false false @@ -171624,42 +180727,56 @@ canmodifyadditionalsettings false - 10168 - 2025-11-06T06:05:19.7369984 + 283 + 1900-01-01T00:00:00 - ea793c46-e13d-46c3-a11c-9f8be30ed139 + 06b1239c-757e-428a-b35c-a689252acc06 true - Minimum number of characters that should be entered in the lookup control before resolving for suggestions + Indicates whether full-text search for Quick Find entities should be enabled for the organization. 1033 + + 168ba910-e719-43db-b222-98a62e34a886 + + true + Angiver, om den fuld tekstsøgning for objekter i hurtig søgning skal aktiveres for organisationen. + 1030 + - ea793c46-e13d-46c3-a11c-9f8be30ed139 + 06b1239c-757e-428a-b35c-a689252acc06 true - Minimum number of characters that should be entered in the lookup control before resolving for suggestions + Indicates whether full-text search for Quick Find entities should be enabled for the organization. 1033 - 8c775a0a-be22-46c6-b1e5-bec6a811325b + 090ae247-371d-4e3c-b339-08792d5a158d true - Minimum number of characters before resolving suggestions in lookup + Enable Full-text search for Quick Find 1033 + + fa05c01a-aea9-4ff1-a72b-e2ecd477c609 + + true + Aktivér fuld tekstsøgning for hurtig søgning + 1030 + - 8c775a0a-be22-46c6-b1e5-bec6a811325b + 090ae247-371d-4e3c-b339-08792d5a158d true - Minimum number of characters before resolving suggestions in lookup + Enable Full-text search for Quick Find 1033 @@ -171669,13 +180786,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -171704,7 +180821,7 @@ false canmodifysearchsettings - true + false true false @@ -171713,77 +180830,214 @@ true true - lookupcharactercountbeforeresolve - 2025-11-06T06:05:19.7369984 + isfulltextsearchenabled + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - LookupCharacterCountBeforeResolve + IsFullTextSearchEnabled - IntegerType + BooleanType - 9.1.0.0 + 7.1.0.0 false 0 - - None - 2147483647 - 0 - + + true + + 1f1eba0b-e74c-4034-8cc1-55074466ab13 + + + + + 62d8149d-2bc2-4d64-bd11-a10f9b7fb808 + + true + Information that specifies whether full-text search is enabled for the organization. + 1033 + + + 07215ef3-ade3-486f-bf32-cb0fdcb25b51 + + true + Oplysninger, der angiver, om der er aktiveret fuld tekstsøgning for organisationen. + 1030 + + + + 62d8149d-2bc2-4d64-bd11-a10f9b7fb808 + + true + Information that specifies whether full-text search is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_isfulltextsearchenabled + Boolean + 7.1.0.0 + + + + + + + + + + false + true + + + + d162f8f5-e746-4836-9e33-6ec838c3d3fb + + true + No + 1033 + + + 39ebf160-b20a-4016-a700-7819c2b3ce74 + + true + Nej + 1030 + + + + d162f8f5-e746-4836-9e33-6ec838c3d3fb + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + c1a383f0-262f-41fd-994e-20bbe3663a6d + + true + Yes + 1033 + + + 5703f839-d88b-4456-b3b3-0a34b63305ae + + true + Ja + 1030 + + + + c1a383f0-262f-41fd-994e-20bbe3663a6d + + true + Yes + 1033 + + + + 1 + + + + 0 - - 7169d3e6-2317-4838-b6b5-412af660f1a4 + + 8284885b-5cfb-4677-b5c4-dee59a98533f - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 10169 - 2025-11-06T06:05:19.7830016 + 462 + 2025-11-06T00:19:22.6829952 - 88208b69-685d-49e9-8456-5dd07c7afd16 + d9971186-57cd-4ada-8ff3-5eb5ea322a62 true - Minimum delay (in milliseconds) between consecutive inputs in a lookup control that will trigger a search for suggestions + Indicates whether geospatial capabilities leveraging Azure Maps are enabled. 1033 + + 4ee35209-0354-4b55-97c7-b4cbede47aae + + true + Angiver, om geospatiale funktioner, der bruger Azure Maps, er aktiverede. + 1030 + - 88208b69-685d-49e9-8456-5dd07c7afd16 + d9971186-57cd-4ada-8ff3-5eb5ea322a62 true - Minimum delay (in milliseconds) between consecutive inputs in a lookup control that will trigger a search for suggestions + Indicates whether geospatial capabilities leveraging Azure Maps are enabled. 1033 - ab328d5c-042c-46e4-9851-147ba751945c + 29a278a7-dc73-43dd-8352-8691a49d28fd true - Minimum delay (in milliseconds) for debouncing lookup control input + Enable geospatial Azure Maps integration. 1033 + + 714a192d-29d6-4afb-bd7f-1352285b4063 + + true + Aktivér geospatial Azure Maps-integration. + 1030 + - ab328d5c-042c-46e4-9851-147ba751945c + 29a278a7-dc73-43dd-8352-8691a49d28fd true - Minimum delay (in milliseconds) for debouncing lookup control input + Enable geospatial Azure Maps integration. 1033 @@ -171793,7 +181047,7 @@ true canmodifyauditsettings - false + true false @@ -171828,7 +181082,7 @@ false canmodifysearchsettings - true + false true false @@ -171837,33 +181091,156 @@ true true - lookupresolvedelayms - 2025-11-06T06:05:19.7830016 + isgeospatialazuremapsintegrationenabled + 2025-11-06T00:19:22.6829952 false canmodifyrequirementlevelsettings None - LookupResolveDelayMS + IsGeospatialAzureMapsIntegrationEnabled - IntegerType + BooleanType 9.1.0.0 false 0 - - None - 2147483647 - 250 - + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - - 4b4d2c37-1d46-4d8a-bde6-c7037452cdac + + 48af566e-62f7-4355-82c8-c85f24508d69 - Integer + Boolean false false false @@ -171872,42 +181249,56 @@ canmodifyadditionalsettings false - 306 + 261 1900-01-01T00:00:00 - 06a6b43b-23cb-4346-b467-16aab425c3af + 46338f53-fbaa-42e5-8f07-53f741fb7251 true - Lower Threshold For Mailbox Intermittent Issue. + Enable Hierarchical Security Model 1033 + + 127c6690-9854-40c1-b1ee-8acbb58e6611 + + true + Aktivér hierarkisk sikkerhedsmodel + 1030 + - 06a6b43b-23cb-4346-b467-16aab425c3af + 46338f53-fbaa-42e5-8f07-53f741fb7251 true - Lower Threshold For Mailbox Intermittent Issue. + Enable Hierarchical Security Model 1033 - ecd90c0d-2716-452f-88e2-a25070f3b9c4 + 4aecf7ee-24de-4d36-9842-7782f541f1ca true - Lower Threshold For Mailbox Intermittent Issue + Enable Hierarchical Security Model 1033 + + 9ec18351-abce-4aa0-9ea7-edc13110aced + + true + Aktivér hierarkisk sikkerhedsmodel + 1030 + - ecd90c0d-2716-452f-88e2-a25070f3b9c4 + 4aecf7ee-24de-4d36-9842-7782f541f1ca true - Lower Threshold For Mailbox Intermittent Issue + Enable Hierarchical Security Model 1033 @@ -171961,77 +181352,200 @@ true true - mailboxintermittentissueminrange + ishierarchicalsecuritymodelenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - MailboxIntermittentIssueMinRange + IsHierarchicalSecurityModelEnabled - IntegerType + BooleanType - 7.1.0.0 + 7.0.0.0 false 0 - None - 2147483647 - -2147483648 + true + + 29cac084-395c-431c-b054-372173173e4b + + + + + 01019452-b08b-4d58-b86c-a88d03d3cec6 + + true + Is hierarchical security model enabled + 1033 + + + a6858b07-ba55-4920-881e-fccb40518a2d + + true + Er hierarkisk sikkerhedsmodel aktiveret + 1030 + + + + 01019452-b08b-4d58-b86c-a88d03d3cec6 + + true + Is hierarchical security model enabled + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + organization_hierarchicalsecuritymodelenabled + Boolean + 7.0.0.0 + + + + + + + + + + false + true + + + + 9d38a607-8e0d-42eb-87ff-ee16aba6f778 + + true + No + 1033 + + + 97ba5b4f-b9a5-477f-998e-c9745185268a + + true + Nej + 1030 + + + + 9d38a607-8e0d-42eb-87ff-ee16aba6f778 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 4d417a54-29ee-4d6e-bedf-2fefd43941f6 + + true + Yes + 1033 + + + a40a500c-0117-4f5b-bf10-80912dd46f8d + + true + Ja + 1030 + + + + 4d417a54-29ee-4d6e-bedf-2fefd43941f6 + + true + Yes + 1033 + + + + 1 + + + 0 - - d0f82c23-c7d6-400c-8c1d-6b47de1aae1d + + a697a485-eb5d-4636-9a46-28a3b4923d13 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 307 - 1900-01-01T00:00:00 + 10107 + 2025-11-06T03:13:53.5030016 - d0151150-9ac6-4a26-a9db-0a76fed9c670 + 955e19ab-ab04-4e39-9408-aa9f01bde8aa true - Lower Threshold For Mailbox Permanent Issue. + Indicates whether data collection for ideas in canvas PowerApps has been enabled. 1033 - d0151150-9ac6-4a26-a9db-0a76fed9c670 + 955e19ab-ab04-4e39-9408-aa9f01bde8aa true - Lower Threshold For Mailbox Permanent Issue. + Indicates whether data collection for ideas in canvas PowerApps has been enabled. 1033 - 77c920b4-4fbd-4c24-9900-c940ad26fb4b + 1e9358d0-adf1-45e7-b3dd-fe9693361268 true - Lower Threshold For Mailbox Permanent Issue. + Enable Ideas data collection. 1033 - 77c920b4-4fbd-4c24-9900-c940ad26fb4b + 1e9358d0-adf1-45e7-b3dd-fe9693361268 true - Lower Threshold For Mailbox Permanent Issue. + Enable Ideas data collection. 1033 @@ -172047,7 +181561,7 @@ false iscustomizable - true + false false false @@ -172085,79 +181599,174 @@ true true - mailboxpermanentissueminrange - 1900-01-01T00:00:00 + isideasdatacollectionenabled + 2025-11-06T03:13:53.5030016 false canmodifyrequirementlevelsettings SystemRequired - MailboxPermanentIssueMinRange + IsIdeasDataCollectionEnabled - IntegerType + BooleanType - 7.1.0.0 + 9.1.0.0 false 0 - - None - 2147483647 - -2147483648 - + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - - e1a83407-9a82-4783-959e-11192fb404b3 + + 9d455c24-5992-431e-97af-90999cc40250 - - Integer + isideasdatacollectionenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 421 - 2025-11-06T00:19:19.9469952 + 10108 + 2025-11-06T03:13:53.5330048 - - - e15439f2-b816-4bca-acb6-d2acb2971eee - - true - Maximum number of actionsteps allowed in a BPF - 1033 - - - - e15439f2-b816-4bca-acb6-d2acb2971eee - - true - Maximum number of actionsteps allowed in a BPF - 1033 - + + - - - c77df05d-b6a6-4d92-9d3f-ac8cb6da2684 - - true - Maximum number of actionsteps allowed in a BPF - 1033 - - - - c77df05d-b6a6-4d92-9d3f-ac8cb6da2684 - - true - Maximum number of actionsteps allowed in a BPF - 1033 - + + organization @@ -172165,11 +181774,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -172180,13 +181789,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -172198,88 +181807,97 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - maxactionstepsinbpf - 2025-11-06T00:19:19.9469952 + isideasdatacollectionenabledname + 2025-11-06T03:13:53.5330048 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - MaxActionStepsInBPF + isideasdatacollectionenabledName - IntegerType + VirtualType - 9.0.0.0 - false - 0 - - None - 100 - 0 - - 0 + 9.1.0.0 + true + + - - a20dee8f-2b81-4faa-afa2-61d21403ef12 + + 20283753-e96c-4033-8a17-28d3c5493917 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 10033 - 2025-11-06T01:32:07.7129984 + 430 + 2025-11-06T00:19:19.9000064 - b8ee1633-6801-4878-84a9-b6961a865544 + 53ba20ae-5fcb-4a33-876d-a212005b797d true - Maximum Allowed Pending Rollup Job Count + Give Consent to use LUIS in Dynamics 365 Bot 1033 + + 6dfe1770-1d5c-46a9-8588-6bbdee53437a + + true + Giv samtykke til at bruge LUIS i Dynamics 365-robot + 1030 + - b8ee1633-6801-4878-84a9-b6961a865544 + 53ba20ae-5fcb-4a33-876d-a212005b797d true - Maximum Allowed Pending Rollup Job Count + Give Consent to use LUIS in Dynamics 365 Bot 1033 - 4f1da521-7ab8-4176-86e7-cb0d1470bc89 + 549dcaf1-377a-43da-91a6-9643a7bfaea5 true - MaxAllowedPendingRollupJobCount + LUIS Consent for Dynamics 365 Bot 1033 + + e12cc613-4da6-471c-88d2-5f81f7bc7ce9 + + true + Samtykke til LUIS for Dynamics 365-robot + 1030 + - 4f1da521-7ab8-4176-86e7-cb0d1470bc89 + 549dcaf1-377a-43da-91a6-9643a7bfaea5 true - MaxAllowedPendingRollupJobCount + LUIS Consent for Dynamics 365 Bot 1033 @@ -172295,7 +181913,7 @@ false iscustomizable - true + false false false @@ -172326,40 +181944,163 @@ canmodifysearchsettings false - false + true false false true true true - maxallowedpendingrollupjobcount - 2025-11-06T01:32:07.7129984 + isluisenabledford365bot + 2025-11-06T00:19:19.9000064 false canmodifyrequirementlevelsettings SystemRequired - MaxAllowedPendingRollupJobCount + IsLUISEnabledforD365Bot - IntegerType + BooleanType - 1.0.0.0 + 9.0.2.0 false 0 - None - 2147483647 - 0 - + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - - 42f70f3b-8959-4b1e-bb3b-391b053bbfae + + edea12eb-eecf-4879-8b19-6ffe9bcb0302 - Integer + Boolean false false false @@ -172368,42 +182109,56 @@ canmodifyadditionalsettings false - 10032 - 2025-11-06T01:32:07.6829952 + 305 + 1900-01-01T00:00:00 - 3ecf0966-236d-4b08-a76a-8d3339759827 + dc631e5d-1156-4611-8ecd-4d02c69f9ead true - Percentage Of Entity Table Size For Kicking Off Bootstrap Job + Enable or disable forced unlocking for Server Side Sync mailboxes. 1033 + + 65d1a049-8cc7-4d37-869e-e444f7f0dbb2 + + true + Aktivér eller deaktiver tvunget oplåsning for postkasser til synkronisering på serversiden. + 1030 + - 3ecf0966-236d-4b08-a76a-8d3339759827 + dc631e5d-1156-4611-8ecd-4d02c69f9ead true - Percentage Of Entity Table Size For Kicking Off Bootstrap Job + Enable or disable forced unlocking for Server Side Sync mailboxes. 1033 - 3516a2de-30af-41e9-8cbc-7de29da43bb5 + 1f25269e-ee08-4caf-a1a6-fa2604fa63e9 true - MaxAllowedPendingRollupJobPercentage + Is Mailbox Forced Unlocking Enabled 1033 + + fa37fbd7-a3a6-4b3a-8570-e1d80c83b6b6 + + true + Er postkasse tvunget til at blive låst op aktiveret + 1030 + - 3516a2de-30af-41e9-8cbc-7de29da43bb5 + 1f25269e-ee08-4caf-a1a6-fa2604fa63e9 true - MaxAllowedPendingRollupJobPercentage + Is Mailbox Forced Unlocking Enabled 1033 @@ -172450,84 +182205,221 @@ canmodifysearchsettings false - false + true false false true true true - maxallowedpendingrollupjobpercentage - 2025-11-06T01:32:07.6829952 + ismailboxforcedunlockingenabled + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - MaxAllowedPendingRollupJobPercentage + IsMailboxForcedUnlockingEnabled - IntegerType + BooleanType - 1.0.0.0 + 7.1.0.0 false 0 - None - 100 - 0 - - 0 - - - cb3d58d5-929d-46dc-89c3-196d61512cd3 - - - Integer - false - false - false - - false - canmodifyadditionalsettings - false - - 139 - 1900-01-01T00:00:00 - - + false + + e2ac6b5a-a178-49da-a022-310ed9cd1d8e + + + + + 202d0d29-7ac4-45d5-8390-58bcc4f02570 + + true + Is Mailbox Forced Unlocking Enabled + 1033 + + + 0d573d29-5fae-4450-a27b-dd2d28becf64 + + true + Er postkasse tvunget til at blive låst op aktiveret + 1030 + + + + 202d0d29-7ac4-45d5-8390-58bcc4f02570 + + true + Is Mailbox Forced Unlocking Enabled + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + organization_ismailboxforcedunlockingenabled + Boolean + 7.1.0.0 + + + + + + + + + + false + true + + + + 7ca2ab35-8847-4d3f-bf06-4af03653e7c3 + + true + No + 1033 + + + 98c69525-566a-4e2b-bb63-fbad124fb874 + + true + Nej + 1030 + + + + 7ca2ab35-8847-4d3f-bf06-4af03653e7c3 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 9aa6dbd0-d11b-40e1-be97-baf39aa5f298 + + true + Yes + 1033 + + + c7dfd319-2031-4113-982f-9b27d1a35c45 + + true + Ja + 1030 + + + + 9aa6dbd0-d11b-40e1-be97-baf39aa5f298 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 6e4ad9cf-0398-4b31-9b0f-c7f77639bee5 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 282 + 1900-01-01T00:00:00 + + - cb90aa12-2341-db11-898a-0007e9e17ebd + 5cbecf7e-8666-4d21-a2d7-1d3ad1d92a3c true - Maximum number of days an appointment can last. + Enable or disable mailbox keep alive for Server Side Sync. 1033 + + 95e60444-a59a-4ed6-8ec9-468aa4806e64 + + true + Aktivér eller deaktiver konstant aktivering af postkasse til synkronisering på serversiden. + 1030 + - cb90aa12-2341-db11-898a-0007e9e17ebd + 5cbecf7e-8666-4d21-a2d7-1d3ad1d92a3c true - Maximum number of days an appointment can last. + Enable or disable mailbox keep alive for Server Side Sync. 1033 - e6efe2cf-6caf-4af4-b151-3f15ff20bd21 + 2c471f94-9423-4f04-963b-e2419dd6ee3d true - Max Appointment Duration + Is Mailbox Keep Alive Enabled 1033 + + 42130645-c2ce-49a2-99f2-79be538d47ba + + true + Er postkassen aktiveret til konstant aktivering + 1030 + - e6efe2cf-6caf-4af4-b151-3f15ff20bd21 + 2c471f94-9423-4f04-963b-e2419dd6ee3d true - Max Appointment Duration + Is Mailbox Keep Alive Enabled 1033 @@ -172581,77 +182473,214 @@ true true - maxappointmentdurationdays + ismailboxinactivebackoffenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - MaxAppointmentDurationDays + IsMailboxInactiveBackoffEnabled - IntegerType + BooleanType - 5.0.0.0 + 7.0.0.0 false 0 - None - 2147483647 - 0 + false + + 9ebdc6be-0414-4f8d-aaa5-89fa74678e2f + + + + + 1cd89a49-3509-4a80-9fbc-8e2bfb84697e + + true + Is Mailbox Keep Alive Enabled + 1033 + + + f194dff4-171f-44af-ab96-d2b20d54ddb9 + + true + Er postkassen aktiveret til konstant aktivering + 1030 + + + + 1cd89a49-3509-4a80-9fbc-8e2bfb84697e + + true + Is Mailbox Keep Alive Enabled + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + organization_ismailboxinactivebackoffenabled + Boolean + 7.0.0.0 + + + + + + + + + + false + true + + + + 12f1806e-e0bf-4852-87be-78c0608feab3 + + true + No + 1033 + + + 402ce704-a4b3-4b4f-bc33-1ddf7f723e92 + + true + Nej + 1030 + + + + 12f1806e-e0bf-4852-87be-78c0608feab3 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + e4251af5-4b11-47d9-b00c-8f96082e4807 + + true + Yes + 1033 + + + 62cded2e-7d1a-40d4-be60-a3c34417e663 + + true + Ja + 1030 + + + + e4251af5-4b11-47d9-b00c-8f96082e4807 + + true + Yes + 1033 + + + + 1 + + + 0 - - d86bbc57-77c3-4256-a698-1882674b5249 + + 5fdf54c7-3bdb-473b-8863-b5cb439b7505 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 382 - 1900-01-01T00:00:00 + 438 + 2025-11-06T00:19:21.4 - e34266db-426f-4fdb-b634-b65bd944317d + 5dc61c83-7229-410c-b05d-afb254e5fd83 true - Maximum number of conditions allowed for mobile offline filters + Indicates whether Manual Sales Forecasting feature has been enabled for the organization. 1033 + + 5de59cfb-b187-492e-ba91-67186fea1131 + + true + Angiver, om funktionen Manuel salgsprognose er aktiveret for organisationen. + 1030 + - e34266db-426f-4fdb-b634-b65bd944317d + 5dc61c83-7229-410c-b05d-afb254e5fd83 true - Maximum number of conditions allowed for mobile offline filters + Indicates whether Manual Sales Forecasting feature has been enabled for the organization. 1033 - a0188184-e951-41fe-a96a-5b1fae77d830 + 79ce0b2a-270c-481b-84f4-b746afba337a true - Maximum number of conditions allowed for mobile offline filters + Enable Manual Sales Forecasting feature for this organization 1033 + + 53611be9-fd02-4431-aafd-67a7423a8c6a + + true + Aktivér funktionen Manuel salgsprognose for denne organisation + 1030 + - a0188184-e951-41fe-a96a-5b1fae77d830 + 79ce0b2a-270c-481b-84f4-b746afba337a true - Maximum number of conditions allowed for mobile offline filters + Enable Manual Sales Forecasting feature for this organization 1033 @@ -172667,7 +182696,7 @@ false iscustomizable - true + false false false @@ -172705,33 +182734,156 @@ true true - maxconditionsformobileofflinefilters - 1900-01-01T00:00:00 + ismanualsalesforecastingenabled + 2025-11-06T00:19:21.4 false canmodifyrequirementlevelsettings - None + SystemRequired - MaxConditionsForMobileOfflineFilters + IsManualSalesForecastingEnabled - IntegerType + BooleanType - 8.1.0.0 + 9.1.0.0 false 0 - None - 2147483647 - 0 + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - 1f37af41-a33e-4a99-8254-c6090535667b + + 2d510052-f471-47d0-9941-80aa3cf69a9c - Integer + Boolean false false false @@ -172740,42 +182892,56 @@ canmodifyadditionalsettings false - 268 + 404 1900-01-01T00:00:00 - 3482487a-b25c-4ffa-beb9-8422f342795b + c9dc1da4-1a5c-4d96-ae77-fa2c97e6d15d true - Maximum depth for hierarchy security propagation. + Information that specifies whether mobile client on demand sync is enabled. 1033 + + e0df2fa4-57fe-488c-9294-cd75b5949333 + + true + Oplysninger, der angiver, om synkronisering efter behov af mobilklient er aktiveret. + 1030 + - 3482487a-b25c-4ffa-beb9-8422f342795b + c9dc1da4-1a5c-4d96-ae77-fa2c97e6d15d true - Maximum depth for hierarchy security propagation. + Information that specifies whether mobile client on demand sync is enabled. 1033 - 439f6153-73da-42cd-bea0-b45b38b3f98a + 11305b0a-e780-4cee-93de-8657ad26caf4 true - Maximum depth for hierarchy security propagation. + Is Mobile Client On Demand Sync enabled 1033 + + e555852c-2d76-4e47-a80f-22c33caa8cfc + + true + Er synkronisering efter behov af mobilklient aktiveret + 1030 + - 439f6153-73da-42cd-bea0-b45b38b3f98a + 11305b0a-e780-4cee-93de-8657ad26caf4 true - Maximum depth for hierarchy security propagation. + Is Mobile Client On Demand Sync enabled 1033 @@ -172791,7 +182957,7 @@ false iscustomizable - true + false false false @@ -172829,33 +182995,156 @@ true true - maxdepthforhierarchicalsecuritymodel + ismobileclientondemandsyncenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - MaxDepthForHierarchicalSecurityModel + IsMobileClientOnDemandSyncEnabled - IntegerType + BooleanType - 7.0.0.0 + 8.2.0.0 false 0 - None - 2147483647 - -2147483648 + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - 24ce1642-9b71-46f9-be1c-949bcb5ec94d + + 6e7ec5d9-7aa5-45c8-bbdf-b8ccc1b78845 - Integer + Boolean false false false @@ -172864,42 +183153,56 @@ canmodifyadditionalsettings false - 301 + 311 1900-01-01T00:00:00 - addff016-93cb-48d6-9ebf-6a9779f17305 + af7f9cab-89cf-4257-9dd4-a2f294c9a786 true - Maximum number of Folder Based Tracking mappings user can add + Indicates whether the feature MobileOffline should be enabled for the organization. 1033 + + 07d6ff02-b676-4bef-8ccd-d9cfd323bb35 + + true + Angiver, om funktionen MobileOffline skal aktiveres for organisationen. + 1030 + - addff016-93cb-48d6-9ebf-6a9779f17305 + af7f9cab-89cf-4257-9dd4-a2f294c9a786 true - Maximum number of Folder Based Tracking mappings user can add + Indicates whether the feature MobileOffline should be enabled for the organization. 1033 - 0f42179b-cccb-4c1b-9c8a-67b647b8fd99 + 211980ec-3c75-49d9-a29a-eb5391eb33e3 true - Max Folder Based Tracking Mappings + Enable MobileOffline for this Organization 1033 + + bfe0056f-c8ec-461b-8cf5-96fda579f3ae + + true + Aktivér MobileOffline for denne organisation + 1030 + - 0f42179b-cccb-4c1b-9c8a-67b647b8fd99 + 211980ec-3c75-49d9-a29a-eb5391eb33e3 true - Max Folder Based Tracking Mappings + Enable MobileOffline for this Organization 1033 @@ -172953,77 +183256,214 @@ true true - maxfolderbasedtrackingmappings + ismobileofflineenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - MaxFolderBasedTrackingMappings + IsMobileOfflineEnabled - IntegerType + BooleanType - 7.1.0.0 + 8.0.0.0 false 0 - None - 25 - 1 + false + + 6a53d805-969d-4bcb-aca2-c327debd88f2 + + + + + 2d2db3b7-c2d5-495b-bc5d-a896ad1bb656 + + true + Information that specifies whether MobileOffline is enabled for the organization. + 1033 + + + 7dd9b099-defa-4692-920c-2db6629f32f1 + + true + Oplysninger, der angiver, om MobileOffline er aktiveret for organisationen. + 1030 + + + + 2d2db3b7-c2d5-495b-bc5d-a896ad1bb656 + + true + Information that specifies whether MobileOffline is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_ismobileofflineenabled + Boolean + 8.0.0.0 + + + + + + + + + + false + true + + + + 8a6557ea-cd19-4ad2-a8bf-8addf7518978 + + true + No + 1033 + + + 1f20d75c-1ae7-4b2b-a94d-6e48dad64a77 + + true + Nej + 1030 + + + + 8a6557ea-cd19-4ad2-a8bf-8addf7518978 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + bfda25f9-662c-4f3d-bb8f-7c59da7015d0 + + true + Yes + 1033 + + + b3f68250-6f61-4118-b6d1-6899e2402d9c + + true + Ja + 1030 + + + + bfda25f9-662c-4f3d-bb8f-7c59da7015d0 + + true + Yes + 1033 + + + + 1 + + + 0 - - 53609e50-3941-42f5-beae-d7b110066d56 + + 06319163-7451-45c9-b679-aba33e8928c3 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 244 - 1900-01-01T00:00:00 + 464 + 2025-11-06T00:19:20.2599936 - 512059ef-3efb-4929-9ff6-ec2986a2c4a7 + 99672633-038e-46a0-86eb-497ec149d6aa true - Maximum number of active business process flows allowed per entity + Indicates whether Model Apps can be embedded within Microsoft Teams. This is a tenant admin controlled preview/experimental feature. 1033 + + b8f097d2-7f71-43e3-8eaa-976e5aa63672 + + true + Angiver, om modelapps kan indlejres i Microsoft Teams. Dette er en prøveversionsfunktion/eksperimentel funktion, der styres af lejeradministratoren. + 1030 + - 512059ef-3efb-4929-9ff6-ec2986a2c4a7 + 99672633-038e-46a0-86eb-497ec149d6aa true - Maximum number of active business process flows allowed per entity + Indicates whether Model Apps can be embedded within Microsoft Teams. This is a tenant admin controlled preview/experimental feature. 1033 - 8e100a31-de92-4834-925c-f33f7ca10d1f + 6f260607-639d-4d8d-9cbb-20ab8cab88af true - Maximum active business process flows per entity + Enable embedding Model Apps in Microsoft Teams 1033 + + 4ab224f0-9c52-4b1d-b615-14a4fe952420 + + true + Aktivér indlejring af modelapps i Microsoft Teams + 1030 + - 8e100a31-de92-4834-925c-f33f7ca10d1f + 6f260607-639d-4d8d-9cbb-20ab8cab88af true - Maximum active business process flows per entity + Enable embedding Model Apps in Microsoft Teams 1033 @@ -173039,7 +183479,7 @@ false iscustomizable - true + false false false @@ -173077,77 +183517,214 @@ true true - maximumactivebusinessprocessflowsallowedperentity - 1900-01-01T00:00:00 + ismodeldrivenappsinmsteamsenabled + 2025-11-06T00:19:20.2599936 false canmodifyrequirementlevelsettings - None + SystemRequired - MaximumActiveBusinessProcessFlowsAllowedPerEntity + IsModelDrivenAppsInMSTeamsEnabled - IntegerType + BooleanType - 6.0.0.0 + 9.1.0.0 false 0 - None - 2147483647 - 1 + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - 274b60ed-04c7-483b-b138-67c16cf0c0aa + + cc3a4c82-9f89-4ad7-b6de-b3239f3c6ce8 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 265 - 1900-01-01T00:00:00 + 10083 + 2025-11-06T02:47:57.9929984 - e9bb5bda-49e5-4252-9963-5c923402f13d + 79ff0594-1fd3-4297-a9a3-8c7f365a742f true - Restrict the maximum number of product properties for a product family/bundle + Indicates whether the maker can create Power Automate money based saving rules. 1033 + + 44322310-e1b6-4750-81a4-f03d97451b2a + + true + Angiver, om udvikleren kan oprette pengebaserede Power Automate-regler for at gemme. + 1030 + - e9bb5bda-49e5-4252-9963-5c923402f13d + 79ff0594-1fd3-4297-a9a3-8c7f365a742f true - Restrict the maximum number of product properties for a product family/bundle + Indicates whether the maker can create Power Automate money based saving rules. 1033 - 50adf73f-89e9-4101-abfe-3e6c7d94a96d + c1de5d56-dcd1-49f8-a896-a98a34354d4c true - Product Properties Item Limit + Enable the ability to makers to create Power Automate money savings rule 1033 + + ea50b582-ab65-4316-b7fe-bbcbfe7b54ae + + true + Gør det muligt for udviklere at oprette pengebesparende Power Automate-regel + 1030 + - 50adf73f-89e9-4101-abfe-3e6c7d94a96d + c1de5d56-dcd1-49f8-a896-a98a34354d4c true - Product Properties Item Limit + Enable the ability to makers to create Power Automate money savings rule 1033 @@ -173163,7 +183740,7 @@ false iscustomizable - false + true false false @@ -173178,7 +183755,7 @@ false isrenameable - false + true false false @@ -173190,7 +183767,7 @@ false - false + true canmodifysearchsettings false @@ -173201,79 +183778,174 @@ true true - maximumdynamicpropertiesallowed - 1900-01-01T00:00:00 + ismoneysavingsallowed + 2026-05-11T16:05:41.4029952 - false + true canmodifyrequirementlevelsettings SystemRequired - MaximumDynamicPropertiesAllowed + IsMoneySavingsAllowed - IntegerType + BooleanType - 7.0.0.0 + 1.9.4.0 false 0 - None - 2147483647 - 0 - + true + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - - 6b81b915-ef1e-4ff9-9a75-bec9ac9a89e0 + + b3c38560-e325-420f-972d-c5aa44579425 - - Integer + ismoneysavingsallowed + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 375 - 1900-01-01T00:00:00 + 10084 + 2025-11-06T02:47:58.0099968 - - - 65105a39-3040-48c4-8717-422882ac16d5 - - true - Maximum number of active SLA allowed per entity in online - 1033 - - - - 65105a39-3040-48c4-8717-422882ac16d5 - - true - Maximum number of active SLA allowed per entity in online - 1033 - + + - - - b3c0a91e-6b56-41c8-862a-3590d3d76072 - - true - Maximum number of active SLA allowed per entity in online - 1033 - - - - b3c0a91e-6b56-41c8-862a-3590d3d76072 - - true - Maximum number of active SLA allowed per entity in online - 1033 - + + organization @@ -173281,11 +183953,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -173296,13 +183968,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -173314,88 +183986,97 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - maximumentitieswithactivesla - 1900-01-01T00:00:00 + ismoneysavingsallowedname + 2025-11-06T02:47:58.0099968 - false + true canmodifyrequirementlevelsettings None - MaximumEntitiesWithActiveSLA + ismoneysavingsallowedName - IntegerType + VirtualType - 8.1.0.0 - false - 0 - - None - 2147483647 - 0 - - 0 + 1.9.4.0 + true + + - - 049ab94d-a0bb-4c41-93a1-b26371e583d7 + + 33fa5b02-aa90-4a3c-b7cb-fa7a86680fa7 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 376 - 1900-01-01T00:00:00 + 436 + 2025-11-06T00:19:21.6499968 - 43a918b8-e3e0-4264-8e2e-375733096a4c + 9d9b3dfc-1e25-46fb-a5fb-958fc3bd2063 true - Maximum number of SLA KPI per active SLA allowed for entity in online + Indicates whether Microsoft Teams Collaboration feature has been enabled for the organization. 1033 + + 1be1440d-a519-4e8d-8de8-e69959a15af5 + + true + Angiver, om Microsoft Teams-samarbejdsfunktionen er aktiveret for organisationen. + 1030 + - 43a918b8-e3e0-4264-8e2e-375733096a4c + 9d9b3dfc-1e25-46fb-a5fb-958fc3bd2063 true - Maximum number of SLA KPI per active SLA allowed for entity in online + Indicates whether Microsoft Teams Collaboration feature has been enabled for the organization. 1033 - c58aafa2-aa32-4edd-9218-aa500b70d4c6 + fe58d2a8-143c-4745-8736-604b1c83ee15 true - Maximum number of active SLA KPI allowed per entity in online + Enable Microsoft Teams Collaboration for this organization 1033 + + df4758ec-150c-44c1-9b28-81a2e3de41c6 + + true + Aktivér Microsoft Teams-samarbejde for denne organisation + 1030 + - c58aafa2-aa32-4edd-9218-aa500b70d4c6 + fe58d2a8-143c-4745-8736-604b1c83ee15 true - Maximum number of active SLA KPI allowed per entity in online + Enable Microsoft Teams Collaboration for this organization 1033 @@ -173411,7 +184092,7 @@ false iscustomizable - true + false false false @@ -173449,77 +184130,214 @@ true true - maximumslakpiperentitywithactivesla - 1900-01-01T00:00:00 + ismsteamscollaborationenabled + 2025-11-06T00:19:21.6499968 false canmodifyrequirementlevelsettings - None + SystemRequired - MaximumSLAKPIPerEntityWithActiveSLA + IsMSTeamsCollaborationEnabled - IntegerType + BooleanType - 8.1.0.0 + 9.1.0.0 false 0 - None - 2147483647 - 0 + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - 23c94b8a-0994-4353-b5a1-fddcdf22b5c3 + + bf0f3e4b-afd6-4766-a683-f6af40d5d52b - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 79 - 1900-01-01T00:00:00 + 429 + 2025-11-06T00:19:21.12 - 22aac7f4-2241-db11-898a-0007e9e17ebd + bbc1ead6-ff6b-4d21-97df-e80b2c94c745 true - Maximum tracking number before recycling takes place. + Indicates whether Microsoft Teams integration has been enabled for the organization. 1033 + + 89c6b75d-c4ac-4bc4-94d9-75ce50aa1f33 + + true + Angiver, om Microsoft Teams-integration er aktiveret for organisationen. + 1030 + - 22aac7f4-2241-db11-898a-0007e9e17ebd + bbc1ead6-ff6b-4d21-97df-e80b2c94c745 true - Maximum tracking number before recycling takes place. + Indicates whether Microsoft Teams integration has been enabled for the organization. 1033 - 1c7bd03d-a5ce-419c-9a48-4ff6f032563f + 288026bd-0917-43d7-b3f5-bd0cdf203191 true - Max Tracking Number + Enable Microsoft Teams integration 1033 + + 04e32df3-7377-477e-ad75-c7a4872c874d + + true + Aktivér Microsoft Teams-integration + 1030 + - 1c7bd03d-a5ce-419c-9a48-4ff6f032563f + 288026bd-0917-43d7-b3f5-bd0cdf203191 true - Max Tracking Number + Enable Microsoft Teams integration 1033 @@ -173535,7 +184353,7 @@ false iscustomizable - true + false false false @@ -173573,77 +184391,214 @@ true true - maximumtrackingnumber - 1900-01-01T00:00:00 + ismsteamsenabled + 2025-11-06T00:19:21.12 false canmodifyrequirementlevelsettings - None + SystemRequired - MaximumTrackingNumber + IsMSTeamsEnabled - IntegerType + BooleanType - 5.0.0.0 + 9.0.2.0 false 0 - None - 2147483647 - 0 + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - eaf1e9e8-7e86-4ab0-a70f-06ef16059801 + + 397d6d90-3684-4a1f-a29c-25a7b849b7b9 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 258 - 1900-01-01T00:00:00 + 434 + 2025-11-06T00:19:20.8829952 - 444f941a-f1ae-4602-9ed6-a3a9320ad405 + 4de81d6d-8e67-4e56-afb8-c7323480e6c1 true - Restrict the maximum no of items in a bundle + Indicates whether the user has enabled or disabled Microsoft Teams integration. 1033 + + 5d65bd99-6712-4d99-9d31-1405050cec5c + + true + Angiver, om brugeren har aktiveret eller deaktiveret Microsoft Teams-integration. + 1030 + - 444f941a-f1ae-4602-9ed6-a3a9320ad405 + 4de81d6d-8e67-4e56-afb8-c7323480e6c1 true - Restrict the maximum no of items in a bundle + Indicates whether the user has enabled or disabled Microsoft Teams integration. 1033 - f2b04b7e-7379-441b-8675-000529023d71 + 1f6168ab-03d8-4725-90dd-e346cd1a15c6 true - Bundle Item Limit + Microsoft Teams integration changed by user 1033 + + 25bb912b-ae0e-4985-b3b0-6978bfeea0e1 + + true + Microsoft Teams-integration, der er ændret af bruger + 1030 + - f2b04b7e-7379-441b-8675-000529023d71 + 1f6168ab-03d8-4725-90dd-e346cd1a15c6 true - Bundle Item Limit + Microsoft Teams integration changed by user 1033 @@ -173697,77 +184652,214 @@ true true - maxproductsinbundle - 1900-01-01T00:00:00 + ismsteamssettingchangedbyuser + 2025-11-06T00:19:20.8829952 false canmodifyrequirementlevelsettings SystemRequired - MaxProductsInBundle + IsMSTeamsSettingChangedByUser - IntegerType + BooleanType - 7.0.0.0 + 9.1.0.0 false 0 - None - 2147483647 - 0 + false + + 54ba1c35-9a85-41a5-b2f4-cd407fbefcff + + + + + b11c46fd-b5a1-4a12-adbb-b935c8e6c6e6 + + true + Indicates whether the user has enabled or disabled Microsoft Teams integration. + 1033 + + + ef8ca6cf-adca-4d2c-8362-3af9137128fb + + true + Angiver, om brugeren har aktiveret eller deaktiveret Microsoft Teams-integration. + 1030 + + + + b11c46fd-b5a1-4a12-adbb-b935c8e6c6e6 + + true + Indicates whether the user has enabled or disabled Microsoft Teams integration. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + organization_msteamssettingchangedbyuser + Boolean + 9.1.0.0 + + + + + + + + + + false + true + + + + a9639e34-a10d-4eca-9dcf-57d3e77edd42 + + true + No + 1033 + + + f432de19-b26f-4e7c-9471-4806f3653a0b + + true + Nej + 1030 + + + + a9639e34-a10d-4eca-9dcf-57d3e77edd42 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + fb3db8f4-2d45-43f2-aa6d-fbcf54af4fdd + + true + Yes + 1033 + + + bb431c52-4ff2-48a8-af9e-1b32fa95f283 + + true + Ja + 1030 + + + + fb3db8f4-2d45-43f2-aa6d-fbcf54af4fdd + + true + Yes + 1033 + + + + 1 + + + 0 - - 6e51c383-c7b8-4637-8581-4473b3b67028 + + 24d34f07-1245-4da5-9b80-1b23933c5644 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 145 - 1900-01-01T00:00:00 + 437 + 2025-11-06T00:19:20.3529984 - a8d4bfe1-645d-4f9c-a33d-15f379033fac + 8310cdb6-7f0c-446a-9812-ed058d80fbc0 true - Maximum number of records that will be exported to a static Microsoft Office Excel worksheet when exporting from the grid. + Indicates whether Microsoft Teams User Sync feature has been enabled for the organization. 1033 + + a14d0096-d3c6-4443-b0c3-728b1c63b12f + + true + Angiver, om funktionen Microsoft Teams-brugersynkronisering er aktiveret for organisationen. + 1030 + - a8d4bfe1-645d-4f9c-a33d-15f379033fac + 8310cdb6-7f0c-446a-9812-ed058d80fbc0 true - Maximum number of records that will be exported to a static Microsoft Office Excel worksheet when exporting from the grid. + Indicates whether Microsoft Teams User Sync feature has been enabled for the organization. 1033 - afdd7919-76fe-41fb-a3b8-dfc9c9f087fe + 3403818b-4bad-4cde-965d-54c34c6adf80 true - Max Records For Excel Export + Enable Microsoft Teams User Sync for this organization 1033 + + 2b8ef8c8-2c75-47d5-8175-10a326c53d73 + + true + Aktivér Microsoft Teams-brugersynkronisering for denne organisation + 1030 + - afdd7919-76fe-41fb-a3b8-dfc9c9f087fe + 3403818b-4bad-4cde-965d-54c34c6adf80 true - Max Records For Excel Export + Enable Microsoft Teams User Sync for this organization 1033 @@ -173783,7 +184875,7 @@ false iscustomizable - true + false false false @@ -173821,77 +184913,214 @@ true true - maxrecordsforexporttoexcel - 1900-01-01T00:00:00 + ismsteamsusersyncenabled + 2025-11-06T00:19:20.3529984 false canmodifyrequirementlevelsettings SystemRequired - MaxRecordsForExportToExcel + IsMSTeamsUserSyncEnabled - IntegerType + BooleanType - 5.0.0.0 + 9.1.0.0 false 0 - None - 2147483647 - 0 + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - 6e51c383-c7b8-4637-8581-4473b3b67029 + + 2c21c87e-9cfa-43db-9629-afccdf9256ad - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 162 - 1900-01-01T00:00:00 + 455 + 2025-11-06T00:19:21.3229952 - a8d4bfe1-645d-4f9c-a33d-15f379033fad + f0cec643-14c7-4c81-92fc-2c607fcfa862 true - Maximum number of lookup and picklist records that can be selected by user for filtering. + Indicates whether new add product experience is enabled. 1033 + + 0d1f9312-d737-4e35-8e14-be186741b125 + + true + Angiver, om en ny tilføjet produktoplevelse er aktiveret. + 1030 + - a8d4bfe1-645d-4f9c-a33d-15f379033fad + f0cec643-14c7-4c81-92fc-2c607fcfa862 true - Maximum number of lookup and picklist records that can be selected by user for filtering. + Indicates whether new add product experience is enabled. 1033 - 540a5a77-220a-404e-8b64-c01719a53ed4 + 828777df-dd27-4d5a-8bac-03ac2660086b true - Max Records Filter Selection + Indicates whether new add product experience is enabled in opportunity form 1033 + + 3fce41e4-ca78-42ab-a22c-d879fd1e6e44 + + true + Angiver, om en ny tilføjet produktoplevelse er aktiveret i salgsmulighedsformularen + 1030 + - 540a5a77-220a-404e-8b64-c01719a53ed4 + 828777df-dd27-4d5a-8bac-03ac2660086b true - Max Records Filter Selection + Indicates whether new add product experience is enabled in opportunity form 1033 @@ -173907,7 +185136,7 @@ false iscustomizable - true + false false false @@ -173945,33 +185174,156 @@ true true - maxrecordsforlookupfilters - 1900-01-01T00:00:00 + isnewaddproductexperienceenabled + 2025-11-06T00:19:21.3229952 false canmodifyrequirementlevelsettings SystemRequired - MaxRecordsForLookupFilters + IsNewAddProductExperienceEnabled - IntegerType + BooleanType - 5.0.0.0 + 9.1.0.0 false 0 - None - 2147483647 - 0 + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - ebad304c-1216-4ac5-8e95-e589b8bd70a6 + + d53e5a5b-f382-473e-9771-50d5f4bbbf40 - Integer + Boolean false false false @@ -173980,42 +185332,56 @@ canmodifyadditionalsettings false - 10034 - 2025-11-06T01:32:07.7469952 + 426 + 2025-11-06T00:19:21.9000064 - 6636766d-3b01-403b-a662-1b2e5cd9cdc4 + e2d1c985-450e-4789-9e07-fe5ac580e232 true - Maximum Rollup Fields Per Entity + Indicates whether the feature Notes Analysis should be enabled for the organization. 1033 + + 251e6286-a36a-4cad-b288-4cec1ebbef10 + + true + Angiver, om funktionen Analyse af noter skal aktiveres for denne organisation. + 1030 + - 6636766d-3b01-403b-a662-1b2e5cd9cdc4 + e2d1c985-450e-4789-9e07-fe5ac580e232 true - Maximum Rollup Fields Per Entity + Indicates whether the feature Notes Analysis should be enabled for the organization. 1033 - 4544c389-9dbd-4051-adb9-3862c0614874 + f328d852-c216-4984-89c1-81097f2706af true - MaxRollupFieldsPerEntity + Enable Notes Analysis for this Organization 1033 + + 95d7f8c1-61f5-4f4f-a21e-ed576f9e671b + + true + Aktivér Analyse af noter for denne organisation + 1030 + - 4544c389-9dbd-4051-adb9-3862c0614874 + f328d852-c216-4984-89c1-81097f2706af true - MaxRollupFieldsPerEntity + Enable Notes Analysis for this Organization 1033 @@ -174062,40 +185428,163 @@ canmodifysearchsettings false - false + true false false true true true - maxrollupfieldsperentity - 2025-11-06T01:32:07.7469952 + isnotesanalysisenabled + 2025-11-06T00:19:21.9000064 false canmodifyrequirementlevelsettings SystemRequired - MaxRollupFieldsPerEntity + IsNotesAnalysisEnabled - IntegerType + BooleanType - 1.0.0.0 + 9.0.0.0 false 0 - None - 50 - 0 - + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - - c06b9a0f-f2c6-4866-87d2-0cf26ddae874 + + 1ce7d54c-37df-4b10-80b8-3830b986e8e2 - Integer + Boolean false false false @@ -174104,42 +185593,56 @@ canmodifyadditionalsettings false - 10035 - 2025-11-06T01:32:07.76 + 10142 + 2025-11-06T04:12:32.8169984 - 74dce88a-89ef-4cc2-81cc-72536ee155fe + 16e18c50-9326-4810-ada2-5b26b84aae60 true - Maximum Rollup Fields Per Organization + 1033 + + d1e6cb10-6119-4ed5-b299-7f45095eebc4 + + true + + 1030 + - 74dce88a-89ef-4cc2-81cc-72536ee155fe + 16e18c50-9326-4810-ada2-5b26b84aae60 true - Maximum Rollup Fields Per Organization + 1033 - 8de5f2ec-2fcc-42d4-8aaf-e1bfc5722d5e + 8f0a5d15-4c1e-4d29-9dd8-77da9224e6ab true - MaxRollupFieldsPerOrg + IsNotificationForD365InTeamsEnabled 1033 + + 5e0eebbe-7825-4af1-ab46-56e6320541cf + + true + IsNotificationForD365InTeamsEnabled + 1030 + - 8de5f2ec-2fcc-42d4-8aaf-e1bfc5722d5e + 8f0a5d15-4c1e-4d29-9dd8-77da9224e6ab true - MaxRollupFieldsPerOrg + IsNotificationForD365InTeamsEnabled 1033 @@ -174155,7 +185658,7 @@ false iscustomizable - true + false false false @@ -174186,40 +185689,184 @@ canmodifysearchsettings false - false + true false false true true true - maxrollupfieldsperorg - 2025-11-06T01:32:07.76 + isnotificationford365inteamsenabled + 2025-11-06T04:12:32.8169984 false canmodifyrequirementlevelsettings SystemRequired - MaxRollupFieldsPerOrg + IsNotificationForD365InTeamsEnabled - IntegerType + BooleanType - 1.0.0.0 + 9.2.0.0 false 0 - - None - 500 - 0 + + false + + b97697cd-c6ba-f011-bbd3-7c1e52365f30 + + + + + bb7697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + + 1033 + + + 798f401e-810e-4a53-9823-ebd7a6c5ad7c + + true + + 1030 + + + + bb7697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + + 1033 + + + + + + ba7697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + IsNotificationForD365InTeamsEnabled + 1033 + + + 7ae764c9-c12d-4d97-afe6-c4bc7930f575 + + true + IsNotificationForD365InTeamsEnabled + 1030 + + + + ba7697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + IsNotificationForD365InTeamsEnabled + 1033 + + + + true + + false + iscustomizable + false + + false + true + organization_isnotificationford365inteamsenabled + Boolean + 9.2.0.0 + + + + + + + + + + false + true + + + + 7b7d16ff-d6ad-4561-afc9-1375836dc257 + + true + No + 1033 + + + 6e840cc9-c082-416f-8f83-52fb376b76b8 + + true + Nej + 1030 + + + + 7b7d16ff-d6ad-4561-afc9-1375836dc257 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 63821266-6b6a-45d0-818d-671fd29eedc5 + + true + Yes + 1033 + + + ef3039c5-cafd-4a1f-8c49-15a6f61f0f3a + + true + Ja + 1030 + + + + 63821266-6b6a-45d0-818d-671fd29eedc5 + + true + Yes + 1033 + + + + 1 + + + 0 - - f2469ebf-fec6-42e4-bb98-43e3e6c7afc3 + + f5b572d3-a4e9-4547-9b0f-0ae86418af30 - - Integer + isnotificationford365inteamsenabled + Virtual false false false @@ -174228,44 +185875,16 @@ canmodifyadditionalsettings true - 10156 - 2025-11-06T04:31:47.3970048 + 10143 + 2025-11-06T04:12:32.8499968 - - - fd5ad06e-ac7e-4c30-9d9c-e24fa09d583f - - true - - 1033 - - - - fd5ad06e-ac7e-4c30-9d9c-e24fa09d583f - - true - - 1033 - + + - - - e0fb67ae-86cc-422a-bbeb-d895afce5f51 - - true - Max SLA Items Per SLA - 1033 - - - - e0fb67ae-86cc-422a-bbeb-d895afce5f51 - - true - Max SLA Items Per SLA - 1033 - + + organization @@ -174308,42 +185927,37 @@ true canmodifysearchsettings - true + false - true - true - true + false + false + false true - true - true + false + false - maxslaitemspersla - 2025-11-06T04:31:47.3970048 + isnotificationford365inteamsenabledname + 2025-11-06T04:12:32.8499968 true canmodifyrequirementlevelsettings None - MaxSLAItemsPerSLA + isnotificationford365inteamsenabledName - IntegerType + VirtualType - 9.1.0.0 - false - 0 - - None - 2147483647 - 0 - - 0 + 9.2.0.0 + true + + - - a35bd3ed-dd7b-4c00-814a-6771c2044cb6 + + c6ac482e-c259-4fe9-b5d9-382026dd7f90 - Integer + Boolean false false false @@ -174352,42 +185966,56 @@ canmodifyadditionalsettings false - 275 + 312 1900-01-01T00:00:00 - 315512c1-2eca-4900-8cb4-313c20e34892 + 5e682041-b642-4409-bc8d-5a9c21ba78b2 true - The maximum version of IE to run browser emulation for in Outlook client + Indicates whether the feature OfficeGraph should be enabled for the organization. 1033 + + 0fabaefe-d706-46c4-8496-f3d320ca5a3c + + true + Angiver, om funktionen Office Graph skal aktiveres for organisationen. + 1030 + - 315512c1-2eca-4900-8cb4-313c20e34892 + 5e682041-b642-4409-bc8d-5a9c21ba78b2 true - The maximum version of IE to run browser emulation for in Outlook client + Indicates whether the feature OfficeGraph should be enabled for the organization. 1033 - f0929143-2c8a-4318-b17d-49f55cc5d89c + a46e2970-e618-472a-a757-4b95ea04542e true - Max supported IE version + Enable OfficeGraph for this Organization 1033 + + 030e3a88-1561-4bdb-95a0-618d914c4bdd + + true + Aktivér Office Graph for denne organisation + 1030 + - f0929143-2c8a-4318-b17d-49f55cc5d89c + a46e2970-e618-472a-a757-4b95ea04542e true - Max supported IE version + Enable OfficeGraph for this Organization 1033 @@ -174403,7 +186031,7 @@ false iscustomizable - false + true false false @@ -174434,40 +186062,163 @@ canmodifysearchsettings false - false + true false false true - false + true true - maxsupportedinternetexplorerversion + isofficegraphenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - MaxSupportedInternetExplorerVersion + IsOfficeGraphEnabled - IntegerType + BooleanType - 7.0.0.0 + 8.0.0.0 false 0 - None - 2147483647 - 0 + false + + 5c4bf93a-6278-4cc1-9b7e-e59752dbfd4b + + + + + f881b3e0-d787-4dbf-b046-d8fcbe28f79f + + true + Information that specifies whether office graph is enabled for the organization. + 1033 + + + 1df7f2a7-4b25-4418-9c37-a7a0ce643603 + + true + Oplysninger, der angiver, om Office Graph er aktiveret for organisationen. + 1030 + + + + f881b3e0-d787-4dbf-b046-d8fcbe28f79f + + true + Information that specifies whether office graph is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_isofficegraphenabled + Boolean + 8.0.0.0 + + + + + + + + + + false + true + + + + 1fc0219a-6068-4d0b-8522-b957f0c07827 + + true + No + 1033 + + + 83927d5b-eae0-48c7-8593-fb0fef2809e7 + + true + Nej + 1030 + + + + 1fc0219a-6068-4d0b-8522-b957f0c07827 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + e712120a-947a-4569-b4b0-60aca03b6156 + + true + Yes + 1033 + + + 901986e5-a15b-4de2-9047-e149252ece95 + + true + Ja + 1030 + + + + e712120a-947a-4569-b4b0-60aca03b6156 + + true + Yes + 1033 + + + + 1 + + + 0 - - 69d31387-d58c-4814-b169-1c8116c4bd72 + + 56b95f74-2ecc-445c-8679-f1405e34fcea - Integer + Boolean false false false @@ -174476,42 +186227,56 @@ canmodifyadditionalsettings false - 133 + 313 1900-01-01T00:00:00 - 62207ef3-819e-462b-bbdb-48d82383d09d + 618165ac-80f5-4dd0-b238-6ed5866003eb true - Maximum allowed size of an attachment. + Indicates whether the feature One Drive should be enabled for the organization. 1033 + + 72956b79-9c93-4f37-9609-69bbc396ee74 + + true + Angiver, om funktionen OneDrive skal aktiveres for organisationen. + 1030 + - 62207ef3-819e-462b-bbdb-48d82383d09d + 618165ac-80f5-4dd0-b238-6ed5866003eb true - Maximum allowed size of an attachment. + Indicates whether the feature One Drive should be enabled for the organization. 1033 - c5590678-c8b9-4afe-94d7-12bd4a514454 + e1fc1f10-1f0d-4de9-9136-0563cb95df3f true - Max Upload File Size + Enable One Drive for this Organization 1033 + + f0065c70-aece-4f04-9038-dff8203ce0a4 + + true + Aktivér OneDrive for denne organisation + 1030 + - c5590678-c8b9-4afe-94d7-12bd4a514454 + e1fc1f10-1f0d-4de9-9136-0563cb95df3f true - Max Upload File Size + Enable One Drive for this Organization 1033 @@ -174527,7 +186292,7 @@ false iscustomizable - true + false false false @@ -174565,33 +186330,156 @@ true true - maxuploadfilesize + isonedriveenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - MaxUploadFileSize + IsOneDriveEnabled - IntegerType + BooleanType - 5.0.0.0 + 8.0.0.0 false 0 - None - 2147483647 - 0 + false + + 2928bd4e-1efc-4634-9740-434e4bfae6f1 + + + + + ff6c1ff4-446a-447c-8fb9-11d32274cf27 + + true + Information that specifies whether one drive is enabled for the organization. + 1033 + + + b52a5b7b-e959-471d-9a4d-76481360c360 + + true + Oplysninger, der angiver, om OneDrive er aktiveret for organisationen. + 1030 + + + + ff6c1ff4-446a-447c-8fb9-11d32274cf27 + + true + Information that specifies whether one drive is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + organization_isonedriveenabled + Boolean + 8.0.0.0 + + + + + + + + + + false + true + + + + 1707434a-1993-4c8c-b826-13ff714f8e9d + + true + No + 1033 + + + 753046fc-4c95-493c-b0dd-6bb8fa1c962c + + true + Nej + 1030 + + + + 1707434a-1993-4c8c-b826-13ff714f8e9d + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + bc8dcbdc-58a7-43b2-a48f-3adc49b9add7 + + true + Yes + 1033 + + + a7d046ee-92f6-4ee5-8694-211929052d1e + + true + Ja + 1030 + + + + bc8dcbdc-58a7-43b2-a48f-3adc49b9add7 + + true + Yes + 1033 + + + + 1 + + + 0 - - faa5e46b-aa8c-467a-8bbc-5776eb63d412 + + 85e5ecee-ff38-48cc-85de-e6d1fdd7bfa8 - Integer + Boolean false false false @@ -174600,42 +186488,56 @@ canmodifyadditionalsettings false - 317 - 1900-01-01T00:00:00 + 441 + 2025-11-06T00:19:21.4470016 - 3d7023ce-5541-461d-a9b3-7bb8f8cf4921 + 1526f27b-aa3f-437a-90b9-0809826875c5 true - Maximum number of mailboxes that can be toggled for verbose logging + Indicates whether PAI feature has been enabled for the organization. 1033 + + 0846d0fc-9793-41c8-a1f1-0843d191b8e6 + + true + Angiver, om funktionen PAI er aktiveret for organisationen. + 1030 + - 3d7023ce-5541-461d-a9b3-7bb8f8cf4921 + 1526f27b-aa3f-437a-90b9-0809826875c5 true - Maximum number of mailboxes that can be toggled for verbose logging + Indicates whether PAI feature has been enabled for the organization. 1033 - 7ae37177-09fe-4104-bad9-cde55ed6f219 + cf200d87-8e8c-4d67-a21e-15bc4a49ae9b true - Max No Of Mailboxes To Enable For Verbose Logging + Enable PAI feature for this organization 1033 + + 7cc1d357-1ab9-42b8-be4c-87d030c3a6d9 + + true + Aktivér funktionen PAI for denne organisation + 1030 + - 7ae37177-09fe-4104-bad9-cde55ed6f219 + cf200d87-8e8c-4d67-a21e-15bc4a49ae9b true - Max No Of Mailboxes To Enable For Verbose Logging + Enable PAI feature for this organization 1033 @@ -174682,40 +186584,163 @@ canmodifysearchsettings false - false + true false false true - false + true true - maxverboseloggingmailbox - 1900-01-01T00:00:00 + ispaienabled + 2025-11-06T00:19:21.4470016 false canmodifyrequirementlevelsettings SystemRequired - MaxVerboseLoggingMailbox + IsPAIEnabled - IntegerType + BooleanType - 8.0.0.0 + 9.1.0.0 false 0 - None - 2147483647 - -2147483648 + true + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - d339e4cb-8844-4020-bf0c-cd7fb774153d + + 1566f34d-bc4b-49cd-9b68-d8460f3f7fc7 - Integer + String false false false @@ -174724,42 +186749,56 @@ canmodifyadditionalsettings false - 318 - 1900-01-01T00:00:00 + 439 + 2025-11-06T00:19:21.7129984 - 3dce4567-7d25-431d-9c75-6344cb729fa6 + d8338087-9047-4529-b763-424da7920c12 true - Maximum number of sync cycles for which verbose logging will be enabled by default + Indicates whether PDF Generation feature has been enabled for the organization. 1033 + + 04145388-98b0-484e-934f-a9e4ca0a2bc6 + + true + Angiver, om funktionen PDF-oprettelse er aktiveret for organisationen. + 1030 + - 3dce4567-7d25-431d-9c75-6344cb729fa6 + d8338087-9047-4529-b763-424da7920c12 true - Maximum number of sync cycles for which verbose logging will be enabled by default + Indicates whether PDF Generation feature has been enabled for the organization. 1033 - 4a2450a7-b7fd-499e-a70f-e13518217b81 + a12bc981-da11-4c07-8752-344be1543792 true - Maximum number of sync cycles for which verbose logging will be enabled by default + Enable PDF Generation feature for this organization 1033 + + 7bae55c1-e910-4f1b-88a0-c0469390bae2 + + true + Aktivér funktionen PDF-oprettelse for denne organisation + 1030 + - 4a2450a7-b7fd-499e-a70f-e13518217b81 + a12bc981-da11-4c07-8752-344be1543792 true - Maximum number of sync cycles for which verbose logging will be enabled by default + Enable PDF Generation feature for this organization 1033 @@ -174806,84 +186845,104 @@ canmodifysearchsettings false - false + true false false true - false + true true - maxverboseloggingsynccycles - 1900-01-01T00:00:00 + ispdfgenerationenabled + 2025-11-06T00:19:21.7129984 false canmodifyrequirementlevelsettings SystemRequired - MaxVerboseLoggingSyncCycles + IsPDFGenerationEnabled - IntegerType + StringType - 8.0.0.0 + 9.1.0.0 false 0 - None - 2147483647 - -2147483648 + Text + Auto + 1000 + + + Text + + false 0 + 1000 - - 65d6995e-46ae-42ba-8381-5501606a4ad7 + + b904cc2c-3d0f-4616-b1a5-a5f2a2a167ae - DateTime + Boolean false false false false canmodifyadditionalsettings - false + true - 229 - 1900-01-01T00:00:00 + 10056 + 2025-11-06T02:47:57.5570048 - b7de22f9-d961-4eb3-a4c1-987d2a5ad533 + aa970849-4320-4d5e-89a7-fb8e81d02a48 true - What is the last date/time where there are metadata tracking deleted objects that have never been outside of the expiration period. + Indicates whether the Per Process overage feature is enabled in this organization. 1033 + + aad9ec2e-c7d4-42a5-9316-a76007770857 + + true + Angiver, om funktionen Overforbrug pr. proces er aktiveret i denne organisation. + 1030 + - b7de22f9-d961-4eb3-a4c1-987d2a5ad533 + aa970849-4320-4d5e-89a7-fb8e81d02a48 true - What is the last date/time where there are metadata tracking deleted objects that have never been outside of the expiration period. + Indicates whether the Per Process overage feature is enabled in this organization. 1033 - 2b1d3d5c-6cda-48bd-b06a-d1e84c034dcc + 336a6501-36ae-431c-96a9-3365323babe4 true - The last date/time for never expired metadata tracking deleted objects + Enable the Per Process overage feature for this organization 1033 + + bd96fdb2-50c3-424d-8237-d5ab74641922 + + true + Aktivér funktionen Overforbrug pr. proces for denne organisation + 1030 + - 2b1d3d5c-6cda-48bd-b06a-d1e84c034dcc + 336a6501-36ae-431c-96a9-3365323babe4 true - The last date/time for never expired metadata tracking deleted objects + Enable the Per Process overage feature for this organization 1033 @@ -174899,7 +186958,7 @@ false iscustomizable - false + true false false @@ -174914,7 +186973,7 @@ false isrenameable - false + true false false @@ -174926,97 +186985,185 @@ false - false + true canmodifysearchsettings false - false + true false false - false - false - false + true + true + true - metadatasynclasttimeofneverexpireddeletedobjects - 1900-01-01T00:00:00 + isperprocesscapacityoverageenabled + 2026-05-11T16:05:38.5100032 - false + true canmodifyrequirementlevelsettings None - MetadataSyncLastTimeOfNeverExpiredDeletedObjects + IsPerProcessCapacityOverageEnabled - DateTimeType + BooleanType - 5.0.0.0 + 1.7.8.0 false 0 - DateAndTime - Inactive - + true + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - - false - canmodifybehavior - false - - - UserLocal - - - 8989668c-9db8-4d85-8295-b1fa54dc8e7d + + 65f42c99-1549-44ee-ac42-e1afdab9c59f - - BigInt + isperprocesscapacityoverageenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 228 - 1900-01-01T00:00:00 - 5.0.0.0 + 10057 + 2025-11-06T02:47:57.5699968 + - - - 8340606a-cb14-4b04-bdfc-e357750070c7 - - true - Contains the maximum version number for attributes used by metadata synchronization that have changed. - 1033 - - - - 8340606a-cb14-4b04-bdfc-e357750070c7 - - true - Contains the maximum version number for attributes used by metadata synchronization that have changed. - 1033 - + + - - - e82571da-3fad-4657-823b-a1c14affda13 - - true - Metadata sync version - 1033 - - - - e82571da-3fad-4657-823b-a1c14affda13 - - true - Metadata sync version - 1033 - + + organization @@ -175024,13 +187171,13 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -175039,13 +187186,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -175057,41 +187204,39 @@ false - false + true canmodifysearchsettings false false false false - false + true false false - metadatasynctimestamp - 1900-01-01T00:00:00 + isperprocesscapacityoverageenabledname + 2025-11-06T02:47:57.5699968 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - MetadataSyncTimestamp + isperprocesscapacityoverageenabledName - BigIntType + VirtualType - 5.0.0.0 - false + 1.7.8.0 + true - - 9223372036854775807 - -9223372036854775808 + - - 1016a914-c112-4d73-a876-5fa03db75f00 + + a9eca9d6-9d56-49d9-a444-432e6c1c522a - String + Boolean false false false @@ -175100,42 +187245,56 @@ canmodifyadditionalsettings true - 412 - 1900-01-01T00:00:00 + 450 + 2025-11-06T00:19:21.7900032 - a6e5a4ee-7ea2-4bd0-82d0-51f8a0d27eab + 1895ca2b-4461-49c6-8de3-93c61494bc18 true - (Deprecated) Environment selected for Integration with Microsoft Flow + Indicates whether playbook feature has been enabled for the organization. 1033 + + b7f3a10b-d4b3-41dd-b0ae-c2e85f8587ce + + true + Angiver, om strategiplanfunktionen er aktiveret for organisationen. + 1030 + - a6e5a4ee-7ea2-4bd0-82d0-51f8a0d27eab + 1895ca2b-4461-49c6-8de3-93c61494bc18 true - (Deprecated) Environment selected for Integration with Microsoft Flow + Indicates whether playbook feature has been enabled for the organization. 1033 - f54ac1d7-4c6f-425e-b818-b4713c83a07b + 6587aff0-0455-40cd-a696-8a5d55fe1468 true - (Deprecated) Environment selected for Integration with Microsoft Flow + Enable playbook feature for this organization 1033 + + 9ec0fb65-8b95-49f5-9767-8fd88349949f + + true + Aktivér strategiplanfunktionen for denne organisation + 1030 + - f54ac1d7-4c6f-425e-b818-b4713c83a07b + 6587aff0-0455-40cd-a696-8a5d55fe1468 true - (Deprecated) Environment selected for Integration with Microsoft Flow + Enable playbook feature for this organization 1033 @@ -175189,39 +187348,156 @@ true true - microsoftflowenvironment - 1900-01-01T00:00:00 + isplaybookenabled + 2025-11-06T00:19:21.7900032 false canmodifyrequirementlevelsettings - None + SystemRequired - MicrosoftFlowEnvironment + IsPlaybookEnabled - StringType + BooleanType - 9.0.0.0 + 9.1.0.0 false 0 - Text - Disabled - 1024 - - - Text - + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 2048 - - c754f1fe-9102-dc11-aa9d-00123f558caf + + 652e300a-214f-4caf-af79-6ab3c1b3d33a - Integer + Boolean false false false @@ -175230,42 +187506,56 @@ canmodifyadditionalsettings false - 114 + 148 1900-01-01T00:00:00 - 775b34c2-4103-dc11-aa9d-00123f558caf + e5800bc6-fc7b-4c69-bed0-f4f3bbfaf8f5 true - Normal polling frequency used for address book synchronization in Microsoft Office Outlook. + Information on whether IM presence is enabled. 1033 + + 52c5dacb-5e12-4df3-8f6c-e76d804b30e1 + + true + Oplysninger om, hvorvidt IM-tilstedeværelse er aktiveret. + 1030 + - 775b34c2-4103-dc11-aa9d-00123f558caf + e5800bc6-fc7b-4c69-bed0-f4f3bbfaf8f5 true - Normal polling frequency used for address book synchronization in Microsoft Office Outlook. + Information on whether IM presence is enabled. 1033 - 03d96883-667b-497d-8c58-59846f609983 + ba7baae9-d4b6-4659-9efa-ecc2ad25b68d true - Min Address Synchronization Frequency + Presence Enabled 1033 + + 8c19ae7a-5709-4da5-a9ec-d2897ef1ab0e + + true + Tilstedeværelse er aktiveret + 1030 + - 03d96883-667b-497d-8c58-59846f609983 + ba7baae9-d4b6-4659-9efa-ecc2ad25b68d true - Min Address Synchronization Frequency + Presence Enabled 1033 @@ -175319,33 +187609,177 @@ true true - minaddressbooksyncinterval + ispresenceenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - MinAddressBookSyncInterval + IsPresenceEnabled - IntegerType + BooleanType 5.0.0.0 false 0 - None - 2147483647 - -2147483648 + true + + feecbb3c-e260-4683-b8d3-83bc7741b097 + + + + + e5fe4006-6165-47a4-860a-8c1714354293 + + true + Information on whether IM presence is enabled. + 1033 + + + f679ed8d-7a87-48f6-b98d-3f842ec1576b + + true + Oplysninger om, hvorvidt IM-tilstedeværelse er aktiveret. + 1030 + + + + e5fe4006-6165-47a4-860a-8c1714354293 + + true + Information on whether IM presence is enabled. + 1033 + + + + + + ed93de6c-b253-4078-9164-4d8cd407d328 + + true + Presence Enabled + 1033 + + + 15ad89e1-2f47-4714-bb86-7b500dd77630 + + true + Tilstedeværelse er aktiveret + 1030 + + + + ed93de6c-b253-4078-9164-4d8cd407d328 + + true + Presence Enabled + 1033 + + + + false + + false + iscustomizable + true + + false + true + organization_ispresenceenabled + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + c9aeb5d9-a324-4d22-a2aa-f4ecc8176752 + + true + No + 1033 + + + 9c42e374-4f67-4f5e-ade3-6b3c58f7be90 + + true + Nej + 1030 + + + + c9aeb5d9-a324-4d22-a2aa-f4ecc8176752 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 25264aa8-fb3b-4c98-af3f-96eec30cc0c9 + + true + Yes + 1033 + + + c00666e9-66da-435f-9cf9-02249471be6a + + true + Ja + 1030 + + + + 25264aa8-fb3b-4c98-af3f-96eec30cc0c9 + + true + Yes + 1033 + + + + 1 + + + 0 - - ca54f1fe-9102-dc11-aa9d-00123f558caf + + 9c04281c-2211-4e0a-b0d3-075fcc3937af - - Integer + ispresenceenabled + Virtual false false false @@ -175354,58 +187788,30 @@ canmodifyadditionalsettings false - 123 + 152 1900-01-01T00:00:00 - - - 785b34c2-4103-dc11-aa9d-00123f558caf - - true - Normal polling frequency used for background offline synchronization in Microsoft Office Outlook. - 1033 - - - - 785b34c2-4103-dc11-aa9d-00123f558caf - - true - Normal polling frequency used for background offline synchronization in Microsoft Office Outlook. - 1033 - + + - - - 759c747a-b105-4aee-983a-475f2556e2f4 - - true - Min Offline Synchronization Frequency - 1033 - - - - 759c747a-b105-4aee-983a-475f2556e2f4 - - true - Min Offline Synchronization Frequency - 1033 - + + organization - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -175441,35 +187847,30 @@ false true true - true + false - minofflinesyncinterval + ispresenceenabledname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - MinOfflineSyncInterval + IsPresenceEnabledName - IntegerType + VirtualType 5.0.0.0 - false - 0 + true + - None - 2147483647 - -2147483648 - - 0 - - 3c5e5e21-37f9-4d62-b7a5-a026e3fe77b4 + + f151e296-720e-4a20-ba2d-07c1055403c7 - Integer + Boolean false false false @@ -175478,42 +187879,56 @@ canmodifyadditionalsettings false - 76 + 392 1900-01-01T00:00:00 - 6b1c9b1e-2341-db11-898a-0007e9e17ebd + 15394208-1737-4328-adce-e330a7b32e10 true - Minimum allowed time between scheduled Outlook synchronizations. + Indicates whether the Preview feature for Action Card should be enabled for the organization. 1033 + + 523bcdfd-ae1b-4fe3-8b24-a11d0e6db011 + + true + Angiver, om forhåndsversionsfunktionen for Handlingskort skal aktiveres for organisationen. + 1030 + - 6b1c9b1e-2341-db11-898a-0007e9e17ebd + 15394208-1737-4328-adce-e330a7b32e10 true - Minimum allowed time between scheduled Outlook synchronizations. + Indicates whether the Preview feature for Action Card should be enabled for the organization. 1033 - 37afe293-a4be-44dd-93e2-b52224c8ab0e + 71d7453e-48a0-4fd7-8afa-1a6afc55c976 true - Min Synchronization Frequency + Enable Preview Action Card feature for this Organization 1033 + + fac324bf-601e-4aac-842e-f255879fb732 + + true + Aktivér funktionen Vis eksempel af handlingskort for denne organisation + 1030 + - 37afe293-a4be-44dd-93e2-b52224c8ab0e + 71d7453e-48a0-4fd7-8afa-1a6afc55c976 true - Min Synchronization Frequency + Enable Preview Action Card feature for this Organization 1033 @@ -175567,33 +187982,156 @@ true true - minoutlooksyncinterval + ispreviewenabledforactioncard 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - MinOutlookSyncInterval + IsPreviewEnabledForActionCard - IntegerType + BooleanType - 5.0.0.0 + 8.2.0.0 false 0 - None - 2147483647 - 0 + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - 77d10d39-de93-4115-bfeb-4de4fb0b568c + + 7ba01678-1a0b-42f9-ac55-6bfe444a8328 - Integer + Boolean false false false @@ -175602,42 +188140,56 @@ canmodifyadditionalsettings false - 322 + 399 1900-01-01T00:00:00 - 57b521a3-3f14-4980-87d9-488ac6c50516 + d923e5d0-6274-47b8-a74c-8c26786f5a6e true - Minimum number of user license required for mobile offline service by production/preview organization + Indicates whether the feature Auto Capture should be enabled for the organization at Preview Settings. 1033 + + 2000d0d3-2f4d-477e-8ca5-db3bc67afc5c + + true + Angiver, om funktionen for autoregistrering skal aktiveres for denne organisation i indstillinger for visning af eksempel. + 1030 + - 57b521a3-3f14-4980-87d9-488ac6c50516 + d923e5d0-6274-47b8-a74c-8c26786f5a6e true - Minimum number of user license required for mobile offline service by production/preview organization + Indicates whether the feature Auto Capture should be enabled for the organization at Preview Settings. 1033 - 95443860-d06f-454c-bdbf-d4b4add03ea4 + 5c50d8b6-b728-413c-9285-292a5b4554a6 true - Minimum number of user license required for mobile offline service by production/preview organization + Enable Auto Capture for this Organization at Preview Settings 1033 + + 929491bc-ce9a-4055-97ae-32d1d528d757 + + true + Aktivér autoregistrering for denne organisation i indstillinger for visning af eksempel + 1030 + - 95443860-d06f-454c-bdbf-d4b4add03ea4 + 5c50d8b6-b728-413c-9285-292a5b4554a6 true - Minimum number of user license required for mobile offline service by production/preview organization + Enable Auto Capture for this Organization at Preview Settings 1033 @@ -175684,40 +188236,163 @@ canmodifysearchsettings false - false + true false false true - false + true true - mobileofflineminlicenseprod + ispreviewforautocaptureenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - MobileOfflineMinLicenseProd + IsPreviewForAutoCaptureEnabled - IntegerType + BooleanType - 8.0.0.0 + 8.2.0.0 false 0 - None - 2147483647 - -2147483648 + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - 1c6ac955-2015-45e5-8b46-b5019f7688b6 + + 9c7e0f5d-f37d-4ed2-a30c-a6a661fb817f - Integer + Boolean false false false @@ -175726,42 +188401,56 @@ canmodifyadditionalsettings false - 321 + 393 1900-01-01T00:00:00 - 9e1d31f3-227f-4a6d-a61c-9f195f91975a + c05ac2a7-d90f-4668-a3ce-fe5d1fcb4479 true - Minimum number of user license required for mobile offline service by trial organization + Is Preview For Email Monitoring Allowed. 1033 + + 57527e92-81da-4286-997e-7e69e9f3a673 + + true + Er Vis eksempel for mailovervågning tilladt. + 1030 + - 9e1d31f3-227f-4a6d-a61c-9f195f91975a + c05ac2a7-d90f-4668-a3ce-fe5d1fcb4479 true - Minimum number of user license required for mobile offline service by trial organization + Is Preview For Email Monitoring Allowed. 1033 - 4de42859-cdf7-4e27-a290-2e8fe99cb3d9 + 7f94f16d-658d-45ae-8595-789135f96361 true - Minimum number of user license required for mobile offline service by trial organization + Allows Preview For Email Monitoring 1033 + + 7cd06c2f-c758-432e-bab6-152f8305077d + + true + Tillader Vis eksempel på mailovervågning + 1030 + - 4de42859-cdf7-4e27-a290-2e8fe99cb3d9 + 7f94f16d-658d-45ae-8595-789135f96361 true - Minimum number of user license required for mobile offline service by trial organization + Allows Preview For Email Monitoring 1033 @@ -175808,84 +188497,221 @@ canmodifysearchsettings false - false + true false false true - false + true true - mobileofflineminlicensetrial + ispreviewforemailmonitoringallowed 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - MobileOfflineMinLicenseTrial + IsPreviewForEmailMonitoringAllowed - IntegerType + BooleanType - 8.0.0.0 + 8.2.0.0 false 0 - None - 2147483647 - -2147483648 - - 0 - - - 195dab87-84d7-4c84-b708-1a13faafd77f - - - Integer - false - false - false - - false - canmodifyadditionalsettings - false - - 319 - 1900-01-01T00:00:00 + true + + 58e75c4f-c5a7-4492-a1ed-5aebe6c894e2 + + + + + 86ecc2ee-3a14-4ad8-9239-b83035c76a12 + + true + Allows Preview For Email Monitoring. + 1033 + + + f9932f45-fc8a-4ce1-8b01-6fa5de046085 + + true + Tillader Vis eksempel for mailovervågning. + 1030 + + + + 86ecc2ee-3a14-4ad8-9239-b83035c76a12 + + true + Allows Preview For Email Monitoring. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_ispreviewforemailmonitoringallowed + Boolean + 8.2.0.0 + + + + + + + + + + false + true + + + + d34873b7-b87c-4e32-bf38-104902210d6a + + true + No + 1033 + + + ff5e5e5d-4626-4f50-b96e-efde6ea3dc7e + + true + Nej + 1030 + + + + d34873b7-b87c-4e32-bf38-104902210d6a + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 88203146-349a-4e3b-aa92-fe044d3ea0ad + + true + Yes + 1033 + + + 04f73635-f490-46a4-ba58-3b58b3f91294 + + true + Ja + 1030 + + + + 88203146-349a-4e3b-aa92-fe044d3ea0ad + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 8f5b8cab-562f-42f2-937f-02270985e267 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 445 + 2025-11-06T00:19:20.8999936 - a38f6be7-e2d3-4271-a0c0-71ce35ca53d7 + 3b8ef602-2a42-4ecc-8112-a40580949f10 true - Sync interval for mobile offline. + Indicates whether PriceList is mandatory for adding existing products to sales entities. 1033 + + c5da6428-4d68-4fd2-85d8-a1f9a9b5da3f + + true + Angiver, om PriceList er påkrævet for at føje eksisterende produkter til salgsobjekter. + 1030 + - a38f6be7-e2d3-4271-a0c0-71ce35ca53d7 + 3b8ef602-2a42-4ecc-8112-a40580949f10 true - Sync interval for mobile offline. + Indicates whether PriceList is mandatory for adding existing products to sales entities. 1033 - 3e70c0c7-6b82-4a66-8df8-a1fd6a845a72 + 28cc42b7-d8a7-4c75-a0cf-d9499dfc2ae8 true - Sync interval for mobile offline. + Indicates whether PriceList is mandatory for adding existing products to sales entities 1033 + + 9c60d588-bdc9-49f9-80df-fc53a21f312d + + true + Angiver, om PriceList er påkrævet for at føje eksisterende produkter til salgsobjekter + 1030 + - 3e70c0c7-6b82-4a66-8df8-a1fd6a845a72 + 28cc42b7-d8a7-4c75-a0cf-d9499dfc2ae8 true - Sync interval for mobile offline. + Indicates whether PriceList is mandatory for adding existing products to sales entities 1033 @@ -175901,7 +188727,7 @@ false iscustomizable - true + false false false @@ -175939,30 +188765,153 @@ true true - mobileofflinesyncinterval - 1900-01-01T00:00:00 + ispricelistmandatory + 2025-11-06T00:19:20.8999936 false canmodifyrequirementlevelsettings SystemRequired - MobileOfflineSyncInterval + IsPriceListMandatory - IntegerType + BooleanType - 8.0.0.0 + 9.1.0.0 false 0 - None - 2147483647 - 0 + true + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - a54d72fe-2f07-4eef-8e7f-2a8cb6d6550e + f705e906-b470-416f-859f-650f7f7b437a Boolean @@ -175972,44 +188921,58 @@ false canmodifyadditionalsettings - false + true - 10200 - 2025-11-06T06:14:32.6599936 + 10058 + 2025-11-06T02:47:57.5699968 - 651d1cf3-bff8-4ee7-9ebf-a8fb092a34c5 + 7e98420f-ebac-4863-ae8e-d6b55c6376c2 true - Flag to indicate if the modern advanced find filtering on all tables in a model-driven app is enabled + Indicates whether the Process capacity auto-claim feature is enabled in this organization. 1033 + + 2a4a947a-3ae6-4396-9cdd-ecc982de67d0 + + true + Angiver, om funktionen Automatisk krav om proceskapacitet er aktiveret i denne organisation. + 1030 + - 651d1cf3-bff8-4ee7-9ebf-a8fb092a34c5 + 7e98420f-ebac-4863-ae8e-d6b55c6376c2 true - Flag to indicate if the modern advanced find filtering on all tables in a model-driven app is enabled + Indicates whether the Process capacity auto-claim feature is enabled in this organization. 1033 - 485fadc3-71da-45db-8e39-c6e371d22b83 + 07cac79c-2b13-4d70-808c-2329984a003f true - Modern advanced find filtering + Enable the Process capacity auto-claim feature for this organization 1033 + + f9c27a41-3493-4902-bc1a-c4c0508efc0d + + true + Aktivér funktionen Automatisk krav om proceskapacitet for denne organisation + 1030 + - 485fadc3-71da-45db-8e39-c6e371d22b83 + 07cac79c-2b13-4d70-808c-2329984a003f true - Modern advanced find filtering + Enable the Process capacity auto-claim feature for this organization 1033 @@ -176019,13 +188982,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -176040,7 +189003,7 @@ false isrenameable - false + true false false @@ -176052,34 +189015,34 @@ false - false + true canmodifysearchsettings - true + false true - true - true + false + false true true true - modernadvancedfindfiltering - 2025-11-06T06:14:32.6599936 + isprocesscapacityautoclaimenabled + 2026-05-11T16:05:38.6029952 - false + true canmodifyrequirementlevelsettings SystemRequired - ModernAdvancedFindFiltering + IsProcessCapacityAutoClaimEnabled BooleanType - 9.1.0.0 + 1.8.18.0 false 0 - - false + + true 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -176092,6 +189055,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -176137,6 +189107,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -176170,6 +189147,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -176188,9 +189172,9 @@ 0 - 2aaef99d-d086-4618-bf6f-ef2fdf78e2c7 + ddbf6adb-f1ce-42d0-8270-e03e25aa1650 - modernadvancedfindfiltering + isprocesscapacityautoclaimenabled Virtual false false @@ -176200,8 +189184,8 @@ canmodifyadditionalsettings true - 10201 - 2025-11-06T06:14:32.6770048 + 10059 + 2025-11-06T02:47:57.6169984 @@ -176261,25 +189245,25 @@ false false - modernadvancedfindfilteringname - 2025-11-06T06:14:32.6770048 + isprocesscapacityautoclaimenabledname + 2025-11-06T02:47:57.6169984 true canmodifyrequirementlevelsettings None - modernadvancedfindfilteringName + isprocesscapacityautoclaimenabledName VirtualType - 9.1.0.0 + 1.8.18.0 true - 65fb16d0-0585-45f7-b845-a21794eafa91 + 901d9b7d-0479-426f-a4c4-8c96abde45e6 Boolean @@ -176289,44 +189273,58 @@ false canmodifyadditionalsettings - false + true - 10233 - 2025-11-06T07:22:28.0130048 + 10099 + 2025-11-06T02:47:58.2599936 - eaa3fc05-a3f9-4d92-84d5-27b8d4dec2ee + 47909fae-2dfe-4001-af5c-08cb03422c69 true - Indicates whether coauthoring is enabled in modern app designer + Indicates whether Process Mining is enabled in this organization. 1033 + + 30cc01c7-1450-4d5b-95f4-7a3aefeacd32 + + true + Indicates whether Process Mining is enabled in this organization. + 1030 + - eaa3fc05-a3f9-4d92-84d5-27b8d4dec2ee + 47909fae-2dfe-4001-af5c-08cb03422c69 true - Indicates whether coauthoring is enabled in modern app designer + Indicates whether Process Mining is enabled in this organization. 1033 - e861b907-bab9-4e3b-9b28-0812a01c50fb + 1289305c-380b-484f-affa-c1f5fd440609 true - Coauthoring in Modern App Designer Enabled + Enable Process Mining for this organization 1033 + + 76b2ac8f-4383-490d-a623-87c237970166 + + true + Enable Process Mining for this organization + 1030 + - e861b907-bab9-4e3b-9b28-0812a01c50fb + 1289305c-380b-484f-affa-c1f5fd440609 true - Coauthoring in Modern App Designer Enabled + Enable Process Mining for this organization 1033 @@ -176336,13 +189334,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -176357,7 +189355,7 @@ false isrenameable - false + true false false @@ -176369,34 +189367,34 @@ false - false + true canmodifysearchsettings - true + false true - true - true + false + false true true true - modernappdesignercoauthoringenabled - 2025-11-06T07:22:28.0130048 + isprocessminingenabled + 2026-05-11T16:05:42.1830016 - false + true canmodifyrequirementlevelsettings None - ModernAppDesignerCoauthoringEnabled + IsProcessMiningEnabled BooleanType - 9.1.0.0 + 1.9.24.0 false 0 - - false + + true 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -176409,6 +189407,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -176454,6 +189459,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -176487,6 +189499,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -176505,9 +189524,9 @@ 0 - 8aada230-9f73-4e51-b605-37da0b0c2fbb + d5f02880-f219-4fec-b3e0-1ec1ec41a078 - modernappdesignercoauthoringenabled + isprocessminingenabled Virtual false false @@ -176517,8 +189536,8 @@ canmodifyadditionalsettings true - 10234 - 2025-11-06T07:22:28.0300032 + 10100 + 2025-11-06T02:47:58.2729984 @@ -176578,72 +189597,86 @@ false false - modernappdesignercoauthoringenabledname - 2025-11-06T07:22:28.0300032 + isprocessminingenabledname + 2025-11-06T02:47:58.2729984 true canmodifyrequirementlevelsettings None - modernappdesignercoauthoringenabledName + isprocessminingenabledName VirtualType - 9.1.0.0 + 1.9.24.0 true - - c27010f7-4fee-4638-98fc-ba242484b553 + + accaf5c4-67d2-4c3e-8830-de49195880f8 - Lookup + Boolean false false false false canmodifyadditionalsettings - false + true - 66 - 1900-01-01T00:00:00 + 442 + 2025-11-06T00:19:20.4470016 - c1f1fbc4-2241-db11-898a-0007e9e17ebd + c9ea22fb-a92f-4548-8168-c69bcecc55c3 true - Unique identifier of the user who last modified the organization. + Select whether to use the standard Out-of-box Opportunity Close experience or opt to for a customized experience. 1033 + + c7d7b46c-1bb8-4cb0-a414-b61ab32546e0 + + true + Vælg, om du vil bruge den indbyggede standardoplevelse for Lukket salgsmulighed eller vælger at bruge en tilpasset oplevelse. + 1030 + - c1f1fbc4-2241-db11-898a-0007e9e17ebd + c9ea22fb-a92f-4548-8168-c69bcecc55c3 true - Unique identifier of the user who last modified the organization. + Select whether to use the standard Out-of-box Opportunity Close experience or opt to for a customized experience. 1033 - c441674d-9078-4352-a0e7-2a741fb1ddb1 + ce313dea-01c2-44cd-963a-e6783bddfa4b true - Modified By + Enable quick create form for opportunity close feature for this organization 1033 + + a2ea5b8a-9353-43b8-bf2d-70452199e230 + + true + Aktivér formular til hurtig oprettelse til funktionen Lukket salgsmulighed for denne organisation + 1030 + - c441674d-9078-4352-a0e7-2a741fb1ddb1 + ce313dea-01c2-44cd-963a-e6783bddfa4b true - Modified By + Enable quick create form for opportunity close feature for this organization 1033 @@ -176651,9 +189684,9 @@ - false + true canmodifyauditsettings - false + true false @@ -176690,39 +189723,163 @@ canmodifysearchsettings false - false + true false false true - false + true true - modifiedby - 1900-01-01T00:00:00 + isquickcreateenabledforopportunityclose + 2025-11-06T00:19:20.4470016 false canmodifyrequirementlevelsettings - None + SystemRequired - ModifiedBy + IsQuickCreateEnabledForOpportunityClose - LookupType + BooleanType - 5.0.0.0 + 9.1.0.0 false - + 0 - None - - systemuser - + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 - - 552e4ded-a8e7-4f3b-9229-9231a9d00dc5 + + 966059b7-7372-46ea-8b81-1d7545341554 - modifiedby - String + + Boolean false false false @@ -176731,24 +189888,66 @@ canmodifyadditionalsettings false - 98 - 1900-01-01T00:00:00 + 425 + 2025-11-06T00:19:20.3830016 - - + + + 2baf9b03-bd9c-4b25-8b44-4cf3d03643dc + + true + Enable or disable auditing of read operations. + 1033 + + + 6bb8e68f-0700-4125-a332-f92e3ff1763a + + true + Aktivér eller deaktiver overvågning af læsehandlinger. + 1030 + + + + 2baf9b03-bd9c-4b25-8b44-4cf3d03643dc + + true + Enable or disable auditing of read operations. + 1033 + - - + + + c75f5959-6031-491d-89aa-2aeeefe3c068 + + true + Is Read Auditing Enabled + 1033 + + + 5aa06e17-0571-481a-843f-7fb1d64c81fe + + true + Er overvågning af læsning aktiveret? + 1030 + + + + c75f5959-6031-491d-89aa-2aeeefe3c068 + + true + Is Read Auditing Enabled + 1033 + organization - false + true canmodifyauditsettings - false + true false @@ -176785,46 +189984,163 @@ canmodifysearchsettings false - false + true false false true - false - false + true + true - modifiedbyname - 1900-01-01T00:00:00 + isreadauditenabled + 2025-11-06T00:19:20.3830016 false canmodifyrequirementlevelsettings - None + SystemRequired - ModifiedByName + IsReadAuditEnabled - StringType + BooleanType - 5.0.0.0 - true + 9.0.0.0 + false 0 - Text - Auto - 100 - - - Text - + false + + b874d64a-3c33-4beb-9e8d-67b39c0d641e + + + + + 3315eccb-0ff4-4eb2-b4a4-6a9b20c86828 + + true + Enable/Disable Auditing of read operations + 1033 + + + 4bba896b-7e7a-4327-837a-fe7327849595 + + true + Aktivér eller deaktiver overvågning af læsehandlinger + 1030 + + + + 3315eccb-0ff4-4eb2-b4a4-6a9b20c86828 + + true + Enable/Disable Auditing of read operations + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + organization_isreadauditenabled + Boolean + 9.0.0.0 + + + + + + + + + + false + true + + + + 37d729d6-4fbd-4fe2-86ab-3e330d70fe88 + + true + No + 1033 + + + 581a45ba-4ec9-4510-b692-ebe47f4fd07e + + true + Nej + 1030 + + + + 37d729d6-4fbd-4fe2-86ab-3e330d70fe88 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 68aca376-8d44-4d2d-a6a4-e331b8ae9fd0 + + true + Yes + 1033 + + + 76d3e19d-cc05-4e6d-a467-cbbcac96fa5a + + true + Ja + 1030 + + + + 68aca376-8d44-4d2d-a6a4-e331b8ae9fd0 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 320 - - 6f00f32b-3698-41fb-a455-810d2a8ed167 + + c85a8985-5fa5-4524-a094-d29a8929ad8f - modifiedby - String + + Boolean false false false @@ -176833,30 +190149,72 @@ canmodifyadditionalsettings false - 154 + 406 1900-01-01T00:00:00 - - + + + 989e106f-224d-4648-99d4-264471338e59 + + true + Indicates whether the feature Relationship Insights should be enabled for the organization. + 1033 + + + 1811de40-62b8-4e01-8b5f-3519f9dbbaae + + true + Angiver, om funktionen Relationship Insights skal aktiveres for organisationen. + 1030 + + + + 989e106f-224d-4648-99d4-264471338e59 + + true + Indicates whether the feature Relationship Insights should be enabled for the organization. + 1033 + - - + + + 082d5f7f-e790-4bdc-a744-efde21c802f5 + + true + Enable Relationship Insights for this Organization + 1033 + + + f7f30e4d-2cb0-416d-b0c0-9674116accca + + true + Aktivér Relationship Insights for denne organisation + 1030 + + + + 082d5f7f-e790-4bdc-a744-efde21c802f5 + + true + Enable Relationship Insights for this Organization + 1033 + organization - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -176887,46 +190245,163 @@ canmodifysearchsettings false - false + true false false true - false - false + true + true - modifiedbyyominame + isrelationshipinsightsenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ModifiedByYomiName + IsRelationshipInsightsEnabled - StringType + BooleanType - 5.0.0.0 - true + 8.2.0.0 + false 0 - Text - Auto - 100 - modifiedbyname - - Text - + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 320 - - c12f9901-98c7-4d3b-a8a7-f530b1afe589 + + 8979916b-ae0c-4e24-86af-93a550fb302d - DateTime + Boolean false false false @@ -176935,42 +190410,56 @@ canmodifyadditionalsettings false - 33 + 403 1900-01-01T00:00:00 - c2d7a218-2341-db11-898a-0007e9e17ebd + 23d5e98a-778f-4a57-92ad-e402f4d6327d true - Date and time when the organization was last modified. + Indicates if the synchronization of user resource booking with Exchange is enabled at organization level. 1033 + + 6b144119-4809-4aa5-9204-ecb1e0da5d10 + + true + Angiver, om synkroniseringen af reservation af brugerressourcer i Exchange er aktiveret på organisationsniveau. + 1030 + - c2d7a218-2341-db11-898a-0007e9e17ebd + 23d5e98a-778f-4a57-92ad-e402f4d6327d true - Date and time when the organization was last modified. + Indicates if the synchronization of user resource booking with Exchange is enabled at organization level. 1033 - dd041e9f-c806-4c03-b66c-227bfddc203d + 702a84e5-00f8-4a00-b0f4-c3979facecf3 true - Modified On + Resource booking synchronization enabled 1033 + + 6057d918-9185-4146-b808-05c5aab6f4f0 + + true + Synkronisering af ressourcereservation er aktiveret + 1030 + - dd041e9f-c806-4c03-b66c-227bfddc203d + 702a84e5-00f8-4a00-b0f4-c3979facecf3 true - Modified On + Resource booking synchronization enabled 1033 @@ -176978,15 +190467,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -177021,87 +190510,217 @@ false false true - false + true true - modifiedon + isresourcebookingexchangesyncenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ModifiedOn + IsResourceBookingExchangeSyncEnabled - DateTimeType + BooleanType - 5.0.0.0 + 8.2.0.0 false 0 - DateAndTime - Inactive + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - false - canmodifybehavior - false - - - UserLocal - - - cabb31c4-3842-4532-ae5d-4391385e7d03 + + 5fd54301-98ad-438d-8d99-c680606be560 - Lookup + Boolean false false false false canmodifyadditionalsettings - false + true - 176 - 1900-01-01T00:00:00 + 458 + 2025-11-06T00:19:21.1500032 - b56c41a3-5641-43f9-8d01-167554e401fc + d41f4e0f-9971-4903-bbc6-01ece8f794a5 true - Unique identifier of the delegate user who last modified the organization. + Indicates whether rich text editor for notes experience is enabled on this organization 1033 + + 76bb6f65-7a58-4a9d-9079-8a5000371a7d + + true + Angiver, om RTF-editoren til noteoplevelsen er aktiveret for denne organisation. + 1030 + - b56c41a3-5641-43f9-8d01-167554e401fc + d41f4e0f-9971-4903-bbc6-01ece8f794a5 true - Unique identifier of the delegate user who last modified the organization. + Indicates whether rich text editor for notes experience is enabled on this organization 1033 - 1e454c2c-917e-490e-aa46-19fa66ab98fd + c5e73277-d4e4-4249-b57a-8df28c334467 true - Modified By (Delegate) + Indicates whether rich text editor for notes experience is enabled on this organization 1033 + + 65a041d5-67cc-4db6-abbb-e18e5b4cb194 + + true + Angiver, om RTF-editoren til noteoplevelsen er aktiveret for denne organisation. + 1030 + - 1e454c2c-917e-490e-aa46-19fa66ab98fd + c5e73277-d4e4-4249-b57a-8df28c334467 true - Modified By (Delegate) + Indicates whether rich text editor for notes experience is enabled on this organization 1033 @@ -177109,15 +190728,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - true + false false false @@ -177148,71 +190767,237 @@ canmodifysearchsettings false - false + true false false true - false + true true - modifiedonbehalfby - 1900-01-01T00:00:00 + isrichtextnotesenabled + 2025-11-06T00:19:21.1500032 false canmodifyrequirementlevelsettings - None + SystemRequired - ModifiedOnBehalfBy + IsRichTextNotesEnabled - LookupType + BooleanType - 5.0.0.0 + 9.1.0.0 false - + 0 - None - - systemuser - + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 - - a4845eb6-5d8e-4c5f-b878-afe756632845 + + 14c7cf32-5125-4f2e-9300-920b0b62bd8f - modifiedonbehalfby - String + + Boolean false false false false canmodifyadditionalsettings - false + true - 178 - 1900-01-01T00:00:00 + 10042 + 2025-11-06T02:47:57.3369984 - - + + + 42cec093-486f-4237-9261-33505460b0c5 + + true + Indicates whether AAD Join for RPA Autoscale is enabled in this organization.. + 1033 + + + 2d7cbf4d-9e9a-45c9-9de5-7966f317929f + + true + Angiver, om funktionen AAD Join for RPA-autoskalering er aktiveres i denne organisation. + 1030 + + + + 42cec093-486f-4237-9261-33505460b0c5 + + true + Indicates whether AAD Join for RPA Autoscale is enabled in this organization.. + 1033 + - - + + + 44c8d762-b943-49b0-98fc-59c2e8e45d85 + + true + Enable AAD Join for RPA Autoscale feature for this organization. + 1033 + + + 12a389ec-e138-493a-9b48-2c6ffb46376b + + true + Aktivér AAD Join til RPA-autoskaleringsfunktionen for denne organisation. + 1030 + + + + 44c8d762-b943-49b0-98fc-59c2e8e45d85 + + true + Enable AAD Join for RPA Autoscale feature for this organization. + 1033 + organization - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -177227,7 +191012,7 @@ false isrenameable - false + true false false @@ -177239,60 +191024,177 @@ false - false + true canmodifysearchsettings false - false + true false false true - false - false + true + true - modifiedonbehalfbyname - 1900-01-01T00:00:00 + isrpaautoscaleaadjoinenabled + 2026-05-11T16:05:37.5270016 - false + true canmodifyrequirementlevelsettings None - ModifiedOnBehalfByName + IsRpaAutoscaleAadJoinEnabled - StringType + BooleanType - 5.0.0.0 - true + 1.3.4.0 + false 0 - Text - Auto - 100 - - - Text - - - false + true + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + 0 - 320 - - d53f9b81-1c45-4df2-aef8-6fd98beb354d + + 488c7538-ccca-4b68-9a61-d1b4b1b04d03 - modifiedonbehalfby - String + isrpaautoscaleaadjoinenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 179 - 1900-01-01T00:00:00 + 10043 + 2025-11-06T02:47:57.3529984 @@ -177306,15 +191208,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -177323,13 +191225,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -177341,7 +191243,7 @@ false - false + true canmodifysearchsettings false @@ -177352,83 +191254,86 @@ false false - modifiedonbehalfbyyominame - 1900-01-01T00:00:00 + isrpaautoscaleaadjoinenabledname + 2025-11-06T02:47:57.3529984 - false + true canmodifyrequirementlevelsettings None - ModifiedOnBehalfByYomiName + isrpaautoscaleaadjoinenabledName - StringType + VirtualType - 5.0.0.0 + 1.3.4.0 true - 0 - - Text - Auto - 100 - modifiedonbehalfbyname - - Text - - - false - 0 - 320 + + - - 3ac482da-ce2b-4d70-975c-4b340c42f601 + + c26fd24b-6fe0-43e0-a917-f8b142596286 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 10228 - 2025-11-06T06:14:33.0200064 + 10040 + 2025-11-06T02:47:57.3069952 - ab4ec1b8-4623-4c1f-bb25-741ce49356a2 + fa0b6957-8ef0-4918-b447-848e27eee164 true - Show the sort by button on views + Indicates whether Autoscale feature for RPA is enabled in this organization. 1033 + + cff0667e-dcef-45c0-8258-ba311ab3b8d3 + + true + Angiver, om funktionen autoskalering for RPA skal aktiveres i denne organisation. + 1030 + - ab4ec1b8-4623-4c1f-bb25-741ce49356a2 + fa0b6957-8ef0-4918-b447-848e27eee164 true - Show the sort by button on views + Indicates whether Autoscale feature for RPA is enabled in this organization. 1033 - dfa10401-1214-46a9-bda3-9ed9ae42d435 + c56605b5-4e92-4d44-a913-34a65bdeb12f true - Enable Multi Column Sort Editor In Views + Enable RPA Autoscale feature for this organization 1033 + + 0713f6df-2cfd-4ee4-b70c-d8ca4d7ec4db + + true + Aktivér RPA-autoskalering-funktionen for denne organisation + 1030 + - dfa10401-1214-46a9-bda3-9ed9ae42d435 + c56605b5-4e92-4d44-a913-34a65bdeb12f true - Enable Multi Column Sort Editor In Views + Enable RPA Autoscale feature for this organization 1033 @@ -177438,13 +191343,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -177459,7 +191364,7 @@ false isrenameable - false + true false false @@ -177471,90 +191376,185 @@ false - false + true canmodifysearchsettings - true + false true - true - true + false + false true true true - multicolumnsortenabled - 2025-11-06T06:14:33.0200064 + isrpaautoscaleenabled + 2026-05-11T16:05:37.2770048 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - MultiColumnSortEnabled + IsRpaAutoscaleEnabled - IntegerType + BooleanType - 9.1.0.0 + 1.3.0.0 false 0 - - None - 100 - 0 + + true + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - - 36d5c7bb-0b7f-409d-b6c1-dc23f3db9b76 + + 6bab0425-1ab3-4aa3-a764-64944e3eb5dc - - String + isrpaautoscaleenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 2 - 1900-01-01T00:00:00 + 10041 + 2025-11-06T02:47:57.32 - - - cdf1fbc4-2241-db11-898a-0007e9e17ebd - - true - Name of the organization. The name is set when Microsoft CRM is installed and should not be changed. - 1033 - - - - cdf1fbc4-2241-db11-898a-0007e9e17ebd - - true - Name of the organization. The name is set when Microsoft CRM is installed and should not be changed. - 1033 - + + - - - e8222828-943b-496c-ad08-ec48a76b6e84 - - true - Organization Name - 1033 - - - - e8222828-943b-496c-ad08-ec48a76b6e84 - - true - Organization Name - 1033 - + + organization @@ -177562,11 +191562,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -177577,17 +191577,17 @@ canmodifyglobalfiltersettings false - true + false false - true + false - false + true isrenameable - false + true false - true - true + false + false false true @@ -177595,47 +191595,36 @@ false - false + true canmodifysearchsettings false - true + false false false true false - true + false - name - 1900-01-01T00:00:00 + isrpaautoscaleenabledname + 2025-11-06T02:47:57.32 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - Name + isrpaautoscaleenabledName - StringType + VirtualType - 5.0.0.0 - false - 0 - - Text - Auto - 160 - - - Text - - - false - 0 - 320 + 1.3.0.0 + true + + - fcfab910-c449-457c-9b1b-c2e9273312e3 + 528d13e9-7c0a-4a99-a1a3-b0b3803b421b Boolean @@ -177645,44 +191634,58 @@ false canmodifyadditionalsettings - false + true - 10226 - 2025-11-06T06:14:33.0029952 + 10052 + 2025-11-06T02:47:57.4930048 - 7901e2f7-adc2-4d81-a0c4-0c208eed9d09 + 32631385-8980-4af1-a5f6-c4840e299ba0 true - Enables Natural Language Assist Filter. + Indicates whether RPA Box feature is enabled in this organization in locations outside the tenant's geographical location. 1033 + + ef08f0b6-6925-4d4d-94f3-a7a41d473c1b + + true + Angiver, om funktionen RPA Box er aktiveret i denne organisation på placeringer uden for lejerens geografiske placering. + 1030 + - 7901e2f7-adc2-4d81-a0c4-0c208eed9d09 + 32631385-8980-4af1-a5f6-c4840e299ba0 true - Enables Natural Language Assist Filter. + Indicates whether RPA Box feature is enabled in this organization in locations outside the tenant's geographical location. 1033 - 92c69357-0f48-45d6-90b4-1235fa8e87db + 41752c6c-a513-4954-bcb7-1ee9544f7e59 true - Natural Language Assist + Enable RPA Box cross geo feature for this organization 1033 + + 7f4ed1b7-23a4-4e80-839a-edf32cb4b756 + + true + Aktivér funktionen RPA Box på tværs af geografiske placering for denne organisation + 1030 + - 92c69357-0f48-45d6-90b4-1235fa8e87db + 41752c6c-a513-4954-bcb7-1ee9544f7e59 true - Natural Language Assist + Enable RPA Box cross geo feature for this organization 1033 @@ -177692,13 +191695,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -177713,7 +191716,7 @@ false isrenameable - false + true false false @@ -177725,33 +191728,33 @@ false - false + true canmodifysearchsettings - true + false true - true - true + false + false true true true - naturallanguageassistfilter - 2025-11-06T06:14:33.0029952 + isrpaboxcrossgeoenabled + 2026-05-11T16:05:38.2770048 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - NaturalLanguageAssistFilter + IsRpaBoxCrossGeoEnabled BooleanType - 9.1.0.0 + 1.4.25.0 false 0 - + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -177765,6 +191768,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -177810,6 +191820,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -177843,6 +191860,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -177861,9 +191885,9 @@ 0 - 1c38fd23-632e-4587-b488-387bcbc1f25f + ffd3c52a-87aa-497c-966b-cf802598a7e3 - naturallanguageassistfilter + isrpaboxcrossgeoenabled Virtual false false @@ -177873,8 +191897,8 @@ canmodifyadditionalsettings true - 10227 - 2025-11-06T06:14:33.0029952 + 10053 + 2025-11-06T02:47:57.5100032 @@ -177934,196 +191958,86 @@ false false - naturallanguageassistfiltername - 2025-11-06T06:14:33.0029952 + isrpaboxcrossgeoenabledname + 2025-11-06T02:47:57.5100032 true canmodifyrequirementlevelsettings None - naturallanguageassistfilterName + isrpaboxcrossgeoenabledName VirtualType - 9.1.0.0 + 1.4.25.0 true - - 1c3ad032-64de-4bb4-a321-fcdc529051ec + + c63a8012-707d-4238-b2b0-baa32b9930ed - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 129 - 1900-01-01T00:00:00 + 10050 + 2025-11-06T02:47:57.4630016 - 9f411917-dcee-4a37-a5ea-3b1c447da855 + 9bff8683-65f4-4d8c-a1d8-985b91ac9393 true - Information that specifies how negative currency numbers are displayed throughout Microsoft Dynamics 365. + Indicates whether RPA Box feature is enabled in this organization. 1033 - - - 9f411917-dcee-4a37-a5ea-3b1c447da855 - - true - Information that specifies how negative currency numbers are displayed throughout Microsoft Dynamics 365. - 1033 - - - - - 4d3df941-0849-470a-8e87-270a5c5baef7 + 6a7819c0-7345-480b-b80d-297d128dc17e true - Negative Currency Format - 1033 + Angiver, om funktionen RPA Box er aktiveret i denne organisation. + 1030 - 4d3df941-0849-470a-8e87-270a5c5baef7 + 9bff8683-65f4-4d8c-a1d8-985b91ac9393 true - Negative Currency Format + Indicates whether RPA Box feature is enabled in this organization. 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - negativecurrencyformatcode - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - NegativeCurrencyFormatCode - - - IntegerType - - 5.0.0.0 - false - 0 - - None - 2147483647 - -2147483648 - - 0 - - - d5ab53a4-a2f4-44c7-8deb-947c0cbe0675 - - - Picklist - false - false - false - - false - canmodifyadditionalsettings - false - - 15 - 1900-01-01T00:00:00 - - + + - c752c2fa-2241-db11-898a-0007e9e17ebd + 18e1ed86-50cb-465f-916d-59bb653cca49 true - Information that specifies how negative numbers are displayed throughout Microsoft CRM. + Enable RPA Box feature for this organization 1033 - - - c752c2fa-2241-db11-898a-0007e9e17ebd - - true - Information that specifies how negative numbers are displayed throughout Microsoft CRM. - 1033 - - - - - 8bcd11fd-d7fc-489b-8cad-c5dd115d042d + a14ed6eb-f5a7-4734-9c19-0e4a78298c76 true - Negative Format - 1033 + Aktivér funktionen RPA Box for denne organisation + 1030 - 8bcd11fd-d7fc-489b-8cad-c5dd115d042d + 18e1ed86-50cb-465f-916d-59bb653cca49 true - Negative Format + Enable RPA Box feature for this organization 1033 @@ -178154,7 +192068,7 @@ false isrenameable - false + true false false @@ -178166,7 +192080,7 @@ false - false + true canmodifysearchsettings false @@ -178177,41 +192091,48 @@ true true - negativeformatcode - 1900-01-01T00:00:00 + isrpaboxenabled + 2026-05-11T16:05:38.1670016 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - NegativeFormatCode + IsRpaBoxEnabled - PicklistType + BooleanType - 5.0.0.0 + 1.4.0.0 false 0 - 0 + true - 2775af05-88a1-4429-949d-03a9ead1f5a8 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - aa4c5640-7c61-435e-8275-7639b43bca75 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies how negative numbers are displayed throughout Microsoft CRM. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - aa4c5640-7c61-435e-8275-7639b43bca75 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies how negative numbers are displayed throughout Microsoft CRM. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -178224,203 +192145,112 @@ false iscustomizable - true + false - false + true true - organization_negativeformatcode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 1f834da7-7b88-47c1-a06f-cb9326761160 - - true - Brackets - 1033 - - - - 1f834da7-7b88-47c1-a06f-cb9326761160 - - true - Brackets - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 60c5b314-2306-4b76-8e3e-a328874af83f - - true - Dash - 1033 - - - - 60c5b314-2306-4b76-8e3e-a328874af83f + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - true - Dash - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - b2e7f53f-7934-4d97-8a1d-19ee02701c09 - - true - Dash plus Space - 1033 - - - - b2e7f53f-7934-4d97-8a1d-19ee02701c09 + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 - true - Dash plus Space - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 95589e74-c0bc-40da-8836-b5197865eee2 - - true - Trailing Dash - 1033 - - - - 95589e74-c0bc-40da-8836-b5197865eee2 + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 - true - Trailing Dash - 1033 - - - - 3 - - - - - - - - - - - - false - true - - - - c4ba949f-aad2-4155-9dba-f61116d7ca9c - - true - Space plus Trailing Dash - 1033 - - - - c4ba949f-aad2-4155-9dba-f61116d7ca9c + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b - true - Space plus Trailing Dash - 1033 - - - - 4 - - - - + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + - - + 0 - - - 2a710a90-480e-4862-bdff-fd2f90784a9e + 01a35828-fe1b-41dd-bd0f-1c5ac2d7ecc0 - negativeformatcode + isrpaboxenabled Virtual false false false - false + true canmodifyadditionalsettings - false + true - 49 - 1900-01-01T00:00:00 + 10051 + 2025-11-06T02:47:57.4770048 @@ -178434,15 +192264,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -178451,13 +192281,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -178469,7 +192299,7 @@ false - false + true canmodifysearchsettings false @@ -178480,25 +192310,25 @@ false false - negativeformatcodename - 1900-01-01T00:00:00 + isrpaboxenabledname + 2025-11-06T02:47:57.4770048 - false + true canmodifyrequirementlevelsettings None - NegativeFormatCodeName + isrpaboxenabledName VirtualType - 5.0.0.0 + 1.4.0.0 true - + - 7dd8b69f-7afd-40e7-a1c5-b243fffdcd7d + 2a103f40-2046-4c0d-9982-de6b06fa68de Boolean @@ -178508,44 +192338,58 @@ false canmodifyadditionalsettings - false + true - 10176 - 2025-11-06T06:14:32.3000064 + 10038 + 2025-11-06T02:47:57.2729984 - 484e965a-8bd1-456d-9af4-876f6ab07aba + 20015e4f-85c7-4dca-975a-8ec12909a166 true - Indicates whether an organization has enabled the new Relevance search experience (released in Oct 2020) for the organization + Indicates whether Unattended runs feature for RPA is enabled in this organization. 1033 + + 71e5cb70-3c91-49a6-b6d1-949be842044c + + true + Angiver, om funktionen for uovervågede kørsler for RPA skal aktiveres i denne organisation. + 1030 + - 484e965a-8bd1-456d-9af4-876f6ab07aba + 20015e4f-85c7-4dca-975a-8ec12909a166 true - Indicates whether an organization has enabled the new Relevance search experience (released in Oct 2020) for the organization + Indicates whether Unattended runs feature for RPA is enabled in this organization. 1033 - 72309943-f632-4104-aaa3-50a29cf1289d + 15a4b40d-ac60-4298-9aed-74a9b8a23da7 true - Oct 2020 Search enabled + Enable RPA Unattended feature for this organization 1033 + + 2387b2bc-49f8-4a49-94ff-55cbb72de6aa + + true + Aktivér funktionen RPA Uovervåget for denne organisation + 1030 + - 72309943-f632-4104-aaa3-50a29cf1289d + 15a4b40d-ac60-4298-9aed-74a9b8a23da7 true - Oct 2020 Search enabled + Enable RPA Unattended feature for this organization 1033 @@ -178555,13 +192399,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -178576,7 +192420,7 @@ false isrenameable - false + true false false @@ -178588,34 +192432,34 @@ false - false + true canmodifysearchsettings - true + false true - true - true + false + false true true true - newsearchexperienceenabled - 2025-11-06T06:14:32.3000064 + isrpaunattendedenabled + 2026-05-11T16:05:37.1830016 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - NewSearchExperienceEnabled + IsRpaUnattendedEnabled BooleanType - 9.1.0.0 + 1.3.0.0 false 0 - - false + + true 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -178628,6 +192472,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -178673,6 +192524,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -178706,6 +192564,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -178724,9 +192589,9 @@ 0 - 2fbdf705-d3d9-4f95-8359-6cca43653dc3 + 25de6615-c2b5-45f5-b195-c28c4d2e5ca0 - newsearchexperienceenabled + isrpaunattendedenabled Virtual false false @@ -178736,8 +192601,8 @@ canmodifyadditionalsettings true - 10177 - 2025-11-06T06:14:32.3170048 + 10039 + 2025-11-06T02:47:57.2899968 @@ -178797,196 +192662,86 @@ false false - newsearchexperienceenabledname - 2025-11-06T06:14:32.3170048 + isrpaunattendedenabledname + 2025-11-06T02:47:57.2899968 true canmodifyrequirementlevelsettings None - newsearchexperienceenabledName + isrpaunattendedenabledName VirtualType - 9.1.0.0 + 1.3.0.0 true - - f5d21a04-ae75-4c68-83a9-30fbf47190cb + + 17e2f902-33e1-4f28-aeb6-8015350806a9 - Integer + Boolean false false false false canmodifyadditionalsettings - false + true - 161 - 1900-01-01T00:00:00 + 453 + 2025-11-06T00:19:21.3529984 - 94c4fcaa-0be0-4598-a9af-bf5124385728 + f918df55-f6ab-4910-a2cc-c75955d8c833 true - Next entity type code to use for custom entities. + Indicates whether Sales Assistant mobile app has been enabled for the organization. 1033 - - - 94c4fcaa-0be0-4598-a9af-bf5124385728 - - true - Next entity type code to use for custom entities. - 1033 - - - - - 4ff152f3-9291-4d65-bedf-8256ef2e97ac + c40c598c-66a1-4355-968c-70794e256e16 true - Next Entity Type Code - 1033 + Angiver, om appen Sales Assistant Mobile er aktiveret for organisationen. + 1030 - 4ff152f3-9291-4d65-bedf-8256ef2e97ac + f918df55-f6ab-4910-a2cc-c75955d8c833 true - Next Entity Type Code + Indicates whether Sales Assistant mobile app has been enabled for the organization. 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - false - false - false - - nextcustomobjecttypecode - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - NextCustomObjectTypeCode - - - IntegerType - - 5.0.0.0 - false - 0 - - None - 2147483647 - 10000 - - 0 - - - 1cc09841-8c70-4841-ae8d-399efcb03c01 - - - Integer - false - false - false - - false - canmodifyadditionalsettings - false - - 51 - 1900-01-01T00:00:00 - - + + - 5dd6a218-2341-db11-898a-0007e9e17ebd + f003c887-5476-4b74-b860-ae1597a798e3 true - Next token to be placed on the subject line of an email message. + Enable Sales Assistant mobile app 1033 - - - 5dd6a218-2341-db11-898a-0007e9e17ebd - - true - Next token to be placed on the subject line of an email message. - 1033 - - - - - 9eae52de-d536-4261-8652-8fb9d933d4f8 + 75e69830-7e7b-4876-a25a-8f9b30b68a95 true - Next Tracking Number - 1033 + Aktivér appen Sales Assistant Mobile + 1030 - 9eae52de-d536-4261-8652-8fb9d933d4f8 + f003c887-5476-4b74-b860-ae1597a798e3 true - Next Tracking Number + Enable Sales Assistant mobile app 1033 @@ -179002,7 +192757,7 @@ false iscustomizable - true + false false false @@ -179040,30 +192795,153 @@ true true - nexttrackingnumber - 1900-01-01T00:00:00 + issalesassistantenabled + 2025-11-06T00:19:21.3529984 false canmodifyrequirementlevelsettings - None + SystemRequired - NextTrackingNumber + IsSalesAssistantEnabled - IntegerType + BooleanType - 5.0.0.0 + 9.1.0.0 false 0 - None - 2147483647 - -2147483648 + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + 0 - 5e4f601b-b647-429a-ab32-0fb6e213d6ab + d02d67a5-b8b3-47d0-b483-0bf2ea47d17e Boolean @@ -179073,44 +192951,58 @@ false canmodifyadditionalsettings - false + true - 243 - 1900-01-01T00:00:00 + 10095 + 2025-11-06T02:47:58.1970048 - ecfc49f3-34f5-48a9-b06a-efe2215a4a74 + d6d11ce8-4da2-415f-bb1c-a5d847688d6f true - Indicates whether mailbox owners will be notified of email server profile level alerts. + Indicates whether sending CUA audit logs to Purview is enabled. 1033 + + d8b291ad-f609-45e9-a13e-6c7c81c302e7 + + true + Indicates whether sending CUA audit logs to Purview is enabled. + 1030 + - ecfc49f3-34f5-48a9-b06a-efe2215a4a74 + d6d11ce8-4da2-415f-bb1c-a5d847688d6f true - Indicates whether mailbox owners will be notified of email server profile level alerts. + Indicates whether sending CUA audit logs to Purview is enabled. 1033 - 9539b7b7-4011-410c-bbfc-4b0f272831bf + b3e28dde-78f3-4d00-83f5-d0116c05bf47 true - Notify Mailbox Owner Of Email Server Level Alerts + Enable sending CUA audit logs to Purview 1033 + + d397eef7-c50c-4b18-b39a-b6af0c933cf0 + + true + Enable sending CUA audit logs to Purview + 1030 + - 9539b7b7-4011-410c-bbfc-4b0f272831bf + b3e28dde-78f3-4d00-83f5-d0116c05bf47 true - Notify Mailbox Owner Of Email Server Level Alerts + Enable sending CUA audit logs to Purview 1033 @@ -179141,7 +193033,7 @@ false isrenameable - false + true false false @@ -179153,7 +193045,7 @@ false - false + true canmodifysearchsettings false @@ -179164,41 +193056,48 @@ true true - notifymailboxownerofemailserverlevelalerts - 1900-01-01T00:00:00 + issendcuaauditlogtopurviewenabled + 2026-05-11T16:05:42.0130048 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - NotifyMailboxOwnerOfEmailServerLevelAlerts + IsSendCuaAuditLogToPurviewEnabled BooleanType - 6.0.0.0 + 1.9.27.0 false 0 - true + false - a69ffb9f-ae11-471b-93bf-195f5264d98b + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 9141a43d-c757-4d11-84e1-2abab1bc6f20 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Indicates whether mailbox owners will be notified of email server profile level alerts. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 9141a43d-c757-4d11-84e1-2abab1bc6f20 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Indicates whether mailbox owners will be notified of email server profile level alerts. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -179213,11 +193112,11 @@ iscustomizable false - false + true true - organization_notifymailboxownerofemailserverlevelalerts + organization_featureenabled Boolean - 6.0.0.0 + 8.1.0.0 @@ -179232,15 +193131,22 @@ - f18a0250-280b-4a24-8ef3-d93273dd2ae3 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - f18a0250-280b-4a24-8ef3-d93273dd2ae3 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -179265,15 +193171,22 @@ - 77573dc5-d8a4-4513-95c1-416257d05131 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 77573dc5-d8a4-4513-95c1-416257d05131 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -179285,60 +193198,32 @@ - + 0 - - 20d6c5b6-f499-4b61-9d19-5ca563f4f74d + + 098ffd45-43c7-4e2e-b4ff-f760ee166348 - - String + issendcuaauditlogtopurviewenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 16 - 1900-01-01T00:00:00 + 10096 + 2025-11-06T02:47:58.2269952 - - - ef99f6ca-2241-db11-898a-0007e9e17ebd - - true - Specification of how numbers are displayed throughout Microsoft CRM. - 1033 - - - - ef99f6ca-2241-db11-898a-0007e9e17ebd - - true - Specification of how numbers are displayed throughout Microsoft CRM. - 1033 - + + - - - 9bf75f3f-850d-43c5-84d8-8652eacecbe7 - - true - Number Format - 1033 - - - - 9bf75f3f-850d-43c5-84d8-8652eacecbe7 - - true - Number Format - 1033 - + + organization @@ -179346,11 +193231,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -179361,13 +193246,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -179379,50 +193264,39 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - numberformat - 1900-01-01T00:00:00 + issendcuaauditlogtopurviewenabledname + 2025-11-06T02:47:58.2269952 - false + true canmodifyrequirementlevelsettings None - NumberFormat + issendcuaauditlogtopurviewenabledName - StringType + VirtualType - 5.0.0.0 - false - 0 - - Text - Auto - 2 - - - Text - - - false - 0 - 4 + 1.9.27.0 + true + + - - 27b6e8ba-b61a-4d26-9efa-36ff052220db + + 65a2f27f-aa70-4da2-bce5-031bd1edd364 - String + Boolean false false false @@ -179431,42 +193305,56 @@ canmodifyadditionalsettings false - 101 - 1900-01-01T00:00:00 + 10135 + 2025-11-06T04:12:32.6930048 - 6e06fb49-bdcd-4642-acc9-2614092b55a2 + e5ef69e5-3089-420f-90ea-1ff1f1cdbdcb true - Specifies how numbers are grouped in Microsoft Dynamics 365. + 1033 + + 737b0c1d-1ab1-4207-a1eb-30cdec1b323b + + true + + 1030 + - 6e06fb49-bdcd-4642-acc9-2614092b55a2 + e5ef69e5-3089-420f-90ea-1ff1f1cdbdcb true - Specifies how numbers are grouped in Microsoft Dynamics 365. + 1033 - bbb2f25e-0cbc-4ed0-a0ce-34444312272b + af085c42-f18e-45d6-968f-f039c421b8e9 true - Number Grouping Format + IsSharingInOrgAllowed 1033 + + fb6789b6-a25a-4494-9a40-5d0b030f06ae + + true + IsSharingInOrgAllowed + 1030 + - bbb2f25e-0cbc-4ed0-a0ce-34444312272b + af085c42-f18e-45d6-968f-f039c421b8e9 true - Number Grouping Format + IsSharingInOrgAllowed 1033 @@ -179482,7 +193370,7 @@ false iscustomizable - true + false false false @@ -179520,85 +193408,195 @@ true true - numbergroupformat - 1900-01-01T00:00:00 + issharinginorgallowed + 2025-11-06T04:12:32.6930048 false canmodifyrequirementlevelsettings - None + SystemRequired - NumberGroupFormat + IsSharingInOrgAllowed - StringType + BooleanType - 5.0.0.0 + 9.2.0.0 false 0 - - Text - Auto - 50 - - - Text - - - false + + true + + b07697cd-c6ba-f011-bbd3-7c1e52365f30 + + + + + b27697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + + 1033 + + + d5889b02-d3c5-4062-8bdb-8101f35ebff1 + + true + + 1030 + + + + b27697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + + 1033 + + + + + + b17697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + IsSharingInOrgAllowed + 1033 + + + 9e5cadf9-f007-490c-b2ab-0ef8c5976e2d + + true + IsSharingInOrgAllowed + 1030 + + + + b17697cd-c6ba-f011-bbd3-7c1e52365f30 + + true + IsSharingInOrgAllowed + 1033 + + + + true + + false + iscustomizable + false + + false + true + organization_issharinginorgallowed + Boolean + 9.2.0.0 + + + + + + + + + + false + true + + + + 668c2eea-62b9-4568-8fff-cb8fce4f935a + + true + No + 1033 + + + e4213850-6c95-476c-bd81-cb40bae787ec + + true + Nej + 1030 + + + + 668c2eea-62b9-4568-8fff-cb8fce4f935a + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 9f2c4cb1-cec8-461e-9310-c955bcdcba37 + + true + Yes + 1033 + + + c07d5bdb-e4e3-4ed7-8fd6-16b9bbfa00d1 + + true + Ja + 1030 + + + + 9f2c4cb1-cec8-461e-9310-c955bcdcba37 + + true + Yes + 1033 + + + + 1 + + + + 0 - 100 - - 2c9fafa3-3673-41e4-b941-be651d72bd55 + + 8c910cd7-0882-43c8-9f25-17313ead92e3 - - String + issharinginorgallowed + Virtual false false false false canmodifyadditionalsettings - false + true - 142 - 1900-01-01T00:00:00 + 10136 + 2025-11-06T04:12:32.7229952 - - - 007c2e84-7ddc-4bc5-8c2d-9fef1766ee8a - - true - Symbol used for number separation in Microsoft Dynamics 365. - 1033 - - - - 007c2e84-7ddc-4bc5-8c2d-9fef1766ee8a - - true - Symbol used for number separation in Microsoft Dynamics 365. - 1033 - + + - - - 44ab830a-168d-45a7-ad91-ca06fafeee1e - - true - Number Separator - 1033 - - - - 44ab830a-168d-45a7-ad91-ca06fafeee1e - - true - Number Separator - 1033 - + + organization @@ -179606,7 +193604,7 @@ true canmodifyauditsettings - true + false false @@ -179627,7 +193625,7 @@ false isrenameable - false + true false false @@ -179639,47 +193637,36 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - numberseparator - 1900-01-01T00:00:00 + issharinginorgallowedname + 2025-11-06T04:12:32.7229952 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - NumberSeparator + issharinginorgallowedName - StringType + VirtualType - 5.0.0.0 - false - 0 - - Text - Auto - 5 - - - Text - - - false - 0 - 10 + 9.2.0.0 + true + + - ffc6af00-e740-4db0-90ed-a60909d85708 + b7bc53fd-8fd4-42b9-97d3-45f38acf96e8 Boolean @@ -179691,42 +193678,56 @@ canmodifyadditionalsettings false - 328 + 136 1900-01-01T00:00:00 - a2c16513-6659-440b-9603-76587ea692a8 + 679ccf8c-6f12-47b2-8731-e5f26baaa87a true - Indicates whether the Office Apps auto deployment is enabled for the organization. + Enable sales order processing integration. 1033 + + 5804ac5b-10d0-4cc9-aad2-804de294f8a8 + + true + Aktiver integration af salgsordrebehandling. + 1030 + - a2c16513-6659-440b-9603-76587ea692a8 + 679ccf8c-6f12-47b2-8731-e5f26baaa87a true - Indicates whether the Office Apps auto deployment is enabled for the organization. + Enable sales order processing integration. 1033 - 49ccf75d-624f-465c-a790-7ea3d2e48e51 + 7c1725d1-0f60-414a-a6ba-8cffc672960a true - Enable Office Apps Auto Deployment for this Organization + Is Sales Order Integration Enabled 1033 + + a0be5edd-1337-481a-8e50-1e3615c3c1cb + + true + Er integration af salgsordrer aktiveret? + 1030 + - 49ccf75d-624f-465c-a790-7ea3d2e48e51 + 7c1725d1-0f60-414a-a6ba-8cffc672960a true - Enable Office Apps Auto Deployment for this Organization + Is Sales Order Integration Enabled 1033 @@ -179780,41 +193781,48 @@ true true - officeappsautodeploymentenabled + issopintegrationenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - OfficeAppsAutoDeploymentEnabled + IsSOPIntegrationEnabled BooleanType - 8.0.0.0 + 5.0.0.0 false 0 false - e40a1cfd-9ed6-4c33-855a-a7b5709766e0 + ef0d10ec-557e-498b-b8e5-81f150f7440a - 1fb7a312-54d7-4fb2-8f1f-0c1d51d0f642 + 1bdfe267-8449-443d-9dcc-388b3469bc70 true - Information that specifies whether the Office Apps auto deployment is enabled for the organization. + Enable sales order processing integration. 1033 + + 093bb8c1-2593-4c6b-81eb-e7cc0d72a927 + + true + Aktiver integration af salgsordrebehandling. + 1030 + - 1fb7a312-54d7-4fb2-8f1f-0c1d51d0f642 + 1bdfe267-8449-443d-9dcc-388b3469bc70 true - Information that specifies whether the Office Apps auto deployment is enabled for the organization. + Enable sales order processing integration. 1033 @@ -179831,9 +193839,9 @@ false true - organization_officeappsautodeploymentenabled + organization_issopintegrationenabled Boolean - 8.0.0.0 + 5.0.0.0 @@ -179848,15 +193856,22 @@ - 340c3371-76ea-4442-8f11-e7b7e42bbcac + 3d932dc4-69b1-44ba-86c6-a42e0c5814a4 true No 1033 + + b9644469-6211-42e5-b27d-47df2f865f9b + + true + Nej + 1030 + - 340c3371-76ea-4442-8f11-e7b7e42bbcac + 3d932dc4-69b1-44ba-86c6-a42e0c5814a4 true No @@ -179881,15 +193896,22 @@ - 0ac2edcf-0173-4aef-92a3-f857d59320ff + 6f2ba086-c36d-4384-b92a-d60da4c500c9 true Yes 1033 + + a3ad62ea-145c-4e01-abd0-69a1881972ab + + true + Ja + 1030 + - 0ac2edcf-0173-4aef-92a3-f857d59320ff + 6f2ba086-c36d-4384-b92a-d60da4c500c9 true Yes @@ -179904,11 +193926,11 @@ 0 - - 5ebc4940-97c5-46ff-9c0f-245f096f06de + + 091944c1-1f7a-421f-8ee0-2ea6ebd18760 - String + Boolean false false false @@ -179917,172 +193939,56 @@ canmodifyadditionalsettings false - 320 + 408 1900-01-01T00:00:00 - 2f2303b1-72a5-430a-87b6-9e96bc22ddd8 + 8e6dc699-1070-4f22-a37c-4cf9d07c126f true - The url to open the Delve for the organization. + Information on whether text wrap is enabled. 1033 - - - 2f2303b1-72a5-430a-87b6-9e96bc22ddd8 - - true - The url to open the Delve for the organization. - 1033 - - - - - 4c040405-1a28-49c6-b155-af3bd80796ab + 98e769e1-2414-46b1-8893-5beaf309f871 true - The url to open the Delve - 1033 + Oplysninger om, hvorvidt tekstombrydning er aktiveret. + 1030 - 4c040405-1a28-49c6-b155-af3bd80796ab + 8e6dc699-1070-4f22-a37c-4cf9d07c126f true - The url to open the Delve + Information on whether text wrap is enabled. 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - officegraphdelveurl - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - OfficeGraphDelveUrl - - - StringType - - 8.0.0.0 - false - 0 - - Text - Auto - 1000 - - - Text - - - false - 0 - 2000 - - - e084a557-0e74-41b2-9dec-b81ec2a3b3c5 - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - true - - 260 - 1900-01-01T00:00:00 - - + + - d1bcb300-8b57-4783-8238-ea55cde389fb + b72a3c7d-b377-445f-a314-224ba36a7524 true - Enable OOB pricing calculation logic for Opportunity, Quote, Order and Invoice entities. + Enable Text Wrap 1033 - - - d1bcb300-8b57-4783-8238-ea55cde389fb - - true - Enable OOB pricing calculation logic for Opportunity, Quote, Order and Invoice entities. - 1033 - - - - - ad536f88-db06-4e16-b041-a37f7dd95dff + 40a0d26f-2971-4c00-96c7-1a60913edc85 true - Enable OOB Price calculation - 1033 + Aktivér tekstombrydning + 1030 - ad536f88-db06-4e16-b041-a37f7dd95dff + b72a3c7d-b377-445f-a314-224ba36a7524 true - Enable OOB Price calculation + Enable Text Wrap 1033 @@ -180098,7 +194004,7 @@ false iscustomizable - false + true false false @@ -180136,47 +194042,75 @@ true true - oobpricecalculationenabled + istextwrapenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - OOBPriceCalculationEnabled + IsTextWrapEnabled BooleanType - 7.0.0.0 + 9.0.0.0 false 0 true - ac05162d-f1a9-4343-b424-71c77178048f + e7f5d264-c73f-4a9d-80e5-cb54a1c7687c - 5bee131d-9f4e-443a-96cb-fcec944badd8 + bde42f4a-f5d5-4d08-9a64-0838690eb335 true - Skip OOB Price calculation + Enable or disable text wrap 1033 + + 92b7724e-7cb0-4076-b7a4-efaf329ffc77 + + true + Aktivér eller deaktiver tekstombrydning + 1030 + - 5bee131d-9f4e-443a-96cb-fcec944badd8 + bde42f4a-f5d5-4d08-9a64-0838690eb335 true - Skip OOB Price calculation + Enable or disable text wrap 1033 - - + + + 31740bb8-b36d-4f7e-b0c2-8fe3f6fd6d89 + + true + Is Text Wrap Enabled + 1033 + + + 47f1624e-5b39-4cfd-a8e2-3beaba3f29ca + + true + Er tekstombrydning aktiveret + 1030 + + + + 31740bb8-b36d-4f7e-b0c2-8fe3f6fd6d89 + + true + Is Text Wrap Enabled + 1033 + false @@ -180187,9 +194121,9 @@ false true - organization_oobpricecalculationenabled + organization_istextwrapenabled Boolean - 7.0.0.0 + 9.0.0.0 @@ -180204,15 +194138,22 @@ - 2f7d001a-06c9-4798-ab62-83804b85e17c + 46202b57-32f3-44c0-a066-0d4f7020965b true No 1033 + + fd5d58b9-93ee-4d64-a5bd-f8ec9361aaf4 + + true + Nej + 1030 + - 2f7d001a-06c9-4798-ab62-83804b85e17c + 46202b57-32f3-44c0-a066-0d4f7020965b true No @@ -180237,15 +194178,22 @@ - 78b4c65c-bbbe-4aed-a7b4-4243997c05ff + 83667be6-44db-468e-9cc6-b76454db868e true Yes 1033 + + d6781323-f169-41d1-8272-109911291bef + + true + Ja + 1030 + - 78b4c65c-bbbe-4aed-a7b4-4243997c05ff + 83667be6-44db-468e-9cc6-b76454db868e true Yes @@ -180261,7 +194209,7 @@ 0 - 94441fb2-17a0-41a4-bfe1-98897a67013b + 43f26fc7-7ff9-415c-baa1-b23cc20a4d6e Boolean @@ -180273,42 +194221,56 @@ canmodifyadditionalsettings true - 10064 - 2025-11-06T02:47:57.6669952 + 10097 + 2025-11-06T02:47:58.2269952 - adf48940-3186-4071-b8b6-d6a75ac69b25 + ed7c6bc9-6e17-46ce-84ae-025d52cc8001 true - Indicates if this organization will opt-out from automatically enabling schema v2 on the organization. + Indicates whether CUA log upload to Dataverse is enabled. 1033 + + f38c4d05-c4a9-4d06-81fe-ead69a4d4549 + + true + Indicates whether CUA log upload to Dataverse is enabled. + 1030 + - adf48940-3186-4071-b8b6-d6a75ac69b25 + ed7c6bc9-6e17-46ce-84ae-025d52cc8001 true - Indicates if this organization will opt-out from automatically enabling schema v2 on the organization. + Indicates whether CUA log upload to Dataverse is enabled. 1033 - 8828f0a9-b6e9-4444-857e-1d61737988b5 + b7c8421c-139c-4987-9b9f-8a8c35e4da7c true - Opt-out of schema v2 being automatically enabled for this organization. + Enable CUA log upload to Dataverse 1033 + + 0600dc51-67f3-47cc-bb13-6bc6ff80bd8f + + true + Enable CUA log upload to Dataverse + 1030 + - 8828f0a9-b6e9-4444-857e-1d61737988b5 + b7c8421c-139c-4987-9b9f-8a8c35e4da7c true - Opt-out of schema v2 being automatically enabled for this organization. + Enable CUA log upload to Dataverse 1033 @@ -180362,23 +194324,23 @@ true true - optoutschemav2enabledbydefault - 2025-11-06T02:47:57.6669952 + isuploadcualogtodataverseenabled + 2026-05-11T16:05:42.0899968 true canmodifyrequirementlevelsettings - SystemRequired + None - OptOutSchemaV2EnabledByDefault + IsUploadCuaLogToDataverseEnabled BooleanType - 1.5.11.0 + 1.9.27.0 false 0 - false + true 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -180391,6 +194353,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -180436,6 +194405,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -180469,6 +194445,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -180487,9 +194470,9 @@ 0 - 2befb424-ac2e-49b1-b779-8af3b7d4dc96 + f25bb0c6-09e0-476e-806c-58022745e834 - optoutschemav2enabledbydefault + isuploadcualogtodataverseenabled Virtual false false @@ -180499,8 +194482,8 @@ canmodifyadditionalsettings true - 10065 - 2025-11-06T02:47:57.68 + 10098 + 2025-11-06T02:47:58.2429952 @@ -180560,28 +194543,28 @@ false false - optoutschemav2enabledbydefaultname - 2025-11-06T02:47:57.68 + isuploadcualogtodataverseenabledname + 2025-11-06T02:47:58.2429952 true canmodifyrequirementlevelsettings None - optoutschemav2enabledbydefaultName + isuploadcualogtodataverseenabledName VirtualType - 1.5.11.0 + 1.9.27.0 true - - 1a816942-0970-440f-82e5-2358b867eb4a + + 06656503-afc5-49f4-8266-d5556bef76c1 - String + Boolean false false false @@ -180590,42 +194573,56 @@ canmodifyadditionalsettings false - 27 + 219 1900-01-01T00:00:00 - b140b506-2341-db11-898a-0007e9e17ebd + ebcebca4-3fe2-48db-8a3a-27d8018fad82 true - Prefix to use for all orders throughout Microsoft Dynamics 365. + Enable or disable auditing of user access. 1033 + + 3e3e4694-db16-4236-8706-943c7bf0574e + + true + Aktivér eller deaktiver overvågning af brugeradgang. + 1030 + - b140b506-2341-db11-898a-0007e9e17ebd + ebcebca4-3fe2-48db-8a3a-27d8018fad82 true - Prefix to use for all orders throughout Microsoft Dynamics 365. + Enable or disable auditing of user access. 1033 - eff27890-c6f9-47b3-8b48-4150a84edbbb + e5fef054-2637-479c-b4f1-82a023df1b1f true - Order Prefix + Is User Access Auditing Enabled 1033 + + 39749e2f-c1c5-417b-acda-1f660e4104ba + + true + Er overvågning af brugeradgang aktiveret + 1030 + - eff27890-c6f9-47b3-8b48-4150a84edbbb + e5fef054-2637-479c-b4f1-82a023df1b1f true - Order Prefix + Is User Access Auditing Enabled 1033 @@ -180679,39 +194676,156 @@ true true - orderprefix + isuseraccessauditenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - OrderPrefix + IsUserAccessAuditEnabled - StringType + BooleanType 5.0.0.0 false 0 - Text - Auto - 20 - - - Text - + false + + 274bb047-70dc-4a56-8596-dd735bb22928 + + + + + f936b3ae-01b1-4f71-b748-352fb9cdce85 + + true + Enable/Disable Auditing of user access + 1033 + + + 3381dc1c-ce0f-44b8-a445-42d5987833ac + + true + Aktivér/deaktiver overvågning af brugeradgang + 1030 + + + + f936b3ae-01b1-4f71-b748-352fb9cdce85 + + true + Enable/Disable Auditing of user access + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_isuseraccessauditenabled + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + dea50c57-bcbe-4928-90dd-fe2708b9132d + + true + No + 1033 + + + 429044cd-12f5-496a-bdbc-d3ff03eae4b4 + + true + Nej + 1030 + + + + dea50c57-bcbe-4928-90dd-fe2708b9132d + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + ace7cc18-e01c-4efd-a3b1-14f06453d729 + + true + Yes + 1033 + + + 8ec3871e-266b-4824-b66a-eac75325a5fd + + true + Ja + 1030 + + + + ace7cc18-e01c-4efd-a3b1-14f06453d729 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 40 - - b0adfdea-088d-48d8-87ee-e425a5299c2f + + 80c5b38a-ec16-4058-8bed-e8ad8a7317c1 - Uniqueidentifier + Picklist false false false @@ -180720,161 +194834,56 @@ canmodifyadditionalsettings false - 1 + 131 1900-01-01T00:00:00 - + 5.0.0.0 - 5152c2fa-2241-db11-898a-0007e9e17ebd + ec3fb506-2341-db11-898a-0007e9e17ebd true - Unique identifier of the organization. + Indicates whether loading of Microsoft Dynamics 365 in a browser window that does not have address, tool, and menu bars is enabled. 1033 - - - 5152c2fa-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the organization. - 1033 - - - - - fc05d2aa-244a-4a5d-a138-5bd9d78a41b3 + 521738f9-deaa-42ee-8625-42009707eda7 true - Organization - 1033 + Angiver, om indlæsning af Microsoft Dynamics 365 i et browservindue, der ikke har nogen adresse-, værktøjs- og menulinjer, er aktiveret. + 1030 - fc05d2aa-244a-4a5d-a138-5bd9d78a41b3 + ec3fb506-2341-db11-898a-0007e9e17ebd true - Organization + Indicates whether loading of Microsoft Dynamics 365 in a browser window that does not have address, tool, and menu bars is enabled. 1033 - - organization - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - true - - true - canmodifyglobalfiltersettings - false - - true - true - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - organizationid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - OrganizationId - - - UniqueidentifierType - - 5.0.0.0 - false - - - - - a0ea80b2-4504-4734-9ae3-96643ec8dbd8 - - - Picklist - false - false - false - - false - canmodifyadditionalsettings - false - - 292 - 1900-01-01T00:00:00 - - + + - e0c7f916-1f97-4965-88b5-3361436853c4 + acc95c0d-4a55-4257-a3f7-c168a4f69496 true - Indicates the organization lifecycle state + ISV Integration Mode 1033 - - - e0c7f916-1f97-4965-88b5-3361436853c4 - - true - Indicates the organization lifecycle state - 1033 - - - - - 450a6a53-c017-4d70-b9d9-dc17402ca249 + 600829d0-ddce-417a-bc1f-373021aed3d5 true - Organization State - 1033 + ISV-integrationstilstand + 1030 - 450a6a53-c017-4d70-b9d9-dc17402ca249 + acc95c0d-4a55-4257-a3f7-c168a4f69496 true - Organization State + ISV Integration Mode 1033 @@ -180921,68 +194930,61 @@ canmodifysearchsettings false - false + true false false true - false - true + true + false - organizationstate + isvintegrationcode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - OrganizationState + ISVIntegrationCode PicklistType - 9.0.0.0 + 5.0.0.0 false 0 - 0 + -1 - a0b54342-63b3-4601-abf3-d2014ae17dc9 + f797005c-57e6-4321-a127-7e83b01de025 - 05328c93-9836-4c88-8b2a-9297e6d5c9eb + 18d79d8e-b00e-48b8-a555-77f511d37035 true - Organization State, indicates if the org is being created, upgraded, updated or active + Flag that determines whether or not MSCRM should be loaded in an browser window that does not have address, tool and menu bars. 1033 - - - 05328c93-9836-4c88-8b2a-9297e6d5c9eb - - true - Organization State, indicates if the org is being created, upgraded, updated or active - 1033 - - - - - de729a8b-d2c7-4285-a075-dabb045e9723 + 6ac1b69f-511c-4f74-b4db-528b6bf8926d true - Organization State - 1033 + Flag, der bestemmer, om MSCRM skal indlæses i et browservindue, der ikke har nogen adresse-, værktøjs- og menulinjer. + 1030 - de729a8b-d2c7-4285-a075-dabb045e9723 + 18d79d8e-b00e-48b8-a555-77f511d37035 true - Organization State + Flag that determines whether or not MSCRM should be loaded in an browser window that does not have address, tool and menu bars. 1033 + + + + false @@ -180993,9 +194995,9 @@ false true - organization_organizationstate + organization_isvintegrationcode Picklist - 9.0.0.0 + 5.0.0.0 @@ -181011,18 +195013,25 @@ - 37ed30cf-36f8-4111-b1af-adce67f3de57 + 711da092-489e-408c-8534-0648ca59b2a4 true - Creating + None 1033 + + 0bbaaac2-2ad1-4e93-b26e-6203f0330f6b + + true + Ingen + 1030 + - 37ed30cf-36f8-4111-b1af-adce67f3de57 + 711da092-489e-408c-8534-0648ca59b2a4 true - Creating + None 1033 @@ -181044,18 +195053,25 @@ - 8bd71589-d7c7-4443-a346-f5bd2ea0b766 + e17c3731-d698-47f2-a138-db70a1acf772 true - Upgrading + Web 1033 + + 8d06e029-7b7a-4041-8d65-bf28a8fe4148 + + true + Web + 1030 + - 8bd71589-d7c7-4443-a346-f5bd2ea0b766 + e17c3731-d698-47f2-a138-db70a1acf772 true - Upgrading + Web 1033 @@ -181077,18 +195093,25 @@ - d23b76ad-fc31-4aa9-bce4-e44b353554b4 + 839e0227-2cc6-46fb-b1f1-9f139cc4d856 true - Updating + Outlook Workstation Client 1033 + + 57451b6d-476f-488d-b68f-9441404dd125 + + true + Outlook-arbejdsstationsklient + 1030 + - d23b76ad-fc31-4aa9-bce4-e44b353554b4 + 839e0227-2cc6-46fb-b1f1-9f139cc4d856 true - Updating + Outlook Workstation Client 1033 @@ -181110,18 +195133,25 @@ - 93a5c554-e8e8-4085-ae6a-0877b32dd95b + 1e9ac49f-1878-49be-b7bd-5545bc5f447a true - Active + Web; Outlook Workstation Client 1033 + + 4eb3a843-2947-4db9-803b-46a7a739e62e + + true + Web; Outlook-arbejdsstationsklient + 1030 + - 93a5c554-e8e8-4085-ae6a-0877b32dd95b + 1e9ac49f-1878-49be-b7bd-5545bc5f447a true - Active + Web; Outlook Workstation Client 1033 @@ -181129,6 +195159,166 @@ 3 + + + + + + + + + + false + true + + + + 5cf7fd20-98ff-4f9d-93aa-5d2b563790df + + true + Outlook Laptop Client + 1033 + + + a2dd2835-84f6-431a-9046-73a4ece25f4c + + true + Outlook-klient til bærbare computere + 1030 + + + + 5cf7fd20-98ff-4f9d-93aa-5d2b563790df + + true + Outlook Laptop Client + 1033 + + + + 4 + + + + + + + + + + + + false + true + + + + f6b1500b-4d5a-4486-8f51-7017675186a4 + + true + Web; Outlook Laptop Client + 1033 + + + 1a90af8b-b832-4572-b568-97274cfbb1d5 + + true + Web; Outlook-klient til bærbare computere + 1030 + + + + f6b1500b-4d5a-4486-8f51-7017675186a4 + + true + Web; Outlook Laptop Client + 1033 + + + + 5 + + + + + + + + + + + + false + true + + + + eed001c9-eccf-42d3-9e9a-3f0a5352dc01 + + true + Outlook + 1033 + + + 1baefc10-d8bf-4342-bdd2-9bd70978f7c1 + + true + Outlook + 1030 + + + + eed001c9-eccf-42d3-9e9a-3f0a5352dc01 + + true + Outlook + 1033 + + + + 6 + + + + + + + + + + + + false + true + + + + c0cc421d-7cb6-4c08-990c-884d2b7616c8 + + true + All + 1033 + + + a95b57d7-ad7b-4ed0-97ed-902f8522a51f + + true + Alle + 1030 + + + + c0cc421d-7cb6-4c08-990c-884d2b7616c8 + + true + All + 1033 + + + + 7 + + @@ -181138,185 +195328,69 @@ - - b1c70485-ba33-4c5f-8710-5446e3f68ca7 + + a15b59b5-47c2-4189-9fc6-e6726d63af1d - String + Boolean false false false false canmodifyadditionalsettings - false + true - 218 - 1900-01-01T00:00:00 + 10092 + 2025-11-06T02:47:58.1500032 - 1f9a4fa5-c029-4f7e-b2c2-2c63194c3d11 + 7cdcd4f8-9e57-454c-94d9-647852f720bb true - Organization settings stored in Organization Database. + Indicates whether Power Automate savings feature is enabled for WorkQueue. 1033 - - - 1f9a4fa5-c029-4f7e-b2c2-2c63194c3d11 - - true - Organization settings stored in Organization Database. - 1033 - - - - - 743c5d19-6825-4bcb-ab04-3e467658d86e + a2a8d165-ce63-4390-8b18-9b27554ef6b2 true - Organization Database Organization Settings - 1033 + Indicates whether Power Automate savings feature is enabled for WorkQueue. + 1030 - 743c5d19-6825-4bcb-ab04-3e467658d86e + 7cdcd4f8-9e57-454c-94d9-647852f720bb true - Organization Database Organization Settings + Indicates whether Power Automate savings feature is enabled for WorkQueue. 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - orgdborgsettings - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - OrgDbOrgSettings - - - StringType - - 5.0.0.0 - false - 0 - - Text - Auto - 1073741823 - - - Text - - - false - 0 - -1 - - - 7b224cee-2f9b-48d7-867b-497734cc6e3d - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 379 - 1900-01-01T00:00:00 - - + + - e74a84de-dfb9-4fac-875e-534545943d27 + 17ae992b-a964-4c9f-8f56-74f7e2b0af54 true - Select whether to turn on OrgInsights for the organization. + Enable Power Automate savings feature for WorkQueue 1033 - - - e74a84de-dfb9-4fac-875e-534545943d27 - - true - Select whether to turn on OrgInsights for the organization. - 1033 - - - - - 340c8320-6974-461f-aa0e-5ad2606796b5 + dbf93365-6478-47d6-95d7-8350280d6016 true - Enable OrgInsights for this Organization - 1033 + Enable Power Automate savings feature for WorkQueue + 1030 - 340c8320-6974-461f-aa0e-5ad2606796b5 + 17ae992b-a964-4c9f-8f56-74f7e2b0af54 true - Enable OrgInsights for this Organization + Enable Power Automate savings feature for WorkQueue 1033 @@ -181347,7 +195421,7 @@ false isrenameable - false + true false false @@ -181359,7 +195433,7 @@ false - false + true canmodifysearchsettings false @@ -181370,23 +195444,23 @@ true true - orginsightsenabled - 1900-01-01T00:00:00 + isworkqueuesavingsenabled + 2026-05-11T16:05:41.8700032 - false + true canmodifyrequirementlevelsettings SystemRequired - OrgInsightsEnabled + IsWorkQueueSavingsEnabled BooleanType - 8.1.0.0 + 1.9.17.0 false 0 - false + true 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -181399,6 +195473,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -181444,6 +195525,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -181477,6 +195565,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -181491,11 +195586,102 @@ - + 0 + + ee4d4f9a-1351-454e-88e5-c3282041f573 + + isworkqueuesavingsenabled + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10093 + 2025-11-06T02:47:58.1670016 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + isworkqueuesavingsenabledname + 2025-11-06T02:47:58.1670016 + + true + canmodifyrequirementlevelsettings + None + + isworkqueuesavingsenabledName + + + VirtualType + + 1.9.17.0 + true + + + - a7fe3349-8cc2-4262-905d-97f8b2bd1942 + 9f5b8cab-562f-42f2-937f-02270985e267 Boolean @@ -181505,44 +195691,58 @@ false canmodifyadditionalsettings - false + true - 451 - 2025-11-06T00:19:21.2899968 + 461 + 2025-11-06T00:19:22.0269952 - 4da6afe0-2b43-4f8d-8a81-a4acd25a0cb6 + da93e189-ab22-438e-8fd7-02b6e51dbcc0 true - Indicates whether Preview feature has been enabled for the organization. + Indicates whether Write-in Products can be added to Opportunity/Quote/Order/Invoice or not. 1033 + + c771cf8c-ef51-4042-877c-c81791d4e768 + + true + Angiver, om produkter, der skal rekvireres, kan føjes til salgsmulighed/tilbud/ordre/faktura eller ej. + 1030 + - 4da6afe0-2b43-4f8d-8a81-a4acd25a0cb6 + da93e189-ab22-438e-8fd7-02b6e51dbcc0 true - Indicates whether Preview feature has been enabled for the organization. + Indicates whether Write-in Products can be added to Opportunity/Quote/Order/Invoice or not. 1033 - fe71bcca-251d-465e-8c72-3be96c73cbf4 + 9e49909d-7600-4608-9d72-351f08bf9d3f true - Display Preview Feature for this organization + Indicates whether Write-in Products can be added to Opportunity/Quote/Order/Invoice or not 1033 + + 8d560ccd-3296-421b-a738-9d2cc1802bb9 + + true + Angiver, om produkter, der skal rekvireres, kan føjes til salgsmulighed/tilbud/ordre/faktura eller ej + 1030 + - fe71bcca-251d-465e-8c72-3be96c73cbf4 + 9e49909d-7600-4608-9d72-351f08bf9d3f true - Display Preview Feature for this organization + Indicates whether Write-in Products can be added to Opportunity/Quote/Order/Invoice or not 1033 @@ -181558,7 +195758,7 @@ false iscustomizable - true + false false false @@ -181596,14 +195796,14 @@ true true - paipreviewscenarioenabled - 2025-11-06T00:19:21.2899968 + iswriteinproductsallowed + 2025-11-06T00:19:22.0269952 false canmodifyrequirementlevelsettings SystemRequired - PaiPreviewScenarioEnabled + IsWriteInProductsAllowed BooleanType @@ -181625,6 +195825,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -181670,6 +195877,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -181703,6 +195917,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -181721,7 +195942,7 @@ 0 - d42a688b-75f0-4dac-91ba-0c5b8046e93e + b5978001-5a12-4c3b-874b-5a1022398257 String @@ -181733,42 +195954,56 @@ canmodifyadditionalsettings false - 110 + 371 1900-01-01T00:00:00 - 6d26e7d6-2241-db11-898a-0007e9e17ebd + 3a2d141d-80e6-4570-a88b-1586d984c061 true - Prefix used for parsed table columns. + Type the prefix to use for all knowledge articles in Microsoft Dynamics 365. 1033 + + d7bff39f-a6ef-4586-9376-0dc4c6200caa + + true + Skriv præfikset, der skal bruges til alle videnartikler i Microsoft Dynamics 365. + 1030 + - 6d26e7d6-2241-db11-898a-0007e9e17ebd + 3a2d141d-80e6-4570-a88b-1586d984c061 true - Prefix used for parsed table columns. + Type the prefix to use for all knowledge articles in Microsoft Dynamics 365. 1033 - ec3c986d-b9b2-4e3e-bf59-814113d071c3 + 575a68ea-a5d6-4c3e-afc7-d5eef471c6fa true - Parsed Table Column Prefix + Knowledge Article Prefix 1033 + + 65549205-ad08-44b4-ab56-04441b21e884 + + true + Vidensartikelpræfiks + 1030 + - ec3c986d-b9b2-4e3e-bf59-814113d071c3 + 575a68ea-a5d6-4c3e-afc7-d5eef471c6fa true - Parsed Table Column Prefix + Knowledge Article Prefix 1033 @@ -181815,26 +196050,26 @@ canmodifysearchsettings false - false + true false false true - false + true true - parsedtablecolumnprefix + kaprefix 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - ParsedTableColumnPrefix + KaPrefix StringType - 5.0.0.0 + 8.0.0.0 false 0 @@ -181851,7 +196086,7 @@ 40 - d8cb6590-d24c-41d9-8674-bcd8656a4c4b + 0e789e56-89ff-4e0a-823a-a955b536736f String @@ -181863,42 +196098,56 @@ canmodifyadditionalsettings false - 106 + 19 1900-01-01T00:00:00 - 349af6ca-2241-db11-898a-0007e9e17ebd + a097ba00-2341-db11-898a-0007e9e17ebd true - Prefix used for parsed tables. + Prefix to use for all articles in Microsoft Dynamics 365. 1033 + + ae34fffc-531b-4efc-8309-e5aef3666ed5 + + true + Præfiks til brug med alle artikler i Microsoft Dynamics 365. + 1030 + - 349af6ca-2241-db11-898a-0007e9e17ebd + a097ba00-2341-db11-898a-0007e9e17ebd true - Prefix used for parsed tables. + Prefix to use for all articles in Microsoft Dynamics 365. 1033 - e9212ef5-a681-444f-8e43-2c30db70769c + 147353bb-94f0-4bff-ad35-a6569c7b0ea3 true - Parsed Table Prefix + Article Prefix 1033 + + c988057c-e0d7-4671-a79e-05ac137d4627 + + true + Artikelpræfiks + 1030 + - e9212ef5-a681-444f-8e43-2c30db70769c + 147353bb-94f0-4bff-ad35-a6569c7b0ea3 true - Parsed Table Prefix + Article Prefix 1033 @@ -181945,21 +196194,21 @@ canmodifysearchsettings false - false + true false false true - false + true true - parsedtableprefix + kbprefix 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - ParsedTablePrefix + KbPrefix StringType @@ -181980,11 +196229,11 @@ 0 40 - - 6e995162-9436-4d85-bd07-0725d7bf3e76 + + b16881ba-3893-4a45-96e0-4f94998d597c - Integer + String false false false @@ -181993,166 +196242,56 @@ canmodifyadditionalsettings false - 169 + 279 1900-01-01T00:00:00 - 95189a0b-8137-44e5-b1f7-27b8c5e488e7 + 9ff5cef5-5f4c-4893-b727-717c94fde1f0 true - Specifies the maximum number of months in past for which the recurring activities can be created. + XML string containing the Knowledge Management settings that are applied in Knowledge Management Wizard. 1033 - - - 95189a0b-8137-44e5-b1f7-27b8c5e488e7 - - true - Specifies the maximum number of months in past for which the recurring activities can be created. - 1033 - - - - - 661666a0-1775-4aa8-b652-c0f77f920466 + d57ba9cd-65fc-48cc-b7d7-38144b91888c true - Past Expansion Window - 1033 + XML-streng, der indeholder de indstillinger for vidensstyring, der anvendes i guiden Vidensstyring. + 1030 - 661666a0-1775-4aa8-b652-c0f77f920466 + 9ff5cef5-5f4c-4893-b727-717c94fde1f0 true - Past Expansion Window + XML string containing the Knowledge Management settings that are applied in Knowledge Management Wizard. 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - pastexpansionwindow - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - PastExpansionWindow - - - IntegerType - - 5.0.0.0 - false - 0 - - None - 120 - 1 - - 0 - - - cc01d4c2-3738-42a9-8879-0a93596d812f - - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 10208 - 2025-11-06T06:14:32.7529984 - - + + - 80fe0b49-129c-42ff-8a59-96e414bd402d + c1dda368-cddd-4f49-b297-1bc439a3e04b true - Leave empty to use default setting. Set to on/off to enable/disable replacement of default grids with modern ones in model-driven apps. + Knowledge Management Settings 1033 - - - 80fe0b49-129c-42ff-8a59-96e414bd402d - - true - Leave empty to use default setting. Set to on/off to enable/disable replacement of default grids with modern ones in model-driven apps. - 1033 - - - - - b1b5797e-e330-4bdf-ae5e-5fbb16afb257 + 0ade9214-aaf7-4d5b-bf10-06ec0c7a9e0b true - Enable modern grids in model-driven apps - 1033 + Indstillinger for vidensstyring + 1030 - b1b5797e-e330-4bdf-ae5e-5fbb16afb257 + c1dda368-cddd-4f49-b297-1bc439a3e04b true - Enable modern grids in model-driven apps + Knowledge Management Settings 1033 @@ -182162,13 +196301,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -182197,48 +196336,48 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - pcfdatasetgridenabled - 2025-11-06T06:14:32.7529984 + kmsettings + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - PcfDatasetGridEnabled + KMSettings StringType - 9.1.0.0 + 7.1.0.0 false 0 - + Text Auto - 16 + 1073741823 Text - + false 0 - 16 + -1 - - e4a74aa2-d81c-4edb-80b2-fc6750516834 + + edf31550-c2f8-4a5e-903b-30d336dd2712 - DateTime + Integer false false false @@ -182247,173 +196386,56 @@ canmodifyadditionalsettings false - 10166 - 2025-11-06T05:07:58.6070016 + 37 + 1900-01-01T00:00:00 - 0bd58117-b8a0-4ba8-b81c-65dd1e134424 + 6ee9af0c-2341-db11-898a-0007e9e17ebd true - This setting contains the date time before an ACT sync can execute. + Preferred language for the organization. 1033 - - - 0bd58117-b8a0-4ba8-b81c-65dd1e134424 - - true - This setting contains the date time before an ACT sync can execute. - 1033 - - - - - dbac7723-0b09-4eb7-81ad-d705168f6f25 + bfaec348-1a58-4f5e-b8cd-cdac57812464 true - PerformACTSyncAfter - 1033 + Foretrukket sprog i organisationen. + 1030 - dbac7723-0b09-4eb7-81ad-d705168f6f25 + 6ee9af0c-2341-db11-898a-0007e9e17ebd true - PerformACTSyncAfter + Preferred language for the organization. 1033 - - organization - - - - true - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - performactsyncafter - 2025-11-06T05:07:58.6070016 - - false - canmodifyrequirementlevelsettings - None - - PerformACTSyncAfter - - - DateTimeType - - 9.2.0.0 - false - 0 - - DateAndTime - Auto - - 0 - - true - canmodifybehavior - true - - - UserLocal - - - - 13b8978c-dcee-4f60-bfe5-d5211601512f - - - Memo - false - false - false - - false - canmodifyadditionalsettings - false - - 73 - 1900-01-01T00:00:00 - - + + - ce63cfee-2241-db11-898a-0007e9e17ebd + 4e3a4fad-ed5f-4028-a200-bcd447b6015b true - For internal use only. + Language 1033 - - - ce63cfee-2241-db11-898a-0007e9e17ebd - - true - For internal use only. - 1033 - - - - - c2a0dc02-f2d4-434f-877e-2f44f0caf060 + 0685e95e-725e-4e11-9ae8-94f0328fffe8 true - Picture - 1033 + Sprog + 1030 - c2a0dc02-f2d4-434f-877e-2f44f0caf060 + 4e3a4fad-ed5f-4028-a200-bcd447b6015b true - Picture + Language 1033 @@ -182421,9 +196443,9 @@ - false + true canmodifyauditsettings - false + true false @@ -182464,38 +196486,36 @@ false false true - true + false true - picture + languagecode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Picture + LanguageCode - MemoType + IntegerType 5.0.0.0 false - + 0 - TextArea - Auto - 1073741823 - - TextArea - - false + Locale + 2147483647 + 0 + + 0 - - f414ccc2-e53f-43c2-be2f-3f621771c12a + + 258a8212-4065-4957-b7df-9a9d0669a48a - - Integer + languagecode + Virtual false false false @@ -182504,7 +196524,7 @@ canmodifyadditionalsettings false - 217 + 47 1900-01-01T00:00:00 @@ -182521,13 +196541,13 @@ false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -182562,33 +196582,28 @@ false false true - true - true + false + false - pinpointlanguagecode + languagecodename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - PinpointLanguageCode + LanguageCodeName - IntegerType + VirtualType 5.0.0.0 - false - 0 + true + - Locale - 2147483647 - 0 - - 0 - bc73698f-b296-40e2-948a-565dfd9fc070 + 09368252-ebbb-43dc-9213-686a8d51346e Picklist @@ -182600,42 +196615,56 @@ canmodifyadditionalsettings false - 303 - 1900-01-01T00:00:00 + 10237 + 2025-11-06T07:35:38.8130048 - 563482da-57c5-40e3-b52c-ae1160b22f74 + e2c4e7f0-e1b3-409d-9977-9ccbe328a979 true - Plug-in Trace Log Setting for the Organization. + Show legacy app for admins 1033 + + abcb3c3d-73c6-4a20-9318-74d5f7b5cb1a + + true + Vis ældre app til administratorer + 1030 + - 563482da-57c5-40e3-b52c-ae1160b22f74 + e2c4e7f0-e1b3-409d-9977-9ccbe328a979 true - Plug-in Trace Log Setting for the Organization. + Show legacy app for admins 1033 - aa2882c8-d2a3-41d6-afe7-0105be419e9e + 98b6691b-0894-456a-9c66-01aa4477d55e true - Plug-in Trace Log Setting + Show legacy app for admins 1033 + + f6c4a703-7a73-4288-b1be-e1595476be7c + + true + Vis ældre app til administratorer + 1030 + - aa2882c8-d2a3-41d6-afe7-0105be419e9e + 98b6691b-0894-456a-9c66-01aa4477d55e true - Plug-in Trace Log Setting + Show legacy app for admins 1033 @@ -182645,18 +196674,18 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false - true + false canmodifyglobalfiltersettings false @@ -182673,7 +196702,7 @@ false false - true + false canmodifyissortablesettings false @@ -182683,66 +196712,94 @@ false true - false - false + true + true true true true - plugintracelogsetting - 1900-01-01T00:00:00 + legacyapptoggle + 2026-05-21T19:27:16.8700032 false canmodifyrequirementlevelsettings - SystemRequired + None - PluginTraceLogSetting + LegacyAppToggle PicklistType - 7.1.0.0 + 9.1.0.0 false 0 0 - ea5d70fe-73c8-4896-9d28-0f7fc1d65111 + 84415f2f-e3ba-f011-bbd3-7c1e52365f30 - ba049e06-8a72-41bc-86e8-3b2bea305e4f + 86415f2f-e3ba-f011-bbd3-7c1e52365f30 true - Plug-in Trace Log Setting for the Organization. + Show legacy app for admins 1033 + + 47655b14-908f-4cb9-9b63-12ea7bbfca00 + + true + Vis ældre app til administratorer + 1030 + - ba049e06-8a72-41bc-86e8-3b2bea305e4f + 86415f2f-e3ba-f011-bbd3-7c1e52365f30 true - Plug-in Trace Log Setting for the Organization. + Show legacy app for admins 1033 - - + + + 85415f2f-e3ba-f011-bbd3-7c1e52365f30 + + true + Show legacy app for admins + 1033 + + + c3b2a6e6-9d19-4ae4-94ee-20c8e29be47d + + true + Vis ældre app til administratorer + 1030 + + + + 85415f2f-e3ba-f011-bbd3-7c1e52365f30 + + true + Show legacy app for admins + 1033 + - false + true false iscustomizable - true + false false true - organization_plugintracelogsetting + organization_legacyapptoggle Picklist - 7.1.0.0 + 9.1.0.0 @@ -182758,18 +196815,25 @@ - f06bd669-010e-4ff6-a2c9-98b9e39009fd + 57addaf8-6ffb-47e9-88f7-a482ac72dcf7 true - Off + Auto 1033 + + 179b9529-bac3-4c24-b12f-b985b8edb476 + + true + Automatisk + 1030 + - f06bd669-010e-4ff6-a2c9-98b9e39009fd + 57addaf8-6ffb-47e9-88f7-a482ac72dcf7 true - Off + Auto 1033 @@ -182791,18 +196855,25 @@ - 85fa09ba-cbc2-488e-b5d8-f81128584d35 + 5edf82b7-f0b2-4df7-af0c-098b6f8cc848 true - Exception + On 1033 + + 1cc78eef-222c-4b19-9517-826ccb2442bd + + true + Til + 1030 + - 85fa09ba-cbc2-488e-b5d8-f81128584d35 + 5edf82b7-f0b2-4df7-af0c-098b6f8cc848 true - Exception + On 1033 @@ -182824,18 +196895,25 @@ - 78fd62c6-c48c-490a-8455-a9d719c19355 + 26df991f-2281-444c-b81a-7608eed63aa9 true - All + Off 1033 + + 62e2d7f5-d128-446e-bf6c-ed8342c3b037 + + true + Fra + 1030 + - 78fd62c6-c48c-490a-8455-a9d719c19355 + 26df991f-2281-444c-b81a-7608eed63aa9 true - All + Off 1033 @@ -182847,26 +196925,26 @@ - + 0 - 8f447b60-97e4-444e-ba2d-b591c6f0cd1a + d2527cc4-8b0e-4962-9806-73058d5244d9 - plugintracelogsetting + legacyapptoggle Virtual false false false - false + true canmodifyadditionalsettings - false + true - 304 - 1900-01-01T00:00:00 + 10238 + 2025-11-06T07:35:38.8300032 @@ -182880,15 +196958,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -182897,13 +196975,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -182915,7 +196993,7 @@ false - false + true canmodifysearchsettings false @@ -182926,28 +197004,28 @@ false false - plugintracelogsettingname - 1900-01-01T00:00:00 + legacyapptogglename + 2025-11-06T07:35:38.8300032 - false + true canmodifyrequirementlevelsettings None - PluginTraceLogSettingName + legacyapptoggleName VirtualType - 7.1.0.0 + 9.1.0.0 true - + - - fc5fdbbf-1625-49d0-8538-9ac31b2fa722 + + 433af445-c35c-4041-acb9-136597391ee4 - String + Integer false false false @@ -182956,42 +197034,56 @@ canmodifyadditionalsettings false - 137 + 109 1900-01-01T00:00:00 - 6340039b-a85f-43fc-9fb7-44f491128cf0 + de897eab-26e7-4149-8f1d-38d4cfc37d59 true - PM designator to use throughout Microsoft Dynamics 365. + Unique identifier of the locale of the organization. 1033 + + bef995d6-b14f-445d-8add-befedf2d6b53 + + true + Entydigt id for organisationens landestandard. + 1030 + - 6340039b-a85f-43fc-9fb7-44f491128cf0 + de897eab-26e7-4149-8f1d-38d4cfc37d59 true - PM designator to use throughout Microsoft Dynamics 365. + Unique identifier of the locale of the organization. 1033 - 19c21fd9-746f-40ca-a6fd-64e2388bfda0 + d6de6b3c-0889-4d76-ae9b-677a67b193e9 true - PM Designator + Locale 1033 + + a36de19a-92db-4337-a8b3-28626d569b40 + + true + Landestandard + 1030 + - 19c21fd9-746f-40ca-a6fd-64e2388bfda0 + d6de6b3c-0889-4d76-ae9b-677a67b193e9 true - PM Designator + Locale 1033 @@ -183045,39 +197137,33 @@ true true - pmdesignator + localeid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - PMDesignator + LocaleId - StringType + IntegerType 5.0.0.0 false 0 - Text - Auto - 25 - - - Text - + Locale + 2147483647 + 0 - false 0 - 50 - - 0a61dc76-ce7d-405a-b797-a19bd48a8bf6 + + 34ccc1d4-f5bb-41a9-abbc-63cb5f522ca0 - String + Integer false false false @@ -183086,42 +197172,56 @@ canmodifyadditionalsettings false - 405 + 102 1900-01-01T00:00:00 - 7d05a871-16c8-4f2b-8a69-55290ca092d1 + b92c1a70-649e-4cee-bb7f-a6a4ea232acc true - For internal use only. + Information that specifies how the Long Date format is displayed in Microsoft Dynamics 365. 1033 + + b176c2fb-50ef-4990-beb5-659dcf54ccfa + + true + Oplysninger, der angiver, hvordan det lange datoformat vises i Microsoft Dynamics 365. + 1030 + - 7d05a871-16c8-4f2b-8a69-55290ca092d1 + b92c1a70-649e-4cee-bb7f-a6a4ea232acc true - For internal use only. + Information that specifies how the Long Date format is displayed in Microsoft Dynamics 365. 1033 - 0a2be922-e2d8-4c66-99c2-62ebb0cd2657 + ccac388c-972c-423b-9392-5f57d7d50262 true - For internal use only. + Long Date Format 1033 + + 4f2f4439-c5a5-4d63-a3ae-5a70a705ee61 + + true + Langt datoformat + 1030 + - 0a2be922-e2d8-4c66-99c2-62ebb0cd2657 + ccac388c-972c-423b-9392-5f57d7d50262 true - For internal use only. + Long Date Format 1033 @@ -183175,39 +197275,33 @@ true true - postmessagewhitelistdomains + longdateformatcode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - PostMessageWhitelistDomains + LongDateFormatCode - StringType + IntegerType - 8.2.0.0 + 5.0.0.0 false 0 - Text - Auto - 500 - - - Text - + None + 2147483647 + -2147483648 - false 0 - 1000 - - d6bf0418-08c1-432c-adac-fd768fa14aa9 + + 2ad9b7f2-3e1f-4eb0-8f57-5bb138b8efd1 - Boolean + Integer false false false @@ -183216,42 +197310,56 @@ canmodifyadditionalsettings false - 10036 - 2025-11-06T02:32:44.4300032 + 10168 + 2025-11-06T06:05:19.7369984 - 6d3c7e96-43be-4283-aef9-51ed3568cca2 + ea793c46-e13d-46c3-a11c-9f8be30ed139 true - Indicates whether bot for makers is enabled. + Minimum number of characters that should be entered in the lookup control before resolving for suggestions 1033 + + 1c131f1f-f302-405f-b6b6-4779e628b29d + + true + Det mindste antal tegn, som kan angives i opslagskontrolelementet, før forslag løses + 1030 + - 6d3c7e96-43be-4283-aef9-51ed3568cca2 + ea793c46-e13d-46c3-a11c-9f8be30ed139 true - Indicates whether bot for makers is enabled. + Minimum number of characters that should be entered in the lookup control before resolving for suggestions 1033 - f894c23c-a26e-4701-a38c-0574154e291c + 8c775a0a-be22-46c6-b1e5-bec6a811325b true - Enable bot for makers. + Minimum number of characters before resolving suggestions in lookup 1033 + + db563b61-40e7-4628-9765-cfbb6f4658d1 + + true + Minimum antal tegn før løsning af forslag i opslag + 1030 + - f894c23c-a26e-4701-a38c-0574154e291c + 8c775a0a-be22-46c6-b1e5-bec6a811325b true - Enable bot for makers. + Minimum number of characters before resolving suggestions in lookup 1033 @@ -183299,159 +197407,99 @@ true true - true - true + false + false true true true - powerappsmakerbotenabled - 2025-11-06T02:32:44.4300032 + lookupcharactercountbeforeresolve + 2025-11-06T06:05:19.7369984 false canmodifyrequirementlevelsettings None - PowerAppsMakerBotEnabled + LookupCharacterCountBeforeResolve - BooleanType + IntegerType 9.1.0.0 false 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + 0 0 - - 1d5d98e9-a8bf-4cee-96e7-63e33b2fc613 + + 7169d3e6-2317-4838-b6b5-412af660f1a4 - powerappsmakerbotenabled - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true + false - 10037 - 2025-11-06T02:32:44.4600064 + 10169 + 2025-11-06T06:05:19.7830016 - - + + + 88208b69-685d-49e9-8456-5dd07c7afd16 + + true + Minimum delay (in milliseconds) between consecutive inputs in a lookup control that will trigger a search for suggestions + 1033 + + + 052c72f5-f66d-448b-a934-504934fa5b13 + + true + Minimum forsinkelse (i millisekunder) mellem fortløbende input i et opslagskontrolelement, der udløser en søgning efter forslag + 1030 + + + + 88208b69-685d-49e9-8456-5dd07c7afd16 + + true + Minimum delay (in milliseconds) between consecutive inputs in a lookup control that will trigger a search for suggestions + 1033 + - - + + + ab328d5c-042c-46e4-9851-147ba751945c + + true + Minimum delay (in milliseconds) for debouncing lookup control input + 1033 + + + fb53861f-1df1-4ccc-ab6d-4d78458df301 + + true + Minimum forsinkelse (i millisekunder) for fjernelse af forhindringer til input til opslagsstyring + 1030 + + + + ab328d5c-042c-46e4-9851-147ba751945c + + true + Minimum delay (in milliseconds) for debouncing lookup control input + 1033 + organization @@ -183463,9 +197511,9 @@ false - true + false iscustomizable - true + false false false @@ -183474,13 +197522,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -183492,39 +197540,44 @@ false - true + false canmodifysearchsettings - false + true - false + true false false true - false - false + true + true - powerappsmakerbotenabledname - 2025-11-06T02:32:44.4600064 + lookupresolvedelayms + 2025-11-06T06:05:19.7830016 - true + false canmodifyrequirementlevelsettings None - powerappsmakerbotenabledName + LookupResolveDelayMS - VirtualType + IntegerType 9.1.0.0 - true - + false + 0 + None + 2147483647 + 250 + + 0 - - 9d768c78-e771-4ab3-9c99-dbe31928de54 + + 4b4d2c37-1d46-4d8a-bde6-c7037452cdac - Boolean + Integer false false false @@ -183533,42 +197586,56 @@ canmodifyadditionalsettings false - 10245 - 2025-11-06T09:06:31.8499968 + 306 + 1900-01-01T00:00:00 - 7f44a2f4-72fd-4314-88ed-5c1924242114 + 06a6b43b-23cb-4346-b467-16aab425c3af true - Indicates whether cross region operations are allowed for the organization + Lower Threshold For Mailbox Intermittent Issue. 1033 + + 99dcdcd3-fb19-48cc-b343-73fc6c4d34ad + + true + Lavere tærskel for midlertidigt postkasseproblem. + 1030 + - 7f44a2f4-72fd-4314-88ed-5c1924242114 + 06a6b43b-23cb-4346-b467-16aab425c3af true - Indicates whether cross region operations are allowed for the organization + Lower Threshold For Mailbox Intermittent Issue. 1033 - 9fe16c30-6c53-416d-8770-93d21d59695e + ecd90c0d-2716-452f-88e2-a25070f3b9c4 true - Power BI allow cross region operations + Lower Threshold For Mailbox Intermittent Issue 1033 + + 485c1f80-24a5-4abf-a51d-fb5efc6318ae + + true + Lavere tærskel for midlertidigt postkasseproblem + 1030 + - 9fe16c30-6c53-416d-8770-93d21d59695e + ecd90c0d-2716-452f-88e2-a25070f3b9c4 true - Power BI allow cross region operations + Lower Threshold For Mailbox Intermittent Issue 1033 @@ -183578,13 +197645,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -183613,162 +197680,102 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - powerbiallowcrossregionoperations - 2025-11-06T09:06:31.8499968 + mailboxintermittentissueminrange + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - PowerBIAllowCrossRegionOperations + MailboxIntermittentIssueMinRange - BooleanType + IntegerType - 9.1.0.0 + 7.1.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + None + 2147483647 + -2147483648 + 0 - - c94193e3-471f-4f22-8ce2-e816508c1dcf + + d0f82c23-c7d6-400c-8c1d-6b47de1aae1d - powerbiallowcrossregionoperations - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true + false - 10246 - 2025-11-06T09:06:31.8669952 + 307 + 1900-01-01T00:00:00 - - + + + d0151150-9ac6-4a26-a9db-0a76fed9c670 + + true + Lower Threshold For Mailbox Permanent Issue. + 1033 + + + 45ec0a22-5794-4f85-ade0-c897dede5e94 + + true + Lavere tærskel for permanent postkasseproblem. + 1030 + + + + d0151150-9ac6-4a26-a9db-0a76fed9c670 + + true + Lower Threshold For Mailbox Permanent Issue. + 1033 + - - + + + 77c920b4-4fbd-4c24-9900-c940ad26fb4b + + true + Lower Threshold For Mailbox Permanent Issue. + 1033 + + + 6fc78e8f-b0a8-4980-9f2f-34ea92e9738f + + true + Lavere tærskel for permanent postkasseproblem. + 1030 + + + + 77c920b4-4fbd-4c24-9900-c940ad26fb4b + + true + Lower Threshold For Mailbox Permanent Issue. + 1033 + organization @@ -183776,11 +197783,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -183791,13 +197798,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -183809,39 +197816,44 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - powerbiallowcrossregionoperationsname - 2025-11-06T09:06:31.8669952 + mailboxpermanentissueminrange + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - powerbiallowcrossregionoperationsName + MailboxPermanentIssueMinRange - VirtualType + IntegerType - 9.1.0.0 - true - - + 7.1.0.0 + false + 0 + + None + 2147483647 + -2147483648 + + 0 - - 23c450db-4962-493b-8581-49bd93b12e97 + + e1a83407-9a82-4783-959e-11192fb404b3 - Boolean + Integer false false false @@ -183850,42 +197862,56 @@ canmodifyadditionalsettings false - 10243 - 2025-11-06T09:06:31.8169984 + 421 + 2025-11-06T00:19:19.9469952 - 480d9ed9-46b9-4d64-bad3-8874fd9f4eb8 + c5ecee9a-f542-4f90-901a-1315bd8e47cb true - Indicates whether automatic permissions assignment to Power BI has been enabled for the organization + Maximum number of actionsteps allowed in a BPF 1033 + + 5092d6c3-5031-406e-8077-e096a06a9a92 + + true + Det maksimale antal handlingstrin, der er tilladt i et forretningsprocesforløb + 1030 + - 480d9ed9-46b9-4d64-bad3-8874fd9f4eb8 + c5ecee9a-f542-4f90-901a-1315bd8e47cb true - Indicates whether automatic permissions assignment to Power BI has been enabled for the organization + Maximum number of actionsteps allowed in a BPF 1033 - aeace038-8f64-4a8e-ae83-0da283d9fcbb + e23fc5ef-9c0b-4a10-9338-f8990ae0d2fc true - Power BI automatic permissions assignment + Maximum number of actionsteps allowed in a BPF 1033 + + 62e4402d-d80e-4dc8-8d02-5887e775c3e4 + + true + Det maksimale antal handlingstrin, der er tilladt i et forretningsprocesforløb + 1030 + - aeace038-8f64-4a8e-ae83-0da283d9fcbb + e23fc5ef-9c0b-4a10-9338-f8990ae0d2fc true - Power BI automatic permissions assignment + Maximum number of actionsteps allowed in a BPF 1033 @@ -183895,13 +197921,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -183930,162 +197956,88 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - powerbiautomaticpermissionsassignment - 2025-11-06T09:06:31.8169984 + maxactionstepsinbpf + 2025-11-06T00:19:19.9469952 false canmodifyrequirementlevelsettings SystemRequired - PowerBIAutomaticPermissionsAssignment + MaxActionStepsInBPF - BooleanType + IntegerType - 9.1.0.0 + 9.0.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + None + 100 + 0 + 0 - - 6f92cac2-f742-4196-a58a-f16173931596 + + a20dee8f-2b81-4faa-afa2-61d21403ef12 - powerbiautomaticpermissionsassignment - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true + false - 10244 - 2025-11-06T09:06:31.8329984 + 10033 + 2025-11-06T01:32:07.7129984 - - + + + b8ee1633-6801-4878-84a9-b6961a865544 + + true + Maximum Allowed Pending Rollup Job Count + 1033 + + + + b8ee1633-6801-4878-84a9-b6961a865544 + + true + Maximum Allowed Pending Rollup Job Count + 1033 + - - + + + 4f1da521-7ab8-4176-86e7-cb0d1470bc89 + + true + MaxAllowedPendingRollupJobCount + 1033 + + + + 4f1da521-7ab8-4176-86e7-cb0d1470bc89 + + true + MaxAllowedPendingRollupJobCount + 1033 + organization @@ -184093,11 +198045,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -184108,13 +198060,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -184126,7 +198078,7 @@ false - true + false canmodifysearchsettings false @@ -184134,31 +198086,36 @@ false false true - false - false + true + true - powerbiautomaticpermissionsassignmentname - 2025-11-06T09:06:31.8329984 + maxallowedpendingrollupjobcount + 2025-11-06T01:32:07.7129984 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - powerbiautomaticpermissionsassignmentName + MaxAllowedPendingRollupJobCount - VirtualType + IntegerType - 9.1.0.0 - true - - + 1.0.0.0 + false + 0 + + None + 2147483647 + 0 + + 0 - - a5f3bac1-657f-44b8-8dca-48549336e55a + + 42f70f3b-8959-4b1e-bb3b-391b053bbfae - Boolean + Integer false false false @@ -184167,42 +198124,42 @@ canmodifyadditionalsettings false - 10241 - 2025-11-06T09:06:31.7869952 + 10032 + 2025-11-06T01:32:07.6829952 - 057571b5-3a12-4805-acf7-3c770a41b3a0 + 3ecf0966-236d-4b08-a76a-8d3339759827 true - Indicates whether creation of Power BI components has been enabled for the organization + Percentage Of Entity Table Size For Kicking Off Bootstrap Job 1033 - 057571b5-3a12-4805-acf7-3c770a41b3a0 + 3ecf0966-236d-4b08-a76a-8d3339759827 true - Indicates whether creation of Power BI components has been enabled for the organization + Percentage Of Entity Table Size For Kicking Off Bootstrap Job 1033 - 734a9536-b402-420e-b964-f5e4c4c54087 + 3516a2de-30af-41e9-8cbc-7de29da43bb5 true - Power BI components creation + MaxAllowedPendingRollupJobPercentage 1033 - 734a9536-b402-420e-b964-f5e4c4c54087 + 3516a2de-30af-41e9-8cbc-7de29da43bb5 true - Power BI components creation + MaxAllowedPendingRollupJobPercentage 1033 @@ -184212,13 +198169,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -184247,162 +198204,102 @@ false canmodifysearchsettings - true + false - true - true - true + false + false + false true true true - powerbicomponentscreate - 2025-11-06T09:06:31.7869952 + maxallowedpendingrollupjobpercentage + 2025-11-06T01:32:07.6829952 false canmodifyrequirementlevelsettings SystemRequired - PowerBIComponentsCreate + MaxAllowedPendingRollupJobPercentage - BooleanType + IntegerType - 9.1.0.0 + 1.0.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + + None + 100 + 0 0 - - 015c2026-5aaa-41a9-898f-a1bc7e04444f + + cb3d58d5-929d-46dc-89c3-196d61512cd3 - powerbicomponentscreate - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true + false - 10242 - 2025-11-06T09:06:31.8029952 + 139 + 1900-01-01T00:00:00 - - + + + cb90aa12-2341-db11-898a-0007e9e17ebd + + true + Maximum number of days an appointment can last. + 1033 + + + 10386c01-3ebe-48bf-9d72-c24446a9cb1b + + true + Maksimalt antal dage en aftale kan vare. + 1030 + + + + cb90aa12-2341-db11-898a-0007e9e17ebd + + true + Maximum number of days an appointment can last. + 1033 + - - + + + e6efe2cf-6caf-4af4-b151-3f15ff20bd21 + + true + Max Appointment Duration + 1033 + + + 760a4df9-5125-4c79-b048-6e07ec3f4baf + + true + Maksimal varighed af aftale + 1030 + + + + e6efe2cf-6caf-4af4-b151-3f15ff20bd21 + + true + Max Appointment Duration + 1033 + organization @@ -184410,11 +198307,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -184425,13 +198322,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -184443,39 +198340,44 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - powerbicomponentscreatename - 2025-11-06T09:06:31.8029952 + maxappointmentdurationdays + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - powerbicomponentscreateName + MaxAppointmentDurationDays - VirtualType + IntegerType - 9.1.0.0 - true - - + 5.0.0.0 + false + 0 + + None + 2147483647 + 0 + + 0 - - 241af8aa-b584-418f-99bd-1ab5342d287e + + d86bbc57-77c3-4256-a698-1882674b5249 - Boolean + Integer false false false @@ -184484,42 +198386,56 @@ canmodifyadditionalsettings false - 385 + 382 1900-01-01T00:00:00 - 8b026571-b457-4705-b78e-5b61229e8dc6 + e34266db-426f-4fdb-b634-b65bd944317d true - Indicates whether the Power BI feature should be enabled for the organization. + Maximum number of conditions allowed for mobile offline filters 1033 + + 5bdcdd28-0a0d-40da-85a7-177220298d9a + + true + Maksimalt antal tilladte betingelser for mobile offlinefiltre + 1030 + - 8b026571-b457-4705-b78e-5b61229e8dc6 + e34266db-426f-4fdb-b634-b65bd944317d true - Indicates whether the Power BI feature should be enabled for the organization. + Maximum number of conditions allowed for mobile offline filters 1033 - bf1d95f8-06ec-45e2-8955-de0c8f8812ef + a0188184-e951-41fe-a96a-5b1fae77d830 true - Enable Power BI feature for this Organization + Maximum number of conditions allowed for mobile offline filters 1033 + + cf759125-1cbd-403f-b0cc-b42e8ad7c961 + + true + Maksimalt antal tilladte betingelser for mobile offlinefiltre + 1030 + - bf1d95f8-06ec-45e2-8955-de0c8f8812ef + a0188184-e951-41fe-a96a-5b1fae77d830 true - Enable Power BI feature for this Organization + Maximum number of conditions allowed for mobile offline filters 1033 @@ -184573,132 +198489,30 @@ true true - powerbifeatureenabled + maxconditionsformobileofflinefilters 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - PowerBiFeatureEnabled + MaxConditionsForMobileOfflineFilters - BooleanType + IntegerType 8.1.0.0 false 0 - false - - 049e95d7-7c81-44ce-995c-a7eaf1b5eafd - - - - - 03ed914c-aef9-4f19-9199-fa2453c8bf44 - - true - Information that specifies whether the Power Bi Task Flow processes are enabled for the organization. - 1033 - - - - 03ed914c-aef9-4f19-9199-fa2453c8bf44 - - true - Information that specifies whether the Power Bi Task Flow processes are enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_powerbifeature - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - 37f68582-2304-4436-bc83-41f065b11463 - - true - Disable - 1033 - - - - 37f68582-2304-4436-bc83-41f065b11463 - - true - Disable - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 395e36be-135b-49a5-98f5-0cc7859299ca - - true - Enable - 1033 - - - - 395e36be-135b-49a5-98f5-0cc7859299ca - - true - Enable - 1033 - - - - 1 - - - + None + 2147483647 + 0 0 - b6d4dae0-46af-475b-8916-ff686296e851 + 1f37af41-a33e-4a99-8254-c6090535667b Integer @@ -184710,42 +198524,56 @@ canmodifyadditionalsettings false - 41 + 268 1900-01-01T00:00:00 - a11c9b1e-2341-db11-898a-0007e9e17ebd + 3482487a-b25c-4ffa-beb9-8422f342795b true - Number of decimal places that can be used for prices. + Maximum depth for hierarchy security propagation. 1033 + + bc66fda5-c3fc-496e-8773-b292408adbf0 + + true + Maksimal dybde for overførsel af hierarkisk sikkerhed. + 1030 + - a11c9b1e-2341-db11-898a-0007e9e17ebd + 3482487a-b25c-4ffa-beb9-8422f342795b true - Number of decimal places that can be used for prices. + Maximum depth for hierarchy security propagation. 1033 - aeb07164-17a1-40c1-b26c-eacb290946e3 + 439f6153-73da-42cd-bea0-b45b38b3f98a true - Pricing Decimal Precision + Maximum depth for hierarchy security propagation. 1033 + + 2b8d97eb-5f85-4d01-b347-55081f014890 + + true + Maksimal dybde for overførsel af hierarkisk sikkerhed. + 1030 + - aeb07164-17a1-40c1-b26c-eacb290946e3 + 439f6153-73da-42cd-bea0-b45b38b3f98a true - Pricing Decimal Precision + Maximum depth for hierarchy security propagation. 1033 @@ -184799,33 +198627,33 @@ true true - pricingdecimalprecision + maxdepthforhierarchicalsecuritymodel 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - PricingDecimalPrecision + MaxDepthForHierarchicalSecurityModel IntegerType - 5.0.0.0 + 7.0.0.0 false 0 None - 10 - 0 + 2147483647 + -2147483648 0 - - 2f05b31d-1e4a-4d6c-96da-252acfb03523 + + 24ce1642-9b71-46f9-be1c-949bcb5ec94d - String + Integer false false false @@ -184834,42 +198662,56 @@ canmodifyadditionalsettings false - 302 + 301 1900-01-01T00:00:00 - 85b0b589-3be8-47ae-9afc-316d4d481f40 + addff016-93cb-48d6-9ebf-6a9779f17305 true - Privacy Statement URL + Maximum number of Folder Based Tracking mappings user can add 1033 + + 99908984-9da4-4333-815a-2e1a077eb359 + + true + Det maksimale antal tilknytninger af mappebaseret sporing, brugeren kan tilføje + 1030 + - 85b0b589-3be8-47ae-9afc-316d4d481f40 + addff016-93cb-48d6-9ebf-6a9779f17305 true - Privacy Statement URL + Maximum number of Folder Based Tracking mappings user can add 1033 - 849fe190-bdc9-47f3-a1a3-abcc56661493 + 0f42179b-cccb-4c1b-9c8a-67b647b8fd99 true - Privacy Statement URL + Max Folder Based Tracking Mappings 1033 + + 123e4bc8-f190-4e6d-8b2d-1573fe0acf55 + + true + Maksimalt antal tilknytninger af mappebaseret sporing + 1030 + - 849fe190-bdc9-47f3-a1a3-abcc56661493 + 0f42179b-cccb-4c1b-9c8a-67b647b8fd99 true - Privacy Statement URL + Max Folder Based Tracking Mappings 1033 @@ -184923,39 +198765,33 @@ true true - privacystatementurl + maxfolderbasedtrackingmappings 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - PrivacyStatementUrl + MaxFolderBasedTrackingMappings - StringType + IntegerType 7.1.0.0 false 0 - Text - Auto - 500 - - - Text - + None + 25 + 1 - false 0 - 1000 - - cde1ff20-ece6-49ae-b1af-268f2eecb195 + + 53609e50-3941-42f5-beae-d7b110066d56 - Uniqueidentifier + Integer false false false @@ -184964,42 +198800,56 @@ canmodifyadditionalsettings false - 4 + 244 1900-01-01T00:00:00 - 2f9aba00-2341-db11-898a-0007e9e17ebd + 512059ef-3efb-4929-9ff6-ec2986a2c4a7 true - Unique identifier of the default privilege for users in the organization. + Maximum number of active business process flows allowed per entity 1033 + + b27ea13f-6bd8-4c60-958b-08024c00b59b + + true + Det maksimale antal aktive forretningsprocesforløb, der er tilladt pr. objekt + 1030 + - 2f9aba00-2341-db11-898a-0007e9e17ebd + 512059ef-3efb-4929-9ff6-ec2986a2c4a7 true - Unique identifier of the default privilege for users in the organization. + Maximum number of active business process flows allowed per entity 1033 - e2eccd33-3b61-43c6-933d-b3f1fd25d148 + 8e100a31-de92-4834-925c-f33f7ca10d1f true - Privilege User Group + Maximum active business process flows per entity 1033 + + c969e900-6b69-4496-9682-664338b7faee + + true + Maksimale antal aktive forretningsprocesforløb pr. objekt + 1030 + - e2eccd33-3b61-43c6-933d-b3f1fd25d148 + 8e100a31-de92-4834-925c-f33f7ca10d1f true - Privilege User Group + Maximum active business process flows per entity 1033 @@ -185007,15 +198857,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -185053,28 +198903,33 @@ true true - privilegeusergroupid + maximumactivebusinessprocessflowsallowedperentity 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - PrivilegeUserGroupId + MaximumActiveBusinessProcessFlowsAllowedPerEntity - UniqueidentifierType + IntegerType - 5.0.0.0 + 6.0.0.0 false - + 0 + None + 2147483647 + 1 + + 0 - - c253fe0a-2189-49b7-900c-91c441c2abfb + + 274b60ed-04c7-483b-b138-67c16cf0c0aa - Uniqueidentifier + Integer false false false @@ -185083,42 +198938,56 @@ canmodifyadditionalsettings false - 143 + 265 1900-01-01T00:00:00 - e191aa12-2341-db11-898a-0007e9e17ebd + e9bb5bda-49e5-4252-9963-5c923402f13d true - For internal use only. + Restrict the maximum number of product properties for a product family/bundle 1033 + + f6c229ed-5138-44ea-b221-bf3c59508b69 + + true + Begræns det maksimale antal produktegenskaber for en produktfamilie/et bundt + 1030 + - e191aa12-2341-db11-898a-0007e9e17ebd + e9bb5bda-49e5-4252-9963-5c923402f13d true - For internal use only. + Restrict the maximum number of product properties for a product family/bundle 1033 - 8232ed16-22aa-4d63-940c-6feaf92f324a + 50adf73f-89e9-4101-abfe-3e6c7d94a96d true - Privilege Reporting Group + Product Properties Item Limit 1033 + + b8bb1358-5e41-47eb-adfc-2cc9972e5c20 + + true + Elementgrænse for produktegenskaber + 1030 + - 8232ed16-22aa-4d63-940c-6feaf92f324a + 50adf73f-89e9-4101-abfe-3e6c7d94a96d true - Privilege Reporting Group + Product Properties Item Limit 1033 @@ -185126,9 +198995,9 @@ - false + true canmodifyauditsettings - false + true false @@ -185172,28 +199041,33 @@ true true - privreportinggroupid + maximumdynamicpropertiesallowed 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - PrivReportingGroupId + MaximumDynamicPropertiesAllowed - UniqueidentifierType + IntegerType - 5.0.0.0 + 7.0.0.0 false - + 0 + None + 2147483647 + 0 + + 0 - - ade39396-5784-408d-bb7e-9d1f6d3de0d3 + + 6b81b915-ef1e-4ff9-9a75-bec9ac9a89e0 - String + Integer false false false @@ -185202,42 +199076,56 @@ canmodifyadditionalsettings false - 146 + 375 1900-01-01T00:00:00 - 2ed7a218-2341-db11-898a-0007e9e17ebd + 65105a39-3040-48c4-8717-422882ac16d5 true - For internal use only. + Maximum number of active SLA allowed per entity in online 1033 + + 508b9721-7d39-49d4-9954-82fc81657e03 + + true + Maksimalt antal tilladte aktive SLA'er pr. objekt i Online + 1030 + - 2ed7a218-2341-db11-898a-0007e9e17ebd + 65105a39-3040-48c4-8717-422882ac16d5 true - For internal use only. + Maximum number of active SLA allowed per entity in online 1033 - fd12473b-aa3e-483d-b4e0-87426e1e5f06 + b3c0a91e-6b56-41c8-862a-3590d3d76072 true - Privilege Reporting Group Name + Maximum number of active SLA allowed per entity in online 1033 + + a4406330-3b55-485c-b2b0-edf93dce2ecf + + true + Maksimalt antal tilladte aktive SLA'er pr. objekt i Online + 1030 + - fd12473b-aa3e-483d-b4e0-87426e1e5f06 + b3c0a91e-6b56-41c8-862a-3590d3d76072 true - Privilege Reporting Group Name + Maximum number of active SLA allowed per entity in online 1033 @@ -185245,9 +199133,9 @@ - false + true canmodifyauditsettings - false + true false @@ -185291,39 +199179,33 @@ true true - privreportinggroupname + maximumentitieswithactivesla 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - PrivReportingGroupName + MaximumEntitiesWithActiveSLA - StringType + IntegerType - 5.0.0.0 + 8.1.0.0 false 0 - Text - Auto - 256 - - - Text - + None + 2147483647 + 0 - false 0 - 512 - - 52803db8-f78c-4791-bd52-fcc67d9bf60b + + 049ab94d-a0bb-4c41-93a1-b26371e583d7 - Boolean + Integer false false false @@ -185332,42 +199214,56 @@ canmodifyadditionalsettings false - 380 + 376 1900-01-01T00:00:00 - b9af501b-b712-414e-8d28-027dc0bdb9ba + 43a918b8-e3e0-4264-8e2e-375733096a4c true - Select whether to turn on product recommendations for the organization. + Maximum number of SLA KPI per active SLA allowed for entity in online 1033 + + fb7cb352-27a7-4d51-ab9c-d8a341677572 + + true + Maksimalt antal tilladte SLA-nøgletal pr. aktiv SLA for objekt i Online + 1030 + - b9af501b-b712-414e-8d28-027dc0bdb9ba + 43a918b8-e3e0-4264-8e2e-375733096a4c true - Select whether to turn on product recommendations for the organization. + Maximum number of SLA KPI per active SLA allowed for entity in online 1033 - 7732ddcb-8ff2-4237-8703-42313eb87641 + c58aafa2-aa32-4edd-9218-aa500b70d4c6 true - Enable Product Recommendations for this Organization + Maximum number of active SLA KPI allowed per entity in online 1033 + + a9411c6a-50f1-4d7c-9805-9bcb515b8401 + + true + Maksimalt antal tilladte aktive SLA-nøgletal pr. objekt i Online + 1030 + - 7732ddcb-8ff2-4237-8703-42313eb87641 + c58aafa2-aa32-4edd-9218-aa500b70d4c6 true - Enable Product Recommendations for this Organization + Maximum number of active SLA KPI allowed per entity in online 1033 @@ -185421,135 +199317,33 @@ true true - productrecommendationsenabled + maximumslakpiperentitywithactivesla 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - ProductRecommendationsEnabled + MaximumSLAKPIPerEntityWithActiveSLA - BooleanType + IntegerType 8.1.0.0 false 0 - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + 0 0 - - 46100798-2ff1-4ced-b123-f4459e8500a3 + + 23c94b8a-0994-4353-b5a1-fddcdf22b5c3 - String + Integer false false false @@ -185558,42 +199352,56 @@ canmodifyadditionalsettings false - 448 - 2025-11-06T00:19:20.0870016 + 79 + 1900-01-01T00:00:00 - e7d6d682-8548-472b-bca9-b694b97e2a09 + 22aac7f4-2241-db11-898a-0007e9e17ebd true - Indicates whether prompt should be shown for new Qualify Lead Experience + Maximum tracking number before recycling takes place. 1033 + + 94f77112-4c39-40e2-b531-daa7c3431a4a + + true + Det maksimale sporingsnummer, inden der foretages genbrug. + 1030 + - e7d6d682-8548-472b-bca9-b694b97e2a09 + 22aac7f4-2241-db11-898a-0007e9e17ebd true - Indicates whether prompt should be shown for new Qualify Lead Experience + Maximum tracking number before recycling takes place. 1033 - 983c8888-8246-47c2-82f6-47cfd245ccba + 1c7bd03d-a5ce-419c-9a48-4ff6f032563f true - Enable New Qualify Lead Experience with configuration MDD + Max Tracking Number 1033 + + b0ae4a36-c965-4626-a276-04eadbbbc5c3 + + true + Højeste sporingsnummer + 1030 + - 983c8888-8246-47c2-82f6-47cfd245ccba + 1c7bd03d-a5ce-419c-9a48-4ff6f032563f true - Enable New Qualify Lead Experience with configuration MDD + Max Tracking Number 1033 @@ -185647,39 +199455,33 @@ true true - qualifyleadadditionaloptions - 2025-11-06T00:19:20.0870016 + maximumtrackingnumber + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - QualifyLeadAdditionalOptions + MaximumTrackingNumber - StringType + IntegerType - 9.1.0.0 + 5.0.0.0 false 0 - Text - Auto - 1000 - - - Text - + None + 2147483647 + 0 - false 0 - 1000 - - 1e84214e-e875-4485-b5d8-7f40a7cd55d0 + + eaf1e9e8-7e86-4ab0-a70f-06ef16059801 - Boolean + Integer false false false @@ -185688,42 +199490,56 @@ canmodifyadditionalsettings false - 10192 - 2025-11-06T06:14:32.5500032 + 258 + 1900-01-01T00:00:00 - 7aaa737f-43e7-4558-beb7-6217c2d9b377 + 444f941a-f1ae-4602-9ed6-a3a9320ad405 true - Flag to indicate if the feature to use quick action to open records in search side pane is enabled + Restrict the maximum no of items in a bundle 1033 + + 2d880d1a-9f7e-470f-aad9-670a844a5b81 + + true + Begræns det maksimale antal elementer i et bundt + 1030 + - 7aaa737f-43e7-4558-beb7-6217c2d9b377 + 444f941a-f1ae-4602-9ed6-a3a9320ad405 true - Flag to indicate if the feature to use quick action to open records in search side pane is enabled + Restrict the maximum no of items in a bundle 1033 - 6e02b287-ac49-4b3f-8c21-489836d201f0 + f2b04b7e-7379-441b-8675-000529023d71 true - Enable quick actions to open records in search side pane + Bundle Item Limit 1033 + + bb9e83ad-b4fb-4c32-86fd-c0776a8981ec + + true + Bundtelementgrænse + 1030 + - 6e02b287-ac49-4b3f-8c21-489836d201f0 + f2b04b7e-7379-441b-8675-000529023d71 true - Enable quick actions to open records in search side pane + Bundle Item Limit 1033 @@ -185733,7 +199549,7 @@ true canmodifyauditsettings - false + true false @@ -185768,162 +199584,102 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - quickactiontoopenrecordsinsidepaneenabled - 2025-11-06T06:14:32.5500032 + maxproductsinbundle + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - QuickActionToOpenRecordsInSidePaneEnabled + MaxProductsInBundle - BooleanType + IntegerType - 9.1.0.0 + 7.0.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + None + 2147483647 + 0 + 0 - - 46b6ef01-a74d-47d8-a2b8-476c71b1b4b0 + + 6e51c383-c7b8-4637-8581-4473b3b67028 - quickactiontoopenrecordsinsidepaneenabled - Virtual + + Integer false false false - true + false canmodifyadditionalsettings - true + false - 10193 - 2025-11-06T06:14:32.5670016 + 145 + 1900-01-01T00:00:00 - - + + + a8d4bfe1-645d-4f9c-a33d-15f379033fac + + true + Maximum number of records that will be exported to a static Microsoft Office Excel worksheet when exporting from the grid. + 1033 + + + cbe2ea30-d149-41cf-b51a-2995aff939c2 + + true + Maksimalt antal poster, der eksporteres til et statisk Microsoft Office Excel-regneark, når der eksporteres fra gitteret. + 1030 + + + + a8d4bfe1-645d-4f9c-a33d-15f379033fac + + true + Maximum number of records that will be exported to a static Microsoft Office Excel worksheet when exporting from the grid. + 1033 + - - + + + afdd7919-76fe-41fb-a3b8-dfc9c9f087fe + + true + Max Records For Excel Export + 1033 + + + 4c154d06-4fca-4635-b236-ef2756987e9d + + true + Maksimalt antal poster for eksport til Excel + 1030 + + + + afdd7919-76fe-41fb-a3b8-dfc9c9f087fe + + true + Max Records For Excel Export + 1033 + organization @@ -185931,11 +199687,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -185946,13 +199702,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -185964,39 +199720,44 @@ false - true + false canmodifysearchsettings false - false + true false false true - false - false + true + true - quickactiontoopenrecordsinsidepaneenabledname - 2025-11-06T06:14:32.5670016 + maxrecordsforexporttoexcel + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - quickactiontoopenrecordsinsidepaneenabledName + MaxRecordsForExportToExcel - VirtualType + IntegerType - 9.1.0.0 - true - - + 5.0.0.0 + false + 0 + + None + 2147483647 + 0 + + 0 - - 24b37952-7632-4f78-b363-74f63188fc71 + + 6e51c383-c7b8-4637-8581-4473b3b67029 - Boolean + Integer false false false @@ -186005,42 +199766,56 @@ canmodifyadditionalsettings false - 221 + 162 1900-01-01T00:00:00 - 67aa02f5-4d92-40b7-99d0-8f6221cedd90 + a8d4bfe1-645d-4f9c-a33d-15f379033fad true - Indicates whether a quick find record limit should be enabled for this organization (allows for faster Quick Find queries but prevents overly broad searches). + Maximum number of lookup and picklist records that can be selected by user for filtering. 1033 + + ea915b69-1b5b-4590-bdfc-18a6338b8db5 + + true + Det maksimale antal opslags- og valglisteposter, der kan markeres af en bruger til filtrering. + 1030 + - 67aa02f5-4d92-40b7-99d0-8f6221cedd90 + a8d4bfe1-645d-4f9c-a33d-15f379033fad true - Indicates whether a quick find record limit should be enabled for this organization (allows for faster Quick Find queries but prevents overly broad searches). + Maximum number of lookup and picklist records that can be selected by user for filtering. 1033 - 6ef89aa0-9b39-4cff-bc46-e7a7d5ed9892 + 540a5a77-220a-404e-8b64-c01719a53ed4 true - Quick Find Record Limit Enabled + Max Records Filter Selection 1033 + + e9641d40-98af-417b-8908-7be0b51b5bdf + + true + Maksimalt antal poster, der kan markeres til filtrering + 1030 + - 6ef89aa0-9b39-4cff-bc46-e7a7d5ed9892 + 540a5a77-220a-404e-8b64-c01719a53ed4 true - Quick Find Record Limit Enabled + Max Records Filter Selection 1033 @@ -186094,135 +199869,33 @@ true true - quickfindrecordlimitenabled + maxrecordsforlookupfilters 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - QuickFindRecordLimitEnabled + MaxRecordsForLookupFilters - BooleanType + IntegerType 5.0.0.0 false 0 - true - - ac783aaa-5d6f-4066-b334-af1659a36983 - - - - - a88e91ad-ee24-4a5c-b5ba-dac1624e722a - - true - Information that specifies whether quick find record limits are enabled. - 1033 - - - - a88e91ad-ee24-4a5c-b5ba-dac1624e722a - - true - Information that specifies whether quick find record limits are enabled. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_enablequickfindrecordlimit - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 932d2b6c-326a-4ddb-bfa7-25487fd2b7cd - - true - No - 1033 - - - - 932d2b6c-326a-4ddb-bfa7-25487fd2b7cd - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - bd900c97-7fcf-418c-8290-e53147152dd7 - - true - Yes - 1033 - - - - bd900c97-7fcf-418c-8290-e53147152dd7 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + 0 0 - - af07703c-70d5-46c4-af90-0e397639289d + + ebad304c-1216-4ac5-8e95-e589b8bd70a6 - String + Integer false false false @@ -186231,42 +199904,42 @@ canmodifyadditionalsettings false - 25 - 1900-01-01T00:00:00 + 10034 + 2025-11-06T01:32:07.7469952 - 1252c2fa-2241-db11-898a-0007e9e17ebd + 6636766d-3b01-403b-a662-1b2e5cd9cdc4 true - Prefix to use for all quotes throughout Microsoft Dynamics 365. + Maximum Rollup Fields Per Entity 1033 - 1252c2fa-2241-db11-898a-0007e9e17ebd + 6636766d-3b01-403b-a662-1b2e5cd9cdc4 true - Prefix to use for all quotes throughout Microsoft Dynamics 365. + Maximum Rollup Fields Per Entity 1033 - 812f83dd-62e8-4511-a32a-07dd08c8e458 + 4544c389-9dbd-4051-adb9-3862c0614874 true - Quote Prefix + MaxRollupFieldsPerEntity 1033 - 812f83dd-62e8-4511-a32a-07dd08c8e458 + 4544c389-9dbd-4051-adb9-3862c0614874 true - Quote Prefix + MaxRollupFieldsPerEntity 1033 @@ -186313,46 +199986,40 @@ canmodifysearchsettings false - true + false false false true true true - quoteprefix - 1900-01-01T00:00:00 + maxrollupfieldsperentity + 2025-11-06T01:32:07.7469952 false canmodifyrequirementlevelsettings - None + SystemRequired - QuotePrefix + MaxRollupFieldsPerEntity - StringType + IntegerType - 5.0.0.0 + 1.0.0.0 false 0 - Text - Auto - 20 - - - Text - - - false + None + 50 + 0 + 0 - 40 - - 7b09b5bd-385f-4617-ade3-9ac2ea1792a9 + + c06b9a0f-f2c6-4866-87d2-0cf26ddae874 - Boolean + Integer false false false @@ -186361,42 +200028,42 @@ canmodifyadditionalsettings false - 10157 - 2025-11-06T04:31:47.4130048 + 10035 + 2025-11-06T01:32:07.76 - c9b7c471-11b4-4182-af81-bb1e737c092c + 74dce88a-89ef-4cc2-81cc-72536ee155fe true - Indicates whether SLA Recalculation has been enabled for the organization + Maximum Rollup Fields Per Organization 1033 - c9b7c471-11b4-4182-af81-bb1e737c092c + 74dce88a-89ef-4cc2-81cc-72536ee155fe true - Indicates whether SLA Recalculation has been enabled for the organization + Maximum Rollup Fields Per Organization 1033 - 11120fcc-dde7-4e5e-99f8-e418e8899f67 + 8de5f2ec-2fcc-42d4-8aaf-e1bfc5722d5e true - Indicates whether SLA Recalculation has been enabled for the organization + MaxRollupFieldsPerOrg 1033 - 11120fcc-dde7-4e5e-99f8-e418e8899f67 + 8de5f2ec-2fcc-42d4-8aaf-e1bfc5722d5e true - Indicates whether SLA Recalculation has been enabled for the organization + MaxRollupFieldsPerOrg 1033 @@ -186406,13 +200073,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -186441,144 +200108,42 @@ false canmodifysearchsettings - true + false - true - true - true + false + false + false true true true - recalculatesla - 2025-11-06T04:31:47.4130048 + maxrollupfieldsperorg + 2025-11-06T01:32:07.76 false canmodifyrequirementlevelsettings SystemRequired - RecalculateSLA + MaxRollupFieldsPerOrg - BooleanType + IntegerType - 9.1.0.0 + 1.0.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + + None + 500 + 0 0 - - 2bc9de82-83ff-4c2c-955c-5c9d839e517a + + f2469ebf-fec6-42e4-bb98-43e3e6c7afc3 - recalculatesla - Virtual + + Integer false false false @@ -186587,16 +200152,58 @@ canmodifyadditionalsettings true - 10158 - 2025-11-06T04:31:47.4429952 + 10156 + 2025-11-06T04:31:47.3970048 - - + + + fd5ad06e-ac7e-4c30-9d9c-e24fa09d583f + + true + + 1033 + + + 4e0bfce0-5cd5-49fb-bcfe-8163acae2031 + + true + + 1030 + + + + fd5ad06e-ac7e-4c30-9d9c-e24fa09d583f + + true + + 1033 + - - + + + e0fb67ae-86cc-422a-bbeb-d895afce5f51 + + true + Max SLA Items Per SLA + 1033 + + + a010150b-0d02-4e4c-a9d9-2813c0087520 + + true + Maksimalt antal SLA-elementer pr. SLA + 1030 + + + + e0fb67ae-86cc-422a-bbeb-d895afce5f51 + + true + Max SLA Items Per SLA + 1033 + organization @@ -186639,34 +200246,39 @@ true canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - recalculateslaname - 2025-11-06T04:31:47.4429952 + maxslaitemspersla + 2026-04-03T15:10:20.1330048 true canmodifyrequirementlevelsettings None - recalculateslaName + MaxSLAItemsPerSLA - VirtualType + IntegerType 9.1.0.0 - true - - + false + 0 + + None + 2147483647 + 0 + + 0 - cee53143-dd1f-4571-bedd-bc4bf1c16d44 + a35bd3ed-dd7b-4c00-814a-6771c2044cb6 Integer @@ -186678,42 +200290,56 @@ canmodifyadditionalsettings false - 171 + 275 1900-01-01T00:00:00 - f7d0d26a-19a2-4a5a-ac2d-aba36b7b895b + 315512c1-2eca-4900-8cb4-313c20e34892 true - Specifies the default value for number of occurrences field in the recurrence dialog. + The maximum version of IE to run browser emulation for in Outlook client 1033 + + 77e27c38-5a78-4d13-b652-38c8d4d43660 + + true + Den maksimale version af IE til kørsel af browseremulering i Outlook-klient + 1030 + - f7d0d26a-19a2-4a5a-ac2d-aba36b7b895b + 315512c1-2eca-4900-8cb4-313c20e34892 true - Specifies the default value for number of occurrences field in the recurrence dialog. + The maximum version of IE to run browser emulation for in Outlook client 1033 - f8eaff05-4dc1-45a4-b429-5c5039a8e09b + f0929143-2c8a-4318-b17d-49f55cc5d89c true - Recurrence Default Number of Occurrences + Max supported IE version 1033 + + 8e81fc2a-2549-42df-a5b9-47d722c54b85 + + true + Maksimalt understøttede version af IE + 1030 + - f8eaff05-4dc1-45a4-b429-5c5039a8e09b + f0929143-2c8a-4318-b17d-49f55cc5d89c true - Recurrence Default Number of Occurrences + Max supported IE version 1033 @@ -186729,7 +200355,7 @@ false iscustomizable - true + false false false @@ -186760,37 +200386,37 @@ canmodifysearchsettings false - true + false false false true - true + false true - recurrencedefaultnumberofoccurrences + maxsupportedinternetexplorerversion 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - RecurrenceDefaultNumberOfOccurrences + MaxSupportedInternetExplorerVersion IntegerType - 5.0.0.0 + 7.0.0.0 false 0 None - 999 - 1 + 2147483647 + 0 0 - cee58143-dd1f-4571-bedd-bc4bf1c16d44 + 69d31387-d58c-4814-b169-1c8116c4bd72 Integer @@ -186802,42 +200428,56 @@ canmodifyadditionalsettings false - 6 + 133 1900-01-01T00:00:00 - f7d0d26a-19a2-4a5a-ac2d-aba36b7b894b + 62207ef3-819e-462b-bbdb-48d82383d09d true - Specifies the interval (in seconds) for pausing expansion job. + Maximum allowed size of an attachment. 1033 + + d6e68105-a1ec-4407-a0c0-96752bf1b459 + + true + Maksimalt tilladt størrelse af en vedhæftet fil. + 1030 + - f7d0d26a-19a2-4a5a-ac2d-aba36b7b894b + 62207ef3-819e-462b-bbdb-48d82383d09d true - Specifies the interval (in seconds) for pausing expansion job. + Maximum allowed size of an attachment. 1033 - f8eaff05-4dc1-45a4-b429-5c5039a8e09c + c5590678-c8b9-4afe-94d7-12bd4a514454 true - Recurrence Expansion Job Batch Interval + Max Upload File Size 1033 + + a75edafa-ca3e-451d-b3d3-08c665f2a57b + + true + Maksimal størrelse på fil til overførsel + 1030 + - f8eaff05-4dc1-45a4-b429-5c5039a8e09c + c5590678-c8b9-4afe-94d7-12bd4a514454 true - Recurrence Expansion Job Batch Interval + Max Upload File Size 1033 @@ -186891,14 +200531,14 @@ true true - recurrenceexpansionjobbatchinterval + maxuploadfilesize 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - RecurrenceExpansionJobBatchInterval + MaxUploadFileSize IntegerType @@ -186914,7 +200554,7 @@ 0 - cee59143-dd1f-4571-bedd-bc4bf1c16d44 + faa5e46b-aa8c-467a-8bbc-5776eb63d412 Integer @@ -186926,42 +200566,56 @@ canmodifyadditionalsettings false - 5 + 317 1900-01-01T00:00:00 - f7d0d22a-19a2-4a5a-ac2d-aba36b7b895b + 3d7023ce-5541-461d-a9b3-7bb8f8cf4921 true - Specifies the value for number of instances created in on demand job in one shot. + Maximum number of mailboxes that can be toggled for verbose logging 1033 + + 585941fe-5816-4dbf-a408-345be8763b22 + + true + Det maksimale antal postkasser, hvor detaljeret logføring kan slås til eller fra + 1030 + - f7d0d22a-19a2-4a5a-ac2d-aba36b7b895b + 3d7023ce-5541-461d-a9b3-7bb8f8cf4921 true - Specifies the value for number of instances created in on demand job in one shot. + Maximum number of mailboxes that can be toggled for verbose logging 1033 - f8eaff05-4dc1-45a4-b429-5c5039a8e09a + 7ae37177-09fe-4104-bad9-cde55ed6f219 true - Recurrence Expansion On Demand Job Batch Size + Max No Of Mailboxes To Enable For Verbose Logging 1033 + + bb2e5208-78b5-4f6e-a16a-89fdd4f51e97 + + true + Maks. antal postkasser, der kan aktiveres til detaljeret logføring + 1030 + - f8eaff05-4dc1-45a4-b429-5c5039a8e09a + 7ae37177-09fe-4104-bad9-cde55ed6f219 true - Recurrence Expansion On Demand Job Batch Size + Max No Of Mailboxes To Enable For Verbose Logging 1033 @@ -187008,37 +200662,37 @@ canmodifysearchsettings false - true + false false false true - true + false true - recurrenceexpansionjobbatchsize + maxverboseloggingmailbox 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - RecurrenceExpansionJobBatchSize + MaxVerboseLoggingMailbox IntegerType - 5.0.0.0 + 8.0.0.0 false 0 None 2147483647 - 0 + -2147483648 0 - c1999065-002a-48c9-8415-9a2dfa737dd8 + d339e4cb-8844-4020-bf0c-cd7fb774153d Integer @@ -187050,42 +200704,56 @@ canmodifyadditionalsettings false - 170 + 318 1900-01-01T00:00:00 - 68bc1b36-a456-4fee-8845-c102a3f37ad5 + 3dce4567-7d25-431d-9c75-6344cb729fa6 true - Specifies the maximum number of instances to be created synchronously after creating a recurring appointment. + Maximum number of sync cycles for which verbose logging will be enabled by default 1033 + + 71c36a6e-399d-4d57-ae40-850733f061ea + + true + Det maksimale antal synkroniseringscyklusser, hvor detaljeret logføring kan aktiveres som standard + 1030 + - 68bc1b36-a456-4fee-8845-c102a3f37ad5 + 3dce4567-7d25-431d-9c75-6344cb729fa6 true - Specifies the maximum number of instances to be created synchronously after creating a recurring appointment. + Maximum number of sync cycles for which verbose logging will be enabled by default 1033 - 9f5139df-86d4-47a7-9450-e33ceb4ba3b9 + 4a2450a7-b7fd-499e-a70f-e13518217b81 true - Recurrence Expansion Synchronization Create Maximum + Maximum number of sync cycles for which verbose logging will be enabled by default 1033 + + 81114653-5a83-4b54-bc6c-340efd8960bc + + true + Det maksimale antal synkroniseringscyklusser, hvor detaljeret logføring kan aktiveres som standard + 1030 + - 9f5139df-86d4-47a7-9450-e33ceb4ba3b9 + 4a2450a7-b7fd-499e-a70f-e13518217b81 true - Recurrence Expansion Synchronization Create Maximum + Maximum number of sync cycles for which verbose logging will be enabled by default 1033 @@ -187132,40 +200800,40 @@ canmodifysearchsettings false - true + false false false true - true + false true - recurrenceexpansionsynchcreatemax + maxverboseloggingsynccycles 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - RecurrenceExpansionSynchCreateMax + MaxVerboseLoggingSyncCycles IntegerType - 5.0.0.0 + 8.0.0.0 false 0 None - 1000 - 1 + 2147483647 + -2147483648 0 - - 6f6f5074-8cad-46f4-ad27-36498415d85f + + 65d6995e-46ae-42ba-8381-5501606a4ad7 - String + DateTime false false false @@ -187174,42 +200842,56 @@ canmodifyadditionalsettings false - 125 + 229 1900-01-01T00:00:00 - 5.0.0.0 + - 0f53c2fa-2241-db11-898a-0007e9e17ebd + b7de22f9-d961-4eb3-a4c1-987d2a5ad533 true - XML string that defines the navigation structure for the application. This is the site map from the previously upgraded build and is used in a 3-way merge during upgrade. + What is the last date/time where there are metadata tracking deleted objects that have never been outside of the expiration period. 1033 + + 2ecdfb70-8822-46cd-8c23-8025690eeffa + + true + Hvad er seneste dato/klokkeslæt, hvor der findes slettede objekter for metadatasporing, der aldrig har været uden for udløbsperioden. + 1030 + - 0f53c2fa-2241-db11-898a-0007e9e17ebd + b7de22f9-d961-4eb3-a4c1-987d2a5ad533 true - XML string that defines the navigation structure for the application. This is the site map from the previously upgraded build and is used in a 3-way merge during upgrade. + What is the last date/time where there are metadata tracking deleted objects that have never been outside of the expiration period. 1033 - d1109bb7-feb2-4eb3-8a24-40236c3b40d3 + 2b1d3d5c-6cda-48bd-b06a-d1e84c034dcc true - Reference SiteMap XML + The last date/time for never expired metadata tracking deleted objects 1033 + + f2de8283-7ba9-453c-b5a0-71005e3ef364 + + true + Seneste dato/klokkeslæt for slettede objekter, der aldrig er udløbet, til metadatasporing + 1030 + - d1109bb7-feb2-4eb3-8a24-40236c3b40d3 + 2b1d3d5c-6cda-48bd-b06a-d1e84c034dcc true - Reference SiteMap XML + The last date/time for never expired metadata tracking deleted objects 1033 @@ -187225,7 +200907,7 @@ false iscustomizable - true + false false false @@ -187256,46 +200938,47 @@ canmodifysearchsettings false - true + false false false - true - true + false + false false - referencesitemapxml + metadatasynclasttimeofneverexpireddeletedobjects 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ReferenceSiteMapXml + MetadataSyncLastTimeOfNeverExpiredDeletedObjects - StringType + DateTimeType 5.0.0.0 false 0 - Text - Auto - 1073741823 - - - Text - + DateAndTime + Inactive - false 0 - -1 + + false + canmodifybehavior + false + + + UserLocal + - - b7bf339e-9f6c-49f9-b610-2a3d566e76bf + + 8989668c-9db8-4d85-8295-b1fa54dc8e7d - Integer + BigInt false false false @@ -187304,42 +200987,56 @@ canmodifyadditionalsettings false - 10229 - 2025-11-06T06:14:33.0370048 - + 228 + 1900-01-01T00:00:00 + 5.0.0.0 - cace9d97-a047-4e32-aeb6-f70cbde32e98 + 8340606a-cb14-4b04-bdfc-e357750070c7 true - Current orgnization release cadence value + Contains the maximum version number for attributes used by metadata synchronization that have changed. 1033 + + 3a5dda32-a441-4925-8dc8-89b7759813e3 + + true + Indeholder det højeste versionsnummer for attributter, der bruges af synkroniseringen af metadata, som er ændret. + 1030 + - cace9d97-a047-4e32-aeb6-f70cbde32e98 + 8340606a-cb14-4b04-bdfc-e357750070c7 true - Current orgnization release cadence value + Contains the maximum version number for attributes used by metadata synchronization that have changed. 1033 - ff9684d2-d181-49ed-9e24-3a5584827dcd + e82571da-3fad-4657-823b-a1c14affda13 true - Current orgnization release cadence value + Metadata sync version 1033 + + 4b03a95c-7a6f-4be0-ad3c-b4c1dce33e45 + + true + Version for synkronisering af metadata + 1030 + - ff9684d2-d181-49ed-9e24-3a5584827dcd + e82571da-3fad-4657-823b-a1c14affda13 true - Current orgnization release cadence value + Metadata sync version 1033 @@ -187349,7 +201046,7 @@ true canmodifyauditsettings - false + true false @@ -187384,86 +201081,97 @@ false canmodifysearchsettings - true + false false - true - true - true - true - true + false + false + false + false + false - releasecadence - 2025-11-06T06:14:33.0370048 + metadatasynctimestamp + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - ReleaseCadence + MetadataSyncTimestamp - IntegerType + BigIntType - 9.2.0.0 + 5.0.0.0 false - 0 - - None - 100 - 0 - - 0 + + + 9223372036854775807 + -9223372036854775808 - - 9c280c8d-dd2a-4661-bfee-11b163a90de7 + + 1016a914-c112-4d73-a876-5fa03db75f00 - Picklist + String false false false false canmodifyadditionalsettings - false + true - 10230 - 2025-11-06T06:14:33.0499968 + 412 + 1900-01-01T00:00:00 - 8e8122e4-91d0-4788-8eb2-8eb75ad28fa0 + a6e5a4ee-7ea2-4bd0-82d0-51f8a0d27eab true - Model app refresh channel + (Deprecated) Environment selected for Integration with Microsoft Flow 1033 + + c6c90787-c41c-478e-a488-163265545132 + + true + (Udfaset) Miljø valgt til integration med Microsoft Flow + 1030 + - 8e8122e4-91d0-4788-8eb2-8eb75ad28fa0 + a6e5a4ee-7ea2-4bd0-82d0-51f8a0d27eab true - Model app refresh channel + (Deprecated) Environment selected for Integration with Microsoft Flow 1033 - 1f8e665a-5fb1-48a0-b9ce-a148cf30eb7a + f54ac1d7-4c6f-425e-b818-b4713c83a07b true - Model app refresh channel + (Deprecated) Environment selected for Integration with Microsoft Flow 1033 + + 7ee9efbb-524e-4002-936d-75986bd118f8 + + true + (Udfaset) Miljø valgt til integration med Microsoft Flow + 1030 + - 1f8e665a-5fb1-48a0-b9ce-a148cf30eb7a + f54ac1d7-4c6f-425e-b818-b4713c83a07b true - Model app refresh channel + (Deprecated) Environment selected for Integration with Microsoft Flow 1033 @@ -187473,7 +201181,7 @@ true canmodifyauditsettings - false + true false @@ -187484,7 +201192,7 @@ false false - false + true canmodifyglobalfiltersettings false @@ -187501,7 +201209,7 @@ false false - false + true canmodifyissortablesettings false @@ -187511,362 +201219,103 @@ false true - true - true + false + false true true true - releasechannel - 2025-11-06T07:35:38.8300032 + microsoftflowenvironment + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ReleaseChannel + MicrosoftFlowEnvironment - PicklistType + StringType - 9.1.0.0 + 9.0.0.0 false 0 - 0 - - daf626db-d7ba-f011-bbd3-7c1e52365f30 - - - - - dcf626db-d7ba-f011-bbd3-7c1e52365f30 - - true - Model app refresh channel - 1033 - - - - dcf626db-d7ba-f011-bbd3-7c1e52365f30 + Text + Disabled + 1024 + + + Text + + + false + 0 + 2048 + + + c754f1fe-9102-dc11-aa9d-00123f558caf + + + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 114 + 1900-01-01T00:00:00 + + + + + 775b34c2-4103-dc11-aa9d-00123f558caf - true - Model app refresh channel - 1033 - - - - - - dbf626db-d7ba-f011-bbd3-7c1e52365f30 - - true - Model app refresh channel - 1033 - - - - dbf626db-d7ba-f011-bbd3-7c1e52365f30 + true + Normal polling frequency used for address book synchronization in Microsoft Office Outlook. + 1033 + + + a2c03c15-e950-4e95-894e-25cc65c8570a - true - Model app refresh channel - 1033 - - - - true - - false - iscustomizable - false - - false - true - organization_releasechannel - Picklist - 9.1.0.0 - - - + true + Normal pollingfrekvens brugt til synkronisering af adressekartotek i Microsoft Office Outlook. + 1030 + + + + 775b34c2-4103-dc11-aa9d-00123f558caf + + true + Normal polling frequency used for address book synchronization in Microsoft Office Outlook. + 1033 + + + + + + 03d96883-667b-497d-8c58-59846f609983 - - - - - - - false - true - - - - eae26a56-8f0b-4878-b641-18a753fd7927 - - true - Auto - 1033 - - - - eae26a56-8f0b-4878-b641-18a753fd7927 - - true - Auto - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 27ee6c40-29ad-4ea0-9a5c-f57a1814479a - - true - Monthly channel - 1033 - - - - 27ee6c40-29ad-4ea0-9a5c-f57a1814479a - - true - Monthly channel - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - c53c4a71-e6c3-4fa1-b499-e744d2be36b0 - - true - Microsoft Inner channel - 1033 - - - - c53c4a71-e6c3-4fa1-b499-e744d2be36b0 - - true - Microsoft Inner channel - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 8ccebc7f-c29c-4581-aa10-c01f9c73ffa9 - - true - Semi-annual channel - 1033 - - - - 8ccebc7f-c29c-4581-aa10-c01f9c73ffa9 - - true - Semi-annual channel - 1033 - - - - 3 - - - - - - - - 0 - - - - - c64fa8e7-07e7-4097-b6b5-14cf4302b2cd - - releasechannel - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10231 - 2025-11-06T06:14:33.0669952 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - releasechannelname - 2025-11-06T06:14:33.0669952 - - true - canmodifyrequirementlevelsettings - None - - releasechannelName - - - VirtualType - - 9.1.0.0 - true - - - - - c6d5e5eb-10f6-456b-9950-7ee33e119c80 - - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 10181 - 2025-11-06T06:14:32.3629952 - - - - - 33ee5310-c986-40d8-8762-35126792eab0 - - true - Release Wave Applied to Environment. - 1033 - - - - 33ee5310-c986-40d8-8762-35126792eab0 - - true - Release Wave Applied to Environment. - 1033 - - - - - - aab857ec-3019-4493-a833-81e2ea2800da + true + Min Address Synchronization Frequency + 1033 + + + 69b0c985-0ed0-4eaa-9a4d-f4161b021464 true - Release Wave - 1033 + Minimumværdi for hyppighed af adressesynkronisering + 1030 - aab857ec-3019-4493-a833-81e2ea2800da + 03d96883-667b-497d-8c58-59846f609983 true - Release Wave + Min Address Synchronization Frequency 1033 @@ -187920,39 +201369,33 @@ true true - releasewavename - 2025-11-06T06:14:32.3629952 + minaddressbooksyncinterval + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ReleaseWaveName + MinAddressBookSyncInterval - StringType + IntegerType - 9.1.0.0 + 5.0.0.0 false 0 - - Text - Auto - 200 - - - Text - - - false + + None + 2147483647 + -2147483648 + 0 - 200 - - 6880322f-7754-4d45-8f8c-40f8bcbcf243 + + ca54f1fe-9102-dc11-aa9d-00123f558caf - Boolean + Integer false false false @@ -187961,42 +201404,56 @@ canmodifyadditionalsettings false - 10178 - 2025-11-06T06:14:32.3330048 + 123 + 1900-01-01T00:00:00 - 5b4e211d-87fa-4894-829a-922b1cc14394 + 785b34c2-4103-dc11-aa9d-00123f558caf true - Indicates whether relevance search was enabled for the environment as part of Dataverse's relevance search on-by-default sweep + Normal polling frequency used for background offline synchronization in Microsoft Office Outlook. 1033 + + 65168b41-ac36-462f-870e-b1a5412484fd + + true + Normal pollingfrekvens brugt til offline baggrundssynkronisering af adressekartotek i Microsoft Office Outlook. + 1030 + - 5b4e211d-87fa-4894-829a-922b1cc14394 + 785b34c2-4103-dc11-aa9d-00123f558caf true - Indicates whether relevance search was enabled for the environment as part of Dataverse's relevance search on-by-default sweep + Normal polling frequency used for background offline synchronization in Microsoft Office Outlook. 1033 - 9dd5b598-5e55-4bde-9bd7-26f76d5527fa + 759c747a-b105-4aee-983a-475f2556e2f4 true - Relevance search enabled automatically by Dataverse + Min Offline Synchronization Frequency 1033 + + f5ca9256-d741-4d1b-ada2-73d524e0dac8 + + true + Minimumværdi for hyppighed af offlinesynkronisering + 1030 + - 9dd5b598-5e55-4bde-9bd7-26f76d5527fa + 759c747a-b105-4aee-983a-475f2556e2f4 true - Relevance search enabled automatically by Dataverse + Min Offline Synchronization Frequency 1033 @@ -188006,13 +201463,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -188041,235 +201498,42 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - relevancesearchenabledbyplatform - 2025-11-06T06:14:32.3330048 + minofflinesyncinterval + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - RelevanceSearchEnabledByPlatform + MinOfflineSyncInterval - BooleanType + IntegerType - 9.1.0.0 + 5.0.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + None + 2147483647 + -2147483648 + 0 - - f93f4170-c5c4-47b4-affc-7636c2de93c6 - - relevancesearchenabledbyplatform - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10179 - 2025-11-06T06:14:32.3330048 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - relevancesearchenabledbyplatformname - 2025-11-06T06:14:32.3330048 - - true - canmodifyrequirementlevelsettings - None - - relevancesearchenabledbyplatformName - - - VirtualType - - 9.1.0.0 - true - - - - - a0759ef8-7c03-419d-b408-7561cc562ec8 + + 3c5e5e21-37f9-4d62-b7a5-a026e3fe77b4 - DateTime + Integer false false false @@ -188278,42 +201542,56 @@ canmodifyadditionalsettings false - 10180 - 2025-11-06T06:14:32.3500032 + 76 + 1900-01-01T00:00:00 - e3f6b620-cb98-430e-952a-41b5e679ab5d + 6b1c9b1e-2341-db11-898a-0007e9e17ebd true - This setting contains the last modified date for relevance search setting that appears as a toggle in PPAC. + Minimum allowed time between scheduled Outlook synchronizations. 1033 + + dadcf16f-acf4-46ac-8bf0-34b76c2e2981 + + true + Det mindste tid, der er tilladt mellem planlagte synkroniseringer med Outlook. + 1030 + - e3f6b620-cb98-430e-952a-41b5e679ab5d + 6b1c9b1e-2341-db11-898a-0007e9e17ebd true - This setting contains the last modified date for relevance search setting that appears as a toggle in PPAC. + Minimum allowed time between scheduled Outlook synchronizations. 1033 - 0d99c738-3487-45e5-948e-807de71bd445 + 37afe293-a4be-44dd-93e2-b52224c8ab0e true - RelevanceSearchModifiedOnDate + Min Synchronization Frequency 1033 + + 51ec97c3-5310-4856-8845-2a1824e4570f + + true + Minimumværdi for hyppighed af synkronisering + 1030 + - 0d99c738-3487-45e5-948e-807de71bd445 + 37afe293-a4be-44dd-93e2-b52224c8ab0e true - RelevanceSearchModifiedOnDate + Min Synchronization Frequency 1033 @@ -188321,15 +201599,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -188367,40 +201645,33 @@ true true - relevancesearchmodifiedon - 2025-11-06T06:14:32.3500032 + minoutlooksyncinterval + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - RelevanceSearchModifiedOn + MinOutlookSyncInterval - DateTimeType + IntegerType - 9.1.0.0 + 5.0.0.0 false 0 - - DateAndTime - Inactive - + + None + 2147483647 + 0 + 0 - - true - canmodifybehavior - true - - - UserLocal - - - b9ce078b-737f-4c2f-bc8f-83ee5933b738 + + 77d10d39-de93-4115-bfeb-4de4fb0b568c - Boolean + Integer false false false @@ -188409,42 +201680,56 @@ canmodifyadditionalsettings false - 141 + 322 1900-01-01T00:00:00 - b691aa12-2341-db11-898a-0007e9e17ebd + 57b521a3-3f14-4980-87d9-488ac6c50516 true - Flag to render the body of email in the Web form in an IFRAME with the security='restricted' attribute set. This is additional security but can cause a credentials prompt. + Minimum number of user license required for mobile offline service by production/preview organization 1033 + + 6d6dece0-44f2-4bae-8393-1e8c7cebcbbb + + true + Minimumantal brugerlicenser, der kræves til Mobile Offline-servicen af produktions-/eksempelorganisationen + 1030 + - b691aa12-2341-db11-898a-0007e9e17ebd + 57b521a3-3f14-4980-87d9-488ac6c50516 true - Flag to render the body of email in the Web form in an IFRAME with the security='restricted' attribute set. This is additional security but can cause a credentials prompt. + Minimum number of user license required for mobile offline service by production/preview organization 1033 - 39bb61ad-3c4f-4de4-9f30-870670b36a1b + 95443860-d06f-454c-bdbf-d4b4add03ea4 true - Render Secure Frame For Email + Minimum number of user license required for mobile offline service by production/preview organization 1033 + + e3824e0e-fe2d-4048-9fd1-b759bf77e598 + + true + Minimumantal brugerlicenser, der kræves til Mobile Offline-servicen af produktions-/eksempelorganisationen + 1030 + - 39bb61ad-3c4f-4de4-9f30-870670b36a1b + 95443860-d06f-454c-bdbf-d4b4add03ea4 true - Render Secure Frame For Email + Minimum number of user license required for mobile offline service by production/preview organization 1033 @@ -188491,142 +201776,40 @@ canmodifysearchsettings false - true + false false false true - true + false true - rendersecureiframeforemail + mobileofflineminlicenseprod 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - RenderSecureIFrameForEmail + MobileOfflineMinLicenseProd - BooleanType + IntegerType - 5.0.0.0 + 8.0.0.0 false 0 - false - - 14c50dc8-c7c8-4bea-a632-4d7d1888ca1f - - - - - 0f0e63bc-4a84-4b18-b546-41cf93f74b48 - - true - Flag to render the body of email in the Web form in an IFRAME with the security='restricted' attribute set. This is additional security but can cause a credentials prompt. - 1033 - - - - 0f0e63bc-4a84-4b18-b546-41cf93f74b48 - - true - Flag to render the body of email in the Web form in an IFRAME with the security='restricted' attribute set. This is additional security but can cause a credentials prompt. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_rendersecureiframeforemail - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 6158aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 6158aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 6358aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 6358aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + -2147483648 0 - - 669f065d-836f-4c3e-8246-2186f6e1cbe9 + + 1c6ac955-2015-45e5-8b46-b5019f7688b6 - Uniqueidentifier + Integer false false false @@ -188635,42 +201818,56 @@ canmodifyadditionalsettings false - 62 + 321 1900-01-01T00:00:00 - 9d53c2fa-2241-db11-898a-0007e9e17ebd + 9e1d31f3-227f-4a6d-a61c-9f195f91975a true - For internal use only. + Minimum number of user license required for mobile offline service by trial organization 1033 + + b650d7a6-14c7-43c4-bffd-cf0e94e9529e + + true + Minimumantal brugerlicenser, der kræves til Mobile Offline-servicen af prøveorganisationen + 1030 + - 9d53c2fa-2241-db11-898a-0007e9e17ebd + 9e1d31f3-227f-4a6d-a61c-9f195f91975a true - For internal use only. + Minimum number of user license required for mobile offline service by trial organization 1033 - 1a89781c-d757-45a0-82fb-81a04d84a3e8 + 4de42859-cdf7-4e27-a290-2e8fe99cb3d9 true - Reporting Group + Minimum number of user license required for mobile offline service by trial organization 1033 + + c400de05-6b0c-40fd-a639-08459193d21d + + true + Minimumantal brugerlicenser, der kræves til Mobile Offline-servicen af prøveorganisationen + 1030 + - 1a89781c-d757-45a0-82fb-81a04d84a3e8 + 4de42859-cdf7-4e27-a290-2e8fe99cb3d9 true - Reporting Group + Minimum number of user license required for mobile offline service by trial organization 1033 @@ -188678,15 +201875,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -188717,35 +201914,40 @@ canmodifysearchsettings false - true + false false false true - true + false true - reportinggroupid + mobileofflineminlicensetrial 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ReportingGroupId + MobileOfflineMinLicenseTrial - UniqueidentifierType + IntegerType - 5.0.0.0 + 8.0.0.0 false - + 0 + None + 2147483647 + -2147483648 + + 0 - - 63bd2fcb-0df8-4941-a8c4-731cbecbeed7 + + 195dab87-84d7-4c84-b708-1a13faafd77f - String + Integer false false false @@ -188754,42 +201956,56 @@ canmodifyadditionalsettings false - 86 + 319 1900-01-01T00:00:00 - 59d8dee2-2241-db11-898a-0007e9e17ebd + a38f6be7-e2d3-4271-a0c0-71ce35ca53d7 true - For internal use only. + Sync interval for mobile offline. 1033 + + 2ef9f349-f212-4c9d-a322-36d350b3df5c + + true + Synkroniseringsinterval for Mobile Offline. + 1030 + - 59d8dee2-2241-db11-898a-0007e9e17ebd + a38f6be7-e2d3-4271-a0c0-71ce35ca53d7 true - For internal use only. + Sync interval for mobile offline. 1033 - f04cc178-7487-446d-9ab2-bbd9cb1ff6ee + 3e70c0c7-6b82-4a66-8df8-a1fd6a845a72 true - Reporting Group Name + Sync interval for mobile offline. 1033 + + f886617c-8aa9-4972-a9b3-5b208150e2c8 + + true + Synkroniseringsinterval for Mobile Offline. + 1030 + - f04cc178-7487-446d-9ab2-bbd9cb1ff6ee + 3e70c0c7-6b82-4a66-8df8-a1fd6a845a72 true - Reporting Group Name + Sync interval for mobile offline. 1033 @@ -188797,9 +202013,9 @@ - false + true canmodifyauditsettings - false + true false @@ -188843,39 +202059,33 @@ true true - reportinggroupname + mobileofflinesyncinterval 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ReportingGroupName + MobileOfflineSyncInterval - StringType + IntegerType - 5.0.0.0 + 8.0.0.0 false 0 - Text - Auto - 256 - - - Text - + None + 2147483647 + 0 - false 0 - 512 - - a79f7945-18c0-41f7-861b-1f0d60dbfa78 + + a54d72fe-2f07-4eef-8e7f-2a8cb6d6550e - Picklist + Boolean false false false @@ -188884,42 +202094,56 @@ canmodifyadditionalsettings false - 184 - 1900-01-01T00:00:00 + 10200 + 2025-11-06T06:14:32.6599936 - 20abd7e5-b062-4ad4-a783-7d5041ebda63 + 651d1cf3-bff8-4ee7-9ebf-a8fb092a34c5 true - Picklist for selecting the organization preference for reporting scripting errors. + Flag to indicate if the modern advanced find filtering on all tables in a model-driven app is enabled 1033 + + f92c367c-3e6a-4904-915b-b6c2c58df9cc + + true + Flag, der angiver, om den moderne avancerede søgningsfiltrering af alle tabeller i en modelbaseret app er aktiveret + 1030 + - 20abd7e5-b062-4ad4-a783-7d5041ebda63 + 651d1cf3-bff8-4ee7-9ebf-a8fb092a34c5 true - Picklist for selecting the organization preference for reporting scripting errors. + Flag to indicate if the modern advanced find filtering on all tables in a model-driven app is enabled 1033 - 422c9a9d-c4c4-4f45-bc31-6a698c4bc454 + 485fadc3-71da-45db-8e39-c6e371d22b83 true - Report Script Errors + Modern advanced find filtering 1033 + + 556aaa6e-cae2-47a0-a644-08df176e6c89 + + true + Moderne avanceret søgefiltrering + 1030 + - 422c9a9d-c4c4-4f45-bc31-6a698c4bc454 + 485fadc3-71da-45db-8e39-c6e371d22b83 true - Report Script Errors + Modern advanced find filtering 1033 @@ -188929,13 +202153,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -188973,231 +202197,166 @@ true true - reportscripterrors - 1900-01-01T00:00:00 + modernadvancedfindfiltering + 2025-11-06T06:14:32.6599936 false canmodifyrequirementlevelsettings SystemRequired - ReportScriptErrors + ModernAdvancedFindFiltering - PicklistType + BooleanType - 5.0.0.0 + 9.1.0.0 false 0 - - -1 + + false - 7ea0803a-8823-4158-ba1f-711a3edaaa60 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 6f614e8d-098a-4b46-b00e-2ca14a521e6f + 05aedb96-402f-4dff-86e7-54b577874b2f true - Picklist for selecting the user preference for reporting scripting errors. + Information that specifies whether a feature is enabled for the organization. 1033 - - - 6f614e8d-098a-4b46-b00e-2ca14a521e6f - - true - Picklist for selecting the user preference for reporting scripting errors. - 1033 - - - - - be58fad4-c68b-4827-abaa-05c9517457f1 + 9aa58f12-110b-435b-9270-294a78494bba true - Report Script Errors - 1033 + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 - be58fad4-c68b-4827-abaa-05c9517457f1 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Report Script Errors + Information that specifies whether a feature is enabled for the organization. 1033 + + + + false false iscustomizable - true + false - false + true true - organization_reportscripterrors - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - e84c1852-56df-42ef-b587-923d7c3d1961 - - true - No preference for sending an error report to Microsoft about Microsoft Dynamics 365 - 1033 - - - - e84c1852-56df-42ef-b587-923d7c3d1961 + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - true - No preference for sending an error report to Microsoft about Microsoft Dynamics 365 - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - fe246b00-fcde-4cbe-a763-8bd6c75037d3 - - true - Ask me for permission to send an error report to Microsoft - 1033 - - - - fe246b00-fcde-4cbe-a763-8bd6c75037d3 + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 - true - Ask me for permission to send an error report to Microsoft - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - a351157d-c9fd-4808-8e72-847e77d911b9 - - true - Automatically send an error report to Microsoft without asking me for permission - 1033 - - - - a351157d-c9fd-4808-8e72-847e77d911b9 + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 - true - Automatically send an error report to Microsoft without asking me for permission - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 487869a1-5d60-4533-a845-63c21e032d9d - - true - Never send an error report to Microsoft about Microsoft Dynamics 365 - 1033 - - - - 487869a1-5d60-4533-a845-63c21e032d9d + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b - true - Never send an error report to Microsoft about Microsoft Dynamics 365 - 1033 - - - - 3 - - - - + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + - - + 0 - - - c5f8a9b0-6bb5-4fe6-a442-5b4c3bf8dcd0 + 2aaef99d-d086-4618-bf6f-ef2fdf78e2c7 - reportscripterrors + modernadvancedfindfiltering Virtual false false false - false + true canmodifyadditionalsettings - false + true - 185 - 1900-01-01T00:00:00 + 10201 + 2025-11-06T06:14:32.6770048 @@ -189211,15 +202370,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -189228,13 +202387,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -189246,7 +202405,7 @@ false - false + true canmodifysearchsettings false @@ -189257,25 +202416,25 @@ false false - reportscripterrorsname - 1900-01-01T00:00:00 + modernadvancedfindfilteringname + 2025-11-06T06:14:32.6770048 - false + true canmodifyrequirementlevelsettings None - ReportScriptErrorsName + modernadvancedfindfilteringName VirtualType - 5.0.0.0 + 9.1.0.0 true - + - 1dcfea31-9af4-43dc-b90e-d83f5a0d3c64 + 65fb16d0-0585-45f7-b845-a21794eafa91 Boolean @@ -189287,42 +202446,56 @@ canmodifyadditionalsettings false - 187 - 1900-01-01T00:00:00 + 10233 + 2025-11-06T07:22:28.0130048 - 1441b506-2343-db11-898c-0007e9e17ebd + eaa3fc05-a3f9-4d92-84d5-27b8d4dec2ee true - Indicates whether Send As Other User privilege is enabled. + Indicates whether coauthoring is enabled in modern app designer 1033 + + 7ff043df-d562-40c5-8213-12966d898190 + + true + Angiver, om samtidig redigering er aktiveret i moderne appdesigner + 1030 + - 1441b506-2343-db11-898c-0007e9e17ebd + eaa3fc05-a3f9-4d92-84d5-27b8d4dec2ee true - Indicates whether Send As Other User privilege is enabled. + Indicates whether coauthoring is enabled in modern app designer 1033 - 77e6ce1a-38e1-44ce-8aa8-d4946f91d7d2 + e861b907-bab9-4e3b-9b28-0812a01c50fb true - Is Approval For Queue Email Required + Coauthoring in Modern App Designer Enabled 1033 + + 1f129771-367f-4c50-a783-14d1eacf5ae9 + + true + Samtidig redigering i moderne appdesigner er aktiveret + 1030 + - 77e6ce1a-38e1-44ce-8aa8-d4946f91d7d2 + e861b907-bab9-4e3b-9b28-0812a01c50fb true - Is Approval For Queue Email Required + Coauthoring in Modern App Designer Enabled 1033 @@ -189332,13 +202505,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -189367,50 +202540,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - requireapprovalforqueueemail - 1900-01-01T00:00:00 + modernappdesignercoauthoringenabled + 2025-11-06T07:22:28.0130048 false canmodifyrequirementlevelsettings - SystemRequired + None - RequireApprovalForQueueEmail + ModernAppDesignerCoauthoringEnabled BooleanType - 5.0.0.0 + 9.1.0.0 false 0 - + false - 386439f4-81fe-4673-938c-6049ea4ec4e2 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 26f16772-6c1c-4586-8c83-c999b7df4a28 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Indicates if send as other user privilege is enabled or not. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 26f16772-6c1c-4586-8c83-c999b7df4a28 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Indicates if send as other user privilege is enabled or not. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -189423,13 +202603,13 @@ false iscustomizable - true + false - false + true true - organization_requireapprovalforqueueemail + organization_featureenabled Boolean - 5.0.0.0 + 8.1.0.0 @@ -189444,15 +202624,22 @@ - 3b25b0cb-e780-db13-9b87-00137299e160 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 3b25b0cb-e780-db13-9b87-00137299e160 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -189477,15 +202664,22 @@ - 3d25b0cb-e780-db13-9b88-00137299e160 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 3d25b0cb-e780-db13-9b88-00137299e160 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -189497,60 +202691,32 @@ - + 0 - - 1dcfea31-9af4-43db-b90e-d83f5a0d3c64 + + 8aada230-9f73-4e51-b605-37da0b0c2fbb - - Boolean + modernappdesignercoauthoringenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 186 - 1900-01-01T00:00:00 + 10234 + 2025-11-06T07:22:28.0300032 - - - 1441b506-2343-db11-898b-0007e9e17ebd - - true - Indicates whether Send As Other User privilege is enabled. - 1033 - - - - 1441b506-2343-db11-898b-0007e9e17ebd - - true - Indicates whether Send As Other User privilege is enabled. - 1033 - + + - - - e87c390d-aa6c-4a0a-af41-c938d704139b - - true - Is Approval For User Email Required - 1033 - - - - e87c390d-aa6c-4a0a-af41-c938d704139b - - true - Is Approval For User Email Required - 1033 - + + organization @@ -189558,11 +202724,11 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable true @@ -189573,13 +202739,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -189591,146 +202757,39 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - requireapprovalforuseremail - 1900-01-01T00:00:00 + modernappdesignercoauthoringenabledname + 2025-11-06T07:22:28.0300032 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - RequireApprovalForUserEmail + modernappdesignercoauthoringenabledName - BooleanType + VirtualType - 5.0.0.0 - false - 0 - - false - - 386439f4-81fe-4673-938b-6049ea4ec4e2 - - - - - 26f16772-6c1c-4586-8c82-c999b7df4a28 - - true - Indicates if send as other user privilege is enabled or not. - 1033 - - - - 26f16772-6c1c-4586-8c82-c999b7df4a28 - - true - Indicates if send as other user privilege is enabled or not. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_requireapprovalforuseremail - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 3b25b0cb-e780-db13-9b86-00137299e160 - - true - No - 1033 - - - - 3b25b0cb-e780-db13-9b86-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 3d25b0cb-e780-db13-9b86-00137299e160 - - true - Yes - 1033 - - - - 3d25b0cb-e780-db13-9b86-00137299e160 - - true - Yes - 1033 - - - - 1 - - - - - 0 + 9.1.0.0 + true + + - - bc6f5d67-d0e4-45b3-8260-9c949032051d + + c27010f7-4fee-4638-98fc-ba242484b553 - Boolean + Lookup false false false @@ -189739,42 +202798,56 @@ canmodifyadditionalsettings false - 407 + 66 1900-01-01T00:00:00 - d67eafde-e8bd-4b20-b658-764ea4f0338b + c1f1fbc4-2241-db11-898a-0007e9e17ebd true - Apply same email address to all unresolved matches when you manually resolve it for one + Unique identifier of the user who last modified the organization. 1033 + + 69c8eec6-9a3b-4fe5-ad21-f44776fc67a0 + + true + Entydigt id for den bruger, der sidst ændrede organisationen. + 1030 + - d67eafde-e8bd-4b20-b658-764ea4f0338b + c1f1fbc4-2241-db11-898a-0007e9e17ebd true - Apply same email address to all unresolved matches when you manually resolve it for one + Unique identifier of the user who last modified the organization. 1033 - 3b65d7a1-ea33-46ab-8916-d1927de643a9 + c441674d-9078-4352-a0e7-2a741fb1ddb1 true - Apply same email address to all unresolved matches when you manually resolve it for one + Modified By 1033 + + b7f6241b-6280-487a-aa3f-4467d13a6dde + + true + Ændret af + 1030 + - 3b65d7a1-ea33-46ab-8916-d1927de643a9 + c441674d-9078-4352-a0e7-2a741fb1ddb1 true - Apply same email address to all unresolved matches when you manually resolve it for one + Modified By 1033 @@ -189782,15 +202855,15 @@ - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -189821,202 +202894,71 @@ canmodifysearchsettings false - true + false false false true - true + false true - resolvesimilarunresolvedemailaddress + modifiedby 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - ResolveSimilarUnresolvedEmailAddress + ModifiedBy - BooleanType + LookupType - 9.0.0.0 + 5.0.0.0 false - 0 + - false - - 6e9bd2b2-8644-4afb-abdc-f903762323ba - - - - - 4ff98614-9a96-4c5f-a02a-6b63b13a01eb - - true - Flag to resolve other unresolved email address if multiple match found - 1033 - - - - 4ff98614-9a96-4c5f-a02a-6b63b13a01eb - - true - Flag to resolve other unresolved email address if multiple match found - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_resolvesimilarunresolvedemailaddress - Boolean - 9.0.0.0 - - - - - - - - - - false - true - - - - e011e886-011e-4b9f-9f35-4b972634391d - - true - No - 1033 - - - - e011e886-011e-4b9f-9f35-4b972634391d - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 81341ccf-eb1e-4b56-b258-f9622256b55e - - true - Yes - 1033 - - - - 81341ccf-eb1e-4b56-b258-f9622256b55e - - true - Yes - 1033 - - - - 1 - - - - - 0 + None + + systemuser + - - 0d6264cc-43f4-4e6f-88eb-6404328be27c + + 552e4ded-a8e7-4f3b-9229-9231a9d00dc5 - - Boolean + modifiedby + String false false false false canmodifyadditionalsettings - true + false - 10119 - 2025-11-06T03:38:23.8499968 + 98 + 1900-01-01T00:00:00 - - - b4b6b8d2-76d7-4512-a622-9062d8682581 - - true - Information that specifies whether guest user restriction is enabled - 1033 - - - - b4b6b8d2-76d7-4512-a622-9062d8682581 - - true - Information that specifies whether guest user restriction is enabled - 1033 - + + - - - ca281fb3-1e94-4663-bc00-52c4193e4d1e - - true - Restrict guest users access to the organization - 1033 - - - - ca281fb3-1e94-4663-bc00-52c4193e4d1e - - true - Restrict guest users access to the organization - 1033 - + + organization - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -190047,152 +202989,56 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - restrictGuestUserAccess - 2025-12-14T02:08:38.68 + modifiedbyname + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - RestrictGuestUserAccess + ModifiedByName - BooleanType + StringType - 1.0.0.150 - false + 5.0.0.0 + true 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + Text + Auto + 100 + + + Text + + + false 0 + 320 - - 047e20d5-99dd-4542-a03d-8e60419527cf + + 6f00f32b-3698-41fb-a455-810d2a8ed167 - restrictGuestUserAccess - Virtual + modifiedby + String false false false - true + false canmodifyadditionalsettings - true + false - 10120 - 2025-11-06T03:38:23.8630016 + 154 + 1900-01-01T00:00:00 @@ -190206,15 +203052,15 @@ - true + false canmodifyauditsettings false false - true + false iscustomizable - true + false false false @@ -190223,13 +203069,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -190241,7 +203087,7 @@ false - true + false canmodifysearchsettings false @@ -190252,72 +203098,97 @@ false false - restrictguestuseraccessname - 2025-11-06T03:38:23.8630016 + modifiedbyyominame + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - restrictGuestUserAccessName + ModifiedByYomiName - VirtualType + StringType - 1.0.0.150 + 5.0.0.0 true - - + 0 + + Text + Auto + 100 + modifiedbyname + + Text + + + false + 0 + 320 - - f687b92b-eb0a-44c3-8afa-7d381123475b + + c12f9901-98c7-4d3b-a8a7-f530b1afe589 - Boolean + DateTime false false false false canmodifyadditionalsettings - true + false - 253 + 33 1900-01-01T00:00:00 - 4170097e-f6be-4250-8fad-b2c8dc9a1bde + c2d7a218-2341-db11-898a-0007e9e17ebd true - Flag to restrict Update on incident. + Date and time when the organization was last modified. 1033 + + 79e0f85b-5821-4b89-905a-9e47405cc68a + + true + Dato og klokkeslæt for den seneste ændring af organisationen. + 1030 + - 4170097e-f6be-4250-8fad-b2c8dc9a1bde + c2d7a218-2341-db11-898a-0007e9e17ebd true - Flag to restrict Update on incident. + Date and time when the organization was last modified. 1033 - a0af8335-ab5b-46de-a8c3-2fe72086a18f + dd041e9f-c806-4c03-b66c-227bfddc203d true - Restrict Status Update + Modified On 1033 + + 4a555689-dcd9-4613-ba4e-e534ad7f46d7 + + true + Ændret + 1030 + - a0af8335-ab5b-46de-a8c3-2fe72086a18f + dd041e9f-c806-4c03-b66c-227bfddc203d true - Restrict Status Update + Modified On 1033 @@ -190325,9 +203196,9 @@ - true + false canmodifyauditsettings - true + false false @@ -190364,316 +203235,105 @@ canmodifysearchsettings false - true + false false false true - true + false true - restrictstatusupdate + modifiedon 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - RestrictStatusUpdate + ModifiedOn - BooleanType + DateTimeType - 6.1.0.0 + 5.0.0.0 false 0 - false - - 9cf1fc83-5c2c-4a6c-aba2-63ed6599dbd0 - - - - - d7c210dd-9b2e-4f94-8344-07a59104ea85 - - true - Restrict Status Update - 1033 - - - - d7c210dd-9b2e-4f94-8344-07a59104ea85 - - true - Restrict Status Update - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_restrictstatusupdate - Boolean - 6.1.0.0 - - - - - - - - - - false - true - - - - d8bbbb14-0d7d-4f14-9a60-6e65a0e65ab8 - - true - No - 1033 - - - - d8bbbb14-0d7d-4f14-9a60-6e65a0e65ab8 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - d4c3d48b-8aed-4241-bee2-5de72a6d8918 - - true - Yes - 1033 - - - - d4c3d48b-8aed-4241-bee2-5de72a6d8918 - - true - Yes - 1033 - - - - 1 - - - + DateAndTime + Inactive 0 + + false + canmodifybehavior + false + + + UserLocal + - - ea2e928e-526d-48c7-b14b-4c4928f8906c + + cabb31c4-3842-4532-ae5d-4391385e7d03 - String + Lookup false false false false canmodifyadditionalsettings - true + false - 10020 - 2025-11-06T01:17:44.6930048 + 176 + 1900-01-01T00:00:00 - 984bf143-314f-431f-9fbd-5a59032578dc + b56c41a3-5641-43f9-8d01-167554e401fc true - Information that specifies Reverse Proxy IP addresses from which requests have to be allowed. + Unique identifier of the delegate user who last modified the organization. 1033 - - - 984bf143-314f-431f-9fbd-5a59032578dc - - true - Information that specifies Reverse Proxy IP addresses from which requests have to be allowed. - 1033 - - - - - d98522b4-6bd7-4d7b-87b4-a50c6e2b52cf + ab6ff8b4-4b10-435a-9729-408a955dc7d9 true - List of reverse proxy IP addresses to be allowed. - 1033 + Entydigt id for den stedfortræderbruger, der senest ændrede organisationen. + 1030 - d98522b4-6bd7-4d7b-87b4-a50c6e2b52cf + b56c41a3-5641-43f9-8d01-167554e401fc true - List of reverse proxy IP addresses to be allowed. + Unique identifier of the delegate user who last modified the organization. 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - reverseproxyipaddresses - 2025-11-06T01:17:44.6930048 - - false - canmodifyrequirementlevelsettings - None - - ReverseProxyIpAddresses - - - StringType - - 1.0.0.15 - false - 0 - - Text - Auto - 4000 - - - Text - - - false - 0 - 8000 - - - d6d463d3-5a4a-4f8d-b3f2-039257e228a7 - - - Integer - false - false - false - - false - canmodifyadditionalsettings - false - - 395 - 1900-01-01T00:00:00 - - + + - 3d34c3fb-9133-41e0-9558-bb1780332178 + 1e454c2c-917e-490e-aa46-19fa66ab98fd true - Error status of Relationship Insights provisioning. + Modified By (Delegate) 1033 - - - 3d34c3fb-9133-41e0-9558-bb1780332178 - - true - Error status of Relationship Insights provisioning. - 1033 - - - - - ad30f9e2-e22d-4f56-968c-3356d6bc2d4d + 6165062e-0be5-4379-b9e5-fc4e72bc9f11 true - Error status of Relationship Insights provisioning. - 1033 + Ændret af (stedfortræder) + 1030 - ad30f9e2-e22d-4f56-968c-3356d6bc2d4d + 1e454c2c-917e-490e-aa46-19fa66ab98fd true - Error status of Relationship Insights provisioning. + Modified By (Delegate) 1033 @@ -190681,9 +203341,9 @@ - true + false canmodifyauditsettings - true + false false @@ -190720,362 +203380,49 @@ canmodifysearchsettings false - true + false false false true - true + false true - rierrorstatus + modifiedonbehalfby 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - RiErrorStatus + ModifiedOnBehalfBy - IntegerType + LookupType - 8.2.0.0 + 5.0.0.0 false - 0 + None - 2147483647 - 0 - - 0 + + systemuser + - - c05cbd2f-94e9-43d8-96ca-4ebfd3af9c28 + + a4845eb6-5d8e-4c5f-b878-afe756632845 - - Picklist + modifiedonbehalfby + String false false false false canmodifyadditionalsettings - true - - 10029 - 2025-11-06T01:17:44.8029952 - - - - - 7ee116a5-9f63-4479-a8e9-0feab2e726c1 - - true - Samesite mode for Session Cookie 0 is Default, 1 is None, 2 is Lax , 3 is Strict - 1033 - - - - 7ee116a5-9f63-4479-a8e9-0feab2e726c1 - - true - Samesite mode for Session Cookie 0 is Default, 1 is None, 2 is Lax , 3 is Strict - 1033 - - - - - - a732b2d3-ee90-4069-ae0a-a3230ed1e6ba - - true - Samesite mode for Session Cookie - 1033 - - - - a732b2d3-ee90-4069-ae0a-a3230ed1e6ba - - true - Samesite mode for Session Cookie - 1033 - - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings false - - true - false - false - true - true - true - - samesitemodeforsessioncookie - 2025-11-06T01:17:44.8029952 - - false - canmodifyrequirementlevelsettings - SystemRequired - - SameSiteModeForSessionCookie - - - PicklistType - - 1.0.0.15 - false - 0 - - 0 - - 659a7c82-3b96-430d-8f88-b51f6ab0d4ba - - - - - 87117460-aeba-f011-bbd3-7c1e52365f30 - - true - Samesite mode for Session Cookie: 0 is Default, 1 is None, 2 is Lax , 3 is Strict - 1033 - - - - 87117460-aeba-f011-bbd3-7c1e52365f30 - - true - Samesite mode for Session Cookie: 0 is Default, 1 is None, 2 is Lax , 3 is Strict - 1033 - - - - - - 86117460-aeba-f011-bbd3-7c1e52365f30 - - true - Samesite mode for Session Cookie - 1033 - - - - 86117460-aeba-f011-bbd3-7c1e52365f30 - - true - Samesite mode for Session Cookie - 1033 - - - - false - - false - iscustomizable - false - - true - true - organization_samesitemodeforsessioncookie - Picklist - 1.0.0.15 - - - - - - - - - - - false - true - - - - 6e26a211-fd40-4b82-9261-5392794b1061 - - true - Default - 1033 - - - - 6e26a211-fd40-4b82-9261-5392794b1061 - - true - Default - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 534e0c78-e555-4964-ade3-22ddf6c7e271 - - true - None - 1033 - - - - 534e0c78-e555-4964-ade3-22ddf6c7e271 - - true - None - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - dfa431e9-3acd-4ab5-b284-f3ecb35aa591 - - true - Lax - 1033 - - - - dfa431e9-3acd-4ab5-b284-f3ecb35aa591 - - true - Lax - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - fae15d18-b590-41a8-a840-0d9f619c0e53 - - true - Strict - 1033 - - - - fae15d18-b590-41a8-a840-0d9f619c0e53 - - true - Strict - 1033 - - - - 3 - - - - - - - - 0 - - - - - bce07e85-2ac6-4581-bf91-6abd19673c37 - - samesitemodeforsessioncookie - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - 10030 - 2025-11-06T01:17:44.8199936 + 178 + 1900-01-01T00:00:00 @@ -191089,15 +203436,15 @@ - true + false canmodifyauditsettings false false - true + false iscustomizable - true + false false false @@ -191106,13 +203453,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -191124,7 +203471,7 @@ false - true + false canmodifysearchsettings false @@ -191135,28 +203482,39 @@ false false - samesitemodeforsessioncookiename - 2025-11-06T01:17:44.8199936 + modifiedonbehalfbyname + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - samesitemodeforsessioncookieName + ModifiedOnBehalfByName - VirtualType + StringType - 1.0.0.15 + 5.0.0.0 true - - + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 - - 93b67771-5cee-443c-b761-4a61b8bef23e + + d53f9b81-1c45-4df2-aef8-6fd98beb354d - - Uniqueidentifier + modifiedonbehalfby + String false false false @@ -191165,44 +203523,16 @@ canmodifyadditionalsettings false - 183 + 179 1900-01-01T00:00:00 - - - 4b8dadae-44b9-43fe-b200-f3272bfcd22c - - true - Unique identifier of the sample data import job. - 1033 - - - - 4b8dadae-44b9-43fe-b200-f3272bfcd22c - - true - Unique identifier of the sample data import job. - 1033 - + + - - - 47be118b-3366-42dd-80fe-8402a6780b8e - - true - Sample Data Import - 1033 - - - - 47be118b-3366-42dd-80fe-8402a6780b8e - - true - Sample Data Import - 1033 - + + organization @@ -191247,32 +203577,43 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - sampledataimportid + modifiedonbehalfbyyominame 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - SampleDataImportId + ModifiedOnBehalfByYomiName - UniqueidentifierType + StringType 5.0.0.0 - false - + true + 0 + Text + Auto + 100 + modifiedonbehalfbyname + + Text + + + false + 0 + 320 - 5571e88c-7adb-47a4-bed6-1811ff22019a + 3ac482da-ce2b-4d70-975c-4b340c42f601 Integer @@ -191282,44 +203623,58 @@ false canmodifyadditionalsettings - true + false - 10085 - 2025-11-06T02:47:58.0230016 + 10228 + 2025-11-06T06:14:33.0200064 - 8430f716-ebbe-40de-93ed-be69d171ecab + ab4ec1b8-4623-4c1f-bb25-741ce49356a2 true - Default time to live in minutes for new Power Automate savings events records in flow aggregation. + Show the sort by button on views 1033 + + 5e28c446-9996-49e5-8668-fa111adc4b9b + + true + Vis knappen Sortér efter i visninger + 1030 + - 8430f716-ebbe-40de-93ed-be69d171ecab + ab4ec1b8-4623-4c1f-bb25-741ce49356a2 true - Default time to live in minutes for new Power Automate savings events records in flow aggregation. + Show the sort by button on views 1033 - 9a533797-85bc-40d2-b921-6b92cb9c5983 + dfa10401-1214-46a9-bda3-9ed9ae42d435 true - The TTL in minutes for new Power Automate savings events records in flow aggregation. + Enable Multi Column Sort Editor In Views 1033 + + 27bf5127-3fa3-4fbc-a715-bfed4bce8f50 + + true + Aktivér editor til sortering af flere kolonner i visninger + 1030 + - 9a533797-85bc-40d2-b921-6b92cb9c5983 + dfa10401-1214-46a9-bda3-9ed9ae42d435 true - The TTL in minutes for new Power Automate savings events records in flow aggregation. + Enable Multi Column Sort Editor In Views 1033 @@ -191329,13 +203684,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -191350,7 +203705,7 @@ false isrenameable - true + false false false @@ -191362,41 +203717,41 @@ false - true + false canmodifysearchsettings - false + true true - false - false + true + true true true true - savingeventsttlinminutes - 2025-11-06T02:47:58.0230016 + multicolumnsortenabled + 2025-11-06T06:14:33.0200064 - true + false canmodifyrequirementlevelsettings SystemRequired - SavingEventsTTLInMinutes + MultiColumnSortEnabled IntegerType - 1.9.4.0 + 9.1.0.0 false 0 - + None - 52560000 - -1 + 100 + 0 0 - 124232ff-ddd3-4e39-b0d9-66126ed5cd4d + 36d5c7bb-0b7f-409d-b6c1-dc23f3db9b76 String @@ -191408,42 +203763,56 @@ canmodifyadditionalsettings false - 88 + 2 1900-01-01T00:00:00 - 83d8dee2-2241-db11-898a-0007e9e17ebd + cdf1fbc4-2241-db11-898a-0007e9e17ebd true - Prefix used for custom entities and attributes. + Name of the organization. The name is set when Microsoft CRM is installed and should not be changed. 1033 + + db97114b-ba27-4eb8-863a-b9eae8726c5e + + true + Navnet på organisationen. Navnet angives, når Microsoft CRM installeres, og det bør ikke ændres. + 1030 + - 83d8dee2-2241-db11-898a-0007e9e17ebd + cdf1fbc4-2241-db11-898a-0007e9e17ebd true - Prefix used for custom entities and attributes. + Name of the organization. The name is set when Microsoft CRM is installed and should not be changed. 1033 - 5da47d12-d56f-4b40-a41e-208834b30b42 + e8222828-943b-496c-ad08-ec48a76b6e84 true - Customization Name Prefix + Organization Name 1033 + + 05efbe41-81c3-4471-a37f-c488e3e4ef65 + + true + Organisationsnavn + 1030 + - 5da47d12-d56f-4b40-a41e-208834b30b42 + e8222828-943b-496c-ad08-ec48a76b6e84 true - Customization Name Prefix + Organization Name 1033 @@ -191470,15 +203839,15 @@ true false - false + true false isrenameable false false - false - false + true + true false true @@ -191494,17 +203863,17 @@ false false true - true + false true - schemanameprefix + name 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - SchemaNamePrefix + Name StringType @@ -191515,7 +203884,7 @@ Text Auto - 8 + 160 Text @@ -191523,10 +203892,10 @@ false 0 - 16 + 320 - 05d1eaa1-dace-473b-b511-1cb64b2dfc29 + fcfab910-c449-457c-9b1b-c2e9273312e3 Boolean @@ -191536,44 +203905,58 @@ false canmodifyadditionalsettings - true + false - 459 - 2025-11-06T00:19:21.2770048 + 10226 + 2025-11-06T06:14:33.0029952 - 18c86bdf-c771-4384-9d6f-50275e1d778a + 7901e2f7-adc2-4d81-a0c4-0c208eed9d09 true - Indicates whether Send Bulk Email in UCI is enabled for the org. + Enables Natural Language Assist Filter. 1033 + + 16e73bc2-2905-4726-8199-19c7c271db36 + + true + Aktiverer filter til assistent til naturligt sprog. + 1030 + - 18c86bdf-c771-4384-9d6f-50275e1d778a + 7901e2f7-adc2-4d81-a0c4-0c208eed9d09 true - Indicates whether Send Bulk Email in UCI is enabled for the org. + Enables Natural Language Assist Filter. 1033 - 512e0b74-3d5d-42bd-a29d-338659cb50b5 + 92c69357-0f48-45d6-90b4-1235fa8e87db true - Send Bulk Email in UCI + Natural Language Assist 1033 + + e4bd017d-d275-471a-99c7-6f46d9cac960 + + true + Assist til naturligt sprog + 1030 + - 512e0b74-3d5d-42bd-a29d-338659cb50b5 + 92c69357-0f48-45d6-90b4-1235fa8e87db true - Send Bulk Email in UCI + Natural Language Assist 1033 @@ -191583,7 +203966,7 @@ true canmodifyauditsettings - true + false false @@ -191618,23 +204001,23 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - sendbulkemailinuci - 2025-11-06T00:19:21.2770048 + naturallanguageassistfilter + 2025-11-06T06:14:33.0029952 false canmodifyrequirementlevelsettings SystemRequired - SendBulkEmailInUCI + NaturalLanguageAssistFilter BooleanType @@ -191642,7 +204025,7 @@ 9.1.0.0 false 0 - + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -191656,6 +204039,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -191701,6 +204091,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -191734,6 +204131,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -191748,58 +204152,163 @@ - + 0 - - b91625f8-2005-4580-9e88-95719b2e0b74 + + 1c38fd23-632e-4587-b488-387bcbc1f25f + + naturallanguageassistfilter + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10227 + 2025-11-06T06:14:33.0029952 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + naturallanguageassistfiltername + 2025-11-06T06:14:33.0029952 + + true + canmodifyrequirementlevelsettings + None + + naturallanguageassistfilterName + + + VirtualType + + 9.1.0.0 + true + + + + + 1c3ad032-64de-4bb4-a321-fcdc529051ec - Boolean + Integer false false false false canmodifyadditionalsettings - true + false - 422 - 2025-11-06T00:19:21.9170048 + 129 + 1900-01-01T00:00:00 - f8635655-8761-4938-b640-1515d4c12faa + 9f411917-dcee-4a37-a5ea-3b1c447da855 true - Serve Static Content From CDN + Information that specifies how negative currency numbers are displayed throughout Microsoft Dynamics 365. 1033 + + 8511c813-f942-4647-b767-922d93418a84 + + true + Oplysninger, der angiver, hvordan negative valutatal vises i Microsoft Dynamics 365. + 1030 + - f8635655-8761-4938-b640-1515d4c12faa + 9f411917-dcee-4a37-a5ea-3b1c447da855 true - Serve Static Content From CDN + Information that specifies how negative currency numbers are displayed throughout Microsoft Dynamics 365. 1033 - 4f6005fe-774f-4279-9b48-8afa844eb8b0 + 4d3df941-0849-470a-8e87-270a5c5baef7 true - Serve Static Content From CDN + Negative Currency Format 1033 + + da96d9ce-bb76-4746-a08d-6baeb6585d78 + + true + Negativt valutaformat + 1030 + - 4f6005fe-774f-4279-9b48-8afa844eb8b0 + 4d3df941-0849-470a-8e87-270a5c5baef7 true - Serve Static Content From CDN + Negative Currency Format 1033 @@ -191815,7 +204324,7 @@ false iscustomizable - false + true false false @@ -191853,135 +204362,33 @@ true true - servestaticresourcesfromazurecdn - 2025-11-06T00:19:21.9170048 + negativecurrencyformatcode + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - ServeStaticResourcesFromAzureCDN + NegativeCurrencyFormatCode - BooleanType + IntegerType - 8.2.0.0 + 5.0.0.0 false 0 - true - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + -2147483648 0 - - 3b3ce890-8e6b-479c-b557-8a1530ed5a25 + + d5ab53a4-a2f4-44c7-8deb-947c0cbe0675 - Boolean + Picklist false false false @@ -191990,42 +204397,56 @@ canmodifyadditionalsettings false - 10194 - 2025-11-06T06:14:32.5830016 + 15 + 1900-01-01T00:00:00 - 31c40194-ac06-45b3-acb3-39fdf42bfb3d + c752c2fa-2241-db11-898a-0007e9e17ebd true - Enable the session recording feature to record user sessions in UCI + Information that specifies how negative numbers are displayed throughout Microsoft CRM. 1033 + + 8d11bf0c-84df-4aef-8e94-eaa82023f5c9 + + true + Oplysninger, der angiver, hvordan negative tal vises i Microsoft CRM. + 1030 + - 31c40194-ac06-45b3-acb3-39fdf42bfb3d + c752c2fa-2241-db11-898a-0007e9e17ebd true - Enable the session recording feature to record user sessions in UCI + Information that specifies how negative numbers are displayed throughout Microsoft CRM. 1033 - 8b910253-5fe0-4f78-859b-cda8fd8957b3 + 8bcd11fd-d7fc-489b-8cad-c5dd115d042d true - Enable the session recording feature + Negative Format 1033 + + d7a9bf13-1130-4a66-b2b6-b44bab19758c + + true + Negativt format + 1030 + - 8b910253-5fe0-4f78-859b-cda8fd8957b3 + 8bcd11fd-d7fc-489b-8cad-c5dd115d042d true - Enable the session recording feature + Negative Format 1033 @@ -192035,13 +204456,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -192070,50 +204491,57 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - sessionrecordingenabled - 2025-11-06T06:14:32.5830016 + negativeformatcode + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - SessionRecordingEnabled + NegativeFormatCode - BooleanType + PicklistType - 9.1.0.0 + 5.0.0.0 false 0 - - false + + 0 - 315e90f0-678b-4e4d-97f1-886050c3cb46 + 2775af05-88a1-4429-949d-03a9ead1f5a8 - 05aedb96-402f-4dff-86e7-54b577874b2f + aa4c5640-7c61-435e-8275-7639b43bca75 true - Information that specifies whether a feature is enabled for the organization. + Information that specifies how negative numbers are displayed throughout Microsoft CRM. 1033 + + 42f6c81f-c05d-441d-ae60-c186b5db87d3 + + true + Oplysninger, der angiver, hvordan negative tal vises i Microsoft CRM. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + aa4c5640-7c61-435e-8275-7639b43bca75 true - Information that specifies whether a feature is enabled for the organization. + Information that specifies how negative numbers are displayed throughout Microsoft CRM. 1033 @@ -192126,98 +204554,238 @@ false iscustomizable - false + true - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + organization_negativeformatcode + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + 1f834da7-7b88-47c1-a06f-cb9326761160 + + true + Brackets + 1033 + + + 1c437a36-f873-4549-86d5-4c75e18c719c + + true + Parenteser + 1030 + + + + 1f834da7-7b88-47c1-a06f-cb9326761160 - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + Brackets + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 60c5b314-2306-4b76-8e3e-a328874af83f + + true + Dash + 1033 + + + 525f5189-8057-43e5-8840-b4508bcf65bd + + true + Streg + 1030 + + + + 60c5b314-2306-4b76-8e3e-a328874af83f - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + Dash + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + b2e7f53f-7934-4d97-8a1d-19ee02701c09 + + true + Dash plus Space + 1033 + + + b81c25da-5eac-4757-8f26-f90748f654c2 + + true + Streg plus mellemrum + 1030 + + + + b2e7f53f-7934-4d97-8a1d-19ee02701c09 + + true + Dash plus Space + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 95589e74-c0bc-40da-8836-b5197865eee2 + + true + Trailing Dash + 1033 + + + e348ce21-0bb1-499a-a91b-4bfdb4a753d6 + + true + Efterstillet streg + 1030 + + + + 95589e74-c0bc-40da-8836-b5197865eee2 + + true + Trailing Dash + 1033 + + + + 3 + + + + + + + + + + + + false + true + + + + c4ba949f-aad2-4155-9dba-f61116d7ca9c + + true + Space plus Trailing Dash + 1033 + + + 789684ad-1dc1-458f-b5bf-33b74ea5e769 + + true + Mellemrum plus efterstillet streg + 1030 + + + + c4ba949f-aad2-4155-9dba-f61116d7ca9c + + true + Space plus Trailing Dash + 1033 + + + + 4 + + + + - + + 0 + + - 720f3af6-0f7d-4d44-8434-5f5572b41105 + 2a710a90-480e-4862-bdff-fd2f90784a9e - sessionrecordingenabled + negativeformatcode Virtual false false false - true + false canmodifyadditionalsettings - true + false - 10195 - 2025-11-06T06:14:32.6130048 + 49 + 1900-01-01T00:00:00 @@ -192231,15 +204799,15 @@ - true + false canmodifyauditsettings false false - true + false iscustomizable - true + false false false @@ -192248,13 +204816,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -192266,7 +204834,7 @@ false - true + false canmodifysearchsettings false @@ -192277,25 +204845,25 @@ false false - sessionrecordingenabledname - 2025-11-06T06:14:32.6130048 + negativeformatcodename + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - sessionrecordingenabledName + NegativeFormatCodeName VirtualType - 9.1.0.0 + 5.0.0.0 true - + - 0b6f6ea6-edf8-45b2-9a01-e773f25a7904 + 7dd8b69f-7afd-40e7-a1c5-b243fffdcd7d Boolean @@ -192305,44 +204873,58 @@ false canmodifyadditionalsettings - true + false - 409 - 1900-01-01T00:00:00 + 10176 + 2025-11-06T06:14:32.3000064 - ef3aafca-d305-4526-a3f3-1989078db439 + 484e965a-8bd1-456d-9af4-876f6ab07aba true - Information that specifies whether session timeout is enabled + Indicates whether an organization has enabled the new Relevance search experience (released in Oct 2020) for the organization 1033 + + 2d29d5ea-6305-4e65-afd0-378aa1c944b0 + + true + Angiver, om en organisation har aktiveret den nye relevanssøgning (udgivet i oktober 2020) til organisationen + 1030 + - ef3aafca-d305-4526-a3f3-1989078db439 + 484e965a-8bd1-456d-9af4-876f6ab07aba true - Information that specifies whether session timeout is enabled + Indicates whether an organization has enabled the new Relevance search experience (released in Oct 2020) for the organization 1033 - cf867ef3-9c0d-4254-8d47-92f3cf8cca5e + 72309943-f632-4104-aaa3-50a29cf1289d true - Session timeout enabled + Oct 2020 Search enabled 1033 + + 2946244d-0a1d-4e3d-a1e9-fb84afe7d037 + + true + Oktober 2020-søgning aktiveret + 1030 + - cf867ef3-9c0d-4254-8d47-92f3cf8cca5e + 72309943-f632-4104-aaa3-50a29cf1289d true - Session timeout enabled + Oct 2020 Search enabled 1033 @@ -192352,7 +204934,7 @@ true canmodifyauditsettings - true + false false @@ -192387,31 +204969,31 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - sessiontimeoutenabled - 1900-01-01T00:00:00 + newsearchexperienceenabled + 2025-11-06T06:14:32.3000064 false canmodifyrequirementlevelsettings SystemRequired - SessionTimeoutEnabled + NewSearchExperienceEnabled BooleanType - 8.2.0.0 + 9.1.0.0 false 0 - + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -192425,6 +205007,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -192470,6 +205059,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -192503,6 +205099,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -192517,60 +205120,32 @@ - + 0 - - b545a569-84d6-4568-874c-4bad3d0823f3 + + 2fbdf705-d3d9-4f95-8359-6cca43653dc3 - - Integer + newsearchexperienceenabled + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 410 - 1900-01-01T00:00:00 + 10177 + 2025-11-06T06:14:32.3170048 - - - 7ea4eb61-8f1d-4c68-ae7d-7a9a1ed49dfb - - true - Session timeout in minutes - 1033 - - - - 7ea4eb61-8f1d-4c68-ae7d-7a9a1ed49dfb - - true - Session timeout in minutes - 1033 - + + - - - 5c8d6e69-2b09-49fa-9270-1b1434ac395b - - true - Session timeout in minutes - 1033 - - - - 5c8d6e69-2b09-49fa-9270-1b1434ac395b - - true - Session timeout in minutes - 1033 - + + organization @@ -192578,13 +205153,13 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -192593,13 +205168,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -192611,41 +205186,36 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - sessiontimeoutinmins - 1900-01-01T00:00:00 + newsearchexperienceenabledname + 2025-11-06T06:14:32.3170048 - false + true canmodifyrequirementlevelsettings None - SessionTimeoutInMins + newsearchexperienceenabledName - IntegerType + VirtualType - 8.2.0.0 - false - 0 - - None - 2147483647 - 0 - - 0 + 9.1.0.0 + true + + - ce009ce1-feb6-4a66-856c-ddc335514d9e + f5d21a04-ae75-4c68-83a9-30fbf47190cb Integer @@ -192657,42 +205227,56 @@ canmodifyadditionalsettings false - 411 + 161 1900-01-01T00:00:00 - 6ecd236d-ec04-48be-bf3f-1a9c64cd146e + 94c4fcaa-0be0-4598-a9af-bf5124385728 true - Session timeout reminder in minutes + Next entity type code to use for custom entities. 1033 + + 67eaadbb-8935-49ef-b99c-0ce969b1e710 + + true + Den næste objekttypekode, der skal bruges til brugerdefinerede objekter. + 1030 + - 6ecd236d-ec04-48be-bf3f-1a9c64cd146e + 94c4fcaa-0be0-4598-a9af-bf5124385728 true - Session timeout reminder in minutes + Next entity type code to use for custom entities. 1033 - c8708512-ffa6-4c12-a4b1-d34e01b20e2e + 4ff152f3-9291-4d65-bedf-8256ef2e97ac true - Session timeout reminder in minutes + Next Entity Type Code 1033 + + 4f9f0e62-c4f9-4c74-b3df-b35668454480 + + true + Næste objekttypekode + 1030 + - c8708512-ffa6-4c12-a4b1-d34e01b20e2e + 4ff152f3-9291-4d65-bedf-8256ef2e97ac true - Session timeout reminder in minutes + Next Entity Type Code 1033 @@ -192708,7 +205292,7 @@ false iscustomizable - false + true false false @@ -192739,40 +205323,40 @@ canmodifysearchsettings false - true + false false false - true - true - true + false + false + false - sessiontimeoutreminderinmins + nextcustomobjecttypecode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - SessionTimeoutReminderInMins + NextCustomObjectTypeCode IntegerType - 8.2.0.0 + 5.0.0.0 false 0 None 2147483647 - 0 + 10000 0 - - 46ecdfbf-9465-4ba0-b850-73f2d3b50337 + + 1cc09841-8c70-4841-ae8d-399efcb03c01 - Picklist + Integer false false false @@ -192781,42 +205365,56 @@ canmodifyadditionalsettings false - 291 + 51 1900-01-01T00:00:00 - 2f3fb136-9cea-4f96-86c3-bfad2aa02265 + 5dd6a218-2341-db11-898a-0007e9e17ebd true - Indicates which SharePoint deployment type is configured for Server to Server. (Online or On-Premises) + Next token to be placed on the subject line of an email message. 1033 + + 25300a5a-5bff-4735-94f9-a895b79095f2 + + true + Det næste token, der skal placeres i emnelinjen i en e-mail. + 1030 + - 2f3fb136-9cea-4f96-86c3-bfad2aa02265 + 5dd6a218-2341-db11-898a-0007e9e17ebd true - Indicates which SharePoint deployment type is configured for Server to Server. (Online or On-Premises) + Next token to be placed on the subject line of an email message. 1033 - 405d3a64-5727-4d8e-af92-3d12f18cb247 + 9eae52de-d536-4261-8652-8fb9d933d4f8 true - Choose SharePoint Deployment Type + Next Tracking Number 1033 + + f1dc3071-10ad-48ab-a142-eec5bae3fc3d + + true + Næste sporingsnummer + 1030 + - 405d3a64-5727-4d8e-af92-3d12f18cb247 + 9eae52de-d536-4261-8652-8fb9d933d4f8 true - Choose SharePoint Deployment Type + Next Tracking Number 1033 @@ -192870,138 +205468,30 @@ true true - sharepointdeploymenttype + nexttrackingnumber 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - SharePointDeploymentType + NextTrackingNumber - PicklistType + IntegerType - 7.1.0.0 + 5.0.0.0 false 0 - 0 - - 14bbc996-eb5a-4598-a5c9-eca3be763c90 - - - - - 9dd0c661-c961-4180-93e8-cdb09a76919b - - true - SharePoint Deployment Type - 1033 - - - - 9dd0c661-c961-4180-93e8-cdb09a76919b - - true - SharePoint Deployment Type - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_sharepointdeploymenttype - Picklist - 7.1.0.0 - - - - - - - - - - - false - true - - - - 1080cd66-94d5-49ca-8c3b-c020f33e422d - - true - Online - 1033 - - - - 1080cd66-94d5-49ca-8c3b-c020f33e422d - - true - Online - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 388b42a7-f0a5-4fd8-9f2f-a352bb3664a3 - - true - On-Premises - 1033 - - - - 388b42a7-f0a5-4fd8-9f2f-a352bb3664a3 - - true - On-Premises - 1033 - - - - 1 - - - - - - + None + 2147483647 + -2147483648 0 - - - 001709ea-a132-4e4d-b449-d71cd376d633 + 5e4f601b-b647-429a-ab32-0fb6e213d6ab Boolean @@ -193013,42 +205503,56 @@ canmodifyadditionalsettings false - 64 + 243 1900-01-01T00:00:00 - 8964cfee-2241-db11-898a-0007e9e17ebd + ecfc49f3-34f5-48a9-b06a-efe2215a4a74 true - Information that specifies whether to share to previous owner on assign. + Indicates whether mailbox owners will be notified of email server profile level alerts. 1033 + + a5268e1f-ae24-4811-bcfc-cd38842581e4 + + true + Angiver, om ejere af postkasse får besked om vigtige beskeder på mailserverprofil-niveau. + 1030 + - 8964cfee-2241-db11-898a-0007e9e17ebd + ecfc49f3-34f5-48a9-b06a-efe2215a4a74 true - Information that specifies whether to share to previous owner on assign. + Indicates whether mailbox owners will be notified of email server profile level alerts. 1033 - 6fc422c2-802b-4078-86b7-24c13ccd6c9f + 9539b7b7-4011-410c-bbfc-4b0f272831bf true - Share To Previous Owner On Assign + Notify Mailbox Owner Of Email Server Level Alerts 1033 + + 1bfbb657-93f8-4440-a18d-559b55b1adc0 + + true + Giv besked til ejer af postkasse om vigtige beskeder på e-mail-server-niveau + 1030 + - 6fc422c2-802b-4078-86b7-24c13ccd6c9f + 9539b7b7-4011-410c-bbfc-4b0f272831bf true - Share To Previous Owner On Assign + Notify Mailbox Owner Of Email Server Level Alerts 1033 @@ -193095,48 +205599,55 @@ canmodifysearchsettings false - false + true false false true true true - sharetopreviousowneronassign + notifymailboxownerofemailserverlevelalerts 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - ShareToPreviousOwnerOnAssign + NotifyMailboxOwnerOfEmailServerLevelAlerts BooleanType - 5.0.0.0 + 6.0.0.0 false 0 - false + true - ed2021bb-cd44-4ff0-ba80-7090cbe13b26 + a69ffb9f-ae11-471b-93bf-195f5264d98b - 8b129241-e9a6-4820-aa81-64d2e4e6ded0 + 9141a43d-c757-4d11-84e1-2abab1bc6f20 true - Information that specifies whether to share to previous owner on assign. + Indicates whether mailbox owners will be notified of email server profile level alerts. 1033 + + 7fd2577f-c757-435f-b636-01295a7e77bc + + true + Angiver, om ejere af postkasse får besked om vigtige beskeder på mailserverprofil-niveau. + 1030 + - 8b129241-e9a6-4820-aa81-64d2e4e6ded0 + 9141a43d-c757-4d11-84e1-2abab1bc6f20 true - Information that specifies whether to share to previous owner on assign. + Indicates whether mailbox owners will be notified of email server profile level alerts. 1033 @@ -193149,13 +205660,13 @@ false iscustomizable - true + false false true - organization_sharetopreviousowneronassign + organization_notifymailboxownerofemailserverlevelalerts Boolean - 5.0.0.0 + 6.0.0.0 @@ -193170,15 +205681,22 @@ - 6558aec5-e780-db11-9b85-00137299e160 + f18a0250-280b-4a24-8ef3-d93273dd2ae3 true No 1033 + + 48fc03fe-36eb-4247-a0b8-db1124f28a03 + + true + Nej + 1030 + - 6558aec5-e780-db11-9b85-00137299e160 + f18a0250-280b-4a24-8ef3-d93273dd2ae3 true No @@ -193203,15 +205721,22 @@ - 6758aec5-e780-db11-9b85-00137299e160 + 77573dc5-d8a4-4513-95c1-416257d05131 true Yes 1033 + + 93f516ac-4905-47ec-9432-db350c21575c + + true + Ja + 1030 + - 6758aec5-e780-db11-9b85-00137299e160 + 77573dc5-d8a4-4513-95c1-416257d05131 true Yes @@ -193226,11 +205751,11 @@ 0 - - 39cfc93f-9975-4ac5-9893-34a068b25d34 + + 20d6c5b6-f499-4b61-9d19-5ca563f4f74d - Boolean + String false false false @@ -193239,42 +205764,56 @@ canmodifyadditionalsettings false - 325 + 16 1900-01-01T00:00:00 - 8fda9fca-ca6d-4136-93c2-28f1fdbcc80c + ef99f6ca-2241-db11-898a-0007e9e17ebd true - Select whether to display a KB article deprecation notification to the user. + Specification of how numbers are displayed throughout Microsoft CRM. 1033 + + 9cb2a1d5-e178-450d-b91f-10a4b361aaac + + true + Angiver, hvordan tal vises i Microsoft CRM. + 1030 + - 8fda9fca-ca6d-4136-93c2-28f1fdbcc80c + ef99f6ca-2241-db11-898a-0007e9e17ebd true - Select whether to display a KB article deprecation notification to the user. + Specification of how numbers are displayed throughout Microsoft CRM. 1033 - 135730a5-dab1-4246-867c-1c939adf492f + 9bf75f3f-850d-43c5-84d8-8652eacecbe7 true - Show KBArticle deprecation message to user + Number Format 1033 + + 3b4ed4c9-be9d-40af-a47c-05c9415375c8 + + true + Talformat + 1030 + - 135730a5-dab1-4246-867c-1c939adf492f + 9bf75f3f-850d-43c5-84d8-8652eacecbe7 true - Show KBArticle deprecation message to user + Number Format 1033 @@ -193328,135 +205867,39 @@ true true - showkbarticledeprecationnotification + numberformat 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - ShowKBArticleDeprecationNotification + NumberFormat - BooleanType + StringType - 8.0.0.0 + 5.0.0.0 false 0 - false - - b03315d7-b313-4d99-8964-3e09d71b170f - - - - - 62dbe2e3-fcc9-4bbf-9e41-2f0e226bcb6f - - true - Flag to show or hide KB Article Deprecation Notification - 1033 - - - - 62dbe2e3-fcc9-4bbf-9e41-2f0e226bcb6f - - true - Flag to show or hide KB Article Deprecation Notification - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_showkbarticledeprecationnotification - Boolean - 8.0.0.0 - - - - - - - - - - false - true - - - - 312645a0-4ffb-45af-b398-35987537efaf - - true - No - 1033 - - - - 312645a0-4ffb-45af-b398-35987537efaf - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 628db7c1-f1a6-46a2-9a33-401349c0dcee - - true - Yes - 1033 - - - - 628db7c1-f1a6-46a2-9a33-401349c0dcee - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 2 + + + Text + + false 0 + 4 - - e7fe1594-7f4a-46eb-86bb-2ccf8836a05e + + 27b6e8ba-b61a-4d26-9efa-36ff052220db - Boolean + String false false false @@ -193465,42 +205908,56 @@ canmodifyadditionalsettings false - 42 + 101 1900-01-01T00:00:00 - c44901bf-2241-db11-898a-0007e9e17ebd + 6e06fb49-bdcd-4642-acc9-2614092b55a2 true - Information that specifies whether to display the week number in calendar displays throughout Microsoft CRM. + Specifies how numbers are grouped in Microsoft Dynamics 365. 1033 + + f487e01e-2029-4c0f-9a0c-9e9a7eb01e0a + + true + Oplysninger, der angiver, hvordan tal grupperes i Microsoft Dynamics 365. + 1030 + - c44901bf-2241-db11-898a-0007e9e17ebd + 6e06fb49-bdcd-4642-acc9-2614092b55a2 true - Information that specifies whether to display the week number in calendar displays throughout Microsoft CRM. + Specifies how numbers are grouped in Microsoft Dynamics 365. 1033 - 56bf288a-f8a1-4465-bbd9-6cbdded9f9a1 + bbb2f25e-0cbc-4ed0-a0ce-34444312272b true - Show Week Number + Number Grouping Format 1033 + + 186754ba-2394-4cb4-8a17-d70ed814016d + + true + Talgrupperingsformat + 1030 + - 56bf288a-f8a1-4465-bbd9-6cbdded9f9a1 + bbb2f25e-0cbc-4ed0-a0ce-34444312272b true - Show Week Number + Number Grouping Format 1033 @@ -193554,223 +206011,36 @@ true true - showweeknumber + numbergroupformat 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ShowWeekNumber + NumberGroupFormat - BooleanType + StringType 5.0.0.0 false 0 - false - - b785aeac-2ca6-40d7-b31a-831b62c8a60d - - - - - a60f7649-0533-4794-90f3-04bf3db652cd - - true - Information that specifies whether to display the week number in calendar displays throughout Microsoft CRM. - 1033 - - - - a60f7649-0533-4794-90f3-04bf3db652cd - - true - Information that specifies whether to display the week number in calendar displays throughout Microsoft CRM. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_showweeknumber - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 6958aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 6958aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 6b58aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 6b58aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 50 + + + Text + + false 0 - - - 51cd430c-5b3c-42c0-a710-d611d8e8c45f - - showweeknumber - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 43 - 1900-01-01T00:00:00 - - - - - - - - - - organization - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - showweeknumbername - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ShowWeekNumberName - - - VirtualType - - 5.0.0.0 - true - - + 100 - 92a60fe1-c3e0-4c5f-b617-cdf2be6bc40d + 2c9fafa3-3673-41e4-b941-be651d72bd55 String @@ -193782,42 +206052,56 @@ canmodifyadditionalsettings false - 250 + 142 1900-01-01T00:00:00 - 7de520b5-7f09-4385-b9b3-33bcaf91d908 + 007c2e84-7ddc-4bc5-8c2d-9fef1766ee8a true - CRM for Outlook Download URL + Symbol used for number separation in Microsoft Dynamics 365. 1033 + + ff242b8f-a64b-4c0b-bba0-2f579943ec4f + + true + Det talseparatorsymbol, der benyttes i Microsoft Dynamics 365. + 1030 + - 7de520b5-7f09-4385-b9b3-33bcaf91d908 + 007c2e84-7ddc-4bc5-8c2d-9fef1766ee8a true - CRM for Outlook Download URL + Symbol used for number separation in Microsoft Dynamics 365. 1033 - f048c8ec-c528-4616-b034-760a0bf9a1ba + 44ab830a-168d-45a7-ad91-ca06fafeee1e true - CRMForOutlookDownloadURL + Number Separator 1033 + + 7b1c1f8c-9176-4386-bcda-c88157427747 + + true + Talseparator + 1030 + - f048c8ec-c528-4616-b034-760a0bf9a1ba + 44ab830a-168d-45a7-ad91-ca06fafeee1e true - CRMForOutlookDownloadURL + Number Separator 1033 @@ -193833,7 +206117,7 @@ false iscustomizable - false + true false false @@ -193871,25 +206155,25 @@ true true - signupoutlookdownloadfwlink + numberseparator 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - SignupOutlookDownloadFWLink + NumberSeparator StringType - 6.0.0.0 + 5.0.0.0 false 0 Text Auto - 200 + 5 Text @@ -193897,13 +206181,13 @@ false 0 - 400 + 10 - - c128eb78-5025-4083-9a7c-5a53318cd873 + + ffc6af00-e740-4db0-90ed-a60909d85708 - Memo + Boolean false false false @@ -193912,42 +206196,56 @@ canmodifyadditionalsettings false - 84 + 328 1900-01-01T00:00:00 - 5.0.0.0 + - ba40b506-2341-db11-898a-0007e9e17ebd + a2c16513-6659-440b-9603-76587ea692a8 true - XML string that defines the navigation structure for the application. + Indicates whether the Office Apps auto deployment is enabled for the organization. 1033 + + 383c64e7-3910-45f2-9714-515568d4ffc8 + + true + Angiver, om automatisk udrulning af Office Apps er aktiveret for organisationen. + 1030 + - ba40b506-2341-db11-898a-0007e9e17ebd + a2c16513-6659-440b-9603-76587ea692a8 true - XML string that defines the navigation structure for the application. + Indicates whether the Office Apps auto deployment is enabled for the organization. 1033 - 5d1f95b6-9c63-410a-883d-29200a222a1e + 49ccf75d-624f-465c-a790-7ea3d2e48e51 true - SiteMap XML + Enable Office Apps Auto Deployment for this Organization 1033 + + 2b6321cf-66e9-40ab-84c1-a424622a0621 + + true + Aktivér automatisk udrulning af Office Apps for denne organisation + 1030 + - 5d1f95b6-9c63-410a-883d-29200a222a1e + 49ccf75d-624f-465c-a790-7ea3d2e48e51 true - SiteMap XML + Enable Office Apps Auto Deployment for this Organization 1033 @@ -193999,34 +206297,155 @@ false true true - false + true - sitemapxml + officeappsautodeploymentenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - SiteMapXml + OfficeAppsAutoDeploymentEnabled - MemoType + BooleanType - 5.0.0.0 + 8.0.0.0 false - + 0 - TextArea - Auto - 1073741823 - - TextArea - - false + false + + e40a1cfd-9ed6-4c33-855a-a7b5709766e0 + + + + + 1fb7a312-54d7-4fb2-8f1f-0c1d51d0f642 + + true + Information that specifies whether the Office Apps auto deployment is enabled for the organization. + 1033 + + + de8d30d2-ac22-4583-8ec2-758284a37902 + + true + Oplysninger, der angiver, om automatisk udrulning af Office Apps er aktiveret for organisationen. + 1030 + + + + 1fb7a312-54d7-4fb2-8f1f-0c1d51d0f642 + + true + Information that specifies whether the Office Apps auto deployment is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_officeappsautodeploymentenabled + Boolean + 8.0.0.0 + + + + + + + + + + false + true + + + + 340c3371-76ea-4442-8f11-e7b7e42bbcac + + true + No + 1033 + + + 42f2232c-b279-4322-b1de-b7ff22afd264 + + true + Nej + 1030 + + + + 340c3371-76ea-4442-8f11-e7b7e42bbcac + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 0ac2edcf-0173-4aef-92a3-f857d59320ff + + true + Yes + 1033 + + + bd66a492-61ca-4d70-bd72-1894972ed9f6 + + true + Ja + 1030 + + + + 0ac2edcf-0173-4aef-92a3-f857d59320ff + + true + Yes + 1033 + + + + 1 + + + + + 0 - 12b924c1-801e-4b07-8bfe-b2db3dc0450d + 5ebc4940-97c5-46ff-9c0f-245f096f06de String @@ -194038,42 +206457,56 @@ canmodifyadditionalsettings false - 270 + 320 1900-01-01T00:00:00 - 32658a66-2281-4d44-832c-7dc98c604a8b + 2f2303b1-72a5-430a-87b6-9e96bc22ddd8 true - Contains the on hold case status values. + The url to open the Delve for the organization. 1033 + + 8abdd5a9-8514-417f-a05c-c4115a9b0bbd + + true + URL-adressen til åbning af udforskning for organisationen. + 1030 + - 32658a66-2281-4d44-832c-7dc98c604a8b + 2f2303b1-72a5-430a-87b6-9e96bc22ddd8 true - Contains the on hold case status values. + The url to open the Delve for the organization. 1033 - 9bf51d67-65de-4c2f-b5d7-2b3f7bf86d85 + 4c040405-1a28-49c6-b155-af3bd80796ab true - SLA pause states + The url to open the Delve 1033 + + fb307182-bcf0-46ed-aed5-7134207eb2c2 + + true + URL-adressen til åbning af udforskning + 1030 + - 9bf51d67-65de-4c2f-b5d7-2b3f7bf86d85 + 4c040405-1a28-49c6-b155-af3bd80796ab true - SLA pause states + The url to open the Delve 1033 @@ -194081,9 +206514,9 @@ - false + true canmodifyauditsettings - false + true false @@ -194127,25 +206560,25 @@ true true - slapausestates + officegraphdelveurl 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - SlaPauseStates + OfficeGraphDelveUrl StringType - 7.0.0.0 + 8.0.0.0 false 0 Text Auto - 1073741823 + 1000 Text @@ -194153,10 +206586,10 @@ false 0 - -1 + 2000 - 84798e27-4d7b-4bac-8794-515c995a3928 + e084a557-0e74-41b2-9dec-b81ec2a3b3c5 Boolean @@ -194168,42 +206601,56 @@ canmodifyadditionalsettings true - 271 + 260 1900-01-01T00:00:00 - 415487f3-c9c6-44b0-80a2-74710c38af56 + d1bcb300-8b57-4783-8238-ea55cde389fb true - Flag for whether the organization is using Social Insights. + Enable OOB pricing calculation logic for Opportunity, Quote, Order and Invoice entities. 1033 + + b0078fe5-c6ec-48fd-bbfe-8abdd6011f7e + + true + Aktivér beregningslogik for OOB-prissætning for salgsmuligheds-, tilbuds-, ordre- og fakturaobjekter. + 1030 + - 415487f3-c9c6-44b0-80a2-74710c38af56 + d1bcb300-8b57-4783-8238-ea55cde389fb true - Flag for whether the organization is using Social Insights. + Enable OOB pricing calculation logic for Opportunity, Quote, Order and Invoice entities. 1033 - 736a675d-6368-4e78-a83e-35dbbcf83b36 + ad536f88-db06-4e16-b041-a37f7dd95dff true - Social Insights Enabled + Enable OOB Price calculation 1033 + + 53febf75-1db7-4e40-b49a-4971f48f1df1 + + true + Aktivér beregning af OOB-priser + 1030 + - 736a675d-6368-4e78-a83e-35dbbcf83b36 + ad536f88-db06-4e16-b041-a37f7dd95dff true - Social Insights Enabled + Enable OOB Price calculation 1033 @@ -194250,21 +206697,21 @@ canmodifysearchsettings false - false + true false false true true true - socialinsightsenabled + oobpricecalculationenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - SocialInsightsEnabled + OOBPriceCalculationEnabled BooleanType @@ -194273,45 +206720,38 @@ false 0 - false + true - f87aab30-b69a-431f-9e22-b71de566233d + ac05162d-f1a9-4343-b424-71c77178048f - 8f2e0945-4fc2-4548-97da-880c911ef003 + 5bee131d-9f4e-443a-96cb-fcec944badd8 true - Whether the organization is using Social Insights. + Skip OOB Price calculation 1033 - - - 8f2e0945-4fc2-4548-97da-880c911ef003 - - true - Whether the organization is using Social Insights. - 1033 - - - - - 8d671f53-53b7-43fe-9f13-fddb6b7220d9 + 8e54054a-25b5-4e16-a050-024233e0d371 true - Social Insights Enabled - 1033 + Spring over beregning af OOB-pris + 1030 - 8d671f53-53b7-43fe-9f13-fddb6b7220d9 + 5bee131d-9f4e-443a-96cb-fcec944badd8 true - Social Insights Enabled + Skip OOB Price calculation 1033 + + + + false @@ -194322,7 +206762,7 @@ false true - socialinsightsconfiguration_enabled + organization_oobpricecalculationenabled Boolean 7.0.0.0 @@ -194339,15 +206779,22 @@ - 4ab44b05-8f27-4bd9-8bcb-74040e306f75 + 2f7d001a-06c9-4798-ab62-83804b85e17c true No 1033 + + fc0c438f-7230-42fa-b850-092d37494405 + + true + Nej + 1030 + - 4ab44b05-8f27-4bd9-8bcb-74040e306f75 + 2f7d001a-06c9-4798-ab62-83804b85e17c true No @@ -194372,15 +206819,22 @@ - e0b3d281-a623-426d-85b6-2d4496f66154 + 78b4c65c-bbbe-4aed-a7b4-4243997c05ff true Yes 1033 + + e6b3bbe1-5d51-4460-8107-a3d55bd58a2d + + true + Ja + 1030 + - e0b3d281-a623-426d-85b6-2d4496f66154 + 78b4c65c-bbbe-4aed-a7b4-4243997c05ff true Yes @@ -194395,11 +206849,11 @@ 0 - - efe7d6bc-45ea-4aaf-bfa9-dfb217c2da8a + + 94441fb2-17a0-41a4-bfe1-98897a67013b - String + Boolean false false false @@ -194408,172 +206862,56 @@ canmodifyadditionalsettings true - 256 - 1900-01-01T00:00:00 + 10064 + 2025-11-06T02:47:57.6669952 - 712ba289-4441-43a0-a016-29cd12e38037 + adf48940-3186-4071-b8b6-d6a75ac69b25 true - Identifier for the Social Insights instance for the organization. + Indicates if this organization will opt-out from automatically enabling schema v2 on the organization. 1033 - - - 712ba289-4441-43a0-a016-29cd12e38037 - - true - Identifier for the Social Insights instance for the organization. - 1033 - - - - - 3beaf688-f967-4553-a719-6714fb912687 + 46310abe-869b-45bb-8c55-79444dc52f7c true - Social Insights instance identifier - 1033 + Angiver, om denne organisation vil framelde sig automatisk at aktivere skema v2 i organisationen. + 1030 - 3beaf688-f967-4553-a719-6714fb912687 + adf48940-3186-4071-b8b6-d6a75ac69b25 true - Social Insights instance identifier + Indicates if this organization will opt-out from automatically enabling schema v2 on the organization. 1033 - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - socialinsightsinstance - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - SocialInsightsInstance - - - StringType - - 6.1.0.0 - false - 0 - - Text - Auto - 2048 - - - Text - - - false - 0 - -1 - - - 7d73e003-21d0-4924-a066-a2c913c8e91f - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - true - - 255 - 1900-01-01T00:00:00 - - + + - fda2e28e-322f-46e4-8612-c1951411720a + 8828f0a9-b6e9-4444-857e-1d61737988b5 true - Flag for whether the organization has accepted the Social Insights terms of use. + Opt-out of schema v2 being automatically enabled for this organization. 1033 - - - fda2e28e-322f-46e4-8612-c1951411720a - - true - Flag for whether the organization has accepted the Social Insights terms of use. - 1033 - - - - - b4171676-59a3-4401-9d93-9f89d863c3e5 + b36e3778-fcfc-4d48-91d4-704682f9eba1 true - Social Insights Terms of Use - 1033 + Framelding af skema v2 aktiveres automatisk for denne organisation. + 1030 - b4171676-59a3-4401-9d93-9f89d863c3e5 + 8828f0a9-b6e9-4444-857e-1d61737988b5 true - Social Insights Terms of Use + Opt-out of schema v2 being automatically enabled for this organization. 1033 @@ -194589,7 +206927,7 @@ false iscustomizable - false + true false false @@ -194604,7 +206942,7 @@ false isrenameable - false + true false false @@ -194616,72 +206954,65 @@ false - false + true canmodifysearchsettings false - false + true false false true true true - socialinsightstermsaccepted - 1900-01-01T00:00:00 + optoutschemav2enabledbydefault + 2026-05-11T16:05:39.0569984 - false + true canmodifyrequirementlevelsettings - None + SystemRequired - SocialInsightsTermsAccepted + OptOutSchemaV2EnabledByDefault BooleanType - 6.1.0.0 + 1.5.11.0 false 0 false - 84d3b31a-a11f-4473-9a1f-6e4793b56374 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 1bc3edaf-a791-4edf-b916-cdb65caa3b90 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Whether the organization has accepted the Terms of Use for Social Insights. + Information that specifies whether a feature is enabled for the organization. 1033 - - - 1bc3edaf-a791-4edf-b916-cdb65caa3b90 - - true - Whether the organization has accepted the Terms of Use for Social Insights. - 1033 - - - - - 0715a13a-fc0e-48fa-82ac-7d2b155f6097 + 9aa58f12-110b-435b-9270-294a78494bba true - Social Insights Terms of Use - 1033 + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 - 0715a13a-fc0e-48fa-82ac-7d2b155f6097 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Social Insights Terms of Use + Information that specifies whether a feature is enabled for the organization. 1033 + + + + false @@ -194690,11 +207021,11 @@ iscustomizable false - false + true true - socialinsightsconfiguration_termsaccepted + organization_featureenabled Boolean - 6.1.0.0 + 8.1.0.0 @@ -194709,15 +207040,22 @@ - 71aa0f46-5a07-4bfb-8ad1-c3d129e3bf56 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 71aa0f46-5a07-4bfb-8ad1-c3d129e3bf56 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -194742,15 +207080,22 @@ - cda26f45-00d8-40b7-a6c0-52a861a43c22 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - cda26f45-00d8-40b7-a6c0-52a861a43c22 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -194762,72 +207107,44 @@ - + 0 - - b01b176d-aa99-4b2c-95d8-c074b2e94b1f + + 2befb424-ac2e-49b1-b779-8af3b7d4dc96 - - Integer + optoutschemav2enabledbydefault + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 38 - 1900-01-01T00:00:00 + 10065 + 2025-11-06T02:47:57.68 - - - 6b25e7d6-2241-db11-898a-0007e9e17ebd - - true - For internal use only. - 1033 - - - - 6b25e7d6-2241-db11-898a-0007e9e17ebd - - true - For internal use only. - 1033 - + + - - - 620c36f7-5dc0-4a3b-ae0f-2712c7a8ce87 - - true - Sort - 1033 - - - - 620c36f7-5dc0-4a3b-ae0f-2712c7a8ce87 - - true - Sort - 1033 - + + organization - false + true canmodifyauditsettings false false - false + true iscustomizable true @@ -194838,13 +207155,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -194856,44 +207173,39 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - sortid - 1900-01-01T00:00:00 + optoutschemav2enabledbydefaultname + 2025-11-06T02:47:57.68 - false + true canmodifyrequirementlevelsettings None - SortId + optoutschemav2enabledbydefaultName - IntegerType + VirtualType - 5.0.0.0 - false - 0 - - None - 2147483647 - -2147483648 - - 0 + 1.5.11.0 + true + + - - ae72b7db-97d9-43b6-b943-0264e5ac95d7 + + 1a816942-0970-440f-82e5-2358b867eb4a - Uniqueidentifier + String false false false @@ -194902,42 +207214,56 @@ canmodifyadditionalsettings false - 59 + 27 1900-01-01T00:00:00 - e226e7d6-2241-db11-898a-0007e9e17ebd + b140b506-2341-db11-898a-0007e9e17ebd true - For internal use only. + Prefix to use for all orders throughout Microsoft Dynamics 365. 1033 + + f1f367d0-9c9c-4ebd-b176-c4bdf7de52de + + true + Præfiks til brug med alle ordrer i Microsoft Dynamics 365. + 1030 + - e226e7d6-2241-db11-898a-0007e9e17ebd + b140b506-2341-db11-898a-0007e9e17ebd true - For internal use only. + Prefix to use for all orders throughout Microsoft Dynamics 365. 1033 - 43247b32-abf9-47c4-bb2f-33715b264a16 + eff27890-c6f9-47b3-8b48-4150a84edbbb true - SQL Access Group + Order Prefix 1033 + + 9c8ce559-30ef-4c5d-83cb-4a82632b3b06 + + true + Ordrepræfiks + 1030 + - 43247b32-abf9-47c4-bb2f-33715b264a16 + eff27890-c6f9-47b3-8b48-4150a84edbbb true - SQL Access Group + Order Prefix 1033 @@ -194945,15 +207271,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -194991,28 +207317,39 @@ true true - sqlaccessgroupid + orderprefix 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - SqlAccessGroupId + OrderPrefix - UniqueidentifierType + StringType 5.0.0.0 false - + 0 + Text + Auto + 20 + + + Text + + + false + 0 + 40 - - 7ce8410b-4d2d-4fb6-8cf4-b129aee86f27 + + b0adfdea-088d-48d8-87ee-e425a5299c2f - String + Uniqueidentifier false false false @@ -195021,42 +207358,56 @@ canmodifyadditionalsettings false - 81 + 1 1900-01-01T00:00:00 - 7b90aa12-2341-db11-898a-0007e9e17ebd + 5152c2fa-2241-db11-898a-0007e9e17ebd true - For internal use only. + Unique identifier of the organization. 1033 + + 840fb56f-80ea-44c5-b7ea-187aa5c46238 + + true + Entydigt id for organisationen. + 1030 + - 7b90aa12-2341-db11-898a-0007e9e17ebd + 5152c2fa-2241-db11-898a-0007e9e17ebd true - For internal use only. + Unique identifier of the organization. 1033 - e5501fa2-c661-4b2e-905b-041d0ca67f5b + fc05d2aa-244a-4a5d-a138-5bd9d78a41b3 true - SQL Access Group Name + Organization 1033 + + 553d16a5-bf87-47e6-978d-d13e4bde8070 + + true + Organisation + 1030 + - e5501fa2-c661-4b2e-905b-041d0ca67f5b + fc05d2aa-244a-4a5d-a138-5bd9d78a41b3 true - SQL Access Group Name + Organization 1033 @@ -195072,17 +207423,17 @@ false iscustomizable - true + false false - false + true true canmodifyglobalfiltersettings false true - false + true false false @@ -195090,7 +207441,7 @@ false false - false + true false false @@ -195103,46 +207454,35 @@ canmodifysearchsettings false - true + false false false true - true + false true - sqlaccessgroupname + organizationid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - SqlAccessGroupName + OrganizationId - StringType + UniqueidentifierType 5.0.0.0 false - 0 + - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - 5fe33965-4517-412c-ad9d-9b6b80396f66 + + a0ea80b2-4504-4734-9ae3-96643ec8dbd8 - Boolean + Picklist false false false @@ -195151,42 +207491,56 @@ canmodifyadditionalsettings false - 128 + 292 1900-01-01T00:00:00 - 5a54c2fa-2241-db11-898a-0007e9e17ebd + e0c7f916-1f97-4965-88b5-3361436853c4 true - Setting for SQM data collection, 0 no, 1 yes enabled + Indicates the organization lifecycle state 1033 + + e5600ef6-6298-4bfb-bb0f-7334531588f3 + + true + Angiver livscyklustilstanden for organisationen + 1030 + - 5a54c2fa-2241-db11-898a-0007e9e17ebd + e0c7f916-1f97-4965-88b5-3361436853c4 true - Setting for SQM data collection, 0 no, 1 yes enabled + Indicates the organization lifecycle state 1033 - 1c851da5-f682-4343-a94c-7524824543c4 + 450a6a53-c017-4d70-b9d9-dc17402ca249 true - Is SQM Enabled + Organization State 1033 + + 12b5e744-58d8-438b-8ef1-1898dcf8b2b0 + + true + Organisationstilstand + 1030 + - 1c851da5-f682-4343-a94c-7524824543c4 + 450a6a53-c017-4d70-b9d9-dc17402ca249 true - Is SQM Enabled + Organization State 1033 @@ -195233,54 +207587,82 @@ canmodifysearchsettings false - true + false false false true - true + false true - sqmenabled + organizationstate 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - SQMEnabled + OrganizationState - BooleanType + PicklistType - 5.0.0.0 + 9.0.0.0 false 0 - false + 0 - 59f819c9-2c8f-48b2-9658-d14a74ac3e51 + a0b54342-63b3-4601-abf3-d2014ae17dc9 - 34e15b99-d114-4288-b99d-9e3adb5266a6 + 05328c93-9836-4c88-8b2a-9297e6d5c9eb true - Setting for SQM data collection, 0 no, 1 yes enabled + Organization State, indicates if the org is being created, upgraded, updated or active 1033 + + 779b86f6-52ff-4fd7-8179-fe4ddb0d6784 + + true + Organisationstilstanden, angiver, om organisation er ved at blive oprettet, opgraderet, opdateret eller er aktiv + 1030 + - 34e15b99-d114-4288-b99d-9e3adb5266a6 + 05328c93-9836-4c88-8b2a-9297e6d5c9eb true - Setting for SQM data collection, 0 no, 1 yes enabled + Organization State, indicates if the org is being created, upgraded, updated or active 1033 - - + + + de729a8b-d2c7-4285-a075-dabb045e9723 + + true + Organization State + 1033 + + + 63aa5797-16d9-4f1d-9580-6d372fd93eb7 + + true + Organisationstilstand + 1030 + + + + de729a8b-d2c7-4285-a075-dabb045e9723 + + true + Organization State + 1033 + false @@ -195291,84 +207673,184 @@ false true - organization_sqmenabled - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 7158aec5-e780-db11-9b85-00137299e160 + organization_organizationstate + Picklist + 9.0.0.0 + + + + + + + + + + + false + true + + + + 37ed30cf-36f8-4111-b1af-adce67f3de57 + + true + Creating + 1033 + + + e4b06793-0533-48e7-b28e-d928a5111e06 + + true + Opretter + 1030 + + + + 37ed30cf-36f8-4111-b1af-adce67f3de57 - true - No - 1033 - - - - 7158aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 7358aec5-e780-db11-9b85-00137299e160 + true + Creating + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 8bd71589-d7c7-4443-a346-f5bd2ea0b766 + + true + Upgrading + 1033 + + + bbc922d6-521b-463a-9f1f-38efcd0e1807 + + true + Opgradering + 1030 + + + + 8bd71589-d7c7-4443-a346-f5bd2ea0b766 - true - Yes - 1033 - - - - 7358aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - + true + Upgrading + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + d23b76ad-fc31-4aa9-bce4-e44b353554b4 + + true + Updating + 1033 + + + 0fa87b21-b71f-49b0-918f-8e5998b9a046 + + true + Opdaterer + 1030 + + + + d23b76ad-fc31-4aa9-bce4-e44b353554b4 + + true + Updating + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 93a5c554-e8e8-4085-ae6a-0877b32dd95b + + true + Active + 1033 + + + 1775c3e3-b2bb-4cff-a231-82e0acdf127d + + true + Aktiv + 1030 + + + + 93a5c554-e8e8-4085-ae6a-0877b32dd95b + + true + Active + 1033 + + + + 3 + + + + + 0 + + - - abd2a200-d001-439c-b532-61aae57cfeeb + + b1c70485-ba33-4c5f-8710-5446e3f68ca7 - Uniqueidentifier + String false false false @@ -195377,42 +207859,56 @@ canmodifyadditionalsettings false - 111 + 218 1900-01-01T00:00:00 - e9b71d04-b8f5-486a-bfcc-179ef4a49bb1 + 1f9a4fa5-c029-4f7e-b2c2-2c63194c3d11 true - Unique identifier of the support user for the organization. + Organization settings stored in Organization Database. 1033 + + 2fdebd67-8868-41c0-b3cc-bf1c92fd83d2 + + true + Organisationsindstillinger i organisationsdatabasen. + 1030 + - e9b71d04-b8f5-486a-bfcc-179ef4a49bb1 + 1f9a4fa5-c029-4f7e-b2c2-2c63194c3d11 true - Unique identifier of the support user for the organization. + Organization settings stored in Organization Database. 1033 - 440c59c9-1d91-4fa9-b4a2-92d6c5e6b2e3 + 743c5d19-6825-4bcb-ab04-3e467658d86e true - Support User + Organization Database Organization Settings 1033 + + b0c649a6-a7f5-4f48-9c9e-66208446e247 + + true + Organisationsindstillinger i organisationsdatabasen + 1030 + - 440c59c9-1d91-4fa9-b4a2-92d6c5e6b2e3 + 743c5d19-6825-4bcb-ab04-3e467658d86e true - Support User + Organization Database Organization Settings 1033 @@ -195420,15 +207916,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -195463,28 +207959,39 @@ false false true - false + true true - supportuserid + orgdborgsettings 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - SupportUserId + OrgDbOrgSettings - UniqueidentifierType + StringType 5.0.0.0 false - + 0 + Text + Auto + 1073741823 + + + Text + + + false + 0 + -1 - 411d7fe8-aa98-443d-beee-1446c38d7d19 + 7b224cee-2f9b-48d7-867b-497734cc6e3d Boolean @@ -195496,42 +208003,56 @@ canmodifyadditionalsettings false - 254 + 379 1900-01-01T00:00:00 - deebf6aa-074a-49b0-8c8a-8c8c32b859fd + e74a84de-dfb9-4fac-875e-534545943d27 true - Indicates whether SLA is suppressed. + Select whether to turn on OrgInsights for the organization. 1033 + + 2d7a6d3b-d0e1-414f-8e8e-376cbad11975 + + true + Vælg, om du vil aktivere OrgInsights for organisationen. + 1030 + - deebf6aa-074a-49b0-8c8a-8c8c32b859fd + e74a84de-dfb9-4fac-875e-534545943d27 true - Indicates whether SLA is suppressed. + Select whether to turn on OrgInsights for the organization. 1033 - 698df651-1dd3-403d-bb61-47d41ecc2d9c + 340c8320-6974-461f-aa0e-5ad2606796b5 true - Is SLA suppressed + Enable OrgInsights for this Organization 1033 + + 8acb84f3-2183-4ebf-83b9-ce3ab53d83de + + true + Aktivér OrgInsights for denne organisation + 1030 + - 698df651-1dd3-403d-bb61-47d41ecc2d9c + 340c8320-6974-461f-aa0e-5ad2606796b5 true - Is SLA suppressed + Enable OrgInsights for this Organization 1033 @@ -195585,41 +208106,48 @@ true true - suppresssla + orginsightsenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - SuppressSLA + OrgInsightsEnabled BooleanType - 6.1.0.0 + 8.1.0.0 false 0 false - 81481d4d-0a84-4abe-8bbd-17037dc22f6c + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 51ee9aa2-670a-4160-a68e-7b66cdccff14 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Flag to suppress SLA. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 51ee9aa2-670a-4160-a68e-7b66cdccff14 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Flag to suppress SLA. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -195632,13 +208160,13 @@ false iscustomizable - true + false - false + true true - organization_suppresssla + organization_featureenabled Boolean - 6.1.0.0 + 8.1.0.0 @@ -195653,15 +208181,22 @@ - 29d347d7-34cf-4851-8a11-afea166286f5 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 29d347d7-34cf-4851-8a11-afea166286f5 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -195686,15 +208221,22 @@ - d2b7bb2a-d04f-469f-8aa0-52554162c474 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - d2b7bb2a-d04f-469f-8aa0-52554162c474 + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -195710,7 +208252,7 @@ 0 - b26d407e-5247-4729-b80c-a21ca1070862 + a7fe3349-8cc2-4262-905d-97f8b2bd1942 Boolean @@ -195722,42 +208264,56 @@ canmodifyadditionalsettings false - 10222 - 2025-11-06T06:14:32.9430016 + 451 + 2025-11-06T00:19:21.2899968 - 5c5a29bb-f55f-4d56-b3e8-b422e1b9f2fd + 7606d297-3c16-495e-bedf-f7c123dfb9fd true - Leave empty to use default setting. Set to on/off to enable/disable Admin emails when Solution Checker validation fails. + Indicates whether Preview feature has been enabled for the organization. 1033 + + fd3ec0a1-cef8-45bb-bde3-d530bdab7d18 + + true + Angiver, om forhåndsversionsfunktion er aktiveret for organisationen. + 1030 + - 5c5a29bb-f55f-4d56-b3e8-b422e1b9f2fd + 7606d297-3c16-495e-bedf-f7c123dfb9fd true - Leave empty to use default setting. Set to on/off to enable/disable Admin emails when Solution Checker validation fails. + Indicates whether Preview feature has been enabled for the organization. 1033 - 8d49cea2-af60-4aa9-9e9b-d00d2bdb9488 + 2c7b4a04-7661-44cb-80ac-69006b1f067f true - Whether Admin emails are sent when Solution Checker validation fails + Display Preview Feature for this organization 1033 + + 874e43f5-dacf-4242-bccc-6f7708ba97c4 + + true + Vis forhåndsversionsfunktion for denne organisation + 1030 + - 8d49cea2-af60-4aa9-9e9b-d00d2bdb9488 + 2c7b4a04-7661-44cb-80ac-69006b1f067f true - Whether Admin emails are sent when Solution Checker validation fails + Display Preview Feature for this organization 1033 @@ -195767,13 +208323,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -195802,23 +208358,23 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - suppressvalidationemails - 2025-11-06T06:14:32.9430016 + paipreviewscenarioenabled + 2025-11-06T00:19:21.2899968 false canmodifyrequirementlevelsettings SystemRequired - SuppressValidationEmails + PaiPreviewScenarioEnabled BooleanType @@ -195826,8 +208382,8 @@ 9.1.0.0 false 0 - - false + + true 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -195840,6 +208396,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -195885,6 +208448,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -195918,6 +208488,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -195932,32 +208509,74 @@ - + 0 - - 8db69320-0522-452b-992c-713653d1bf62 + + d42a688b-75f0-4dac-91ba-0c5b8046e93e - suppressvalidationemails - Virtual + + String false false false - true + false canmodifyadditionalsettings - true + false - 10223 - 2025-11-06T06:14:32.9730048 + 110 + 1900-01-01T00:00:00 - - + + + 6d26e7d6-2241-db11-898a-0007e9e17ebd + + true + Prefix used for parsed table columns. + 1033 + + + 842d0dbb-781c-4cc7-aec7-eb4e96dfb71c + + true + Præfiks anvendt til parsede tabelkolonner. + 1030 + + + + 6d26e7d6-2241-db11-898a-0007e9e17ebd + + true + Prefix used for parsed table columns. + 1033 + - - + + + ec3c986d-b9b2-4e3e-bf59-814113d071c3 + + true + Parsed Table Column Prefix + 1033 + + + d5b8d0a1-86c7-4e2e-ab8e-34ff0775f5c7 + + true + Parset kolonnepræfiks for tabel + 1030 + + + + ec3c986d-b9b2-4e3e-bf59-814113d071c3 + + true + Parsed Table Column Prefix + 1033 + organization @@ -195965,11 +208584,11 @@ true canmodifyauditsettings - false + true false - true + false iscustomizable true @@ -195980,13 +208599,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -195998,7 +208617,7 @@ false - true + false canmodifysearchsettings false @@ -196007,30 +208626,41 @@ false true false - false + true - suppressvalidationemailsname - 2025-11-06T06:14:32.9730048 + parsedtablecolumnprefix + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - suppressvalidationemailsName + ParsedTableColumnPrefix - VirtualType + StringType - 9.1.0.0 - true - - + 5.0.0.0 + false + 0 + + Text + Auto + 20 + + + Text + + + false + 0 + 40 - - 41c7dc01-0920-42ab-9e0f-21a4ebe3605c + + d8cb6590-d24c-41d9-8674-bcd8656a4c4b - Integer + String false false false @@ -196039,42 +208669,56 @@ canmodifyadditionalsettings false - 431 - 2025-11-06T00:19:21.3830016 + 106 + 1900-01-01T00:00:00 - 8cc87290-224d-41dd-8a4a-82e4c1d0ac0c + 349af6ca-2241-db11-898a-0007e9e17ebd true - Number of records to update per operation in Sync Bulk Pause/Resume/Cancel + Prefix used for parsed tables. 1033 + + e06632b1-d834-4e44-8d47-d3ad89abbca8 + + true + Præfiks anvendt til parsede tabeller. + 1030 + - 8cc87290-224d-41dd-8a4a-82e4c1d0ac0c + 349af6ca-2241-db11-898a-0007e9e17ebd true - Number of records to update per operation in Sync Bulk Pause/Resume/Cancel + Prefix used for parsed tables. 1033 - f27d1213-2030-4df8-b12e-b5a4a2e0e529 + e9212ef5-a681-444f-8e43-2c30db70769c true - Number of records to update per operation in Sync Bulk Pause/Resume/Cancel + Parsed Table Prefix 1033 + + cd5d1378-59fe-4689-845b-fd7708c4f025 + + true + Parset tabelpræfiks + 1030 + - f27d1213-2030-4df8-b12e-b5a4a2e0e529 + e9212ef5-a681-444f-8e43-2c30db70769c true - Number of records to update per operation in Sync Bulk Pause/Resume/Cancel + Parsed Table Prefix 1033 @@ -196121,37 +208765,43 @@ canmodifysearchsettings false - true + false false false true - true + false true - syncbulkoperationbatchsize - 2025-11-06T00:19:21.3830016 + parsedtableprefix + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - SyncBulkOperationBatchSize + ParsedTablePrefix - IntegerType + StringType - 9.1.0.0 + 5.0.0.0 false 0 - None - 1000 - 1 + Text + Auto + 20 + + + Text + + false 0 + 40 - c0a448b2-4202-4bb3-a51c-32141c438f8b + 6e995162-9436-4d85-bd07-0725d7bf3e76 Integer @@ -196163,42 +208813,56 @@ canmodifyadditionalsettings false - 432 - 2025-11-06T00:19:21.2130048 + 169 + 1900-01-01T00:00:00 - ab497bf5-3c35-407c-95ea-9e4b04e1fdd7 + 95189a0b-8137-44e5-b1f7-27b8c5e488e7 true - Max total number of records to update in database for Sync Bulk Pause/Resume/Cancel + Specifies the maximum number of months in past for which the recurring activities can be created. 1033 + + d3ac196a-b693-4342-a008-dd22f210553d + + true + Angiver det maksimale antal måneder bagud i tiden, som den gentagne aktivitet kan oprettes for. + 1030 + - ab497bf5-3c35-407c-95ea-9e4b04e1fdd7 + 95189a0b-8137-44e5-b1f7-27b8c5e488e7 true - Max total number of records to update in database for Sync Bulk Pause/Resume/Cancel + Specifies the maximum number of months in past for which the recurring activities can be created. 1033 - 3c7ded32-4ce3-45c5-9e27-85bb4397262a + 661666a0-1775-4aa8-b652-c0f77f920466 true - Max total number of records to update in database for Sync Bulk Pause/Resume/Cancel + Past Expansion Window 1033 + + f90bd6a5-fcf8-4252-8b4c-a6bc1d7640fb + + true + Vindue for udvidelse i fortiden + 1030 + - 3c7ded32-4ce3-45c5-9e27-85bb4397262a + 661666a0-1775-4aa8-b652-c0f77f920466 true - Max total number of records to update in database for Sync Bulk Pause/Resume/Cancel + Past Expansion Window 1033 @@ -196252,33 +208916,33 @@ true true - syncbulkoperationmaxlimit - 2025-11-06T00:19:21.2130048 + pastexpansionwindow + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - SyncBulkOperationMaxLimit + PastExpansionWindow IntegerType - 9.1.0.0 + 5.0.0.0 false 0 None - 500000 + 120 1 0 - - 4ef337f3-64c2-498a-9edf-a602ac7a3dc4 + + cc01d4c2-3738-42a9-8879-0a93596d812f - Boolean + String false false false @@ -196287,42 +208951,56 @@ canmodifyadditionalsettings false - 416 - 1900-01-01T00:00:00 + 10208 + 2025-11-06T06:14:32.7529984 - 6c409718-49a1-4cd0-bec3-ec4418a8dfd6 + 80fe0b49-129c-42ff-8a59-96e414bd402d true - Indicates the selection to use the dynamics 365 azure sync framework or server side sync. + Leave empty to use default setting. Set to on/off to enable/disable replacement of default grids with modern ones in model-driven apps. 1033 + + 3ae17157-b7fe-4c8c-88c9-f542cfa6d30f + + true + Lad feltet være tomt for at bruge standardindstilling. Angiv det til til/fra for at aktivere/deaktivere erstatning af standardgitre med moderne gitre i modelbaserede apps. + 1030 + - 6c409718-49a1-4cd0-bec3-ec4418a8dfd6 + 80fe0b49-129c-42ff-8a59-96e414bd402d true - Indicates the selection to use the dynamics 365 azure sync framework or server side sync. + Leave empty to use default setting. Set to on/off to enable/disable replacement of default grids with modern ones in model-driven apps. 1033 - 184ec1d9-282c-48f9-85fc-4185b5f73942 + b1b5797e-e330-4bdf-ae5e-5fbb16afb257 true - Enable dynamics 365 azure sync framework for this organization. + Enable modern grids in model-driven apps 1033 + + 3420d81a-27a2-46a8-b548-eefc2876ea27 + + true + Aktivér moderne gitre i modelbaserede apps + 1030 + - 184ec1d9-282c-48f9-85fc-4185b5f73942 + b1b5797e-e330-4bdf-ae5e-5fbb16afb257 true - Enable dynamics 365 azure sync framework for this organization. + Enable modern grids in model-driven apps 1033 @@ -196332,13 +209010,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -196367,144 +209045,48 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - syncoptinselection - 1900-01-01T00:00:00 + pcfdatasetgridenabled + 2025-11-06T06:14:32.7529984 false canmodifyrequirementlevelsettings - SystemRequired + None - SyncOptInSelection + PcfDatasetGridEnabled - BooleanType + StringType - 8.2.0.0 + 9.1.0.0 false 0 - - false - - 2c5b0920-cc40-405f-a828-a61cac226628 - - - - - 8e96b611-456e-4de3-b76c-6c2cc730bd76 - - true - Information that specifies whether the dynamics 365 azure sync is enabled for this organization. - 1033 - - - - 8e96b611-456e-4de3-b76c-6c2cc730bd76 - - true - Information that specifies whether the dynamics 365 azure sync is enabled for this organization. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_syncoptinselection - Boolean - 8.2.0.0 - - - - - - - - - - false - true - - - - 501e572a-e073-413b-95e8-d1518b6a0531 - - true - Disable - 1033 - - - - 501e572a-e073-413b-95e8-d1518b6a0531 - - true - Disable - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - d32b45c3-4154-4ef1-928f-5e7baf968c05 - - true - Enable - 1033 - - - - d32b45c3-4154-4ef1-928f-5e7baf968c05 - - true - Enable - 1033 - - - - 1 - - - - + + Text + Auto + 16 + + + Text + + + false 0 + 16 - - 4e14db07-b311-4e7c-9e65-242a8b5d68b2 + + e4a74aa2-d81c-4edb-80b2-fc6750516834 - Picklist + DateTime false false false @@ -196513,42 +209095,56 @@ canmodifyadditionalsettings false - 417 - 1900-01-01T00:00:00 + 10166 + 2025-11-06T05:07:58.6070016 - 8a451394-b32c-4d4f-94b9-dc2f8bc943b7 + 0bd58117-b8a0-4ba8-b81c-65dd1e134424 true - Indicates the status of the opt-in or opt-out operation for dynamics 365 azure sync. + This setting contains the date time before an ACT sync can execute. 1033 + + b91a7010-13a5-456a-8abb-26a06b3bf511 + + true + Denne indstilling indeholder dato og klokkeslæt, før en ACT-synkronisering kan køres. + 1030 + - 8a451394-b32c-4d4f-94b9-dc2f8bc943b7 + 0bd58117-b8a0-4ba8-b81c-65dd1e134424 true - Indicates the status of the opt-in or opt-out operation for dynamics 365 azure sync. + This setting contains the date time before an ACT sync can execute. 1033 - 8dbf6754-fa65-46de-9c05-5ccbacb8e439 + dbac7723-0b09-4eb7-81ad-d705168f6f25 true - Status of opt-in or opt-out operation for dynamics 365 azure sync. + PerformACTSyncAfter 1033 + + 49dfe768-7c80-4bb6-9f70-318262c49575 + + true + PerformACTSyncAfter + 1030 + - 8dbf6754-fa65-46de-9c05-5ccbacb8e439 + dbac7723-0b09-4eb7-81ad-d705168f6f25 true - Status of opt-in or opt-out operation for dynamics 365 azure sync. + PerformACTSyncAfter 1033 @@ -196558,13 +209154,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -196602,174 +209198,40 @@ true true - syncoptinselectionstatus - 1900-01-01T00:00:00 + performactsyncafter + 2025-11-06T05:07:58.6070016 false canmodifyrequirementlevelsettings None - SyncOptInSelectionStatus + PerformACTSyncAfter - PicklistType + DateTimeType - 8.2.0.0 + 9.2.0.0 false 0 - - - - 1e9a5c4b-fd62-402a-b421-92e56f79fa17 - - - - - 28b19f1c-2662-402a-b8dd-876684bd8d24 - - true - Indicates the status of opt-in or opt-out operations for dynamics 365 azure sync. - 1033 - - - - 28b19f1c-2662-402a-b8dd-876684bd8d24 - - true - Indicates the status of opt-in or opt-out operations for dynamics 365 azure sync. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - organization_syncoptinselectionstatus - Picklist - 8.2.0.0 - - - - - - - - - - - false - true - - - - 8ec4710d-e95f-4438-bfdc-fbca6a228e6e - - true - Processing - 1033 - - - - 8ec4710d-e95f-4438-bfdc-fbca6a228e6e - - true - Processing - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - ee476fc2-1580-445b-a9fd-d072d2996c57 - - true - Passed - 1033 - - - - ee476fc2-1580-445b-a9fd-d072d2996c57 - - true - Passed - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 65af19b8-fd57-4bc4-83f2-fbcdd51ee5c3 - - true - Failed - 1033 - - - - 65af19b8-fd57-4bc4-83f2-fbcdd51ee5c3 - - true - Failed - 1033 - - - - 3 - - - - - - - + + DateAndTime + Auto + 0 - - + + true + canmodifybehavior + true + + + UserLocal + - - 49260eef-a6f3-4894-abbb-0fc7c4b3fd0b + + 13b8978c-dcee-4f60-bfe5-d5211601512f - Uniqueidentifier + Memo false false false @@ -196778,42 +209240,56 @@ canmodifyadditionalsettings false - 54 + 73 1900-01-01T00:00:00 - f453c2fa-2241-db11-898a-0007e9e17ebd + ce63cfee-2241-db11-898a-0007e9e17ebd true - Unique identifier of the system user for the organization. + For internal use only. 1033 + + 4c544ebb-7b7d-4a53-a724-6d996e6924b9 + + true + Kun til intern brug. + 1030 + - f453c2fa-2241-db11-898a-0007e9e17ebd + ce63cfee-2241-db11-898a-0007e9e17ebd true - Unique identifier of the system user for the organization. + For internal use only. 1033 - c20ad817-1a85-4866-99b1-326baa575e98 + c2a0dc02-f2d4-434f-877e-2f44f0caf060 true - System User + Picture 1033 + + 1494eae4-3d53-4cec-ad8f-da5f9d022ba9 + + true + Billede + 1030 + - c20ad817-1a85-4866-99b1-326baa575e98 + c2a0dc02-f2d4-434f-877e-2f44f0caf060 true - System User + Picture 1033 @@ -196829,7 +209305,7 @@ false iscustomizable - false + true false false @@ -196867,28 +209343,35 @@ true true - systemuserid + picture 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - SystemUserId + Picture - UniqueidentifierType + MemoType 5.0.0.0 false + TextArea + Auto + 1073741823 + + TextArea + + false - - 86fa50fe-621a-4e64-8e8a-b763f7f2a16c + + f414ccc2-e53f-43c2-be2f-3f621771c12a - Boolean + Integer false false false @@ -196897,42 +209380,152 @@ canmodifyadditionalsettings false - 10186 - 2025-11-06T06:14:32.4729984 + 217 + 1900-01-01T00:00:00 + + + + + + + + + + organization + + + + false + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + true + true + + pinpointlanguagecode + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + PinpointLanguageCode + + + IntegerType + + 5.0.0.0 + false + 0 + + Locale + 2147483647 + 0 + + 0 + + + bc73698f-b296-40e2-948a-565dfd9fc070 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + false + + 303 + 1900-01-01T00:00:00 - b08efc60-cbbf-4ea6-854a-e9657ac833b0 + 563482da-57c5-40e3-b52c-ae1160b22f74 true - Controls the appearance of option to search over a single DV search indexed table in model-driven apps’ global search in the header. + Plug-in Trace Log Setting for the Organization. 1033 + + 902b1168-ea63-418c-9f7f-b3cc25fb4c36 + + true + Indstilling for sporingslog for plug-in for organisationen. + 1030 + - b08efc60-cbbf-4ea6-854a-e9657ac833b0 + 563482da-57c5-40e3-b52c-ae1160b22f74 true - Controls the appearance of option to search over a single DV search indexed table in model-driven apps’ global search in the header. + Plug-in Trace Log Setting for the Organization. 1033 - bd4d1ea5-10d2-477e-a7ce-5d4347af9119 + aa2882c8-d2a3-41d6-afe7-0105be419e9e true - Table Scoped Dataverse Search In Apps + Plug-in Trace Log Setting 1033 + + 42842299-fb7a-4a95-ad5a-cbbfc58b589d + + true + Indstilling for sporingslog for plug-in + 1030 + - bd4d1ea5-10d2-477e-a7ce-5d4347af9119 + aa2882c8-d2a3-41d6-afe7-0105be419e9e true - Table Scoped Dataverse Search In Apps + Plug-in Trace Log Setting 1033 @@ -196942,13 +209535,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -196977,50 +209570,57 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - tablescopeddvsearchinapps - 2025-11-06T06:14:32.4729984 + plugintracelogsetting + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - TableScopedDVSearchInApps + PluginTraceLogSetting - BooleanType + PicklistType - 9.1.0.0 + 7.1.0.0 false 0 - - false + + 0 - 315e90f0-678b-4e4d-97f1-886050c3cb46 + ea5d70fe-73c8-4896-9d28-0f7fc1d65111 - 05aedb96-402f-4dff-86e7-54b577874b2f + ba049e06-8a72-41bc-86e8-3b2bea305e4f true - Information that specifies whether a feature is enabled for the organization. + Plug-in Trace Log Setting for the Organization. 1033 + + c6966d33-5288-48c3-80fb-a2d50cf722a1 + + true + Indstilling for sporingslog for plug-in for organisationen. + 1030 + - 05aedb96-402f-4dff-86e7-54b577874b2f + ba049e06-8a72-41bc-86e8-3b2bea305e4f true - Information that specifies whether a feature is enabled for the organization. + Plug-in Trace Log Setting for the Organization. 1033 @@ -197033,98 +209633,158 @@ false iscustomizable - false + true - true + false true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + organization_plugintracelogsetting + Picklist + 7.1.0.0 + + + + + + + + + + + false + true + + + + f06bd669-010e-4ff6-a2c9-98b9e39009fd + + true + Off + 1033 + + + a186b77e-b7c2-433e-9c1d-7607603173af + + true + Fra + 1030 + + + + f06bd669-010e-4ff6-a2c9-98b9e39009fd - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 + true + Off + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 85fa09ba-cbc2-488e-b5d8-f81128584d35 + + true + Exception + 1033 + + + bf94eed2-d139-4611-924d-88d1869997c3 + + true + Undtagelse + 1030 + + + + 85fa09ba-cbc2-488e-b5d8-f81128584d35 - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - + true + Exception + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + 78fd62c6-c48c-490a-8455-a9d719c19355 + + true + All + 1033 + + + e20089a4-c43a-41dd-88af-82135e119ec5 + + true + Alle + 1030 + + + + 78fd62c6-c48c-490a-8455-a9d719c19355 + + true + All + 1033 + + + + 2 + + + + - + + 0 + + - 3c99408a-1ab0-45b0-b19c-34204ce043f7 + 8f447b60-97e4-444e-ba2d-b591c6f0cd1a - tablescopeddvsearchinapps + plugintracelogsetting Virtual false false false - true + false canmodifyadditionalsettings - true + false - 10187 - 2025-11-06T06:14:32.5030016 + 304 + 1900-01-01T00:00:00 @@ -197138,15 +209798,15 @@ - true + false canmodifyauditsettings false false - true + false iscustomizable - true + false false false @@ -197155,13 +209815,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -197173,7 +209833,7 @@ false - true + false canmodifysearchsettings false @@ -197184,28 +209844,28 @@ false false - tablescopeddvsearchinappsname - 2025-11-06T06:14:32.5030016 + plugintracelogsettingname + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - tablescopeddvsearchinappsName + PluginTraceLogSettingName VirtualType - 9.1.0.0 + 7.1.0.0 true - + - - 9c18c995-8647-424f-885d-6725cc26943d + + fc5fdbbf-1625-49d0-8538-9ac31b2fa722 - Integer + String false false false @@ -197214,42 +209874,56 @@ canmodifyadditionalsettings false - 52 + 137 1900-01-01T00:00:00 - a6dfeed0-2241-db11-898a-0007e9e17ebd + 6340039b-a85f-43fc-9fb7-44f491128cf0 true - Maximum number of aggressive polling cycles executed for email auto-tagging when a new email is received. + PM designator to use throughout Microsoft Dynamics 365. 1033 + + 6600d37f-38b5-4206-b668-47a998598164 + + true + PM-betegnelse til brug overalt i Microsoft Dynamics 365. + 1030 + - a6dfeed0-2241-db11-898a-0007e9e17ebd + 6340039b-a85f-43fc-9fb7-44f491128cf0 true - Maximum number of aggressive polling cycles executed for email auto-tagging when a new email is received. + PM designator to use throughout Microsoft Dynamics 365. 1033 - d3e38100-0ac8-4ffe-8cf4-ef63a7490b21 + 19c21fd9-746f-40ca-a6fd-64e2388bfda0 true - Auto-Tag Max Cycles + PM Designator 1033 + + cc08df96-68cc-4a02-a22f-2c865fab834a + + true + PM-betegnelse + 1030 + - d3e38100-0ac8-4ffe-8cf4-ef63a7490b21 + 19c21fd9-746f-40ca-a6fd-64e2388bfda0 true - Auto-Tag Max Cycles + PM Designator 1033 @@ -197303,33 +209977,39 @@ true true - tagmaxaggressivecycles + pmdesignator 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - TagMaxAggressiveCycles + PMDesignator - IntegerType + StringType 5.0.0.0 false 0 - None - - + Text + Auto + 25 + + + Text + + false 0 + 50 - - ae0fed8f-1bd6-41fe-ad0c-b89504743116 + + 0a61dc76-ce7d-405a-b797-a19bd48a8bf6 - Integer + String false false false @@ -197338,42 +210018,56 @@ canmodifyadditionalsettings false - 90 + 405 1900-01-01T00:00:00 - e153c2fa-2241-db11-898a-0007e9e17ebd + 7d05a871-16c8-4f2b-8a69-55290ca092d1 true - Normal polling frequency used for email receive auto-tagging in outlook. + For internal use only. 1033 + + 11ed8371-8e62-461d-87f2-492c95210426 + + true + Kun til intern brug. + 1030 + - e153c2fa-2241-db11-898a-0007e9e17ebd + 7d05a871-16c8-4f2b-8a69-55290ca092d1 true - Normal polling frequency used for email receive auto-tagging in outlook. + For internal use only. 1033 - e097b29c-3f9b-412f-9b0b-c6cb4e36ab1e + 0a2be922-e2d8-4c66-99c2-62ebb0cd2657 true - Auto-Tag Interval + For internal use only. 1033 + + 49630676-16f2-4467-839b-88a30c2a535a + + true + Kun til intern brug. + 1030 + - e097b29c-3f9b-412f-9b0b-c6cb4e36ab1e + 0a2be922-e2d8-4c66-99c2-62ebb0cd2657 true - Auto-Tag Interval + For internal use only. 1033 @@ -197427,30 +210121,36 @@ true true - tagpollingperiod + postmessagewhitelistdomains 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - TagPollingPeriod + PostMessageWhitelistDomains - IntegerType + StringType - 5.0.0.0 + 8.2.0.0 false 0 - None - 2147483647 - 0 + Text + Auto + 500 + + + Text + + false 0 + 1000 - bcc998f2-6e84-4a0c-99df-a1b80ec57160 + d6bf0418-08c1-432c-adac-fd768fa14aa9 Boolean @@ -197462,42 +210162,42 @@ canmodifyadditionalsettings false - 324 - 1900-01-01T00:00:00 + 10036 + 2025-11-06T02:32:44.4300032 - 6f550104-3706-482d-bf97-94af8f1e3c1e + 6d3c7e96-43be-4283-aef9-51ed3568cca2 true - Select whether to turn on task flows for the organization. + Indicates whether bot for makers is enabled. 1033 - 6f550104-3706-482d-bf97-94af8f1e3c1e + 6d3c7e96-43be-4283-aef9-51ed3568cca2 true - Select whether to turn on task flows for the organization. + Indicates whether bot for makers is enabled. 1033 - 822cb2ad-cace-4624-afb4-553f54fd8a5b + f894c23c-a26e-4701-a38c-0574154e291c true - Enable Task Flow processes for this Organization + Enable bot for makers. 1033 - 822cb2ad-cace-4624-afb4-553f54fd8a5b + f894c23c-a26e-4701-a38c-0574154e291c true - Enable Task Flow processes for this Organization + Enable bot for makers. 1033 @@ -197507,13 +210207,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -197542,50 +210242,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - taskbasedflowenabled - 1900-01-01T00:00:00 + powerappsmakerbotenabled + 2025-11-06T02:32:44.4300032 false canmodifyrequirementlevelsettings - SystemRequired + None - TaskBasedFlowEnabled + PowerAppsMakerBotEnabled BooleanType - 8.0.0.0 + 9.1.0.0 false 0 - + false - 763ebcad-f5c2-496f-bf27-285b1390c8f0 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 133a5938-4f69-4a15-b078-110b6cc88384 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether the Task Flow processes are enabled for the organization. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 133a5938-4f69-4a15-b078-110b6cc88384 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies whether the Task Flow processes are enabled for the organization. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -197598,13 +210305,13 @@ false iscustomizable - true + false - false + true true - organization_taskbasedflowenabled + organization_featureenabled Boolean - 8.0.0.0 + 8.1.0.0 @@ -197619,15 +210326,22 @@ - 57779c3d-6047-4d45-a438-19a72bc5c2c5 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 57779c3d-6047-4d45-a438-19a72bc5c2c5 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -197652,15 +210366,22 @@ - 969234f8-80dd-468d-8936-89d385c872dc + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 969234f8-80dd-468d-8936-89d385c872dc + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -197672,11 +210393,102 @@ - + 0 + + 1d5d98e9-a8bf-4cee-96e7-63e33b2fc613 + + powerappsmakerbotenabled + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10037 + 2025-11-06T02:32:44.4600064 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + powerappsmakerbotenabledname + 2025-11-06T02:32:44.4600064 + + true + canmodifyrequirementlevelsettings + None + + powerappsmakerbotenabledName + + + VirtualType + + 9.1.0.0 + true + + + - 979c6c5f-aad5-49d6-ae75-a7bf9fa04493 + 9d768c78-e771-4ab3-9c99-dbe31928de54 Boolean @@ -197688,42 +210500,42 @@ canmodifyadditionalsettings false - 10163 - 2025-11-06T05:04:29.4370048 + 10245 + 2025-11-06T09:06:31.8499968 - 7a912928-0745-4216-8888-f5427be13587 + 7f44a2f4-72fd-4314-88ed-5c1924242114 true - Information on whether Teams Chat Data Sync is enabled. + Indicates whether cross region operations are allowed for the organization 1033 - 7a912928-0745-4216-8888-f5427be13587 + 7f44a2f4-72fd-4314-88ed-5c1924242114 true - Information on whether Teams Chat Data Sync is enabled. + Indicates whether cross region operations are allowed for the organization 1033 - 26b7c894-f0db-4b87-95a7-201b50fe30c5 + 9fe16c30-6c53-416d-8770-93d21d59695e true - Enable Teams Chat Data Sync. + Power BI allow cross region operations 1033 - 26b7c894-f0db-4b87-95a7-201b50fe30c5 + 9fe16c30-6c53-416d-8770-93d21d59695e true - Enable Teams Chat Data Sync. + Power BI allow cross region operations 1033 @@ -197733,7 +210545,7 @@ true canmodifyauditsettings - true + false false @@ -197768,83 +210580,76 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - teamschatdatasync - 2025-11-06T05:04:29.4370048 + powerbiallowcrossregionoperations + 2025-11-06T09:06:31.8499968 false canmodifyrequirementlevelsettings SystemRequired - TeamsChatDataSync + PowerBIAllowCrossRegionOperations BooleanType - 9.2.0.0 + 9.1.0.0 false 0 false - eadff010-ceba-f011-bbd3-7c1e52365f30 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - ecdff010-ceba-f011-bbd3-7c1e52365f30 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Enable or disable Teams Chat Data Sync. + Information that specifies whether a feature is enabled for the organization. 1033 - - - ecdff010-ceba-f011-bbd3-7c1e52365f30 - - true - Enable or disable Teams Chat Data Sync. - 1033 - - - - - ebdff010-ceba-f011-bbd3-7c1e52365f30 + 9aa58f12-110b-435b-9270-294a78494bba true - If Teams Chat Data Sync is enabled. - 1033 + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 - ebdff010-ceba-f011-bbd3-7c1e52365f30 + 05aedb96-402f-4dff-86e7-54b577874b2f true - If Teams Chat Data Sync is enabled. + Information that specifies whether a feature is enabled for the organization. 1033 + + + + - true + false false iscustomizable false - false + true true - organization_teamschatdatasync + organization_featureenabled Boolean - 9.2.0.0 + 8.1.0.0 @@ -197859,15 +210664,22 @@ - 5e67feb6-634a-4658-a1c0-7ffcd389f96b + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - 5e67feb6-634a-4658-a1c0-7ffcd389f96b + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -197892,15 +210704,22 @@ - c2cb872d-55c4-44aa-9d44-4062cf34f3be + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - c2cb872d-55c4-44aa-9d44-4062cf34f3be + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -197916,9 +210735,9 @@ 0 - e05af7fc-caf7-4edd-961d-e50dd7b7b6bd + c94193e3-471f-4f22-8ce2-e816508c1dcf - teamschatdatasync + powerbiallowcrossregionoperations Virtual false false @@ -197928,8 +210747,8 @@ canmodifyadditionalsettings true - 10164 - 2025-11-06T05:04:29.4530048 + 10246 + 2025-11-06T09:06:31.8669952 @@ -197989,155 +210808,25 @@ false false - teamschatdatasyncname - 2025-11-06T05:04:29.4530048 + powerbiallowcrossregionoperationsname + 2025-11-06T09:06:31.8669952 true canmodifyrequirementlevelsettings None - teamschatdatasyncName + powerbiallowcrossregionoperationsName VirtualType - 9.2.0.0 + 9.1.0.0 true - - 03882154-cce7-48ce-87b2-c0f1413df531 - - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 10006 - 2025-11-06T01:14:20.8600064 - - - - - 59417696-e21b-4c83-8733-681b80b1c363 - - true - Instrumentation key for Application Insights used to log plugins telemetry. - 1033 - - - - 59417696-e21b-4c83-8733-681b80b1c363 - - true - Instrumentation key for Application Insights used to log plugins telemetry. - 1033 - - - - - - 014ce5ed-1bea-41c1-9eed-6fd14b39c4cc - - true - Telemetry Instrumentation Key - 1033 - - - - 014ce5ed-1bea-41c1-9eed-6fd14b39c4cc - - true - Telemetry Instrumentation Key - 1033 - - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - false - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - false - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - false - true - true - - telemetryinstrumentationkey - 2025-11-06T01:14:20.8600064 - - false - canmodifyrequirementlevelsettings - None - - TelemetryInstrumentationKey - - - StringType - - 9.1.0.0 - false - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 200 - - 47a78757-ed80-44a9-9fcf-ce5e7eaa3389 + 23c450db-4962-493b-8581-49bd93b12e97 Boolean @@ -198149,42 +210838,42 @@ canmodifyadditionalsettings false - 381 - 1900-01-01T00:00:00 + 10243 + 2025-11-06T09:06:31.8169984 - 642f0f02-9684-459e-ba20-1247b9592d38 + 480d9ed9-46b9-4d64-bad3-8874fd9f4eb8 true - Select whether to turn on text analytics for the organization. + Indicates whether automatic permissions assignment to Power BI has been enabled for the organization 1033 - 642f0f02-9684-459e-ba20-1247b9592d38 + 480d9ed9-46b9-4d64-bad3-8874fd9f4eb8 true - Select whether to turn on text analytics for the organization. + Indicates whether automatic permissions assignment to Power BI has been enabled for the organization 1033 - 60b4beaa-dec8-425d-be76-11915983617c + aeace038-8f64-4a8e-ae83-0da283d9fcbb true - Enable Text Analytics for this Organization + Power BI automatic permissions assignment 1033 - 60b4beaa-dec8-425d-be76-11915983617c + aeace038-8f64-4a8e-ae83-0da283d9fcbb true - Enable Text Analytics for this Organization + Power BI automatic permissions assignment 1033 @@ -198194,13 +210883,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -198229,31 +210918,31 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - textanalyticsenabled - 1900-01-01T00:00:00 + powerbiautomaticpermissionsassignment + 2025-11-06T09:06:31.8169984 false canmodifyrequirementlevelsettings SystemRequired - TextAnalyticsEnabled + PowerBIAutomaticPermissionsAssignment BooleanType - 8.1.0.0 + 9.1.0.0 false 0 - + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -198267,6 +210956,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -198312,6 +211008,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -198345,6 +211048,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -198359,14 +211069,105 @@ - + 0 - - faa56999-d963-48bf-b4c8-462ee255bb1a + + 6f92cac2-f742-4196-a58a-f16173931596 + + powerbiautomaticpermissionsassignment + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10244 + 2025-11-06T09:06:31.8329984 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + powerbiautomaticpermissionsassignmentname + 2025-11-06T09:06:31.8329984 + + true + canmodifyrequirementlevelsettings + None + + powerbiautomaticpermissionsassignmentName + + + VirtualType + + 9.1.0.0 + true + + + + + a5f3bac1-657f-44b8-8dca-48549336e55a - Picklist + Boolean false false false @@ -198375,42 +211176,42 @@ canmodifyadditionalsettings false - 10 - 1900-01-01T00:00:00 + 10241 + 2025-11-06T09:06:31.7869952 - 9752c2fa-2241-db11-898a-0007e9e17ebd + 057571b5-3a12-4805-acf7-3c770a41b3a0 true - Information that specifies how the time is displayed throughout Microsoft CRM. + Indicates whether creation of Power BI components has been enabled for the organization 1033 - 9752c2fa-2241-db11-898a-0007e9e17ebd + 057571b5-3a12-4805-acf7-3c770a41b3a0 true - Information that specifies how the time is displayed throughout Microsoft CRM. + Indicates whether creation of Power BI components has been enabled for the organization 1033 - 068bc363-5103-4dd6-b21e-f7030546c4e6 + 734a9536-b402-420e-b964-f5e4c4c54087 true - Time Format Code + Power BI components creation 1033 - 068bc363-5103-4dd6-b21e-f7030546c4e6 + 734a9536-b402-420e-b964-f5e4c4c54087 true - Time Format Code + Power BI components creation 1033 @@ -198420,13 +211221,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -198455,50 +211256,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - timeformatcode - 1900-01-01T00:00:00 + powerbicomponentscreate + 2025-11-06T09:06:31.7869952 false canmodifyrequirementlevelsettings SystemRequired - TimeFormatCode + PowerBIComponentsCreate - PicklistType + BooleanType - 5.0.0.0 + 9.1.0.0 false 0 - - -1 + + false - 6d80c474-4f85-44e0-98c8-cf48a0291ddb + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 2daec5e6-02b1-4295-b4d5-17c6a684101c + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies how the time is displayed throughout Microsoft CRM. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 2daec5e6-02b1-4295-b4d5-17c6a684101c + 05aedb96-402f-4dff-86e7-54b577874b2f true - Information that specifies how the time is displayed throughout Microsoft CRM. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -198511,37 +211319,112 @@ false iscustomizable - true + false - false + true true - organization_timeformatcode - Picklist - 5.0.0.0 - - + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + - - + 0 - - - 1ac10d3e-441f-48be-a98e-4175df54aa2e + 015c2026-5aaa-41a9-898f-a1bc7e04444f - timeformatcode + powerbicomponentscreate Virtual false false false - false + true canmodifyadditionalsettings - false + true - 48 - 1900-01-01T00:00:00 + 10242 + 2025-11-06T09:06:31.8029952 @@ -198555,15 +211438,15 @@ - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -198572,13 +211455,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -198590,7 +211473,7 @@ false - false + true canmodifysearchsettings false @@ -198601,28 +211484,28 @@ false false - timeformatcodename - 1900-01-01T00:00:00 + powerbicomponentscreatename + 2025-11-06T09:06:31.8029952 - false + true canmodifyrequirementlevelsettings None - TimeFormatCodeName + powerbicomponentscreateName VirtualType - 5.0.0.0 + 9.1.0.0 true - + - - 3993d90d-ebd4-4ad3-8a59-0eaefa31cbb5 + + 241af8aa-b584-418f-99bd-1ab5342d287e - String + Boolean false false false @@ -198631,42 +211514,56 @@ canmodifyadditionalsettings false - 40 + 385 1900-01-01T00:00:00 - de90aa12-2341-db11-898a-0007e9e17ebd + 8b026571-b457-4705-b78e-5b61229e8dc6 true - Text for how time is displayed in Microsoft Dynamics 365. + Indicates whether the Power BI feature should be enabled for the organization. 1033 + + 7568a63e-d07d-4d14-84b2-52b08aa726d6 + + true + Angiver, om funktionen Power BI skal aktiveres for organisationen. + 1030 + - de90aa12-2341-db11-898a-0007e9e17ebd + 8b026571-b457-4705-b78e-5b61229e8dc6 true - Text for how time is displayed in Microsoft Dynamics 365. + Indicates whether the Power BI feature should be enabled for the organization. 1033 - a37169ca-2c8c-46e8-a8ef-1ef2e0a08050 + bf1d95f8-06ec-45e2-8955-de0c8f8812ef true - Time Format String + Enable Power BI feature for this Organization 1033 + + de33aad6-1c9a-434c-b5f1-582ab7516398 + + true + Aktivér funktionen Power BI for denne organisation + 1030 + - a37169ca-2c8c-46e8-a8ef-1ef2e0a08050 + bf1d95f8-06ec-45e2-8955-de0c8f8812ef true - Time Format String + Enable Power BI feature for this Organization 1033 @@ -198720,39 +211617,156 @@ true true - timeformatstring + powerbifeatureenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - TimeFormatString + PowerBiFeatureEnabled - StringType + BooleanType - 5.0.0.0 + 8.1.0.0 false 0 - Text - Auto - 255 - - - Text - + false + + 049e95d7-7c81-44ce-995c-a7eaf1b5eafd + + + + + 03ed914c-aef9-4f19-9199-fa2453c8bf44 + + true + Information that specifies whether the Power Bi Task Flow processes are enabled for the organization. + 1033 + + + f57571ed-c8dd-4d8e-bad7-69ba8b072b70 + + true + Oplysninger, der angiver, om opgaveprocesserne for Power Bi er aktiveret for organisationen. + 1030 + + + + 03ed914c-aef9-4f19-9199-fa2453c8bf44 + + true + Information that specifies whether the Power Bi Task Flow processes are enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_powerbifeature + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + 37f68582-2304-4436-bc83-41f065b11463 + + true + Disable + 1033 + + + 0d991f40-028f-42f6-a1aa-531e3be13e79 + + true + Deaktivér + 1030 + + + + 37f68582-2304-4436-bc83-41f065b11463 + + true + Disable + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 395e36be-135b-49a5-98f5-0cc7859299ca + + true + Enable + 1033 + + + b1ae5ecd-0d90-4844-87fb-3910aab3e55b + + true + Aktivér + 1030 + + + + 395e36be-135b-49a5-98f5-0cc7859299ca + + true + Enable + 1033 + + + + 1 + + + - false 0 - 510 - - 239f2100-c109-4e9d-b09e-aaedb69ddf87 + + b6d4dae0-46af-475b-8916-ff686296e851 - String + Integer false false false @@ -198761,42 +211775,56 @@ canmodifyadditionalsettings false - 121 + 41 1900-01-01T00:00:00 - 1e3207ad-405c-4774-af63-e28ba988416a + a11c9b1e-2341-db11-898a-0007e9e17ebd true - Text for how the time separator is displayed throughout Microsoft Dynamics 365. + Number of decimal places that can be used for prices. 1033 + + 8fcf651e-2ed9-4f56-bda2-fe4f2745c91f + + true + Antallet af decimaler, der kan bruges i priser. + 1030 + - 1e3207ad-405c-4774-af63-e28ba988416a + a11c9b1e-2341-db11-898a-0007e9e17ebd true - Text for how the time separator is displayed throughout Microsoft Dynamics 365. + Number of decimal places that can be used for prices. 1033 - 16ca0e59-2bc7-477c-b266-2cf8a30eb083 + aeb07164-17a1-40c1-b26c-eacb290946e3 true - Time Separator + Pricing Decimal Precision 1033 + + f07e226f-bd14-4c0e-9b1f-2cd8f6aa4476 + + true + Decimalpræcision for prissætning + 1030 + - 16ca0e59-2bc7-477c-b266-2cf8a30eb083 + aeb07164-17a1-40c1-b26c-eacb290946e3 true - Time Separator + Pricing Decimal Precision 1033 @@ -198850,39 +211878,33 @@ true true - timeseparator + pricingdecimalprecision 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - TimeSeparator + PricingDecimalPrecision - StringType + IntegerType 5.0.0.0 false 0 - Text - Auto - 5 - - - Text - + None + 10 + 0 - false 0 - 10 - - 69c0a771-84d7-41ca-8962-e5851cb86e90 + + 2f05b31d-1e4a-4d6c-96da-252acfb03523 - Integer + String false false false @@ -198891,42 +211913,56 @@ canmodifyadditionalsettings false - 104 + 302 1900-01-01T00:00:00 - 495e1ea2-954a-4a51-b69a-28fbcae096dd + 85b0b589-3be8-47ae-9afc-316d4d481f40 true - For internal use only. + Privacy Statement URL 1033 + + fe24d34b-12dc-41f1-ba37-d7026f97ad1a + + true + URL-adresse til erklæring om beskyttelse af personlige oplysninger + 1030 + - 495e1ea2-954a-4a51-b69a-28fbcae096dd + 85b0b589-3be8-47ae-9afc-316d4d481f40 true - For internal use only. + Privacy Statement URL 1033 - 446810af-b9a6-4653-bb95-6fb554a54a7c + 849fe190-bdc9-47f3-a1a3-abcc56661493 true - Time Zone Rule Version Number + Privacy Statement URL 1033 + + 3e299992-9ecc-4e0b-b42d-18f747d83c6e + + true + URL-adresse til erklæring om beskyttelse af personlige oplysninger + 1030 + - 446810af-b9a6-4653-bb95-6fb554a54a7c + 849fe190-bdc9-47f3-a1a3-abcc56661493 true - Time Zone Rule Version Number + Privacy Statement URL 1033 @@ -198934,9 +211970,9 @@ - false + true canmodifyauditsettings - false + true false @@ -198980,33 +212016,39 @@ true true - timezoneruleversionnumber + privacystatementurl 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - TimeZoneRuleVersionNumber + PrivacyStatementUrl - IntegerType + StringType - 5.0.0.0 + 7.1.0.0 false 0 - None - 2147483647 - -1 + Text + Auto + 500 + + + Text + + false 0 + 1000 - - 8264443e-9cd0-4c8e-914d-e8127576f283 + + cde1ff20-ece6-49ae-b1af-268f2eecb195 - Integer + Uniqueidentifier false false false @@ -199015,42 +212057,56 @@ canmodifyadditionalsettings false - 63 + 4 1900-01-01T00:00:00 - 599af6ca-2241-db11-898a-0007e9e17ebd + 2f9aba00-2341-db11-898a-0007e9e17ebd true - Duration used for token expiration. + Unique identifier of the default privilege for users in the organization. 1033 + + 76470a58-6972-4770-971e-dc9a183df95b + + true + Entydigt id for standardrettighederne for brugere i organisationen. + 1030 + - 599af6ca-2241-db11-898a-0007e9e17ebd + 2f9aba00-2341-db11-898a-0007e9e17ebd true - Duration used for token expiration. + Unique identifier of the default privilege for users in the organization. 1033 - f4af0579-715f-4cbf-b519-9c320e3f57bb + e2eccd33-3b61-43c6-933d-b3f1fd25d148 true - Token Expiration Duration + Privilege User Group 1033 + + fa3028f4-dd63-4c4f-8a51-732e9040360d + + true + Brugergruppe for rettigheder + 1030 + - f4af0579-715f-4cbf-b519-9c320e3f57bb + e2eccd33-3b61-43c6-933d-b3f1fd25d148 true - Token Expiration Duration + Privilege User Group 1033 @@ -199058,15 +212114,15 @@ - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -199097,40 +212153,35 @@ canmodifysearchsettings false - false + true false false true true true - tokenexpiry + privilegeusergroupid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - TokenExpiry + PrivilegeUserGroupId - IntegerType + UniqueidentifierType 5.0.0.0 false - 0 + - None - - - - 0 - - f7dadb81-7698-4905-a857-5762f209f5d3 + + c253fe0a-2189-49b7-900c-91c441c2abfb - String + Uniqueidentifier false false false @@ -199139,42 +212190,56 @@ canmodifyadditionalsettings false - 53 + 143 1900-01-01T00:00:00 - dd99ba00-2341-db11-898a-0007e9e17ebd + e191aa12-2341-db11-898a-0007e9e17ebd true - Token key. + For internal use only. 1033 + + 66d1197b-a5c0-47b4-acd7-7111c740d897 + + true + Kun til intern brug. + 1030 + - dd99ba00-2341-db11-898a-0007e9e17ebd + e191aa12-2341-db11-898a-0007e9e17ebd true - Token key. + For internal use only. 1033 - b57b10e1-382f-4345-b9b2-2b285a3c872e + 8232ed16-22aa-4d63-940c-6feaf92f324a true - Token Key + Privilege Reporting Group 1033 + + 60233b5d-314a-4e99-bac7-ca810f1bb123 + + true + Rapportgruppe for rettigheder + 1030 + - b57b10e1-382f-4345-b9b2-2b285a3c872e + 8232ed16-22aa-4d63-940c-6feaf92f324a true - Token Key + Privilege Reporting Group 1033 @@ -199182,15 +212247,15 @@ - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -199221,46 +212286,35 @@ canmodifysearchsettings false - false + true false false - false + true true true - tokenkey + privreportinggroupid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - TokenKey + PrivReportingGroupId - StringType + UniqueidentifierType 5.0.0.0 false - 0 + - Text - Auto - 90 - - - Text - - - false - 0 - 180 - - e7d78dcb-f0c5-4242-8aeb-b5e29c3b43a5 + + ade39396-5784-408d-bb7e-9d1f6d3de0d3 - Integer + String false false false @@ -199269,42 +212323,56 @@ canmodifyadditionalsettings false - 160 - 2025-11-06T00:19:20.5400064 + 146 + 1900-01-01T00:00:00 - 1ff762fd-fd3d-4f91-8deb-fb0b9569327d + 2ed7a218-2341-db11-898a-0007e9e17ebd true - Tracelog record maximum age in days + For internal use only. 1033 + + 5a3753fb-2283-4c2e-9cab-db45cb2becee + + true + Kun til intern brug. + 1030 + - 1ff762fd-fd3d-4f91-8deb-fb0b9569327d + 2ed7a218-2341-db11-898a-0007e9e17ebd true - Tracelog record maximum age in days + For internal use only. 1033 - a865bd90-b5ae-42c6-9150-7afe56a67c22 + fd12473b-aa3e-483d-b4e0-87426e1e5f06 true - Tracelog record maximum age in days + Privilege Reporting Group Name 1033 + + 53ceb253-2a40-4103-9878-a513444c2cce + + true + Navn på rapportgruppe for rettigheder + 1030 + - a865bd90-b5ae-42c6-9150-7afe56a67c22 + fd12473b-aa3e-483d-b4e0-87426e1e5f06 true - Tracelog record maximum age in days + Privilege Reporting Group Name 1033 @@ -199312,9 +212380,9 @@ - true + false canmodifyauditsettings - true + false false @@ -199358,33 +212426,39 @@ true true - tracelogmaximumageindays - 2025-11-06T00:19:20.5400064 + privreportinggroupname + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - TraceLogMaximumAgeInDays + PrivReportingGroupName - IntegerType + StringType - 9.1.0.0 + 5.0.0.0 false 0 - None - 2147483647 - 0 + Text + Auto + 256 + + + Text + + false 0 + 512 - - 8fbecbd6-0208-465c-993f-5612928b61b8 + + 52803db8-f78c-4791-bd52-fcc67d9bf60b - String + Boolean false false false @@ -199393,42 +212467,56 @@ canmodifyadditionalsettings false - 75 + 380 1900-01-01T00:00:00 - 6f1c9b1e-2341-db11-898a-0007e9e17ebd + b9af501b-b712-414e-8d28-027dc0bdb9ba true - History list of tracking token prefixes. + Select whether to turn on product recommendations for the organization. 1033 + + 8b5d755c-4185-4946-93fa-b0ef729490b1 + + true + Vælg, om du vil aktivere produktanbefalinger for organisationen. + 1030 + - 6f1c9b1e-2341-db11-898a-0007e9e17ebd + b9af501b-b712-414e-8d28-027dc0bdb9ba true - History list of tracking token prefixes. + Select whether to turn on product recommendations for the organization. 1033 - 724163b7-6063-485b-a6ec-d18b9705afb2 + 7732ddcb-8ff2-4237-8703-42313eb87641 true - Tracking Prefix + Enable Product Recommendations for this Organization 1033 + + 3c7aa0c6-ad87-44a5-bd2c-3fe56a8f9958 + + true + Aktivér produktanbefalinger for denne organisation + 1030 + - 724163b7-6063-485b-a6ec-d18b9705afb2 + 7732ddcb-8ff2-4237-8703-42313eb87641 true - Tracking Prefix + Enable Product Recommendations for this Organization 1033 @@ -199482,39 +212570,156 @@ true true - trackingprefix + productrecommendationsenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - TrackingPrefix + ProductRecommendationsEnabled - StringType + BooleanType - 5.0.0.0 + 8.1.0.0 false 0 - Text - Auto - 256 - - - Text - + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 512 - - bf392b97-ec45-4e7a-b81d-6e5cba94a2de + + 46100798-2ff1-4ced-b123-f4459e8500a3 - Integer + String false false false @@ -199523,42 +212728,56 @@ canmodifyadditionalsettings false - 68 - 1900-01-01T00:00:00 + 448 + 2025-11-06T00:19:20.0870016 - e998ba00-2341-db11-898a-0007e9e17ebd + 140fc8df-2c88-4c26-823b-d619307f739d true - Base number used to provide separate tracking token identifiers to users belonging to different deployments. + Indicates whether prompt should be shown for new Qualify Lead Experience 1033 + + 026e55ec-a13d-43a0-9ebe-71b12b260f3c + + true + Angiver, om der skal vises prompt for ny oplevelse til Kvalificer kundeemne + 1030 + - e998ba00-2341-db11-898a-0007e9e17ebd + 140fc8df-2c88-4c26-823b-d619307f739d true - Base number used to provide separate tracking token identifiers to users belonging to different deployments. + Indicates whether prompt should be shown for new Qualify Lead Experience 1033 - 918e9c19-932b-432f-b567-faea13334150 + 15594032-e2d7-4e31-a9f4-b6175ca58e5d true - Tracking Token Base + Enable New Qualify Lead Experience with configuration MDD 1033 + + 8b25428c-2ea0-4494-b3ef-7367b0256919 + + true + Aktivér ny oplevelse til Kvalificer kundeemne med konfigurations-MDD + 1030 + - 918e9c19-932b-432f-b567-faea13334150 + 15594032-e2d7-4e31-a9f4-b6175ca58e5d true - Tracking Token Base + Enable New Qualify Lead Experience with configuration MDD 1033 @@ -199612,33 +212831,39 @@ true true - trackingtokenidbase - 1900-01-01T00:00:00 + qualifyleadadditionaloptions + 2025-11-06T00:19:20.0870016 false canmodifyrequirementlevelsettings - None + SystemRequired - TrackingTokenIdBase + QualifyLeadAdditionalOptions - IntegerType + StringType - 5.0.0.0 + 9.1.0.0 false 0 - None - 2147483647 - 0 + Text + Auto + 1000 + + + Text + + false 0 + 1000 - - 9c04c4f7-64e8-4a7a-868a-355a450862d5 + + 1e84214e-e875-4485-b5d8-7f40a7cd55d0 - Integer + Boolean false false false @@ -199647,42 +212872,56 @@ canmodifyadditionalsettings false - 91 - 1900-01-01T00:00:00 + 10192 + 2025-11-06T06:14:32.5500032 - f191aa12-2341-db11-898a-0007e9e17ebd + 7aaa737f-43e7-4558-beb7-6217c2d9b377 true - Number of digits used to represent a tracking token identifier. + Flag to indicate if the feature to use quick action to open records in search side pane is enabled 1033 + + 029c9d7e-3630-4743-b3bf-fa9b3082035a + + true + Flag, der angiver, om funktionen til hurtig handling ved åbning af poster i søgesideruden er aktiveret + 1030 + - f191aa12-2341-db11-898a-0007e9e17ebd + 7aaa737f-43e7-4558-beb7-6217c2d9b377 true - Number of digits used to represent a tracking token identifier. + Flag to indicate if the feature to use quick action to open records in search side pane is enabled 1033 - b8853034-cf05-4a3a-a50a-17da40013ab1 + 6e02b287-ac49-4b3f-8c21-489836d201f0 true - Tracking Token Digits + Enable quick actions to open records in search side pane 1033 + + 4de7d608-21bd-4ec5-a269-dc72ea05bbec + + true + Aktivér hurtige handlinger til at åbne poster i søgning i sideruden + 1030 + - b8853034-cf05-4a3a-a50a-17da40013ab1 + 6e02b287-ac49-4b3f-8c21-489836d201f0 true - Tracking Token Digits + Enable quick actions to open records in search side pane 1033 @@ -199692,13 +212931,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -199727,298 +212966,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - trackingtokeniddigits - 1900-01-01T00:00:00 + quickactiontoopenrecordsinsidepaneenabled + 2025-11-06T06:14:32.5500032 false canmodifyrequirementlevelsettings - None + SystemRequired - TrackingTokenIdDigits + QuickActionToOpenRecordsInSidePaneEnabled - IntegerType + BooleanType - 5.0.0.0 + 9.1.0.0 false 0 - - None - - - - 0 - - - bec6f958-4e51-4048-9459-2b30df4da525 - - - Integer - false - false - false - - false - canmodifyadditionalsettings - false - - 31 - 1900-01-01T00:00:00 - - - - - e3e8af0c-2341-db11-898a-0007e9e17ebd - - true - Number of characters appended to invoice, quote, and order numbers. - 1033 - - - - e3e8af0c-2341-db11-898a-0007e9e17ebd - - true - Number of characters appended to invoice, quote, and order numbers. - 1033 - - - - - - ffd10d3e-c3f3-421b-8b83-79e52217e647 - - true - Unique String Length - 1033 - - - - ffd10d3e-c3f3-421b-8b83-79e52217e647 - - true - Unique String Length - 1033 - - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - uniquespecifierlength - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - UniqueSpecifierLength - - - IntegerType - - 5.0.0.0 - false - 0 - - None - 6 - 4 - - 0 - - - bc6f5d67-d0e4-45b3-8260-9c949032051c - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 394 - 1900-01-01T00:00:00 - - - - - d67eafde-e8bd-4b20-b658-764ea4f0338a - - true - Indicates whether email address should be unresolved if multiple matches are found - 1033 - - - - d67eafde-e8bd-4b20-b658-764ea4f0338a - - true - Indicates whether email address should be unresolved if multiple matches are found - 1033 - - - - - - 3b65d7a1-ea33-46ab-8916-d1927de643a8 - - true - Set To,cc,bcc fields as unresolved if multiple matches are found - 1033 - - - - 3b65d7a1-ea33-46ab-8916-d1927de643a8 - - true - Set To,cc,bcc fields as unresolved if multiple matches are found - 1033 - - - organization - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - unresolveemailaddressifmultiplematch - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - UnresolveEmailAddressIfMultipleMatch - - - BooleanType - - 8.2.0.0 - false - 0 - + false - 6e9bd2b2-8644-4afb-abdc-f903762323b9 + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 4ff98614-9a96-4c5f-a02a-6b63b13a01e9 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Flag to allow the user to unresolve email address if multiple match found + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 4ff98614-9a96-4c5f-a02a-6b63b13a01e9 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Flag to allow the user to unresolve email address if multiple match found + Information that specifies whether a feature is enabled for the organization. 1033 @@ -200031,13 +213029,13 @@ false iscustomizable - true + false - false + true true - organization_unresolveemailaddressifmultiplematch + organization_featureenabled Boolean - 8.2.0.0 + 8.1.0.0 @@ -200052,15 +213050,22 @@ - e011e886-011e-4b9f-9f35-4b972634391c + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + - e011e886-011e-4b9f-9f35-4b972634391c + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc true No @@ -200085,15 +213090,22 @@ - 81341ccf-eb1e-4b56-b258-f9622256b55d + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + - 81341ccf-eb1e-4b56-b258-f9622256b55d + f35414f9-6316-4617-82ea-dfb3602119e3 true Yes @@ -200105,60 +213117,32 @@ - + 0 - - 73ec5ccd-3f11-4956-a409-5164e9649c98 + + 46b6ef01-a74d-47d8-a2b8-476c71b1b4b0 - - Boolean + quickactiontoopenrecordsinsidepaneenabled + Virtual false false false - false + true canmodifyadditionalsettings true - 259 - 1900-01-01T00:00:00 + 10193 + 2025-11-06T06:14:32.5670016 - - - 4e9bbe87-12f9-4492-bf09-cd8f7fc55984 - - true - Flag indicates whether to Use Inbuilt Rule For DefaultPricelist. - 1033 - - - - 4e9bbe87-12f9-4492-bf09-cd8f7fc55984 - - true - Flag indicates whether to Use Inbuilt Rule For DefaultPricelist. - 1033 - + + - - - 7613d825-0c1d-4e48-b22b-8a3d97193848 - - true - Use Inbuilt Rule For Default Pricelist Selection - 1033 - - - - 7613d825-0c1d-4e48-b22b-8a3d97193848 - - true - Use Inbuilt Rule For Default Pricelist Selection - 1033 - + + organization @@ -200166,13 +213150,13 @@ true canmodifyauditsettings - true + false false - false + true iscustomizable - false + true false false @@ -200181,13 +213165,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -200199,143 +213183,36 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - useinbuiltrulefordefaultpricelistselection - 1900-01-01T00:00:00 + quickactiontoopenrecordsinsidepaneenabledname + 2025-11-06T06:14:32.5670016 - false + true canmodifyrequirementlevelsettings None - UseInbuiltRuleForDefaultPricelistSelection + quickactiontoopenrecordsinsidepaneenabledName - BooleanType + VirtualType - 7.0.0.0 - false - 0 - - true - - a7d61c5c-544d-4aab-9953-f8a595fcc9e5 - - - - - 48a8d18d-2e45-433b-a930-a9d7bfce9f89 - - true - Use Built in Rule For DefaultPricelist Selection - 1033 - - - - 48a8d18d-2e45-433b-a930-a9d7bfce9f89 - - true - Use Built in Rule For DefaultPricelist Selection - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_usebuiltinrulefordefaultpricelistselection - Boolean - 7.0.0.0 - - - - - - - - - - false - true - - - - 78b0a6db-54e6-4c80-85ce-e7131933f7a7 - - true - No - 1033 - - - - 78b0a6db-54e6-4c80-85ce-e7131933f7a7 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - e2957260-45b6-4833-87b3-8809b80cbdd1 - - true - Yes - 1033 - - - - e2957260-45b6-4833-87b3-8809b80cbdd1 - - true - Yes - 1033 - - - - 1 - - - - - 0 + 9.1.0.0 + true + + - 7e599577-35c6-46af-bbf3-3f570f685446 + 24b37952-7632-4f78-b363-74f63188fc71 Boolean @@ -200347,42 +213224,56 @@ canmodifyadditionalsettings false - 368 + 221 1900-01-01T00:00:00 - 24fa7c2f-d225-4e97-8b94-6751a37bfece + 67aa02f5-4d92-40b7-99d0-8f6221cedd90 true - Select whether to use legacy form rendering. + Indicates whether a quick find record limit should be enabled for this organization (allows for faster Quick Find queries but prevents overly broad searches). 1033 + + 2e095c38-ddbb-47ed-8f63-44143511fd7d + + true + Angiver, om en grænse for poster til hurtig søgning skal aktiveres for denne organisation (giver mulighed for hurtigere forespørgsler til hurtig søgning, men forhindrer alt for brede søgninger). + 1030 + - 24fa7c2f-d225-4e97-8b94-6751a37bfece + 67aa02f5-4d92-40b7-99d0-8f6221cedd90 true - Select whether to use legacy form rendering. + Indicates whether a quick find record limit should be enabled for this organization (allows for faster Quick Find queries but prevents overly broad searches). 1033 - 6b26b2fb-b4a4-411c-af21-f2e31f64c854 + 6ef89aa0-9b39-4cff-bc46-e7a7d5ed9892 true - Legacy Form Rendering + Quick Find Record Limit Enabled 1033 + + e7927688-bc2e-4104-95e4-47c8b830e0db + + true + Grænse for poster til hurtig søgning er aktiveret + 1030 + - 6b26b2fb-b4a4-411c-af21-f2e31f64c854 + 6ef89aa0-9b39-4cff-bc46-e7a7d5ed9892 true - Legacy Form Rendering + Quick Find Record Limit Enabled 1033 @@ -200398,7 +213289,7 @@ false iscustomizable - false + true false false @@ -200436,41 +213327,48 @@ true true - uselegacyrendering + quickfindrecordlimitenabled 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - UseLegacyRendering + QuickFindRecordLimitEnabled BooleanType - 7.1.0.0 + 5.0.0.0 false 0 - false + true - 21156795-6e98-4320-8a6d-3ee943fb1fae + ac783aaa-5d6f-4066-b334-af1659a36983 - 8ab857cf-10e5-47e2-8f36-75d15e9270d6 + a88e91ad-ee24-4a5c-b5ba-dac1624e722a true - Flag to use legacy form rendering. + Information that specifies whether quick find record limits are enabled. 1033 + + 6ff4cd26-b506-4066-aedd-cd553fb9063f + + true + Angiver, om grænser for poster til hurtig søgning er aktiveret. + 1030 + - 8ab857cf-10e5-47e2-8f36-75d15e9270d6 + a88e91ad-ee24-4a5c-b5ba-dac1624e722a true - Flag to use legacy form rendering. + Information that specifies whether quick find record limits are enabled. 1033 @@ -200483,13 +213381,13 @@ false iscustomizable - false + true false true - organization_uselegacyrendering + organization_enablequickfindrecordlimit Boolean - 8.0.0.0 + 5.0.0.0 @@ -200504,15 +213402,22 @@ - 4d731575-8cec-4340-b9bd-9cdaaf447054 + 932d2b6c-326a-4ddb-bfa7-25487fd2b7cd true No 1033 + + e05a19a7-54f3-44dc-b172-e8079e15818b + + true + Nej + 1030 + - 4d731575-8cec-4340-b9bd-9cdaaf447054 + 932d2b6c-326a-4ddb-bfa7-25487fd2b7cd true No @@ -200537,15 +213442,22 @@ - 71fd4b71-ee1a-4aad-8a77-732871c01d3a + bd900c97-7fcf-418c-8290-e53147152dd7 true Yes 1033 + + 693f7433-c089-4e02-af11-732bce87142d + + true + Ja + 1030 + - 71fd4b71-ee1a-4aad-8a77-732871c01d3a + bd900c97-7fcf-418c-8290-e53147152dd7 true Yes @@ -200560,11 +213472,11 @@ 0 - - 2c630ec2-aff8-4510-823a-720908ba9f26 + + af07703c-70d5-46c4-af90-0e397639289d - Boolean + String false false false @@ -200573,42 +213485,56 @@ canmodifyadditionalsettings false - 267 + 25 1900-01-01T00:00:00 - 30bff908-2b78-4226-860d-3de22279a84f + 1252c2fa-2241-db11-898a-0007e9e17ebd true - Use position hierarchy + Prefix to use for all quotes throughout Microsoft Dynamics 365. 1033 + + f21a9785-aa9d-429f-b8e0-e59e07dbeb38 + + true + Præfiks til brug med alle tilbud i Microsoft Dynamics 365. + 1030 + - 30bff908-2b78-4226-860d-3de22279a84f + 1252c2fa-2241-db11-898a-0007e9e17ebd true - Use position hierarchy + Prefix to use for all quotes throughout Microsoft Dynamics 365. 1033 - 17d42229-b5f4-4754-aecd-e8171a283fec + 812f83dd-62e8-4511-a32a-07dd08c8e458 true - Use position hierarchy + Quote Prefix 1033 + + 020ca512-51d2-45e8-b553-923fa3df8b03 + + true + Tilbudspræfiks + 1030 + - 17d42229-b5f4-4754-aecd-e8171a283fec + 812f83dd-62e8-4511-a32a-07dd08c8e458 true - Use position hierarchy + Quote Prefix 1033 @@ -200662,132 +213588,36 @@ true true - usepositionhierarchy + quoteprefix 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - UsePositionHierarchy + QuotePrefix - BooleanType + StringType - 7.0.0.0 + 5.0.0.0 false 0 - false - - efefc028-f0f3-4ffe-9d7b-33170cf96305 - - - - - 50747603-8830-45e9-92cf-f288c14516dd - - true - Use Position hierarchy for hierarchical security model - 1033 - - - - 50747603-8830-45e9-92cf-f288c14516dd - - true - Use Position hierarchy for hierarchical security model - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - organization_usepositionhierarchy - Boolean - 7.0.0.0 - - - - - - - - - - false - true - - - - ae7785d3-a8e9-4be9-98ed-ca286e1ef308 - - true - No - 1033 - - - - ae7785d3-a8e9-4be9-98ed-ca286e1ef308 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 7037d378-5d43-44d3-9c29-1b8675b643dd - - true - Yes - 1033 - - - - 7037d378-5d43-44d3-9c29-1b8675b643dd - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 20 + + + Text + + false 0 + 40 - 81ae31a4-1169-4d6e-acff-80b270e43d8e + 7b09b5bd-385f-4617-ade3-9ac2ea1792a9 Boolean @@ -200797,44 +213627,58 @@ false canmodifyadditionalsettings - true + false - 457 - 2025-11-06T00:19:20.4 + 10157 + 2025-11-06T04:31:47.4130048 - da304b6b-8cbb-4604-8f3e-78956ee22584 + c9b7c471-11b4-4182-af81-bb1e737c092c true - Indicates whether searching in a grid should use the Quick Find view for the entity. + Indicates whether SLA Recalculation has been enabled for the organization 1033 + + 8735cb64-5803-423f-955d-8d2b28e28f07 + + true + Angiver, om SLA-genberegning er aktiveret for organisationen + 1030 + - da304b6b-8cbb-4604-8f3e-78956ee22584 + c9b7c471-11b4-4182-af81-bb1e737c092c true - Indicates whether searching in a grid should use the Quick Find view for the entity. + Indicates whether SLA Recalculation has been enabled for the organization 1033 - c2f87719-c8fd-43cb-9022-a0df9a8fa235 + 11120fcc-dde7-4e5e-99f8-e418e8899f67 true - Use Quick Find view when searching in grids + Indicates whether SLA Recalculation has been enabled for the organization 1033 + + 778bd192-4096-44ec-94eb-da17bb30dac0 + + true + Angiver, om SLA-genberegning er aktiveret for organisationen + 1030 + - c2f87719-c8fd-43cb-9022-a0df9a8fa235 + 11120fcc-dde7-4e5e-99f8-e418e8899f67 true - Use Quick Find view when searching in grids + Indicates whether SLA Recalculation has been enabled for the organization 1033 @@ -200844,7 +213688,7 @@ true canmodifyauditsettings - true + false false @@ -200879,23 +213723,23 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - usequickfindviewforgridsearch - 2025-11-06T00:19:20.4 + recalculatesla + 2026-04-03T15:10:20.5229952 false canmodifyrequirementlevelsettings SystemRequired - UseQuickFindViewForGridSearch + RecalculateSLA BooleanType @@ -200903,7 +213747,7 @@ 9.1.0.0 false 0 - + false 315e90f0-678b-4e4d-97f1-886050c3cb46 @@ -200917,6 +213761,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -200962,6 +213813,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -200995,6 +213853,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -201009,60 +213874,32 @@ - + 0 - - d345db77-391c-40d2-a781-0c5999f0f46e + + 2bc9de82-83ff-4c2c-955c-5c9d839e517a - - Integer + recalculatesla + Virtual false false false false canmodifyadditionalsettings - false + true - 220 - 1900-01-01T00:00:00 + 10158 + 2025-11-06T04:31:47.4429952 - - - dea27255-bfe3-4b8f-ad59-bf3420fef8b7 - - true - The interval at which user access is checked for auditing. - 1033 - - - - dea27255-bfe3-4b8f-ad59-bf3420fef8b7 - - true - The interval at which user access is checked for auditing. - 1033 - + + - - - a49794a8-1870-4865-afc2-ad6b3a3899de - - true - User Authentication Auditing Interval - 1033 - - - - a49794a8-1870-4865-afc2-ad6b3a3899de - - true - User Authentication Auditing Interval - 1033 - + + organization @@ -201070,7 +213907,7 @@ true canmodifyauditsettings - true + false false @@ -201091,7 +213928,7 @@ false isrenameable - false + true false false @@ -201103,44 +213940,39 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - useraccessauditinginterval - 1900-01-01T00:00:00 + recalculateslaname + 2025-11-06T04:31:47.4429952 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - UserAccessAuditingInterval + recalculateslaName - IntegerType + VirtualType - 5.0.0.0 - false - 0 - - None - 2147483647 - 0 - - 0 + 9.1.0.0 + true + + - - f629c905-a614-4457-859c-1cb80d077093 + + cee53143-dd1f-4571-bedd-bc4bf1c16d44 - Boolean + Integer false false false @@ -201149,42 +213981,56 @@ canmodifyadditionalsettings false - 181 + 171 1900-01-01T00:00:00 - 849b09c0-9a2c-4a15-bde6-ab7c1f4df99d + f7d0d26a-19a2-4a5a-ac2d-aba36b7b895b true - Indicates whether the read-optimized form should be enabled for this organization. + Specifies the default value for number of occurrences field in the recurrence dialog. 1033 + + 29850c73-bd07-4175-8c1e-f496be29f466 + + true + Angiver standardværdien for feltet med antal forekomster i gentagelsesdialogboksen. + 1030 + - 849b09c0-9a2c-4a15-bde6-ab7c1f4df99d + f7d0d26a-19a2-4a5a-ac2d-aba36b7b895b true - Indicates whether the read-optimized form should be enabled for this organization. + Specifies the default value for number of occurrences field in the recurrence dialog. 1033 - 54be9a92-5241-4fc2-85b6-88ed161afc9f + f8eaff05-4dc1-45a4-b429-5c5039a8e09b true - Use Read-Optimized Form + Recurrence Default Number of Occurrences 1033 + + 5bfea2e6-2256-4d0c-b811-97186f8c84ad + + true + Standardtal for antal forekomster i en gentagelse + 1030 + - 54be9a92-5241-4fc2-85b6-88ed161afc9f + f8eaff05-4dc1-45a4-b429-5c5039a8e09b true - Use Read-Optimized Form + Recurrence Default Number of Occurrences 1033 @@ -201194,13 +214040,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -201238,149 +214084,33 @@ true true - usereadform + recurrencedefaultnumberofoccurrences 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - UseReadForm + RecurrenceDefaultNumberOfOccurrences - BooleanType + IntegerType 5.0.0.0 false 0 - false - - bc7f5214-9e70-4c7f-b671-c2190cbf88f3 - - - - - 99416573-2db6-4d02-8d4d-2cf0069e272e - - true - Information that specifies whether the read-optimized form is enabled. - 1033 - - - - 99416573-2db6-4d02-8d4d-2cf0069e272e - - true - Information that specifies whether the read-optimized form is enabled. - 1033 - - - - - - c556fab1-e270-4328-961b-4349e6267d14 - - true - Use Read-Optimized Form - 1033 - - - - c556fab1-e270-4328-961b-4349e6267d14 - - true - Use Read-Optimized Form - 1033 - - - - false - - false - iscustomizable - false - - false - true - organization_usereadform - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 67a22339-c1f0-41b8-895f-744160df9b12 - - true - No - 1033 - - - - 67a22339-c1f0-41b8-895f-744160df9b12 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - fa44ec7d-c324-43e6-a7af-918de3a5e91a - - true - Yes - 1033 - - - - fa44ec7d-c324-43e6-a7af-918de3a5e91a - - true - Yes - 1033 - - - - 1 - - - + None + 999 + 1 0 - - 3a3a1560-2987-47b6-a14c-02325231a11f + + cee58143-dd1f-4571-bedd-bc4bf1c16d44 - Uniqueidentifier + Integer false false false @@ -201389,42 +214119,56 @@ canmodifyadditionalsettings false - 3 + 6 1900-01-01T00:00:00 - c5d6a218-2341-db11-898a-0007e9e17ebd + f7d0d26a-19a2-4a5a-ac2d-aba36b7b894b true - Unique identifier of the default group of users in the organization. + Specifies the interval (in seconds) for pausing expansion job. 1033 + + 67363b4e-b617-4fb2-90fc-79d3dfe2af4b + + true + Angiver intervallet (i sekunder) for midlertidig afbrydelse af udvidelsesjob. + 1030 + - c5d6a218-2341-db11-898a-0007e9e17ebd + f7d0d26a-19a2-4a5a-ac2d-aba36b7b894b true - Unique identifier of the default group of users in the organization. + Specifies the interval (in seconds) for pausing expansion job. 1033 - ddd9c198-da4e-4060-beaf-978c0d0c1e5f + f8eaff05-4dc1-45a4-b429-5c5039a8e09c true - User Group + Recurrence Expansion Job Batch Interval 1033 + + 56eb3c26-8f2a-4f12-875e-006da6d87cc7 + + true + Interval for gentagelse af udvidelsesjobbatch + 1030 + - ddd9c198-da4e-4060-beaf-978c0d0c1e5f + f8eaff05-4dc1-45a4-b429-5c5039a8e09c true - User Group + Recurrence Expansion Job Batch Interval 1033 @@ -201432,15 +214176,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -201478,28 +214222,33 @@ true true - usergroupid + recurrenceexpansionjobbatchinterval 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - UserGroupId + RecurrenceExpansionJobBatchInterval - UniqueidentifierType + IntegerType 5.0.0.0 false - + 0 + None + 2147483647 + 0 + + 0 - - 6b2c4cb4-a3fa-42f2-b887-aa37b2df465f + + cee59143-dd1f-4571-bedd-bc4bf1c16d44 - Boolean + Integer false false false @@ -201508,42 +214257,56 @@ canmodifyadditionalsettings false - 10196 - 2025-11-06T06:14:32.6300032 + 5 + 1900-01-01T00:00:00 - e9d60b0b-c855-4af1-8dae-d1c29e79a643 + f7d0d22a-19a2-4a5a-ac2d-aba36b7b895b true - Enable the user rating feature to show the NSAT score and comment to maker + Specifies the value for number of instances created in on demand job in one shot. 1033 + + 717aa2cd-05ce-4911-905a-86b9cdf8c5ea + + true + Angiver værdien for det antal forekomster, der blev oprettet i efter behov-job i én batch. + 1030 + - e9d60b0b-c855-4af1-8dae-d1c29e79a643 + f7d0d22a-19a2-4a5a-ac2d-aba36b7b895b true - Enable the user rating feature to show the NSAT score and comment to maker + Specifies the value for number of instances created in on demand job in one shot. 1033 - 49e192f6-7198-4bd3-81aa-f59c107c3e84 + f8eaff05-4dc1-45a4-b429-5c5039a8e09a true - Enable the user rating feature + Recurrence Expansion On Demand Job Batch Size 1033 + + 151f62b9-363f-400f-bf81-39043dd592aa + + true + Gentagelse af udvidelse af størrelsen på en efter anmodning-jobbatch + 1030 + - 49e192f6-7198-4bd3-81aa-f59c107c3e84 + f8eaff05-4dc1-45a4-b429-5c5039a8e09a true - Enable the user rating feature + Recurrence Expansion On Demand Job Batch Size 1033 @@ -201553,13 +214316,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -201588,235 +214351,42 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - userratingenabled - 2025-11-06T06:14:32.6300032 + recurrenceexpansionjobbatchsize + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - UserRatingEnabled + RecurrenceExpansionJobBatchSize - BooleanType + IntegerType - 9.1.0.0 + 5.0.0.0 false 0 - - false - - 315e90f0-678b-4e4d-97f1-886050c3cb46 - - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - 05aedb96-402f-4dff-86e7-54b577874b2f - - true - Information that specifies whether a feature is enabled for the organization. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - organization_featureenabled - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - af1983aa-9de4-4ac0-bc79-0db12fd0b8cc - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - f35414f9-6316-4617-82ea-dfb3602119e3 - - true - Yes - 1033 - - - - 1 - - - - + + None + 2147483647 + 0 + 0 - - 096acae6-a947-4743-97e5-162ccff76c75 - - userratingenabled - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10197 - 2025-11-06T06:14:32.6470016 - - - - - - - - - - organization - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - userratingenabledname - 2025-11-06T06:14:32.6470016 - - true - canmodifyrequirementlevelsettings - None - - userratingenabledName - - - VirtualType - - 9.1.0.0 - true - - - - - 4ffd0832-2b2b-42f1-ba4b-6ee7fa6044fc + + c1999065-002a-48c9-8415-9a2dfa737dd8 - Boolean + Integer false false false @@ -201825,42 +214395,56 @@ canmodifyadditionalsettings false - 225 + 170 1900-01-01T00:00:00 - 77a89d43-e6ff-4491-996f-06aeaf614f9b + 68bc1b36-a456-4fee-8845-c102a3f37ad5 true - Indicates default protocol selected for organization. + Specifies the maximum number of instances to be created synchronously after creating a recurring appointment. 1033 + + cfd80996-218a-49f9-b746-3d55d0053be8 + + true + Angiver det maksimale antal forekomster, der skal oprettes synkront efter oprettelsen af en gentaget aftale. + 1030 + - 77a89d43-e6ff-4491-996f-06aeaf614f9b + 68bc1b36-a456-4fee-8845-c102a3f37ad5 true - Indicates default protocol selected for organization. + Specifies the maximum number of instances to be created synchronously after creating a recurring appointment. 1033 - 7dc3a1ed-9025-40f7-b126-7df8ad2c82bb + 9f5139df-86d4-47a7-9450-e33ceb4ba3b9 true - User Skype Protocol + Recurrence Expansion Synchronization Create Maximum 1033 + + 1f64d693-8ef6-4746-b65a-77a09324a1d1 + + true + Maksimum for oprettelse af en gentagelse af udvidet synkronisering + 1030 + - 7dc3a1ed-9025-40f7-b126-7df8ad2c82bb + 9f5139df-86d4-47a7-9450-e33ceb4ba3b9 true - User Skype Protocol + Recurrence Expansion Synchronization Create Maximum 1033 @@ -201870,13 +214454,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -201914,149 +214498,33 @@ true true - useskypeprotocol + recurrenceexpansionsynchcreatemax 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - UseSkypeProtocol + RecurrenceExpansionSynchCreateMax - BooleanType + IntegerType 5.0.0.0 false 0 - true - - 6a3a4153-d13e-4992-bd1c-6ec7e0d196a5 - - - - - c67bb09f-3e2c-4656-8ca4-ce69134780da - - true - Indicates default protocol selected for organization. - 1033 - - - - c67bb09f-3e2c-4656-8ca4-ce69134780da - - true - Indicates default protocol selected for organization. - 1033 - - - - - - 9c354445-17d0-433a-9e41-ee567f635fb9 - - true - Use Skype Protocol - 1033 - - - - 9c354445-17d0-433a-9e41-ee567f635fb9 - - true - Use Skype Protocol - 1033 - - - - false - - false - iscustomizable - false - - false - true - organization_useskypeprotocol - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 64e64f13-aea9-43c7-a05c-2c9983b86519 - - true - No - 1033 - - - - 64e64f13-aea9-43c7-a05c-2c9983b86519 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - ecd2e34b-ad12-4bcf-8a74-6e3fb02678f6 - - true - Yes - 1033 - - - - ecd2e34b-ad12-4bcf-8a74-6e3fb02678f6 - - true - Yes - 1033 - - - - 1 - - - + None + 1000 + 1 0 - - b4026498-4f7c-4a90-9820-ffc7985ab91a + + 6f6f5074-8cad-46f4-ad27-36498415d85f - Integer + String false false false @@ -202065,42 +214533,56 @@ canmodifyadditionalsettings false - 103 + 125 1900-01-01T00:00:00 - + 5.0.0.0 - 9b9fc12a-44e2-4937-9718-3812084a05e0 + 0f53c2fa-2241-db11-898a-0007e9e17ebd true - Time zone code that was in use when the record was created. + XML string that defines the navigation structure for the application. This is the site map from the previously upgraded build and is used in a 3-way merge during upgrade. 1033 + + 27c94242-da19-44c9-b7ff-ece77dddfcb0 + + true + XML-streng, der definerer programmets navigationsstruktur. Dette er webstedsoversigten for den tidligere opgraderede version og anvendes i en 3-vejs fletning under opgradering. + 1030 + - 9b9fc12a-44e2-4937-9718-3812084a05e0 + 0f53c2fa-2241-db11-898a-0007e9e17ebd true - Time zone code that was in use when the record was created. + XML string that defines the navigation structure for the application. This is the site map from the previously upgraded build and is used in a 3-way merge during upgrade. 1033 - 228883d9-0492-4292-9d66-691a4a8e4c3d + d1109bb7-feb2-4eb3-8a24-40236c3b40d3 true - UTC Conversion Time Zone Code + Reference SiteMap XML 1033 + + 813b4c84-4cad-4286-bdd5-cf05a3fdb3f2 + + true + Reference til webstedsoversigt i XML-format + 1030 + - 228883d9-0492-4292-9d66-691a4a8e4c3d + d1109bb7-feb2-4eb3-8a24-40236c3b40d3 true - UTC Conversion Time Zone Code + Reference SiteMap XML 1033 @@ -202108,9 +214590,9 @@ - false + true canmodifyauditsettings - false + true false @@ -202152,35 +214634,41 @@ false true true - true + false - utcconversiontimezonecode + referencesitemapxml 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - UTCConversionTimeZoneCode + ReferenceSiteMapXml - IntegerType + StringType 5.0.0.0 false 0 - None - 2147483647 - -1 + Text + Auto + 1073741823 + + + Text + + false 0 + -1 - - e3dcdf60-f69d-4fb7-9fc6-87e5c46c6cb9 + + b7bf339e-9f6c-49f9-b610-2a3d566e76bf - String + Integer false false false @@ -202189,42 +214677,56 @@ canmodifyadditionalsettings false - 107 - 1900-01-01T00:00:00 + 10229 + 2025-11-06T06:14:33.0370048 - d5c62022-0489-4c02-a083-e661bc4dd80b + cace9d97-a047-4e32-aeb6-f70cbde32e98 true - Hash of the V3 callout configuration file. + Current orgnization release cadence value 1033 + + 5f94a891-ae3e-4240-accd-f9bfe2a74505 + + true + Aktuel kadenceværdi for organisationsudgivelse + 1030 + - d5c62022-0489-4c02-a083-e661bc4dd80b + cace9d97-a047-4e32-aeb6-f70cbde32e98 true - Hash of the V3 callout configuration file. + Current orgnization release cadence value 1033 - 04f6dd45-0065-43ed-9047-6f305bef96aa + ff9684d2-d181-49ed-9e24-3a5584827dcd true - V3 Callout Hash + Current orgnization release cadence value 1033 + + 41d4f3fe-0984-444f-bfaa-a6a4566b9d09 + + true + Aktuel kadenceværdi for organisationsudgivelse + 1030 + - 04f6dd45-0065-43ed-9047-6f305bef96aa + ff9684d2-d181-49ed-9e24-3a5584827dcd true - V3 Callout Hash + Current orgnization release cadence value 1033 @@ -202234,13 +214736,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -202269,45 +214771,39 @@ false canmodifysearchsettings - false + true false - false - false + true + true true - false + true true - v3calloutconfighash - 1900-01-01T00:00:00 + releasecadence + 2025-11-06T06:14:33.0370048 false canmodifyrequirementlevelsettings - None + SystemRequired - V3CalloutConfigHash + ReleaseCadence - StringType + IntegerType - 5.0.0.0 + 9.2.0.0 false 0 - - Text - Auto - 256 - - - Text - - - false + + None + 100 + 0 + 0 - 512 - 60abb573-669c-4815-b429-518ecce8ad0e + 9c280c8d-dd2a-4661-bfee-11b163a90de7 Picklist @@ -202319,42 +214815,56 @@ canmodifyadditionalsettings false - 10220 - 2025-11-06T06:14:32.9270016 + 10230 + 2025-11-06T06:14:33.0499968 - cd7dd082-f11d-43b7-9db8-4028a15975c4 + 8e8122e4-91d0-4788-8eb2-8eb75ad28fa0 true - Validation mode for apps in this environment + Model app refresh channel 1033 + + 00dea64c-b64d-436a-9042-5722a294870c + + true + Opdateringskanal for modelapp + 1030 + - cd7dd082-f11d-43b7-9db8-4028a15975c4 + 8e8122e4-91d0-4788-8eb2-8eb75ad28fa0 true - Validation mode for apps in this environment + Model app refresh channel 1033 - de48d922-eb30-4310-bfb5-98af1e075fd4 + 1f8e665a-5fb1-48a0-b9ce-a148cf30eb7a true - Validation mode for apps in this environment + Model app refresh channel 1033 + + 66dc2f10-f8e6-4f1e-b9c2-ffece4ac7c1e + + true + Opdateringskanal for modelapp + 1030 + - de48d922-eb30-4310-bfb5-98af1e075fd4 + 1f8e665a-5fb1-48a0-b9ce-a148cf30eb7a true - Validation mode for apps in this environment + Model app refresh channel 1033 @@ -202375,7 +214885,7 @@ false false - true + false canmodifyglobalfiltersettings false @@ -202392,14 +214902,14 @@ false false - true + false canmodifyissortablesettings false false canmodifysearchsettings - true + false true true @@ -202408,14 +214918,14 @@ true true - validationmode - 2025-11-06T06:14:32.9270016 + releasechannel + 2026-05-21T19:27:17.3830016 false canmodifyrequirementlevelsettings - SystemRequired + None - ValidationMode + ReleaseChannel PicklistType @@ -202423,44 +214933,58 @@ 9.1.0.0 false 0 - - + + 0 - d7f626db-d7ba-f011-bbd3-7c1e52365f30 + daf626db-d7ba-f011-bbd3-7c1e52365f30 - d9f626db-d7ba-f011-bbd3-7c1e52365f30 + dcf626db-d7ba-f011-bbd3-7c1e52365f30 true - Validation mode for apps in this environment + Model app refresh channel 1033 + + c30767f4-e56e-4304-8ecd-dd7de3dfd27d + + true + Opdateringskanal for modelapp + 1030 + - d9f626db-d7ba-f011-bbd3-7c1e52365f30 + dcf626db-d7ba-f011-bbd3-7c1e52365f30 true - Validation mode for apps in this environment + Model app refresh channel 1033 - d8f626db-d7ba-f011-bbd3-7c1e52365f30 + dbf626db-d7ba-f011-bbd3-7c1e52365f30 true - Validation mode for apps in this environment + Model app refresh channel 1033 + + 7b5df062-bf75-465e-859f-7ad00e591670 + + true + Opdateringskanal for modelapp + 1030 + - d8f626db-d7ba-f011-bbd3-7c1e52365f30 + dbf626db-d7ba-f011-bbd3-7c1e52365f30 true - Validation mode for apps in this environment + Model app refresh channel 1033 @@ -202473,7 +214997,7 @@ false true - organization_validationmode + organization_releasechannel Picklist 9.1.0.0 @@ -202491,18 +215015,25 @@ - eba99a4e-bb50-42e7-9629-97d7b1dc9f7a + eae26a56-8f0b-4878-b641-18a753fd7927 true - Off + Auto 1033 + + f3c3828e-763a-4093-92c7-a51c9fb63a5f + + true + Automatisk + 1030 + - eba99a4e-bb50-42e7-9629-97d7b1dc9f7a + eae26a56-8f0b-4878-b641-18a753fd7927 true - Off + Auto 1033 @@ -202524,18 +215055,25 @@ - b253a3e0-07d1-4081-b1f5-79c6a8b75025 + 27ee6c40-29ad-4ea0-9a5c-f57a1814479a true - Warn + Monthly channel 1033 + + b0b94561-bcd9-49df-8986-be3ff9a8dd1b + + true + Månedlig kanal + 1030 + - b253a3e0-07d1-4081-b1f5-79c6a8b75025 + 27ee6c40-29ad-4ea0-9a5c-f57a1814479a true - Warn + Monthly channel 1033 @@ -202557,18 +215095,25 @@ - ea01c0e2-b2be-4846-9294-cc8a946cfc56 + c53c4a71-e6c3-4fa1-b499-e744d2be36b0 true - Block + Microsoft Inner channel 1033 + + 4c78cf2c-6a2f-4e60-b23a-c9340b68439c + + true + Microsoft Indre kanal + 1030 + - ea01c0e2-b2be-4846-9294-cc8a946cfc56 + c53c4a71-e6c3-4fa1-b499-e744d2be36b0 true - Block + Microsoft Inner channel 1033 @@ -202576,6 +215121,46 @@ 2 + + + + + + + + + + false + true + + + + 8ccebc7f-c29c-4581-aa10-c01f9c73ffa9 + + true + Semi-annual channel + 1033 + + + c28f766a-51ae-4f86-a981-e877349a4fcb + + true + Halvårlige kanal + 1030 + + + + 8ccebc7f-c29c-4581-aa10-c01f9c73ffa9 + + true + Semi-annual channel + 1033 + + + + 3 + + @@ -202586,9 +215171,9 @@ - fb98cdeb-6ebd-4124-87c1-79cdae6a1d91 + c64fa8e7-07e7-4097-b6b5-14cf4302b2cd - validationmode + releasechannel Virtual false false @@ -202598,8 +215183,8 @@ canmodifyadditionalsettings true - 10221 - 2025-11-06T06:14:32.9430016 + 10231 + 2025-11-06T06:14:33.0669952 @@ -202659,14 +215244,14 @@ false false - validationmodename - 2025-11-06T06:14:32.9430016 + releasechannelname + 2025-11-06T06:14:33.0669952 true canmodifyrequirementlevelsettings None - validationmodeName + releasechannelName VirtualType @@ -202676,11 +215261,11 @@ - - 589a220e-c616-4dc1-8431-261e9274dc15 + + c6d5e5eb-10f6-456b-9950-7ee33e119c80 - BigInt + String false false false @@ -202689,163 +215274,56 @@ canmodifyadditionalsettings false - 74 - 1900-01-01T00:00:00 + 10181 + 2025-11-06T06:14:32.3629952 - 61be6675-e377-48f8-a3dc-2ff26be76264 + 33ee5310-c986-40d8-8762-35126792eab0 true - Version number of the organization. + Release Wave Applied to Environment. 1033 - - - 61be6675-e377-48f8-a3dc-2ff26be76264 - - true - Version number of the organization. - 1033 - - - - - 84606232-9e67-4251-87fe-7b04f333c19a + db9a900f-6265-4c75-ac82-c4342a325171 true - Version Number - 1033 + Udgivelsesbølge, der er anvendt til miljø. + 1030 - 84606232-9e67-4251-87fe-7b04f333c19a + 33ee5310-c986-40d8-8762-35126792eab0 true - Version Number + Release Wave Applied to Environment. 1033 - - organization - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - versionnumber - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - VersionNumber - - - BigIntType - - 5.0.0.0 - false - - - 9223372036854775807 - -9223372036854775808 - - - 9542583f-f6d5-4331-af97-bad061164c5b - - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 299 - 1900-01-01T00:00:00 - - + + - b885a3b6-9d6f-49b7-854a-7b1213b7c426 + aab857ec-3019-4493-a833-81e2ea2800da true - Hash value of web resources. + Release Wave 1033 - - - b885a3b6-9d6f-49b7-854a-7b1213b7c426 - - true - Hash value of web resources. - 1033 - - - - - 6ecd492d-f966-4554-8a73-0d00c434d2b0 + a9a5ed05-3247-4803-9e99-b75acc13f880 true - Web resource hash - 1033 + Udgivelsesbølge + 1030 - 6ecd492d-f966-4554-8a73-0d00c434d2b0 + aab857ec-3019-4493-a833-81e2ea2800da true - Web resource hash + Release Wave 1033 @@ -202853,15 +215331,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -202899,39 +215377,39 @@ true true - webresourcehash - 1900-01-01T00:00:00 + releasewavename + 2025-11-06T06:14:32.3629952 false canmodifyrequirementlevelsettings - SystemRequired + None - WebResourceHash + ReleaseWaveName StringType - 7.1.0.0 + 9.1.0.0 false 0 - + Text Auto - 100 + 200 Text - + false 0 - 1024 + 200 - - 0b7584ef-6dac-48ba-86df-c240b003ad24 + + 6880322f-7754-4d45-8f8c-40f8bcbcf243 - Picklist + Boolean false false false @@ -202940,42 +215418,56 @@ canmodifyadditionalsettings false - 12 - 1900-01-01T00:00:00 + 10178 + 2025-11-06T06:14:32.3330048 - 5625e7d6-2241-db11-898a-0007e9e17ebd + 5b4e211d-87fa-4894-829a-922b1cc14394 true - Designated first day of the week throughout Microsoft Dynamics 365. + Indicates whether relevance search was enabled for the environment as part of Dataverse's relevance search on-by-default sweep 1033 + + 6d472f02-b42d-4a9f-965e-838009d559b5 + + true + Angiver, om relevanssøgning blev aktiveret for miljøet som en del af Dataverse-relevanssøgning ved standardoprydning + 1030 + - 5625e7d6-2241-db11-898a-0007e9e17ebd + 5b4e211d-87fa-4894-829a-922b1cc14394 true - Designated first day of the week throughout Microsoft Dynamics 365. + Indicates whether relevance search was enabled for the environment as part of Dataverse's relevance search on-by-default sweep 1033 - 0e2ef030-893d-44c4-a7a3-c446df150d4a + 9dd5b598-5e55-4bde-9bd7-26f76d5527fa true - Week Start Day Code + Relevance search enabled automatically by Dataverse 1033 + + 20f1a5c9-aa6c-466b-b3de-5551893d7479 + + true + Relevanssøgning er aktiveret automatisk af Dataverse + 1030 + - 0e2ef030-893d-44c4-a7a3-c446df150d4a + 9dd5b598-5e55-4bde-9bd7-26f76d5527fa true - Week Start Day Code + Relevance search enabled automatically by Dataverse 1033 @@ -202985,13 +215477,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -203020,50 +215512,57 @@ false canmodifysearchsettings - false + true true - false - false + true + true true true true - weekstartdaycode - 1900-01-01T00:00:00 + relevancesearchenabledbyplatform + 2025-11-06T06:14:32.3330048 false canmodifyrequirementlevelsettings SystemRequired - WeekStartDayCode + RelevanceSearchEnabledByPlatform - PicklistType + BooleanType - 5.0.0.0 + 9.1.0.0 false 0 - - -1 + + false - 3ab6286b-c0b6-4eda-975f-ded14eada82d + 315e90f0-678b-4e4d-97f1-886050c3cb46 - 69839341-58d5-4c44-8792-a5e3469c91f4 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Designated first day of the week throughout Microsoft CRM. + Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + - 69839341-58d5-4c44-8792-a5e3469c91f4 + 05aedb96-402f-4dff-86e7-54b577874b2f true - Designated first day of the week throughout Microsoft CRM. + Information that specifies whether a feature is enabled for the organization. 1033 @@ -203076,74 +215575,149 @@ false iscustomizable - true + false - false + true true - organization_weekstartdaycode - Picklist - 5.0.0.0 - - - - - - 0 - - - - - 4a7f155b-e07d-4aa4-ab0a-adee17540ee6 - - weekstartdaycode - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 50 - 1900-01-01T00:00:00 - - - - - - - - - - organization - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + f93f4170-c5c4-47b4-affc-7636c2de93c6 + + relevancesearchenabledbyplatform + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10179 + 2025-11-06T06:14:32.3330048 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -203155,7 +215729,7 @@ false - false + true canmodifysearchsettings false @@ -203166,28 +215740,28 @@ false false - weekstartdaycodename - 1900-01-01T00:00:00 + relevancesearchenabledbyplatformname + 2025-11-06T06:14:32.3330048 - false + true canmodifyrequirementlevelsettings None - WeekStartDayCodeName + relevancesearchenabledbyplatformName VirtualType - 5.0.0.0 + 9.1.0.0 true - + - - 5fc03eea-1354-433b-8e8b-2ccd5adcd113 + + a0759ef8-7c03-419d-b408-7561cc562ec8 - String + DateTime false false false @@ -203196,42 +215770,56 @@ canmodifyadditionalsettings false - 396 - 1900-01-01T00:00:00 + 10180 + 2025-11-06T06:14:32.3500032 - 01250433-e596-4726-a373-d9fcae4e4c79 + e3f6b620-cb98-430e-952a-41b5e679ab5d true - For Internal use only. + This setting contains the last modified date for relevance search setting that appears as a toggle in PPAC. 1033 + + 6c8576d4-dfa5-4fbe-a260-20b00f3049a3 + + true + Denne indstilling indeholder den seneste ændringsdato for relevanssøgningsindstillingen, der vises som en omskifterknap i PPAC. + 1030 + - 01250433-e596-4726-a373-d9fcae4e4c79 + e3f6b620-cb98-430e-952a-41b5e679ab5d true - For Internal use only. + This setting contains the last modified date for relevance search setting that appears as a toggle in PPAC. 1033 - d5457d57-f59a-4340-842c-5ef2d9f5853c + 0d99c738-3487-45e5-948e-807de71bd445 true - For Internal use only. + RelevanceSearchModifiedOnDate 1033 + + 6b65beaa-7331-4950-a264-09e27f6a1dd1 + + true + RelevanceSearchModifiedOnDate + 1030 + - d5457d57-f59a-4340-842c-5ef2d9f5853c + 0d99c738-3487-45e5-948e-807de71bd445 true - For Internal use only. + RelevanceSearchModifiedOnDate 1033 @@ -203285,39 +215873,40 @@ true true - widgetproperties - 1900-01-01T00:00:00 + relevancesearchmodifiedon + 2025-11-06T06:14:32.3500032 false canmodifyrequirementlevelsettings None - WidgetProperties + RelevanceSearchModifiedOn - StringType + DateTimeType - 8.2.0.0 + 9.1.0.0 false 0 - - Text - Disabled - 100 - - - Text - - - false + + DateAndTime + Inactive + 0 - 500 + + true + canmodifybehavior + true + + + UserLocal + - - 36ad21ef-023a-4603-b216-df315dfcb313 + + b9ce078b-737f-4c2f-bc8f-83ee5933b738 - Integer + Boolean false false false @@ -203326,42 +215915,56 @@ canmodifyadditionalsettings false - 232 + 141 1900-01-01T00:00:00 - ebc1a46f-f063-488c-a526-6f44214107be + b691aa12-2341-db11-898a-0007e9e17ebd true - Denotes the Yammer group ID + Flag to render the body of email in the Web form in an IFRAME with the security='restricted' attribute set. This is additional security but can cause a credentials prompt. 1033 + + 6b5b9fa4-12e9-4f13-80c2-e849f71fdbf2 + + true + Flag til gengivelse af brødteksten i en e-mail i webformularen i en IFRAME med attributten security='restricted' angivet. Dette er en yderligere sikkerhed, men kan medføre en meddelelse om angivelse af legitimationsoplysninger. + 1030 + - ebc1a46f-f063-488c-a526-6f44214107be + b691aa12-2341-db11-898a-0007e9e17ebd true - Denotes the Yammer group ID + Flag to render the body of email in the Web form in an IFRAME with the security='restricted' attribute set. This is additional security but can cause a credentials prompt. 1033 - a19c49cb-aa1c-42a7-9d27-faa38a87277d + 39bb61ad-3c4f-4de4-9f30-870670b36a1b true - Yammer Group Id + Render Secure Frame For Email 1033 + + 03794e1b-1194-4338-95c8-638ac7369d12 + + true + Gengiv sikker ramme til e-mail + 1030 + - a19c49cb-aa1c-42a7-9d27-faa38a87277d + 39bb61ad-3c4f-4de4-9f30-870670b36a1b true - Yammer Group Id + Render Secure Frame For Email 1033 @@ -203377,7 +215980,7 @@ false iscustomizable - false + true false false @@ -203408,37 +216011,293 @@ canmodifysearchsettings false - false + true false false true true true - yammergroupid + rendersecureiframeforemail 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - YammerGroupId + RenderSecureIFrameForEmail - IntegerType + BooleanType 5.0.0.0 false 0 - None - 2147483647 - 0 + false + + 14c50dc8-c7c8-4bea-a632-4d7d1888ca1f + + + + + 0f0e63bc-4a84-4b18-b546-41cf93f74b48 + + true + Flag to render the body of email in the Web form in an IFRAME with the security='restricted' attribute set. This is additional security but can cause a credentials prompt. + 1033 + + + 776d50fc-c74c-4a7d-94cc-e75ab4cb49a7 + + true + Flag til gengivelse af brødteksten i en e-mail i webformularen i en IFRAME med attributten security='restricted' angivet. Dette er en yderligere sikkerhed, men kan medføre en meddelelse om angivelse af legitimationsoplysninger. + 1030 + + + + 0f0e63bc-4a84-4b18-b546-41cf93f74b48 + + true + Flag to render the body of email in the Web form in an IFRAME with the security='restricted' attribute set. This is additional security but can cause a credentials prompt. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_rendersecureiframeforemail + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 6158aec5-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + 42393223-f6fc-42d9-8bee-1ae2766862f9 + + true + Nej + 1030 + + + + 6158aec5-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 6358aec5-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + c9da1c53-72e7-4370-924e-f322ca3e6c24 + + true + Ja + 1030 + + + + 6358aec5-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + 0 + + 669f065d-836f-4c3e-8246-2186f6e1cbe9 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + false + + 62 + 1900-01-01T00:00:00 + + + + + 9d53c2fa-2241-db11-898a-0007e9e17ebd + + true + For internal use only. + 1033 + + + a19582f4-8964-47f2-8356-3607c4b58fe8 + + true + Kun til intern brug. + 1030 + + + + 9d53c2fa-2241-db11-898a-0007e9e17ebd + + true + For internal use only. + 1033 + + + + + + 1a89781c-d757-45a0-82fb-81a04d84a3e8 + + true + Reporting Group + 1033 + + + 6672c3a7-7eb3-4c8a-8ce9-6c1b638eb799 + + true + Rapportgruppe + 1030 + + + + 1a89781c-d757-45a0-82fb-81a04d84a3e8 + + true + Reporting Group + 1033 + + + organization + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + reportinggroupid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ReportingGroupId + + + UniqueidentifierType + + 5.0.0.0 + false + + + - 661ea249-0f36-4cc6-8091-fdd56b07903c + 63bd2fcb-0df8-4941-a8c4-731cbecbeed7 String @@ -203450,42 +216309,56 @@ canmodifyadditionalsettings false - 233 + 86 1900-01-01T00:00:00 - e8df9942-af99-4acd-9967-c24cf6684903 + 59d8dee2-2241-db11-898a-0007e9e17ebd true - Denotes the Yammer network permalink + For internal use only. 1033 + + fbc602c7-7ba4-46b6-98aa-24ce28a21369 + + true + Kun til intern brug. + 1030 + - e8df9942-af99-4acd-9967-c24cf6684903 + 59d8dee2-2241-db11-898a-0007e9e17ebd true - Denotes the Yammer network permalink + For internal use only. 1033 - d3dac616-c97d-452c-8e0a-6c8b5c737bf8 + f04cc178-7487-446d-9ab2-bbd9cb1ff6ee true - Yammer Network Permalink + Reporting Group Name 1033 + + 352491ef-b75b-4b77-8bd0-6bed78494850 + + true + Navn på rapportgruppe + 1030 + - d3dac616-c97d-452c-8e0a-6c8b5c737bf8 + f04cc178-7487-446d-9ab2-bbd9cb1ff6ee true - Yammer Network Permalink + Reporting Group Name 1033 @@ -203493,15 +216366,15 @@ - true + false canmodifyauditsettings - true + false false false iscustomizable - false + true false false @@ -203532,21 +216405,21 @@ canmodifysearchsettings false - false + true false false true true true - yammernetworkpermalink + reportinggroupname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - YammerNetworkPermalink + ReportingGroupName StringType @@ -203557,7 +216430,7 @@ Text Auto - 100 + 256 Text @@ -203567,11 +216440,11 @@ 0 512 - - 5c15d8a1-0440-4c38-a625-e42c2931cb06 + + a79f7945-18c0-41f7-861b-1f0d60dbfa78 - Boolean + Picklist false false false @@ -203580,42 +216453,56 @@ canmodifyadditionalsettings false - 230 + 184 1900-01-01T00:00:00 - 71835989-d808-41d2-865b-f0aa18723c6d + 20abd7e5-b062-4ad4-a783-7d5041ebda63 true - Denotes whether the OAuth access token for Yammer network has expired + Picklist for selecting the organization preference for reporting scripting errors. 1033 + + c53e633d-412c-42d8-a82b-e931f85420c0 + + true + Valgliste for valg af organisationspræference til rapportering af scriptfejl. + 1030 + - 71835989-d808-41d2-865b-f0aa18723c6d + 20abd7e5-b062-4ad4-a783-7d5041ebda63 true - Denotes whether the OAuth access token for Yammer network has expired + Picklist for selecting the organization preference for reporting scripting errors. 1033 - 60b4e53c-e93b-44bb-b692-5ca988620188 + 422c9a9d-c4c4-4f45-bc31-6a698c4bc454 true - Yammer OAuth Access Token Expired + Report Script Errors 1033 + + 00c7cf83-f6bd-427c-84a5-234122aea95a + + true + Rapportér scriptfejl + 1030 + - 60b4e53c-e93b-44bb-b692-5ca988620188 + 422c9a9d-c4c4-4f45-bc31-6a698c4bc454 true - Yammer OAuth Access Token Expired + Report Script Errors 1033 @@ -203628,6 +216515,332 @@ true false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + reportscripterrors + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + ReportScriptErrors + + + PicklistType + + 5.0.0.0 + false + 0 + + -1 + + 7ea0803a-8823-4158-ba1f-711a3edaaa60 + + + + + 6f614e8d-098a-4b46-b00e-2ca14a521e6f + + true + Picklist for selecting the user preference for reporting scripting errors. + 1033 + + + a85932da-88d1-4844-bef1-ac2898245e3e + + true + Valgliste for valg af brugerpræference til rapportering af scriptfejl. + 1030 + + + + 6f614e8d-098a-4b46-b00e-2ca14a521e6f + + true + Picklist for selecting the user preference for reporting scripting errors. + 1033 + + + + + + be58fad4-c68b-4827-abaa-05c9517457f1 + + true + Report Script Errors + 1033 + + + 9540c0eb-f9bd-4cda-b56d-3416403391c6 + + true + Rapportér scriptfejl + 1030 + + + + be58fad4-c68b-4827-abaa-05c9517457f1 + + true + Report Script Errors + 1033 + + + + false + + false + iscustomizable + true + + false + true + organization_reportscripterrors + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + e84c1852-56df-42ef-b587-923d7c3d1961 + + true + No preference for sending an error report to Microsoft about Microsoft Dynamics 365 + 1033 + + + c7fed4f6-f6f8-4947-a9df-bf6dbb346da0 + + true + Ingen præference for afsendelse af en fejlrapport til Microsoft om Microsoft Dynamics 365 + 1030 + + + + e84c1852-56df-42ef-b587-923d7c3d1961 + + true + No preference for sending an error report to Microsoft about Microsoft Dynamics 365 + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + fe246b00-fcde-4cbe-a763-8bd6c75037d3 + + true + Ask me for permission to send an error report to Microsoft + 1033 + + + 25178cb0-f062-4fbf-8f6f-818cc83cb993 + + true + Spørg mig om tilladelse til at sende en fejlrapport til Microsoft + 1030 + + + + fe246b00-fcde-4cbe-a763-8bd6c75037d3 + + true + Ask me for permission to send an error report to Microsoft + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + a351157d-c9fd-4808-8e72-847e77d911b9 + + true + Automatically send an error report to Microsoft without asking me for permission + 1033 + + + d32318dd-2e28-4851-b504-0cfb7e06b791 + + true + Send automatisk en fejlrapport til Microsoft uden at bede mig om tilladelse + 1030 + + + + a351157d-c9fd-4808-8e72-847e77d911b9 + + true + Automatically send an error report to Microsoft without asking me for permission + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 487869a1-5d60-4533-a845-63c21e032d9d + + true + Never send an error report to Microsoft about Microsoft Dynamics 365 + 1033 + + + 5d6d1006-6a9e-4e3f-8b63-16fd9424b096 + + true + Send aldrig en fejlrapport til Microsoft om Microsoft Dynamics 365 + 1030 + + + + 487869a1-5d60-4533-a845-63c21e032d9d + + true + Never send an error report to Microsoft about Microsoft Dynamics 365 + 1033 + + + + 3 + + + + + + + + 0 + + + + + c5f8a9b0-6bb5-4fe6-a442-5b4c3bf8dcd0 + + reportscripterrors + Virtual + false + false + false + + false + canmodifyadditionalsettings + false + + 185 + 1900-01-01T00:00:00 + + + + + + + + + + organization + + + + false + canmodifyauditsettings + false + + false false iscustomizable @@ -203666,17 +216879,150 @@ false false true + false + false + + reportscripterrorsname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ReportScriptErrorsName + + + VirtualType + + 5.0.0.0 + true + + + + + 1dcfea31-9af4-43dc-b90e-d83f5a0d3c64 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 187 + 1900-01-01T00:00:00 + + + + + 1441b506-2343-db11-898c-0007e9e17ebd + + true + Indicates whether Send As Other User privilege is enabled. + 1033 + + + df2433c0-bb12-450e-9708-4ff41175e302 + + true + Angiver, om rettigheden Send som en anden bruger er aktiveret. + 1030 + + + + 1441b506-2343-db11-898c-0007e9e17ebd + + true + Indicates whether Send As Other User privilege is enabled. + 1033 + + + + + + 77e6ce1a-38e1-44ce-8aa8-d4946f91d7d2 + + true + Is Approval For Queue Email Required + 1033 + + + 7b221576-daaf-4dba-8553-ad0b60d10bb2 + + true + Er godkendelse til køstilling af e-mails påkrævet? + 1030 + + + + 77e6ce1a-38e1-44ce-8aa8-d4946f91d7d2 + + true + Is Approval For Queue Email Required + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true true true - yammeroauthaccesstokenexpired + requireapprovalforqueueemail 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - YammerOAuthAccessTokenExpired + RequireApprovalForQueueEmail BooleanType @@ -203687,23 +217033,30 @@ false - 09aa7b5c-ccc9-4bc9-9b00-d420266976b1 + 386439f4-81fe-4673-938c-6049ea4ec4e2 - a9328b92-ec85-4ac6-b286-7509f8d55ac0 + 26f16772-6c1c-4586-8c83-c999b7df4a28 true - Is Yammer OAuth token expired + Indicates if send as other user privilege is enabled or not. 1033 + + 74caf7fa-f8e1-497f-a6fd-ab9aac6a5491 + + true + Angiver, om rettigheden til at sende som en anden bruger er aktiveret eller ej. + 1030 + - a9328b92-ec85-4ac6-b286-7509f8d55ac0 + 26f16772-6c1c-4586-8c83-c999b7df4a28 true - Is Yammer OAuth token expired + Indicates if send as other user privilege is enabled or not. 1033 @@ -203716,11 +217069,11 @@ false iscustomizable - false + true false true - organization_yammeroauthtokenexpired + organization_requireapprovalforqueueemail Boolean 5.0.0.0 @@ -203737,15 +217090,22 @@ - fad01451-407a-4c04-9313-e280699ffeab + 3b25b0cb-e780-db13-9b87-00137299e160 true No 1033 + + 751b740c-6101-42f2-8ab3-b97622c8dea8 + + true + Nej + 1030 + - fad01451-407a-4c04-9313-e280699ffeab + 3b25b0cb-e780-db13-9b87-00137299e160 true No @@ -203770,15 +217130,22 @@ - 64249bb7-46c0-429f-8e2e-b059855780d8 + 3d25b0cb-e780-db13-9b88-00137299e160 true Yes 1033 + + 09c13bf9-1012-4c97-83bb-7d4e2914392d + + true + Ja + 1030 + - 64249bb7-46c0-429f-8e2e-b059855780d8 + 3d25b0cb-e780-db13-9b88-00137299e160 true Yes @@ -203793,11 +217160,11 @@ 0 - - c2d88fe0-d809-4156-8f68-c756902e2c28 + + 1dcfea31-9af4-43db-b90e-d83f5a0d3c64 - Picklist + Boolean false false false @@ -203806,42 +217173,56 @@ canmodifyadditionalsettings false - 234 + 186 1900-01-01T00:00:00 - a94e632a-5d7c-42fb-bf7b-63d704d5a7db + 1441b506-2343-db11-898b-0007e9e17ebd true - Internal Use Only + Indicates whether Send As Other User privilege is enabled. 1033 + + 4f1fe1a3-7302-4064-bcdb-46f657e7cf93 + + true + Angiver, om rettigheden Send som en anden bruger er aktiveret. + 1030 + - a94e632a-5d7c-42fb-bf7b-63d704d5a7db + 1441b506-2343-db11-898b-0007e9e17ebd true - Internal Use Only + Indicates whether Send As Other User privilege is enabled. 1033 - 88c26dfa-0a75-42f0-a8f1-7b30f0467447 + e87c390d-aa6c-4a0a-af41-c938d704139b true - Internal Use Only + Is Approval For User Email Required 1033 + + 9356a2ae-2453-4e3a-ab97-cfe521592396 + + true + Er godkendelse til bruger-e-mails påkrævet? + 1030 + - 88c26dfa-0a75-42f0-a8f1-7b30f0467447 + e87c390d-aa6c-4a0a-af41-c938d704139b true - Internal Use Only + Is Approval For User Email Required 1033 @@ -203857,7 +217238,7 @@ false iscustomizable - false + true false false @@ -203888,48 +217269,55 @@ canmodifysearchsettings false - false + true false false true true true - yammerpostmethod + requireapprovalforuseremail 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - YammerPostMethod + RequireApprovalForUserEmail - PicklistType + BooleanType 5.0.0.0 false 0 - 0 + false - 8ed74c99-6978-4595-9ca5-6d4c410ed120 + 386439f4-81fe-4673-938b-6049ea4ec4e2 - 3c6d8ed2-2370-4bae-a5f0-200a9bbde424 + 26f16772-6c1c-4586-8c82-c999b7df4a28 true - Yammer Post Method + Indicates if send as other user privilege is enabled or not. 1033 + + 6f6af086-4584-47ab-a0ef-27fd3ce79bbe + + true + Angiver, om rettigheden til at sende som en anden bruger er aktiveret eller ej. + 1030 + - 3c6d8ed2-2370-4bae-a5f0-200a9bbde424 + 26f16772-6c1c-4586-8c82-c999b7df4a28 true - Yammer Post Method + Indicates if send as other user privilege is enabled or not. 1033 @@ -203942,94 +217330,102 @@ false iscustomizable - false + true false true - organization_yammerpostmethod - Picklist + organization_requireapprovalforuseremail + Boolean 5.0.0.0 - - - - - - - - - - - false - true - - - - 108fea4d-06ee-4a5e-bb55-bfaa2dc201b2 - - true - Public - 1033 - - - - 108fea4d-06ee-4a5e-bb55-bfaa2dc201b2 + + + + + + + + + + false + true + + + + 3b25b0cb-e780-db13-9b86-00137299e160 - true - Public - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 08895363-6593-412f-b7e7-2a2868eb0cc3 - - true - Private - 1033 - - - - 08895363-6593-412f-b7e7-2a2868eb0cc3 + true + No + 1033 + + + 632aa240-1e44-4ef2-9b03-c5f23a6d61f6 - true - Private - 1033 - - - - 1 - - - - + true + Nej + 1030 + + + + 3b25b0cb-e780-db13-9b86-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 3d25b0cb-e780-db13-9b86-00137299e160 + + true + Yes + 1033 + + + 3b869090-8789-4abc-aa18-e4236bf00c92 + + true + Ja + 1030 + + + + 3d25b0cb-e780-db13-9b86-00137299e160 + + true + Yes + 1033 + + + + 1 + + - 0 - - - - 9f654d6f-1438-41ba-a607-0ff0c7cd1bb5 + + bc6f5d67-d0e4-45b3-8260-9c949032051d - Integer + Boolean false false false @@ -204038,42 +217434,56 @@ canmodifyadditionalsettings false - 147 + 407 1900-01-01T00:00:00 - a5563d79-bd32-4b1a-932e-f9c692c9514e + d67eafde-e8bd-4b20-b658-764ea4f0338b true - Information that specifies how the first week of the year is specified in Microsoft Dynamics 365. + Apply same email address to all unresolved matches when you manually resolve it for one 1033 + + eaeb6a9a-ccfb-4d15-ba1f-66a2fe4d83c3 + + true + Anvend den samme e-mailadresse for ufortolkede matches, når du manuelt er fortolker den for én + 1030 + - a5563d79-bd32-4b1a-932e-f9c692c9514e + d67eafde-e8bd-4b20-b658-764ea4f0338b true - Information that specifies how the first week of the year is specified in Microsoft Dynamics 365. + Apply same email address to all unresolved matches when you manually resolve it for one 1033 - b42c289e-e35d-4a97-a655-994734e32cb0 + 3b65d7a1-ea33-46ab-8916-d1927de643a9 true - Year Start Week Code + Apply same email address to all unresolved matches when you manually resolve it for one 1033 + + 1839bd50-747d-40c7-a916-b610bb58f95b + + true + Anvend den samme e-mailadresse for ufortolkede matches, når du manuelt er fortolker den for én + 1030 + - b42c289e-e35d-4a97-a655-994734e32cb0 + 3b65d7a1-ea33-46ab-8916-d1927de643a9 true - Year Start Week Code + Apply same email address to all unresolved matches when you manually resolve it for one 1033 @@ -204127,12498 +217537,12629 @@ true true - yearstartweekcode + resolvesimilarunresolvedemailaddress 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - YearStartWeekCode + ResolveSimilarUnresolvedEmailAddress - IntegerType + BooleanType - 5.0.0.0 + 9.0.0.0 false 0 - None - 2147483647 - -2147483648 + false + + 6e9bd2b2-8644-4afb-abdc-f903762323ba + + + + + 4ff98614-9a96-4c5f-a02a-6b63b13a01eb + + true + Flag to resolve other unresolved email address if multiple match found + 1033 + + + c4703d43-e277-45cd-b8fc-43803ea62c46 + + true + Marker med flag for at fortolke andre ufortolkede mailadresser, hvis der blev fundet flere match + 1030 + + + + 4ff98614-9a96-4c5f-a02a-6b63b13a01eb + + true + Flag to resolve other unresolved email address if multiple match found + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_resolvesimilarunresolvedemailaddress + Boolean + 9.0.0.0 + + + + + + + + + + false + true + + + + e011e886-011e-4b9f-9f35-4b972634391d + + true + No + 1033 + + + d63023f2-0df2-4aae-a83d-ad422f1fcf44 + + true + Nej + 1030 + + + + e011e886-011e-4b9f-9f35-4b972634391d + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 81341ccf-eb1e-4b56-b258-f9622256b55e + + true + Yes + 1033 + + + 4ddb9018-1aab-4ac2-b937-3c36136d29fe + + true + Ja + 1030 + + + + 81341ccf-eb1e-4b56-b258-f9622256b55e + + true + Yes + 1033 + + + + 1 + + + 0 - - false - false - false - - false - canbeincustomentityassociation - false - - - false - canbeinmanytomany - false - - - false - canbeprimaryentityinrelationship - false - - - false - canberelatedentityinrelationship - false - - true - - true - canchangetrackingbeenabled - true - - - false - cancreateattributes - false - - - false - cancreatecharts - false - - - false - cancreateforms - true - - - false - cancreateviews - false - - - false - canenablesynctoexternalsearchindex - false - - - true - canmodifyadditionalsettings - true - - false - true - Local - 1900-01-01T00:00:00 - - - false - - - - fa0b19a7-2241-db11-898a-0007e9e17ebd - - true - Top level of the Microsoft Dynamics 365 business hierarchy. The organization can be a specific business, holding company, or corporation. - 1033 - - - - fa0b19a7-2241-db11-898a-0007e9e17ebd - - true - Top level of the Microsoft Dynamics 365 business hierarchy. The organization can be a specific business, holding company, or corporation. - 1033 - - - - - - fc0b19a7-2241-db11-898a-0007e9e17ebd - - true - Organizations - 1033 - - - - fc0b19a7-2241-db11-898a-0007e9e17ebd - - true - Organizations - 1033 - - - - - - fb0b19a7-2241-db11-898a-0007e9e17ebd - - true - Organization - 1033 - - - - fb0b19a7-2241-db11-898a-0007e9e17ebd - - true - Organization - 1033 - - - false - - false - false - false - false - - - - - false - false - false - false - - true - canmodifyauditsettings - false - - true - false - false - - false - canmodifyconnectionsettings - false - - false - - false - iscustomizable - true - - false - false - - false - canmodifyduplicatedetectionsettings - false - - false - false - false - false - false - false - false - - false - canmodifymailmergesettings - false - - true - - false - ismappable - false - - false - false - - true - canmodifymobileclientreadonly - false - - true - - false - isrenameable - false - - false - false - false - false - false - false - - false - canmodifyqueuesettings - false - - - false - canmodifymobilevisibility - false - - - true - canmodifymobileclientvisibility - false - - organization - - - - c491631e-cb92-4932-9cf0-cb3b55358c24 + + 0d6264cc-43f4-4e6f-88eb-6404328be27c - false - + + Boolean + false + false + false + false - iscustomizable - false - - true - false - lk_organizationbase_modifiedby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_organizationbase_modifiedby - modifiedby - organization - modifiedby - - 0 - - - 5c2c0222-101a-4f92-a53a-649d6328740a - - false + canmodifyadditionalsettings + true + + 10119 + 2025-11-06T03:38:23.8499968 + + + + + b4b6b8d2-76d7-4512-a622-9062d8682581 + + true + Information that specifies whether guest user restriction is enabled + 1033 + + + + b4b6b8d2-76d7-4512-a622-9062d8682581 + + true + Information that specifies whether guest user restriction is enabled + 1033 + + + + + + ca281fb3-1e94-4663-bc00-52c4193e4d1e + + true + Restrict guest users access to the organization + 1033 + + + + ca281fb3-1e94-4663-bc00-52c4193e4d1e + + true + Restrict guest users access to the organization + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable - false + true - true - true - basecurrency_organization - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - transactioncurrencyid - transactioncurrency - basecurrency_organization - basecurrencyid - organization - basecurrencyid - - 0 - - - 33b95648-e707-4de5-b0ff-c2fef8f7973d - - false - - false - iscustomizable + false + false + + true + canmodifyglobalfiltersettings false - + true - false - EmailServerProfile_Organization - None - 6.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - emailserverprofileid - emailserverprofile - EmailServerProfile_Organization - defaultemailserverprofileid - organization - defaultemailserverprofileid - - 0 - - - dcda8e64-c0fe-4d2d-8a8a-e32d365fa90d - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - Template_Organization - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - templateid - template - Template_Organization - acknowledgementtemplateid - organization - acknowledgementtemplateid - - 0 - - - 7ea73b74-d759-41e7-a60a-e12a4f6b9376 - - false - - false - iscustomizable + + false + false + false + false + + true + canmodifyissortablesettings false - - true - false - lk_organization_entityimage - None - 6.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - imagedescriptorid - imagedescriptor - lk_organization_entityimage - entityimageid - organization - entityimageid_imagedescriptor - - 0 - - - 4e0d0197-01f5-4eb1-be97-77057004e8cf - - false - + + false - iscustomizable + canmodifysearchsettings false - - true - false - DefaultMobileOfflineProfile_Organization - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + true + false + false + true + true + true + + restrictGuestUserAccess + 2025-12-14T02:08:38.68 + + false + canmodifyrequirementlevelsettings + SystemRequired + + RestrictGuestUserAccess + + + BooleanType + + 1.0.0.150 + false + 0 + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - mobileofflineprofileid - mobileofflineprofile - DefaultMobileOfflineProfile_Organization - defaultmobileofflineprofileid - organization - defaultmobileofflineprofileid - - 0 - - - 4ab194d7-092c-4e02-86a3-885b5e8cb8cb + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 047e20d5-99dd-4542-a03d-8e60419527cf - false + restrictGuestUserAccess + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10120 + 2025-11-06T03:38:23.8630016 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false - false + true iscustomizable - false + true - true - false - lk_organizationbase_createdby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_organizationbase_createdby - createdby - organization - createdby - - 0 - - - 7115a3ea-3815-460e-98a2-0d2b32f35306 + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + restrictguestuseraccessname + 2025-11-06T03:38:23.8630016 + + true + canmodifyrequirementlevelsettings + None + + restrictGuestUserAccessName + + + VirtualType + + 1.0.0.150 + true + + + + + f687b92b-eb0a-44c3-8afa-7d381123475b - false + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 253 + 1900-01-01T00:00:00 + + + + + 4170097e-f6be-4250-8fad-b2c8dc9a1bde + + true + Flag to restrict Update on incident. + 1033 + + + 10612771-f232-47ce-a65d-031a42b51621 + + true + Markér for at begrænse Opdater ved hændelse. + 1030 + + + + 4170097e-f6be-4250-8fad-b2c8dc9a1bde + + true + Flag to restrict Update on incident. + 1033 + + + + + + a0af8335-ab5b-46de-a8c3-2fe72086a18f + + true + Restrict Status Update + 1033 + + + b1c78aad-bdde-4a0e-b63d-607de07a6e79 + + true + Begræns statusopdatering + 1030 + + + + a0af8335-ab5b-46de-a8c3-2fe72086a18f + + true + Restrict Status Update + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - true - lk_organization_modifiedonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_organization_modifiedonbehalfby - modifiedonbehalfby - organization - modifiedonbehalfby - - 0 - - - 380f0eed-3451-45d0-a07f-236b6a674b11 - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - calendar_organization - Append - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - calendarid - calendar - calendar_organization - businessclosurecalendarid - organization - businessclosurecalendarid_calendar - - 1 - - - ac332ef3-44aa-4c14-91fe-6d082c6d86cf - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - true - lk_organization_createdonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + true + false + false + true + true + true + + restrictstatusupdate + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + RestrictStatusUpdate + + + BooleanType + + 6.1.0.0 + false + 0 + + false + + 9cf1fc83-5c2c-4a6c-aba2-63ed6599dbd0 + + + + + d7c210dd-9b2e-4f94-8344-07a59104ea85 + + true + Restrict Status Update + 1033 + + + f4c6d2e2-127a-4c6d-820f-e7a7b7ac8736 + + true + Begræns statusopdatering + 1030 + + + + d7c210dd-9b2e-4f94-8344-07a59104ea85 + + true + Restrict Status Update + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_organization_createdonbehalfby - createdonbehalfby - organization - createdonbehalfby - - 0 - - - 2025-11-06T09:12:35.9229952 - 1019 - - - 14129c00-bbda-4744-b696-92e4a960f341 + + + false + + false + iscustomizable + false + + false + true + organization_restrictstatusupdate + Boolean + 6.1.0.0 + + + + + + + + + + false + true + + + + d8bbbb14-0d7d-4f14-9a60-6e65a0e65ab8 + + true + No + 1033 + + + 747bd367-a781-4c49-b872-2b24ca2eda3d + + true + Nej + 1030 + + + + d8bbbb14-0d7d-4f14-9a60-6e65a0e65ab8 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + d4c3d48b-8aed-4241-bee2-5de72a6d8918 + + true + Yes + 1033 + + + 98c82eb3-3e16-443e-8d9a-a41b130e0f0b + + true + Ja + 1030 + + + + d4c3d48b-8aed-4241-bee2-5de72a6d8918 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + ea2e928e-526d-48c7-b14b-4c4928f8906c - false + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 10020 + 2025-11-06T01:17:44.6930048 + + + + + 984bf143-314f-431f-9fbd-5a59032578dc + + true + Information that specifies Reverse Proxy IP addresses from which requests have to be allowed. + 1033 + + + + 984bf143-314f-431f-9fbd-5a59032578dc + + true + Information that specifies Reverse Proxy IP addresses from which requests have to be allowed. + 1033 + + + + + + d98522b4-6bd7-4d7b-87b4-a50c6e2b52cf + + true + List of reverse proxy IP addresses to be allowed. + 1033 + + + + d98522b4-6bd7-4d7b-87b4-a50c6e2b52cf + + true + List of reverse proxy IP addresses to be allowed. + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_relationship_roles - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_relationship_roles - organizationid - relationshiprole - organizationid - - 0 - - - bd15f801-cbba-f011-bbd3-7c1e52365f30 + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + reverseproxyipaddresses + 2025-11-06T01:17:44.6930048 + + false + canmodifyrequirementlevelsettings + None + + ReverseProxyIpAddresses + + + StringType + + 1.0.0.15 + false + 0 + + Text + Auto + 4000 + + + Text + + + false + 0 + 8000 + + + d6d463d3-5a4a-4f8d-b3f2-039257e228a7 - false - + + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 395 + 1900-01-01T00:00:00 + + + + + 3d34c3fb-9133-41e0-9558-bb1780332178 + + true + Error status of Relationship Insights provisioning. + 1033 + + + bb0e036e-850e-4480-ade6-85476b5a761d + + true + Fejlstatus for klargøring af Relationship Insights. + 1030 + + + + 3d34c3fb-9133-41e0-9558-bb1780332178 + + true + Error status of Relationship Insights provisioning. + 1033 + + + + + + ad30f9e2-e22d-4f56-968c-3356d6bc2d4d + + true + Error status of Relationship Insights provisioning. + 1033 + + + 73772606-0657-4955-9390-1275ca74934a + + true + Fejlstatus for klargøring af Relationship Insights. + 1030 + + + + ad30f9e2-e22d-4f56-968c-3356d6bc2d4d + + true + Error status of Relationship Insights provisioning. + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_msdyn_kmpersonalizationsetting - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_msdyn_kmpersonalizationsetting - organizationid - msdyn_kmpersonalizationsetting - organizationid - - 0 - - - 50759f02-bec2-47c8-8016-c149fe878904 - - false + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_sdkmessage - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sdkmessage - organizationid - sdkmessage - organizationid - - 0 - - - a5084303-79e9-11e0-a0f5-1cc1de634cfe - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - organization_postlike - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_postlike - organizationid - postlike - organizationid - - 0 - - - 832b8203-47ee-40fd-bd08-8c0b0b786314 + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + rierrorstatus + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + RiErrorStatus + + + IntegerType + + 8.2.0.0 + false + 0 + + None + 2147483647 + 0 + + 0 + + + c05cbd2f-94e9-43d8-96ca-4ebfd3af9c28 - false + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 10029 + 2025-11-06T01:17:44.8029952 + + + + + 7ee116a5-9f63-4479-a8e9-0feab2e726c1 + + true + Samesite mode for Session Cookie 0 is Default, 1 is None, 2 is Lax , 3 is Strict + 1033 + + + + 7ee116a5-9f63-4479-a8e9-0feab2e726c1 + + true + Samesite mode for Session Cookie 0 is Default, 1 is None, 2 is Lax , 3 is Strict + 1033 + + + + + + a732b2d3-ee90-4069-ae0a-a3230ed1e6ba + + true + Samesite mode for Session Cookie + 1033 + + + + a732b2d3-ee90-4069-ae0a-a3230ed1e6ba + + true + Samesite mode for Session Cookie + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_status_maps - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_status_maps - organizationid - statusmap - organizationid_organization - - 0 - - - 9eaca606-b7ba-f011-bbd3-7c1e52365f30 - - false - + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings false - - false - false - organization_appelement - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appelement - organizationid - appelement - organizationid - - 0 - - - 50ada606-b7ba-f011-bbd3-7c1e52365f30 + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + samesitemodeforsessioncookie + 2025-11-06T01:17:44.8029952 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SameSiteModeForSessionCookie + + + PicklistType + + 1.0.0.15 + false + 0 + + 0 + + 659a7c82-3b96-430d-8f88-b51f6ab0d4ba + + + + + 87117460-aeba-f011-bbd3-7c1e52365f30 + + true + Samesite mode for Session Cookie: 0 is Default, 1 is None, 2 is Lax , 3 is Strict + 1033 + + + + 87117460-aeba-f011-bbd3-7c1e52365f30 + + true + Samesite mode for Session Cookie: 0 is Default, 1 is None, 2 is Lax , 3 is Strict + 1033 + + + + + + 86117460-aeba-f011-bbd3-7c1e52365f30 + + true + Samesite mode for Session Cookie + 1033 + + + + 86117460-aeba-f011-bbd3-7c1e52365f30 + + true + Samesite mode for Session Cookie + 1033 + + + + false + + false + iscustomizable + false + + true + true + organization_samesitemodeforsessioncookie + Picklist + 1.0.0.15 + + + + + + + + + + + false + true + + + + 6e26a211-fd40-4b82-9261-5392794b1061 + + true + Default + 1033 + + + + 6e26a211-fd40-4b82-9261-5392794b1061 + + true + Default + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 534e0c78-e555-4964-ade3-22ddf6c7e271 + + true + None + 1033 + + + + 534e0c78-e555-4964-ade3-22ddf6c7e271 + + true + None + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + dfa431e9-3acd-4ab5-b284-f3ecb35aa591 + + true + Lax + 1033 + + + + dfa431e9-3acd-4ab5-b284-f3ecb35aa591 + + true + Lax + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + fae15d18-b590-41a8-a840-0d9f619c0e53 + + true + Strict + 1033 + + + + fae15d18-b590-41a8-a840-0d9f619c0e53 + + true + Strict + 1033 + + + + 3 + + + + + + + + 0 + + + + + bce07e85-2ac6-4581-bf91-6abd19673c37 - false - + samesitemodeforsessioncookie + Virtual + false + false + false + true - iscustomizable + canmodifyadditionalsettings + true + + 10030 + 2025-11-06T01:17:44.8199936 + + + + + + + + + + organization + + + + true + canmodifyauditsettings false - - false - false - organization_appmodulecomponentedge - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appmodulecomponentedge - organizationid - appmodulecomponentedge - organizationid - - 0 - - - f4ada606-b7ba-f011-bbd3-7c1e52365f30 - - false + + false true iscustomizable - false + true - false - false - organization_appmodulecomponentnode - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appmodulecomponentnode - organizationid - appmodulecomponentnode - organizationid - - 0 - - - 93aea606-b7ba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable + canmodifyglobalfiltersettings false - + false - false - organization_appsetting - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appsetting - organizationid - appsetting - organizationid - - 0 - - - 3ec41707-fe74-41de-a2c9-5dfa6ea180f0 + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + samesitemodeforsessioncookiename + 2025-11-06T01:17:44.8199936 + + true + canmodifyrequirementlevelsettings + None + + samesitemodeforsessioncookieName + + + VirtualType + + 1.0.0.15 + true + + + + + 93b67771-5cee-443c-b761-4a61b8bef23e - false - + + Uniqueidentifier + false + false + false + false - iscustomizable + canmodifyadditionalsettings false - - true - false - organization_custom_displaystrings - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_custom_displaystrings - organizationid - displaystring - organizationid - - 0 - - - 6b9a9c08-144e-4677-aa7c-c6c48f3063ba - - false + + 183 + 1900-01-01T00:00:00 + + + + + 4b8dadae-44b9-43fe-b200-f3272bfcd22c + + true + Unique identifier of the sample data import job. + 1033 + + + 3b4ac679-ebac-4bed-b29a-13801391d371 + + true + Entydigt id for importjobbet med eksempeldata. + 1030 + + + + 4b8dadae-44b9-43fe-b200-f3272bfcd22c + + true + Unique identifier of the sample data import job. + 1033 + + + + + + 47be118b-3366-42dd-80fe-8402a6780b8e + + true + Sample Data Import + 1033 + + + 1e015660-994e-4f3d-a0d3-87ac8271b849 + + true + Import af eksempeldata + 1030 + + + + 47be118b-3366-42dd-80fe-8402a6780b8e + + true + Sample Data Import + 1033 + + + organization + + + + false + canmodifyauditsettings + false + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_wizardaccessprivilege - None + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + sampledataimportid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SampleDataImportId + + + UniqueidentifierType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_wizardaccessprivilege - organizationid - wizardaccessprivilege - organizationid - - 0 - - - 7daed908-cacd-4537-9a72-655617319646 + false + + + + + 5571e88c-7adb-47a4-bed6-1811ff22019a - false + + Integer + false + false + false + + false + canmodifyadditionalsettings + true + + 10085 + 2025-11-06T02:47:58.0230016 + + + + + 8430f716-ebbe-40de-93ed-be69d171ecab + + true + Default time to live in minutes for new Power Automate savings events records in flow aggregation. + 1033 + + + 5850a2b7-e96e-44d2-9e3e-ec750530e9e3 + + true + Standardtid for tid til live i minutter for nye Power Automate-lagringshændelsesposter i flowaggregering. + 1030 + + + + 8430f716-ebbe-40de-93ed-be69d171ecab + + true + Default time to live in minutes for new Power Automate savings events records in flow aggregation. + 1033 + + + + + + 9a533797-85bc-40d2-b921-6b92cb9c5983 + + true + The TTL in minutes for new Power Automate savings events records in flow aggregation. + 1033 + + + f57e42c4-2b01-431e-9d44-e20a0d0a3e92 + + true + Levetid (TTL) i minutter for nye Power Automate-lagringshændelsesposter i flowaggregering. + 1030 + + + + 9a533797-85bc-40d2-b921-6b92cb9c5983 + + true + The TTL in minutes for new Power Automate savings events records in flow aggregation. + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - channelproperty_organization - None - 7.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - channelproperty_organization - organizationid - channelproperty - organizationid - - 0 - - - 5c8b4109-8470-4766-bcff-e39ef4dc8982 - - false - + false + false + false - iscustomizable + isrenameable true - - true - false - organization_newprocess - None - 8.2.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_newprocess - organizationid - newprocess - organizationid - - 0 - - - f983b50a-ceba-f011-bbd3-7c1e52365f30 + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + false + false + true + true + true + + savingeventsttlinminutes + 2026-05-11T16:05:41.4969984 + + true + canmodifyrequirementlevelsettings + SystemRequired + + SavingEventsTTLInMinutes + + + IntegerType + + 1.9.4.0 + false + 0 + + None + 52560000 + -1 + + 0 + + + 124232ff-ddd3-4e39-b0d9-66126ed5cd4d - false - + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 88 + 1900-01-01T00:00:00 + + + + + 83d8dee2-2241-db11-898a-0007e9e17ebd + + true + Prefix used for custom entities and attributes. + 1033 + + + 97267a96-58cf-4e95-908a-21355d43d739 + + true + Det præfiks, der bruges til brugerdefinerede objekter og attributter. + 1030 + + + + 83d8dee2-2241-db11-898a-0007e9e17ebd + + true + Prefix used for custom entities and attributes. + 1033 + + + + + + 5da47d12-d56f-4b40-a41e-208834b30b42 + + true + Customization Name Prefix + 1033 + + + 67bb1ba2-470e-4496-ac68-35eaf9cf1d22 + + true + Præfiks for tilpasningsnavn + 1030 + + + + 5da47d12-d56f-4b40-a41e-208834b30b42 + + true + Customization Name Prefix + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_emailaddressconfiguration - None - 9.2.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_emailaddressconfiguration - organizationid - emailaddressconfiguration - organizationid - - 0 - - - 42aa610d-b7ba-f011-bbd3-7c1e52365f30 - - false + + false - true + false iscustomizable true - false - false - organization_appusersetting - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appusersetting - organizationid - appusersetting - organizationid - - 0 - - - dcaa610d-b7ba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable + canmodifyglobalfiltersettings false - - false - false - organization_organizationsetting - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_organizationsetting - organizationid - organizationsetting - organizationid - - 0 - - - b4ab610d-b7ba-f011-bbd3-7c1e52365f30 - - false - + + true + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings false - - false - false - organization_settingdefinition - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_settingdefinition - organizationid - settingdefinition - organizationid - - 0 - - - 9c59e30d-7b24-4146-9321-4fc68a0574c7 - - false - + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_sdkmessagepair - None + + true + false + false + true + true + true + + schemanameprefix + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SchemaNamePrefix + + + StringType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sdkmessagepair - organizationid - sdkmessagepair - organizationid - - 0 - - - cd4e640f-2c65-4ecc-8d64-ad1e3ccf1759 + false + 0 + + Text + Auto + 8 + + + Text + + + false + 0 + 16 + + + 05d1eaa1-dace-473b-b511-1cb64b2dfc29 - false - + + Boolean + false + false + false + false - iscustomizable + canmodifyadditionalsettings true - - true - false - organization_translationprocess - None - 8.2.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_translationprocess - organizationid - translationprocess - organizationid - - 0 - - - 23a17b0f-78db-4c82-ac37-9c4ac7631702 - - false + + 459 + 2025-11-06T00:19:21.2770048 + + + + + f590214e-af9c-4c36-88af-5d9ebf239130 + + true + Indicates whether Send Bulk Email in UCI is enabled for the org. + 1033 + + + 6111cb70-1169-4271-b948-c54f3bc54353 + + true + Angiver, om Send masseforsendelse af mails i UCI er aktiveret for organisationen. + 1030 + + + + f590214e-af9c-4c36-88af-5d9ebf239130 + + true + Indicates whether Send Bulk Email in UCI is enabled for the org. + 1033 + + + + + + 246d5812-fc32-4d18-bcbc-13623bfe4287 + + true + Send Bulk Email in UCI + 1033 + + + 05313a06-2bd7-45e4-b085-583d07688ea4 + + true + Send masseforsendelse af mails i UCI + 1030 + + + + 246d5812-fc32-4d18-bcbc-13623bfe4287 + + true + Send Bulk Email in UCI + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable false - true - false - organization_sdkmessageprocessingstepsecureconfig - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sdkmessageprocessingstepsecureconfig - organizationid - sdkmessageprocessingstepsecureconfig - organizationid - - 0 - - - 449dd711-14a0-4fc4-a507-3e3045503dc7 - - false - - false - iscustomizable + false + false + + true + canmodifyglobalfiltersettings false - + true - false - organization_indexed_documents - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_indexed_documents - organizationid - documentindex - organizationid - - 0 - - - 1863f811-bed1-4472-ac90-49f41b5bd74b - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - organization_string_maps - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_string_maps - organizationid - stringmap - organizationid_organization - - 0 - - - 08f72813-bfb2-4bc2-be1e-2773e3ab8ef1 - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_pluginassembly - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + true + false + false + true + true + true + + sendbulkemailinuci + 2025-11-06T00:19:21.2770048 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SendBulkEmailInUCI + + + BooleanType + + 9.1.0.0 + false + 0 + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_pluginassembly - organizationid - pluginassembly - organizationid - - 0 - - - 925dd714-b5ba-f011-bbd3-7c1e52365f30 + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + b91625f8-2005-4580-9e88-95719b2e0b74 - false - + + Boolean + false + false + false + false - iscustomizable + canmodifyadditionalsettings true - - true - false - organization_entityrecordfilter - None - 9.2.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_entityrecordfilter - organizationid - entityrecordfilter - organizationid - - 0 - - - b45ed714-b5ba-f011-bbd3-7c1e52365f30 - - false + + 422 + 2025-11-06T00:19:21.9170048 + + + + + 46e2e5a0-9756-405d-8a29-fc1c719d403e + + true + Serve Static Content From CDN + 1033 + + + a9958d25-5641-42a4-9a83-dcc92fe703d1 + + true + Behandle statisk indhold fra CDN + 1030 + + + + 46e2e5a0-9756-405d-8a29-fc1c719d403e + + true + Serve Static Content From CDN + 1033 + + + + + + b063587e-7d9e-48e7-8da8-f572449a48e9 + + true + Serve Static Content From CDN + 1033 + + + 8eedebe5-b196-40f7-9312-965c2868bb00 + + true + Behandle statisk indhold fra CDN + 1030 + + + + b063587e-7d9e-48e7-8da8-f572449a48e9 + + true + Serve Static Content From CDN + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable - true + false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_privilegesremovalsetting - None - 1.69.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + servestaticresourcesfromazurecdn + 2025-11-06T00:19:21.9170048 + + false + canmodifyrequirementlevelsettings + SystemRequired + + ServeStaticResourcesFromAzureCDN + + + BooleanType + + 8.2.0.0 + false + 0 + + true + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_privilegesremovalsetting - organizationid - privilegesremovalsetting - organizationid - - 0 - - - a35fd714-b5ba-f011-bbd3-7c1e52365f30 + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 3b3ce890-8e6b-479c-b557-8a1530ed5a25 - false + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 10194 + 2025-11-06T06:14:32.5830016 + + + + + 31c40194-ac06-45b3-acb3-39fdf42bfb3d + + true + Enable the session recording feature to record user sessions in UCI + 1033 + + + 820168cd-5b44-4e69-8686-3ba20f118511 + + true + Aktivér sessionsoptagelsesfunktionen for at optage brugersessioner i UCI + 1030 + + + + 31c40194-ac06-45b3-acb3-39fdf42bfb3d + + true + Enable the session recording feature to record user sessions in UCI + 1033 + + + + + + 8b910253-5fe0-4f78-859b-cda8fd8957b3 + + true + Enable the session recording feature + 1033 + + + 88ad2359-cad0-434c-ad84-10479d868c57 + + true + Aktivér funktionen til sessionsoptagelse + 1030 + + + + 8b910253-5fe0-4f78-859b-cda8fd8957b3 + + true + Enable the session recording feature + 1033 + + + organization + + + + true + canmodifyauditsettings + false + + false false iscustomizable - true + false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_recordfilter - None - 9.2.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_recordfilter - organizationid - recordfilter - organizationid - - 0 - - - 74e09116-daba-f011-bbd3-7c1e52365f30 - - false - + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings + false + + + false + canmodifysearchsettings true - - false - false - organization_deleteditemreference - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + true + true + true + true + true + true + + sessionrecordingenabled + 2025-11-06T06:14:32.5830016 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SessionRecordingEnabled + + + BooleanType + + 9.1.0.0 + false + 0 + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_deleteditemreference - organizationid - deleteditemreference - organizationid - - 0 - - - 11e19116-daba-f011-bbd3-7c1e52365f30 + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 720f3af6-0f7d-4d44-8434-5f5572b41105 - false - + sessionrecordingenabled + Virtual + false + false + false + true - iscustomizable + canmodifyadditionalsettings true - - false - false - organization_recyclebinconfig - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_recyclebinconfig - organizationid - recyclebinconfig - organizationid - - 0 - - - 21a57a17-b5fc-e611-80d4-00155d42b26e - - false + + 10195 + 2025-11-06T06:14:32.6130048 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false - false + true iscustomizable true - true - false - organization_suggestioncardtemplate - None - 9.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_suggestioncardtemplate - organizationid - suggestioncardtemplate - organizationid - - 0 - - - cffab61c-cfba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable + canmodifyglobalfiltersettings false - + false - false - organization_virtualentitymetadata - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_virtualentitymetadata - organizationid - virtualentitymetadata - organizationid - - 0 - - - 92c52822-0681-47cc-9f69-079a94ed0c5d - - false - - false - iscustomizable + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings false - - true - true - organization_socialinsightsconfiguration - None - 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_socialinsightsconfiguration - organizationid - socialinsightsconfiguration - regardingobjectid - - 0 - - - 300c7722-e4ba-f011-bbd3-7c1e52365f30 - - false - + + true - iscustomizable + canmodifysearchsettings false - - false - false - organization_sharepointmanagedidentity - None + + false + false + false + true + false + false + + sessionrecordingenabledname + 2025-11-06T06:14:32.6130048 + + true + canmodifyrequirementlevelsettings + None + + sessionrecordingenabledName + + + VirtualType + 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sharepointmanagedidentity - organizationid - sharepointmanagedidentity - organizationid - - 0 - - - b68a5623-2472-429c-9428-b825e9f2dc6d + true + + + + + 0b6f6ea6-edf8-45b2-9a01-e773f25a7904 - false + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 409 + 1900-01-01T00:00:00 + + + + + ef3aafca-d305-4526-a3f3-1989078db439 + + true + Information that specifies whether session timeout is enabled + 1033 + + + e371978a-0297-4840-9410-954bb5c637a7 + + true + Oplysninger, der angiver, om sessionstimeout er aktiveret + 1030 + + + + ef3aafca-d305-4526-a3f3-1989078db439 + + true + Information that specifies whether session timeout is enabled + 1033 + + + + + + cf867ef3-9c0d-4254-8d47-92f3cf8cca5e + + true + Session timeout enabled + 1033 + + + f2cb9a4d-5ad1-4118-9c32-c1fdfaad2973 + + true + Sessionstimeout aktiveret + 1030 + + + + cf867ef3-9c0d-4254-8d47-92f3cf8cca5e + + true + Session timeout enabled + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable false - true - false - organization_sharepointdocument - None - 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - true - navSPDocuments - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sharepointdocument - organizationid - sharepointdocument - organizationid - - 0 - - - bf8a7323-f3ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - false - organization_adx_externalidentity - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_adx_externalidentity - organizationid - adx_externalidentity - organizationid - - 0 - - - b2091424-c4ba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable + canmodifyglobalfiltersettings false - - false - false - organization_allowedmcpclient - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_allowedmcpclient - organizationid - allowedmcpclient - organizationid - - 0 - - - 74638925-5874-47cd-9338-f733996e1b7f - - false - + + true + false + false + false - iscustomizable + isrenameable false - - true - false - lk_principalsyncattributemap_organizationid - None - 7.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - lk_principalsyncattributemap_organizationid - organizationid - principalsyncattributemap - organizationid - - 0 - - - cebe8728-afba-f011-bbd3-7c1e52365f30 - - false - + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings false - - false - false - organization_pluginpackage - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + sessiontimeoutenabled + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SessionTimeoutEnabled + + + BooleanType + + 8.2.0.0 + false + 0 + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_pluginpackage - organizationid - pluginpackage - organizationid - - 0 - - - 86e6a029-f3ba-f011-bbd3-7c1e52365f30 + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + b545a569-84d6-4568-874c-4bad3d0823f3 - false - + + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 410 + 1900-01-01T00:00:00 + + + + + 7ea4eb61-8f1d-4c68-ae7d-7a9a1ed49dfb + + true + Session timeout in minutes + 1033 + + + d788a51b-58c0-4c4b-97d4-d54f29d510b9 + + true + Sessionstimeout i minutter + 1030 + + + + 7ea4eb61-8f1d-4c68-ae7d-7a9a1ed49dfb + + true + Session timeout in minutes + 1033 + + + + + + 5c8d6e69-2b09-49fa-9270-1b1434ac395b + + true + Session timeout in minutes + 1033 + + + 8f1585a8-0194-4bac-8d61-035e4bfe4662 + + true + Sessionstimeout i minutter + 1030 + + + + 5c8d6e69-2b09-49fa-9270-1b1434ac395b + + true + Session timeout in minutes + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_adx_webformsession - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_adx_webformsession - organizationid - adx_webformsession - organizationid - - 0 - - - 22ab0b33-1113-1001-9d94-aba48f797f2a - - false + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_ribbon_tab_to_command_map - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_ribbon_tab_to_command_map - organizationid - ribbontabtocommandmap - organizationid - - 0 - - - 22ab0b33-1115-1001-9d94-aba48f797f2a - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - organization_ribbon_context_group - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_ribbon_context_group - organizationid - ribboncontextgroup - organizationid - - 0 - - - 22ab0b33-1116-1001-9d94-aba48f797f2a - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_ribbon_command - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_ribbon_command - organizationid - ribboncommand - organizationid - - 0 - - - 22ab0b33-1117-1001-9d94-aba48f797f2a + + true + false + false + true + true + true + + sessiontimeoutinmins + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SessionTimeoutInMins + + + IntegerType + + 8.2.0.0 + false + 0 + + None + 2147483647 + 0 + + 0 + + + ce009ce1-feb6-4a66-856c-ddc335514d9e - false - + + Integer + false + false + false + false - iscustomizable + canmodifyadditionalsettings false - - true - false - organization_ribbon_rule - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_ribbon_rule - organizationid - ribbonrule - organizationid - - 0 - - - 22ab0b33-1130-1001-9d94-aba48f797f2a - - false + + 411 + 1900-01-01T00:00:00 + + + + + 6ecd236d-ec04-48be-bf3f-1a9c64cd146e + + true + Session timeout reminder in minutes + 1033 + + + 473eafec-4505-4e0a-9f35-0f59aaa73bff + + true + Sessionstimeoutpåmindelse i minutter + 1030 + + + + 6ecd236d-ec04-48be-bf3f-1a9c64cd146e + + true + Session timeout reminder in minutes + 1033 + + + + + + c8708512-ffa6-4c12-a4b1-d34e01b20e2e + + true + Session timeout reminder in minutes + 1033 + + + 21152082-e066-40d5-8ea3-bf3e6111cb18 + + true + Sessionstimeoutpåmindelse i minutter + 1030 + + + + c8708512-ffa6-4c12-a4b1-d34e01b20e2e + + true + Session timeout reminder in minutes + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_ribbon_diff - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_ribbon_diff - organizationid - ribbondiff - organizationid - - 0 - - - 54e23133-62f5-f011-8406-7ced8d736212 + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + sessiontimeoutreminderinmins + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SessionTimeoutReminderInMins + + + IntegerType + + 8.2.0.0 + false + 0 + + None + 2147483647 + 0 + + 0 + + + 46ecdfbf-9465-4ba0-b850-73f2d3b50337 - false + + Picklist + false + false + false + + false + canmodifyadditionalsettings + false + + 291 + 1900-01-01T00:00:00 + + + + + 2f3fb136-9cea-4f96-86c3-bfad2aa02265 + + true + Indicates which SharePoint deployment type is configured for Server to Server. (Online or On-Premises) + 1033 + + + 071b795a-4f59-46b9-9a7c-e6496e03db6a + + true + Angiver, hvilken SharePoint-installationstype der er konfigureret for server til server. (Online eller Lokalt) + 1030 + + + + 2f3fb136-9cea-4f96-86c3-bfad2aa02265 + + true + Indicates which SharePoint deployment type is configured for Server to Server. (Online or On-Premises) + 1033 + + + + + + 405d3a64-5727-4d8e-af92-3d12f18cb247 + + true + Choose SharePoint Deployment Type + 1033 + + + ea27d1a3-94af-4db0-ad65-1ad4cb5adb9a + + true + Vælg SharePoint-installationstype + 1030 + + + + 405d3a64-5727-4d8e-af92-3d12f18cb247 + + true + Choose SharePoint Deployment Type + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_anyprivilegeentity - None - 1.129.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_anyprivilegeentity - organizationid - anyprivilegeentity - organizationid - - 0 - - - b78ffd36-3ff8-487b-985c-c77c2995a01a - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - organization_mailbox - None - 6.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + sharepointdeploymenttype + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SharePointDeploymentType + + + PicklistType + + 7.1.0.0 + false + 0 + + 0 + + 14bbc996-eb5a-4598-a5c9-eca3be763c90 + + + + + 9dd0c661-c961-4180-93e8-cdb09a76919b + + true + SharePoint Deployment Type + 1033 + + + 7351f3b7-04c1-4a4e-9a10-5d447a5607ef + + true + SharePoint-installationstype + 1030 + + + + 9dd0c661-c961-4180-93e8-cdb09a76919b + + true + SharePoint Deployment Type + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_mailbox - organizationid - mailbox - organizationid - - 0 - - - 503fd738-ccba-f011-bbd3-7c1e52365f30 + + + false + + false + iscustomizable + true + + false + true + organization_sharepointdeploymenttype + Picklist + 7.1.0.0 + + + + + + + + + + + false + true + + + + 1080cd66-94d5-49ca-8c3b-c020f33e422d + + true + Online + 1033 + + + da52e1d6-ec07-475e-9761-84b242972bc0 + + true + Online + 1030 + + + + 1080cd66-94d5-49ca-8c3b-c020f33e422d + + true + Online + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 388b42a7-f0a5-4fd8-9f2f-a352bb3664a3 + + true + On-Premises + 1033 + + + 591b45bf-327f-45b3-9186-f460960d6b6f + + true + Lokalt + 1030 + + + + 388b42a7-f0a5-4fd8-9f2f-a352bb3664a3 + + true + On-Premises + 1033 + + + + 1 + + + + + + + + 0 + + + + + 001709ea-a132-4e4d-b449-d71cd376d633 - false - + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 64 + 1900-01-01T00:00:00 + + + + + 8964cfee-2241-db11-898a-0007e9e17ebd + + true + Information that specifies whether to share to previous owner on assign. + 1033 + + + 92abb695-be11-45e6-bb81-ad9bd49cf260 + + true + Angiver, om der skal deles med den tidligere ejer ved tildeling. + 1030 + + + + 8964cfee-2241-db11-898a-0007e9e17ebd + + true + Information that specifies whether to share to previous owner on assign. + 1033 + + + + + + 6fc422c2-802b-4078-86b7-24c13ccd6c9f + + true + Share To Previous Owner On Assign + 1033 + + + f52219f9-9565-418f-b43b-904733e03a13 + + true + Del med tidligere ejer ved tildeling + 1030 + + + + 6fc422c2-802b-4078-86b7-24c13ccd6c9f + + true + Share To Previous Owner On Assign + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_supportusertable - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_supportusertable - organizationid - supportusertable - organizationid - - 0 - - - 52401f39-8808-4de7-a2e3-21a68ec39f3a - - false + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_queues - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_queues - organizationid - queue - organizationid - - 0 - - - 529c5339-8676-4617-b9cc-7081cb2558b9 - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - channelpropertygroup_organization - None - 7.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - channelpropertygroup_organization - organizationid - channelpropertygroup - organizationid - - 0 - - - 27998439-60d2-11e0-834f-1cc1de634cfe - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_post - None + + false + false + false + true + true + true + + sharetopreviousowneronassign + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + ShareToPreviousOwnerOnAssign + + + BooleanType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + false + 0 + + false + + ed2021bb-cd44-4ff0-ba80-7090cbe13b26 + + + + + 8b129241-e9a6-4820-aa81-64d2e4e6ded0 + + true + Information that specifies whether to share to previous owner on assign. + 1033 + + + f1ddd9b4-760a-444d-9d06-bf41d1857549 + + true + Angiver, om der skal deles med den tidligere ejer ved tildeling. + 1030 + + + + 8b129241-e9a6-4820-aa81-64d2e4e6ded0 + + true + Information that specifies whether to share to previous owner on assign. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_post - organizationid - post - organizationid - - 0 - - - 8fcb603a-2bcd-11df-80a6-00137299e1c2 + + + false + + false + iscustomizable + true + + false + true + organization_sharetopreviousowneronassign + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 6558aec5-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + 7c97b905-af57-43b7-aec7-0ea5e8c34ae5 + + true + Nej + 1030 + + + + 6558aec5-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 6758aec5-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + 3544b005-f8ce-40a6-a2d6-8ca8405c5e68 + + true + Ja + 1030 + + + + 6758aec5-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 39cfc93f-9975-4ac5-9893-34a068b25d34 - false - + + Boolean + false + false + false + false - iscustomizable + canmodifyadditionalsettings false - - true - false - lk_principalobjectattributeaccess_organizationid - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - lk_principalobjectattributeaccess_organizationid - organizationid - principalobjectattributeaccess - organizationid - - 0 - - - f072183e-bbef-42eb-a420-ff964bcc61f3 - - false + + 325 + 1900-01-01T00:00:00 + + + + + 8fda9fca-ca6d-4136-93c2-28f1fdbcc80c + + true + Select whether to display a KB article deprecation notification to the user. + 1033 + + + f4019394-acd1-4f94-ac06-acd5be962eb7 + + true + Vælg, om der skal vises en meddelelse om frarådet brug af videnbaseartikel for brugeren. + 1030 + + + + 8fda9fca-ca6d-4136-93c2-28f1fdbcc80c + + true + Select whether to display a KB article deprecation notification to the user. + 1033 + + + + + + 135730a5-dab1-4246-867c-1c939adf492f + + true + Show KBArticle deprecation message to user + 1033 + + + 5d0c8a63-62b0-4da7-84a3-aed8a260e1f9 + + true + Vis meddelelse om frarådet brug af vidensbaseartikel for bruger + 1030 + + + + 135730a5-dab1-4246-867c-1c939adf492f + + true + Show KBArticle deprecation message to user + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_navigationsetting - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_navigationsetting - organizationid - navigationsetting - organization_navigationsetting_navigationsetting - - 0 - - - 55e7973e-2a06-4dca-aa0d-e3c73b2c7b74 - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - organization_systemapplicationmetadata - None - 6.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_systemapplicationmetadata - organizationid - systemapplicationmetadata - organizationid - - 0 - - - b5f86440-60eb-11e0-834f-1cc1de634cfe - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_postrole - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + true + false + false + true + true + true + + showkbarticledeprecationnotification + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + ShowKBArticleDeprecationNotification + + + BooleanType + + 8.0.0.0 + false + 0 + + false + + b03315d7-b313-4d99-8964-3e09d71b170f + + + + + 62dbe2e3-fcc9-4bbf-9e41-2f0e226bcb6f + + true + Flag to show or hide KB Article Deprecation Notification + 1033 + + + 0d53167d-42f3-4aab-9ef9-2e50d870e0be + + true + Markeres for at vise eller skjule meddelelse om frarådet brug af vidensbaseartikel + 1030 + + + + 62dbe2e3-fcc9-4bbf-9e41-2f0e226bcb6f + + true + Flag to show or hide KB Article Deprecation Notification + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_postrole - organizationid - postrole - organizationid - - 0 - - - 127db940-1693-4d62-aaa0-2c5e24457a5a + + + false + + false + iscustomizable + true + + false + true + organization_showkbarticledeprecationnotification + Boolean + 8.0.0.0 + + + + + + + + + + false + true + + + + 312645a0-4ffb-45af-b398-35987537efaf + + true + No + 1033 + + + ed9cc2e4-b9bb-4395-9553-08a17909cdf6 + + true + Nej + 1030 + + + + 312645a0-4ffb-45af-b398-35987537efaf + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 628db7c1-f1a6-46a2-9a33-401349c0dcee + + true + Yes + 1033 + + + 067253b3-bf17-4316-9726-d7d62bfcb60e + + true + Ja + 1030 + + + + 628db7c1-f1a6-46a2-9a33-401349c0dcee + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + e7fe1594-7f4a-46eb-86bb-2ccf8836a05e - false - + + Boolean + false + false + false + false - iscustomizable + canmodifyadditionalsettings false - - true - false - organization_textanalyticsentitymapping - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_textanalyticsentitymapping - organizationid - textanalyticsentitymapping - organizationid - - 0 - - - c03e4643-13ae-e311-80c2-00155d9dac1a - - false + + 42 + 1900-01-01T00:00:00 + + + + + c44901bf-2241-db11-898a-0007e9e17ebd + + true + Information that specifies whether to display the week number in calendar displays throughout Microsoft CRM. + 1033 + + + 8cd8fbe6-ed29-45cd-891f-70942f61dbbb + + true + Oplysninger, der angiver, om der skal vises ugenumre i kalenderen i Microsoft CRM. + 1030 + + + + c44901bf-2241-db11-898a-0007e9e17ebd + + true + Information that specifies whether to display the week number in calendar displays throughout Microsoft CRM. + 1033 + + + + + + 56bf288a-f8a1-4465-bbd9-6cbdded9f9a1 + + true + Show Week Number + 1033 + + + 24b8c11d-3ae6-4dd4-9862-dd1fac8b2e9f + + true + Vis ugenummer + 1030 + + + + 56bf288a-f8a1-4465-bbd9-6cbdded9f9a1 + + true + Show Week Number + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable true - true - false - organization_position - None - 7.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_position - organizationid - position - organizationid - - 0 - - - 2be35843-c3ba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable - true - - false - false - organization_msdyn_appinsightsmetadata - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_msdyn_appinsightsmetadata - organizationid - msdyn_appinsightsmetadata - organizationid - - 0 - - - f5ee7c43-b890-4551-8910-9d6d8cd3ddaa - - false - - false - iscustomizable + canmodifyglobalfiltersettings false - + true - false - organization_roles - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_roles - organizationid - role - organizationid_organization - - 0 - - - 3d07b246-fc82-47af-a182-b4d9a9c6dc34 - - false - + false + false + false - iscustomizable + isrenameable false - - true - true - organization_orginsightsnotification - None - 8.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_orginsightsnotification - organizationid - orginsightsnotification - organization_orginsightsnotification - - 0 - - - 9cdcc946-5359-41c0-af96-761a0a6287a9 - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_teams - None + + true + false + false + true + true + true + + showweeknumber + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ShowWeekNumber + + + BooleanType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + false + 0 + + false + + b785aeac-2ca6-40d7-b31a-831b62c8a60d + + + + + a60f7649-0533-4794-90f3-04bf3db652cd + + true + Information that specifies whether to display the week number in calendar displays throughout Microsoft CRM. + 1033 + + + 8c1d6aa7-9a07-4473-89d7-2c4dfe302546 + + true + Oplysninger, der angiver, om der skal vises ugenumre i kalenderen i Microsoft CRM. + 1030 + + + + a60f7649-0533-4794-90f3-04bf3db652cd + + true + Information that specifies whether to display the week number in calendar displays throughout Microsoft CRM. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_teams - organizationid - team - organizationid_organization - - 0 - - - 2106a747-f7cb-e511-8e7e-00219b619656 + + + false + + false + iscustomizable + true + + false + true + organization_showweeknumber + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 6958aec5-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + 16cda5ba-174f-46b4-971a-281bac6ee8d6 + + true + Nej + 1030 + + + + 6958aec5-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 6b58aec5-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + 2ac6d440-4262-4e2c-8f40-9d64c70f9063 + + true + Ja + 1030 + + + + 6b58aec5-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 51cd430c-5b3c-42c0-a710-d611d8e8c45f - false - + showweeknumber + Virtual + false + false + false + false - iscustomizable - true - - true - false - organization_recommendeddocument - None - 8.1.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_recommendeddocument - organizationid - recommendeddocument - organizationid - - 0 - - - a43cb24b-3687-4142-b63d-68d0fec227b2 - - false - + canmodifyadditionalsettings + false + + 43 + 1900-01-01T00:00:00 + + + + + + + + + + organization + + + false - iscustomizable + canmodifyauditsettings false - - true - false - lk_syncattributemappingprofile_organizationid - None - 7.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - lk_syncattributemappingprofile_organizationid - organizationid - syncattributemappingprofile - organizationid - - 0 - - - 0dfb6451-d2ba-f011-bbd3-7c1e52365f30 - - false + + false - true + false iscustomizable false - false - false - organization_organizationdatasyncsubscription - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_organizationdatasyncsubscription - organizationid - organizationdatasyncsubscription - organizationid - - 0 - - - dffb6451-d2ba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable + canmodifyglobalfiltersettings false - - false - false - organization_organizationdatasyncsubscriptionentity - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_organizationdatasyncsubscriptionentity - organizationid - organizationdatasyncsubscriptionentity - organizationid - - 0 - - - 99fc6451-d2ba-f011-bbd3-7c1e52365f30 - - false - + + true + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings false - - false - false - organization_organizationdatasyncsubscriptionfnotable - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_organizationdatasyncsubscriptionfnotable - organizationid - organizationdatasyncsubscriptionfnotable - organizationid - - 0 - - - 93ef2654-87b6-4b08-86da-28fa91477d76 - - false - + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_advancedsimilarityrule - None - 8.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_advancedsimilarityrule - organizationid - advancedsimilarityrule - organizationid - - 0 - - - c7f69255-de7c-44c4-a83a-1a9df9be777b + + false + false + false + true + false + false + + showweeknumbername + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ShowWeekNumberName + + + VirtualType + + 5.0.0.0 + true + + + + + 92a60fe1-c3e0-4c5f-b617-cdf2be6bc40d - false - + + String + false + false + false + false - iscustomizable + canmodifyadditionalsettings false - - true - false - webresource_organization - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - webresource_organization - organizationid - webresource - organizationid - - 0 - - - e0000e56-f6d7-4e73-831d-4877712cf588 - - false + + 250 + 1900-01-01T00:00:00 + + + + + 7de520b5-7f09-4385-b9b3-33bcaf91d908 + + true + CRM for Outlook Download URL + 1033 + + + 1eb2a57e-658d-417d-bc47-9f70137c8a88 + + true + URL-adresse til hentning af CRM til Outlook + 1030 + + + + 7de520b5-7f09-4385-b9b3-33bcaf91d908 + + true + CRM for Outlook Download URL + 1033 + + + + + + f048c8ec-c528-4616-b034-760a0bf9a1ba + + true + CRMForOutlookDownloadURL + 1033 + + + 6f075fe6-e352-4f0c-836b-67f9c06e1491 + + true + CRMForOutlookDownloadURL + 1030 + + + + f048c8ec-c528-4616-b034-760a0bf9a1ba + + true + CRMForOutlookDownloadURL + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_appconfiginstance - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appconfiginstance - organizationid - appconfiginstance - organization_appconfiginstance_appconfiginstance - - 0 - - - 49954456-c0ba-f011-bbd3-7c1e52365f30 - - false - + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings false - - false - false - organization_msdyn_helppage - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_msdyn_helppage - organizationid - msdyn_helppage - organizationid - - 0 - - - 74216456-c3ba-f011-bbd3-7c1e52365f30 + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + signupoutlookdownloadfwlink + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SignupOutlookDownloadFWLink + + + StringType + + 6.0.0.0 + false + 0 + + Text + Auto + 200 + + + Text + + + false + 0 + 400 + + + c128eb78-5025-4083-9a7c-5a53318cd873 - false - + + Memo + false + false + false + + false + canmodifyadditionalsettings + false + + 84 + 1900-01-01T00:00:00 + 5.0.0.0 + + + + ba40b506-2341-db11-898a-0007e9e17ebd + + true + XML string that defines the navigation structure for the application. + 1033 + + + ad22066d-b38e-4c7b-a9f9-5345dd39f876 + + true + En XML-streng, der angiver programmets navigationsstruktur. + 1030 + + + + ba40b506-2341-db11-898a-0007e9e17ebd + + true + XML string that defines the navigation structure for the application. + 1033 + + + + + + 5d1f95b6-9c63-410a-883d-29200a222a1e + + true + SiteMap XML + 1033 + + + 86ac3a2f-1b14-4102-a8bb-b7ac16f7e301 + + true + Webstedsoversigt i XML-format + 1030 + + + + 5d1f95b6-9c63-410a-883d-29200a222a1e + + true + SiteMap XML + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_msdyn_modulerundetail - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_msdyn_modulerundetail - organizationid - msdyn_modulerundetail - organizationid - - 0 - - - de552a57-7570-43ee-a090-1936744a2bfd - - false + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_sdkmessagefilter - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sdkmessagefilter - organizationid - sdkmessagefilter - organizationid - - 0 - - - a8490659-efba-f011-bbd3-7c1e52365f30 - - false - + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings false - - false - false - organization_msdyn_solutionhealthruleset - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_msdyn_solutionhealthruleset - organizationid - msdyn_solutionhealthruleset - organizationid - - 0 - - - 47832a5b-e8a3-454c-97ea-bb5b3c132878 - - false - + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_systemforms - None + + true + false + false + true + true + false + + sitemapxml + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SiteMapXml + + + MemoType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_systemforms - organizationid - systemform - organizationid - - 0 - - - 8ea8bb5c-c0ba-f011-bbd3-7c1e52365f30 + false + + + TextArea + Auto + 1073741823 + + TextArea + + false + + + 12b924c1-801e-4b07-8bfe-b2db3dc0450d - false - - true - iscustomizable + + String + false + false + false + + false + canmodifyadditionalsettings false - - false - false - organization_msdyn_tour - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_msdyn_tour - organizationid - msdyn_tour - organizationid - - 0 - - - b807cb5c-c3ba-f011-bbd3-7c1e52365f30 - - false + + 270 + 1900-01-01T00:00:00 + + + + + 32658a66-2281-4d44-832c-7dc98c604a8b + + true + Contains the on hold case status values. + 1033 + + + 15407402-35e5-4e0f-8fad-620b46e3e6d0 + + true + Indeholder statusværdierne for sag i venteposition. + 1030 + + + + 32658a66-2281-4d44-832c-7dc98c604a8b + + true + Contains the on hold case status values. + 1033 + + + + + + 9bf51d67-65de-4c2f-b5d7-2b3f7bf86d85 + + true + SLA pause states + 1033 + + + 1f27ec56-a44b-4c45-b57f-7b3276a09208 + + true + SLA-pausetilstande + 1030 + + + + 9bf51d67-65de-4c2f-b5d7-2b3f7bf86d85 + + true + SLA pause states + 1033 + + + organization + + + + false + canmodifyauditsettings + false + + false - true + false iscustomizable true - false - false - organization_msdyn_workflowactionstatus - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_msdyn_workflowactionstatus - organizationid - msdyn_workflowactionstatus - organizationid - - 0 - - - a5aee05f-197a-40cf-b7df-55144aef1cc1 - - false - - false - iscustomizable + false + false + + true + canmodifyglobalfiltersettings false - + true - false - organization_publisher - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_publisher - organizationid - publisher - organizationid - - 0 - - - add76360-3e2e-4c45-a456-eb60432501e8 - - false - + false + false + false - iscustomizable + isrenameable false - - true - true - organization_savedorginsightsconfiguration - None - 8.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_savedorginsightsconfiguration - organizationid - savedorginsightsconfiguration - organization_savedorginsightsconfiguration - - 0 - - - 79522061-aac7-4862-bde3-f66f5fc57747 + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + slapausestates + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SlaPauseStates + + + StringType + + 7.0.0.0 + false + 0 + + Text + Auto + 1073741823 + + + Text + + + false + 0 + -1 + + + 84798e27-4d7b-4bac-8794-515c995a3928 - false + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 271 + 1900-01-01T00:00:00 + + + + + 415487f3-c9c6-44b0-80a2-74710c38af56 + + true + Flag for whether the organization is using Social Insights. + 1033 + + + c29e1e66-d5b7-445e-bd82-e4fcf95a04e2 + + true + Flag for, om organisationen anvender Social indsigt. + 1030 + + + + 415487f3-c9c6-44b0-80a2-74710c38af56 + + true + Flag for whether the organization is using Social Insights. + 1033 + + + + + + 736a675d-6368-4e78-a83e-35dbbcf83b36 + + true + Social Insights Enabled + 1033 + + + f6e02ce1-bd92-4b09-b0bc-1305ed5ef3bb + + true + Social indsigt aktiveret + 1030 + + + + 736a675d-6368-4e78-a83e-35dbbcf83b36 + + true + Social Insights Enabled + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_appconfig - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appconfig - organizationid - appconfig - organization_appconfig - - 0 - - - a0db2461-cf7a-4885-9aae-c5f6eb74323d - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - organization_kb_article_templates - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_kb_article_templates - organizationid - kbarticletemplate - organizationid - - 0 - - - 0ccdc761-e62d-4226-b773-a2aecb855490 - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_wizardpage - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_wizardpage - organizationid - wizardpage - organizationid - - 0 - - - 20bc3762-c207-4f54-9c83-a23429b0db52 + + false + false + false + true + true + true + + socialinsightsenabled + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SocialInsightsEnabled + + + BooleanType + + 7.0.0.0 + false + 0 + + false + + f87aab30-b69a-431f-9e22-b71de566233d + + + + + 8f2e0945-4fc2-4548-97da-880c911ef003 + + true + Whether the organization is using Social Insights. + 1033 + + + 8f21ff16-91e0-4a3f-be19-f7e58b87ce60 + + true + Angiver, om organisationen anvender Social indsigt. + 1030 + + + + 8f2e0945-4fc2-4548-97da-880c911ef003 + + true + Whether the organization is using Social Insights. + 1033 + + + + + + 8d671f53-53b7-43fe-9f13-fddb6b7220d9 + + true + Social Insights Enabled + 1033 + + + 34c53943-e469-4bb6-93f7-3a76663df0ea + + true + Social indsigt aktiveret + 1030 + + + + 8d671f53-53b7-43fe-9f13-fddb6b7220d9 + + true + Social Insights Enabled + 1033 + + + + false + + false + iscustomizable + false + + false + true + socialinsightsconfiguration_enabled + Boolean + 7.0.0.0 + + + + + + + + + + false + true + + + + 4ab44b05-8f27-4bd9-8bcb-74040e306f75 + + true + No + 1033 + + + 6525548f-9f8d-441b-8df8-779094ede1af + + true + Nej + 1030 + + + + 4ab44b05-8f27-4bd9-8bcb-74040e306f75 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + e0b3d281-a623-426d-85b6-2d4496f66154 + + true + Yes + 1033 + + + 3e656bf9-67cc-4280-b5cb-c49310ae4306 + + true + Ja + 1030 + + + + e0b3d281-a623-426d-85b6-2d4496f66154 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + efe7d6bc-45ea-4aaf-bfa9-dfb217c2da8a - false + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 256 + 1900-01-01T00:00:00 + + + + + 712ba289-4441-43a0-a016-29cd12e38037 + + true + Identifier for the Social Insights instance for the organization. + 1033 + + + d1f5016a-eb02-4264-8a0f-988e66609c3b + + true + Id for organisationens Social indsigt-forekomst. + 1030 + + + + 712ba289-4441-43a0-a016-29cd12e38037 + + true + Identifier for the Social Insights instance for the organization. + 1033 + + + + + + 3beaf688-f967-4553-a719-6714fb912687 + + true + Social Insights instance identifier + 1033 + + + 319d2c07-4095-46d7-bfb4-a7c304fe7b9b + + true + Id for Social indsigt-forekomst + 1030 + + + + 3beaf688-f967-4553-a719-6714fb912687 + + true + Social Insights instance identifier + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_integration_statuses - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_integration_statuses - organizationid - integrationstatus - organizationid_organization - - 0 - - - 4a314862-d1ba-f011-bbd3-7c1e52365f30 + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + socialinsightsinstance + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SocialInsightsInstance + + + StringType + + 6.1.0.0 + false + 0 + + Text + Auto + 2048 + + + Text + + + false + 0 + -1 + + + 7d73e003-21d0-4924-a066-a2c913c8e91f - false - + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 255 + 1900-01-01T00:00:00 + + + + + fda2e28e-322f-46e4-8612-c1951411720a + + true + Flag for whether the organization has accepted the Social Insights terms of use. + 1033 + + + a21f4a12-5f1b-4cce-bf91-900382211001 + + true + Flag for, om organisationen har accepteret vilkårene for anvendelse af Social indsigt. + 1030 + + + + fda2e28e-322f-46e4-8612-c1951411720a + + true + Flag for whether the organization has accepted the Social Insights terms of use. + 1033 + + + + + + b4171676-59a3-4401-9d93-9f89d863c3e5 + + true + Social Insights Terms of Use + 1033 + + + a8c8fe0a-3a8e-4244-b9bd-4d4319fd7a0f + + true + Vilkår for anvendelse af Social indsigt + 1030 + + + + b4171676-59a3-4401-9d93-9f89d863c3e5 + + true + Social Insights Terms of Use + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_mobileofflineprofileextension - None - 1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_mobileofflineprofileextension - organizationid - mobileofflineprofileextension - organizationid - - 0 - - - 43fb6862-1eee-426a-8ed4-b62ccdcc6e22 - - false + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_attributemap - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_attributemap - organizationid - attributemap - organizationid - - 0 - - - 74869d62-3a90-4d7a-9d8b-fa3f802ba679 - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - organization_appmodule - None - 8.2.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appmodule - organizationid - appmodule - organization_appmodule_appmodule - - 0 - - - 12d13a63-6aaf-43b6-852e-fff7b3ee05f7 - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_subjects - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_subjects - organizationid - subject - organizationid - - 0 - - - 5c69e763-72c1-42c9-9136-404ac56b3d5e + + false + false + false + true + true + true + + socialinsightstermsaccepted + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SocialInsightsTermsAccepted + + + BooleanType + + 6.1.0.0 + false + 0 + + false + + 84d3b31a-a11f-4473-9a1f-6e4793b56374 + + + + + 1bc3edaf-a791-4edf-b916-cdb65caa3b90 + + true + Whether the organization has accepted the Terms of Use for Social Insights. + 1033 + + + fe46f52b-8d5b-43c5-b18e-c3c9bb2d3f3f + + true + Angiver, om organisationen har accepteret vilkårene for anvendelse af Social indsigt. + 1030 + + + + 1bc3edaf-a791-4edf-b916-cdb65caa3b90 + + true + Whether the organization has accepted the Terms of Use for Social Insights. + 1033 + + + + + + 0715a13a-fc0e-48fa-82ac-7d2b155f6097 + + true + Social Insights Terms of Use + 1033 + + + 6b1a33fc-677d-4f50-b2b5-6dfa237c4558 + + true + Vilkår for anvendelse af Social indsigt + 1030 + + + + 0715a13a-fc0e-48fa-82ac-7d2b155f6097 + + true + Social Insights Terms of Use + 1033 + + + + false + + false + iscustomizable + false + + false + true + socialinsightsconfiguration_termsaccepted + Boolean + 6.1.0.0 + + + + + + + + + + false + true + + + + 71aa0f46-5a07-4bfb-8ad1-c3d129e3bf56 + + true + No + 1033 + + + de38c655-9373-4c8b-8e6b-79844cce29a9 + + true + Nej + 1030 + + + + 71aa0f46-5a07-4bfb-8ad1-c3d129e3bf56 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + cda26f45-00d8-40b7-a6c0-52a861a43c22 + + true + Yes + 1033 + + + 82706440-73cf-415a-b7ed-bba0d913f04c + + true + Ja + 1030 + + + + cda26f45-00d8-40b7-a6c0-52a861a43c22 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + b01b176d-aa99-4b2c-95d8-c074b2e94b1f - false - + + Integer + false + false + false + false - iscustomizable + canmodifyadditionalsettings false - - true - false - organization_hierarchyrules - None - 7.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_hierarchyrules - organizationid - hierarchyrule - organizationid - - 0 - - - aeb30167-3dc1-4cca-be6a-5a0c56991b17 - - false + + 38 + 1900-01-01T00:00:00 + + + + + 6b25e7d6-2241-db11-898a-0007e9e17ebd + + true + For internal use only. + 1033 + + + 00a8dda1-cd01-4e33-8bae-a30ed5594bcc + + true + Kun til intern brug. + 1030 + + + + 6b25e7d6-2241-db11-898a-0007e9e17ebd + + true + For internal use only. + 1033 + + + + + + 620c36f7-5dc0-4a3b-ae0f-2712c7a8ce87 + + true + Sort + 1033 + + + c4f2661a-0385-423c-8060-d4d6a3a952ad + + true + Sortér + 1030 + + + + 620c36f7-5dc0-4a3b-ae0f-2712c7a8ce87 + + true + Sort + 1033 + + + organization + + + + false + canmodifyauditsettings + false + + false false iscustomizable true + false + false + + true + canmodifyglobalfiltersettings + false + true - true - Organization_SyncErrors - Append - 8.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - Cascade - NoCascade - Cascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - organizationid - organization - Organization_SyncErrors - regardingobjectid - syncerror - regardingobjectid_organization_syncerror - - 1 - - - c985a867-0d9f-4767-8a3f-ccb9d07c9d21 - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - offlinecommanddefinition_organization - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - offlinecommanddefinition_organization - organizationid - offlinecommanddefinition - organizationid - - 0 - - - eaf60a6a-90c4-42ee-9f5f-fb092352af47 - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - lk_organizationui_organizationid - None - 6.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - lk_organizationui_organizationid - organizationid - organizationui - organizationid - - 0 - - - 62b2846a-fffa-4fb4-9e80-841fb5e799e8 + + true + false + false + true + true + true + + sortid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SortId + + + IntegerType + + 5.0.0.0 + false + 0 + + None + 2147483647 + -2147483648 + + 0 + + + ae72b7db-97d9-43b6-b943-0264e5ac95d7 - false + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + false + + 59 + 1900-01-01T00:00:00 + + + + + e226e7d6-2241-db11-898a-0007e9e17ebd + + true + For internal use only. + 1033 + + + 1f6b005b-f408-49d9-b3e8-a09b90752a6d + + true + Kun til intern brug. + 1030 + + + + e226e7d6-2241-db11-898a-0007e9e17ebd + + true + For internal use only. + 1033 + + + + + + 43247b32-abf9-47c4-bb2f-33715b264a16 + + true + SQL Access Group + 1033 + + + 02b9bce2-8468-4b57-a98d-757c0ef74bb1 + + true + SQL-adgangsgruppe + 1030 + + + + 43247b32-abf9-47c4-bb2f-33715b264a16 + + true + SQL Access Group + 1033 + + + organization + + + + false + canmodifyauditsettings + false + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_business_units - None + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + sqlaccessgroupid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SqlAccessGroupId + + + UniqueidentifierType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_business_units - organizationid - businessunit - organizationid - - 0 - - - 3e1a3070-953a-405e-a0d0-cce152f0d318 + false + + + + + 7ce8410b-4d2d-4fb6-8cf4-b129aee86f27 - false + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 81 + 1900-01-01T00:00:00 + + + + + 7b90aa12-2341-db11-898a-0007e9e17ebd + + true + For internal use only. + 1033 + + + 1e0e0907-e7ce-46b7-a6ed-2c045bfe1e62 + + true + Kun til intern brug. + 1030 + + + + 7b90aa12-2341-db11-898a-0007e9e17ebd + + true + For internal use only. + 1033 + + + + + + e5501fa2-c661-4b2e-905b-041d0ca67f5b + + true + SQL Access Group Name + 1033 + + + fd244dbb-c53b-4b68-93df-d436adfe5721 + + true + Navn på SQL-adgangsgruppe + 1030 + + + + e5501fa2-c661-4b2e-905b-041d0ca67f5b + + true + SQL Access Group Name + 1033 + + + organization + + + + false + canmodifyauditsettings + false + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_sdkmessagerequestfield - None + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + sqlaccessgroupname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SqlAccessGroupName + + + StringType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sdkmessagerequestfield - organizationid - sdkmessagerequestfield - organizationid - - 0 - - - 93a22272-d9ba-f011-bbd3-7c1e52365f30 + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + 5fe33965-4517-412c-ad9d-9b6b80396f66 - false - + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 128 + 1900-01-01T00:00:00 + + + + + 5a54c2fa-2241-db11-898a-0007e9e17ebd + + true + Setting for SQM data collection, 0 no, 1 yes enabled + 1033 + + + da3eae08-ff05-470f-bb03-44815514d6f5 + + true + Indstilling for SQM-dataindsamling, 0 = nej, 1 = ja, aktiveret + 1030 + + + + 5a54c2fa-2241-db11-898a-0007e9e17ebd + + true + Setting for SQM data collection, 0 no, 1 yes enabled + 1033 + + + + + + 1c851da5-f682-4343-a94c-7524824543c4 + + true + Is SQM Enabled + 1033 + + + 2214d2ec-5224-4c55-88b9-6296c6e015b4 + + true + Er SQM aktiveret? + 1030 + + + + 1c851da5-f682-4343-a94c-7524824543c4 + + true + Is SQM Enabled + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - true - organization_maskingrule - None - 9.2.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_maskingrule - organizationid - maskingrule - organizationid - - 0 - - - 7c7c6972-8189-48cb-bc96-7f8d223dad20 - - false + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_complexcontrols - None + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + sqmenabled + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SQMEnabled + + + BooleanType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + false + 0 + + false + + 59f819c9-2c8f-48b2-9658-d14a74ac3e51 + + + + + 34e15b99-d114-4288-b99d-9e3adb5266a6 + + true + Setting for SQM data collection, 0 no, 1 yes enabled + 1033 + + + ade162c1-68f3-40b2-9e27-3447c6552574 + + true + Indstilling for SQM-dataindsamling, 0 = nej, 1 = ja, aktiveret + 1030 + + + + 34e15b99-d114-4288-b99d-9e3adb5266a6 + + true + Setting for SQM data collection, 0 no, 1 yes enabled + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_complexcontrols - organizationid - complexcontrol - organizationid - - 0 - - - 94e4e872-1521-468f-b018-55bf559ca46d + + + false + + false + iscustomizable + true + + false + true + organization_sqmenabled + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 7158aec5-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + 193c5307-963e-40f7-9015-adc20aa69a0e + + true + Nej + 1030 + + + + 7158aec5-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 7358aec5-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + f5f9da79-d7f7-4a0f-9a07-689b7acbe208 + + true + Ja + 1030 + + + + 7358aec5-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + abd2a200-d001-439c-b532-61aae57cfeeb - false + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + false + + 111 + 1900-01-01T00:00:00 + + + + + e9b71d04-b8f5-486a-bfcc-179ef4a49bb1 + + true + Unique identifier of the support user for the organization. + 1033 + + + 0c4d012f-a0a7-4604-b97d-23eed525178e + + true + Entydigt id for organisationens supportbruger. + 1030 + + + + e9b71d04-b8f5-486a-bfcc-179ef4a49bb1 + + true + Unique identifier of the support user for the organization. + 1033 + + + + + + 440c59c9-1d91-4fa9-b4a2-92d6c5e6b2e3 + + true + Support User + 1033 + + + 0385ae57-98a2-4e74-acbd-17a01955bef5 + + true + Supportbruger + 1030 + + + + 440c59c9-1d91-4fa9-b4a2-92d6c5e6b2e3 + + true + Support User + 1033 + + + organization + + + + false + canmodifyauditsettings + false + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_plugintype - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_plugintype - organizationid - plugintype - organizationid - - 0 - - - a6a03373-646b-417c-ab88-9bfc387d2b84 - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - customcontrol_organization - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - customcontrol_organization - organizationid - customcontrol - organizationid - - 0 - - - b47c2e74-b51c-4409-a728-a1458c8430a3 - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - MobileOfflineProfileItemAssociation_organization - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - MobileOfflineProfileItemAssociation_organization - organizationid - mobileofflineprofileitemassociation - organizationid - - 0 - - - b6347f74-a8d4-e511-8a95-00219b619656 + + true + false + false + true + false + true + + supportuserid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SupportUserId + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + 411d7fe8-aa98-443d-beee-1446c38d7d19 - false + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 254 + 1900-01-01T00:00:00 + + + + + deebf6aa-074a-49b0-8c8a-8c8c32b859fd + + true + Indicates whether SLA is suppressed. + 1033 + + + bfc7bae2-5737-4e0d-907d-e41d90ca5dd3 + + true + Angiver, om SLA er undertrykt. + 1030 + + + + deebf6aa-074a-49b0-8c8a-8c8c32b859fd + + true + Indicates whether SLA is suppressed. + 1033 + + + + + + 698df651-1dd3-403d-bb61-47d41ecc2d9c + + true + Is SLA suppressed + 1033 + + + 58d14661-3c4a-4ab3-8f1a-7ebe7ae4cb31 + + true + Er SLA undertrykt + 1030 + + + + 698df651-1dd3-403d-bb61-47d41ecc2d9c + + true + Is SLA suppressed + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable true - true - false - organization_delveactionhub - None - 8.1.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_delveactionhub - organizationid - delveactionhub - organizationid - - 0 - - - ffc25475-b3ba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable + canmodifyglobalfiltersettings false - - false - false - organization_synapselinkexternaltablestate - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_synapselinkexternaltablestate - organizationid - synapselinkexternaltablestate - organizationid - - 0 - - - dfc35475-b3ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable + + true + false + false + + false + isrenameable false - - false - false - organization_synapselinkprofile - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_synapselinkprofile - organizationid - synapselinkprofile - organizationid - - 0 - - - 19c55475-b3ba-f011-bbd3-7c1e52365f30 - - false - + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings false - - false - false - organization_synapselinkprofileentity - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_synapselinkprofileentity - organizationid - synapselinkprofileentity - organizationid - - 0 - - - ad11cf77-5931-4eef-9f83-783bb3fe01bf - - false - + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_routingruleitems - None + + true + false + false + true + true + true + + suppresssla + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SuppressSLA + + + BooleanType + 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + false + 0 + + false + + 81481d4d-0a84-4abe-8bbd-17037dc22f6c + + + + + 51ee9aa2-670a-4160-a68e-7b66cdccff14 + + true + Flag to suppress SLA. + 1033 + + + 8a00da01-2b21-4ecd-8945-6a528b98ebc2 + + true + Markér for at undertrykke SLA. + 1030 + + + + 51ee9aa2-670a-4160-a68e-7b66cdccff14 + + true + Flag to suppress SLA. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_routingruleitems - organizationid - routingruleitem - organizationid - - 0 - - - 76e98478-d7a2-4df0-ba49-9b238b7e5f21 + + + false + + false + iscustomizable + true + + false + true + organization_suppresssla + Boolean + 6.1.0.0 + + + + + + + + + + false + true + + + + 29d347d7-34cf-4851-8a11-afea166286f5 + + true + No + 1033 + + + d8ccda0f-e4ac-401d-a561-da3057433e49 + + true + Nej + 1030 + + + + 29d347d7-34cf-4851-8a11-afea166286f5 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + d2b7bb2a-d04f-469f-8aa0-52554162c474 + + true + Yes + 1033 + + + 296b1739-68ff-4c3a-95e8-3f12729f0f54 + + true + Ja + 1030 + + + + d2b7bb2a-d04f-469f-8aa0-52554162c474 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + b26d407e-5247-4729-b80c-a21ca1070862 - false + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 10222 + 2025-11-06T06:14:32.9430016 + + + + + 5c5a29bb-f55f-4d56-b3e8-b422e1b9f2fd + + true + Leave empty to use default setting. Set to on/off to enable/disable Admin emails when Solution Checker validation fails. + 1033 + + + 124ef36b-45a0-4eab-97c8-1f37dc59d4c3 + + true + Lad feltet være tomt for at bruge standardindstilling. Aktivér/deaktiver for at aktivere/deaktivere administratormails, når validering af løsningskontrol mislykkes. + 1030 + + + + 5c5a29bb-f55f-4d56-b3e8-b422e1b9f2fd + + true + Leave empty to use default setting. Set to on/off to enable/disable Admin emails when Solution Checker validation fails. + 1033 + + + + + + 8d49cea2-af60-4aa9-9e9b-d00d2bdb9488 + + true + Whether Admin emails are sent when Solution Checker validation fails + 1033 + + + 2544192c-67e4-4b30-8017-a43d09841dae + + true + Angiver, om der sendes administratormails, når valideringen af løsningskontrol mislykkes + 1030 + + + + 8d49cea2-af60-4aa9-9e9b-d00d2bdb9488 + + true + Whether Admin emails are sent when Solution Checker validation fails + 1033 + + + organization + + + + true + canmodifyauditsettings + false + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_applicationfile - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_applicationfile - organizationid - applicationfile - organizationid - - 0 - - - c408bc7f-aeba-f011-bbd3-7c1e52365f30 - - false - + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings false - - false - false - organization_catalog - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + suppressvalidationemails + 2025-11-06T06:14:32.9430016 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SuppressValidationEmails + + + BooleanType + + 9.1.0.0 + false + 0 + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_catalog - organizationid - catalog - organizationid - - 0 - - - eb1c8f80-d2ba-f011-bbd3-7c1e52365f30 + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 8db69320-0522-452b-992c-713653d1bf62 - false - + suppressvalidationemails + Virtual + false + false + false + true - iscustomizable + canmodifyadditionalsettings true - - false - false - organization_organizationdatasyncfnostate - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_organizationdatasyncfnostate - organizationid - organizationdatasyncfnostate - organizationid - - 0 - - - eb1d8f80-d2ba-f011-bbd3-7c1e52365f30 - - false + + 10223 + 2025-11-06T06:14:32.9730048 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false true iscustomizable true - false - false - organization_organizationdatasyncstate - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_organizationdatasyncstate - organizationid - organizationdatasyncstate - organizationid - - 0 - - - def98681-a38d-4496-af6a-92b427de8126 - - false - - false - iscustomizable - false - - true - false - organization_mailboxstatistics - None - 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_mailboxstatistics - organizationid - mailboxstatistics - organizationid - - 0 - - - 66ced981-b3ba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable + canmodifyglobalfiltersettings false - + false - false - organization_synapselinkprofileentitystate - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_synapselinkprofileentitystate - organizationid - synapselinkprofileentitystate - organizationid - - 0 - - - 5ccfd981-b3ba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings false - - false - false - organization_synapselinkschedule - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_synapselinkschedule - organizationid - synapselinkschedule - organizationid - - 0 - - - 062ae281-9e87-46db-a98c-aec4ef185b82 + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + suppressvalidationemailsname + 2025-11-06T06:14:32.9730048 + + true + canmodifyrequirementlevelsettings + None + + suppressvalidationemailsName + + + VirtualType + + 9.1.0.0 + true + + + + + 41c7dc01-0920-42ab-9e0f-21a4ebe3605c - false - + + Integer + false + false + false + false - iscustomizable + canmodifyadditionalsettings false - - true - false - organization_sdkmessageresponse - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sdkmessageresponse - organizationid - sdkmessageresponse - organizationid - - 0 - - - 4e754383-8265-48f5-bb19-d50e857c828d - - false + + 431 + 2025-11-06T00:19:21.3830016 + + + + + f7f6eded-1e2f-4614-b088-64929ea32885 + + true + Number of records to update per operation in Sync Bulk Pause/Resume/Cancel + 1033 + + + 7c79def8-3641-42dc-a7b6-b342d4865df9 + + true + Antallet af poster, der skal opdateres pr. handling i synkroniseringsmassehandling Pause/Genoptag/Annuller + 1030 + + + + f7f6eded-1e2f-4614-b088-64929ea32885 + + true + Number of records to update per operation in Sync Bulk Pause/Resume/Cancel + 1033 + + + + + + c7402996-4aa8-4467-ab4e-80e3cbb15f96 + + true + Number of records to update per operation in Sync Bulk Pause/Resume/Cancel + 1033 + + + e007cffd-7fe0-4c65-b1a3-227241bee163 + + true + Antallet af poster, der skal opdateres pr. handling i synkroniseringsmassehandling Pause/Genoptag/Annuller + 1030 + + + + c7402996-4aa8-4467-ab4e-80e3cbb15f96 + + true + Number of records to update per operation in Sync Bulk Pause/Resume/Cancel + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable - false + true - true - false - organization_connection_roles - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_connection_roles - organizationid - connectionrole - organizationid - - 0 - - - 0befdf85-aeba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable + canmodifyglobalfiltersettings false - - false - false - organization_catalogassignment - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_catalogassignment - organizationid - catalogassignment - organizationid - - 0 - - - bdefdf85-aeba-f011-bbd3-7c1e52365f30 - - false - + + true + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings false - - false - false - organization_internalcatalogassignment - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_internalcatalogassignment - organizationid - internalcatalogassignment - organizationid - - 0 - - - 8e4c2987-2bbd-419c-9717-6c3416c0d795 - - false - + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_saved_queries - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_saved_queries - organizationid - savedquery - organizationid - - 0 - - - a6e04b88-2ee3-e411-a1ed-00219b3e91e8 + + true + false + false + true + true + true + + syncbulkoperationbatchsize + 2025-11-06T00:19:21.3830016 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SyncBulkOperationBatchSize + + + IntegerType + + 9.1.0.0 + false + 0 + + None + 1000 + 1 + + 0 + + + c0a448b2-4202-4bb3-a51c-32141c438f8b - false + + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 432 + 2025-11-06T00:19:21.2130048 + + + + + 7457c9e7-2066-463e-8c20-cac974f34eb0 + + true + Max total number of records to update in database for Sync Bulk Pause/Resume/Cancel + 1033 + + + c5b02595-fb4e-4816-8759-3afdaba748cd + + true + Maks. antal i alt af poster, der skal opdateres i database ved synkroniseringsmassehandling Pause/Genoptag/Annuller + 1030 + + + + 7457c9e7-2066-463e-8c20-cac974f34eb0 + + true + Max total number of records to update in database for Sync Bulk Pause/Resume/Cancel + 1033 + + + + + + 603ddb77-39fa-43b7-a56b-501e0282ce8e + + true + Max total number of records to update in database for Sync Bulk Pause/Resume/Cancel + 1033 + + + 585ce73e-856a-47a7-9ac9-8cb46d3d2708 + + true + Maks. antal i alt af poster, der skal opdateres i database ved synkroniseringsmassehandling Pause/Genoptag/Annuller + 1030 + + + + 603ddb77-39fa-43b7-a56b-501e0282ce8e + + true + Max total number of records to update in database for Sync Bulk Pause/Resume/Cancel + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_officegraphdocument - None - 8.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_officegraphdocument - organizationid - officegraphdocument - organizationid - - 0 - - - f5ff1089-5b34-4b4b-a051-9f61521626aa - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - organization_appconfigmaster - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appconfigmaster - organizationid - appconfigmaster - organization_appconfigmaster_appconfigmaster - - 0 - - - d189cc89-35da-46dd-b00a-b07ce81292ba - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_entitydatasource - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_entitydatasource - organizationid - entitydatasource - organizationid - - 0 - - - 828a848a-a9ba-f011-bbd3-7c1e52365f30 + + true + false + false + true + true + true + + syncbulkoperationmaxlimit + 2025-11-06T00:19:21.2130048 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SyncBulkOperationMaxLimit + + + IntegerType + + 9.1.0.0 + false + 0 + + None + 500000 + 1 + + 0 + + + 4ef337f3-64c2-498a-9edf-a602ac7a3dc4 - false - + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 416 + 1900-01-01T00:00:00 + + + + + 6c409718-49a1-4cd0-bec3-ec4418a8dfd6 + + true + Indicates the selection to use the dynamics 365 azure sync framework or server side sync. + 1033 + + + 14015be6-4656-4e3e-b4fc-12f76c98a28d + + true + Angiver valget af at bruge strukturen til Azure Synkronisering til Dynamics 365 eller synkronisering på serversiden. + 1030 + + + + 6c409718-49a1-4cd0-bec3-ec4418a8dfd6 + + true + Indicates the selection to use the dynamics 365 azure sync framework or server side sync. + 1033 + + + + + + 184ec1d9-282c-48f9-85fc-4185b5f73942 + + true + Enable dynamics 365 azure sync framework for this organization. + 1033 + + + fd6c2bc5-0d14-4c7d-91b9-941dd3c15dbb + + true + Aktivér strukturen til Azure Synkronisering til Dynamics 365 for denne organisation. + 1030 + + + + 184ec1d9-282c-48f9-85fc-4185b5f73942 + + true + Enable dynamics 365 azure sync framework for this organization. + 1033 + + + organization + + + true + canmodifyauditsettings + true + + false + + false iscustomizable true - false - false - organization_solutioncomponentattributeconfiguration - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_solutioncomponentattributeconfiguration - organizationid - solutioncomponentattributeconfiguration - organizationid - - 0 - - - bd29b58b-cb24-4643-8520-dc9a550b5df4 - - false - - false - iscustomizable + false + false + + true + canmodifyglobalfiltersettings false - + true - false - organization_licenses - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + syncoptinselection + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SyncOptInSelection + + + BooleanType + + 8.2.0.0 + false + 0 + + false + + 2c5b0920-cc40-405f-a828-a61cac226628 + + + + + 8e96b611-456e-4de3-b76c-6c2cc730bd76 + + true + Information that specifies whether the dynamics 365 azure sync is enabled for this organization. + 1033 + + + 5cc8224a-2cc3-4a57-8d08-3c24ab7401d7 + + true + Oplysninger, der angiver, om Azure Synkronisering til Dynamics 365 er aktiveret for organisationen. + 1030 + + + + 8e96b611-456e-4de3-b76c-6c2cc730bd76 + + true + Information that specifies whether the dynamics 365 azure sync is enabled for this organization. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_licenses - organizationid - license - organizationid - - 0 - - - 87d9b08d-d8ba-f011-bbd3-7c1e52365f30 + + + false + + false + iscustomizable + true + + false + true + organization_syncoptinselection + Boolean + 8.2.0.0 + + + + + + + + + + false + true + + + + 501e572a-e073-413b-95e8-d1518b6a0531 + + true + Disable + 1033 + + + d42c5241-f78a-43f3-b15d-78313d0fa5a3 + + true + Deaktivér + 1030 + + + + 501e572a-e073-413b-95e8-d1518b6a0531 + + true + Disable + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + d32b45c3-4154-4ef1-928f-5e7baf968c05 + + true + Enable + 1033 + + + 6235f80e-44b1-46f9-adee-e016a3a70ed3 + + true + Aktivér + 1030 + + + + d32b45c3-4154-4ef1-928f-5e7baf968c05 + + true + Enable + 1033 + + + + 1 + + + + + 0 + + + 4e14db07-b311-4e7c-9e65-242a8b5d68b2 - false - + + Picklist + false + false + false + + false + canmodifyadditionalsettings + false + + 417 + 1900-01-01T00:00:00 + + + + + 8a451394-b32c-4d4f-94b9-dc2f8bc943b7 + + true + Indicates the status of the opt-in or opt-out operation for dynamics 365 azure sync. + 1033 + + + 410a247d-98f6-4f10-9508-63c439e40750 + + true + Angiver status for tilmelde- eller frameldehandlingen for Azure Synkronisering til Dynamics 365. + 1030 + + + + 8a451394-b32c-4d4f-94b9-dc2f8bc943b7 + + true + Indicates the status of the opt-in or opt-out operation for dynamics 365 azure sync. + 1033 + + + + + + 8dbf6754-fa65-46de-9c05-5ccbacb8e439 + + true + Status of opt-in or opt-out operation for dynamics 365 azure sync. + 1033 + + + 745d1242-e385-4a46-8ff5-b855d65bf3f4 + + true + Status for tilmelde- eller frameldehandling for Azure Synkronisering til Dynamics 365. + 1030 + + + + 8dbf6754-fa65-46de-9c05-5ccbacb8e439 + + true + Status of opt-in or opt-out operation for dynamics 365 azure sync. + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_msdyn_insightsstorevirtualentity - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_msdyn_insightsstorevirtualentity - organizationid - msdyn_insightsstorevirtualentity - organizationid - - 0 - - - 8e6d678e-b1ba-f011-bbd3-7c1e52365f30 - - false + + false - true + false iscustomizable true - false - false - organization_purviewlabelinfo - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + syncoptinselectionstatus + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SyncOptInSelectionStatus + + + PicklistType + + 8.2.0.0 + false + 0 + + + + 1e9a5c4b-fd62-402a-b421-92e56f79fa17 + + + + + 28b19f1c-2662-402a-b8dd-876684bd8d24 + + true + Indicates the status of opt-in or opt-out operations for dynamics 365 azure sync. + 1033 + + + 379ae724-4df4-4eef-9b14-92757a9225a4 + + true + Angiver status for tilmelde- eller frameldehandlinger for Azure Synkronisering til Dynamics 365. + 1030 + + + + 28b19f1c-2662-402a-b8dd-876684bd8d24 + + true + Indicates the status of opt-in or opt-out operations for dynamics 365 azure sync. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_purviewlabelinfo - organizationid - purviewlabelinfo - organizationid - - 0 - - - 226f678e-b1ba-f011-bbd3-7c1e52365f30 + + + false + + false + iscustomizable + true + + false + true + organization_syncoptinselectionstatus + Picklist + 8.2.0.0 + + + + + + + + + + + false + true + + + + 8ec4710d-e95f-4438-bfdc-fbca6a228e6e + + true + Processing + 1033 + + + 9da7cd1b-4503-41e4-967c-d4ed205fef62 + + true + Behandler + 1030 + + + + 8ec4710d-e95f-4438-bfdc-fbca6a228e6e + + true + Processing + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + ee476fc2-1580-445b-a9fd-d072d2996c57 + + true + Passed + 1033 + + + b6cb9057-ba95-42b1-914f-7386ed83864e + + true + Overført + 1030 + + + + ee476fc2-1580-445b-a9fd-d072d2996c57 + + true + Passed + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 65af19b8-fd57-4bc4-83f2-fbcdd51ee5c3 + + true + Failed + 1033 + + + 86e0d0ab-4217-4391-beba-e3bd23dbfbbf + + true + Mislykkedes + 1030 + + + + 65af19b8-fd57-4bc4-83f2-fbcdd51ee5c3 + + true + Failed + 1033 + + + + 3 + + + + + + + + 0 + + + + + 49260eef-a6f3-4894-abbb-0fc7c4b3fd0b - false + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + false + + 54 + 1900-01-01T00:00:00 + + + + + f453c2fa-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the system user for the organization. + 1033 + + + 98c725c0-df60-4d06-91d1-afeaac667de1 + + true + Entydigt id for organisationens systembruger. + 1030 + + + + f453c2fa-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the system user for the organization. + 1033 + + + + + + c20ad817-1a85-4866-99b1-326baa575e98 + + true + System User + 1033 + + + 3b2dd6f8-d4ab-4e56-92d5-aeab8f2a6cec + + true + Systembruger + 1030 + + + + c20ad817-1a85-4866-99b1-326baa575e98 + + true + System User + 1033 + + + organization + + + + false + canmodifyauditsettings + false + + false - true + false iscustomizable - true + false - false - false - organization_purviewlabelsynccache - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_purviewlabelsynccache - organizationid - purviewlabelsynccache - organizationid - - 0 - - - c1f1bf8e-a0e5-4518-a170-77fdd57b3e44 + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + systemuserid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SystemUserId + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + 86fa50fe-621a-4e64-8e8a-b763f7f2a16c - false + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 10186 + 2025-11-06T06:14:32.4729984 + + + + + b08efc60-cbbf-4ea6-854a-e9657ac833b0 + + true + Controls the appearance of option to search over a single DV search indexed table in model-driven apps’ global search in the header. + 1033 + + + 74f3eeba-621a-4b10-8f38-66171c99a6ff + + true + Styrer indstillingens udseende, når der skal søges via en enkelt indekseret tabel til DV-søgning, i global søgning fra modelstyrede apps i sidehovedet. + 1030 + + + + b08efc60-cbbf-4ea6-854a-e9657ac833b0 + + true + Controls the appearance of option to search over a single DV search indexed table in model-driven apps’ global search in the header. + 1033 + + + + + + bd4d1ea5-10d2-477e-a7ce-5d4347af9119 + + true + Table Scoped Dataverse Search In Apps + 1033 + + + 1b1b1311-1443-4af0-807b-fcefce9917f5 + + true + Tabelbaseret Dataverse-søgning i apps + 1030 + + + + bd4d1ea5-10d2-477e-a7ce-5d4347af9119 + + true + Table Scoped Dataverse Search In Apps + 1033 + + + organization + + + + true + canmodifyauditsettings + false + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - lk_documenttemplatebase_organization - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - lk_documenttemplatebase_organization - organizationid - documenttemplate - organizationid - - 0 - - - 49488790-a9ba-f011-bbd3-7c1e52365f30 - - false - + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings + false + + + false + canmodifysearchsettings true - - false - false - organization_solutioncomponentconfiguration - None + + true + true + true + true + true + true + + tablescopeddvsearchinapps + 2025-11-06T06:14:32.4729984 + + false + canmodifyrequirementlevelsettings + SystemRequired + + TableScopedDVSearchInApps + + + BooleanType + 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + false + 0 + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_solutioncomponentconfiguration - organizationid - solutioncomponentconfiguration - organizationid - - 0 - - - 3c498790-a9ba-f011-bbd3-7c1e52365f30 + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 3c99408a-1ab0-45b0-b19c-34204ce043f7 - false - + tablescopeddvsearchinapps + Virtual + false + false + false + true - iscustomizable + canmodifyadditionalsettings + true + + 10187 + 2025-11-06T06:14:32.5030016 + + + + + + + + + + organization + + + + true + canmodifyauditsettings false - - false - false - organization_solutioncomponentrelationshipconfiguration - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_solutioncomponentrelationshipconfiguration - organizationid - solutioncomponentrelationshipconfiguration - organizationid - - 0 - - - 9d905f91-aaba-f011-bbd3-7c1e52365f30 - - false + + false true iscustomizable true + false + false + + true + canmodifyglobalfiltersettings + false + false - false - organization_package - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_package - organizationid - package - organizationid - - 0 - - - 91915f91-aaba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable + isrenameable true - - false - false - organization_packagehistory - None - 9.0.0.4 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_packagehistory - organizationid - packagehistory - organizationid - - 0 - - - c50dbd91-217b-475f-8b0a-63c9bbc13654 + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + tablescopeddvsearchinappsname + 2025-11-06T06:14:32.5030016 + + true + canmodifyrequirementlevelsettings + None + + tablescopeddvsearchinappsName + + + VirtualType + + 9.1.0.0 + true + + + + + 9c18c995-8647-424f-885d-6725cc26943d - false - + + Integer + false + false + false + false - iscustomizable + canmodifyadditionalsettings false - - true - false - organization_entitymap - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_entitymap - organizationid - entitymap - organizationid - - 0 - - - ca276094-b1ba-f011-bbd3-7c1e52365f30 - - false - + + 52 + 1900-01-01T00:00:00 + + + + + a6dfeed0-2241-db11-898a-0007e9e17ebd + + true + Maximum number of aggressive polling cycles executed for email auto-tagging when a new email is received. + 1033 + + + 50b58b07-e3eb-4f88-9fe3-658d69b2a924 + + true + Det maksimale antal aggressive forespørgselscyklusser, der udføres for automatisk mærkning af mails, når der modtages en ny mail. + 1030 + + + + a6dfeed0-2241-db11-898a-0007e9e17ebd + + true + Maximum number of aggressive polling cycles executed for email auto-tagging when a new email is received. + 1033 + + + + + + d3e38100-0ac8-4ffe-8cf4-ef63a7490b21 + + true + Auto-Tag Max Cycles + 1033 + + + 6dcfd3c7-ddd9-4d73-8709-e329f6d9dbcc + + true + Markér maksimumcyklusser automatisk + 1030 + + + + d3e38100-0ac8-4ffe-8cf4-ef63a7490b21 + + true + Auto-Tag Max Cycles + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_sensitivitylabelattributemapping - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sensitivitylabelattributemapping - organizationid - sensitivitylabelattributemapping - organizationid - - 0 - - - 0fdbae96-b5ba-f011-bbd3-7c1e52365f30 - - false + + false - true + false iscustomizable true - false - false - organization_delegatedauthorization - None - 9.2.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_delegatedauthorization - organizationid - delegatedauthorization - organizationid - - 0 - - - b99f9597-3868-4e1a-affd-c0a08805b5eb - - false - - false - iscustomizable + false + false + + true + canmodifyglobalfiltersettings false - + true - false - organization_kb_articles - None + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + tagmaxaggressivecycles + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + TagMaxAggressiveCycles + + + IntegerType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_kb_articles - organizationid - kbarticle - organizationid - - 0 - - - a8833199-0c98-41f5-95c8-cb99c888c45b + false + 0 + + None + + + + 0 + + + ae0fed8f-1bd6-41fe-ad0c-b89504743116 - false - + + Integer + false + false + false + false - iscustomizable + canmodifyadditionalsettings false - - true - false - organization_azureserviceconnection - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_azureserviceconnection - organizationid - azureserviceconnection - organizationid - - 0 - - - b8f3fd9b-51a8-4d23-a051-a44b23ad2eaf - - false + + 90 + 1900-01-01T00:00:00 + + + + + e153c2fa-2241-db11-898a-0007e9e17ebd + + true + Normal polling frequency used for email receive auto-tagging in outlook. + 1033 + + + fa9c5832-d7a0-43aa-b871-79feb9235cfb + + true + Normal pollingfrekvens, anvendt til mail, mærkes automatisk i Outlook. + 1030 + + + + e153c2fa-2241-db11-898a-0007e9e17ebd + + true + Normal polling frequency used for email receive auto-tagging in outlook. + 1033 + + + + + + e097b29c-3f9b-412f-9b0b-c6cb4e36ab1e + + true + Auto-Tag Interval + 1033 + + + a3d0ba53-e009-4bac-8c0a-6b061a1d8b91 + + true + Markér interval automatisk + 1030 + + + + e097b29c-3f9b-412f-9b0b-c6cb4e36ab1e + + true + Auto-Tag Interval + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - Organization_MailboxTrackingFolder - None - 7.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - Organization_MailboxTrackingFolder - organizationid - mailboxtrackingfolder - organizationid - - 0 - - - 7fda6b9d-8419-e411-8e13-0024e8412450 + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + tagpollingperiod + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + TagPollingPeriod + + + IntegerType + + 5.0.0.0 + false + 0 + + None + 2147483647 + 0 + + 0 + + + bcc998f2-6e84-4a0c-99df-a1b80ec57160 - false + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 324 + 1900-01-01T00:00:00 + + + + + 6f550104-3706-482d-bf97-94af8f1e3c1e + + true + Select whether to turn on task flows for the organization. + 1033 + + + 4c786e40-7c4a-4b63-b738-8158eee04e70 + + true + Vælg, om du vil aktivere opgaveprocesser for organisationen. + 1030 + + + + 6f550104-3706-482d-bf97-94af8f1e3c1e + + true + Select whether to turn on task flows for the organization. + 1033 + + + + + + 822cb2ad-cace-4624-afb4-553f54fd8a5b + + true + Enable Task Flow processes for this Organization + 1033 + + + 3bf8b44a-097c-4908-b973-3b5cfa1813c1 + + true + Aktivér arbejdsprocesser for opgaver for denne organisation + 1030 + + + + 822cb2ad-cace-4624-afb4-553f54fd8a5b + + true + Enable Task Flow processes for this Organization + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_KnowledgeBaseRecord - None - 7.1.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_KnowledgeBaseRecord - organizationid - knowledgebaserecord - organizationid - - 0 - - - 229f0ea0-8847-41e9-9de7-0b9a7fe3996d - - false - + false + false + false - iscustomizable + isrenameable false - - true - true - organization_orginsightsmetric - None - 8.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + taskbasedflowenabled + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + TaskBasedFlowEnabled + + + BooleanType + + 8.0.0.0 + false + 0 + + false + + 763ebcad-f5c2-496f-bf27-285b1390c8f0 + + + + + 133a5938-4f69-4a15-b078-110b6cc88384 + + true + Information that specifies whether the Task Flow processes are enabled for the organization. + 1033 + + + 34fa8e29-2ee6-4631-b40f-52696c282321 + + true + Oplysninger, der angiver, om arbejdsprocesser for opgaver er aktiveret for organisationen. + 1030 + + + + 133a5938-4f69-4a15-b078-110b6cc88384 + + true + Information that specifies whether the Task Flow processes are enabled for the organization. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_orginsightsmetric - organizationid - orginsightsmetric - organization_orginsightsmetric - - 0 - - - 77107ca0-3268-46da-8cdf-42f59b480d61 + + + false + + false + iscustomizable + true + + false + true + organization_taskbasedflowenabled + Boolean + 8.0.0.0 + + + + + + + + + + false + true + + + + 57779c3d-6047-4d45-a438-19a72bc5c2c5 + + true + No + 1033 + + + 43fd46c4-1274-402c-8f6c-7af30b13ff1b + + true + Nej + 1030 + + + + 57779c3d-6047-4d45-a438-19a72bc5c2c5 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 969234f8-80dd-468d-8936-89d385c872dc + + true + Yes + 1033 + + + a3474e39-7c87-41c9-88cf-1d646b21ec58 + + true + Ja + 1030 + + + + 969234f8-80dd-468d-8936-89d385c872dc + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 979c6c5f-aad5-49d6-ae75-a7bf9fa04493 - false - + + Boolean + false + false + false + false - iscustomizable + canmodifyadditionalsettings + false + + 10163 + 2025-11-06T05:04:29.4370048 + + + + + 7a912928-0745-4216-8888-f5427be13587 + + true + Information on whether Teams Chat Data Sync is enabled. + 1033 + + + 06f56470-deb2-4138-90e4-b461c79781c6 + + true + Oplysninger, der angiver, om synkronisering af data til Teams-chat er aktiveret. + 1030 + + + + 7a912928-0745-4216-8888-f5427be13587 + + true + Information on whether Teams Chat Data Sync is enabled. + 1033 + + + + + + 26b7c894-f0db-4b87-95a7-201b50fe30c5 + + true + Enable Teams Chat Data Sync. + 1033 + + + 45862bdd-1687-47c4-b14f-4d3e5598a6bb + + true + Aktivér synkronisering af data til Teams-chat. + 1030 + + + + 26b7c894-f0db-4b87-95a7-201b50fe30c5 + + true + Enable Teams Chat Data Sync. + 1033 + + + organization + + + + true + canmodifyauditsettings true - - true - false - organization_expiredprocess - None - 8.2.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_expiredprocess - organizationid - expiredprocess - organizationid - - 0 - - - 40a984a0-f513-df11-a16e-00155d7aa40d - - false + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_metric - None - 5.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_metric - organizationid - metric - organizationid - - 0 - - - 1f4788a0-b491-48b0-ace5-0f640604c516 + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + teamschatdatasync + 2026-04-04T10:07:57.2029952 + + false + canmodifyrequirementlevelsettings + SystemRequired + + TeamsChatDataSync + + + BooleanType + + 9.2.0.0 + false + 0 + + false + + eadff010-ceba-f011-bbd3-7c1e52365f30 + + + + + ecdff010-ceba-f011-bbd3-7c1e52365f30 + + true + Enable or disable Teams Chat Data Sync. + 1033 + + + 755fcf20-e767-48ba-9da3-f16ad9f433ba + + true + Aktivér eller deaktiver synkronisering af data til Teams-chat. + 1030 + + + + ecdff010-ceba-f011-bbd3-7c1e52365f30 + + true + Enable or disable Teams Chat Data Sync. + 1033 + + + + + + ebdff010-ceba-f011-bbd3-7c1e52365f30 + + true + If Teams Chat Data Sync is enabled. + 1033 + + + efbe8cf8-f403-46e1-a6c1-c686ed9441c9 + + true + Hvis synkronisering af data til Teams-chat er aktiveret. + 1030 + + + + ebdff010-ceba-f011-bbd3-7c1e52365f30 + + true + If Teams Chat Data Sync is enabled. + 1033 + + + + true + + false + iscustomizable + false + + false + true + organization_teamschatdatasync + Boolean + 9.2.0.0 + + + + + + + + + + false + true + + + + 5e67feb6-634a-4658-a1c0-7ffcd389f96b + + true + No + 1033 + + + 863e7724-2729-425b-9106-60fb066da8b8 + + true + Nej + 1030 + + + + 5e67feb6-634a-4658-a1c0-7ffcd389f96b + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + c2cb872d-55c4-44aa-9d44-4062cf34f3be + + true + Yes + 1033 + + + fb4e76db-0aa1-4442-9922-550bf37b2508 + + true + Ja + 1030 + + + + c2cb872d-55c4-44aa-9d44-4062cf34f3be + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + e05af7fc-caf7-4edd-961d-e50dd7b7b6bd - false + teamschatdatasync + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10164 + 2025-11-06T05:04:29.4530048 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false - false + true iscustomizable - false + true - true - false - organization_entitydataprovider - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_entitydataprovider - organizationid - entitydataprovider - organizationid - - 0 - - - 296ab5a0-b452-48de-bc5f-650b485d6666 + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + teamschatdatasyncname + 2025-11-06T05:04:29.4530048 + + true + canmodifyrequirementlevelsettings + None + + teamschatdatasyncName + + + VirtualType + + 9.2.0.0 + true + + + + + 03882154-cce7-48ce-87b2-c0f1413df531 - false + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 10006 + 2025-11-06T01:14:20.8600064 + + + + + 59417696-e21b-4c83-8733-681b80b1c363 + + true + Instrumentation key for Application Insights used to log plugins telemetry. + 1033 + + + + 59417696-e21b-4c83-8733-681b80b1c363 + + true + Instrumentation key for Application Insights used to log plugins telemetry. + 1033 + + + + + + 014ce5ed-1bea-41c1-9eed-6fd14b39c4cc + + true + Telemetry Instrumentation Key + 1033 + + + + 014ce5ed-1bea-41c1-9eed-6fd14b39c4cc + + true + Telemetry Instrumentation Key + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable false + false + false + + false + canmodifyglobalfiltersettings + false + true - true - Organization_AsyncOperations - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - Organization_AsyncOperations - regardingobjectid - asyncoperation - regardingobjectid_organization - - 0 - - - a8d038a2-d24e-4799-b1bc-c23c83f03825 + false + false + + false + isrenameable + false + + false + false + false + false + + false + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + false + true + true + + telemetryinstrumentationkey + 2025-11-06T01:14:20.8600064 + + false + canmodifyrequirementlevelsettings + None + + TelemetryInstrumentationKey + + + StringType + + 9.1.0.0 + false + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 200 + + + 47a78757-ed80-44a9-9fcf-ce5e7eaa3389 - false + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 381 + 1900-01-01T00:00:00 + + + + + 642f0f02-9684-459e-ba20-1247b9592d38 + + true + Select whether to turn on text analytics for the organization. + 1033 + + + 56d3e572-061f-439f-83f9-e886cfbebd03 + + true + Vælg, om du vil aktivere tekstanalyse for organisationen. + 1030 + + + + 642f0f02-9684-459e-ba20-1247b9592d38 + + true + Select whether to turn on text analytics for the organization. + 1033 + + + + + + 60b4beaa-dec8-425d-be76-11915983617c + + true + Enable Text Analytics for this Organization + 1033 + + + e0e44d7a-cb85-4e2f-91ae-84ed5a22fb19 + + true + Aktivér tekstanalyse for denne organisation + 1030 + + + + 60b4beaa-dec8-425d-be76-11915983617c + + true + Enable Text Analytics for this Organization + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - MobileOfflineProfileItem_organization - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + textanalyticsenabled + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + TextAnalyticsEnabled + + + BooleanType + + 8.1.0.0 + false + 0 + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - MobileOfflineProfileItem_organization - organizationid - mobileofflineprofileitem - organizationid - - 0 - - - bc22c4a3-acbe-4aa9-837d-f75090e84acd + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + faa56999-d963-48bf-b4c8-462ee255bb1a - false + + Picklist + false + false + false + + false + canmodifyadditionalsettings + false + + 10 + 1900-01-01T00:00:00 + + + + + 9752c2fa-2241-db11-898a-0007e9e17ebd + + true + Information that specifies how the time is displayed throughout Microsoft CRM. + 1033 + + + 28dada27-cb66-4e29-aefe-3c251b3f8c75 + + true + Oplysninger, der angiver, hvordan klokkeslæt vises i Microsoft CRM. + 1030 + + + + 9752c2fa-2241-db11-898a-0007e9e17ebd + + true + Information that specifies how the time is displayed throughout Microsoft CRM. + 1033 + + + + + + 068bc363-5103-4dd6-b21e-f7030546c4e6 + + true + Time Format Code + 1033 + + + 37532880-d0ee-42ab-ad92-d68967bfc607 + + true + Kode for klokkeslætsformat + 1030 + + + + 068bc363-5103-4dd6-b21e-f7030546c4e6 + + true + Time Format Code + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_sdkmessageresponsefield - None + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + timeformatcode + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + TimeFormatCode + + + PicklistType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + false + 0 + + -1 + + 6d80c474-4f85-44e0-98c8-cf48a0291ddb + + + + + 2daec5e6-02b1-4295-b4d5-17c6a684101c + + true + Information that specifies how the time is displayed throughout Microsoft CRM. + 1033 + + + c53120d5-8329-4cb4-a2cb-f768d647765e + + true + Oplysninger, der angiver, hvordan klokkeslæt vises i Microsoft CRM. + 1030 + + + + 2daec5e6-02b1-4295-b4d5-17c6a684101c + + true + Information that specifies how the time is displayed throughout Microsoft CRM. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sdkmessageresponsefield - organizationid - sdkmessageresponsefield - organizationid - - 0 - - - 3a914aa5-5b98-496c-becd-4fe74321d7b6 + + + false + + false + iscustomizable + true + + false + true + organization_timeformatcode + Picklist + 5.0.0.0 + + + + + + 0 + + + + + 1ac10d3e-441f-48be-a98e-4175df54aa2e - false + timeformatcode + Virtual + false + false + false + + false + canmodifyadditionalsettings + false + + 48 + 1900-01-01T00:00:00 + + + + + + + + + + organization + + + + false + canmodifyauditsettings + false + + false false iscustomizable false - true - false - organization_saved_query_visualizations - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_saved_query_visualizations - organizationid - savedqueryvisualization - organizationid - - 0 - - - d303dda6-dbba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable + canmodifyglobalfiltersettings false - - false - false - organization_appaction - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appaction - organizationid - appaction - organizationid - - 0 - - - 9a04dda6-dbba-f011-bbd3-7c1e52365f30 - - false - + + true + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings false - - false - false - organization_appactionmigration - None - 9.1.0.13 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appactionmigration - organizationid - appactionmigration - organizationid - - 0 - - - fc803ea9-bcdd-49be-a88a-7429ca0b40a2 - - false - + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_sitemap - None + + false + false + false + true + false + false + + timeformatcodename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + TimeFormatCodeName + + + VirtualType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sitemap - organizationid - sitemap - organizationid - - 0 - - - fa5ec4a9-12a1-4ef8-8b61-9be50066d8cf + true + + + + + 3993d90d-ebd4-4ad3-8a59-0eaefa31cbb5 - false - + + String + false + false + false + false - iscustomizable + canmodifyadditionalsettings false - - true - false - organization_traceassociation - None - 6.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_traceassociation - organizationid - traceassociation - organizationid - - 0 - - - 9439ddaa-2555-e411-80cf-00155d211b05 - - false + + 40 + 1900-01-01T00:00:00 + + + + + de90aa12-2341-db11-898a-0007e9e17ebd + + true + Text for how time is displayed in Microsoft Dynamics 365. + 1033 + + + 0b1edb5b-34ed-4d92-bc93-2f8060b0eda3 + + true + Den tekst, der viser, hvordan klokkeslæt vises i Microsoft Dynamics 365. + 1030 + + + + de90aa12-2341-db11-898a-0007e9e17ebd + + true + Text for how time is displayed in Microsoft Dynamics 365. + 1033 + + + + + + a37169ca-2c8c-46e8-a8ef-1ef2e0a08050 + + true + Time Format String + 1033 + + + 89b3759f-4b4b-4c1b-91ef-d7cf7591f0be + + true + Streng for klokkeslætsformat + 1030 + + + + a37169ca-2c8c-46e8-a8ef-1ef2e0a08050 + + true + Time Format String + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_UserMapping - None - 7.1.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_UserMapping - organizationid - usermapping - organizationid - - 0 - - - 620a33ab-e551-4bc6-b2fc-6212ce37234d - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - organization_plugintypestatistic - None + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + timeformatstring + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + TimeFormatString + + + StringType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_plugintypestatistic - organizationid - plugintypestatistic - organizationid - - 0 - - - b95afaab-e470-492e-85e3-ca7f78ea886f + false + 0 + + Text + Auto + 255 + + + Text + + + false + 0 + 510 + + + 239f2100-c109-4e9d-b09e-aaedb69ddf87 - false + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 121 + 1900-01-01T00:00:00 + + + + + 1e3207ad-405c-4774-af63-e28ba988416a + + true + Text for how the time separator is displayed throughout Microsoft Dynamics 365. + 1033 + + + 8f2e7280-4e99-4809-b36f-61c7217cdfe1 + + true + Den tekst, der viser, hvordan timeseparatoren vises i Microsoft Dynamics 365. + 1030 + + + + 1e3207ad-405c-4774-af63-e28ba988416a + + true + Text for how the time separator is displayed throughout Microsoft Dynamics 365. + 1033 + + + + + + 16ca0e59-2bc7-477c-b266-2cf8a30eb083 + + true + Time Separator + 1033 + + + e9e4aef0-37fb-4616-92a9-6c5d577f0073 + + true + Klokkeslætsseparator + 1030 + + + + 16ca0e59-2bc7-477c-b266-2cf8a30eb083 + + true + Time Separator + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable - false + true - true - false - organization_calendars - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_calendars - organizationid - calendar - organizationid - - 0 - - - 68a3d5ac-dbba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable + canmodifyglobalfiltersettings false - - false - false - organization_appactionrule - None - 9.1.0.10 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appactionrule - organizationid - appactionrule - organizationid - - 0 - - - 5cbf7ead-caba-f011-bbd3-7c1e52365f30 + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + timeseparator + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + TimeSeparator + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 5 + + + Text + + + false + 0 + 10 + + + 69c0a771-84d7-41ca-8962-e5851cb86e90 - false + + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 104 + 1900-01-01T00:00:00 + + + + + 495e1ea2-954a-4a51-b69a-28fbcae096dd + + true + For internal use only. + 1033 + + + 7109be86-e6cd-4e36-b38d-999079992bf5 + + true + Kun til intern brug. + 1030 + + + + 495e1ea2-954a-4a51-b69a-28fbcae096dd + + true + For internal use only. + 1033 + + + + + + 446810af-b9a6-4653-bb95-6fb554a54a7c + + true + Time Zone Rule Version Number + 1033 + + + 17679583-4963-4bad-8748-670c982c6694 + + true + Versionsnummeret for tidszonereglen + 1030 + + + + 446810af-b9a6-4653-bb95-6fb554a54a7c + + true + Time Zone Rule Version Number + 1033 + + + organization + + + + false + canmodifyauditsettings + false + + false - true + false iscustomizable true - false - false - organization_msdyn_federatedarticleincident - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_msdyn_federatedarticleincident - organizationid - msdyn_federatedarticleincident - organizationid - - 0 - - - 56ca71b0-d7ba-f011-bbd3-7c1e52365f30 + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + timezoneruleversionnumber + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + TimeZoneRuleVersionNumber + + + IntegerType + + 5.0.0.0 + false + 0 + + None + 2147483647 + -1 + + 0 + + + 8264443e-9cd0-4c8e-914d-e8127576f283 - false - + + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 63 + 1900-01-01T00:00:00 + + + + + 599af6ca-2241-db11-898a-0007e9e17ebd + + true + Duration used for token expiration. + 1033 + + + 90cbd3cb-2107-44d4-b933-a012ba480a57 + + true + Den varighed, der bruges til tokenudløb. + 1030 + + + + 599af6ca-2241-db11-898a-0007e9e17ebd + + true + Duration used for token expiration. + 1033 + + + + + + f4af0579-715f-4cbf-b519-9c320e3f57bb + + true + Token Expiration Duration + 1033 + + + dfb94737-6a55-4f0b-bd35-e457b1dc37ea + + true + Varighed af tokenudløb + 1030 + + + + f4af0579-715f-4cbf-b519-9c320e3f57bb + + true + Token Expiration Duration + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_userrating - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_userrating - organizationid - userrating - organizationid - - 0 - - - e46461b1-e6ba-f011-bbd3-7c1e52365f30 - - false + + false - true + false iscustomizable true - false - false - organization_sa_suggestedaction - None - 9.2.0.5 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sa_suggestedaction - organizationid - sa_suggestedaction - organizationid - - 0 - - - a66561b1-e6ba-f011-bbd3-7c1e52365f30 + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + true + true + + tokenexpiry + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + TokenExpiry + + + IntegerType + + 5.0.0.0 + false + 0 + + None + + + + 0 + + + f7dadb81-7698-4905-a857-5762f209f5d3 - false - + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 53 + 1900-01-01T00:00:00 + + + + + dd99ba00-2341-db11-898a-0007e9e17ebd + + true + Token key. + 1033 + + + 2c451970-e5d9-443d-a160-142c0ee4fa80 + + true + Tokennøgle. + 1030 + + + + dd99ba00-2341-db11-898a-0007e9e17ebd + + true + Token key. + 1033 + + + + + + b57b10e1-382f-4345-b9b2-2b285a3c872e + + true + Token Key + 1033 + + + 8d8f395a-2e67-426b-9e1c-701937d64ab0 + + true + Tokennøgle + 1030 + + + + b57b10e1-382f-4345-b9b2-2b285a3c872e + + true + Token Key + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_sa_suggestedactioncriteria - None - 9.2.0.5 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sa_suggestedactioncriteria - organizationid - sa_suggestedactioncriteria - organizationid - - 0 - - - 785941b2-c545-47ae-85f5-2c7cafbb02d4 - - false + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - lk_fieldsecurityprofile_organizationid - None + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + false + true + true + + tokenkey + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + TokenKey + + + StringType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - lk_fieldsecurityprofile_organizationid - organizationid - fieldsecurityprofile - organizationid - - 0 - - - df4fe3b2-f1ba-f011-bbd3-7c1e52365f30 + false + 0 + + Text + Auto + 90 + + + Text + + + false + 0 + 180 + + + e7d78dcb-f0c5-4242-8aeb-b5e29c3b43a5 - false - + + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 160 + 2025-11-06T00:19:20.5400064 + + + + + 0dac662b-7a74-42ab-8618-e1bebae33be8 + + true + Tracelog record maximum age in days + 1033 + + + 72a64315-7d26-4e07-b48c-ef930760e486 + + true + Maksimal alder i dage for post med sporingslogfil. + 1030 + + + + 0dac662b-7a74-42ab-8618-e1bebae33be8 + + true + Tracelog record maximum age in days + 1033 + + + + + + efc91b40-cb93-4793-a950-3777a3976aef + + true + Tracelog record maximum age in days + 1033 + + + 0076bfe8-360a-45b6-a291-90c1acc2930e + + true + Maksimal alder i dage for post med sporingslogfil. + 1030 + + + + efc91b40-cb93-4793-a950-3777a3976aef + + true + Tracelog record maximum age in days + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_appentitysearchview - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_appentitysearchview - organizationid - appentitysearchview - organizationid - - 0 - - - 1a5bf0b2-028e-430e-b4ed-6b1a16b2fe41 - - false + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_emailserverprofile - None - 6.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_emailserverprofile - organizationid - emailserverprofile - organizationid - - 0 - - - 7575b0b3-caba-f011-bbd3-7c1e52365f30 + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + tracelogmaximumageindays + 2025-11-06T00:19:20.5400064 + + false + canmodifyrequirementlevelsettings + SystemRequired + + TraceLogMaximumAgeInDays + + + IntegerType + + 9.1.0.0 + false + 0 + + None + 2147483647 + 0 + + 0 + + + 8fbecbd6-0208-465c-993f-5612928b61b8 - false - + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 75 + 1900-01-01T00:00:00 + + + + + 6f1c9b1e-2341-db11-898a-0007e9e17ebd + + true + History list of tracking token prefixes. + 1033 + + + 771b85a2-6d9b-4dc3-aaef-fb53fc6861d4 + + true + Oversigt over sporing af tokenpræfikser. + 1030 + + + + 6f1c9b1e-2341-db11-898a-0007e9e17ebd + + true + History list of tracking token prefixes. + 1033 + + + + + + 724163b7-6063-485b-a6ec-d18b9705afb2 + + true + Tracking Prefix + 1033 + + + 8742367a-d0b8-417f-847b-67a29f4510cf + + true + Præfiks for sporing + 1030 + + + + 724163b7-6063-485b-a6ec-d18b9705afb2 + + true + Tracking Prefix + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_msdyn_knowledgeconfiguration - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_msdyn_knowledgeconfiguration - organizationid - msdyn_knowledgeconfiguration - organizationid - - 0 - - - bb0139b4-327d-41b2-8439-f651074bfd47 - - false + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - languagelocale_organization - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - languagelocale_organization - organizationid - languagelocale - organizationid - - 0 - - - c8b451b4-3b24-46a5-bdec-a72338d17492 - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - Organization_BulkDeleteFailures - None + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + trackingprefix + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + TrackingPrefix + + + StringType + 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - Organization_BulkDeleteFailures - regardingobjectid - bulkdeletefailure - regardingobjectid_organization - - 0 - - - b0790ab6-0865-44ac-a3a0-e4da2c4713dd + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + bf392b97-ec45-4e7a-b81d-6e5cba94a2de - false - + + Integer + false + false + false + false - iscustomizable + canmodifyadditionalsettings false - - true - false - lk_authorizationserver_organizationid - None - 6.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - lk_authorizationserver_organizationid - organizationid - authorizationserver - organizationid - - 0 - - - 85b09eb6-94a9-46fc-97f6-dbc0d69931bd - - false + + 68 + 1900-01-01T00:00:00 + + + + + e998ba00-2341-db11-898a-0007e9e17ebd + + true + Base number used to provide separate tracking token identifiers to users belonging to different deployments. + 1033 + + + bfbbd3d0-ef76-43e4-baef-2fced3ac2fb4 + + true + Basisnummer, der bruges til at angive separate sporingstoken-id'er til brugere, der tilhører forskellige installationer. + 1030 + + + + e998ba00-2341-db11-898a-0007e9e17ebd + + true + Base number used to provide separate tracking token identifiers to users belonging to different deployments. + 1033 + + + + + + 918e9c19-932b-432f-b567-faea13334150 + + true + Tracking Token Base + 1033 + + + 4c1b6fac-1bbf-4f2f-9eef-da5b0316a10a + + true + Basis for sporingstoken + 1030 + + + + 918e9c19-932b-432f-b567-faea13334150 + + true + Tracking Token Base + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_knowledgesearchmodel - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_knowledgesearchmodel - organizationid - knowledgesearchmodel - organizationid - - 0 - - - 273e6cb7-b2ba-f011-bbd3-7c1e52365f30 - - false - + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable + canmodifyissortablesettings false - - false - false - organization_entityanalyticsconfig - None - 1.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_entityanalyticsconfig - organizationid - entityanalyticsconfig - organizationid - - 0 - - - 8aeafdb8-f1ba-f011-bbd3-7c1e52365f30 + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + trackingtokenidbase + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + TrackingTokenIdBase + + + IntegerType + + 5.0.0.0 + false + 0 + + None + 2147483647 + 0 + + 0 + + + 9c04c4f7-64e8-4a7a-868a-355a450862d5 - false - + + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 91 + 1900-01-01T00:00:00 + + + + + f191aa12-2341-db11-898a-0007e9e17ebd + + true + Number of digits used to represent a tracking token identifier. + 1033 + + + 0d9946e2-7d70-4b33-a67c-df0df24ee232 + + true + Det antal cifre, der bruges til at repræsentere sporingstoken-id'et. + 1030 + + + + f191aa12-2341-db11-898a-0007e9e17ebd + + true + Number of digits used to represent a tracking token identifier. + 1033 + + + + + + b8853034-cf05-4a3a-a50a-17da40013ab1 + + true + Tracking Token Digits + 1033 + + + 4970e0e9-06d2-4f3e-bd41-08b2009bb6dd + + true + Cifre i sporingstoken + 1030 + + + + b8853034-cf05-4a3a-a50a-17da40013ab1 + + true + Tracking Token Digits + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - true - organization_mainfewshot - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_mainfewshot - organizationid - mainfewshot - organizationid - - 0 - - - cbebfdb8-f1ba-f011-bbd3-7c1e52365f30 - - false + + false - true + false iscustomizable true - false - false - organization_makerfewshot - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_makerfewshot - organizationid - makerfewshot - organizationid - - 0 - - - 5e3a63b9-acba-f011-bbd3-7c1e52365f30 + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + trackingtokeniddigits + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + TrackingTokenIdDigits + + + IntegerType + + 5.0.0.0 + false + 0 + + None + + + + 0 + + + bec6f958-4e51-4048-9459-2b30df4da525 - false + + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 31 + 1900-01-01T00:00:00 + + + + + e3e8af0c-2341-db11-898a-0007e9e17ebd + + true + Number of characters appended to invoice, quote, and order numbers. + 1033 + + + 2a3252af-c4cd-48af-be4e-f3e07b38ae71 + + true + Det antal tegn, der er tilføjet faktura-, tilbuds- og ordrenumre. + 1030 + + + + e3e8af0c-2341-db11-898a-0007e9e17ebd + + true + Number of characters appended to invoice, quote, and order numbers. + 1033 + + + + + + ffd10d3e-c3f3-421b-8b83-79e52217e647 + + true + Unique String Length + 1033 + + + 5d731ffe-7c5d-4e08-9c02-09f993203cbb + + true + Længde på entydig streng + 1030 + + + + ffd10d3e-c3f3-421b-8b83-79e52217e647 + + true + Unique String Length + 1033 + + + organization + + + + true + canmodifyauditsettings + true + + false false iscustomizable - false + true + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_relationshipattribute - None - 1.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_relationshipattribute - organizationid - relationshipattribute - organizationid - - 0 - - - 9c3f91be-b5ba-f011-bbd3-7c1e52365f30 + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + uniquespecifierlength + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + UniqueSpecifierLength + + + IntegerType + + 5.0.0.0 + false + 0 + + None + 6 + 4 + + 0 + + + bc6f5d67-d0e4-45b3-8260-9c949032051c - false - + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 394 + 1900-01-01T00:00:00 + + + + + d67eafde-e8bd-4b20-b658-764ea4f0338a + + true + Indicates whether email address should be unresolved if multiple matches are found + 1033 + + + 7518df02-b1b0-4474-9066-e2a75444f4b9 + + true + Angiver, om mailadressen skal være ufortolket, hvis der blev fundet flere match + 1030 + + + + d67eafde-e8bd-4b20-b658-764ea4f0338a + + true + Indicates whether email address should be unresolved if multiple matches are found + 1033 + + + + + + 3b65d7a1-ea33-46ab-8916-d1927de643a8 + + true + Set To,cc,bcc fields as unresolved if multiple matches are found + 1033 + + + 0f008e98-175c-42f3-b7aa-8a8594a7708b + + true + Angiv felterne Til, cc og bcc som ufortolkede, hvis der blev fundet flere match + 1030 + + + + 3b65d7a1-ea33-46ab-8916-d1927de643a8 + + true + Set To,cc,bcc fields as unresolved if multiple matches are found + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - true - organization_application - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_application - organizationid - application - organizationid - - 0 - - - fea5f9be-f1ba-f011-bbd3-7c1e52365f30 - - false + + false - true + false iscustomizable true - false - true - organization_searchattributesettings - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_searchattributesettings - organizationid - searchattributesettings - organizationid - - 0 - - - 23a7f9be-f1ba-f011-bbd3-7c1e52365f30 - - false - + false + false + true - iscustomizable - true - - false - true - organization_searchcustomanalyzer - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_searchcustomanalyzer - organizationid - searchcustomanalyzer - organizationid - - 0 - - - 49a8f9be-f1ba-f011-bbd3-7c1e52365f30 - - false - + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable - true - - false - true - organization_searchrelationshipsettings - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_searchrelationshipsettings - organizationid - searchrelationshipsettings - organizationid - - 0 - - - 18dd7ebf-bb35-4486-b2dc-e000680ddbbc - - false - + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_transactioncurrencies - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + true + false + false + true + true + true + + unresolveemailaddressifmultiplematch + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + UnresolveEmailAddressIfMultipleMatch + + + BooleanType + + 8.2.0.0 + false + 0 + + false + + 6e9bd2b2-8644-4afb-abdc-f903762323b9 + + + + + 4ff98614-9a96-4c5f-a02a-6b63b13a01e9 + + true + Flag to allow the user to unresolve email address if multiple match found + 1033 + + + c51668c7-982b-48e3-a355-b8e91052eb10 + + true + Marker med flag for at tillade brugeren at sende til ufortolkede mailadresser, hvis der blev fundet flere match + 1030 + + + + 4ff98614-9a96-4c5f-a02a-6b63b13a01e9 + + true + Flag to allow the user to unresolve email address if multiple match found + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_transactioncurrencies - organizationid - transactioncurrency - organizationid - - 0 - - - 57fe94c3-d1ba-f011-bbd3-7c1e52365f30 + + + false + + false + iscustomizable + true + + false + true + organization_unresolveemailaddressifmultiplematch + Boolean + 8.2.0.0 + + + + + + + + + + false + true + + + + e011e886-011e-4b9f-9f35-4b972634391c + + true + No + 1033 + + + 6575981b-4232-4deb-b2c6-4a2edbc2b1ea + + true + Nej + 1030 + + + + e011e886-011e-4b9f-9f35-4b972634391c + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 81341ccf-eb1e-4b56-b258-f9622256b55d + + true + Yes + 1033 + + + 8fa77ae6-741d-4267-ad76-356f5f5ad41d + + true + Ja + 1030 + + + + 81341ccf-eb1e-4b56-b258-f9622256b55d + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 73ec5ccd-3f11-4956-a409-5164e9649c98 - false - + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 259 + 1900-01-01T00:00:00 + + + + + 4e9bbe87-12f9-4492-bf09-cd8f7fc55984 + + true + Flag indicates whether to Use Inbuilt Rule For DefaultPricelist. + 1033 + + + 1b56c9ba-eade-4bd5-a38c-f8d679f3912f + + true + Flag angiver, om indbygget regel for DefaultPricelist skal bruges. + 1030 + + + + 4e9bbe87-12f9-4492-bf09-cd8f7fc55984 + + true + Flag indicates whether to Use Inbuilt Rule For DefaultPricelist. + 1033 + + + + + + 7613d825-0c1d-4e48-b22b-8a3d97193848 + + true + Use Inbuilt Rule For Default Pricelist Selection + 1033 + + + 1333631f-55c0-42ed-b576-9286e4eedd2f + + true + Brug indbygget regel for valg af standardprisliste + 1030 + + + + 7613d825-0c1d-4e48-b22b-8a3d97193848 + + true + Use Inbuilt Rule For Default Pricelist Selection + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_teammobileofflineprofilemembership - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_teammobileofflineprofilemembership - organizationid - teammobileofflineprofilemembership - organizationid - - 0 - - - a12ff2c3-7a65-47d1-b60b-b1b385d1660c - - false + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_sdkmessagerequest - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sdkmessagerequest - organizationid - sdkmessagerequest - organizationid - - 0 - - - d85716c5-f1ba-f011-bbd3-7c1e52365f30 - - false - + false + false + + false + isrenameable + false + + false + false + false + false + true - iscustomizable - true - - false - false - organization_viewasexamplequestion - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + useinbuiltrulefordefaultpricelistselection + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + UseInbuiltRuleForDefaultPricelistSelection + + + BooleanType + + 7.0.0.0 + false + 0 + + true + + a7d61c5c-544d-4aab-9953-f8a595fcc9e5 + + + + + 48a8d18d-2e45-433b-a930-a9d7bfce9f89 + + true + Use Built in Rule For DefaultPricelist Selection + 1033 + + + 88b8a7ef-a4ff-4a48-b85e-25eace40c21e + + true + Brug indbygget regel for valg af DefaultPricelist + 1030 + + + + 48a8d18d-2e45-433b-a930-a9d7bfce9f89 + + true + Use Built in Rule For DefaultPricelist Selection + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_viewasexamplequestion - organizationid - viewasexamplequestion - organizationid - - 0 - - - 8f5816c5-f1ba-f011-bbd3-7c1e52365f30 + + + false + + false + iscustomizable + false + + false + true + organization_usebuiltinrulefordefaultpricelistselection + Boolean + 7.0.0.0 + + + + + + + + + + false + true + + + + 78b0a6db-54e6-4c80-85ce-e7131933f7a7 + + true + No + 1033 + + + c2e2d09f-1b6d-4ce8-88b5-4af6f36c379a + + true + Nej + 1030 + + + + 78b0a6db-54e6-4c80-85ce-e7131933f7a7 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + e2957260-45b6-4833-87b3-8809b80cbdd1 + + true + Yes + 1033 + + + a187c104-954f-4f85-a1bf-8027a3112fe8 + + true + Ja + 1030 + + + + e2957260-45b6-4833-87b3-8809b80cbdd1 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 7e599577-35c6-46af-bbf3-3f570f685446 - false - + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 368 + 1900-01-01T00:00:00 + + + + + 24fa7c2f-d225-4e97-8b94-6751a37bfece + + true + Select whether to use legacy form rendering. + 1033 + + + 529b02bd-9454-41f5-8359-d9b6c661e9ea + + true + Vælg, om du vil bruge ældre formulargengivelse. + 1030 + + + + 24fa7c2f-d225-4e97-8b94-6751a37bfece + + true + Select whether to use legacy form rendering. + 1033 + + + + + + 6b26b2fb-b4a4-411c-af21-f2e31f64c854 + + true + Legacy Form Rendering + 1033 + + + b09c85b0-32f7-42e2-8a7a-58361fa912b3 + + true + Ældre formulargengivelse + 1030 + + + + 6b26b2fb-b4a4-411c-af21-f2e31f64c854 + + true + Legacy Form Rendering + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - true - organization_copilotexamplequestion - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_copilotexamplequestion - organizationid - copilotexamplequestion - organizationid - - 0 - - - a82dc8c5-a9d4-476f-b1fa-9954b4fa6edf - - false + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_sdkmessageprocessingstepimage - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sdkmessageprocessingstepimage - organizationid - sdkmessageprocessingstepimage - organizationid - - 0 - - - 8c48e5c5-c5ba-f011-bbd3-7c1e52365f30 - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - organization_territories - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_territories - organizationid - territory - organizationid - - 0 - - - 233eebc5-cdb4-454d-9e44-4a00e04848aa - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_isvconfigs - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + true + false + false + true + true + true + + uselegacyrendering + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + UseLegacyRendering + + + BooleanType + + 7.1.0.0 + false + 0 + + false + + 21156795-6e98-4320-8a6d-3ee943fb1fae + + + + + 8ab857cf-10e5-47e2-8f36-75d15e9270d6 + + true + Flag to use legacy form rendering. + 1033 + + + 946d4948-b220-4d43-be2e-66e6938023b3 + + true + Markeres for at bruge ældre formulargengivelse. + 1030 + + + + 8ab857cf-10e5-47e2-8f36-75d15e9270d6 + + true + Flag to use legacy form rendering. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_isvconfigs - organizationid - isvconfig - organizationid_organization - - 0 - - - ba96abc9-d7c6-4b82-ad35-5ea507d4fd37 + + + false + + false + iscustomizable + false + + false + true + organization_uselegacyrendering + Boolean + 8.0.0.0 + + + + + + + + + + false + true + + + + 4d731575-8cec-4340-b9bd-9cdaaf447054 + + true + No + 1033 + + + 26b6ba39-7305-4010-bd2e-b5d06e547d09 + + true + Nej + 1030 + + + + 4d731575-8cec-4340-b9bd-9cdaaf447054 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 71fd4b71-ee1a-4aad-8a77-732871c01d3a + + true + Yes + 1033 + + + a4077e26-9d2d-488e-a187-e2d807c7c28d + + true + Ja + 1030 + + + + 71fd4b71-ee1a-4aad-8a77-732871c01d3a + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 2c630ec2-aff8-4510-823a-720908ba9f26 - false - + + Boolean + false + false + false + false - iscustomizable + canmodifyadditionalsettings false - - true - false - organization_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sdkmessageprocessingstep - organizationid - sdkmessageprocessingstep - organizationid - - 0 - - - 63dfcbc9-d1ba-f011-bbd3-7c1e52365f30 - - false - + + 267 + 1900-01-01T00:00:00 + + + + + 30bff908-2b78-4226-860d-3de22279a84f + + true + Use position hierarchy + 1033 + + + 5824f9ad-68c3-47c4-afb1-d12623d7cf1a + + true + Brug placeringshierarki + 1030 + + + + 30bff908-2b78-4226-860d-3de22279a84f + + true + Use position hierarchy + 1033 + + + + + + 17d42229-b5f4-4754-aecd-e8171a283fec + + true + Use position hierarchy + 1033 + + + 9eb69669-7cfc-4970-8e50-c0cb676a95b3 + + true + Brug placeringshierarki + 1030 + + + + 17d42229-b5f4-4754-aecd-e8171a283fec + + true + Use position hierarchy + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_usermobileofflineprofilemembership - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_usermobileofflineprofilemembership - organizationid - usermobileofflineprofilemembership - organizationid - - 0 - - - 21f49ecd-bace-4829-b178-16da6cba2f78 - - false + + false false iscustomizable - false + true - true - false - organization_sharepointdata - None - 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sharepointdata - organizationid - sharepointdata - organizationid - - 0 - - - db98f3d0-dde3-4d4d-86c3-e87cc71a84d2 - - false - - false - iscustomizable + false + false + + true + canmodifyglobalfiltersettings false - + true - false - organization_aciviewmapper - None - 8.2.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_aciviewmapper - organizationid - aciviewmapper - organizationid - - 0 - - - 58662fd1-d3dc-436d-a4b7-7edaada56f5e - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - organization_queueitems - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_queueitems - organizationid - queueitem - organizationid - - 0 - - - 23cb25d4-9186-4a94-8199-819c1c01a942 - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_solution - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + true + false + false + true + true + true + + usepositionhierarchy + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + UsePositionHierarchy + + + BooleanType + + 7.0.0.0 + false + 0 + + false + + efefc028-f0f3-4ffe-9d7b-33170cf96305 + + + + + 50747603-8830-45e9-92cf-f288c14516dd + + true + Use Position hierarchy for hierarchical security model + 1033 + + + b048bfd2-e4f3-4e07-9155-c84a53c2d831 + + true + Brug placeringshierarki til hierarkisk sikkerhedsmodel + 1030 + + + + 50747603-8830-45e9-92cf-f288c14516dd + + true + Use Position hierarchy for hierarchical security model + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_solution - organizationid - solution - organizationid - - 0 - - - c75e54d4-d3ba-f011-bbd3-7c1e52365f30 + + + false + + false + iscustomizable + false + + false + true + organization_usepositionhierarchy + Boolean + 7.0.0.0 + + + + + + + + + + false + true + + + + ae7785d3-a8e9-4be9-98ed-ca286e1ef308 + + true + No + 1033 + + + a9fd4774-6198-44d5-a3ee-475ae88529bd + + true + Nej + 1030 + + + + ae7785d3-a8e9-4be9-98ed-ca286e1ef308 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 7037d378-5d43-44d3-9c29-1b8675b643dd + + true + Yes + 1033 + + + 4ef95500-176f-46ef-b7ab-3beacad7f3c6 + + true + Ja + 1030 + + + + 7037d378-5d43-44d3-9c29-1b8675b643dd + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 81ae31a4-1169-4d6e-acff-80b270e43d8e - false - - true - iscustomizable + + Boolean + false + false + false + + false + canmodifyadditionalsettings true - - false - false - organization_bulkarchiveoperationdetail - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_bulkarchiveoperationdetail - organizationid - bulkarchiveoperationdetail - organizationid - - 0 - - - 556054d4-d3ba-f011-bbd3-7c1e52365f30 - - false - + + 457 + 2025-11-06T00:19:20.4 + + + + + b6ad26b1-c4a1-4511-ab0e-00b9f3733a75 + + true + Indicates whether searching in a grid should use the Quick Find view for the entity. + 1033 + + + b6ad1a0b-3151-4d8c-be32-5c4f32636c2b + + true + Angiver, om søgning i et gitter skal bruge visningen for hurtig søgning efter objektet. + 1030 + + + + b6ad26b1-c4a1-4511-ab0e-00b9f3733a75 + + true + Indicates whether searching in a grid should use the Quick Find view for the entity. + 1033 + + + + + + 98d255aa-aa2d-47a5-bd1f-291201b8e888 + + true + Use Quick Find view when searching in grids + 1033 + + + 6fc2a065-0580-447c-9e6d-cdf1b23150b2 + + true + Brug visning for hurtig søgning, når der søges i gitre + 1030 + + + + 98d255aa-aa2d-47a5-bd1f-291201b8e888 + + true + Use Quick Find view when searching in grids + 1033 + + + organization + + + true - iscustomizable + canmodifyauditsettings true - - false - false - organization_metadataforarchival - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_metadataforarchival - organizationid - metadataforarchival - organizationid - - 0 - - - 4b5dedd5-e777-4697-81ad-cfb1101b43d6 - - false + + false false iscustomizable false + false + false + + true + canmodifyglobalfiltersettings + false + true - false - organization_webwizard - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_webwizard - organizationid - webwizard - organizationid - - 0 - - - c286b7d8-2eb4-4f76-b8d9-c638d8445d94 - - false - + false + false + false - iscustomizable + isrenameable false - - true - false - customcontrolresource_organization - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - customcontrolresource_organization - organizationid - customcontrolresource - organizationid - - 0 - - - a93144da-d918-4639-bbac-b4fd3e5cf28f - - false - + + false + false + false + false + + true + canmodifyissortablesettings + false + + false - iscustomizable + canmodifysearchsettings false - - true - false - organization_tracelog - None - 6.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - + + true + false + false + true + true + true + + usequickfindviewforgridsearch + 2025-11-06T00:19:20.4 + + false + canmodifyrequirementlevelsettings + SystemRequired + + UseQuickFindViewForGridSearch + + + BooleanType + + 9.1.0.0 + false + 0 + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_tracelog - organizationid - tracelog - organizationid - - 0 - - - 9c8fe5db-b2ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - false - organization_datalakeworkspace - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_datalakeworkspace - organizationid - datalakeworkspace - organizationid - - 0 - - - 7d91e5db-b2ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - false - organization_datalakeworkspacepermission - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_datalakeworkspacepermission - organizationid - datalakeworkspacepermission - organizationid - - 0 - - - 968294dd-b875-4a4e-a158-4465aab4e357 - - false - - false - iscustomizable - false - - true - false - lk_partnerapplication_organizationid - None - 6.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - lk_partnerapplication_organizationid - organizationid - partnerapplication - organizationid - - 0 - - - 887d18de-bdba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - organization_aicopilot - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_aicopilot - organizationid - aicopilot - organizationid - - 0 - - - 4b24c2e0-d3ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - false - organization_retentionoperationdetail - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_retentionoperationdetail - organizationid - retentionoperationdetail - organizationid - - 0 - - - 25cc36e2-b2ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - false - organization_dataprocessingconfiguration - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_dataprocessingconfiguration - organizationid - dataprocessingconfiguration - organizationid - - 0 - - - eacfade3-f0ad-4dfd-bd91-c30e00324d8a - - false - - false - iscustomizable - false - - true - false - userentityinstancedata_organization - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - userentityinstancedata_organization - objectid - userentityinstancedata - objectid_organization - - 0 - - - 7c539ee4-bdba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - organization_aiplugintitle - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_aiplugintitle - organizationid - aiplugintitle - organizationid - - 0 - - - a3807ae5-b4ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - false - organization_sharedlinksetting - None - 1.69.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sharedlinksetting - organizationid - sharedlinksetting - organizationid - - 0 - - - 8df875e6-5b47-4108-916e-7dd545b40c04 - - false - - false - iscustomizable - false - - true - false - organization_expanderevent - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_expanderevent - organizationid - expanderevent - organizationid - - 0 - - - ab2c6ce8-f113-4507-82b9-be59e9356052 - - false - - false - iscustomizable - false - - true - false - organization_business_unit_news_articles - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_business_unit_news_articles - organizationid - businessunitnewsarticle - organizationid - - 0 - - - fcd0cfe8-ca52-e411-80c6-00155d206d09 - - false - - false - iscustomizable - true - - true - false - organization_theme - None - 7.1.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_theme - organizationid - theme - organizationid - - 0 - - - cea681eb-7935-11e0-a0f5-1cc1de634cfe - - false - - false - iscustomizable - false - - true - false - organization_PostComment - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_PostComment - organizationid - postcomment - organizationid - - 0 - - - 7315fcf0-6a01-f111-8406-6045bde1ab47 - - false - - true - iscustomizable - true - - false - false - organization_msdyn_rtestructuredtemplate - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_msdyn_rtestructuredtemplate - organizationid - msdyn_rtestructuredtemplate - organizationid - - 0 - - - a4ed00f1-fee0-4112-b569-1f3786195628 - - false - - false - iscustomizable - false - - true - false - organization_importjob - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_importjob - organizationid - importjob - organizationid - - 0 - - - 9b3cadf1-a637-4682-ba93-daf0ab680aa2 - - false - - false - iscustomizable - false - - true - false - customcontroldefaultconfig_organization - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - customcontroldefaultconfig_organization - organizationid - customcontroldefaultconfig - organizationid - - 0 - - - 093a2af2-7fa4-4568-aa18-526502f115e1 - - false - - false - iscustomizable - false - - true - false - organization_system_users - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_system_users - organizationid - systemuser - organizationid_organization - - 0 - - - 95f3e3f4-2859-4d5b-a29e-5db627ae3a42 - - false - - false - iscustomizable - false - - true - false - organization_serviceendpoint - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_serviceendpoint - organizationid - serviceendpoint - organizationid - - 0 - - - 79f17ff5-d8ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - false - organization_roleeditorlayout - None - 9.2.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_roleeditorlayout - organizationid - roleeditorlayout - organizationid - - 0 - - - d9addff5-5534-4c8e-8a9c-3ee86f2f61e6 - - false - - false - iscustomizable - true - - true - false - organization_similarityrule - None - 8.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_similarityrule - organizationid - similarityrule - organizationid - - 0 - - - 895c56fd-6a01-f111-8406-6045bde1ab47 - - false - - true - iscustomizable - true - - false - false - organization_msdyn_rtetemplatemapping - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_msdyn_rtetemplatemapping - organizationid - msdyn_rtetemplatemapping - organizationid - - 0 - - - 441f94fd-c6c5-4ad4-86da-5569780b5b11 - - false - - false - iscustomizable - false - - true - false - organization_RoutingRules - None - 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_RoutingRules - organizationid - routingrule - organizationid - - 0 - - - 249dbbfd-cbba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - false - organization_attributeclusterconfig - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_attributeclusterconfig - organizationid - attributeclusterconfig - organizationid - - 0 - - - d99dbbfd-cbba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - false - organization_entityclusterconfig - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_entityclusterconfig - organizationid - entityclusterconfig - organizationid - - 0 - - - 875360fe-5fea-40a1-a185-870173b71ae9 - - false - - false - iscustomizable - false - - true - false - MobileOfflineProfile_organization - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - MobileOfflineProfile_organization - organizationid - mobileofflineprofile - organizationid - - 0 - - - db377aff-8802-4020-9446-85c96d6a49a2 - - false - - false - iscustomizable - false - - true - false - organization_ribbon_customization - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_ribbon_customization - organizationid - ribboncustomization - organizationid - - 0 - - - 41df9fff-28b4-463e-a550-5a1644200ff9 - - false - - false - iscustomizable - false - - true - false - lk_dataperformance_organizationid - None - 7.1.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - lk_dataperformance_organizationid - organizationid - dataperformance - organizationid - - 0 - - - - 8 - OrganizationOwned - - organizationid - - organizationid - - name - - - false - false - false - true - false - false - false - prvReadOrganization - dbd3ad17-b6bd-46c8-8db7-179fec82c937 - Read - - - false - false - false - true - false - false - false - prvWriteOrganization - 9f7b7e89-e5f6-41fd-8390-f06a7ec66d25 - Write - - - false - false - false - true - false - false - false - prvAppendToOrganization - e7753b34-17f3-400e-8396-88e24b8dc519 - AppendTo - - - - FilteredOrganization - Organization - - - false - Standard - true - 5.0.0.0 - entityimage - - false - canchangehierarchicalrelationship - false - - - false - Organizations - - - true - - organizations - 9999 - organizations - false - - true - canmodifymobileclientoffline - false - - false - false - - <fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false"> - <entity name="organization"> - <filter type="and"> - <condition attribute="modifiedon" operator="on-or-after" value="1900-01-01"/> - </filter> - </entity> - </fetch> - - false - false - - - - pluginassembly - - a082a3da-e001-485a-b3e6-c7bdc272bb5a - - 0 - - - a34a131c-27bf-4d4c-a52b-6193c47fb64c + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + d345db77-391c-40d2-a781-0c5999f0f46e - Picklist + Integer false false false false canmodifyadditionalsettings - true + false - 51 + 220 1900-01-01T00:00:00 - 6d072b81-3067-4b23-8777-3e7c31ef74dd + dea27255-bfe3-4b8f-ad59-bf3420fef8b7 true - Specifies mode of authentication with web sources like WebApp + The interval at which user access is checked for auditing. 1033 + + 72afd1a8-26bd-4310-b78b-4c6f3aee6e17 + + true + Det interval, som brugeradgang kontrolleres med i forbindelse med overvågning. + 1030 + - 6d072b81-3067-4b23-8777-3e7c31ef74dd + dea27255-bfe3-4b8f-ad59-bf3420fef8b7 true - Specifies mode of authentication with web sources like WebApp + The interval at which user access is checked for auditing. 1033 - b4f7cb2f-5991-4517-b091-f29af27c7539 + a49794a8-1870-4865-afc2-ad6b3a3899de true - Specifies mode of authentication with web sources + User Authentication Auditing Interval 1033 + + 3fc99845-e04d-4909-8b3d-ab5e3bb6d14a + + true + Interval for overvågning af brugergodkendelse + 1030 + - b4f7cb2f-5991-4517-b091-f29af27c7539 + a49794a8-1870-4865-afc2-ad6b3a3899de true - Specifies mode of authentication with web sources + User Authentication Auditing Interval 1033 - pluginassembly + organization @@ -216630,7 +230171,7 @@ false iscustomizable - false + true false false @@ -216659,274 +230200,108 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - authtype + useraccessauditinginterval 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - AuthType + UserAccessAuditingInterval - PicklistType + IntegerType - 9.0.0.0 + 5.0.0.0 false 0 - - - e11a3651-4466-4c6e-a696-4f20fb9c6f8b - - - - - db7a40b0-4276-44e6-995b-267002d2b76d - - true - Authentication Type for the Web sources like AzureWebApp, for example 0=BasicAuth - 1033 - - - - db7a40b0-4276-44e6-995b-267002d2b76d - - true - Authentication Type for the Web sources like AzureWebApp, for example 0=BasicAuth - 1033 - - - - - - 5a02fa43-2447-4043-b1ea-e02536254250 - - true - Auth Type - 1033 - - - - 5a02fa43-2447-4043-b1ea-e02536254250 - - true - Auth Type - 1033 - - - - false - - false - iscustomizable - false - - false - true - pluginassembly_authtype - Picklist - 8.2.0.0 - - - - - - - - - - - false - true - - - - d02e88b0-5127-4f0b-9f52-29b538a84a6e - - true - BasicAuth - 1033 - - - - d02e88b0-5127-4f0b-9f52-29b538a84a6e - - true - BasicAuth - 1033 - - - - 0 - - - - - - + None + 2147483647 + 0 0 - - - - - a891947c-b960-4a63-bf71-729e65551bfc - - authtype - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 52 - 1900-01-01T00:00:00 - - - - - - - - - - pluginassembly - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - authtypename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - AuthTypeName - - - VirtualType - - 9.0.0.0 - true - - - - 9ae75000-e510-4cdd-a596-24f5afdea527 + + f629c905-a614-4457-859c-1cb80d077093 - Picklist + Boolean false false false false canmodifyadditionalsettings - true + false - 35 + 181 1900-01-01T00:00:00 - 9ae75001-e510-4cdd-a596-24f5afdea527 + 849b09c0-9a2c-4a15-bde6-ab7c1f4df99d true - For internal use only. + Indicates whether the read-optimized form should be enabled for this organization. 1033 + + 66952acc-d53f-43e7-a5b2-7ff5f683f647 + + true + Angiver, om den læseoptimerede formular skal aktiveres for denne organisation. + 1030 + - 9ae75001-e510-4cdd-a596-24f5afdea527 + 849b09c0-9a2c-4a15-bde6-ab7c1f4df99d true - For internal use only. + Indicates whether the read-optimized form should be enabled for this organization. 1033 - 9ae75002-e510-4cdd-a596-24f5afdea527 + 54be9a92-5241-4fc2-85b6-88ed161afc9f true - Component State + Use Read-Optimized Form 1033 + + 3bc1adb6-5d2e-43ae-be29-2496642ce1a6 + + true + Brug læseoptimeret formular + 1030 + - 9ae75002-e510-4cdd-a596-24f5afdea527 + 54be9a92-5241-4fc2-85b6-88ed161afc9f true - Component State + Use Read-Optimized Form 1033 - pluginassembly + organization - false + true canmodifyauditsettings false @@ -216965,66 +230340,80 @@ canmodifysearchsettings false - false + true false false true - false + true true - componentstate + usereadform 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - ComponentState + UseReadForm - PicklistType + BooleanType 5.0.0.0 false 0 - -1 + false - faece09f-cefc-11de-8150-00155da18b00 + bc7f5214-9e70-4c7f-b671-c2190cbf88f3 - faece0a1-cefc-11de-8150-00155da18b00 + 99416573-2db6-4d02-8d4d-2cf0069e272e true - The state of this component. + Information that specifies whether the read-optimized form is enabled. 1033 + + e62be217-8d32-45c9-97a6-f63cddc7e1a0 + + true + Information, der angiver, om den læseoptimerede formular er aktiveret eller ej. + 1030 + - faece0a1-cefc-11de-8150-00155da18b00 + 99416573-2db6-4d02-8d4d-2cf0069e272e true - The state of this component. + Information that specifies whether the read-optimized form is enabled. 1033 - faece0a0-cefc-11de-8150-00155da18b00 + c556fab1-e270-4328-961b-4349e6267d14 true - Component State + Use Read-Optimized Form 1033 + + 90bf4ba6-cb60-4de3-a128-26d53c0110b3 + + true + Brug læseoptimeret formular + 1030 + - faece0a0-cefc-11de-8150-00155da18b00 + c556fab1-e270-4328-961b-4349e6267d14 true - Component State + Use Read-Optimized Form 1033 @@ -217035,165 +230424,107 @@ iscustomizable false - true + false true - componentstate - Picklist + organization_usereadform + Boolean 5.0.0.0 - - - - - - - - - - - false - true - - - - faece0a3-cefc-11de-8150-00155da18b00 - - true - Published - 1033 - - - - faece0a3-cefc-11de-8150-00155da18b00 + + + + + + + + + + false + true + + + + 67a22339-c1f0-41b8-895f-744160df9b12 - true - Published - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - faece0a5-cefc-11de-8150-00155da18b00 - - true - Unpublished - 1033 - - - - faece0a5-cefc-11de-8150-00155da18b00 + true + No + 1033 + + + 40447ef2-3270-4fb3-a1bb-d5df00104b75 - true - Unpublished - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - faece0a7-cefc-11de-8150-00155da18b00 - - true - Deleted - 1033 - - - - faece0a7-cefc-11de-8150-00155da18b00 + true + Nej + 1030 + + + + 67a22339-c1f0-41b8-895f-744160df9b12 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + fa44ec7d-c324-43e6-a7af-918de3a5e91a - true - Deleted - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 1f83e0bb-cefd-11de-8150-00155da18b00 - - true - Deleted Unpublished - 1033 - - - - 1f83e0bb-cefd-11de-8150-00155da18b00 + true + Yes + 1033 + + + 99af4de2-b8f7-4b1d-8635-d57cb836c054 - true - Deleted Unpublished - 1033 - - - - 3 - - - - + true + Ja + 1030 + + + + fa44ec7d-c324-43e6-a7af-918de3a5e91a + + true + Yes + 1033 + + + + 1 + + - 0 - - - - e9805c2f-7586-45b3-be1d-dafe4b4c9e46 + + 3a3a1560-2987-47b6-a14c-02325231a11f - String + Uniqueidentifier false false false false canmodifyadditionalsettings - true + false 3 1900-01-01T00:00:00 @@ -217201,32 +230532,60 @@ - 020b19a7-2241-db11-898a-0007e9e17ebd + c5d6a218-2341-db11-898a-0007e9e17ebd true - Bytes of the assembly, in Base64 format. + Unique identifier of the default group of users in the organization. 1033 + + ca78380f-1f77-4012-a38d-c76d4dbcc20b + + true + Entydigt id for standardgruppen for brugere i organisationen. + 1030 + - 020b19a7-2241-db11-898a-0007e9e17ebd + c5d6a218-2341-db11-898a-0007e9e17ebd true - Bytes of the assembly, in Base64 format. + Unique identifier of the default group of users in the organization. 1033 - - + + + ddd9c198-da4e-4060-beaf-978c0d0c1e5f + + true + User Group + 1033 + + + 85a9c68b-6f9f-4ada-9420-7309e254a32a + + true + Brugergruppe + 1030 + + + + ddd9c198-da4e-4060-beaf-978c0d0c1e5f + + true + User Group + 1033 + - pluginassembly + organization - true + false canmodifyauditsettings - true + false false @@ -217270,91 +230629,94 @@ true true - content + usergroupid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Content + UserGroupId - StringType + UniqueidentifierType 5.0.0.0 false - 0 + - TextArea - Auto - 1073741823 - - - TextArea - - - false - 0 - -1 - - 9a0aeb8a-d927-444a-8f18-271370004eff + + 6b2c4cb4-a3fa-42f2-b887-aa37b2df465f - Lookup + Boolean false false false false canmodifyadditionalsettings - true + false - 9 - 1900-01-01T00:00:00 + 10196 + 2025-11-06T06:14:32.6300032 - 110b19a7-2241-db11-898a-0007e9e17ebd + e9d60b0b-c855-4af1-8dae-d1c29e79a643 true - Unique identifier of the user who created the plug-in assembly. + Enable the user rating feature to show the NSAT score and comment to maker 1033 + + bdd0e987-7fb8-4824-8a13-77364f4b76f9 + + true + Aktivér brugerbedømmelsesfunktionen for at vise NSAT-scoren og kommentaren til udvikleren + 1030 + - 110b19a7-2241-db11-898a-0007e9e17ebd + e9d60b0b-c855-4af1-8dae-d1c29e79a643 true - Unique identifier of the user who created the plug-in assembly. + Enable the user rating feature to show the NSAT score and comment to maker 1033 - 32ee03f1-1311-4c87-81a0-e48bbed011c1 + 49e192f6-7198-4bd3-81aa-f59c107c3e84 true - Created By + Enable the user rating feature 1033 + + c86368b9-1b83-45f0-a563-533c71636447 + + true + Aktivér brugerbedømmelsesfunktionen + 1030 + - 32ee03f1-1311-4c87-81a0-e48bbed011c1 + 49e192f6-7198-4bd3-81aa-f59c107c3e84 true - Created By + Enable the user rating feature 1033 - pluginassembly + organization - false + true canmodifyauditsettings false @@ -217393,49 +230755,173 @@ canmodifysearchsettings true - false + true true true true - false + true true - createdby - 1900-01-01T00:00:00 + userratingenabled + 2025-11-06T06:14:32.6300032 false canmodifyrequirementlevelsettings - None + SystemRequired - CreatedBy + UserRatingEnabled - LookupType + BooleanType - 5.0.0.0 + 9.1.0.0 false - - - None - - systemuser - + 0 + + false + + 315e90f0-678b-4e4d-97f1-886050c3cb46 + + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + + + + 05aedb96-402f-4dff-86e7-54b577874b2f + + true + Information that specifies whether a feature is enabled for the organization. + 1033 + + + + + + + + false + + false + iscustomizable + false + + true + true + organization_featureenabled + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + + + + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + + + + f35414f9-6316-4617-82ea-dfb3602119e3 + + true + Yes + 1033 + + + + 1 + + + + + 0 - - 7567ac98-6590-4759-a0c7-c9bbca7ab3eb + + 096acae6-a947-4743-97e5-162ccff76c75 - createdby - String + userratingenabled + Virtual false false false - false + true canmodifyadditionalsettings true - 36 - 1900-01-01T00:00:00 + 10197 + 2025-11-06T06:14:32.6470016 @@ -217445,19 +230931,19 @@ - pluginassembly + organization - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -217466,13 +230952,13 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable - false + true false false @@ -217484,7 +230970,7 @@ false - false + true canmodifysearchsettings false @@ -217495,91 +230981,94 @@ false false - createdbyname - 2025-11-06T00:19:25.8700032 + userratingenabledname + 2025-11-06T06:14:32.6470016 - false + true canmodifyrequirementlevelsettings None - CreatedByName + userratingenabledName - StringType + VirtualType - 5.0.0.0 + 9.1.0.0 true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 320 + + - - c91c3a5a-0f79-4f06-85c2-0da16e6dc680 + + 4ffd0832-2b2b-42f1-ba4b-6ee7fa6044fc - DateTime + Boolean false false false false canmodifyadditionalsettings - true + false - 13 + 225 1900-01-01T00:00:00 - 080b19a7-2241-db11-898a-0007e9e17ebd + 77a89d43-e6ff-4491-996f-06aeaf614f9b true - Date and time when the plug-in assembly was created. + Indicates default protocol selected for organization. 1033 + + 7c049e02-48c7-4730-a172-1f164fa53655 + + true + Angiver den standardprotokol, der er valgt til organisationen. + 1030 + - 080b19a7-2241-db11-898a-0007e9e17ebd + 77a89d43-e6ff-4491-996f-06aeaf614f9b true - Date and time when the plug-in assembly was created. + Indicates default protocol selected for organization. 1033 - 448189c4-7da9-44fe-a776-74ed24f71de4 + 7dc3a1ed-9025-40f7-b126-7df8ad2c82bb true - Created On + User Skype Protocol 1033 + + 933a4028-91f5-4ba5-a06f-3bdc8629934f + + true + Brugerens Skype-protokol + 1030 + - 448189c4-7da9-44fe-a776-74ed24f71de4 + 7dc3a1ed-9025-40f7-b126-7df8ad2c82bb true - Created On + User Skype Protocol 1033 - pluginassembly + organization - false + true canmodifyauditsettings false @@ -217616,97 +231105,248 @@ false canmodifysearchsettings - true + false - false - true - true + true + false + false true - false + true true - createdon + useskypeprotocol 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - CreatedOn + UseSkypeProtocol - DateTimeType + BooleanType 5.0.0.0 false 0 - DateAndTime - Inactive + true + + 6a3a4153-d13e-4992-bd1c-6ec7e0d196a5 + + + + + c67bb09f-3e2c-4656-8ca4-ce69134780da + + true + Indicates default protocol selected for organization. + 1033 + + + 508da39c-69f9-47b7-87af-934fee0f8202 + + true + Angiver den standardprotokol, der er valgt til organisationen. + 1030 + + + + c67bb09f-3e2c-4656-8ca4-ce69134780da + + true + Indicates default protocol selected for organization. + 1033 + + + + + + 9c354445-17d0-433a-9e41-ee567f635fb9 + + true + Use Skype Protocol + 1033 + + + 0a3ad297-af24-499e-88aa-d8fa52226580 + + true + Brug Skype-protokol + 1030 + + + + 9c354445-17d0-433a-9e41-ee567f635fb9 + + true + Use Skype Protocol + 1033 + + + + false + + false + iscustomizable + false + + false + true + organization_useskypeprotocol + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 64e64f13-aea9-43c7-a05c-2c9983b86519 + + true + No + 1033 + + + e654c114-721e-4647-837c-bbbb53ebe014 + + true + Nej + 1030 + + + + 64e64f13-aea9-43c7-a05c-2c9983b86519 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + ecd2e34b-ad12-4bcf-8a74-6e3fb02678f6 + + true + Yes + 1033 + + + cf1c0f8e-f6d4-4cf8-957e-d7224370f4e3 + + true + Ja + 1030 + + + + ecd2e34b-ad12-4bcf-8a74-6e3fb02678f6 + + true + Yes + 1033 + + + + 1 + + + 0 - - false - canmodifybehavior - false - - - UserLocal - - - 6d4a7f5b-3664-4e4f-a271-4e8dccdd42dd + + b4026498-4f7c-4a90-9820-ffc7985ab91a - Lookup + Integer false false false false canmodifyadditionalsettings - true + false - 25 + 103 1900-01-01T00:00:00 - ea99e809-4b1d-47e2-9f73-9d1c22bea5a1 + 9b9fc12a-44e2-4937-9718-3812084a05e0 true - Unique identifier of the delegate user who created the pluginassembly. + Time zone code that was in use when the record was created. 1033 + + 6bc5d489-dcd7-441d-a8cc-7797e5b374e4 + + true + Den tidszonekode, der var i brug ved oprettelse af posten. + 1030 + - ea99e809-4b1d-47e2-9f73-9d1c22bea5a1 + 9b9fc12a-44e2-4937-9718-3812084a05e0 true - Unique identifier of the delegate user who created the pluginassembly. + Time zone code that was in use when the record was created. 1033 - 1dc518f9-6cfa-4d7d-87d9-115f78368285 + 228883d9-0492-4292-9d66-691a4a8e4c3d true - Created By (Delegate) + UTC Conversion Time Zone Code 1033 + + daac2f49-fb3e-43cb-8c94-0fff3400f4c8 + + true + Tidszonekode til UTC-konvertering + 1030 + - 1dc518f9-6cfa-4d7d-87d9-115f78368285 + 228883d9-0492-4292-9d66-691a4a8e4c3d true - Created By (Delegate) + UTC Conversion Time Zone Code 1033 - pluginassembly + organization @@ -217718,7 +231358,7 @@ false iscustomizable - false + true false false @@ -217747,40 +231387,41 @@ false canmodifysearchsettings - true + false - false - true - true + true + false + false true - false + true true - createdonbehalfby + utcconversiontimezonecode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOnBehalfBy + UTCConversionTimeZoneCode - LookupType + IntegerType 5.0.0.0 false - + 0 None - - systemuser - + 2147483647 + -1 + + 0 - 7ad2dbc9-5573-4f80-bcab-5fb817e1e65a + e3dcdf60-f69d-4fb7-9fc6-87e5c46c6cb9 - createdonbehalfby + String false false @@ -217788,32 +231429,74 @@ false canmodifyadditionalsettings - true + false - 33 + 107 1900-01-01T00:00:00 - - + + + d5c62022-0489-4c02-a083-e661bc4dd80b + + true + Hash of the V3 callout configuration file. + 1033 + + + 99b18e08-423d-4d64-8c59-a1434e578df9 + + true + Hash for V3-meddelelsen for konfigurationsfilen. + 1030 + + + + d5c62022-0489-4c02-a083-e661bc4dd80b + + true + Hash of the V3 callout configuration file. + 1033 + - - + + + 04f6dd45-0065-43ed-9047-6f305bef96aa + + true + V3 Callout Hash + 1033 + + + cd8ca5f1-2df5-4782-847c-ec58f3c3d88b + + true + Hashværdi for V3-meddelelsen + 1030 + + + + 04f6dd45-0065-43ed-9047-6f305bef96aa + + true + V3 Callout Hash + 1033 + - pluginassembly + organization - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -217849,27 +231532,27 @@ false true false - false + true - createdonbehalfbyname - 2025-11-06T00:19:25.1030016 + v3calloutconfighash + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOnBehalfByName + V3CalloutConfigHash StringType 5.0.0.0 - true + false 0 Text Auto - 100 + 256 Text @@ -217877,37 +231560,79 @@ false 0 - 320 + 512 - - 497f83ec-63d4-4c61-9b8f-29cae333b75a + + 60abb573-669c-4815-b429-518ecce8ad0e - createdonbehalfby - String + + Picklist false false false false canmodifyadditionalsettings - true + false - 34 - 1900-01-01T00:00:00 + 10220 + 2025-11-06T06:14:32.9270016 - - + + + cd7dd082-f11d-43b7-9db8-4028a15975c4 + + true + Validation mode for apps in this environment + 1033 + + + 6f534684-d9f4-47a7-a794-80cd0943f81d + + true + Valideringstilstand for apps i dette miljø + 1030 + + + + cd7dd082-f11d-43b7-9db8-4028a15975c4 + + true + Validation mode for apps in this environment + 1033 + - - + + + de48d922-eb30-4310-bfb5-98af1e075fd4 + + true + Validation mode for apps in this environment + 1033 + + + 1c81e454-2af6-4190-9d33-bb4d48f53baa + + true + Valideringstilstand for apps i dette miljø + 1030 + + + + de48d922-eb30-4310-bfb5-98af1e075fd4 + + true + Validation mode for apps in this environment + 1033 + - pluginassembly + organization - false + true canmodifyauditsettings false @@ -217944,6 +231669,292 @@ false canmodifysearchsettings + true + + true + true + true + true + true + true + + validationmode + 2025-11-06T06:14:32.9270016 + + false + canmodifyrequirementlevelsettings + SystemRequired + + ValidationMode + + + PicklistType + + 9.1.0.0 + false + 0 + + + + d7f626db-d7ba-f011-bbd3-7c1e52365f30 + + + + + d9f626db-d7ba-f011-bbd3-7c1e52365f30 + + true + Validation mode for apps in this environment + 1033 + + + b604b2fa-e884-4b8c-8cc1-e73abf0e4529 + + true + Valideringstilstand for apps i dette miljø + 1030 + + + + d9f626db-d7ba-f011-bbd3-7c1e52365f30 + + true + Validation mode for apps in this environment + 1033 + + + + + + d8f626db-d7ba-f011-bbd3-7c1e52365f30 + + true + Validation mode for apps in this environment + 1033 + + + e0249d13-66ce-4b93-863a-bc35ae45a5ae + + true + Valideringstilstand for apps i dette miljø + 1030 + + + + d8f626db-d7ba-f011-bbd3-7c1e52365f30 + + true + Validation mode for apps in this environment + 1033 + + + + true + + false + iscustomizable + false + + false + true + organization_validationmode + Picklist + 9.1.0.0 + + + + + + + + + + + false + true + + + + eba99a4e-bb50-42e7-9629-97d7b1dc9f7a + + true + Off + 1033 + + + 9446f27b-f4fd-40b5-a4c3-7aa980a6038d + + true + Fra + 1030 + + + + eba99a4e-bb50-42e7-9629-97d7b1dc9f7a + + true + Off + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + b253a3e0-07d1-4081-b1f5-79c6a8b75025 + + true + Warn + 1033 + + + 1e8e6022-1914-4fb6-81d8-cb9c36d14f60 + + true + Advar + 1030 + + + + b253a3e0-07d1-4081-b1f5-79c6a8b75025 + + true + Warn + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + ea01c0e2-b2be-4846-9294-cc8a946cfc56 + + true + Block + 1033 + + + 4951914b-499c-4c7e-93b3-e12cceececd8 + + true + Bloker + 1030 + + + + ea01c0e2-b2be-4846-9294-cc8a946cfc56 + + true + Block + 1033 + + + + 2 + + + + + + + + 0 + + + + + fb98cdeb-6ebd-4124-87c1-79cdae6a1d91 + + validationmode + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10221 + 2025-11-06T06:14:32.9430016 + + + + + + + + + + organization + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings false false @@ -217953,93 +231964,96 @@ false false - createdonbehalfbyyominame - 2025-11-06T00:19:26.8099968 + validationmodename + 2025-11-06T06:14:32.9430016 - false + true canmodifyrequirementlevelsettings None - CreatedOnBehalfByYomiName + validationmodeName - StringType + VirtualType - 5.0.0.0 + 9.1.0.0 true - 0 - - Text - Auto - 100 - createdonbehalfbyname - - Text - - - false - 0 - 320 + + - - b992553e-270b-4f06-bcc9-bd248cf7ac34 + + 589a220e-c616-4dc1-8431-261e9274dc15 - String + BigInt false false false false canmodifyadditionalsettings - true + false - 15 + 74 1900-01-01T00:00:00 - 62eccb78-272b-4f7b-b6fb-862c4d3c35dc + 61be6675-e377-48f8-a3dc-2ff26be76264 true - Culture code for the plug-in assembly. + Version number of the organization. 1033 + + 2afe7c6a-dd9f-4c84-b163-e650a20f933c + + true + Versionsnummeret for organisationen. + 1030 + - 62eccb78-272b-4f7b-b6fb-862c4d3c35dc + 61be6675-e377-48f8-a3dc-2ff26be76264 true - Culture code for the plug-in assembly. + Version number of the organization. 1033 - 1dcb1611-93e2-4f26-b1c3-f6b186b4ebc8 + 84606232-9e67-4251-87fe-7b04f333c19a true - Culture + Version Number 1033 + + 0fc594bd-3f00-4529-94f6-8c194b0f9fae + + true + Versionsnummer + 1030 + - 1dcb1611-93e2-4f26-b1c3-f6b186b4ebc8 + 84606232-9e67-4251-87fe-7b04f333c19a true - Culture + Version Number 1033 - pluginassembly + organization - true + false canmodifyauditsettings - true + false false @@ -218076,86 +232090,105 @@ canmodifysearchsettings false - true + false false false true - true + false true - culture + versionnumber 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - Culture + VersionNumber - StringType + BigIntType 5.0.0.0 false - 0 + - Text - Auto - 32 - - - Text - - - false - 0 - 64 + 9223372036854775807 + -9223372036854775808 - - c0ec1aad-8ba4-4915-8448-3dc8b9dd78fd + + 9542583f-f6d5-4331-af97-bad061164c5b - Integer + String false false false false canmodifyadditionalsettings - true + false - 2 + 299 1900-01-01T00:00:00 - ff0a19a7-2241-db11-898a-0007e9e17ebd + b885a3b6-9d6f-49b7-854a-7b1213b7c426 true - Customization Level. + Hash value of web resources. 1033 + + b147207c-fe22-4b07-8748-fd0f23b837e4 + + true + Hashværdi for webressourcer. + 1030 + - ff0a19a7-2241-db11-898a-0007e9e17ebd + b885a3b6-9d6f-49b7-854a-7b1213b7c426 true - Customization Level. + Hash value of web resources. 1033 - - + + + 6ecd492d-f966-4554-8a73-0d00c434d2b0 + + true + Web resource hash + 1033 + + + 9cddc1b0-1003-4b6f-ae59-f2fe3dc06685 + + true + Hash for webressource + 1030 + + + + 6ecd492d-f966-4554-8a73-0d00c434d2b0 + + true + Web resource hash + 1033 + - pluginassembly + organization - true + false canmodifyauditsettings - true + false false @@ -218192,88 +232225,108 @@ canmodifysearchsettings false - false + true false false true - false + true true - customizationlevel + webresourcehash 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - CustomizationLevel + WebResourceHash - IntegerType + StringType - 5.0.0.0 + 7.1.0.0 false 0 - None - 255 - -255 + Text + Auto + 100 + + + Text + + false 0 + 1024 - - bb8231f0-c848-492d-bd74-f4bf5660a10e + + 0b7584ef-6dac-48ba-86df-c240b003ad24 - String + Picklist false false false false canmodifyadditionalsettings - true + false - 47 + 12 1900-01-01T00:00:00 - a574123e-5713-49dd-9cd9-f1a32ef83366 + 5625e7d6-2241-db11-898a-0007e9e17ebd true - Description of the plug-in assembly. + Designated first day of the week throughout Microsoft Dynamics 365. 1033 + + 9b953727-b048-4fc9-ae9d-187ba740fc83 + + true + Den ugedag, der skal bruges som første ugedag i Microsoft Dynamics 365. + 1030 + - a574123e-5713-49dd-9cd9-f1a32ef83366 + 5625e7d6-2241-db11-898a-0007e9e17ebd true - Description of the plug-in assembly. + Designated first day of the week throughout Microsoft Dynamics 365. 1033 - 2ce20d0d-f160-40d4-9413-b241ed47990b + 0e2ef030-893d-44c4-a7a3-c446df150d4a true - Description + Week Start Day Code 1033 + + 25795cd2-5038-45db-b779-f7d21b8502da + + true + Koden for første dag i ugen + 1030 + - 2ce20d0d-f160-40d4-9413-b241ed47990b + 0e2ef030-893d-44c4-a7a3-c446df150d4a true - Description + Week Start Day Code 1033 - pluginassembly + organization @@ -218285,7 +232338,7 @@ false iscustomizable - false + true false false @@ -218314,45 +232367,178 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - description + weekstartdaycode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - Description + WeekStartDayCode - StringType + PicklistType 5.0.0.0 false 0 - Text - Auto - 256 - - - Text - + -1 + + 3ab6286b-c0b6-4eda-975f-ded14eada82d + + + + + 69839341-58d5-4c44-8792-a5e3469c91f4 + + true + Designated first day of the week throughout Microsoft CRM. + 1033 + + + 8549784a-2d80-4185-bc29-c0ae37e81d62 + + true + Den ugedag, der skal bruges som første ugedag i Microsoft CRM. + 1030 + + + + 69839341-58d5-4c44-8792-a5e3469c91f4 + + true + Designated first day of the week throughout Microsoft CRM. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + organization_weekstartdaycode + Picklist + 5.0.0.0 + + + + - false 0 - 512 + + + + + 4a7f155b-e07d-4aa4-ab0a-adee17540ee6 + + weekstartdaycode + Virtual + false + false + false + + false + canmodifyadditionalsettings + false + + 50 + 1900-01-01T00:00:00 + + + + + + + + + + organization + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + weekstartdaycodename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + WeekStartDayCodeName + + + VirtualType + + 5.0.0.0 + true + + - 72ac144b-4fb8-4df6-9898-0d3986b13e3f + 5fc03eea-1354-433b-8e8b-2ccd5adcd113 String @@ -218364,52 +232550,66 @@ canmodifyadditionalsettings false - 49 + 396 1900-01-01T00:00:00 - 17727bbe-9cd7-42bc-ac52-fcb567d14f82 + 01250433-e596-4726-a373-d9fcae4e4c79 true - Version in which the form is introduced. + For Internal use only. 1033 + + 931c5c5d-693e-48eb-995b-7494741da0ee + + true + Kun til intern brug. + 1030 + - 17727bbe-9cd7-42bc-ac52-fcb567d14f82 + 01250433-e596-4726-a373-d9fcae4e4c79 true - Version in which the form is introduced. + For Internal use only. 1033 - a5a9a9c4-26be-4a8c-91c3-8dca72106c0a + d5457d57-f59a-4340-842c-5ef2d9f5853c true - Introduced Version + For Internal use only. 1033 + + 868f2ac3-ad2f-43c3-93a9-6a7b7f03fced + + true + Kun til intern brug. + 1030 + - a5a9a9c4-26be-4a8c-91c3-8dca72106c0a + d5457d57-f59a-4340-842c-5ef2d9f5853c true - Introduced Version + For Internal use only. 1033 - pluginassembly + organization - true + false canmodifyauditsettings - true + false false @@ -218450,96 +232650,110 @@ false false true - false + true true - introducedversion + widgetproperties 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IntroducedVersion + WidgetProperties StringType - 6.0.0.0 + 8.2.0.0 false 0 - VersionNumber - Auto - 48 + Text + Disabled + 100 - VersionNumber + Text false 0 - 96 + 500 - - aaa3adab-f236-46fd-9b2f-40feec5708b1 + + 36ad21ef-023a-4603-b216-df315dfcb313 - ManagedProperty + Integer false false false false canmodifyadditionalsettings - true + false - 50 + 232 1900-01-01T00:00:00 - 370e545d-a93f-4058-8182-b1c787fc45a3 + ebc1a46f-f063-488c-a526-6f44214107be true - Information that specifies whether this component can be customized. + Denotes the Yammer group ID 1033 + + 3c7d2ae3-62f3-419c-a8a0-37d56f3c3716 + + true + Angiver Yammer-gruppe-id'et + 1030 + - 370e545d-a93f-4058-8182-b1c787fc45a3 + ebc1a46f-f063-488c-a526-6f44214107be true - Information that specifies whether this component can be customized. + Denotes the Yammer group ID 1033 - 8af88739-98c9-4546-83c6-ae9a51cddd56 + a19c49cb-aa1c-42a7-9d27-faa38a87277d true - Customizable + Yammer Group Id 1033 + + a0cb090e-e4cc-4db4-877e-0f7e8eb752b2 + + true + Yammer-gruppe-id + 1030 + - 8af88739-98c9-4546-83c6-ae9a51cddd56 + a19c49cb-aa1c-42a7-9d27-faa38a87277d true - Customizable + Yammer Group Id 1033 - pluginassembly + organization - false + true canmodifyauditsettings - false + true false @@ -218576,93 +232790,108 @@ canmodifysearchsettings false - true + false false false true true true - iscustomizable + yammergroupid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsCustomizable + YammerGroupId - ManagedPropertyType + IntegerType - 8.2.0.0 + 5.0.0.0 false - + 0 - iscustomizableanddeletable - - 0 - Boolean + None + 2147483647 + 0 + + 0 - - 12351ff2-69e5-11df-a50e-f4ce462d9b5d + + 661ea249-0f36-4cc6-8091-fdd56b07903c - ManagedProperty + String false false false false canmodifyadditionalsettings - true + false - 48 + 233 1900-01-01T00:00:00 - 12351ff3-69e5-11df-a50e-f4ce462d9b5d + e8df9942-af99-4acd-9967-c24cf6684903 true - Information that specifies whether this component should be hidden. + Denotes the Yammer network permalink 1033 + + 372f944e-c257-4573-b12c-b23f367c8324 + + true + Angiver permalinket til Yammer-netværket + 1030 + - 12351ff3-69e5-11df-a50e-f4ce462d9b5d + e8df9942-af99-4acd-9967-c24cf6684903 true - Information that specifies whether this component should be hidden. + Denotes the Yammer network permalink 1033 - 12351ff4-69e5-11df-a50e-f4ce462d9b5d + d3dac616-c97d-452c-8e0a-6c8b5c737bf8 true - Hidden + Yammer Network Permalink 1033 + + 8becbe3d-5d14-4b7e-bf97-3ae18dfe80c0 + + true + Permalink til Yammer-netværk + 1030 + - 12351ff4-69e5-11df-a50e-f4ce462d9b5d + d3dac616-c97d-452c-8e0a-6c8b5c737bf8 true - Hidden + Yammer Network Permalink 1033 - pluginassembly + organization - false + true canmodifyauditsettings - false + true false @@ -218671,7 +232900,7 @@ false false - true + false true canmodifyglobalfiltersettings @@ -218699,36 +232928,43 @@ canmodifysearchsettings false - true + false false false true true true - ishidden + yammernetworkpermalink 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsHidden + YammerNetworkPermalink - ManagedPropertyType + StringType 5.0.0.0 false - + 0 - ishidden - - 0 - Boolean + Text + Auto + 100 + + + Text + + + false + 0 + 512 - cac46ac7-e5d2-4e4d-adee-2e31aa5dfed0 + 5c15d8a1-0440-4c38-a625-e42c2931cb06 Boolean @@ -218738,48 +232974,62 @@ false canmodifyadditionalsettings - true + false - 43 + 230 1900-01-01T00:00:00 - 31e5422d-e2a0-43eb-bf7e-1acb27e29b08 + 71835989-d808-41d2-865b-f0aa18723c6d true - Information that specifies whether this component is managed. + Denotes whether the OAuth access token for Yammer network has expired 1033 + + 688ebc8b-edf6-4582-8531-1e1e8c6e2064 + + true + Angiver, om OAuth-adgangstokenet til Yammer-netværket er udløbet + 1030 + - 31e5422d-e2a0-43eb-bf7e-1acb27e29b08 + 71835989-d808-41d2-865b-f0aa18723c6d true - Information that specifies whether this component is managed. + Denotes whether the OAuth access token for Yammer network has expired 1033 - 9d756fcc-2231-4336-a874-b40e2c66d35a + 60b4e53c-e93b-44bb-b692-5ca988620188 true - State + Yammer OAuth Access Token Expired 1033 + + 5375c914-74a5-4366-ba35-5c60bfe9f438 + + true + Yammer OAuth-adgangstoken er udløbet + 1030 + - 9d756fcc-2231-4336-a874-b40e2c66d35a + 60b4e53c-e93b-44bb-b692-5ca988620188 true - State + Yammer OAuth Access Token Expired 1033 - pluginassembly + organization @@ -218824,19 +233074,19 @@ false false - true + false true - false + true true - ismanaged + yammeroauthaccesstokenexpired 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsManaged + YammerOAuthAccessTokenExpired BooleanType @@ -218847,43 +233097,36 @@ false - 9d04e035-5408-4c1d-a5aa-20445a02f691 + 09aa7b5c-ccc9-4bc9-9b00-d420266976b1 - b41954a2-f3a5-47e9-ae13-ceb49de4465b + a9328b92-ec85-4ac6-b286-7509f8d55ac0 true - Information about whether the current component is managed. + Is Yammer OAuth token expired 1033 - - - b41954a2-f3a5-47e9-ae13-ceb49de4465b - - true - Information about whether the current component is managed. - 1033 - - - - - 45a188b1-91a8-4019-b582-cebda8081064 + 651691b7-8a89-41e8-8652-3e5647e9687a true - Is Component Managed - 1033 + Er Yammer OAuth-tokenet udløbet? + 1030 - 45a188b1-91a8-4019-b582-cebda8081064 + a9328b92-ec85-4ac6-b286-7509f8d55ac0 true - Is Component Managed + Is Yammer OAuth token expired 1033 + + + + false @@ -218892,9 +233135,9 @@ iscustomizable false - true + false true - ismanaged + organization_yammeroauthtokenexpired Boolean 5.0.0.0 @@ -218911,18 +233154,25 @@ - 443c7078-b7cb-47e7-8547-08dfa82950d0 + fad01451-407a-4c04-9313-e280699ffeab true - Unmanaged + No 1033 + + 1a0087eb-c4b5-4095-b87b-b678ddd30fc5 + + true + Nej + 1030 + - 443c7078-b7cb-47e7-8547-08dfa82950d0 + fad01451-407a-4c04-9313-e280699ffeab true - Unmanaged + No 1033 @@ -218944,18 +233194,25 @@ - ec886b5b-7e97-4c62-b30c-bf295639d540 + 64249bb7-46c0-429f-8e2e-b059855780d8 true - Managed + Yes 1033 + + ad91f12a-da67-402d-8f4e-e77520507ce5 + + true + Ja + 1030 + - ec886b5b-7e97-4c62-b30c-bf295639d540 + 64249bb7-46c0-429f-8e2e-b059855780d8 true - Managed + Yes 1033 @@ -218967,99 +233224,8 @@ 0 - - 93df3298-a8e6-4d58-b5e2-22fe2da56f15 - - ismanaged - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 44 - 1900-01-01T00:00:00 - - - - - - - - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - ismanagedname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - IsManagedName - - - VirtualType - - 5.0.0.0 - true - - - - 298ebc25-39da-4e4a-a5a5-e5ecb1ce07ee + c2d88fe0-d809-4156-8f68-c756902e2c28 Picklist @@ -219069,48 +233235,62 @@ false canmodifyadditionalsettings - true + false - 22 + 234 1900-01-01T00:00:00 - 9cba9ff1-7098-44ad-a977-1bfd9a76c884 + a94e632a-5d7c-42fb-bf7b-63d704d5a7db true - Information about how the plugin assembly is to be isolated at execution time; None / Sandboxed. + Internal Use Only 1033 + + 14ab8b3e-a037-45fa-8c87-34132a8b1d48 + + true + Kun til intern brug + 1030 + - 9cba9ff1-7098-44ad-a977-1bfd9a76c884 + a94e632a-5d7c-42fb-bf7b-63d704d5a7db true - Information about how the plugin assembly is to be isolated at execution time; None / Sandboxed. + Internal Use Only 1033 - 947ce7df-823a-40b5-973d-f3204ca0a5b6 + 88c26dfa-0a75-42f0-a8f1-7b30f0467447 true - Isolation Mode + Internal Use Only 1033 + + 4d6545dd-39e4-4c2b-ab9f-914c1f6b71dc + + true + Kun til intern brug + 1030 + - 947ce7df-823a-40b5-973d-f3204ca0a5b6 + 88c26dfa-0a75-42f0-a8f1-7b30f0467447 true - Isolation Mode + Internal Use Only 1033 - pluginassembly + organization @@ -219140,7 +233320,7 @@ false false - true + false false false @@ -219153,21 +233333,21 @@ canmodifysearchsettings false - true + false false false true true true - isolationmode + yammerpostmethod 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsolationMode + YammerPostMethod PicklistType @@ -219176,45 +233356,38 @@ false 0 - 1 + 0 - ce183046-4f11-418c-87cd-930c028bc427 + 8ed74c99-6978-4595-9ca5-6d4c410ed120 - 08334f91-a887-48ea-9e64-a4e5e110390a + 3c6d8ed2-2370-4bae-a5f0-200a9bbde424 true - Information about how the plugin assembly is to be isolated at execution time; None / Sandboxed / External. + Yammer Post Method 1033 - - - 08334f91-a887-48ea-9e64-a4e5e110390a - - true - Information about how the plugin assembly is to be isolated at execution time; None / Sandboxed / External. - 1033 - - - - - d59064b2-a62a-465e-abf2-b209b03ac31a + 6c78afed-bc3b-4cf5-87c8-0b4925445553 true - Isolation Mode - 1033 + Yammer-sendemetode + 1030 - d59064b2-a62a-465e-abf2-b209b03ac31a + 3c6d8ed2-2370-4bae-a5f0-200a9bbde424 true - Isolation Mode + Yammer Post Method 1033 + + + + false @@ -219225,7 +233398,7 @@ false true - pluginassembly_isolationmode + organization_yammerpostmethod Picklist 5.0.0.0 @@ -219243,56 +233416,30 @@ - b2a38cb7-9d48-4810-ba63-537cf5ba902c + 108fea4d-06ee-4a5e-bb55-bfaa2dc201b2 true - None + Public 1033 - - - b2a38cb7-9d48-4810-ba63-537cf5ba902c - - true - None - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - d1559efd-ad2d-4bcd-883d-0694ece28a42 + ef3c3409-d12b-42cd-8d2a-ab467d2dbe8f true - Sandbox - 1033 + Offentligt + 1030 - d1559efd-ad2d-4bcd-883d-0694ece28a42 + 108fea4d-06ee-4a5e-bb55-bfaa2dc201b2 true - Sandbox + Public 1033 - 2 + 0 @@ -219309,23 +233456,30 @@ - 234069fb-4210-4ef8-82e1-585e04c91e39 + 08895363-6593-412f-b7e7-2a2868eb0cc3 true - External + Private 1033 + + 55dc5395-2302-4cd2-a904-c37def8e5aa4 + + true + Privat + 1030 + - 234069fb-4210-4ef8-82e1-585e04c91e39 + 08895363-6593-412f-b7e7-2a2868eb0cc3 true - External + Private 1033 - 3 + 1 @@ -219337,348 +233491,73 @@ - - dc3a28b7-90b6-4667-8804-de85d442b902 + + 9f654d6f-1438-41ba-a607-0ff0c7cd1bb5 - isolationmode - Virtual + + Integer false false false false canmodifyadditionalsettings - true + false - 37 + 147 1900-01-01T00:00:00 - - + + + a5563d79-bd32-4b1a-932e-f9c692c9514e + + true + Information that specifies how the first week of the year is specified in Microsoft Dynamics 365. + 1033 + + + f505237a-f8ed-49a5-9f6f-f932d67dd72d + + true + Oplysninger, der angiver, hvordan årets første uge vises i Microsoft Dynamics 365. + 1030 + + + + a5563d79-bd32-4b1a-932e-f9c692c9514e + + true + Information that specifies how the first week of the year is specified in Microsoft Dynamics 365. + 1033 + - - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - isolationmodename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - IsolationModeName - - - VirtualType - - 5.0.0.0 - true - - - - - 73312134-a2e9-4eee-883b-fcae6b26366a - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - true - - 55 - 1900-01-01T00:00:00 - - - - - - - - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - true - - ispasswordset - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - IsPasswordSet - - - BooleanType - - 9.0.0.0 - true - 0 - - false - - 308a9725-d926-4620-8af4-0a8839cb12c3 - - - - - 75bc633e-e8de-4ead-850b-5d17fc9f5220 - - true - Information about whether an associated encrypted attribute has a value. - 1033 - - - - 75bc633e-e8de-4ead-850b-5d17fc9f5220 - - true - Information about whether an associated encrypted attribute has a value. - 1033 - - - - - - 3db0e44d-bf0e-47b6-a72e-d4c0308ec1d3 - - true - Is Encrypted Attribute Value Set - 1033 - - - - 3db0e44d-bf0e-47b6-a72e-d4c0308ec1d3 - - true - Is Encrypted Attribute Value Set - 1033 - - - - false - - false - iscustomizable - false - - true - true - isencryptedattributevalueset - Boolean - 7.0.0.0 - - - - - - - - - - false - true - - - - 4f3aa649-7e06-4995-811d-b86f518567e7 - - true - No - 1033 - - - - 4f3aa649-7e06-4995-811d-b86f518567e7 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 92421800-a49a-4d95-a429-0b34f21c4b53 - - true - Yes - 1033 - - - - 92421800-a49a-4d95-a429-0b34f21c4b53 - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - c12578ee-4068-44fc-8f80-cbf9f55ff7fd - - - Integer - false - false - false - - false - canmodifyadditionalsettings - true - - 45 - 1900-01-01T00:00:00 - - - f7a0a5c4-397b-48f1-a06d-dd8a37726508 + b42c289e-e35d-4a97-a655-994734e32cb0 true - Major of the assembly version. + Year Start Week Code 1033 + + 9ed31054-67b5-413b-be64-0f16eddbaae7 + + true + Koden for første uge i året + 1030 + - f7a0a5c4-397b-48f1-a06d-dd8a37726508 + b42c289e-e35d-4a97-a655-994734e32cb0 true - Major of the assembly version. + Year Start Week Code 1033 - - - - - pluginassembly + organization @@ -219690,7 +233569,7 @@ false iscustomizable - false + true false false @@ -219721,21 +233600,21 @@ canmodifysearchsettings false - false + true false false true - false + true true - major + yearstartweekcode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - Major + YearStartWeekCode IntegerType @@ -219745,3730 +233624,2321 @@ 0 None - 65534 - 0 + 2147483647 + -2147483648 0 - - 7f6496e2-740b-4c74-96b7-0910b4750d8d + + false + false + false + + false + canbeincustomentityassociation + false + + + false + canbeinmanytomany + false + + + false + canbeprimaryentityinrelationship + false + + + false + canberelatedentityinrelationship + false + + true + + true + canchangetrackingbeenabled + true + + + false + cancreateattributes + false + + + false + cancreatecharts + false + + + false + cancreateforms + true + + + false + cancreateviews + false + + + false + canenablesynctoexternalsearchindex + false + + + true + canmodifyadditionalsettings + true + + false + true + Local + 1900-01-01T00:00:00 + + + false + + + + fa0b19a7-2241-db11-898a-0007e9e17ebd + + true + Top level of the Microsoft Dynamics 365 business hierarchy. The organization can be a specific business, holding company, or corporation. + 1033 + + + e7f9d132-07e3-4b5e-9de6-a62cb1c54dd8 + + true + Det øverste niveau i forretningshierarkiet i Microsoft Dynamics 365. Organisationen kan være en bestemt forretning, et holdingselskab eller et aktieselskab. + 1030 + + + + fa0b19a7-2241-db11-898a-0007e9e17ebd - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 10000 - 2025-11-06T01:10:45.1000064 - - - - - ba0dcdfd-bc94-4009-99eb-41fef532c226 - - true - Unique identifier for managedidentity associated with pluginassembly. - 1033 - - - - ba0dcdfd-bc94-4009-99eb-41fef532c226 - - true - Unique identifier for managedidentity associated with pluginassembly. - 1033 - - - - - - 37078d99-0745-48dd-aade-ccc7ee1d7a24 - - true - ManagedIdentityId - 1033 - - - - 37078d99-0745-48dd-aade-ccc7ee1d7a24 - - true - ManagedIdentityId - 1033 - - - pluginassembly - - - - true - canmodifyauditsettings - false - - false + true + Top level of the Microsoft Dynamics 365 business hierarchy. The organization can be a specific business, holding company, or corporation. + 1033 + + + + + + fc0b19a7-2241-db11-898a-0007e9e17ebd + + true + Organizations + 1033 + + + 701a2d2e-c5a8-4bf7-a843-69998aaa4fbb + + true + Organisationer + 1030 + + + + fc0b19a7-2241-db11-898a-0007e9e17ebd + + true + Organizations + 1033 + + + + + + fb0b19a7-2241-db11-898a-0007e9e17ebd + + true + Organization + 1033 + + + b94d708d-0372-4162-b397-e589750a7189 + + true + Organisation + 1030 + + + + fb0b19a7-2241-db11-898a-0007e9e17ebd + + true + Organization + 1033 + + + false + + false + false + false + false + + + + + false + false + false + false + + true + canmodifyauditsettings + false + + true + false + false + + false + canmodifyconnectionsettings + false + + false + + false + iscustomizable + true + + false + false + + false + canmodifyduplicatedetectionsettings + false + + false + false + false + false + false + false + false + + false + canmodifymailmergesettings + false + + true + + false + ismappable + false + + false + false + + true + canmodifymobileclientreadonly + false + + true + + false + isrenameable + false + + false + false + false + false + false + false + + false + canmodifyqueuesettings + false + + + false + canmodifymobilevisibility + false + + + true + canmodifymobileclientvisibility + false + + organization + + + + c491631e-cb92-4932-9cf0-cb3b55358c24 + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - managedidentityid - 2025-11-06T01:10:49.52 - - true - canmodifyrequirementlevelsettings - None - - ManagedIdentityId - - - LookupType - - 9.0.0.0 - false - - - None - - managedidentity - - - - e64d7d67-4033-4847-9141-a9e6814416b8 + false + lk_organizationbase_modifiedby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_organizationbase_modifiedby + modifiedby + organization + modifiedby + + 0 + + + 5c2c0222-101a-4f92-a53a-649d6328740a - managedidentityid - String - false - false - false - - true - canmodifyadditionalsettings - true - - 10001 - 2025-11-06T01:10:49.6169984 - - - - - - - - - - pluginassembly - - - - true - canmodifyauditsettings - true - - false + false - true + false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - managedidentityidname - 2025-11-06T01:10:49.6169984 - - true - canmodifyrequirementlevelsettings - None - - managedidentityidName - - - StringType - - 9.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 200 - - - a9180dc9-e86e-4dc3-9623-b5d4e729699f + + true + true + basecurrency_organization + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + transactioncurrencyid + transactioncurrency + basecurrency_organization + basecurrencyid + organization + basecurrencyid + + 0 + + + 33b95648-e707-4de5-b0ff-c2fef8f7973d - - Integer - false - false - false - - false - canmodifyadditionalsettings - true - - 46 - 1900-01-01T00:00:00 - - - - - fead0be3-d812-4cdc-95f1-67187756e15f - - true - Minor of the assembly version. - 1033 - - - - fead0be3-d812-4cdc-95f1-67187756e15f - - true - Minor of the assembly version. - 1033 - - - - - - - pluginassembly - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - minor - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - Minor - - - IntegerType - - 5.0.0.0 - false - 0 - - None - 65534 - 0 - - 0 - - - 9ec69772-590e-4a59-8bcf-594d1b496bb3 + false + EmailServerProfile_Organization + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + emailserverprofileid + emailserverprofile + EmailServerProfile_Organization + defaultemailserverprofileid + organization + defaultemailserverprofileid + + 0 + + + dcda8e64-c0fe-4d2d-8a8a-e32d365fa90d - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 12 - 1900-01-01T00:00:00 - - - - - 060b19a7-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who last modified the plug-in assembly. - 1033 - - - - 060b19a7-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who last modified the plug-in assembly. - 1033 - - - - - - 329df6e0-b649-4730-99fb-27a3477e7780 - - true - Modified By - 1033 - - - - 329df6e0-b649-4730-99fb-27a3477e7780 - - true - Modified By - 1033 - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - modifiedby - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ModifiedBy - - - LookupType - + false + Template_Organization + None 5.0.0.0 - false - - - None - - systemuser - - - - 36f470bb-1b13-49bd-b2b5-83f9a6f23864 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + templateid + template + Template_Organization + acknowledgementtemplateid + organization + acknowledgementtemplateid + + 0 + + + 7ea73b74-d759-41e7-a60a-e12a4f6b9376 - modifiedby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 38 - 1900-01-01T00:00:00 - - - - - - - - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - modifiedbyname - 2025-11-06T00:19:24.5900032 - - false - canmodifyrequirementlevelsettings - None - - ModifiedByName - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 320 - - - e3fd184d-de1e-4ddb-9ec2-622499f2af01 + false + lk_organization_entityimage + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + imagedescriptorid + imagedescriptor + lk_organization_entityimage + entityimageid + organization + entityimageid_imagedescriptor + + 0 + + + 4e0d0197-01f5-4eb1-be97-77057004e8cf - - DateTime - false - false - false - - false - canmodifyadditionalsettings - true - - 5 - 1900-01-01T00:00:00 - - - - - 090b19a7-2241-db11-898a-0007e9e17ebd - - true - Date and time when the plug-in assembly was last modified. - 1033 - - - - 090b19a7-2241-db11-898a-0007e9e17ebd - - true - Date and time when the plug-in assembly was last modified. - 1033 - - - - - - c55c191d-17f5-481d-8013-d642da4e9086 - - true - Modified On - 1033 - - - - c55c191d-17f5-481d-8013-d642da4e9086 - - true - Modified On - 1033 - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - + false + DefaultMobileOfflineProfile_Organization + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + mobileofflineprofileid + mobileofflineprofile + DefaultMobileOfflineProfile_Organization + defaultmobileofflineprofileid + organization + defaultmobileofflineprofileid + + 0 + + + 4ab194d7-092c-4e02-86a3-885b5e8cb8cb + + false + false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings + iscustomizable false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - modifiedon - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOn - - - DateTimeType - + + true + false + lk_organizationbase_createdby + None 5.0.0.0 - false - 0 - - DateAndTime - Inactive - - 0 - - false - canmodifybehavior - false - - - UserLocal - - - - 58c6f25e-8ca6-4c84-815e-7f9ff057b809 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_organizationbase_createdby + createdby + organization + createdby + + 0 + + + 7115a3ea-3815-460e-98a2-0d2b32f35306 - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 26 - 1900-01-01T00:00:00 - - - - - 617f683c-f3a7-4b5e-b2c0-03395a7392fc - - true - Unique identifier of the delegate user who last modified the pluginassembly. - 1033 - - - - 617f683c-f3a7-4b5e-b2c0-03395a7392fc - - true - Unique identifier of the delegate user who last modified the pluginassembly. - 1033 - - - - - - 0e7b00de-54ce-4d32-80cd-35cb8c8bbf7e - - true - Modified By (Delegate) - 1033 - - - - 0e7b00de-54ce-4d32-80cd-35cb8c8bbf7e - - true - Modified By (Delegate) - 1033 - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - modifiedonbehalfby - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfBy - - - LookupType - + true + lk_organization_modifiedonbehalfby + None 5.0.0.0 - false - - - None - - systemuser - - - - 70c3c3fb-0fa3-4905-96ab-1e9e70841902 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_organization_modifiedonbehalfby + modifiedonbehalfby + organization + modifiedonbehalfby + + 0 + + + 380f0eed-3451-45d0-a07f-236b6a674b11 - modifiedonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 29 - 1900-01-01T00:00:00 - - - - - - - - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - modifiedonbehalfbyname - 2025-11-06T00:19:25.0729984 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfByName - - - StringType - + false + calendar_organization + Append 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 320 - - - 5399b26a-1e64-4785-bda8-2d8418a5e3d2 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + calendarid + calendar + calendar_organization + businessclosurecalendarid + organization + businessclosurecalendarid_calendar + + 1 + + + ac332ef3-44aa-4c14-91fe-6d082c6d86cf - modifiedonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 30 - 1900-01-01T00:00:00 - - - - - - - - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - modifiedonbehalfbyyominame - 2025-11-06T00:19:28.1830016 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfByYomiName - - - StringType - + true + lk_organization_createdonbehalfby + None 5.0.0.0 - true - 0 - - Text - Auto - 100 - modifiedonbehalfbyname - - Text - - - false - 0 - 320 - - - 825acca9-5762-432c-a568-d6bd32d88846 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_organization_createdonbehalfby + createdonbehalfby + organization + createdonbehalfby + + 0 + + + 2025-11-06T09:12:35.9229952 + 1019 + + + 14129c00-bbda-4744-b696-92e4a960f341 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 7 - 1900-01-01T00:00:00 - - - - - 030b19a7-2241-db11-898a-0007e9e17ebd - - true - Name of the plug-in assembly. - 1033 - - - - 030b19a7-2241-db11-898a-0007e9e17ebd - - true - Name of the plug-in assembly. - 1033 - - - - - - b567ca98-408d-459e-b838-66df8cd487ad - - true - Name - 1033 - - - - b567ca98-408d-459e-b838-66df8cd487ad - - true - Name - 1033 - - - pluginassembly - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - true - - false - isrenameable - false - - false - true - true - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - name - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - Name - - - StringType - + false + organization_relationship_roles + None 5.0.0.0 - false - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - - fc92d152-629f-4fd3-9c35-c4c278a90811 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_relationship_roles + organizationid + relationshiprole + organizationid + + 0 + + + bd15f801-cbba-f011-bbd3-7c1e52365f30 - - Lookup - false - false - false - - false - canmodifyadditionalsettings + false + + true + iscustomizable true - - 4 - 1900-01-01T00:00:00 - - - - - 000b19a7-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the organization with which the plug-in assembly is associated. - 1033 - - - - 000b19a7-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the organization with which the plug-in assembly is associated. - 1033 - - - - - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + + false + false + organization_msdyn_kmpersonalizationsetting + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_kmpersonalizationsetting + organizationid + msdyn_kmpersonalizationsetting + organizationid + + 0 + + + 50759f02-bec2-47c8-8016-c149fe878904 + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - organizationid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - OrganizationId - - - LookupType - + false + organization_sdkmessage + None 5.0.0.0 - false - - - None - - organization - - - - 2dc61000-105e-4394-8391-5baabaf2e94c + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessage + organizationid + sdkmessage + organizationid + + 0 + + + a5084303-79e9-11e0-a0f5-1cc1de634cfe - - DateTime - false - false - false - - false - canmodifyadditionalsettings - true - - 39 - 1900-01-01T00:00:00 - - - - - 2dc61001-105e-4394-8391-5baabaf2e94c - - true - For internal use only. - 1033 - - - - 2dc61001-105e-4394-8391-5baabaf2e94c - - true - For internal use only. - 1033 - - - - - - 2dc61002-105e-4394-8391-5baabaf2e94c - - true - Record Overwrite Time - 1033 - - - - 2dc61002-105e-4394-8391-5baabaf2e94c - - true - Record Overwrite Time - 1033 - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - overwritetime - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - OverwriteTime - - - DateTimeType - + false + organization_postlike + None 5.0.0.0 - false - 0 - - DateOnly - Inactive - - 0 - - false - canmodifybehavior - false - - - UserLocal - - - - b3d99d03-6c61-4555-874f-27482c1dfb6c + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_postlike + organizationid + postlike + organizationid + + 0 + + + 832b8203-47ee-40fd-bd08-8c0b0b786314 - - Lookup - false - false - false - - false - canmodifyadditionalsettings - false - - 10002 - 2025-11-06T01:23:13.7869952 - - - - - 33869d17-ec73-4b32-8692-73ac2b4dc491 - - true - Unique identifier for Plugin Package associated with Plug-in Assembly. - 1033 - - - - 33869d17-ec73-4b32-8692-73ac2b4dc491 - - true - Unique identifier for Plugin Package associated with Plug-in Assembly. - 1033 - - - - - - bca1c856-ce8e-4d51-92dd-3588cfe6c895 - - true - Package - 1033 - - - - bca1c856-ce8e-4d51-92dd-3588cfe6c895 - - true - Package - 1033 - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - false - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - false - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - packageid - 2025-11-06T01:23:18.6329984 - - false - canmodifyrequirementlevelsettings - None - - PackageId - - - LookupType - - 9.1.0.0 - false - - - None - - pluginpackage - - - - e9dd161d-4736-4692-b54f-7b05e0c96897 + false + organization_status_maps + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_status_maps + organizationid + statusmap + organizationid_organization + + 0 + + + 9eaca606-b7ba-f011-bbd3-7c1e52365f30 - packageid - String - false - false - false - - true - canmodifyadditionalsettings - true - - 10003 - 2025-11-06T01:23:18.68 - - - - - - - - - - pluginassembly - - - - true - canmodifyauditsettings - true - - false + false true iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - packageidname - 2025-11-06T01:23:18.68 - - true - canmodifyrequirementlevelsettings - None - - PackageIdName - - - StringType - + false + organization_appelement + None 9.1.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 200 - - - 0a6324f9-819e-4008-9dd3-cba6fd357cd9 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appelement + organizationid + appelement + organizationid + + 0 + + + 50ada606-b7ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 54 - 1900-01-01T00:00:00 - - - - - c94b67a6-6dc2-4fb6-9676-fbd93503ac9e - - true - User Password - 1033 - - - - c94b67a6-6dc2-4fb6-9676-fbd93503ac9e - - true - User Password - 1033 - - - - - - 2f018956-9ed1-4bd7-849b-00b2abc2b89e - - true - User Password - 1033 - - - - 2f018956-9ed1-4bd7-849b-00b2abc2b89e - - true - User Password - 1033 - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false - false + true iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - + false + false + organization_appmodulecomponentedge + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appmodulecomponentedge + organizationid + appmodulecomponentedge + organizationid + + 0 + + + f4ada606-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings + iscustomizable false - - + + false + false + organization_appmodulecomponentnode + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appmodulecomponentnode + organizationid + appmodulecomponentnode + organizationid + + 0 + + + 93aea606-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable false - - true - true - false - false - true - true - - password - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - Password - - - StringType - - 9.0.0.0 - false - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - - 51450c6b-60ee-444d-b07c-aed2293b9fe6 + + false + false + organization_appsetting + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appsetting + organizationid + appsetting + organizationid + + 0 + + + 3ec41707-fe74-41de-a2c9-5dfa6ea180f0 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 6 - 1900-01-01T00:00:00 - - - - - 100b19a7-2241-db11-898a-0007e9e17ebd - - true - File name of the plug-in assembly. Used when the source type is set to 1. - 1033 - - - - 100b19a7-2241-db11-898a-0007e9e17ebd - - true - File name of the plug-in assembly. Used when the source type is set to 1. - 1033 - - - - - - d5c5a11e-9746-4d91-b62c-7c40849f86c3 - - true - Path - 1033 - - - - d5c5a11e-9746-4d91-b62c-7c40849f86c3 - - true - Path - 1033 - - - pluginassembly - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - path - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Path - - - StringType - + false + organization_custom_displaystrings + None 5.0.0.0 - false - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - - cb590590-ea44-44b4-9320-2a594222e4fd + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_custom_displaystrings + organizationid + displaystring + organizationid + + 0 + + + 6b9a9c08-144e-4677-aa7c-c6c48f3063ba - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 14 - 1900-01-01T00:00:00 - - - - - 050b19a7-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the plug-in assembly. - 1033 - - - - 050b19a7-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the plug-in assembly. - 1033 - - - - - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - true - - true - canmodifyglobalfiltersettings - false - true - true - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - false - true - - pluginassemblyid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - PluginAssemblyId - - - UniqueidentifierType - + false + organization_wizardaccessprivilege + None 5.0.0.0 - false - - - - - 5328d03c-5a09-4076-8887-a33d0f44eca8 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_wizardaccessprivilege + organizationid + wizardaccessprivilege + organizationid + + 0 + + + 7daed908-cacd-4537-9a72-655617319646 - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 17 - 1900-01-01T00:00:00 - - - - - 040b19a7-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the plug-in assembly. - 1033 - - - - 040b19a7-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the plug-in assembly. - 1033 - - - - - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - pluginassemblyidunique - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - PluginAssemblyIdUnique - - - UniqueidentifierType - - 5.0.0.0 - false - - - - - b5e06e23-eb4e-4a73-8d03-b1366a92796b + false + channelproperty_organization + None + 7.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + channelproperty_organization + organizationid + channelproperty + organizationid + + 0 + + + 5c8b4109-8470-4766-bcff-e39ef4dc8982 - - String - false - false - false - + false + false - canmodifyadditionalsettings + iscustomizable true - - 18 - 1900-01-01T00:00:00 - - - - - d67df4b2-9c85-4d30-b3b3-922b39aab3d8 - - true - Public key token of the assembly. This value can be obtained from the assembly by using reflection. - 1033 - - - - d67df4b2-9c85-4d30-b3b3-922b39aab3d8 - - true - Public key token of the assembly. This value can be obtained from the assembly by using reflection. - 1033 - - - - - - bf047c76-68c9-412c-a072-06b44113ce51 - - true - Public Key Token - 1033 - - - - bf047c76-68c9-412c-a072-06b44113ce51 - - true - Public Key Token - 1033 - - - pluginassembly - - - + + true + false + organization_newprocess + None + 8.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_newprocess + organizationid + newprocess + organizationid + + 0 + + + f983b50a-ceba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_emailaddressconfiguration + None + 9.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_emailaddressconfiguration + organizationid + emailaddressconfiguration + organizationid + + 0 + + + 42aa610d-b7ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable - false + true - false - false - + false + false + organization_appusersetting + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appusersetting + organizationid + appusersetting + organizationid + + 0 + + + dcaa610d-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable + iscustomizable false - - false - true - false - false - + + false + false + organization_organizationsetting + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_organizationsetting + organizationid + organizationsetting + organizationid + + 0 + + + b4ab610d-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings + iscustomizable false - - + + false + false + organization_settingdefinition + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_settingdefinition + organizationid + settingdefinition + organizationid + + 0 + + + 9c59e30d-7b24-4146-9321-4fc68a0574c7 + + false + false - canmodifysearchsettings + iscustomizable false - - true - false - false - true - true - true - - publickeytoken - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - PublicKeyToken - - - StringType - + + true + false + organization_sdkmessagepair + None 5.0.0.0 - false - 0 - - Text - Auto - 32 - - - Text - - - false - 0 - 64 - - - a0799000-6113-44f4-94cc-c082e68b230d + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessagepair + organizationid + sdkmessagepair + organizationid + + 0 + + + cd4e640f-2c65-4ecc-8d64-ad1e3ccf1759 - - Uniqueidentifier - false - false - false - + false + false - canmodifyadditionalsettings + iscustomizable true - - 40 - 1900-01-01T00:00:00 - - - - - a0799001-6113-44f4-94cc-c082e68b230d - - true - Unique identifier of the associated solution. - 1033 - - - - a0799001-6113-44f4-94cc-c082e68b230d - - true - Unique identifier of the associated solution. - 1033 - - - - - - a0799002-6113-44f4-94cc-c082e68b230d - - true - Solution - 1033 - - - - a0799002-6113-44f4-94cc-c082e68b230d - - true - Solution - 1033 - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + + true + false + organization_translationprocess + None + 8.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_translationprocess + organizationid + translationprocess + organizationid + + 0 + + + 23a17b0f-78db-4c82-ac37-9c4ac7631702 + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - solutionid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - SolutionId - - - UniqueidentifierType - + false + organization_sdkmessageprocessingstepsecureconfig + None 5.0.0.0 - false - - - - - 5de4a4ec-7d37-4bd4-b9cc-e6b6efce73ee + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessageprocessingstepsecureconfig + organizationid + sdkmessageprocessingstepsecureconfig + organizationid + + 0 + + + 449dd711-14a0-4fc4-a507-3e3045503dc7 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 1 - 1900-01-01T00:00:00 - - - - - 1f83e03b-d853-4296-8c51-44a6687c5295 - - true - Hash of the source of the assembly. - 1033 - - - - 1f83e03b-d853-4296-8c51-44a6687c5295 - - true - Hash of the source of the assembly. - 1033 - - - - - - - pluginassembly - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - sourcehash - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - SourceHash - - - StringType - + false + organization_indexed_documents + None 5.0.0.0 - false - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - - f64825cb-7786-4d20-b921-37bf7c0c64f2 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_indexed_documents + organizationid + documentindex + organizationid + + 0 + + + 1863f811-bed1-4472-ac90-49f41b5bd74b - - Picklist - false - false - false - - false - canmodifyadditionalsettings - true - - 16 - 1900-01-01T00:00:00 - - - - - 0b0b19a7-2241-db11-898a-0007e9e17ebd - - true - Location of the assembly, for example 0=database, 1=on-disk. - 1033 - - - - 0b0b19a7-2241-db11-898a-0007e9e17ebd - - true - Location of the assembly, for example 0=database, 1=on-disk. - 1033 - - - - - - 0a0b19a7-2241-db11-898a-0007e9e17ebd - - true - Source Type - 1033 - - - - 0a0b19a7-2241-db11-898a-0007e9e17ebd - - true - Source Type - 1033 - - - pluginassembly - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - sourcetype - 2025-11-06T01:23:13.8329984 - - false - canmodifyrequirementlevelsettings - SystemRequired - - SourceType - - - PicklistType - + false + organization_string_maps + None 5.0.0.0 - false - 0 - - 0 - - 11a73f5d-f023-4633-aae1-805b9130ee05 - - - - - 155d036e-cab1-49a5-b87d-52863fd962a6 - - true - Location of the assembly, for example 0=database, 1=on-disk, 2=Normal, 3=AzureWebApp. - 1033 - - - - 155d036e-cab1-49a5-b87d-52863fd962a6 - - true - Location of the assembly, for example 0=database, 1=on-disk, 2=Normal, 3=AzureWebApp. - 1033 - - - - - - ae91b028-eaa2-47df-a20e-6d7525acc521 - - true - Source Type - 1033 - - - - ae91b028-eaa2-47df-a20e-6d7525acc521 - - true - Source Type - 1033 - - - - false - - false - iscustomizable - false - - false - true - pluginassembly_sourcetype - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 0d0b19a7-2241-db11-898a-0007e9e17ebd - - true - Database - 1033 - - - - 0d0b19a7-2241-db11-898a-0007e9e17ebd - - true - Database - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 0f0b19a7-2241-db11-898a-0007e9e17ebd - - true - Disk - 1033 - - - - 0f0b19a7-2241-db11-898a-0007e9e17ebd - - true - Disk - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - 060628d6-8c23-4612-8105-d8265daca57c - - true - Normal - 1033 - - - - 060628d6-8c23-4612-8105-d8265daca57c - - true - Normal - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 25d3e642-8423-4ce0-85dc-78200a0ec66b - - true - AzureWebApp - 1033 - - - - 25d3e642-8423-4ce0-85dc-78200a0ec66b - - true - AzureWebApp - 1033 - - - - 3 - - - - - - - - - - - - false - true - - - - 3f1aa008-5d3f-4b0b-9af4-0d27146786bc - - true - File Store - 1033 - - - - 3f1aa008-5d3f-4b0b-9af4-0d27146786bc - - true - File Store - 1033 - - - - 4 - - - - - - - - 0 - - - - - 38efd578-4db6-4f57-bbaf-b8e552d5672a + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_string_maps + organizationid + stringmap + organizationid_organization + + 0 + + + 08f72813-bfb2-4bc2-be1e-2773e3ab8ef1 - sourcetype - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 41 - 1900-01-01T00:00:00 - - - - - - - - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - sourcetypename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - SourceTypeName - - - VirtualType - + false + organization_pluginassembly + None 5.0.0.0 - true - - - - - 6c3e8000-6c06-4ef8-9367-e749edb7a67f + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_pluginassembly + organizationid + pluginassembly + organizationid + + 0 + + + 925dd714-b5ba-f011-bbd3-7c1e52365f30 - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 42 - 1900-01-01T00:00:00 - - - - - 6c3e8001-6c06-4ef8-9367-e749edb7a67f - - true - For internal use only. - 1033 - - - - 6c3e8001-6c06-4ef8-9367-e749edb7a67f - - true - For internal use only. - 1033 - - - - - - 6c3e8002-6c06-4ef8-9367-e749edb7a67f - - true - Solution - 1033 - - - - 6c3e8002-6c06-4ef8-9367-e749edb7a67f - - true - Solution - 1033 - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - false - true - false - false - false - - supportingsolutionid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - SupportingSolutionId - - - UniqueidentifierType - - 5.0.0.0 - false - - - - - aef4e471-6c2c-461f-ad36-a9c5cdc5f70e + false + organization_entityrecordfilter + None + 9.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_entityrecordfilter + organizationid + entityrecordfilter + organizationid + + 0 + + + b45ed714-b5ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 56 - 1900-01-01T00:00:00 - - - - - af06ca12-d40d-4ccc-8162-2b3ed773982c - - true - Web Url - 1033 - - - - af06ca12-d40d-4ccc-8162-2b3ed773982c - - true - Web Url - 1033 - - - - - - f15628e7-6115-4dd5-8f0a-4c5c4c58d613 - - true - Web Url - 1033 - - - - f15628e7-6115-4dd5-8f0a-4c5c4c58d613 - - true - Web Url - 1033 - - - pluginassembly - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - url - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Url - - - StringType - - 9.0.0.0 - false - 0 - - Text - Auto - 2000 - - - Text - - - false - 0 - 4000 - - - 1b34239e-e3c6-43f2-b27b-724cc5a05179 + false + organization_privilegesremovalsetting + None + 1.69.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_privilegesremovalsetting + organizationid + privilegesremovalsetting + organizationid + + 0 + + + a35fd714-b5ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 53 - 1900-01-01T00:00:00 - - - - - c12c50bb-50ba-4d1f-8ad5-69dab299b161 - - true - User Name - 1033 - - - - c12c50bb-50ba-4d1f-8ad5-69dab299b161 - - true - User Name - 1033 - - - - - - e2cbe0aa-1c18-45bb-8a15-70dcf8096756 - - true - User Name - 1033 - - - - e2cbe0aa-1c18-45bb-8a15-70dcf8096756 - - true - User Name - 1033 - - - pluginassembly - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - username - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - UserName - - - StringType - - 9.0.0.0 - false - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - - 4561ba32-69e4-4d4b-9bec-0c17aa9f7d87 + false + organization_recordfilter + None + 9.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_recordfilter + organizationid + recordfilter + organizationid + + 0 + + + 74e09116-daba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 10 - 1900-01-01T00:00:00 - - - - - 712a5b79-1f5a-4ca1-bdfe-a51847fc3753 - - true - Version number of the assembly. The value can be obtained from the assembly through reflection. - 1033 - - - - 712a5b79-1f5a-4ca1-bdfe-a51847fc3753 - - true - Version number of the assembly. The value can be obtained from the assembly through reflection. - 1033 - - - - - - b0a7ece4-b924-4fa3-999f-d837aa1b95f6 - - true - Version - 1033 - - - - b0a7ece4-b924-4fa3-999f-d837aa1b95f6 - - true - Version - 1033 - - - pluginassembly - - - - true - canmodifyauditsettings - true - - false + false - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - true - false - false - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - version - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - Version - - - StringType - - 5.0.0.0 - false - 0 - - VersionNumber - Auto - 48 - - - VersionNumber - - - false - 0 - 96 - - - 211e35fe-b353-4e41-8370-d866761d8385 + + false + false + organization_deleteditemreference + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_deleteditemreference + organizationid + deleteditemreference + organizationid + + 0 + + + 11e19116-daba-f011-bbd3-7c1e52365f30 - - BigInt - false - false - false - - false - canmodifyadditionalsettings - true - - 11 - 1900-01-01T00:00:00 - - - - - - - - - - pluginassembly - - - - false - canmodifyauditsettings - false - - false + false - false + true iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - versionnumber - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - VersionNumber - - - BigIntType - - 5.0.0.0 - false - - - 9223372036854775807 - -9223372036854775808 - - - false - false - false - - false - canbeincustomentityassociation - false - - - false - canbeinmanytomany - false - - - false - canbeprimaryentityinrelationship - false - - - false - canberelatedentityinrelationship - true - - true - - false - canchangetrackingbeenabled - false - - - false - cancreateattributes - false - - - false - cancreatecharts - false - - - false - cancreateforms - false - - - false - cancreateviews - false - - - false - canenablesynctoexternalsearchindex - false - - - true - canmodifyadditionalsettings - false - - false - false - Local - 1900-01-01T00:00:00 - - - false - - - - fc0a19a7-2241-db11-898a-0007e9e17ebd - - true - Assembly that contains one or more plug-in types. - 1033 - - - - fc0a19a7-2241-db11-898a-0007e9e17ebd - - true - Assembly that contains one or more plug-in types. - 1033 - - - - - - fe0a19a7-2241-db11-898a-0007e9e17ebd - - true - Plug-in Assemblies - 1033 - - - - fe0a19a7-2241-db11-898a-0007e9e17ebd - - true - Plug-in Assemblies - 1033 - - - - - - fd0a19a7-2241-db11-898a-0007e9e17ebd - - true - Plug-in Assembly - 1033 - - - - fd0a19a7-2241-db11-898a-0007e9e17ebd - - true - Plug-in Assembly - 1033 - - - false - - false - false - false - false - - - - - false - false - false - false - - false - canmodifyauditsettings - false - - true - false - false - - false - canmodifyconnectionsettings - false - - false - - false - iscustomizable - false - - false - false - - false - canmodifyduplicatedetectionsettings - false - - false - false - false - false - false - false - false - - false - canmodifymailmergesettings - false - - true - - false - ismappable - false - - false - false - - false - canmodifymobileclientreadonly - false - - true - - false - isrenameable - false - - false - false - false - true - false - true - - false - canmodifyqueuesettings - false - - - false - canmodifymobilevisibility - false - - - false - canmodifymobileclientvisibility - false - - pluginassembly - - + false + false + organization_recyclebinconfig + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_recyclebinconfig + organizationid + recyclebinconfig + organizationid + + 0 + - d5e03606-22ea-4abc-8af0-8266df8e0c44 + 21a57a17-b5fc-e611-80d4-00155d42b26e false false iscustomizable - false + true true false - lk_pluginassembly_createdonbehalfby + organization_suggestioncardtemplate None - 5.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -223497,29 +235967,29 @@ false false - systemuserid - systemuser - lk_pluginassembly_createdonbehalfby - createdonbehalfby - pluginassembly - createdonbehalfby + organizationid + organization + organization_suggestioncardtemplate + organizationid + suggestioncardtemplate + organizationid 0 - 08f72813-bfb2-4bc2-be1e-2773e3ab8ef1 + cffab61c-cfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false false - organization_pluginassembly + organization_virtualentitymetadata None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -223553,15 +236023,15 @@ false organizationid organization - organization_pluginassembly + organization_virtualentitymetadata organizationid - pluginassembly + virtualentitymetadata organizationid 0 - 3cbf8728-afba-f011-bbd3-7c1e52365f30 + 92c52822-0681-47cc-9f69-079a94ed0c5d false @@ -223571,21 +236041,21 @@ true true - pluginpackage_pluginassembly + organization_socialinsightsconfiguration None - 9.1.0.0 + 6.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -223593,7 +236063,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -223605,29 +236075,29 @@ false false - pluginpackageid - pluginpackage - pluginpackage_pluginassembly - packageid - pluginassembly - PackageId + organizationid + organization + organization_socialinsightsconfiguration + organizationid + socialinsightsconfiguration + regardingobjectid 0 - 88d5a028-9cab-4d15-b952-5e945c540307 + 300c7722-e4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false false - lk_pluginassembly_modifiedonbehalfby + organization_sharepointmanagedidentity None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -223659,17 +236129,17 @@ false false - systemuserid - systemuser - lk_pluginassembly_modifiedonbehalfby - modifiedonbehalfby - pluginassembly - modifiedonbehalfby + organizationid + organization + organization_sharepointmanagedidentity + organizationid + sharepointmanagedidentity + organizationid 0 - fc98f066-4335-4b6a-962b-b628592d2fa0 + b68a5623-2472-429c-9428-b825e9f2dc6d false @@ -223679,9 +236149,63 @@ true false - modifiedby_pluginassembly + organization_sharepointdocument None - 5.0.0.0 + 6.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + true + navSPDocuments + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sharepointdocument + organizationid + sharepointdocument + organizationid + + 0 + + + bf8a7323-f3ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + organization_adx_externalidentity + None + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -223713,38 +236237,38 @@ false false - systemuserid - systemuser - modifiedby_pluginassembly - modifiedby - pluginassembly - modifiedby + organizationid + organization + organization_adx_externalidentity + organizationid + adx_externalidentity + organizationid 0 - 76d09c6d-adba-f011-bbd3-7c1e52365f30 + b2091424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - true - managedidentity_PluginAssembly + false + false + organization_allowedmcpclient None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -223755,7 +236279,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -223767,17 +236291,17 @@ false false - managedidentityid - managedidentity - managedidentity_PluginAssembly - managedidentityid - pluginassembly - managedidentityid + organizationid + organization + organization_allowedmcpclient + organizationid + allowedmcpclient + organizationid 0 - 43c554ea-ab90-43ac-8ab6-0c0adab04ac4 + 74638925-5874-47cd-9338-f733996e1b7f false @@ -223787,9 +236311,9 @@ true false - createdby_pluginassembly + lk_principalsyncattributemap_organizationid None - 5.0.0.0 + 7.0.0.0 OneToManyRelationship DoNotDisplay @@ -223821,33 +236345,29 @@ false false - systemuserid - systemuser - createdby_pluginassembly - createdby - pluginassembly - createdby + organizationid + organization + lk_principalsyncattributemap_organizationid + organizationid + principalsyncattributemap + organizationid 0 - - 2025-11-06T01:23:14.2230016 - 4605 - - b11e2721-aad4-4a25-9a44-74996c481769 + cebe8728-afba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false false - userentityinstancedata_pluginassembly + organization_pluginpackage None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -223867,7 +236387,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -223879,29 +236399,29 @@ false false - pluginassemblyid - pluginassembly - userentityinstancedata_pluginassembly - objectid - userentityinstancedata - objectid_pluginassembly + organizationid + organization + organization_pluginpackage + organizationid + pluginpackage + organizationid 0 - 37d96b99-7b8e-452e-986c-2517136cfc1c + 86e6a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - true - pluginassembly_plugintype + false + false + organization_adx_webformsession None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -223921,7 +236441,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -223933,5440 +236453,3203 @@ false false - pluginassemblyid - pluginassembly - pluginassembly_plugintype - pluginassemblyid - plugintype - pluginassemblyid + organizationid + organization + organization_adx_webformsession + organizationid + adx_webformsession + organizationid 0 - - - 8 - OrganizationOwned - - pluginassemblyid - - pluginassemblyid - - name - - - false - false - false - true - false - false - false - prvCreatePluginAssembly - c81a03bb-4bfc-45a6-9184-e899ce26811a - Create - - - false - false - false - true - false - false - false - prvReadPluginAssembly - f5b50296-a212-488a-be92-cbcca8971717 - Read - - - false - false - false - true - false - false - false - prvWritePluginAssembly - 37009c66-2e53-49f0-b857-62252eaa6412 - Write - - - false - false - false - true - false - false - false - prvDeletePluginAssembly - 3fa24eff-e413-4224-8cf2-bd29193f8adf - Delete - - - - FilteredPluginAssembly - PluginAssembly - - - false - Standard - false - 5.0.0.0 - - - false - canchangehierarchicalrelationship - false - - - false - PluginAssemblies - - - true - - pluginassemblies - 0 - pluginassemblies - false - - true - canmodifymobileclientoffline - false - - false - false - - false - false - - - - plugintype - - 19c3d508-f870-43a6-8703-aa35812a4c96 - - 0 - - - 96a3d21c-feca-458f-b8fc-35cb815ba375 + + 22ab0b33-1113-1001-9d94-aba48f797f2a - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 3 - 1900-01-01T00:00:00 - - - - - 01e0eed0-2241-db11-898a-0007e9e17ebd - - true - Full path name of the plug-in assembly. - 1033 - - - - 01e0eed0-2241-db11-898a-0007e9e17ebd - - true - Full path name of the plug-in assembly. - 1033 - - - - - - 30b27e67-9dc8-4f1e-81d2-13d09f738197 - - true - Assembly Name - 1033 - - - - 30b27e67-9dc8-4f1e-81d2-13d09f738197 - - true - Assembly Name - 1033 - - - plugintype - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - assemblyname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - ApplicationRequired - - AssemblyName - - - StringType - + false + organization_ribbon_tab_to_command_map + None 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 512 - - - 26319000-6227-445d-b7d5-ea4c58263d31 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_ribbon_tab_to_command_map + organizationid + ribbontabtocommandmap + organizationid + + 0 + + + 22ab0b33-1115-1001-9d94-aba48f797f2a - - Picklist - false - false - false - - false - canmodifyadditionalsettings - true - - 30 - 1900-01-01T00:00:00 - - - - - 26319001-6227-445d-b7d5-ea4c58263d31 - - true - For internal use only. - 1033 - - - - 26319001-6227-445d-b7d5-ea4c58263d31 - - true - For internal use only. - 1033 - - - - - - 26319002-6227-445d-b7d5-ea4c58263d31 - - true - Component State - 1033 - - - - 26319002-6227-445d-b7d5-ea4c58263d31 - - true - Component State - 1033 - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - componentstate - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - ComponentState - - - PicklistType - + false + organization_ribbon_context_group + None 5.0.0.0 - false - 0 - - -1 - - faece09f-cefc-11de-8150-00155da18b00 - - - - - faece0a1-cefc-11de-8150-00155da18b00 - - true - The state of this component. - 1033 - - - - faece0a1-cefc-11de-8150-00155da18b00 - - true - The state of this component. - 1033 - - - - - - faece0a0-cefc-11de-8150-00155da18b00 - - true - Component State - 1033 - - - - faece0a0-cefc-11de-8150-00155da18b00 - - true - Component State - 1033 - - - - false - - false - iscustomizable - false - - true - true - componentstate - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - faece0a3-cefc-11de-8150-00155da18b00 - - true - Published - 1033 - - - - faece0a3-cefc-11de-8150-00155da18b00 - - true - Published - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - faece0a5-cefc-11de-8150-00155da18b00 - - true - Unpublished - 1033 - - - - faece0a5-cefc-11de-8150-00155da18b00 - - true - Unpublished - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - faece0a7-cefc-11de-8150-00155da18b00 - - true - Deleted - 1033 - - - - faece0a7-cefc-11de-8150-00155da18b00 - - true - Deleted - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 1f83e0bb-cefd-11de-8150-00155da18b00 - - true - Deleted Unpublished - 1033 - - - - 1f83e0bb-cefd-11de-8150-00155da18b00 - - true - Deleted Unpublished - 1033 - - - - 3 - - - - - - - - 0 - - - - - ddc7d111-7318-4cca-9391-f179a45e976f + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_ribbon_context_group + organizationid + ribboncontextgroup + organizationid + + 0 + + + 22ab0b33-1116-1001-9d94-aba48f797f2a - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 9 - 1900-01-01T00:00:00 - - - - - 4faac7f4-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who created the plug-in type. - 1033 - - - - 4faac7f4-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who created the plug-in type. - 1033 - - - - - - 9aede57e-ee33-45d1-a11a-0d403f61ccdb - - true - Created By - 1033 - - - - 9aede57e-ee33-45d1-a11a-0d403f61ccdb - - true - Created By - 1033 - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - createdby - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - CreatedBy - - - LookupType - + false + organization_ribbon_command + None 5.0.0.0 - false - - - None - - systemuser - - - - 7dca4b90-b1f0-4602-ad56-b23110458ccd + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_ribbon_command + organizationid + ribboncommand + organizationid + + 0 + + + 22ab0b33-1117-1001-9d94-aba48f797f2a - createdby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 31 - 1900-01-01T00:00:00 - - - - - - - - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - createdbyname - 2025-11-06T00:19:23.7299968 - - false - canmodifyrequirementlevelsettings - None - - CreatedByName - - - StringType - + false + organization_ribbon_rule + None 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 320 - - - 08ef711f-df01-4874-bf3f-4a374b571b8e + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_ribbon_rule + organizationid + ribbonrule + organizationid + + 0 + + + 22ab0b33-1130-1001-9d94-aba48f797f2a - - DateTime - false - false - false - - false - canmodifyadditionalsettings - true - - 7 - 1900-01-01T00:00:00 - - - - - f153c2fa-2241-db11-898a-0007e9e17ebd - - true - Date and time when the plug-in type was created. - 1033 - - - - f153c2fa-2241-db11-898a-0007e9e17ebd - - true - Date and time when the plug-in type was created. - 1033 - - - - - - 8eb00b7c-da2c-495d-9e72-c7d016703bd0 - - true - Created On - 1033 - - - - 8eb00b7c-da2c-495d-9e72-c7d016703bd0 - - true - Created On - 1033 - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - createdon - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - CreatedOn - - - DateTimeType - + false + organization_ribbon_diff + None 5.0.0.0 - false - 0 - - DateAndTime - Inactive - - 0 - - false - canmodifybehavior - false - - - UserLocal - - - - fc778d33-2b0c-435d-89a0-a9a291e9f11f + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_ribbon_diff + organizationid + ribbondiff + organizationid + + 0 + + + 54e23133-62f5-f011-8406-7ced8d736212 - - Lookup - false - false - false - + false + false - canmodifyadditionalsettings + iscustomizable true - - 19 - 1900-01-01T00:00:00 - - - - - b4ea5732-d27a-46f8-bdb9-c2220cc832eb - - true - Unique identifier of the delegate user who created the plugintype. - 1033 - - - - b4ea5732-d27a-46f8-bdb9-c2220cc832eb - - true - Unique identifier of the delegate user who created the plugintype. - 1033 - - - - - - b4e61567-b076-4d93-85d0-3a8dd3b9ec59 - - true - Created By (Delegate) - 1033 - - - - b4e61567-b076-4d93-85d0-3a8dd3b9ec59 - - true - Created By (Delegate) - 1033 - - - plugintype - - - - false - canmodifyauditsettings - false - - false + + true + false + organization_anyprivilegeentity + None + 1.129.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_anyprivilegeentity + organizationid + anyprivilegeentity + organizationid + + 0 + + + b78ffd36-3ff8-487b-985c-c77c2995a01a + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - + false + organization_mailbox + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_mailbox + organizationid + mailbox + organizationid + + 0 + + + 503fd738-ccba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable true - - false - true - true - true - false - true - - createdonbehalfby - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - CreatedOnBehalfBy - - - LookupType - - 5.0.0.0 - false - - - None - - systemuser - - - - d960405f-e6a0-4ac9-a887-0699683c594c + + false + false + organization_supportusertable + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_supportusertable + organizationid + supportusertable + organizationid + + 0 + + + 52401f39-8808-4de7-a2e3-21a68ec39f3a - createdonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 27 - 1900-01-01T00:00:00 - - - - - - - - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - createdonbehalfbyname - 2025-11-06T00:19:23.48 - - false - canmodifyrequirementlevelsettings - None - - CreatedOnBehalfByName - - - StringType - + false + organization_queues + None 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 320 - - - ddba9d98-a999-4c23-9d97-a81dbd2a2795 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_queues + organizationid + queue + organizationid + + 0 + + + 529c5339-8676-4617-b9cc-7081cb2558b9 - createdonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 28 - 1900-01-01T00:00:00 - - - - - - - - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - createdonbehalfbyyominame - 2025-11-06T00:19:27.3869952 - - false - canmodifyrequirementlevelsettings - None - - CreatedOnBehalfByYomiName - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 100 - createdonbehalfbyname - - Text - - - false - 0 - 320 - - - 746caae7-59e9-435c-b1b9-4a824eb6c81c + false + channelpropertygroup_organization + None + 7.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + channelpropertygroup_organization + organizationid + channelpropertygroup + organizationid + + 0 + + + 27998439-60d2-11e0-834f-1cc1de634cfe - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 6 - 1900-01-01T00:00:00 - - - - - 7bd7a218-2341-db11-898a-0007e9e17ebd - - true - Culture code for the plug-in assembly. - 1033 - - - - 7bd7a218-2341-db11-898a-0007e9e17ebd - - true - Culture code for the plug-in assembly. - 1033 - - - - - - 6d13fd11-c48e-4dcf-a831-95b14020ef21 - - true - Culture - 1033 - - - - 6d13fd11-c48e-4dcf-a831-95b14020ef21 - - true - Culture - 1033 - - - plugintype - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - culture - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - ApplicationRequired - - Culture - - - StringType - + false + organization_post + None 5.0.0.0 - true - 0 - - Text - Auto - 32 - - - Text - - - false - 0 - 64 - - - f7770353-b2bf-4cfd-9f3c-1710c258eddf + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_post + organizationid + post + organizationid + + 0 + + + 8fcb603a-2bcd-11df-80a6-00137299e1c2 - - Integer - false - false - false - - false - canmodifyadditionalsettings - true - - 18 - 1900-01-01T00:00:00 - - - - - a24901bf-2241-db11-898a-0007e9e17ebd - - true - Customization level of the plug-in type. - 1033 - - - - a24901bf-2241-db11-898a-0007e9e17ebd - - true - Customization level of the plug-in type. - 1033 - - - - - - - plugintype - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - customizationlevel - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - CustomizationLevel - - - IntegerType - + false + lk_principalobjectattributeaccess_organizationid + None 5.0.0.0 - false - 0 - - None - 255 - -255 - - 0 - - - 47ba94ab-da60-4a4f-aa08-d35253b82856 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + lk_principalobjectattributeaccess_organizationid + organizationid + principalobjectattributeaccess + organizationid + + 0 + + + f072183e-bbef-42eb-a420-ff964bcc61f3 - - Memo - false - false - false - - false - canmodifyadditionalsettings - true - - 44 - 1900-01-01T00:00:00 - - - - - 6d16499d-80d7-4395-b87a-05928accce35 - - true - Serialized Custom Activity Type information, including required arguments. For more information, see SandboxCustomActivityInfo. - 1033 - - - - 6d16499d-80d7-4395-b87a-05928accce35 - - true - Serialized Custom Activity Type information, including required arguments. For more information, see SandboxCustomActivityInfo. - 1033 - - - - - - 04cc5b89-91e8-4e7e-b0ef-19fffdc2424c - - true - Custom Workflow Activity Info - 1033 - - - - 04cc5b89-91e8-4e7e-b0ef-19fffdc2424c - - true - Custom Workflow Activity Info - 1033 - - - plugintype - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - customworkflowactivityinfo - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - CustomWorkflowActivityInfo - - - MemoType - - 5.0.0.0 - false - - - TextArea - Auto - 1048576 - - TextArea - - false - - - 1c808611-d928-4663-bfbc-6e9bd0b0cc1d + false + organization_navigationsetting + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_navigationsetting + organizationid + navigationsetting + organization_navigationsetting_navigationsetting + + 0 + + + 55e7973e-2a06-4dca-aa0d-e3c73b2c7b74 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 42 - 1900-01-01T00:00:00 - - - - - 9db9977b-668a-4061-9d79-1991424d1d1c - - true - Description of the plug-in type. - 1033 - - - - 9db9977b-668a-4061-9d79-1991424d1d1c - - true - Description of the plug-in type. - 1033 - - - - - - fa5246e7-3b50-4f20-acf9-421505886e1c - - true - Description - 1033 - - - - fa5246e7-3b50-4f20-acf9-421505886e1c - - true - Description - 1033 - - - plugintype - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - + false + organization_systemapplicationmetadata + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_systemapplicationmetadata + organizationid + systemapplicationmetadata + organizationid + + 0 + + + b5f86440-60eb-11e0-834f-1cc1de634cfe + + false + false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings + iscustomizable false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - description - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Description - - - StringType - + + true + false + organization_postrole + None 5.0.0.0 - false - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - - 717204f4-1344-46c4-a1a5-005b0d52de58 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_postrole + organizationid + postrole + organizationid + + 0 + + + 127db940-1693-4d62-aaa0-2c5e24457a5a - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 1 - 1900-01-01T00:00:00 - - - - - bfabc7f4-2241-db11-898a-0007e9e17ebd - - true - User friendly name for the plug-in. - 1033 - - - - bfabc7f4-2241-db11-898a-0007e9e17ebd - - true - User friendly name for the plug-in. - 1033 - - - - - - d2f92b1e-1c57-4793-acab-f9050ea01f6e - - true - Display Name - 1033 - - - - d2f92b1e-1c57-4793-acab-f9050ea01f6e - - true - Display Name - 1033 - - - plugintype - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - friendlyname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - FriendlyName - - - StringType - - 5.0.0.0 - false - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - - d29194ec-8620-4ed7-84ec-38b8f0c585e5 + false + organization_textanalyticsentitymapping + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_textanalyticsentitymapping + organizationid + textanalyticsentitymapping + organizationid + + 0 + + + c03e4643-13ae-e311-80c2-00155d9dac1a - - Boolean - false - false - false - + false + false - canmodifyadditionalsettings + iscustomizable true - - 38 - 1900-01-01T00:00:00 - - - - - - - - - - plugintype - - - + + true + false + organization_position + None + 7.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_position + organizationid + position + organizationid + + 0 + + + 2be35843-c3ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_msdyn_appinsightsmetadata + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_appinsightsmetadata + organizationid + msdyn_appinsightsmetadata + organizationid + + 0 + + + f5ee7c43-b890-4551-8910-9d6d8cd3ddaa + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - ismanaged - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - IsManaged - - - BooleanType - + false + organization_roles + None 5.0.0.0 - false - 0 - - false - - 9d04e035-5408-4c1d-a5aa-20445a02f691 - - - - - b41954a2-f3a5-47e9-ae13-ceb49de4465b - - true - Information about whether the current component is managed. - 1033 - - - - b41954a2-f3a5-47e9-ae13-ceb49de4465b - - true - Information about whether the current component is managed. - 1033 - - - - - - 45a188b1-91a8-4019-b582-cebda8081064 - - true - Is Component Managed - 1033 - - - - 45a188b1-91a8-4019-b582-cebda8081064 - - true - Is Component Managed - 1033 - - - - false - - false - iscustomizable - false - - true - true - ismanaged - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 443c7078-b7cb-47e7-8547-08dfa82950d0 - - true - Unmanaged - 1033 - - - - 443c7078-b7cb-47e7-8547-08dfa82950d0 - - true - Unmanaged - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - ec886b5b-7e97-4c62-b30c-bf295639d540 - - true - Managed - 1033 - - - - ec886b5b-7e97-4c62-b30c-bf295639d540 - - true - Managed - 1033 - - - - 1 - - - - - 0 - - - 95e5df07-0fec-43ca-8918-f9eb9c73eb57 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_roles + organizationid + role + organizationid_organization + + 0 + + + 3d07b246-fc82-47af-a182-b4d9a9c6dc34 - ismanaged - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 43 - 1900-01-01T00:00:00 - - - - - - - - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - ismanagedname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - IsManagedName - - - VirtualType - - 5.0.0.0 - true - - - - - a41dc739-347d-408d-bf99-c6f3c305e27b + true + organization_orginsightsnotification + None + 8.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_orginsightsnotification + organizationid + orginsightsnotification + organization_orginsightsnotification + + 0 + + + 9cdcc946-5359-41c0-af96-761a0a6287a9 - - Boolean - false - false - false - - false - canmodifyadditionalsettings - true - - 15 - 1900-01-01T00:00:00 - - - - - b457f219-1814-4a12-a233-25f7d4c9c3d6 - - true - Indicates if the plug-in is a custom activity for workflows. - 1033 - - - - b457f219-1814-4a12-a233-25f7d4c9c3d6 - - true - Indicates if the plug-in is a custom activity for workflows. - 1033 - - - - - - a0a02ab3-01c0-4a0e-92d6-b43a92aab533 - - true - Is Workflow Activity - 1033 - - - - a0a02ab3-01c0-4a0e-92d6-b43a92aab533 - - true - Is Workflow Activity - 1033 - - - plugintype - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - isworkflowactivity - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - IsWorkflowActivity - - - BooleanType - + false + organization_teams + None 5.0.0.0 - false - 0 - - false - - 1f491b5c-a35f-4dfe-b515-93b9c1b14c16 - - - - - d5f6d07d-33d1-4b0a-8145-603519ccee0b - - true - Indicates if the plug-in is a custom activity for workflows. - 1033 - - - - d5f6d07d-33d1-4b0a-8145-603519ccee0b - - true - Indicates if the plug-in is a custom activity for workflows. - 1033 - - - + OneToManyRelationship + + DoNotDisplay + Details + - - - false - - false - iscustomizable - false - - false - true - plugintype_isworkflowactivity - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 3c25e7d6-2241-db15-898a-0007e9e37ebd - - true - No - 1033 - - - - 3c25e7d6-2241-db15-898a-0007e9e37ebd - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 3e25e7d6-2241-db17-898a-0007e9e57ebd - - true - Yes - 1033 - - - - 3e25e7d6-2241-db17-898a-0007e9e57ebd - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - a41dc73a-347d-408d-bf99-c6f3c305e27b + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_teams + organizationid + team + organizationid_organization + + 0 + + + 2106a747-f7cb-e511-8e7e-00219b619656 - isworkflowactivity - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 32 - 1900-01-01T00:00:00 - - - - - - - - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - + false + organization_recommendeddocument + None + 8.1.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_recommendeddocument + organizationid + recommendeddocument + organizationid + + 0 + + + 4f92ac47-4a55-f111-a824-7c1e5287b6a7 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - isworkflowactivityname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - IsWorkflowActivityName - - - VirtualType - - 5.0.0.0 - true - - - - - 3c244c51-aad8-4fac-9be8-a5cb945c84b7 + + false + false + organization_athenareconciliationinfo + None + 1.0.7.16 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_athenareconciliationinfo + organizationid + athenareconciliationinfo + organizationid + + 0 + + + a43cb24b-3687-4142-b63d-68d0fec227b2 - - Integer - false - false - false - - false - canmodifyadditionalsettings - true - - 39 - 1900-01-01T00:00:00 - - - - - c63e1bd2-2e97-42b1-b54c-0dbd7decf115 - - true - Major of the version number of the assembly for the plug-in type. - 1033 - - - - c63e1bd2-2e97-42b1-b54c-0dbd7decf115 - - true - Major of the version number of the assembly for the plug-in type. - 1033 - - - - - - d9233e5b-0ac2-4bc9-bb3d-f5f02408cfcc - - true - Version major - 1033 - - - - d9233e5b-0ac2-4bc9-bb3d-f5f02408cfcc - - true - Version major - 1033 - - - plugintype - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - major - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - Major - - - IntegerType - - 5.0.0.0 - true - 0 - - None - 65534 - 0 - - 0 - - - cf8d2695-b795-44a3-8d2c-c5fbb098fad5 + false + lk_syncattributemappingprofile_organizationid + None + 7.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + lk_syncattributemappingprofile_organizationid + organizationid + syncattributemappingprofile + organizationid + + 0 + + + 0dfb6451-d2ba-f011-bbd3-7c1e52365f30 - - Integer - false - false - false - - false - canmodifyadditionalsettings - true - - 40 - 1900-01-01T00:00:00 - - - - - 6be57597-4b62-4eed-b3a7-87cc665b17d2 - - true - Minor of the version number of the assembly for the plug-in type. - 1033 - - - - 6be57597-4b62-4eed-b3a7-87cc665b17d2 - - true - Minor of the version number of the assembly for the plug-in type. - 1033 - - - - - - 435800a4-9e96-469c-a36a-62dfba8c1aeb - - true - Version minor - 1033 - - - - 435800a4-9e96-469c-a36a-62dfba8c1aeb - - true - Version minor - 1033 - - - plugintype - - - - true - canmodifyauditsettings - true - - false + false - false + true iscustomizable false - false - false - + false + false + organization_organizationdatasyncsubscription + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_organizationdatasyncsubscription + organizationid + organizationdatasyncsubscription + organizationid + + 0 + + + dffb6451-d2ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable + iscustomizable false - - false - false - false - false - + + false + false + organization_organizationdatasyncsubscriptionentity + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_organizationdatasyncsubscriptionentity + organizationid + organizationdatasyncsubscriptionentity + organizationid + + 0 + + + 99fc6451-d2ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - true - - minor - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - Minor - - - IntegerType - - 5.0.0.0 - true - 0 - - None - 65534 - 0 - - 0 - - - bc177a07-c530-4976-a4c0-ce0541061cb1 + + false + false + organization_organizationdatasyncsubscriptionfnotable + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_organizationdatasyncsubscriptionfnotable + organizationid + organizationdatasyncsubscriptionfnotable + organizationid + + 0 + + + 93ef2654-87b6-4b08-86da-28fa91477d76 - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 5 - 1900-01-01T00:00:00 - - - - - 049af6ca-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who last modified the plug-in type. - 1033 - - - - 049af6ca-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who last modified the plug-in type. - 1033 - - - - - - fd4ed7b5-0b0a-4af5-8ff5-a7aecc04e7cb - - true - Modified By - 1033 - - - - fd4ed7b5-0b0a-4af5-8ff5-a7aecc04e7cb - - true - Modified By - 1033 - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - modifiedby - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ModifiedBy - - - LookupType - - 5.0.0.0 - false - - - None - - systemuser - - - - 4c2312bd-bd97-47f6-8f3d-646346c74a78 + false + organization_advancedsimilarityrule + None + 8.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_advancedsimilarityrule + organizationid + advancedsimilarityrule + organizationid + + 0 + + + c7f69255-de7c-44c4-a83a-1a9df9be777b - modifiedby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 33 - 1900-01-01T00:00:00 - - - - - - - - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - modifiedbyname - 2025-11-06T00:19:25.12 - - false - canmodifyrequirementlevelsettings - None - - ModifiedByName - - - StringType - + false + webresource_organization + None 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 320 - - - ad7f0214-4f5e-496c-adde-e75eda7d400f + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + webresource_organization + organizationid + webresource + organizationid + + 0 + + + e0000e56-f6d7-4e73-831d-4877712cf588 - - DateTime - false - false - false - - false - canmodifyadditionalsettings - true - - 13 - 1900-01-01T00:00:00 - - - - - 67cee1dc-2241-db11-898a-0007e9e17ebd - - true - Date and time when the plug-in type was last modified. - 1033 - - - - 67cee1dc-2241-db11-898a-0007e9e17ebd - - true - Date and time when the plug-in type was last modified. - 1033 - - - - - - c72aa8ae-3658-4ede-b6bf-94afa636d705 - - true - Modified On - 1033 - - - - c72aa8ae-3658-4ede-b6bf-94afa636d705 - - true - Modified On - 1033 - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - + false + organization_appconfiginstance + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appconfiginstance + organizationid + appconfiginstance + organization_appconfiginstance_appconfiginstance + + 0 + + + 49954456-c0ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - modifiedon - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOn - - - DateTimeType - - 5.0.0.0 - false - 0 - - DateAndTime - Inactive - - 0 - - false - canmodifybehavior + iscustomizable false - - - UserLocal - - - - eb993f01-da57-4e8b-982e-061838df5fb8 + + false + false + organization_msdyn_helppage + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_helppage + organizationid + msdyn_helppage + organizationid + + 0 + + + 74216456-c3ba-f011-bbd3-7c1e52365f30 - - Lookup - false - false - false - - false - canmodifyadditionalsettings + false + + true + iscustomizable true - - 20 - 1900-01-01T00:00:00 - - - - - f35cd172-bc10-4f26-a8d3-ccb3004afe56 - - true - Unique identifier of the delegate user who last modified the plugintype. - 1033 - - - - f35cd172-bc10-4f26-a8d3-ccb3004afe56 - - true - Unique identifier of the delegate user who last modified the plugintype. - 1033 - - - - - - cba90629-c0f6-41e3-81b2-1c0e96d224b2 - - true - Modified By (Delegate) - 1033 - - - - cba90629-c0f6-41e3-81b2-1c0e96d224b2 - - true - Modified By (Delegate) - 1033 - - - plugintype - - - - false - canmodifyauditsettings - false - - false + + false + false + organization_msdyn_modulerundetail + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_modulerundetail + organizationid + msdyn_modulerundetail + organizationid + + 0 + + + de552a57-7570-43ee-a090-1936744a2bfd + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - modifiedonbehalfby - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfBy - - - LookupType - + false + organization_sdkmessagefilter + None 5.0.0.0 - false - - - None - - systemuser - - - - 3b457d6f-1293-4237-b24f-a3d586b3c144 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessagefilter + organizationid + sdkmessagefilter + organizationid + + 0 + + + a8490659-efba-f011-bbd3-7c1e52365f30 - modifiedonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 23 - 1900-01-01T00:00:00 - - - - - - - - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false - false + true iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - modifiedonbehalfbyname - 2025-11-06T00:19:24.2130048 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfByName - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 320 - - - d80477c4-41e9-4caf-8cc7-574504cf6d5a + false + false + organization_msdyn_solutionhealthruleset + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_solutionhealthruleset + organizationid + msdyn_solutionhealthruleset + organizationid + + 0 + + + 47832a5b-e8a3-454c-97ea-bb5b3c132878 - modifiedonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 24 - 1900-01-01T00:00:00 - - - - - - - - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - + false + organization_systemforms + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_systemforms + organizationid + systemform + organizationid + + 0 + + + 8ea8bb5c-c0ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - modifiedonbehalfbyyominame - 2025-11-06T00:19:27.4029952 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfByYomiName - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 100 - modifiedonbehalfbyname - - Text - - - false - 0 - 320 - - - 3b77bd29-81a4-41e8-9c62-b45b765735f6 + + false + false + organization_msdyn_tour + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_tour + organizationid + msdyn_tour + organizationid + + 0 + + + b807cb5c-c3ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings + false + + true + iscustomizable true - - 41 - 1900-01-01T00:00:00 - - - - - 1de4e6db-34cb-4da0-8c83-6d89155b798d - - true - Name of the plug-in type. - 1033 - - - - 1de4e6db-34cb-4da0-8c83-6d89155b798d - - true - Name of the plug-in type. - 1033 - - - - - - 39646582-83d9-4d3b-b55e-24b17e5f8474 - - true - Name - 1033 - - - - 39646582-83d9-4d3b-b55e-24b17e5f8474 - - true - Name - 1033 - - - plugintype - - - + + false + false + organization_msdyn_workflowactionstatus + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_workflowactionstatus + organizationid + msdyn_workflowactionstatus + organizationid + + 0 + + + 0ddba05f-c76a-f111-ab0f-7ced8d776baf + + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_msdyn_evalresult + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_evalresult + organizationid + msdyn_evalresult + organizationid + + 0 + + + a5aee05f-197a-40cf-b7df-55144aef1cc1 + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - true - - false - isrenameable - false - - false - true - true - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - name - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Name - - - StringType - + false + organization_publisher + None 5.0.0.0 - false - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - - 27d6dcfa-fe01-4522-9b75-e9c613fcf004 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_publisher + organizationid + publisher + organizationid + + 0 + + + add76360-3e2e-4c45-a456-eb60432501e8 - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 10 - 1900-01-01T00:00:00 - - - - - 1641b506-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the organization with which the plug-in type is associated. - 1033 - - - - 1641b506-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the organization with which the plug-in type is associated. - 1033 - - - - - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - + true + organization_savedorginsightsconfiguration + None + 8.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_savedorginsightsconfiguration + organizationid + savedorginsightsconfiguration + organization_savedorginsightsconfiguration + + 0 + + + 79522061-aac7-4862-bde3-f66f5fc57747 + + false + false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings + iscustomizable false - - + + true + false + organization_appconfig + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appconfig + organizationid + appconfig + organization_appconfig + + 0 + + + a0db2461-cf7a-4885-9aae-c5f6eb74323d + + false + false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - true - - organizationid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - OrganizationId - - - LookupType - + + true + false + organization_kb_article_templates + None 5.0.0.0 - false - - - None - - organization - - - - 2ad11000-e868-4cd8-b926-6e50cc63bc75 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_kb_article_templates + organizationid + kbarticletemplate + organizationid + + 0 + + + 0ccdc761-e62d-4226-b773-a2aecb855490 - - DateTime - false - false - false - - false - canmodifyadditionalsettings - true - - 34 - 1900-01-01T00:00:00 - - - - - 2ad11001-e868-4cd8-b926-6e50cc63bc75 - - true - For internal use only. - 1033 - - - - 2ad11001-e868-4cd8-b926-6e50cc63bc75 - - true - For internal use only. - 1033 - - - - - - 2ad11002-e868-4cd8-b926-6e50cc63bc75 - - true - Record Overwrite Time - 1033 - - - - 2ad11002-e868-4cd8-b926-6e50cc63bc75 - - true - Record Overwrite Time - 1033 - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - overwritetime - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - OverwriteTime - - - DateTimeType - + false + organization_wizardpage + None 5.0.0.0 - false - 0 - - DateOnly - Inactive - - 0 - + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_wizardpage + organizationid + wizardpage + organizationid + + 0 + + + 20bc3762-c207-4f54-9c83-a23429b0db52 + + false + false - canmodifybehavior + iscustomizable false - - - UserLocal - - - - 78823c23-2595-4d68-ac05-7993b40fcbda + + true + false + organization_integration_statuses + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_integration_statuses + organizationid + integrationstatus + organizationid_organization + + 0 + + + 4a314862-d1ba-f011-bbd3-7c1e52365f30 - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 17 - 1900-01-01T00:00:00 - - - - - e197ba00-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the plug-in assembly that contains this plug-in type. - 1033 - - - - e197ba00-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the plug-in assembly that contains this plug-in type. - 1033 - - - - - - fa630d4b-3dc6-42ff-bba6-9a1aa2299764 - - true - Plugin Assembly - 1033 - - - - fa630d4b-3dc6-42ff-bba6-9a1aa2299764 - - true - Plugin Assembly - 1033 - - - plugintype - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_mobileofflineprofileextension + None + 1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_mobileofflineprofileextension + organizationid + mobileofflineprofileextension + organizationid + + 0 + + + 43fb6862-1eee-426a-8ed4-b62ccdcc6e22 + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - pluginassemblyid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - PluginAssemblyId - - - LookupType - + false + organization_attributemap + None 5.0.0.0 - false - - - None - - pluginassembly - - - - 26af94c0-bbee-44c9-af54-92d6aa087ec8 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_attributemap + organizationid + attributemap + organizationid + + 0 + + + 74869d62-3a90-4d7a-9d8b-fa3f802ba679 - pluginassemblyid - String - false - false - false - - false - canmodifyadditionalsettings - true - - 35 - 1900-01-01T00:00:00 - - - - - - - - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - + false + organization_appmodule + None + 8.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appmodule + organizationid + appmodule + organization_appmodule_appmodule + + 0 + + + 12d13a63-6aaf-43b6-852e-fff7b3ee05f7 + + false + false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - pluginassemblyidname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - PluginAssemblyIdName - - - StringType - + + true + false + organization_subjects + None 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 320 - - - dbc0fdc3-0ee9-445b-bd45-8b8325f994de + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_subjects + organizationid + subject + organizationid + + 0 + + + 5c69e763-72c1-42c9-9136-404ac56b3d5e - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 10000 - 2025-11-06T01:23:14.3800064 - - - - - 6c43d511-573d-42c7-a43a-2732914165e7 - - true - Uniquely identifies the plug-in type associated with a plugin package when exporting a solution. - 1033 - - - - 6c43d511-573d-42c7-a43a-2732914165e7 - - true - Uniquely identifies the plug-in type associated with a plugin package when exporting a solution. - 1033 - - - - - - b53a9a74-fd19-4f60-b339-a81620d8b461 - - true - Plugin Type export key - 1033 - - - - b53a9a74-fd19-4f60-b339-a81620d8b461 - - true - Plugin Type export key - 1033 - - - plugintype - - - - true - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - false - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - false - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - false - false - true - false - true - - plugintypeexportkey - 2025-11-06T01:23:14.3800064 - - false - canmodifyrequirementlevelsettings - SystemRequired - - PluginTypeExportKey - - - StringType - - 1.0.0.0 - false - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - - 4527ad71-ebe5-4ada-82ad-70e0394af411 + false + organization_hierarchyrules + None + 7.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_hierarchyrules + organizationid + hierarchyrule + organizationid + + 0 + + + aeb30167-3dc1-4cca-be6a-5a0c56991b17 - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 4 - 1900-01-01T00:00:00 - - - - - 1de0eed0-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the plug-in type. - 1033 - - - - 1de0eed0-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the plug-in type. - 1033 - - - - - - 913123b3-d6c5-4208-bd89-3e76d33921dd - - true - Plug-in Type - 1033 - - - - 913123b3-d6c5-4208-bd89-3e76d33921dd - - true - Plug-in Type - 1033 - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable - false + true - false - true - - true - canmodifyglobalfiltersettings - false - true - true - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - false - false - true - false - true - - plugintypeid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - PluginTypeId - - - UniqueidentifierType - - 5.0.0.0 - false - - - - - b205262a-62b6-4f9d-935b-5e095064ff76 + true + Organization_SyncErrors + Append + 8.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + NoCascade + Cascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + organizationid + organization + Organization_SyncErrors + regardingobjectid + syncerror + regardingobjectid_organization_syncerror + + 1 + + + c985a867-0d9f-4767-8a3f-ccb9d07c9d21 - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 16 - 1900-01-01T00:00:00 - - - - - 4199ba00-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the plug-in type. - 1033 - - - - 4199ba00-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the plug-in type. - 1033 - - - - - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - plugintypeidunique - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - PluginTypeIdUnique - - - UniqueidentifierType - - 5.0.0.0 - false - - - - - a252af69-8619-422e-b0c2-fc01bdd59ffe + false + offlinecommanddefinition_organization + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + offlinecommanddefinition_organization + organizationid + offlinecommanddefinition + organizationid + + 0 + + + eaf60a6a-90c4-42ee-9f5f-fb092352af47 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 2 - 1900-01-01T00:00:00 - - - - - fbe8af0c-2341-db11-898a-0007e9e17ebd - - true - Public key token of the assembly for the plug-in type. - 1033 - - - - fbe8af0c-2341-db11-898a-0007e9e17ebd - - true - Public key token of the assembly for the plug-in type. - 1033 - - - - - - 9a490acb-ce63-4e30-9a6e-a81001c9fc28 - - true - Public Key Token - 1033 - - - - 9a490acb-ce63-4e30-9a6e-a81001c9fc28 - - true - Public Key Token - 1033 - - - plugintype - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - publickeytoken - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - ApplicationRequired - - PublicKeyToken - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 32 - - - Text - - - false - 0 - 64 - - - a9893000-414f-4e05-86d2-88a5742a6765 + false + lk_organizationui_organizationid + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + lk_organizationui_organizationid + organizationid + organizationui + organizationid + + 0 + + + 62b2846a-fffa-4fb4-9e80-841fb5e799e8 - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 36 - 1900-01-01T00:00:00 - - - - - a9893001-414f-4e05-86d2-88a5742a6765 - - true - Unique identifier of the associated solution. - 1033 - - - - a9893001-414f-4e05-86d2-88a5742a6765 - - true - Unique identifier of the associated solution. - 1033 - - - - - - a9893002-414f-4e05-86d2-88a5742a6765 - - true - Solution - 1033 - - - - a9893002-414f-4e05-86d2-88a5742a6765 - - true - Solution - 1033 - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - solutionid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - SolutionId - - - UniqueidentifierType - + false + organization_business_units + None 5.0.0.0 - false - - - - - 5efb9000-c63c-47e3-8f37-0f27f5383306 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_business_units + organizationid + businessunit + organizationid + + 0 + + + 5ae9a26b-1169-f111-ab0f-7ced8d2cc7ed - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 37 - 1900-01-01T00:00:00 - - - - - 5efb9001-c63c-47e3-8f37-0f27f5383306 - - true - For internal use only. - 1033 - - - - 5efb9001-c63c-47e3-8f37-0f27f5383306 - - true - For internal use only. - 1033 - - - - - - 5efb9002-c63c-47e3-8f37-0f27f5383306 - - true - Solution - 1033 - - - - 5efb9002-c63c-47e3-8f37-0f27f5383306 - - true - Solution - 1033 - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable true - - false - false - true - false - false - false - - supportingsolutionid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - SupportingSolutionId - - - UniqueidentifierType - - 5.0.0.0 - false - - - - - 8d037866-476f-4708-87d7-cebdc3e51968 + + false + false + organization_sourcecontroloperationtracking + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sourcecontroloperationtracking + organizationid + sourcecontroloperationtracking + organizationid + + 0 + + + 3e1a3070-953a-405e-a0d0-cce152f0d318 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 11 - 1900-01-01T00:00:00 - - - - - 2cabc7f4-2241-db11-898a-0007e9e17ebd - - true - Fully qualified type name of the plug-in type. - 1033 - - - - 2cabc7f4-2241-db11-898a-0007e9e17ebd - - true - Fully qualified type name of the plug-in type. - 1033 - - - - - - 4178e8cd-abc9-4800-b4b2-03912bf72c0b - - true - Type Name - 1033 - - - - 4178e8cd-abc9-4800-b4b2-03912bf72c0b - - true - Type Name - 1033 - - - plugintype - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - true - true - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - typename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - TypeName - - - StringType - + false + organization_sdkmessagerequestfield + None 5.0.0.0 - false - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - - f8d340d4-b428-48e1-80b4-f6b1e74f325d + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessagerequestfield + organizationid + sdkmessagerequestfield + organizationid + + 0 + + + 93a22272-d9ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 8 - 1900-01-01T00:00:00 - - - - - c54901bf-2241-db11-898a-0007e9e17ebd - - true - Version number of the assembly for the plug-in type. - 1033 - - - - c54901bf-2241-db11-898a-0007e9e17ebd - - true - Version number of the assembly for the plug-in type. - 1033 - - - - - - 0d423275-0dc1-4497-92e5-e15b14c43cb2 - - true - Version - 1033 - - - - 0d423275-0dc1-4497-92e5-e15b14c43cb2 - - true - Version - 1033 - - - plugintype - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + organization_maskingrule + None + 9.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_maskingrule + organizationid + maskingrule + organizationid + + 0 + + + 7c7c6972-8189-48cb-bc96-7f8d223dad20 + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - version - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - ApplicationRequired - - Version - - - StringType - + false + organization_complexcontrols + None 5.0.0.0 - true - 0 - - VersionNumber - Auto - 48 - - - VersionNumber - - - false - 0 - 96 - - - aef421b8-3894-40d8-8ab6-c0f40a4e80d9 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_complexcontrols + organizationid + complexcontrol + organizationid + + 0 + + + 94e4e872-1521-468f-b018-55bf559ca46d - - BigInt - false - false - false - - false - canmodifyadditionalsettings - true - - 14 - 1900-01-01T00:00:00 - - - - - - - - - - plugintype - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - versionnumber - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - VersionNumber - - - BigIntType - + false + organization_plugintype + None 5.0.0.0 - false - - - 9223372036854775807 - -9223372036854775808 - - - 477f4396-f232-4c27-a762-219f5c59c5b8 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_plugintype + organizationid + plugintype + organizationid + + 0 + + + a6a03373-646b-417c-ab88-9bfc387d2b84 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 21 - 1900-01-01T00:00:00 - - - - - 20acaf12-ff93-4904-957e-5ba161c3752a - - true - Group name of workflow custom activity. - 1033 - - - - 20acaf12-ff93-4904-957e-5ba161c3752a - - true - Group name of workflow custom activity. - 1033 - - - - - - 24dc0fd7-05d0-45cf-bc6f-1cc782506560 - - true - Workflow Activity Group Name - 1033 - - - - 24dc0fd7-05d0-45cf-bc6f-1cc782506560 - - true - Workflow Activity Group Name - 1033 - - - plugintype - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - workflowactivitygroupname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - WorkflowActivityGroupName - - - StringType - - 5.0.0.0 - false - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - - false - false - false - - false - canbeincustomentityassociation - false - - - false - canbeinmanytomany - false - - - false - canbeprimaryentityinrelationship - true - - - false - canberelatedentityinrelationship - true - - true - - false - canchangetrackingbeenabled - false - - - false - cancreateattributes - false - - - false - cancreatecharts - false - - - false - cancreateforms - false - - - false - cancreateviews - false - - - false - canenablesynctoexternalsearchindex - false - - - true - canmodifyadditionalsettings - false - - false - false - Local - 1900-01-01T00:00:00 - - - false - - - - 795011ad-2241-db11-898a-0007e9e17ebd - - true - Type that inherits from the IPlugin interface and is contained within a plug-in assembly. - 1033 - - - - 795011ad-2241-db11-898a-0007e9e17ebd - - true - Type that inherits from the IPlugin interface and is contained within a plug-in assembly. - 1033 - - - - - - 7b5011ad-2241-db11-898a-0007e9e17ebd - - true - Plug-in Types - 1033 - - - - 7b5011ad-2241-db11-898a-0007e9e17ebd - - true - Plug-in Types - 1033 - - - - - - 7a5011ad-2241-db11-898a-0007e9e17ebd - - true - Plug-in Type - 1033 - - - - 7a5011ad-2241-db11-898a-0007e9e17ebd - - true - Plug-in Type - 1033 - - - false - - false - false - false - false - - - - - false - false - false - false - - false - canmodifyauditsettings - false - - true - false - false - - false - canmodifyconnectionsettings - false - - false - - false - iscustomizable - false - - false - false - - false - canmodifyduplicatedetectionsettings - false - - false - false - false - false - false - false - false - - false - canmodifymailmergesettings - false - - true - - false - ismappable - false - - false - false - - false - canmodifymobileclientreadonly - false - - true - - false - isrenameable - false - - false - false - false - true - false - true - - false - canmodifyqueuesettings - false - - - false - canmodifymobilevisibility - false - - - true - canmodifymobileclientvisibility - true - - plugintype - - + false + customcontrol_organization + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + customcontrol_organization + organizationid + customcontrol + organizationid + + 0 + - 52299113-7928-4b1e-9618-3fc0da39870f + b47c2e74-b51c-4409-a728-a1458c8430a3 false @@ -229376,9 +239659,9 @@ true false - lk_plugintype_createdonbehalfby + MobileOfflineProfileItemAssociation_organization None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -229410,32 +239693,32 @@ false false - systemuserid - systemuser - lk_plugintype_createdonbehalfby - createdonbehalfby - plugintype - createdonbehalfby + organizationid + organization + MobileOfflineProfileItemAssociation_organization + organizationid + mobileofflineprofileitemassociation + organizationid 0 - 8b542b51-81bb-4598-9025-9d6914188959 + b6347f74-a8d4-e511-8a95-00219b619656 false false iscustomizable - false + true true false - lk_plugintype_modifiedonbehalfby + organization_delveactionhub None - 5.0.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -229464,29 +239747,29 @@ false false - systemuserid - systemuser - lk_plugintype_modifiedonbehalfby - modifiedonbehalfby - plugintype - modifiedonbehalfby + organizationid + organization + organization_delveactionhub + organizationid + delveactionhub + organizationid 0 - 94e4e872-1521-468f-b018-55bf559ca46d + ffc25475-b3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false false - organization_plugintype + organization_synapselinkexternaltablestate None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -229520,27 +239803,27 @@ false organizationid organization - organization_plugintype + organization_synapselinkexternaltablestate organizationid - plugintype + synapselinkexternaltablestate organizationid 0 - 37d96b99-7b8e-452e-986c-2517136cfc1c + dfc35475-b3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - true - pluginassembly_plugintype + false + false + organization_synapselinkprofile None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -229560,7 +239843,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -229572,29 +239855,29 @@ false false - pluginassemblyid - pluginassembly - pluginassembly_plugintype - pluginassemblyid - plugintype - pluginassemblyid + organizationid + organization + organization_synapselinkprofile + organizationid + synapselinkprofile + organizationid 0 - cce9acab-7944-4e1e-aec2-80e18fb0835d + 19c55475-b3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false false - createdby_plugintype + organization_synapselinkprofileentity None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -229626,17 +239909,17 @@ false false - systemuserid - systemuser - createdby_plugintype - createdby - plugintype - createdby + organizationid + organization + organization_synapselinkprofileentity + organizationid + synapselinkprofileentity + organizationid 0 - 212a8cd7-eb4b-45c8-b580-15af4c8824b9 + ad11cf77-5931-4eef-9f83-783bb3fe01bf false @@ -229646,9 +239929,9 @@ true false - modifiedby_plugintype + organization_routingruleitems None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -229680,21 +239963,17 @@ false false - systemuserid - systemuser - modifiedby_plugintype - modifiedby - plugintype - modifiedby + organizationid + organization + organization_routingruleitems + organizationid + routingruleitem + organizationid 0 - - 2025-11-06T05:11:57.2329984 - 4602 - - 6d5eaf2a-59c0-41da-a94d-8f935caf6525 + 76e98478-d7a2-4df0-ba49-9b238b7e5f21 false @@ -229703,8 +239982,8 @@ false true - true - plugintype_sdkmessageprocessingstep + false + organization_applicationfile None 5.0.0.0 OneToManyRelationship @@ -229726,7 +240005,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -229738,29 +240017,29 @@ false false - plugintypeid - plugintype - plugintype_sdkmessageprocessingstep - eventhandler - sdkmessageprocessingstep - eventhandler_plugintype + organizationid + organization + organization_applicationfile + organizationid + applicationfile + organizationid 0 - 8b2b6e33-c580-43db-acaa-846e7229ea89 + c408bc7f-aeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false false - userentityinstancedata_plugintype + organization_catalog None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -229780,7 +240059,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -229792,29 +240071,29 @@ false false - plugintypeid - plugintype - userentityinstancedata_plugintype - objectid - userentityinstancedata - objectid_plugintype + organizationid + organization + organization_catalog + organizationid + catalog + organizationid 0 - 8df80b51-ab41-439b-b04a-b56b7d728daf + eb1c8f80-d2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - true - plugintype_plugintypestatistic + false + false + organization_organizationdatasyncfnostate None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -229834,7 +240113,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -229846,29 +240125,29 @@ false false - plugintypeid - plugintype - plugintype_plugintypestatistic - plugintypeid - plugintypestatistic - plugintypeid + organizationid + organization + organization_organizationdatasyncfnostate + organizationid + organizationdatasyncfnostate + organizationid 0 - a0401e5d-38ea-46e0-bf68-7277f38ddd80 + eb1d8f80-d2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - true - plugintypeid_sdkmessageprocessingstep + false + false + organization_organizationdatasyncstate None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -229888,7 +240167,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -229900,41 +240179,41 @@ false false - plugintypeid - plugintype - plugintypeid_sdkmessageprocessingstep - plugintypeid - sdkmessageprocessingstep - plugintypeid + organizationid + organization + organization_organizationdatasyncstate + organizationid + organizationdatasyncstate + organizationid 0 - 7a2748bc-aeba-f011-bbd3-7c1e52365f30 + def98681-a38d-4496-af6a-92b427de8126 - true + false false iscustomizable false true - true - plugintype_customapi - Append - 1.0.0.0 + false + organization_mailboxstatistics + None + 6.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -229942,7 +240221,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -229954,5987 +240233,6200 @@ false false - plugintypeid - plugintype - CustomAPIId - plugintypeid - customapi - PluginTypeId + organizationid + organization + organization_mailboxstatistics + organizationid + mailboxstatistics + organizationid - 1 + 0 - - - 8 - OrganizationOwned - - plugintypeid - - plugintypeid - - name - - - false - false - false - true - false - false - false - prvCreatePluginType - 592cb518-880d-492f-bd3c-3558413b8ced - Create - - - false - false - false - true - false - false - false - prvReadPluginType - 9365005c-4703-473b-8d3c-d073cfd8670c - Read - - - false - false - false - true - false - false - false - prvWritePluginType - c70843e8-d617-4873-9d05-8a8d4a68ee58 - Write - - - false - false - false - true - false - false - false - prvDeletePluginType - 5e1c5422-9a12-4d3e-9960-51a812a005e2 - Delete - - - false - false - false - true - false - false - false - prvAppendPluginType - 1359d788-6ea1-4a5a-97e9-8df778e6991d - Append - - - false - false - false - true - false - false - false - prvAppendToPluginType - 574c053e-6488-4bfb-832a-cbc47aff8b32 - AppendTo - - - - FilteredPluginType - PluginType - - - false - Standard - false - 5.0.0.0 - - - false - canchangehierarchicalrelationship - false - - - false - PluginTypes - - - true - - - 35877686-39c3-4e74-a96c-d4d87252c3b2 + + 66ced981-b3ba-f011-bbd3-7c1e52365f30 - - 00000000-0000-0000-0000-000000000000 - - asyncoperation - - - - - - - a74cc85a-e6e1-41b4-a072-6007c610b5c5 - - true - Plugin Type Entity Key1 - 1033 - - - - a74cc85a-e6e1-41b4-a072-6007c610b5c5 - - true - Plugin Type Entity Key1 - 1033 - - - Active - plugintype - 1.0.0.0 - - false + false + + true iscustomizable false - - true - true - false - true - - componentstate - overwritetime - plugintypeexportkey - - plugintypeentitykey - PluginTypeEntityKey - - - plugintypes - 0 - plugintypes - false - - true - canmodifymobileclientoffline - false - - false - false - - false - false - - - - publisher - - fcd2b9c5-4a53-4083-880d-16da4be49ac3 - - 0 - - - 9e4f9ffd-bf3e-46f4-885b-c47717e0e23c + + false + false + organization_synapselinkprofileentitystate + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_synapselinkprofileentitystate + organizationid + synapselinkprofileentitystate + organizationid + + 0 + + + 5ccfd981-b3ba-f011-bbd3-7c1e52365f30 - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - false - - 11 - 1900-01-01T00:00:00 - - - - - 3dcb78f0-5272-4950-aa12-fff070cd5319 - - true - Unique identifier for address 1. - 1033 - - - - 3dcb78f0-5272-4950-aa12-fff070cd5319 - - true - Unique identifier for address 1. - 1033 - - - - - - b8debc28-fadd-4268-928a-76535bc76b33 - - true - Address 1: ID - 1033 - - - - b8debc28-fadd-4268-928a-76535bc76b33 - - true - Address 1: ID - 1033 - - - publisher - - - - false - canmodifyauditsettings + false + + true + iscustomizable false - - false + + false + false + organization_synapselinkschedule + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_synapselinkschedule + organizationid + synapselinkschedule + organizationid + + 0 + + + 062ae281-9e87-46db-a98c-aec4ef185b82 + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - true - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - address1_addressid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_AddressId - - - UniqueidentifierType - + false + organization_sdkmessageresponse + None 5.0.0.0 - true - - - - - a7e66424-df48-4d14-ba73-5b25d114040c + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessageresponse + organizationid + sdkmessageresponse + organizationid + + 0 + + + 4e754383-8265-48f5-bb19-d50e857c828d - - Picklist - false - false - false - - false - canmodifyadditionalsettings - false - - 8 - 1900-01-01T00:00:00 - - - - - ffe30382-0d17-4609-a77f-f455897fd5fc - - true - Type of address for address 1, such as billing, shipping, or primary address. - 1033 - - - - ffe30382-0d17-4609-a77f-f455897fd5fc - - true - Type of address for address 1, such as billing, shipping, or primary address. - 1033 - - - - - - 7cf97fe5-8215-466c-898b-fa37f6d498ad - - true - Address 1: Address Type - 1033 - - - - 7cf97fe5-8215-466c-898b-fa37f6d498ad - - true - Address 1: Address Type - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - true - true - true - true - true - - address1_addresstypecode - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_AddressTypeCode - - - PicklistType - + false + organization_connection_roles + None 5.0.0.0 - true - 0 - - 1 - - a063ff34-c563-4239-98fc-1fefc488b5be - - - - - 65c2ca3d-6f34-463c-8302-5627b6f019b4 - - true - Type of address for address 1, such as billing, shipping, or primary address. - 1033 - - - - 65c2ca3d-6f34-463c-8302-5627b6f019b4 - - true - Type of address for address 1, such as billing, shipping, or primary address. - 1033 - - - - - - 8343a6e5-8bc3-4bc8-8100-0eefeaf1547e - - true - Address 1: Address Type - 1033 - - - - 8343a6e5-8bc3-4bc8-8100-0eefeaf1547e - - true - Address 1: Address Type - 1033 - - - - false - - false - iscustomizable - true - - false - true - publisher_address1_addresstypecode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - bc522633-af7f-4207-b584-28f70361e6c8 - - true - Default Value - 1033 - - - - bc522633-af7f-4207-b584-28f70361e6c8 - - true - Default Value - 1033 - - - - 1 - - - - - - - - 0 - - - - - b2db7faa-f208-4357-a139-f4a912baf013 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_connection_roles + organizationid + connectionrole + organizationid + + 0 + + + 0befdf85-aeba-f011-bbd3-7c1e52365f30 - address1_addresstypecode - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 61 - 1900-01-01T00:00:00 - - - - - - - - - - publisher - - - - false - canmodifyauditsettings - false - - false + false - false + true iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - + false + false + organization_catalogassignment + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_catalogassignment + organizationid + catalogassignment + organizationid + + 0 + + + bdefdf85-aeba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - address1_addresstypecodename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_AddressTypeCodeName - - - VirtualType - - 5.0.0.0 - true - - - - - b33eada2-e138-41e6-83bb-6ab9f6742a0f + + false + false + organization_internalcatalogassignment + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_internalcatalogassignment + organizationid + internalcatalogassignment + organizationid + + 0 + + + 8e4c2987-2bbd-419c-9717-6c3416c0d795 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 54 - 1900-01-01T00:00:00 - - - - - d0daf291-3ecf-4c92-afc4-307e661607a7 - - true - City name for address 1. - 1033 - - - - d0daf291-3ecf-4c92-afc4-307e661607a7 - - true - City name for address 1. - 1033 - - - - - - 850babd8-70b2-4f0e-a7dc-cbb03b042106 - - true - City - 1033 - - - - 850babd8-70b2-4f0e-a7dc-cbb03b042106 - - true - City - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_city - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_City - - - StringType - + false + organization_saved_queries + None 5.0.0.0 - true - 0 - - Text - Active - 80 - - - Text - - - false - 0 - 160 - - - c0b16553-22b6-4b15-94aa-9206d4123b1d + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_saved_queries + organizationid + savedquery + organizationid + + 0 + + + a6e04b88-2ee3-e411-a1ed-00219b3e91e8 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 15 - 1900-01-01T00:00:00 - - - - - 11620381-3831-4c67-a4ed-2b33e46f1fec - - true - Country/region name for address 1. - 1033 - - - - 11620381-3831-4c67-a4ed-2b33e46f1fec - - true - Country/region name for address 1. - 1033 - - - - - - aad3391b-1fa1-40c6-9252-f299a8004e7c - - true - Country/Region - 1033 - - - - aad3391b-1fa1-40c6-9252-f299a8004e7c - - true - Country/Region - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_country - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_Country - - - StringType - - 5.0.0.0 - true - 0 - - Text - Active - 80 - - - Text - - - false - 0 - 160 - - - 4901a447-96cb-4dcd-9959-9ce50a056bdb + false + organization_officegraphdocument + None + 8.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_officegraphdocument + organizationid + officegraphdocument + organizationid + + 0 + + + f5ff1089-5b34-4b4b-a051-9f61521626aa - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 23 - 1900-01-01T00:00:00 - - - - - 3f0f0814-38f2-4c05-8853-1650db9738fc - - true - County name for address 1. - 1033 - - - - 3f0f0814-38f2-4c05-8853-1650db9738fc - - true - County name for address 1. - 1033 - - - - - - 073fdc43-2e56-4b53-b6c1-3ed677383541 - - true - Address 1: County - 1033 - - - - 073fdc43-2e56-4b53-b6c1-3ed677383541 - - true - Address 1: County - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_county - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_County - - - StringType - - 5.0.0.0 - true - 0 - - Text - Active - 50 - - - Text - - - false - 0 - 100 - - - 97536262-59a9-4216-9411-a5d9ede54928 + false + organization_appconfigmaster + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appconfigmaster + organizationid + appconfigmaster + organization_appconfigmaster_appconfigmaster + + 0 + + + d189cc89-35da-46dd-b00a-b07ce81292ba - - String - false - false - false - + false + false - canmodifyadditionalsettings + iscustomizable false - - 24 - 1900-01-01T00:00:00 - - - - - c2a73ac7-25be-4cff-8af2-29f64b6d7a28 - - true - Fax number for address 1. - 1033 - - - - c2a73ac7-25be-4cff-8af2-29f64b6d7a28 - - true - Fax number for address 1. - 1033 - - - - - - 4f7f0d94-a8df-4e1a-80b6-dc64e630e19f - - true - Address 1: Fax - 1033 - - - - 4f7f0d94-a8df-4e1a-80b6-dc64e630e19f - - true - Address 1: Fax - 1033 - - - publisher - - - + + true + false + organization_entitydatasource + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_entitydatasource + organizationid + entitydatasource + organizationid + + 0 + + + 828a848a-a9ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_solutioncomponentattributeconfiguration + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_solutioncomponentattributeconfiguration + organizationid + solutioncomponentattributeconfiguration + organizationid + + 0 + + + bd29b58b-cb24-4643-8520-dc9a550b5df4 + + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_fax - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_Fax - - - StringType - + false + organization_licenses + None 5.0.0.0 - true - 0 - - Text - Inactive - 50 - - - Text - - - false - 0 - 100 - - - b72908e6-548e-4d0a-83a7-8f0b205ecbab + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_licenses + organizationid + license + organizationid + + 0 + + + 7d43f28c-0d2f-f111-88b5-7c1e5287d1d8 - - Double - false - false - false - - false - canmodifyadditionalsettings - false - - 13 - 1900-01-01T00:00:00 - - - - - be42107d-d458-4f3e-a028-f3bbf861f797 - - true - Latitude for address 1. - 1033 - - - - be42107d-d458-4f3e-a028-f3bbf861f797 - - true - Latitude for address 1. - 1033 - - - - - - 26c4e2d8-486c-4e2c-946c-0b245f141a65 - - true - Address 1: Latitude - 1033 - - - - 26c4e2d8-486c-4e2c-946c-0b245f141a65 - - true - Address 1: Latitude - 1033 - - - publisher - - - + false + true - canmodifyauditsettings - true - - false + iscustomizable + false + + false + false + organization_uxagentproject + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_uxagentproject + organizationid + uxagentproject + organizationid + + 0 + + + 87d9b08d-d8ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - + false + false + organization_msdyn_insightsstorevirtualentity + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_insightsstorevirtualentity + organizationid + msdyn_insightsstorevirtualentity + organizationid + + 0 + + + 8e6d678e-b1ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - address1_latitude - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_Latitude - - - DoubleType - - 5.0.0.0 - true - 0 - - Disabled - 90 - -90 - 5 - - 0 - - - 2ccee14b-98ea-4f57-8f8c-d7b37b5a8f7a + + false + false + organization_purviewlabelinfo + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_purviewlabelinfo + organizationid + purviewlabelinfo + organizationid + + 0 + + + 226f678e-b1ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 52 - 1900-01-01T00:00:00 - - - - - 0cdc5944-2056-4bf2-9ee7-18286b3ed7cf - - true - First line for entering address 1 information. - 1033 - - - - 0cdc5944-2056-4bf2-9ee7-18286b3ed7cf - - true - First line for entering address 1 information. - 1033 - - - - - - 1db76166-dba5-42fb-8e5e-ace235f507b8 - - true - Street 1 - 1033 - - - - 1db76166-dba5-42fb-8e5e-ace235f507b8 - - true - Street 1 - 1033 - - - publisher - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_purviewlabelsynccache + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_purviewlabelsynccache + organizationid + purviewlabelsynccache + organizationid + + 0 + + + c1f1bf8e-a0e5-4518-a170-77fdd57b3e44 + + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_line1 - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_Line1 - - - StringType - - 5.0.0.0 - true - 0 - - Text - Active - 50 - - - Text - - - false - 0 - 100 - - - 8b7b0dec-5f6e-4671-901b-681c9a4192f8 + false + lk_documenttemplatebase_organization + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + lk_documenttemplatebase_organization + organizationid + documenttemplate + organizationid + + 0 + + + 49488790-a9ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 47 - 1900-01-01T00:00:00 - - - - - a5e47125-686d-4991-b4dd-7bb8e2b22be4 - - true - Second line for entering address 1 information. - 1033 - - - - a5e47125-686d-4991-b4dd-7bb8e2b22be4 - - true - Second line for entering address 1 information. - 1033 - - - - - - 55547fbc-e1be-4669-85ff-a162736cdfe5 - - true - Street 2 - 1033 - - - - 55547fbc-e1be-4669-85ff-a162736cdfe5 - - true - Street 2 - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false - false + true iscustomizable true - false - false - + false + false + organization_solutioncomponentconfiguration + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_solutioncomponentconfiguration + organizationid + solutioncomponentconfiguration + organizationid + + 0 + + + 3c498790-a9ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable + iscustomizable false - - false - false - false - false - + + false + false + organization_solutioncomponentrelationshipconfiguration + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_solutioncomponentrelationshipconfiguration + organizationid + solutioncomponentrelationshipconfiguration + organizationid + + 0 + + + 9d905f91-aaba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - address1_line2 - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_Line2 - - - StringType - - 5.0.0.0 - true - 0 - - Text - Active - 50 - - - Text - - - false - 0 - 100 - - - 5af71f68-ad81-4ef0-a916-adaed57006b3 + + false + false + organization_package + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_package + organizationid + package + organizationid + + 0 + + + 91915f91-aaba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 9 - 1900-01-01T00:00:00 - - - - - e7c88f2f-8795-4d40-b550-92ced4832d21 - - true - Third line for entering address 1 information. - 1033 - - - - e7c88f2f-8795-4d40-b550-92ced4832d21 - - true - Third line for entering address 1 information. - 1033 - - - - - - 62f47c83-7147-4cdf-9a8a-505b85841ede - - true - Street 3 - 1033 - - - - 62f47c83-7147-4cdf-9a8a-505b85841ede - - true - Street 3 - 1033 - - - publisher - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_packagehistory + None + 9.0.0.4 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_packagehistory + organizationid + packagehistory + organizationid + + 0 + + + c50dbd91-217b-475f-8b0a-63c9bbc13654 + + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_line3 - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_Line3 - - - StringType - + false + organization_entitymap + None 5.0.0.0 - true - 0 - - Text - Active - 50 - - - Text - - - false - 0 - 100 - - - 51fae0b5-3695-4205-9f02-752aaadc84c0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_entitymap + organizationid + entitymap + organizationid + + 0 + + + ca276094-b1ba-f011-bbd3-7c1e52365f30 - - Double - false - false - false - - false - canmodifyadditionalsettings - false - - 40 - 1900-01-01T00:00:00 - - - - - d9cbb8c7-091a-474a-9391-b8ff36246d89 - - true - Longitude for address 1. - 1033 - - - - d9cbb8c7-091a-474a-9391-b8ff36246d89 - - true - Longitude for address 1. - 1033 - - - - - - f98c509f-9186-4f9d-aeb4-a9d6a63dff88 - - true - Address 1: Longitude - 1033 - - - - f98c509f-9186-4f9d-aeb4-a9d6a63dff88 - - true - Address 1: Longitude - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - + false + false + organization_sensitivitylabelattributemapping + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sensitivitylabelattributemapping + organizationid + sensitivitylabelattributemapping + organizationid + + 0 + + + 66a57395-0d2f-f111-88b5-7c1e5287d1d8 + + false + true - canmodifyissortablesettings + iscustomizable false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_longitude - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_Longitude - - - DoubleType - - 5.0.0.0 - true - 0 - - Disabled - 180 - -180 - 5 - - 0 - - - 5eca2a13-f151-4f93-91bc-b4df145f4955 + + false + false + organization_uxagentprojectfile + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_uxagentprojectfile + organizationid + uxagentprojectfile + organizationid + + 0 + + + 0fdbae96-b5ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 28 - 1900-01-01T00:00:00 - - - - - 871c50b9-5ef0-49b9-8365-830526400eee - - true - Name to enter for address 1. - 1033 - - - - 871c50b9-5ef0-49b9-8365-830526400eee - - true - Name to enter for address 1. - 1033 - - - - - - 873cb2b5-6bf6-4f33-a61c-066e7cfd04c7 - - true - Address 1: Name - 1033 - - - - 873cb2b5-6bf6-4f33-a61c-066e7cfd04c7 - - true - Address 1: Name - 1033 - - - publisher - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_delegatedauthorization + None + 9.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_delegatedauthorization + organizationid + delegatedauthorization + organizationid + + 0 + + + b99f9597-3868-4e1a-affd-c0a08805b5eb + + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_name - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_Name - - - StringType - + false + organization_kb_articles + None 5.0.0.0 - true - 0 - - Text - Active - 100 - - - Text - - - false - 0 - 400 - - - 34836951-ff33-4383-8d45-54bd187d7620 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_kb_articles + organizationid + kbarticle + organizationid + + 0 + + + a8833199-0c98-41f5-95c8-cb99c888c45b - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 50 - 1900-01-01T00:00:00 - - - - - 5c8fc8b7-7e90-4dfa-ba11-626af1278f8d - - true - ZIP Code or postal code for address 1. - 1033 - - - - 5c8fc8b7-7e90-4dfa-ba11-626af1278f8d - - true - ZIP Code or postal code for address 1. - 1033 - - - - - - 54286b62-91c5-4801-a85b-d7a7099562a2 - - true - ZIP/Postal Code - 1033 - - - - 54286b62-91c5-4801-a85b-d7a7099562a2 - - true - ZIP/Postal Code - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_postalcode - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_PostalCode - - - StringType - - 5.0.0.0 - true - 0 - - Text - Inactive - 20 - - - Text - - - false - 0 - 40 - - - fab83480-bf6c-4c3a-b577-e9abae6ab94b + false + organization_azureserviceconnection + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_azureserviceconnection + organizationid + azureserviceconnection + organizationid + + 0 + + + b8f3fd9b-51a8-4d23-a051-a44b23ad2eaf - - String - false - false - false - + false + false - canmodifyadditionalsettings + iscustomizable false - - 31 - 1900-01-01T00:00:00 - - - - - eb240d6a-eeec-4f92-87f0-f2ff129121ff - - true - Post office box number for address 1. - 1033 - - - - eb240d6a-eeec-4f92-87f0-f2ff129121ff - - true - Post office box number for address 1. - 1033 - - - - - - d4808fdd-17de-46af-92ee-99738b1b47fb - - true - Address 1: Post Office Box - 1033 - - - - d4808fdd-17de-46af-92ee-99738b1b47fb - - true - Address 1: Post Office Box - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + + true + false + Organization_MailboxTrackingFolder + None + 7.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + Organization_MailboxTrackingFolder + organizationid + mailboxtrackingfolder + organizationid + + 0 + + + 7fda6b9d-8419-e411-8e13-0024e8412450 + + false false iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_postofficebox - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_PostOfficeBox - - - StringType - - 5.0.0.0 - true - 0 - - Text - Inactive - 20 - - - Text - - - false - 0 - 40 - - - ebc5a88b-30c1-49ed-9494-80675f54b7a3 + false + organization_KnowledgeBaseRecord + None + 7.1.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_KnowledgeBaseRecord + organizationid + knowledgebaserecord + organizationid + + 0 + + + 229f0ea0-8847-41e9-9de7-0b9a7fe3996d - - Picklist - false - false - false - + false + false - canmodifyadditionalsettings + iscustomizable false - - 18 - 1900-01-01T00:00:00 - - - - - e0bab70b-3b0f-4bde-8a95-cdef4f14b097 - - true - Method of shipment for address 1. - 1033 - - - - e0bab70b-3b0f-4bde-8a95-cdef4f14b097 - - true - Method of shipment for address 1. - 1033 - - - - - - f26a1229-e65e-4e8b-bdbf-f3ba98287439 - - true - Address 1: Shipping Method - 1033 - - - - f26a1229-e65e-4e8b-bdbf-f3ba98287439 - - true - Address 1: Shipping Method - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + + true + true + organization_orginsightsmetric + None + 8.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_orginsightsmetric + organizationid + orginsightsmetric + organization_orginsightsmetric + + 0 + + + 77107ca0-3268-46da-8cdf-42f59b480d61 + + false false iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - + false + organization_expiredprocess + None + 8.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_expiredprocess + organizationid + expiredprocess + organizationid + + 0 + + + 40a984a0-f513-df11-a16e-00155d7aa40d + + false + false - canmodifysearchsettings + iscustomizable false - - true - true - true - true - true - true - - address1_shippingmethodcode - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_ShippingMethodCode - - - PicklistType - + + true + false + organization_metric + None 5.0.0.0 - true - 0 - - 1 - - 158411f6-bc43-4d9e-b434-96bb26be9aa2 - - - - - b7ae2c17-82ef-4961-b3b5-b219f5ae7e6d - - true - Method of shipment for address 1. - 1033 - - - - b7ae2c17-82ef-4961-b3b5-b219f5ae7e6d - - true - Method of shipment for address 1. - 1033 - - - - - - ad2ec1d8-cb3b-40a5-8c5c-27527e9307b0 - - true - Address 1: Shipping Method - 1033 - - - - ad2ec1d8-cb3b-40a5-8c5c-27527e9307b0 - - true - Address 1: Shipping Method - 1033 - - - - false - - false - iscustomizable - true - - false - true - publisher_address1_shippingmethodcode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 39d1d9b7-55bf-4488-b9fc-83f20dc13012 - - true - Default Value - 1033 - - - - 39d1d9b7-55bf-4488-b9fc-83f20dc13012 - - true - Default Value - 1033 - - - - 1 - - - - - - - - 0 - - - - - ea3ef15b-23d0-4ada-bc61-393489c34488 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_metric + organizationid + metric + organizationid + + 0 + + + 1f4788a0-b491-48b0-ace5-0f640604c516 - address1_shippingmethodcode - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 56 - 1900-01-01T00:00:00 - - - - - - - - - - publisher - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - + false + organization_entitydataprovider + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_entitydataprovider + organizationid + entitydataprovider + organizationid + + 0 + + + 296ab5a0-b452-48de-bc5f-650b485d6666 + + false + false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - address1_shippingmethodcodename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_ShippingMethodCodeName - - - VirtualType - + + true + true + Organization_AsyncOperations + None 5.0.0.0 - true - - - - - a0ddb9af-d81a-4ad9-8c8f-453713b3a158 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + Organization_AsyncOperations + regardingobjectid + asyncoperation + regardingobjectid_organization + + 0 + + + a8d038a2-d24e-4799-b1bc-c23c83f03825 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 51 - 1900-01-01T00:00:00 - - - - - cb3b9061-7321-47da-9347-b319f9b61d60 - - true - State or province for address 1. - 1033 - - - - cb3b9061-7321-47da-9347-b319f9b61d60 - - true - State or province for address 1. - 1033 - - - - - - 48feecc4-aed9-4a17-b0b4-a94330d0bb4b - - true - State/Province - 1033 - - - - 48feecc4-aed9-4a17-b0b4-a94330d0bb4b - - true - State/Province - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_stateorprovince - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_StateOrProvince - - - StringType - - 5.0.0.0 - true - 0 - - Text - Active - 50 - - - Text - - - false - 0 - 100 - - - cc3a9f14-8167-4580-803c-fea04779b5bd + false + MobileOfflineProfileItem_organization + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + MobileOfflineProfileItem_organization + organizationid + mobileofflineprofileitem + organizationid + + 0 + + + bc22c4a3-acbe-4aa9-837d-f75090e84acd - - String - false - false - false - + false + false - canmodifyadditionalsettings + iscustomizable false - - 38 - 1900-01-01T00:00:00 - - - - - 171daed9-70aa-4179-b5c6-4132f4d0e8af - - true - First telephone number associated with address 1. - 1033 - - - - 171daed9-70aa-4179-b5c6-4132f4d0e8af - - true - First telephone number associated with address 1. - 1033 - - - - - - 8f22956e-2b21-4945-a6aa-7aa7a472b027 - - true - Phone - 1033 - - - - 8f22956e-2b21-4945-a6aa-7aa7a472b027 - - true - Phone - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + + true + false + organization_sdkmessageresponsefield + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessageresponsefield + organizationid + sdkmessageresponsefield + organizationid + + 0 + + + 3a914aa5-5b98-496c-becd-4fe74321d7b6 + + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable + false + organization_saved_query_visualizations + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_saved_query_visualizations + organizationid + savedqueryvisualization + organizationid + + 0 + + + d303dda6-dbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable false - - false - true - false - false - + + false + false + organization_appaction + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appaction + organizationid + appaction + organizationid + + 0 + + + 9a04dda6-dbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings + iscustomizable false - - + + false + false + organization_appactionmigration + None + 9.1.0.13 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appactionmigration + organizationid + appactionmigration + organizationid + + 0 + + + fc803ea9-bcdd-49be-a88a-7429ca0b40a2 + + false + false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_telephone1 - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_Telephone1 - - - StringType - + iscustomizable + false + + true + false + organization_sitemap + None 5.0.0.0 - true - 0 - - Text - Inactive - 50 - - - Text - - - false - 0 - 100 - - - 6e762b80-aca8-4940-b0ea-95e6921d3751 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sitemap + organizationid + sitemap + organizationid + + 0 + + + fa5ec4a9-12a1-4ef8-8b61-9be50066d8cf - - String - false - false - false - + false + false - canmodifyadditionalsettings + iscustomizable false - - 6 - 1900-01-01T00:00:00 - - - - - cfd3bf0a-17bd-447b-a1df-afb20747df0b - - true - Second telephone number associated with address 1. - 1033 - - - - cfd3bf0a-17bd-447b-a1df-afb20747df0b - - true - Second telephone number associated with address 1. - 1033 - - - - - - 825ec7c2-542c-48cb-be3d-3d5c540f8e3b - - true - Address 1: Telephone 2 - 1033 - - - - 825ec7c2-542c-48cb-be3d-3d5c540f8e3b - - true - Address 1: Telephone 2 - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + + true + false + organization_traceassociation + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_traceassociation + organizationid + traceassociation + organizationid + + 0 + + + 9439ddaa-2555-e411-80cf-00155d211b05 + + false false iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - + false + organization_UserMapping + None + 7.1.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_UserMapping + organizationid + usermapping + organizationid + + 0 + + + 620a33ab-e551-4bc6-b2fc-6212ce37234d + + false + false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings + iscustomizable false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_telephone2 - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_Telephone2 - - - StringType - + + true + false + organization_plugintypestatistic + None 5.0.0.0 - true - 0 - - Text - Inactive - 50 - - - Text - - - false - 0 - 100 - - - cc579053-3cc0-4e4f-9e36-a4a6aad20006 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_plugintypestatistic + organizationid + plugintypestatistic + organizationid + + 0 + + + b95afaab-e470-492e-85e3-ca7f78ea886f - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 2 - 1900-01-01T00:00:00 - - - - - c1e8b440-f682-4130-ba14-d70e0065faab - - true - Third telephone number associated with address 1. - 1033 - - - - c1e8b440-f682-4130-ba14-d70e0065faab - - true - Third telephone number associated with address 1. - 1033 - - - - - - b3dddb4f-d5f9-4f33-ab5f-734370dd2003 - - true - Address 1: Telephone 3 - 1033 - - - - b3dddb4f-d5f9-4f33-ab5f-734370dd2003 - - true - Address 1: Telephone 3 - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_telephone3 - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_Telephone3 - - - StringType - + false + organization_calendars + None 5.0.0.0 - true - 0 - - Text - Inactive - 50 - - - Text - - - false - 0 - 100 - - - be1e7f45-d16b-48ef-bdf5-0ccd4c59da6d + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_calendars + organizationid + calendar + organizationid + + 0 + + + 68a3d5ac-dbba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings + false + + true + iscustomizable false - - 29 - 1900-01-01T00:00:00 - - - - - 2634d80c-93c2-4e96-9b22-f2556124c4bd - - true - United Parcel Service (UPS) zone for address 1. - 1033 - - - - 2634d80c-93c2-4e96-9b22-f2556124c4bd - - true - United Parcel Service (UPS) zone for address 1. - 1033 - - - - - - a2d35df8-067a-434c-a35e-b172d01b97fe - - true - Address 1: UPS Zone - 1033 - - - - a2d35df8-067a-434c-a35e-b172d01b97fe - - true - Address 1: UPS Zone - 1033 - - - publisher - - - + + false + false + organization_appactionrule + None + 9.1.0.10 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appactionrule + organizationid + appactionrule + organizationid + + 0 + + + 5cbf7ead-caba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_msdyn_federatedarticleincident + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_federatedarticleincident + organizationid + msdyn_federatedarticleincident + organizationid + + 0 + + + 56ca71b0-d7ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - + false + false + organization_userrating + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_userrating + organizationid + userrating + organizationid + + 0 + + + e46461b1-e6ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - address1_upszone - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_UPSZone - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 4 - - - Text - - - false - 0 - 8 - - - 97a3a538-a3f2-4f66-8470-e7b8715319cb + + false + false + organization_sa_suggestedaction + None + 9.2.0.5 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sa_suggestedaction + organizationid + sa_suggestedaction + organizationid + + 0 + + + a66561b1-e6ba-f011-bbd3-7c1e52365f30 - - Integer - false - false - false - - false - canmodifyadditionalsettings - false - - 21 - 1900-01-01T00:00:00 - - - - - 7d7b8a2e-1ac9-4a4f-b97f-e1e69612a5d4 - - true - UTC offset for address 1. This is the difference between local time and standard Coordinated Universal Time. - 1033 - - - - 7d7b8a2e-1ac9-4a4f-b97f-e1e69612a5d4 - - true - UTC offset for address 1. This is the difference between local time and standard Coordinated Universal Time. - 1033 - - - - - - ed42853f-c2e8-4ee9-a4a2-d34247dd0156 - - true - Address 1: UTC Offset - 1033 - - - - ed42853f-c2e8-4ee9-a4a2-d34247dd0156 - - true - Address 1: UTC Offset - 1033 - - - publisher - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_sa_suggestedactioncriteria + None + 9.2.0.5 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sa_suggestedactioncriteria + organizationid + sa_suggestedactioncriteria + organizationid + + 0 + + + 785941b2-c545-47ae-85f5-2c7cafbb02d4 + + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - true - true - true - true - true - - address1_utcoffset - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address1_UTCOffset - - - IntegerType - + false + lk_fieldsecurityprofile_organizationid + None 5.0.0.0 - true - 0 - - TimeZone - 1500 - -1500 - - 0 - - - a966a9e3-14a2-4452-b261-e08c96ca5034 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + lk_fieldsecurityprofile_organizationid + organizationid + fieldsecurityprofile + organizationid + + 0 + + + df4fe3b2-f1ba-f011-bbd3-7c1e52365f30 - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - false - - 12 - 1900-01-01T00:00:00 - - - - - db6e86f7-e05c-4f02-a7c9-54cd957c6e99 - - true - Unique identifier for address 2. - 1033 - - - - db6e86f7-e05c-4f02-a7c9-54cd957c6e99 - - true - Unique identifier for address 2. - 1033 - - - - - - 22285271-f390-4e94-a6b9-5a39be97031c - - true - Address 2: ID - 1033 - - - - 22285271-f390-4e94-a6b9-5a39be97031c - - true - Address 2: ID - 1033 - - - publisher - - - - false - canmodifyauditsettings - false - - false + false + + true + iscustomizable + true + + false + false + organization_appentitysearchview + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_appentitysearchview + organizationid + appentitysearchview + organizationid + + 0 + + + 1a5bf0b2-028e-430e-b4ed-6b1a16b2fe41 + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - true - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - address2_addressid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_AddressId - - - UniqueidentifierType - - 5.0.0.0 - true - - - - - 35314d0f-0d40-4f9c-816c-d99c28adb089 + false + organization_emailserverprofile + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_emailserverprofile + organizationid + emailserverprofile + organizationid + + 0 + + + 7575b0b3-caba-f011-bbd3-7c1e52365f30 - - Picklist - false - false - false - - false - canmodifyadditionalsettings - false - - 7 - 1900-01-01T00:00:00 - - - - - bbfc793a-6fc7-4de2-8ab0-cf9205f554ce - - true - Type of address for address 2. such as billing, shipping, or primary address. - 1033 - - - - bbfc793a-6fc7-4de2-8ab0-cf9205f554ce - - true - Type of address for address 2. such as billing, shipping, or primary address. - 1033 - - - - - - 032c886d-a084-4e21-b0d1-344f4c903fc6 - - true - Address 2: Address Type - 1033 - - - - 032c886d-a084-4e21-b0d1-344f4c903fc6 - - true - Address 2: Address Type - 1033 - - - publisher - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_msdyn_knowledgeconfiguration + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_knowledgeconfiguration + organizationid + msdyn_knowledgeconfiguration + organizationid + + 0 + + + bb0139b4-327d-41b2-8439-f651074bfd47 + + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - + false + languagelocale_organization + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + languagelocale_organization + organizationid + languagelocale + organizationid + + 0 + + + c8b451b4-3b24-46a5-bdec-a72338d17492 + + false + false - canmodifysearchsettings + iscustomizable false - - true - true - true - true - true - true - - address2_addresstypecode - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_AddressTypeCode - - - PicklistType - + + true + false + Organization_BulkDeleteFailures + None 5.0.0.0 - true - 0 - - 1 - - 0e3cc738-af45-4401-ad16-8d2518c4cfd2 - - - - - 179dc93f-7d54-4484-87be-0d40a186cde8 - - true - Type of address for address 2. such as billing, shipping, or primary address. - 1033 - - - - 179dc93f-7d54-4484-87be-0d40a186cde8 - - true - Type of address for address 2. such as billing, shipping, or primary address. - 1033 - - - - - - 9c163cc9-72d3-48cf-9683-a44d224188de - - true - Address 2: Address Type - 1033 - - - - 9c163cc9-72d3-48cf-9683-a44d224188de - - true - Address 2: Address Type - 1033 - - - - false - - false - iscustomizable - true - - false - true - publisher_address2_addresstypecode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - e0b09b5d-d067-47b6-ab29-a8a4812c7bb8 - - true - Default Value - 1033 - - - - e0b09b5d-d067-47b6-ab29-a8a4812c7bb8 - - true - Default Value - 1033 - - - - 1 - - - - - - - - 0 - - - - - 236bc657-bf94-4d61-ab7c-82077a608329 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + Organization_BulkDeleteFailures + regardingobjectid + bulkdeletefailure + regardingobjectid_organization + + 0 + + + b0790ab6-0865-44ac-a3a0-e4da2c4713dd - address2_addresstypecode - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 57 - 1900-01-01T00:00:00 - - - - - - - - - - publisher - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - address2_addresstypecodename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_AddressTypeCodeName - - - VirtualType - - 5.0.0.0 - true - - - - - ee91b713-f648-4e6f-9e88-12358aa6d281 + false + lk_authorizationserver_organizationid + None + 6.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + lk_authorizationserver_organizationid + organizationid + authorizationserver + organizationid + + 0 + + + 85b09eb6-94a9-46fc-97f6-dbc0d69931bd - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 16 - 1900-01-01T00:00:00 - - - - - 2c375133-8b18-4f1d-90a0-8c0d4b649606 - - true - City name for address 2. - 1033 - - - - 2c375133-8b18-4f1d-90a0-8c0d4b649606 - - true - City name for address 2. - 1033 - - - - - - d4142362-b868-47e6-9657-8638c356b421 - - true - Address 2: City - 1033 - - - - d4142362-b868-47e6-9657-8638c356b421 - - true - Address 2: City - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - + false + organization_knowledgesearchmodel + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_knowledgesearchmodel + organizationid + knowledgesearchmodel + organizationid + + 0 + + + 273e6cb7-b2ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings + iscustomizable false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address2_city - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_City - - - StringType - - 5.0.0.0 - true - 0 - - Text - Active - 80 - - - Text - - - false - 0 - 160 - - - d1e8ecb0-4c21-4f73-a596-59200f289199 + + false + false + organization_entityanalyticsconfig + None + 1.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_entityanalyticsconfig + organizationid + entityanalyticsconfig + organizationid + + 0 + + + 8aeafdb8-f1ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 4 - 1900-01-01T00:00:00 - - - - - b3fab775-a21f-44f6-956d-8deea3598955 - - true - Country/region name for address 2. - 1033 - - - - b3fab775-a21f-44f6-956d-8deea3598955 - - true - Country/region name for address 2. - 1033 - - - - - - d33548da-4f5a-4ce7-b4d0-3a24962be827 - - true - Address 2: Country/Region - 1033 - - - - d33548da-4f5a-4ce7-b4d0-3a24962be827 - - true - Address 2: Country/Region - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - + false + true + organization_mainfewshot + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_mainfewshot + organizationid + mainfewshot + organizationid + + 0 + + + cbebfdb8-f1ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - address2_country - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_Country - - - StringType - - 5.0.0.0 - true - 0 - - Text - Active - 80 - - - Text - - - false - 0 - 160 - - - 616f535f-ef9e-4bbd-849c-b439d1c2e9d4 + + false + false + organization_makerfewshot + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_makerfewshot + organizationid + makerfewshot + organizationid + + 0 + + + 5e3a63b9-acba-f011-bbd3-7c1e52365f30 - - String - false - false - false - + false + false - canmodifyadditionalsettings + iscustomizable false - - 14 - 1900-01-01T00:00:00 - - - - - 1148c020-f9e8-467f-a197-c1dcc763e9a5 - - true - County name for address 2. - 1033 - - - - 1148c020-f9e8-467f-a197-c1dcc763e9a5 - - true - County name for address 2. - 1033 - - - - - - bdab9eaf-fbdd-4957-8d73-ccda84d3d513 - - true - Address 2: County - 1033 - - - - bdab9eaf-fbdd-4957-8d73-ccda84d3d513 - - true - Address 2: County - 1033 - - - publisher - - - + + true + false + organization_relationshipattribute + None + 1.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_relationshipattribute + organizationid + relationshipattribute + organizationid + + 0 + + + 9c3f91be-b5ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + organization_application + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_application + organizationid + application + organizationid + + 0 + + + fea5f9be-f1ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - + false + true + organization_searchattributesettings + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_searchattributesettings + organizationid + searchattributesettings + organizationid + + 0 + + + 23a7f9be-f1ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - address2_county - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_County - - - StringType - - 5.0.0.0 - true - 0 - - Text - Active - 50 - - - Text - - - false - 0 - 100 - - - dfb4b619-656e-4af6-8b79-7f086f1baa99 + + false + true + organization_searchcustomanalyzer + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_searchcustomanalyzer + organizationid + searchcustomanalyzer + organizationid + + 0 + + + 49a8f9be-f1ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 53 - 1900-01-01T00:00:00 - - - - - b5df75c3-67bb-404e-a0e6-8cd289addf13 - - true - Fax number for address 2. - 1033 - - - - b5df75c3-67bb-404e-a0e6-8cd289addf13 - - true - Fax number for address 2. - 1033 - - - - - - 740cb246-e898-4da9-9e71-545cadfda10a - - true - Address 2: Fax - 1033 - - - - 740cb246-e898-4da9-9e71-545cadfda10a - - true - Address 2: Fax - 1033 - - - publisher - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + organization_searchrelationshipsettings + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_searchrelationshipsettings + organizationid + searchrelationshipsettings + organizationid + + 0 + + + 18dd7ebf-bb35-4486-b2dc-e000680ddbbc + + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address2_fax - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_Fax - - - StringType - + false + organization_transactioncurrencies + None 5.0.0.0 - true - 0 - - Text - Inactive - 50 - - - Text - - - false - 0 - 100 - - - 1e26e40e-11de-414d-9a2d-d7ccd2c8ec30 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_transactioncurrencies + organizationid + transactioncurrency + organizationid + + 0 + + + 57fe94c3-d1ba-f011-bbd3-7c1e52365f30 - - Double - false - false - false - - false - canmodifyadditionalsettings - false - - 42 - 1900-01-01T00:00:00 - - - - - 12e9f51a-80d0-46dc-ad0b-061d3f882972 - - true - Latitude for address 2. - 1033 - - - - 12e9f51a-80d0-46dc-ad0b-061d3f882972 - - true - Latitude for address 2. - 1033 - - - - - - 1e923227-3124-4bce-9b25-7293df9274f7 - - true - Address 2: Latitude - 1033 - - - - 1e923227-3124-4bce-9b25-7293df9274f7 - - true - Address 2: Latitude - 1033 - - - publisher - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_teammobileofflineprofilemembership + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_teammobileofflineprofilemembership + organizationid + teammobileofflineprofilemembership + organizationid + + 0 + + + a12ff2c3-7a65-47d1-b60b-b1b385d1660c + + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address2_latitude - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_Latitude - - - DoubleType - + false + organization_sdkmessagerequest + None 5.0.0.0 - true - 0 - - Disabled - 90 - -90 - 5 - - 0 - - - 5937aa88-8bda-4840-9bc5-47678a20e40b + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessagerequest + organizationid + sdkmessagerequest + organizationid + + 0 + + + d85716c5-f1ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 46 - 1900-01-01T00:00:00 - - - - - c3adcaac-080c-45a8-a5b9-4e09899d8bdc - - true - First line for entering address 2 information. - 1033 - - - - c3adcaac-080c-45a8-a5b9-4e09899d8bdc - - true - First line for entering address 2 information. - 1033 - - - - - - c7169659-2778-4ed5-9545-d78eb72377fa - - true - Address 2: Street 1 - 1033 - - - - c7169659-2778-4ed5-9545-d78eb72377fa - - true - Address 2: Street 1 - 1033 - - - publisher - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_viewasexamplequestion + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_viewasexamplequestion + organizationid + viewasexamplequestion + organizationid + + 0 + + + 8f5816c5-f1ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - + false + true + organization_copilotexamplequestion + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_copilotexamplequestion + organizationid + copilotexamplequestion + organizationid + + 0 + + + a82dc8c5-a9d4-476f-b1fa-9954b4fa6edf + + false + false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings + iscustomizable false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address2_line1 - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_Line1 - - - StringType - + + true + false + organization_sdkmessageprocessingstepimage + None 5.0.0.0 - true - 0 - - Text - Active - 50 - - - Text - - - false - 0 - 100 - - - d3856c03-e4a2-41d2-b773-97a2d7fe9c98 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessageprocessingstepimage + organizationid + sdkmessageprocessingstepimage + organizationid + + 0 + + + 8c48e5c5-c5ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 20 - 1900-01-01T00:00:00 - - - - - 5daacbd0-8b15-4188-b196-9847830ab3e5 - - true - Second line for entering address 2 information. - 1033 - - - - 5daacbd0-8b15-4188-b196-9847830ab3e5 - - true - Second line for entering address 2 information. - 1033 - - - - - - 1402ef26-ae55-4109-80ab-c5081bd53216 - - true - Address 2: Street 2 - 1033 - - - - 1402ef26-ae55-4109-80ab-c5081bd53216 - - true - Address 2: Street 2 - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address2_line2 - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_Line2 - - - StringType - + false + organization_territories + None 5.0.0.0 - true - 0 - - Text - Active - 50 - - - Text - - - false - 0 - 100 - - - 35b74842-95c0-4dad-858d-3f0f725ce473 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_territories + organizationid + territory + organizationid + + 0 + + + 233eebc5-cdb4-454d-9e44-4a00e04848aa - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 43 - 1900-01-01T00:00:00 - - - - - 59127ded-fa5b-4e49-95a9-dca69ad5b069 - - true - Third line for entering address 2 information. - 1033 - - - - 59127ded-fa5b-4e49-95a9-dca69ad5b069 - - true - Third line for entering address 2 information. - 1033 - - - - - - ddb23729-c28b-42ee-ae8e-55ff87b0512f - - true - Address 2: Street 3 - 1033 - - - - ddb23729-c28b-42ee-ae8e-55ff87b0512f - - true - Address 2: Street 3 - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address2_line3 - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_Line3 - - - StringType - + false + organization_isvconfigs + None 5.0.0.0 - true - 0 - - Text - Active - 50 - - - Text - - - false - 0 - 100 - - - 0c5a7ebc-3469-4191-96e1-3a2dee869870 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_isvconfigs + organizationid + isvconfig + organizationid_organization + + 0 + + + ba96abc9-d7c6-4b82-ad35-5ea507d4fd37 - - Double - false - false - false - - false - canmodifyadditionalsettings - false - - 19 - 1900-01-01T00:00:00 - - - - - 5931de5e-245b-47ad-ad20-b7c8ac8c17e2 - - true - Longitude for address 2. - 1033 - - - - 5931de5e-245b-47ad-ad20-b7c8ac8c17e2 - - true - Longitude for address 2. - 1033 - - - - - - cecb8c80-32ee-4d89-81a3-74349bface53 - - true - Address 2: Longitude - 1033 - - - - cecb8c80-32ee-4d89-81a3-74349bface53 - - true - Address 2: Longitude - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - + false + organization_sdkmessageprocessingstep + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessageprocessingstep + organizationid + sdkmessageprocessingstep + organizationid + + 0 + + + 63dfcbc9-d1ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - address2_longitude - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_Longitude - - - DoubleType - - 5.0.0.0 - true - 0 - - Disabled - 180 - -180 - 5 - - 0 - - - 7303e76f-599c-4979-b8ac-c1f286be1554 + + false + false + organization_usermobileofflineprofilemembership + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_usermobileofflineprofilemembership + organizationid + usermobileofflineprofilemembership + organizationid + + 0 + + + 21f49ecd-bace-4829-b178-16da6cba2f78 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 10 - 1900-01-01T00:00:00 - - - - - 7fd688e6-9e0b-4b48-898b-690a2976559a - - true - Name to enter for address 2. - 1033 - - - - 7fd688e6-9e0b-4b48-898b-690a2976559a - - true - Name to enter for address 2. - 1033 - - - - - - ae7a7527-82c0-4c5a-92c1-506414fed56d - - true - Address 2: Name - 1033 - - - - ae7a7527-82c0-4c5a-92c1-506414fed56d - - true - Address 2: Name - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address2_name - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_Name - - - StringType - - 5.0.0.0 - true - 0 - - Text - Active - 100 - - - Text - - - false - 0 - 400 - - - 036f7ac3-8cdc-4c69-ba5b-32bb2b50968c + false + organization_sharepointdata + None + 6.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sharepointdata + organizationid + sharepointdata + organizationid + + 0 + + + db98f3d0-dde3-4d4d-86c3-e87cc71a84d2 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 48 - 1900-01-01T00:00:00 - - - - - 45ba997f-940e-4f53-90c9-92a3bc67c736 - - true - ZIP Code or postal code for address 2. - 1033 - - - - 45ba997f-940e-4f53-90c9-92a3bc67c736 - - true - ZIP Code or postal code for address 2. - 1033 - - - - - - bfc9a327-96a2-464b-9889-7ad3301a809a - - true - Address 2: ZIP/Postal Code - 1033 - - - - bfc9a327-96a2-464b-9889-7ad3301a809a - - true - Address 2: ZIP/Postal Code - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - + false + organization_aciviewmapper + None + 8.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_aciviewmapper + organizationid + aciviewmapper + organizationid + + 0 + + + 58662fd1-d3dc-436d-a4b7-7edaada56f5e + + false + false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings + iscustomizable false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address2_postalcode - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_PostalCode - - - StringType - + + true + false + organization_queueitems + None 5.0.0.0 - true - 0 - - Text - Inactive - 20 - - - Text - - - false - 0 - 40 - - - 89b77a91-bcfe-4703-9804-fb58c39fde21 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_queueitems + organizationid + queueitem + organizationid + + 0 + + + 23cb25d4-9186-4a94-8199-819c1c01a942 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 41 - 1900-01-01T00:00:00 - - - - - d378b5aa-1303-48a7-8299-e7d869c22086 - - true - Post office box number for address 2. - 1033 - - - - d378b5aa-1303-48a7-8299-e7d869c22086 - - true - Post office box number for address 2. - 1033 - - - - - - 2aa426f5-6655-432e-b6cc-14b7f526e860 - - true - Address 2: Post Office Box - 1033 - - - - 2aa426f5-6655-432e-b6cc-14b7f526e860 - - true - Address 2: Post Office Box - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address2_postofficebox - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_PostOfficeBox - - - StringType - + false + organization_solution + None 5.0.0.0 - true - 0 - - Text - Inactive - 20 - - - Text - - - false - 0 - 40 - - - 14c0c82f-3fe8-40b7-a9b4-d90bdd4eb3cf + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_solution + organizationid + solution + organizationid + + 0 + + + c75e54d4-d3ba-f011-bbd3-7c1e52365f30 - - Picklist - false - false - false - - false - canmodifyadditionalsettings - false - - 35 - 1900-01-01T00:00:00 - - - - - f804a13b-6ff7-45ec-a6dc-6d431efd8b1d - - true - Method of shipment for address 2. - 1033 - - - - f804a13b-6ff7-45ec-a6dc-6d431efd8b1d - - true - Method of shipment for address 2. - 1033 - - - - - - b33c4a82-7993-416b-9a3f-14e20d05eb08 - - true - Address 2: Shipping Method - 1033 - - - - b33c4a82-7993-416b-9a3f-14e20d05eb08 - - true - Address 2: Shipping Method - 1033 - - - publisher - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_bulkarchiveoperationdetail + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_bulkarchiveoperationdetail + organizationid + bulkarchiveoperationdetail + organizationid + + 0 + + + 556054d4-d3ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - true - true - true - true - true - - address2_shippingmethodcode - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_ShippingMethodCode - - - PicklistType - - 5.0.0.0 - true - 0 - - 1 - - 82228b43-e2d2-411e-9445-9617186b9ca9 - - - - - b7d69fe5-8330-4f81-8337-0896101070df - - true - Method of shipment for address 2. - 1033 - - - - b7d69fe5-8330-4f81-8337-0896101070df - - true - Method of shipment for address 2. - 1033 - - - - - - 0db1cb6b-8599-4c2e-a032-f402668fe912 - - true - Address 2: Shipping Method - 1033 - - - - 0db1cb6b-8599-4c2e-a032-f402668fe912 - - true - Address 2: Shipping Method - 1033 - - - - false - - false - iscustomizable - true - - false - true - publisher_address2_shippingmethodcode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 56c95f5e-8d5e-45b0-a74c-eb06959e3956 - - true - Default Value - 1033 - - - - 56c95f5e-8d5e-45b0-a74c-eb06959e3956 - - true - Default Value - 1033 - - - - 1 - - - - - - - - 0 - - - - - c6107cd1-4c7f-4a72-8180-546be2aeb0a1 + false + false + organization_metadataforarchival + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_metadataforarchival + organizationid + metadataforarchival + organizationid + + 0 + + + 4b5dedd5-e777-4697-81ad-cfb1101b43d6 - address2_shippingmethodcode - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 60 - 1900-01-01T00:00:00 - - - - - - - - - - publisher - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - address2_shippingmethodcodename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_ShippingMethodCodeName - - - VirtualType - + false + organization_webwizard + None 5.0.0.0 - true - - - - - e07b5145-88a9-4f4a-9923-923e89caef4a + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_webwizard + organizationid + webwizard + organizationid + + 0 + + + c286b7d8-2eb4-4f76-b8d9-c638d8445d94 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 34 - 1900-01-01T00:00:00 - - - - - 0fb0b7df-7277-4470-b6b7-72f0da3418c2 - - true - State or province for address 2. - 1033 - - - - 0fb0b7df-7277-4470-b6b7-72f0da3418c2 - - true - State or province for address 2. - 1033 - - - - - - f67b3c26-8d6f-4ef3-8c4f-969862eab5d7 - - true - Address 2: State/Province - 1033 - - - - f67b3c26-8d6f-4ef3-8c4f-969862eab5d7 - - true - Address 2: State/Province - 1033 - - - publisher - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - + false + customcontrolresource_organization + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + customcontrolresource_organization + organizationid + customcontrolresource + organizationid + + 0 + + + a93144da-d918-4639-bbac-b4fd3e5cf28f + + false + false - isrenameable + iscustomizable false - - false - false - false - false - + + true + false + organization_tracelog + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_tracelog + organizationid + tracelog + organizationid + + 0 + + + 9c8fe5db-b2ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - address2_stateorprovince - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_StateOrProvince - - - StringType - - 5.0.0.0 - true - 0 - - Text - Active - 50 - - - Text - - - false - 0 - 100 - - - 78366ce9-4a59-4ef2-a51d-c89352f80112 + + false + false + organization_datalakeworkspace + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_datalakeworkspace + organizationid + datalakeworkspace + organizationid + + 0 + + + 7d91e5db-b2ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 44 - 1900-01-01T00:00:00 - - - - - f6286c5d-396c-4f53-aac3-0b0dd5d657b4 - - true - First telephone number associated with address 2. - 1033 - - - - f6286c5d-396c-4f53-aac3-0b0dd5d657b4 - - true - First telephone number associated with address 2. - 1033 - - - - - - 9fdbc60f-7991-4a7a-9b63-3ca5d8629d0c - - true - Address 2: Telephone 1 - 1033 - - - - 9fdbc60f-7991-4a7a-9b63-3ca5d8629d0c - - true - Address 2: Telephone 1 - 1033 - - - publisher - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_datalakeworkspacepermission + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_datalakeworkspacepermission + organizationid + datalakeworkspacepermission + organizationid + + 0 + + + 968294dd-b875-4a4e-a158-4465aab4e357 + + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - + false + lk_partnerapplication_organizationid + None + 6.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + lk_partnerapplication_organizationid + organizationid + partnerapplication + organizationid + + 0 + + + 887d18de-bdba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - address2_telephone1 - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_Telephone1 - - - StringType - - 5.0.0.0 - true - 0 - - Text - Inactive - 50 - - - Text - - - false - 0 - 100 - - - 6ce04bf1-7225-468c-bbc6-cd80175e7fb1 + + false + true + organization_aicopilot + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_aicopilot + organizationid + aicopilot + organizationid + + 0 + + + 4b24c2e0-d3ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 36 - 1900-01-01T00:00:00 - - - - - 6bd244ab-a67b-4ab6-8c9a-3856e744d02a - - true - Second telephone number associated with address 2. - 1033 - - - - 6bd244ab-a67b-4ab6-8c9a-3856e744d02a - - true - Second telephone number associated with address 2. - 1033 - - - - - - 0577f65a-594e-4606-846b-a94c76c158af - - true - Address 2: Telephone 2 - 1033 - - - - 0577f65a-594e-4606-846b-a94c76c158af - - true - Address 2: Telephone 2 - 1033 - - - publisher - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + false + organization_retentionoperationdetail + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_retentionoperationdetail + organizationid + retentionoperationdetail + organizationid + + 0 + + + 25cc36e2-b2ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - + false + false + organization_dataprocessingconfiguration + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_dataprocessingconfiguration + organizationid + dataprocessingconfiguration + organizationid + + 0 + + + eacfade3-f0ad-4dfd-bd91-c30e00324d8a + + false + false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings + iscustomizable false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - address2_telephone2 - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_Telephone2 - - - StringType - + + true + false + userentityinstancedata_organization + None 5.0.0.0 - true - 0 - - Text - Inactive - 50 - - - Text - - - false - 0 - 100 - - - c0e44b90-cf8e-4ba7-bcee-d218c86f1e04 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + userentityinstancedata_organization + objectid + userentityinstancedata + objectid_organization + + 0 + + + 7c539ee4-bdba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 55 - 1900-01-01T00:00:00 - - - - - 5f1e1c97-497b-4833-a637-adeb66344070 - - true - Third telephone number associated with address 2. - 1033 - - - - 5f1e1c97-497b-4833-a637-adeb66344070 - - true - Third telephone number associated with address 2. - 1033 - - - - - - 463fae5d-f040-4acb-a006-5d899661ead9 - - true - Address 2: Telephone 3 - 1033 - - - - 463fae5d-f040-4acb-a006-5d899661ead9 - - true - Address 2: Telephone 3 - 1033 - - - publisher - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + organization_aiplugintitle + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_aiplugintitle + organizationid + aiplugintitle + organizationid + + 0 + + + a3807ae5-b4ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings + false + false + organization_sharedlinksetting + None + 1.69.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sharedlinksetting + organizationid + sharedlinksetting + organizationid + + 0 + + + 8df875e6-5b47-4108-916e-7dd545b40c04 + + false + + false + iscustomizable false - + true - false - false + false + organization_expanderevent + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_expanderevent + organizationid + expanderevent + organizationid + + 0 + + + ab2c6ce8-f113-4507-82b9-be59e9356052 + + false + + false + iscustomizable + false + + true + false + organization_business_unit_news_articles + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_business_unit_news_articles + organizationid + businessunitnewsarticle + organizationid + + 0 + + + fcd0cfe8-ca52-e411-80c6-00155d206d09 + + false + + false + iscustomizable + true + + true + false + organization_theme + None + 7.1.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_theme + organizationid + theme + organizationid + + 0 + + + cea681eb-7935-11e0-a0f5-1cc1de634cfe + + false + + false + iscustomizable + false + + true + false + organization_PostComment + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_PostComment + organizationid + postcomment + organizationid + + 0 + + + 7315fcf0-6a01-f111-8406-6045bde1ab47 + + false + + true + iscustomizable + true + + false + false + organization_msdyn_rtestructuredtemplate + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_rtestructuredtemplate + organizationid + msdyn_rtestructuredtemplate + organizationid + + 0 + + + a4ed00f1-fee0-4112-b569-1f3786195628 + + false + + false + iscustomizable + false + + true + false + organization_importjob + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_importjob + organizationid + importjob + organizationid + + 0 + + + 9b3cadf1-a637-4682-ba93-daf0ab680aa2 + + false + + false + iscustomizable + false + + true + false + customcontroldefaultconfig_organization + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + customcontroldefaultconfig_organization + organizationid + customcontroldefaultconfig + organizationid + + 0 + + + 093a2af2-7fa4-4568-aa18-526502f115e1 + + false + + false + iscustomizable + false + + true + false + organization_system_users + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_system_users + organizationid + systemuser + organizationid_organization + + 0 + + + 95f3e3f4-2859-4d5b-a29e-5db627ae3a42 + + false + + false + iscustomizable + false + + true + false + organization_serviceendpoint + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_serviceendpoint + organizationid + serviceendpoint + organizationid + + 0 + + + 79f17ff5-d8ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + organization_roleeditorlayout + None + 9.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_roleeditorlayout + organizationid + roleeditorlayout + organizationid + + 0 + + + d9addff5-5534-4c8e-8a9c-3ee86f2f61e6 + + false + + false + iscustomizable + true + + true + false + organization_similarityrule + None + 8.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_similarityrule + organizationid + similarityrule + organizationid + + 0 + + + 895c56fd-6a01-f111-8406-6045bde1ab47 + + false + + true + iscustomizable + true + + false + false + organization_msdyn_rtetemplatemapping + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_msdyn_rtetemplatemapping + organizationid + msdyn_rtetemplatemapping + organizationid + + 0 + + + 441f94fd-c6c5-4ad4-86da-5569780b5b11 + + false + + false + iscustomizable + false + + true + false + organization_RoutingRules + None + 6.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_RoutingRules + organizationid + routingrule + organizationid + + 0 + + + 249dbbfd-cbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + organization_attributeclusterconfig + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_attributeclusterconfig + organizationid + attributeclusterconfig + organizationid + + 0 + + + d99dbbfd-cbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + false + organization_entityclusterconfig + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_entityclusterconfig + organizationid + entityclusterconfig + organizationid + + 0 + + + 875360fe-5fea-40a1-a185-870173b71ae9 + + false + + false + iscustomizable + false + + true + false + MobileOfflineProfile_organization + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + MobileOfflineProfile_organization + organizationid + mobileofflineprofile + organizationid + + 0 + + + db377aff-8802-4020-9446-85c96d6a49a2 + + false + + false + iscustomizable + false + + true + false + organization_ribbon_customization + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_ribbon_customization + organizationid + ribboncustomization + organizationid + + 0 + + + 41df9fff-28b4-463e-a550-5a1644200ff9 + + false + + false + iscustomizable + false + + true + false + lk_dataperformance_organizationid + None + 7.1.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + lk_dataperformance_organizationid + organizationid + dataperformance + organizationid + + 0 + + + + 8 + OrganizationOwned + + organizationid + + organizationid + + name + + + false + false + false + true + false + false + false + prvReadOrganization + dbd3ad17-b6bd-46c8-8db7-179fec82c937 + Read + + + false + false + false + true + false + false + false + prvWriteOrganization + 9f7b7e89-e5f6-41fd-8390-f06a7ec66d25 + Write + + + false + false + false + true + false + false + false + prvAppendToOrganization + e7753b34-17f3-400e-8396-88e24b8dc519 + AppendTo + + + + FilteredOrganization + Organization + + + false + Standard + true + 5.0.0.0 + entityimage + + false + canchangehierarchicalrelationship + false + + + false + Organizations + + + true + + organizations + 9999 + organizations + false + + true + canmodifymobileclientoffline + false + + false + false + + <fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false"> + <entity name="organization"> + <filter type="and"> + <condition attribute="modifiedon" operator="on-or-after" value="1900-01-01"/> + </filter> + </entity> + </fetch> + + false + false + + + + pluginassembly + + a082a3da-e001-485a-b3e6-c7bdc272bb5a + + 0 + + + a34a131c-27bf-4d4c-a52b-6193c47fb64c + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 51 + 1900-01-01T00:00:00 + + + + + 6d072b81-3067-4b23-8777-3e7c31ef74dd + + true + Specifies mode of authentication with web sources like WebApp + 1033 + + + 3fded492-0403-41ca-8cb6-60ed21356f77 + + true + Angiver godkendelsestilstand med webkilder som WebApp + 1030 + + + + 6d072b81-3067-4b23-8777-3e7c31ef74dd + + true + Specifies mode of authentication with web sources like WebApp + 1033 + + + + + + b4f7cb2f-5991-4517-b091-f29af27c7539 + + true + Specifies mode of authentication with web sources + 1033 + + + 039705c6-51a8-44d0-a430-bfa1f405205e + + true + Angiver godkendelsestilstand med webkilder + 1030 + + + + b4f7cb2f-5991-4517-b091-f29af27c7539 + + true + Specifies mode of authentication with web sources + 1033 + + + pluginassembly + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false false isrenameable @@ -235961,99 +246453,308 @@ true true - address2_telephone3 + authtype 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Address2_Telephone3 + AuthType - StringType + PicklistType - 5.0.0.0 - true + 9.0.0.0 + false 0 - Text - Inactive - 50 - - - Text - + + + e11a3651-4466-4c6e-a696-4f20fb9c6f8b + + + + + db7a40b0-4276-44e6-995b-267002d2b76d + + true + Authentication Type for the Web sources like AzureWebApp, for example 0=BasicAuth + 1033 + + + b1150c2d-648c-4096-a6c2-8ae958acfc5c + + true + Godkendelsestype for webkilder som AzureWebApp, f.eks. 0=BasicAuth + 1030 + + + + db7a40b0-4276-44e6-995b-267002d2b76d + + true + Authentication Type for the Web sources like AzureWebApp, for example 0=BasicAuth + 1033 + + + + + + 5a02fa43-2447-4043-b1ea-e02536254250 + + true + Auth Type + 1033 + + + 3b14e279-52be-4df3-a3ec-e4173c192366 + + true + Godkendelsestype + 1030 + + + + 5a02fa43-2447-4043-b1ea-e02536254250 + + true + Auth Type + 1033 + + + + false + + false + iscustomizable + false + + false + true + pluginassembly_authtype + Picklist + 8.2.0.0 + + + + + + + + + + + false + true + + + + d02e88b0-5127-4f0b-9f52-29b538a84a6e + + true + BasicAuth + 1033 + + + 3e867270-b7c3-4b90-a4a2-226b6d724b79 + + true + BasicAuth + 1030 + + + + d02e88b0-5127-4f0b-9f52-29b538a84a6e + + true + BasicAuth + 1033 + + + + 0 + + + + + + - false 0 - 100 + + - - bb1ff9b4-2ab1-45a4-b77b-f888934eec35 + + a891947c-b960-4a63-bf71-729e65551bfc - - String + authtype + Virtual false false false false canmodifyadditionalsettings + true + + 52 + 1900-01-01T00:00:00 + + + + + + + + + + pluginassembly + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + authtypename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + AuthTypeName + + + VirtualType + + 9.0.0.0 + true + + + + + 9ae75000-e510-4cdd-a596-24f5afdea527 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true - 37 + 35 1900-01-01T00:00:00 - e7d4cb1b-7482-455a-9102-7ad96d5a7abc + 9ae75001-e510-4cdd-a596-24f5afdea527 true - United Parcel Service (UPS) zone for address 2. + For internal use only. 1033 + + 81da27f5-5655-475e-ab74-96c6b553eb9a + + true + Kun til intern brug. + 1030 + - e7d4cb1b-7482-455a-9102-7ad96d5a7abc + 9ae75001-e510-4cdd-a596-24f5afdea527 true - United Parcel Service (UPS) zone for address 2. + For internal use only. 1033 - 6053681d-ef1c-4e0d-86f3-9f5135c673ab + 9ae75002-e510-4cdd-a596-24f5afdea527 true - Address 2: UPS Zone + Component State 1033 + + 03ed1742-d277-4155-9835-48b924b373b2 + + true + Komponenttilstand + 1030 + - 6053681d-ef1c-4e0d-86f3-9f5135c673ab + 9ae75002-e510-4cdd-a596-24f5afdea527 true - Address 2: UPS Zone + Component State 1033 - publisher + pluginassembly - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -236082,96 +246783,313 @@ false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true + false true - address2_upszone + componentstate 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - Address2_UPSZone + ComponentState - StringType + PicklistType 5.0.0.0 - true + false 0 - Text - Auto - 4 - - - Text - + -1 + + faece09f-cefc-11de-8150-00155da18b00 + + + + + faece0a1-cefc-11de-8150-00155da18b00 + + true + The state of this component. + 1033 + + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + + + + faece0a1-cefc-11de-8150-00155da18b00 + + true + The state of this component. + 1033 + + + + + + faece0a0-cefc-11de-8150-00155da18b00 + + true + Component State + 1033 + + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + + + + faece0a0-cefc-11de-8150-00155da18b00 + + true + Component State + 1033 + + + + false + + false + iscustomizable + false + + true + true + componentstate + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + faece0a3-cefc-11de-8150-00155da18b00 + + true + Published + 1033 + + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + + + + faece0a3-cefc-11de-8150-00155da18b00 + + true + Published + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + faece0a5-cefc-11de-8150-00155da18b00 + + true + Unpublished + 1033 + + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + + + + faece0a5-cefc-11de-8150-00155da18b00 + + true + Unpublished + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + faece0a7-cefc-11de-8150-00155da18b00 + + true + Deleted + 1033 + + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + + + + faece0a7-cefc-11de-8150-00155da18b00 + + true + Deleted + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 1f83e0bb-cefd-11de-8150-00155da18b00 + + true + Deleted Unpublished + 1033 + + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + + + + 1f83e0bb-cefd-11de-8150-00155da18b00 + + true + Deleted Unpublished + 1033 + + + + 3 + + + + + + - false 0 - 8 + + - - a0a47ffb-8ae3-4ee9-88e2-bde614abfe67 + + e9805c2f-7586-45b3-be1d-dafe4b4c9e46 - Integer + String false false false false canmodifyadditionalsettings - false + true - 27 + 3 1900-01-01T00:00:00 - 8915a8e8-7b84-4cd3-be69-2ab1fd319ce9 + 020b19a7-2241-db11-898a-0007e9e17ebd true - UTC offset for address 2. This is the difference between local time and standard Coordinated Universal Time. + Bytes of the assembly, in Base64 format. 1033 - - - 8915a8e8-7b84-4cd3-be69-2ab1fd319ce9 - - true - UTC offset for address 2. This is the difference between local time and standard Coordinated Universal Time. - 1033 - - - - - d9521332-4d1e-40f7-8eb0-02bfc07f3691 + 4d1ce1a9-a333-4168-88c0-e284647a4880 true - Address 2: UTC Offset - 1033 + Assemblyens byte i Base64-format. + 1030 - d9521332-4d1e-40f7-8eb0-02bfc07f3691 + 020b19a7-2241-db11-898a-0007e9e17ebd true - Address 2: UTC Offset + Bytes of the assembly, in Base64 format. 1033 + + + + - publisher + pluginassembly @@ -236183,7 +247101,7 @@ false iscustomizable - true + false false false @@ -236215,36 +247133,42 @@ false true - true - true + false + false true true true - address2_utcoffset + content 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Address2_UTCOffset + Content - IntegerType + StringType 5.0.0.0 - true + false 0 - TimeZone - 1500 - -1500 + TextArea + Auto + 1073741823 + + + TextArea + + false 0 + -1 - eb684248-a813-4dd8-b43a-d1ddb32b9405 + 9a0aeb8a-d927-444a-8f18-271370004eff Lookup @@ -236254,48 +247178,62 @@ false canmodifyadditionalsettings - false + true - 32 + 9 1900-01-01T00:00:00 - e9c821e6-0cc9-4e69-b672-40d91fba1cdb + 110b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the user who created the publisher. + Unique identifier of the user who created the plug-in assembly. 1033 + + 1e4e3daf-8bf7-4b9d-9e28-f3a94a6249c6 + + true + Entydigt id for den bruger, der oprettede plug-in-assemblyen. + 1030 + - e9c821e6-0cc9-4e69-b672-40d91fba1cdb + 110b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the user who created the publisher. + Unique identifier of the user who created the plug-in assembly. 1033 - bbef4e7e-6b07-488d-8d06-98e87f8777ac + 32ee03f1-1311-4c87-81a0-e48bbed011c1 true Created By 1033 + + 00dba79e-bd40-474a-bcd6-a80c6e66866c + + true + Oprettet af + 1030 + - bbef4e7e-6b07-488d-8d06-98e87f8777ac + 32ee03f1-1311-4c87-81a0-e48bbed011c1 true Created By 1033 - publisher + pluginassembly @@ -236336,11 +247274,11 @@ false canmodifysearchsettings - false + true false - false - false + true + true true false true @@ -236367,7 +247305,7 @@ - b19e0e00-7e9e-11dd-94cd-00188b01dce6 + 7567ac98-6590-4759-a0c7-c9bbca7ab3eb createdby String @@ -236377,9 +247315,9 @@ false canmodifyadditionalsettings - false + true - 58 + 36 1900-01-01T00:00:00 @@ -236390,7 +247328,7 @@ - publisher + pluginassembly @@ -236441,7 +247379,7 @@ false createdbyname - 1900-01-01T00:00:00 + 2025-11-06T00:19:25.8700032 false canmodifyrequirementlevelsettings @@ -236469,7 +247407,7 @@ 320 - f20c4e1e-c4c2-4e2d-921d-314c8bd60923 + c91c3a5a-0f79-4f06-85c2-0da16e6dc680 DateTime @@ -236479,48 +247417,62 @@ false canmodifyadditionalsettings - false + true - 22 + 13 1900-01-01T00:00:00 - f2734e96-ffa9-44fd-a78c-0063955d1b40 + 080b19a7-2241-db11-898a-0007e9e17ebd true - Date and time when the publisher was created. + Date and time when the plug-in assembly was created. 1033 + + 22d429cb-6389-4b56-81d4-ac2589c85eb6 + + true + Dato og klokkeslæt for oprettelse af plug-in-assemblyen. + 1030 + - f2734e96-ffa9-44fd-a78c-0063955d1b40 + 080b19a7-2241-db11-898a-0007e9e17ebd true - Date and time when the publisher was created. + Date and time when the plug-in assembly was created. 1033 - 8c9f0343-a0ca-4803-b8ed-4fbbcf5d1b15 + 448189c4-7da9-44fe-a776-74ed24f71de4 true Created On 1033 + + 7437f5b0-7f07-41a8-b394-b285904268e9 + + true + Oprettet + 1030 + - 8c9f0343-a0ca-4803-b8ed-4fbbcf5d1b15 + 448189c4-7da9-44fe-a776-74ed24f71de4 true Created On 1033 - publisher + pluginassembly @@ -236561,11 +247513,11 @@ false canmodifysearchsettings - false + true false - false - false + true + true true false true @@ -236600,7 +247552,7 @@ - 9fb1805b-6930-494f-b293-4daadc13ba5a + 6d4a7f5b-3664-4e4f-a271-4e8dccdd42dd Lookup @@ -236610,48 +247562,62 @@ false canmodifyadditionalsettings - false + true - 69 + 25 1900-01-01T00:00:00 - 9ce4ea1a-e749-44d2-9f19-2233814f12f5 + ea99e809-4b1d-47e2-9f73-9d1c22bea5a1 true - Unique identifier of the delegate user who created the publisher. + Unique identifier of the delegate user who created the pluginassembly. 1033 + + ccfbe6c4-a3f3-4ff5-9418-c235e06f1696 + + true + Entydigt id for den stedfortræderbruger, der oprettede plug-in-assemblyen. + 1030 + - 9ce4ea1a-e749-44d2-9f19-2233814f12f5 + ea99e809-4b1d-47e2-9f73-9d1c22bea5a1 true - Unique identifier of the delegate user who created the publisher. + Unique identifier of the delegate user who created the pluginassembly. 1033 - 9a0da4b8-976c-4daf-acee-7169afc95f72 + 1dc518f9-6cfa-4d7d-87d9-115f78368285 true Created By (Delegate) 1033 + + bc7c8276-d4aa-4d7c-becd-c11d68b106c2 + + true + Oprettet af (stedfortræder) + 1030 + - 9a0da4b8-976c-4daf-acee-7169afc95f72 + 1dc518f9-6cfa-4d7d-87d9-115f78368285 true Created By (Delegate) 1033 - publisher + pluginassembly @@ -236663,7 +247629,7 @@ false iscustomizable - true + false false false @@ -236723,7 +247689,7 @@ - ae4994a9-7ff3-4613-bb9d-f8b98efac867 + 7ad2dbc9-5573-4f80-bcab-5fb817e1e65a createdonbehalfby String @@ -236733,9 +247699,9 @@ false canmodifyadditionalsettings - false + true - 71 + 33 1900-01-01T00:00:00 @@ -236746,7 +247712,7 @@ - publisher + pluginassembly @@ -236797,7 +247763,7 @@ false createdonbehalfbyname - 1900-01-01T00:00:00 + 2025-11-06T00:19:25.1030016 false canmodifyrequirementlevelsettings @@ -236825,7 +247791,7 @@ 320 - 6ab1079d-c522-4e7e-a1a6-9ae39cccc717 + 497f83ec-63d4-4c61-9b8f-29cae333b75a createdonbehalfby String @@ -236835,9 +247801,9 @@ false canmodifyadditionalsettings - false + true - 72 + 34 1900-01-01T00:00:00 @@ -236848,7 +247814,7 @@ - publisher + pluginassembly @@ -236899,7 +247865,7 @@ false createdonbehalfbyyominame - 1900-01-01T00:00:00 + 2025-11-06T00:19:26.8099968 false canmodifyrequirementlevelsettings @@ -236926,59 +247892,73 @@ 0 320 - - b7062cc6-cefe-45c9-ace7-bf3138086fab + + b992553e-270b-4f06-bcc9-bd248cf7ac34 - Integer + String false false false false canmodifyadditionalsettings - false + true - 73 + 15 1900-01-01T00:00:00 - c200c03c-fb91-4ee2-81f7-ca6813bf62bb + 62eccb78-272b-4f7b-b6fb-862c4d3c35dc true - Default option value prefix used for newly created options for solutions associated with this publisher. + Culture code for the plug-in assembly. 1033 + + 5b83467a-0299-44a6-8d36-a0e28c53dc9d + + true + Kulturkoden for plug-in-assemblyen. + 1030 + - c200c03c-fb91-4ee2-81f7-ca6813bf62bb + 62eccb78-272b-4f7b-b6fb-862c4d3c35dc true - Default option value prefix used for newly created options for solutions associated with this publisher. + Culture code for the plug-in assembly. 1033 - a137f7d7-c4f0-4ef4-a998-2f13f390b0c0 + 1dcb1611-93e2-4f26-b1c3-f6b186b4ebc8 true - Option Value Prefix + Culture 1033 + + 1a76c122-aa31-4e5c-8ded-e1857cb5c7b6 + + true + Kultur + 1030 + - a137f7d7-c4f0-4ef4-a998-2f13f390b0c0 + 1dcb1611-93e2-4f26-b1c3-f6b186b4ebc8 true - Option Value Prefix + Culture 1033 - publisher + pluginassembly @@ -236990,7 +247970,7 @@ false iscustomizable - true + false false false @@ -237008,7 +247988,7 @@ false false - false + true false false @@ -237028,81 +248008,80 @@ true true - customizationoptionvalueprefix + culture 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - CustomizationOptionValuePrefix + Culture - IntegerType + StringType 5.0.0.0 false 0 - None - 99999 - 10000 + Text + Auto + 32 + + + Text + + false 0 + 64 - - 4432ecac-f1d6-4a8f-a9ab-2cde39e74ec1 + + c0ec1aad-8ba4-4915-8448-3dc8b9dd78fd - String + Integer false false false false canmodifyadditionalsettings - false + true - 33 + 2 1900-01-01T00:00:00 - 4b183a52-0559-4f81-96f1-b847ea1207f4 + ff0a19a7-2241-db11-898a-0007e9e17ebd true - Prefix used for new entities, attributes, and entity relationships for solutions associated with this publisher. + Customization Level. 1033 - - - 4b183a52-0559-4f81-96f1-b847ea1207f4 - - true - Prefix used for new entities, attributes, and entity relationships for solutions associated with this publisher. - 1033 - - - - - 71750b30-d293-43f1-94b5-22e1a9cd13d8 + 30dc315f-c386-403d-a372-59a9513f23b2 true - Prefix - 1033 + Tilpasningsniveau. + 1030 - 71750b30-d293-43f1-94b5-22e1a9cd13d8 + ff0a19a7-2241-db11-898a-0007e9e17ebd true - Prefix + Customization Level. 1033 + + + + - publisher + pluginassembly @@ -237114,7 +248093,7 @@ false iscustomizable - true + false false false @@ -237143,45 +248122,39 @@ false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true + false true - customizationprefix + customizationlevel 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - CustomizationPrefix + CustomizationLevel - StringType + IntegerType 5.0.0.0 false 0 - Text - Auto - 8 - - - Text - + None + 255 + -255 - false 0 - 16 - 9cb8b826-564b-47c8-b901-eee3e429ecc6 + bb8231f0-c848-492d-bd74-f4bf5660a10e String @@ -237191,48 +248164,62 @@ false canmodifyadditionalsettings - false + true - 3 + 47 1900-01-01T00:00:00 - 6f13f7c5-2531-4044-9ad6-9a30c6d59572 + a574123e-5713-49dd-9cd9-f1a32ef83366 true - Description of the solution. + Description of the plug-in assembly. 1033 + + 01d9aab6-910b-4a94-9c6e-c033b4f009f8 + + true + Beskrivelse af plug-in-assemblyen. + 1030 + - 6f13f7c5-2531-4044-9ad6-9a30c6d59572 + a574123e-5713-49dd-9cd9-f1a32ef83366 true - Description of the solution. + Description of the plug-in assembly. 1033 - e03b85dc-25f4-4d43-be86-bdcb984c4e3a + 2ce20d0d-f160-40d4-9413-b241ed47990b true Description 1033 + + 565a0624-31c6-405f-b94e-2dff3b78fbd1 + + true + Beskrivelse + 1030 + - e03b85dc-25f4-4d43-be86-bdcb984c4e3a + 2ce20d0d-f160-40d4-9413-b241ed47990b true Description 1033 - publisher + pluginassembly @@ -237244,7 +248231,7 @@ false iscustomizable - true + false false false @@ -237262,7 +248249,7 @@ false false - true + false false false @@ -237298,20 +248285,20 @@ false 0 - TextArea + Text Auto - 2000 + 256 - TextArea + Text - true + false 0 - 4000 + 512 - 61784fc3-cad1-473a-abca-3b75bb304c48 + 72ac144b-4fb8-4df6-9898-0d3986b13e3f String @@ -237323,46 +248310,60 @@ canmodifyadditionalsettings false - 17 + 49 1900-01-01T00:00:00 - f5b5392c-1acb-4cfa-88df-6acebb77792f + 17727bbe-9cd7-42bc-ac52-fcb567d14f82 true - Email address for the publisher. + Version in which the form is introduced. 1033 + + 75ee8d74-a116-46a9-bb98-e45ab75a8879 + + true + Version, som formularen introduceres i. + 1030 + - f5b5392c-1acb-4cfa-88df-6acebb77792f + 17727bbe-9cd7-42bc-ac52-fcb567d14f82 true - Email address for the publisher. + Version in which the form is introduced. 1033 - b58594d6-99ba-4cbd-b23d-34a20f6cbeb9 + a5a9a9c4-26be-4a8c-91c3-8dca72106c0a true - Email + Introduced Version 1033 + + 68e5985d-71b7-4cda-ae4a-16fc065fc18b + + true + Introduceret version + 1030 + - b58594d6-99ba-4cbd-b23d-34a20f6cbeb9 + a5a9a9c4-26be-4a8c-91c3-8dca72106c0a true - Email + Introduced Version 1033 - publisher + pluginassembly @@ -237374,7 +248375,7 @@ false iscustomizable - true + false false false @@ -237392,7 +248393,7 @@ false false - true + false false false @@ -237403,100 +248404,114 @@ false canmodifysearchsettings - true + false true - true - true + false + false true - true + false true - emailaddress + introducedversion 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - EMailAddress + IntroducedVersion StringType - 5.0.0.0 + 6.0.0.0 false 0 - Email - Inactive - 100 + VersionNumber + Auto + 48 - Email + VersionNumber false 0 - 200 + 96 - - c5751ceb-8a89-47b5-9d9a-d1c26cf8c7e4 + + aaa3adab-f236-46fd-9b2f-40feec5708b1 - entityimageid - Virtual + + ManagedProperty false false false false canmodifyadditionalsettings - false + true - 77 + 50 1900-01-01T00:00:00 - b153c1bf-b4d7-4ca6-8c78-ace08cc9ee43 + 370e545d-a93f-4058-8182-b1c787fc45a3 true - Shows the default image for the record. + Information that specifies whether this component can be customized. 1033 + + a76d7342-fab8-4584-914a-ffabec978005 + + true + Oplysninger, der angiver, om denne komponent kan tilpasses. + 1030 + - b153c1bf-b4d7-4ca6-8c78-ace08cc9ee43 + 370e545d-a93f-4058-8182-b1c787fc45a3 true - Shows the default image for the record. + Information that specifies whether this component can be customized. 1033 - c3aee941-7e60-4a05-8717-4d82187506a3 + 8af88739-98c9-4546-83c6-ae9a51cddd56 true - Entity Image + Customizable 1033 + + 3a5c2596-8bdf-495f-a011-3f75bcd3c4d6 + + true + Kan tilpasses + 1030 + - c3aee941-7e60-4a05-8717-4d82187506a3 + 8af88739-98c9-4546-83c6-ae9a51cddd56 true - Entity Image + Customizable 1033 - publisher + pluginassembly - true + false canmodifyauditsettings false @@ -237504,7 +248519,7 @@ false iscustomizable - true + false false false @@ -237519,7 +248534,7 @@ false isrenameable - true + false false false @@ -237542,53 +248557,94 @@ true true - entityimage + iscustomizable 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - EntityImage + IsCustomizable - - ImageType + + ManagedPropertyType - 6.0.0.0 - true + 8.2.0.0 + false - false - true - 144 - 10240 - 144 + iscustomizableanddeletable + + 0 + Boolean - - e51664f4-1bc4-466d-835a-2f6a0125463c + + 12351ff2-69e5-11df-a50e-f4ce462d9b5d - entityimageid - BigInt + + ManagedProperty false false false false canmodifyadditionalsettings - false + true - 80 + 48 1900-01-01T00:00:00 - - + + + 12351ff3-69e5-11df-a50e-f4ce462d9b5d + + true + Information that specifies whether this component should be hidden. + 1033 + + + e7f70f9f-6f2e-42ce-a455-4151d5ed836c + + true + Oplysning om, hvorvidt komponenten bør skjules. + 1030 + + + + 12351ff3-69e5-11df-a50e-f4ce462d9b5d + + true + Information that specifies whether this component should be hidden. + 1033 + - - + + + 12351ff4-69e5-11df-a50e-f4ce462d9b5d + + true + Hidden + 1033 + + + 95d82c74-ca6d-4999-94ff-298c2a5721b5 + + true + Skjult + 1030 + + + + 12351ff4-69e5-11df-a50e-f4ce462d9b5d + + true + Hidden + 1033 + - publisher + pluginassembly @@ -237603,7 +248659,7 @@ false false - false + true true canmodifyglobalfiltersettings @@ -237631,61 +248687,105 @@ canmodifysearchsettings false - false + true false false true - false + true true - entityimage_timestamp + ishidden 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - EntityImage_Timestamp + IsHidden - BigIntType + ManagedPropertyType - 6.0.0.0 - true + 5.0.0.0 + false - 9223372036854775807 - -9223372036854775808 + ishidden + + 0 + Boolean - - 038f0d1e-3a26-445a-aa9e-df4ed91dce09 + + cac46ac7-e5d2-4e4d-adee-2e31aa5dfed0 - entityimageid - String + + Boolean false false false false canmodifyadditionalsettings - false + true - 78 + 43 1900-01-01T00:00:00 - - + + + 31e5422d-e2a0-43eb-bf7e-1acb27e29b08 + + true + Information that specifies whether this component is managed. + 1033 + + + 6e3d3a58-ebd1-4afb-8416-a1df00a895d3 + + true + Oplysning om, hvorvidt komponenten er administreret. + 1030 + + + + 31e5422d-e2a0-43eb-bf7e-1acb27e29b08 + + true + Information that specifies whether this component is managed. + 1033 + - - + + + 9d756fcc-2231-4336-a874-b40e2c66d35a + + true + State + 1033 + + + 791a3227-5d47-46f5-ae40-9dde848e5f58 + + true + Tilstand + 1030 + + + + 9d756fcc-2231-4336-a874-b40e2c66d35a + + true + State + 1033 + - publisher + pluginassembly - false + true canmodifyauditsettings true @@ -237711,7 +248811,7 @@ false false - true + false false false @@ -237726,98 +248826,208 @@ false false - false + true true false true - entityimage_url + ismanaged 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - EntityImage_URL + IsManaged - StringType + BooleanType - 6.0.0.0 - true + 5.0.0.0 + false 0 - Url - Disabled - 200 - - - Url - + false + + 9d04e035-5408-4c1d-a5aa-20445a02f691 + + + + + b41954a2-f3a5-47e9-ae13-ceb49de4465b + + true + Information about whether the current component is managed. + 1033 + + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + + + + b41954a2-f3a5-47e9-ae13-ceb49de4465b + + true + Information about whether the current component is managed. + 1033 + + + + + + 45a188b1-91a8-4019-b582-cebda8081064 + + true + Is Component Managed + 1033 + + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + + + + 45a188b1-91a8-4019-b582-cebda8081064 + + true + Is Component Managed + 1033 + + + + false + + false + iscustomizable + false + + true + true + ismanaged + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 443c7078-b7cb-47e7-8547-08dfa82950d0 + + true + Unmanaged + 1033 + + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + + + + 443c7078-b7cb-47e7-8547-08dfa82950d0 + + true + Unmanaged + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + ec886b5b-7e97-4c62-b30c-bf295639d540 + + true + Managed + 1033 + + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + + + + ec886b5b-7e97-4c62-b30c-bf295639d540 + + true + Managed + 1033 + + + + 1 + + + - false 0 - 400 - dd8e0af5-adb9-45b0-849c-465d38f368b1 + 93df3298-a8e6-4d58-b5e2-22fe2da56f15 - - Uniqueidentifier + ismanaged + Virtual false false false false canmodifyadditionalsettings - false + true - 79 + 44 1900-01-01T00:00:00 - - - 65b06f6c-b40d-4404-a4d1-77caedd72d4e - - true - For internal use only. - 1033 - - - - 65b06f6c-b40d-4404-a4d1-77caedd72d4e - - true - For internal use only. - 1033 - + + - - - c27a31a6-1fed-4fb0-bdb1-2d86ed5dbbda - - true - Entity Image Id - 1033 - - - - c27a31a6-1fed-4fb0-bdb1-2d86ed5dbbda - - true - Entity Image Id - 1033 - + + - publisher + pluginassembly false canmodifyauditsettings - true + false false @@ -237859,78 +249069,92 @@ false true false - true + false - entityimageid + ismanagedname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - EntityImageId + IsManagedName - UniqueidentifierType + VirtualType - 6.0.0.0 - false + 5.0.0.0 + true - - 9e19102f-6e1a-4c4a-a62a-604bfb802306 + + 298ebc25-39da-4e4a-a5a5-e5ecb1ce07ee - String + Picklist false false false false canmodifyadditionalsettings - false + true - 64 + 22 1900-01-01T00:00:00 - 41ff1b52-9cf8-462b-995c-b1d7912cfbe1 + 9cba9ff1-7098-44ad-a977-1bfd9a76c884 true - User display name for this publisher. + Information about how the plugin assembly is to be isolated at execution time; None / Sandboxed. 1033 + + 0664d273-7876-4669-b002-99ea02d79041 + + true + Angiver, hvordan plug-in-assemblien skal isoleres ved kørsel: Ingen/Sandkasse. + 1030 + - 41ff1b52-9cf8-462b-995c-b1d7912cfbe1 + 9cba9ff1-7098-44ad-a977-1bfd9a76c884 true - User display name for this publisher. + Information about how the plugin assembly is to be isolated at execution time; None / Sandboxed. 1033 - 055b7378-830e-4b3b-b593-eb617a3848b5 + 947ce7df-823a-40b5-973d-f3204ca0a5b6 true - Display Name + Isolation Mode 1033 + + 7ab6fcf1-00c1-4da3-8a3f-d4d3591f3dc2 + + true + Isolationstilstand + 1030 + - 055b7378-830e-4b3b-b593-eb617a3848b5 + 947ce7df-823a-40b5-973d-f3204ca0a5b6 true - Display Name + Isolation Mode 1033 - publisher + pluginassembly @@ -237942,7 +249166,7 @@ false iscustomizable - true + false false false @@ -237953,7 +249177,7 @@ true false - true + false false isrenameable @@ -237961,7 +249185,7 @@ false true - true + false false true @@ -237971,45 +249195,320 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - friendlyname + isolationmode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - FriendlyName + IsolationMode - StringType + PicklistType 5.0.0.0 false 0 - Text - Auto - 256 - - - Text - + 1 + + ce183046-4f11-418c-87cd-930c028bc427 + + + + + 08334f91-a887-48ea-9e64-a4e5e110390a + + true + Information about how the plugin assembly is to be isolated at execution time; None / Sandboxed / External. + 1033 + + + 64a79c8b-e6fe-4945-ae59-a41616815386 + + true + Angiver, hvordan plug-in-assemblyen skal isoleres ved kørsel: Ingen/Sandkasse/Ekstern. + 1030 + + + + 08334f91-a887-48ea-9e64-a4e5e110390a + + true + Information about how the plugin assembly is to be isolated at execution time; None / Sandboxed / External. + 1033 + + + + + + d59064b2-a62a-465e-abf2-b209b03ac31a + + true + Isolation Mode + 1033 + + + 149f45b0-dcdd-4947-b7ce-ce96d1ba9e5b + + true + Isolationstilstand + 1030 + + + + d59064b2-a62a-465e-abf2-b209b03ac31a + + true + Isolation Mode + 1033 + + + + false + + false + iscustomizable + false + + false + true + pluginassembly_isolationmode + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + b2a38cb7-9d48-4810-ba63-537cf5ba902c + + true + None + 1033 + + + 1f970a1a-1e12-48d6-9386-67ca5f35d5d0 + + true + Ingen + 1030 + + + + b2a38cb7-9d48-4810-ba63-537cf5ba902c + + true + None + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + d1559efd-ad2d-4bcd-883d-0694ece28a42 + + true + Sandbox + 1033 + + + 40c82301-9cb7-469f-8805-4deaf31e3719 + + true + Sandkasse + 1030 + + + + d1559efd-ad2d-4bcd-883d-0694ece28a42 + + true + Sandbox + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 234069fb-4210-4ef8-82e1-585e04c91e39 + + true + External + 1033 + + + f42df5d5-1b22-4635-b6fa-5c692a2ddb1a + + true + Ekstern + 1030 + + + + 234069fb-4210-4ef8-82e1-585e04c91e39 + + true + External + 1033 + + + + 3 + + + + + + - true 0 - 512 + + + + + dc3a28b7-90b6-4667-8804-de85d442b902 + + isolationmode + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 37 + 1900-01-01T00:00:00 + + + + + + + + + + pluginassembly + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + isolationmodename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + IsolationModeName + + + VirtualType + + 5.0.0.0 + true + + - adc16762-4cd4-11df-a505-f4ce462d9b5d + 73312134-a2e9-4eee-883b-fcae6b26366a Boolean @@ -238019,60 +249518,32 @@ false canmodifyadditionalsettings - false + true - 76 + 55 1900-01-01T00:00:00 - - - adc16775-4cd4-11df-a505-f4ce462d9b5d - - true - Indicates whether the publisher was created as part of a managed solution installation. - 1033 - - - - adc16775-4cd4-11df-a505-f4ce462d9b5d - - true - Indicates whether the publisher was created as part of a managed solution installation. - 1033 - + + - - - adc16773-4cd4-11df-a505-f4ce462d9b5d - - true - Is Read-Only Publisher - 1033 - - - - adc16773-4cd4-11df-a505-f4ce462d9b5d - - true - Is Read-Only Publisher - 1033 - + + - publisher + pluginassembly - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -238087,7 +249558,7 @@ false isrenameable - false + true false false @@ -238099,7 +249570,7 @@ false - false + true canmodifysearchsettings false @@ -238110,59 +249581,73 @@ false true - isreadonly + ispasswordset 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - IsReadonly + IsPasswordSet BooleanType - 5.0.0.0 - false + 9.0.0.0 + true 0 false - adc16774-4cd4-11df-a505-f4ce462d9b5d + 308a9725-d926-4620-8af4-0a8839cb12c3 - adc16771-4cd4-11df-a505-f4ce462d9b5d + 75bc633e-e8de-4ead-850b-5d17fc9f5220 true - Indicates whether the publish was initially installed as part of a managed solution. + Information about whether an associated encrypted attribute has a value. 1033 + + fb60d1d2-d5c9-41cd-bfd7-f7bd3fdf333b + + true + Oplysninger om, hvorvidt en tilknyttet krypteret attribut har en værdi. + 1030 + - adc16771-4cd4-11df-a505-f4ce462d9b5d + 75bc633e-e8de-4ead-850b-5d17fc9f5220 true - Indicates whether the publish was initially installed as part of a managed solution. + Information about whether an associated encrypted attribute has a value. 1033 - adc16772-4cd4-11df-a505-f4ce462d9b5d + 3db0e44d-bf0e-47b6-a72e-d4c0308ec1d3 true - Is read-only publisher + Is Encrypted Attribute Value Set 1033 + + 47b838fb-154a-40d7-a62e-d92b7f29b2c2 + + true + Er krypteret attributværdi angivet + 1030 + - adc16772-4cd4-11df-a505-f4ce462d9b5d + 3db0e44d-bf0e-47b6-a72e-d4c0308ec1d3 true - Is read-only publisher + Is Encrypted Attribute Value Set 1033 @@ -238171,13 +249656,13 @@ false iscustomizable - true + false - false + true true - publisher_isreadonly + isencryptedattributevalueset Boolean - 5.0.0.0 + 7.0.0.0 @@ -238192,15 +249677,22 @@ - adc1676f-4cd4-11df-a505-f4ce462d9b5d + 4f3aa649-7e06-4995-811d-b86f518567e7 true No 1033 + + 33a90666-1ad7-44a6-b7bd-f2903f5488f8 + + true + Nej + 1030 + - adc1676f-4cd4-11df-a505-f4ce462d9b5d + 4f3aa649-7e06-4995-811d-b86f518567e7 true No @@ -238225,15 +249717,22 @@ - adc1676d-4cd4-11df-a505-f4ce462d9b5d + 92421800-a49a-4d95-a429-0b34f21c4b53 true Yes 1033 + + 376d8694-a062-4143-9f80-49d8dd424b89 + + true + Ja + 1030 + - adc1676d-4cd4-11df-a505-f4ce462d9b5d + 92421800-a49a-4d95-a429-0b34f21c4b53 true Yes @@ -238248,8 +249747,125 @@ 0 + + c12578ee-4068-44fc-8f80-cbf9f55ff7fd + + + Integer + false + false + false + + false + canmodifyadditionalsettings + true + + 45 + 1900-01-01T00:00:00 + + + + + f7a0a5c4-397b-48f1-a06d-dd8a37726508 + + true + Major of the assembly version. + 1033 + + + b34bb3ae-a207-4a07-b018-dc635fbe8365 + + true + Overordnet versionsnummer for assembly. + 1030 + + + + f7a0a5c4-397b-48f1-a06d-dd8a37726508 + + true + Major of the assembly version. + 1033 + + + + + + + pluginassembly + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + major + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + Major + + + IntegerType + + 5.0.0.0 + false + 0 + + None + 65534 + 0 + + 0 + - 37665ef6-17c0-4d04-9793-8c17bfeeb74b + 7f6496e2-740b-4c74-96b7-0910b4750d8d Lookup @@ -238259,48 +249875,404 @@ false canmodifyadditionalsettings + true + + 10000 + 2025-11-06T01:10:45.1000064 + + + + + ba0dcdfd-bc94-4009-99eb-41fef532c226 + + true + Unique identifier for managedidentity associated with pluginassembly. + 1033 + + + + ba0dcdfd-bc94-4009-99eb-41fef532c226 + + true + Unique identifier for managedidentity associated with pluginassembly. + 1033 + + + + + + 37078d99-0745-48dd-aade-ccc7ee1d7a24 + + true + ManagedIdentityId + 1033 + + + + 37078d99-0745-48dd-aade-ccc7ee1d7a24 + + true + ManagedIdentityId + 1033 + + + pluginassembly + + + + true + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + managedidentityid + 2025-11-06T01:10:49.52 + + true + canmodifyrequirementlevelsettings + None + + ManagedIdentityId + + + LookupType + + 9.0.0.0 + false + + + None + + managedidentity + + + + e64d7d67-4033-4847-9141-a9e6814416b8 + + managedidentityid + String + false + false + false + + true + canmodifyadditionalsettings + true + + 10001 + 2025-11-06T01:10:49.6169984 + + + + + + + + + + pluginassembly + + + + true + canmodifyauditsettings + true + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + managedidentityidname + 2025-11-06T01:10:49.6169984 + + true + canmodifyrequirementlevelsettings + None + + managedidentityidName + + + StringType + + 9.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 200 + + + a9180dc9-e86e-4dc3-9623-b5d4e729699f + + + Integer + false + false + false + + false + canmodifyadditionalsettings + true + + 46 + 1900-01-01T00:00:00 + + + + + fead0be3-d812-4cdc-95f1-67187756e15f + + true + Minor of the assembly version. + 1033 + + + 5ff8fd68-9471-4a69-81ab-80aed4e21bcb + + true + Underordnet versionsnummer for assembly. + 1030 + + + + fead0be3-d812-4cdc-95f1-67187756e15f + + true + Minor of the assembly version. + 1033 + + + + + + + pluginassembly + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + minor + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + Minor + + + IntegerType + + 5.0.0.0 + false + 0 + + None + 65534 + 0 + + 0 + + + 9ec69772-590e-4a59-8bcf-594d1b496bb3 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true - 5 + 12 1900-01-01T00:00:00 - a56e1997-eb9f-48a2-82d9-d898a7ca353f + 060b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the user who last modified the publisher. + Unique identifier of the user who last modified the plug-in assembly. 1033 + + 190e97f1-16eb-4d45-a773-fe9c69ebc706 + + true + Entydigt id for den bruger, der sidst ændrede plug-in-assemblyen. + 1030 + - a56e1997-eb9f-48a2-82d9-d898a7ca353f + 060b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the user who last modified the publisher. + Unique identifier of the user who last modified the plug-in assembly. 1033 - d6096ca7-eac8-47a1-9933-1fb270904624 + 329df6e0-b649-4730-99fb-27a3477e7780 true Modified By 1033 + + 3426dbec-f024-4ee0-a46d-455645eded86 + + true + Ændret af + 1030 + - d6096ca7-eac8-47a1-9933-1fb270904624 + 329df6e0-b649-4730-99fb-27a3477e7780 true Modified By 1033 - publisher + pluginassembly @@ -238341,11 +250313,11 @@ false canmodifysearchsettings - false + true false - false - false + true + true true false true @@ -238372,7 +250344,7 @@ - b19e0dfe-7e9e-11dd-94cd-00188b01dce6 + 36f470bb-1b13-49bd-b2b5-83f9a6f23864 modifiedby String @@ -238382,9 +250354,9 @@ false canmodifyadditionalsettings - false + true - 59 + 38 1900-01-01T00:00:00 @@ -238395,7 +250367,7 @@ - publisher + pluginassembly @@ -238446,7 +250418,7 @@ false modifiedbyname - 1900-01-01T00:00:00 + 2025-11-06T00:19:24.5900032 false canmodifyrequirementlevelsettings @@ -238474,7 +250446,7 @@ 320 - fb6e4bed-a60b-435f-9439-b6c99dc5d1c8 + e3fd184d-de1e-4ddb-9ec2-622499f2af01 DateTime @@ -238484,48 +250456,62 @@ false canmodifyadditionalsettings - false + true - 30 + 5 1900-01-01T00:00:00 - 7297fb79-e3e1-4660-a189-0842f80ab4ad + 090b19a7-2241-db11-898a-0007e9e17ebd true - Date and time when the publisher was last modified. + Date and time when the plug-in assembly was last modified. 1033 + + 8e158fc6-bea2-4261-861b-9fda20fb3897 + + true + Dato og klokkeslæt for sidste ændring af plug-in-assemblyen. + 1030 + - 7297fb79-e3e1-4660-a189-0842f80ab4ad + 090b19a7-2241-db11-898a-0007e9e17ebd true - Date and time when the publisher was last modified. + Date and time when the plug-in assembly was last modified. 1033 - eeb117f3-2c97-4080-aaee-fc5a5730b8bb + c55c191d-17f5-481d-8013-d642da4e9086 true Modified On 1033 + + 051a59da-295d-4642-b6ea-c8abc5e7a8bd + + true + Ændret + 1030 + - eeb117f3-2c97-4080-aaee-fc5a5730b8bb + c55c191d-17f5-481d-8013-d642da4e9086 true Modified On 1033 - publisher + pluginassembly @@ -238566,11 +250552,11 @@ false canmodifysearchsettings - false + true false - false - false + true + true true false true @@ -238605,7 +250591,7 @@ - 19848b5b-0d83-4b76-9852-7eb4123c3cad + 58c6f25e-8ca6-4c84-815e-7f9ff057b809 Lookup @@ -238615,48 +250601,62 @@ false canmodifyadditionalsettings - false + true - 65 + 26 1900-01-01T00:00:00 - 75dca444-73e7-4088-a305-ffd81c4d9582 + 617f683c-f3a7-4b5e-b2c0-03395a7392fc true - Unique identifier of the delegate user who modified the publisher. + Unique identifier of the delegate user who last modified the pluginassembly. 1033 + + e3de6d71-fdc5-43d1-8b5c-c824c0ba97d4 + + true + Entydigt id for den stedfortræderbruger, der senest ændrede plug-in-assemblyen. + 1030 + - 75dca444-73e7-4088-a305-ffd81c4d9582 + 617f683c-f3a7-4b5e-b2c0-03395a7392fc true - Unique identifier of the delegate user who modified the publisher. + Unique identifier of the delegate user who last modified the pluginassembly. 1033 - ee2b3f09-dfcb-4fd0-9a32-85570f848764 + 0e7b00de-54ce-4d32-80cd-35cb8c8bbf7e true Modified By (Delegate) 1033 + + 0a115881-6426-4a98-bef0-48faee0c0fec + + true + Ændret af (stedfortræder) + 1030 + - ee2b3f09-dfcb-4fd0-9a32-85570f848764 + 0e7b00de-54ce-4d32-80cd-35cb8c8bbf7e true Modified By (Delegate) 1033 - publisher + pluginassembly @@ -238668,7 +250668,7 @@ false iscustomizable - true + false false false @@ -238728,7 +250728,7 @@ - fdffee98-60e1-42a7-ab29-10f55e5b75cc + 70c3c3fb-0fa3-4905-96ab-1e9e70841902 modifiedonbehalfby String @@ -238738,9 +250738,9 @@ false canmodifyadditionalsettings - false + true - 67 + 29 1900-01-01T00:00:00 @@ -238751,7 +250751,7 @@ - publisher + pluginassembly @@ -238802,7 +250802,7 @@ false modifiedonbehalfbyname - 1900-01-01T00:00:00 + 2025-11-06T00:19:25.0729984 false canmodifyrequirementlevelsettings @@ -238830,7 +250830,7 @@ 320 - b734a916-fa80-4381-9455-898e88d3a53b + 5399b26a-1e64-4785-bda8-2d8418a5e3d2 modifiedonbehalfby String @@ -238840,9 +250840,9 @@ false canmodifyadditionalsettings - false + true - 68 + 30 1900-01-01T00:00:00 @@ -238853,7 +250853,7 @@ - publisher + pluginassembly @@ -238904,7 +250904,7 @@ false modifiedonbehalfbyyominame - 1900-01-01T00:00:00 + 2025-11-06T00:19:28.1830016 false canmodifyrequirementlevelsettings @@ -238931,65 +250931,79 @@ 0 320 - - 8533f0ae-9f50-439b-8256-d405acb95cf1 + + 825acca9-5762-432c-a568-d6bd32d88846 - Lookup + String false false false false canmodifyadditionalsettings - false + true - 1 + 7 1900-01-01T00:00:00 - b89a7089-9bdc-4231-aa5b-6925d38d9bb4 + 030b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the organization associated with the publisher. + Name of the plug-in assembly. 1033 + + eced1a60-36dd-4d5f-ac6b-573efe182dc8 + + true + Navn på plug-in-assemblyen. + 1030 + - b89a7089-9bdc-4231-aa5b-6925d38d9bb4 + 030b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the organization associated with the publisher. + Name of the plug-in assembly. 1033 - d54e9400-30f3-4cdf-bc54-724cc416ca5a + b567ca98-408d-459e-b838-66df8cd487ad true - Organization + Name 1033 + + 66f5de87-bb46-43c1-9bc9-14b17f61cd05 + + true + Navn + 1030 + - d54e9400-30f3-4cdf-bc54-724cc416ca5a + b567ca98-408d-459e-b838-66df8cd487ad true - Organization + Name 1033 - publisher + pluginassembly - false + true canmodifyauditsettings - false + true false @@ -239006,15 +251020,15 @@ true false - false + true false isrenameable false false - false - false + true + true false true @@ -239024,61 +251038,89 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - organizationid + name 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - OrganizationId + Name - LookupType + StringType 5.0.0.0 false - + 0 - None - - organization - + Text + Auto + 256 + + + Text + + + false + 0 + 512 - - 5572d37f-f3b7-4477-b39d-9135327ec5f4 + + fc92d152-629f-4fd3-9c35-c4c278a90811 - organizationid - String + + Lookup false false false false canmodifyadditionalsettings - false + true - 62 + 4 1900-01-01T00:00:00 - - + + + 000b19a7-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the organization with which the plug-in assembly is associated. + 1033 + + + 31f4a476-f8dd-4aac-b6d2-647373ef3d3a + + true + Entydigt id for den organisation, der er tilknyttet plug-in-assemblyen. + 1030 + + + + 000b19a7-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the organization with which the plug-in assembly is associated. + 1033 + - publisher + pluginassembly @@ -239126,87 +251168,108 @@ false true false - false + true - organizationidname + organizationid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - OrganizationIdName + OrganizationId - StringType + LookupType 5.0.0.0 - true - 0 + false + - Text - Auto - 100 - - - Text - - - false - 0 - 320 + None + + organization + - - fe27f28a-776f-4234-927c-4bf189a7a5ee + + 2dc61000-105e-4394-8391-5baabaf2e94c - String + DateTime false false false false canmodifyadditionalsettings - false + true - 75 + 39 1900-01-01T00:00:00 - a4577d08-2b98-498a-ac21-7f234c0d5e84 + 2dc61001-105e-4394-8391-5baabaf2e94c true - Default locale of the publisher in Microsoft Pinpoint. + For internal use only. 1033 + + 9bdf26be-379c-4cf7-950d-38398d746829 + + true + Kun til intern brug. + 1030 + - a4577d08-2b98-498a-ac21-7f234c0d5e84 + 2dc61001-105e-4394-8391-5baabaf2e94c true - Default locale of the publisher in Microsoft Pinpoint. + For internal use only. 1033 - - + + + 2dc61002-105e-4394-8391-5baabaf2e94c + + true + Record Overwrite Time + 1033 + + + 49f2eb9f-4793-42d2-b161-b90d5d2ea83a + + true + Klokkeslæt for overskrivning af post + 1030 + + + + 2dc61002-105e-4394-8391-5baabaf2e94c + + true + Record Overwrite Time + 1033 + - publisher + pluginassembly - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -239244,39 +251307,40 @@ false true - pinpointpublisherdefaultlocale + overwritetime 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - PinpointPublisherDefaultLocale + OverwriteTime - StringType + DateTimeType 5.0.0.0 false 0 - Text + DateOnly Inactive - 16 - - - Text - - false 0 - 32 + + false + canmodifybehavior + false + + + UserLocal + - - 2740de49-4f3f-4a49-b53e-326f3045322e + + b3d99d03-6c61-4555-874f-27482c1dfb6c - BigInt + Lookup false false false @@ -239285,49 +251349,63 @@ canmodifyadditionalsettings false - 74 - 1900-01-01T00:00:00 + 10002 + 2025-11-06T01:23:13.7869952 - 600bbc13-ffa5-4c9c-88ee-d25f14bb9559 + 33869d17-ec73-4b32-8692-73ac2b4dc491 true - Identifier of the publisher in Microsoft Pinpoint. + Unique identifier for Plugin Package associated with Plug-in Assembly. 1033 - 600bbc13-ffa5-4c9c-88ee-d25f14bb9559 + 33869d17-ec73-4b32-8692-73ac2b4dc491 true - Identifier of the publisher in Microsoft Pinpoint. + Unique identifier for Plugin Package associated with Plug-in Assembly. 1033 - - + + + bca1c856-ce8e-4d51-92dd-3588cfe6c895 + + true + Package + 1033 + + + + bca1c856-ce8e-4d51-92dd-3588cfe6c895 + + true + Package + 1033 + - publisher + pluginassembly - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false - true + false canmodifyglobalfiltersettings false @@ -239344,124 +251422,98 @@ false false - true + false canmodifyissortablesettings false false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - pinpointpublisherid - 1900-01-01T00:00:00 + packageid + 2025-11-06T01:23:18.6329984 false canmodifyrequirementlevelsettings None - PinpointPublisherId + PackageId - BigIntType + LookupType - 5.0.0.0 + 9.1.0.0 false - 9223372036854775807 - -9223372036854775808 + None + + pluginpackage + - - 69fefa15-de34-48a9-86f5-a357db8adff2 + + e9dd161d-4736-4692-b54f-7b05e0c96897 - - Uniqueidentifier + packageid + String false false false - false + true canmodifyadditionalsettings - false + true - 45 - 1900-01-01T00:00:00 + 10003 + 2025-11-06T01:23:18.68 - - - 9b740bd4-15c1-4209-a14b-22a63ee1087a - - true - Unique identifier of the publisher. - 1033 - - - - 9b740bd4-15c1-4209-a14b-22a63ee1087a - - true - Unique identifier of the publisher. - 1033 - + + - - - 2633ff4c-1dc6-4640-8a8e-c066ec77c80a - - true - Publisher Identifier - 1033 - - - - 2633ff4c-1dc6-4640-8a8e-c066ec77c80a - - true - Publisher Identifier - 1033 - + + - publisher + pluginassembly - false + true canmodifyauditsettings - false + true false - false + true iscustomizable - false + true false - true + false true canmodifyglobalfiltersettings false - true - true + false + false false - false + true isrenameable - false + true false - true + false false false @@ -239470,36 +251522,47 @@ false - false + true canmodifysearchsettings - true + false - true + false false false true false - true + false - publisherid - 1900-01-01T00:00:00 + packageidname + 2025-11-06T01:23:18.68 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - PublisherId + PackageIdName - UniqueidentifierType + StringType - 5.0.0.0 - false - - + 9.1.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 200 - f4f2ae6e-e1c8-4b6b-8147-ba31fe6c7eae + 0a6324f9-819e-4008-9dd3-cba6fd357cd9 String @@ -239509,60 +251572,74 @@ false canmodifyadditionalsettings - false + true - 39 + 54 1900-01-01T00:00:00 - 12c5dfb4-f3c5-4531-bf88-2478166de38f + c94b67a6-6dc2-4fb6-9676-fbd93503ac9e true - URL for the supporting website of this publisher. + User Password 1033 + + d5b50716-ea25-4001-89eb-72a6da44972d + + true + Brugeradgangskode + 1030 + - 12c5dfb4-f3c5-4531-bf88-2478166de38f + c94b67a6-6dc2-4fb6-9676-fbd93503ac9e true - URL for the supporting website of this publisher. + User Password 1033 - 4cbd917e-ef74-49e4-9559-1805312f4029 + 2f018956-9ed1-4bd7-849b-00b2abc2b89e true - Website + User Password 1033 + + f0429849-6c66-49c7-9278-475ef12b96c0 + + true + Brugeradgangskode + 1030 + - 4cbd917e-ef74-49e4-9559-1805312f4029 + 2f018956-9ed1-4bd7-849b-00b2abc2b89e true - Website + User Password 1033 - publisher + pluginassembly - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -239577,10 +251654,10 @@ false isrenameable - false + true false - true + false false false @@ -239589,47 +251666,47 @@ false - false + true canmodifysearchsettings - true + false true true - true - true + false + false true true - supportingwebsiteurl + password 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - SupportingWebsiteUrl + Password StringType - 5.0.0.0 + 9.0.0.0 false 0 - Url - Inactive - 200 + Text + Auto + 256 - Url + Text false 0 - 400 + 512 - 97207f18-8fa6-4056-ba1f-18b3abd6e8d9 + 51450c6b-60ee-444d-b07c-aed2293b9fe6 String @@ -239639,48 +251716,62 @@ false canmodifyadditionalsettings - false + true - 63 + 6 1900-01-01T00:00:00 - 5af01a04-18b0-45f1-8fcf-3b274466ac28 + 100b19a7-2241-db11-898a-0007e9e17ebd true - The unique name of this publisher. + File name of the plug-in assembly. Used when the source type is set to 1. 1033 + + 4ab09460-c9b0-48d1-859a-496cada3ddbc + + true + Filnavn på plug-in-assemblyen. Det bruges, når kildetypen er angivet til 1. + 1030 + - 5af01a04-18b0-45f1-8fcf-3b274466ac28 + 100b19a7-2241-db11-898a-0007e9e17ebd true - The unique name of this publisher. + File name of the plug-in assembly. Used when the source type is set to 1. 1033 - 7e7e0e4e-1e26-4651-8b6e-21625b837b10 + d5c5a11e-9746-4d91-b62c-7c40849f86c3 true - Name + Path 1033 + + e02317ac-f1e0-4b20-8419-3dd758e1a02e + + true + Sti + 1030 + - 7e7e0e4e-1e26-4651-8b6e-21625b837b10 + d5c5a11e-9746-4d91-b62c-7c40849f86c3 true - Name + Path 1033 - publisher + pluginassembly @@ -239692,7 +251783,7 @@ false iscustomizable - true + false false false @@ -239709,9 +251800,9 @@ isrenameable false - true - true - true + false + false + false false true @@ -239727,17 +251818,17 @@ true true true - false + true true - uniquename + path 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - UniqueName + Path StringType @@ -239758,31 +251849,52 @@ 0 512 - - 29805ba5-41a8-11dd-9bde-0019b9312238 + + cb590590-ea44-44b4-9320-2a594222e4fd - BigInt + Uniqueidentifier false false false false canmodifyadditionalsettings - false + true - 25 + 14 1900-01-01T00:00:00 - - + + + 050b19a7-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the plug-in assembly. + 1033 + + + a8354fe5-570b-4abf-9799-45fc9fa7d889 + + true + Entydigt id for plug-in-assemblyen. + 1030 + + + + 050b19a7-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the plug-in assembly. + 1033 + - publisher + pluginassembly @@ -239797,14 +251909,14 @@ false false - false + true true canmodifyglobalfiltersettings false true - false + true false false @@ -239825,1085 +251937,32 @@ canmodifysearchsettings false - false + true false false true false true - versionnumber + pluginassemblyid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - VersionNumber + PluginAssemblyId - BigIntType + UniqueidentifierType 5.0.0.0 false - 9223372036854775807 - -9223372036854775808 - - false - false - false - - false - canbeincustomentityassociation - false - - - false - canbeinmanytomany - false - - - false - canbeprimaryentityinrelationship - false - - - false - canberelatedentityinrelationship - false - - true - - true - canchangetrackingbeenabled - true - - - false - cancreateattributes - false - - - false - cancreatecharts - false - - - false - cancreateforms - false - - - false - cancreateviews - false - - - false - canenablesynctoexternalsearchindex - false - - - true - canmodifyadditionalsettings - true - - false - true - Local - 1900-01-01T00:00:00 - - - false - - - - 11444fd6-499a-41bf-b3fb-03d91997852e - - true - A publisher of a CRM solution. - 1033 - - - - 11444fd6-499a-41bf-b3fb-03d91997852e - - true - A publisher of a CRM solution. - 1033 - - - - - - afcdd355-d1a9-4c2e-a5c3-5fef54ac45fa - - true - Publishers - 1033 - - - - afcdd355-d1a9-4c2e-a5c3-5fef54ac45fa - - true - Publishers - 1033 - - - - - - 950e7a55-e8d0-41d2-8426-4c89e19d90d9 - - true - Publisher - 1033 - - - - 950e7a55-e8d0-41d2-8426-4c89e19d90d9 - - true - Publisher - 1033 - - - false - - false - true - false - false - - - - - false - false - false - false - - true - canmodifyauditsettings - false - - true - false - false - - false - canmodifyconnectionsettings - false - - false - - false - iscustomizable - true - - false - false - - false - canmodifyduplicatedetectionsettings - true - - false - false - false - false - false - false - false - - false - canmodifymailmergesettings - false - - true - - false - ismappable - false - - false - false - - false - canmodifymobileclientreadonly - false - - true - - false - isrenameable - false - - false - false - false - false - false - true - - false - canmodifyqueuesettings - false - - - false - canmodifymobilevisibility - false - - - false - canmodifymobileclientvisibility - false - - publisher - - - - b19e0e02-7e9e-11dd-94cd-00188b01dce6 - - false - - false - iscustomizable - false - - true - true - lk_publisher_createdby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_publisher_createdby - createdby - publisher - createdby - - 0 - - - a5aee05f-197a-40cf-b7df-55144aef1cc1 - - false - - false - iscustomizable - false - - true - false - organization_publisher - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_publisher - organizationid - publisher - organizationid - - 0 - - - 357be860-2ad9-446e-bdc1-376254fb7865 - - false - - false - iscustomizable - false - - true - true - lk_publisherbase_modifiedonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_publisherbase_modifiedonbehalfby - modifiedonbehalfby - publisher - modifiedonbehalfby - - 0 - - - b80c1264-7e9f-11dd-94cd-00188b01dce6 - - false - - false - iscustomizable - false - - true - true - lk_publisher_modifiedby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_publisher_modifiedby - modifiedby - publisher - modifiedby - - 0 - - - fb8f3e8b-dd34-40b9-8248-dc66c540c476 - - false - - false - iscustomizable - false - - true - true - lk_publisherbase_createdonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_publisherbase_createdonbehalfby - createdonbehalfby - publisher - createdonbehalfby - - 0 - - - f11b0d9d-9353-42aa-89d2-59b63a25e680 - - false - - false - iscustomizable - false - - true - false - lk_publisher_entityimage - None - 6.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - imagedescriptorid - imagedescriptor - lk_publisher_entityimage - entityimageid - publisher - entityimageid_imagedescriptor - - 0 - - - 2025-12-23T18:07:31.1869952 - 7101 - - - c7019102-b723-43c7-8d31-69dd1738d442 - - false - - false - iscustomizable - false - - true - false - Publisher_DuplicateBaseRecord - None - 7.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - publisherid - publisher - Publisher_DuplicateBaseRecord - baserecordid - duplicaterecord - baserecordid_publisher - - 0 - - - 82a5db1c-d373-43ee-a969-0c620bd21e3a - - false - - false - iscustomizable - true - - true - true - Publisher_SyncErrors - Append - 8.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - Cascade - Cascade - Cascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - publisherid - publisher - Publisher_SyncErrors - regardingobjectid - syncerror - regardingobjectid_publisher_syncerror - - 1 - - - 38d0d634-23a1-4ec3-8ede-7fe2d5bf97b1 - - false - - false - iscustomizable - false - - true - true - publisher_solution - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - Cascade - Restrict - NoCascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - publisherid - publisher - publisher_solution - publisherid - solution - publisherid - - 0 - - - d4b1a848-2323-484d-ae44-b5c40149e871 - - false - - false - iscustomizable - false - - true - true - Publisher_PublisherAddress - Append - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - publisherid - publisher - Publisher_PublisherAddress - parentid - publisheraddress - parentid - - 1 - - - 9e0e0477-cd70-41b0-8e27-4843bbfeeb88 - - false - - false - iscustomizable - false - - true - false - userentityinstancedata_publisher - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - publisherid - publisher - userentityinstancedata_publisher - objectid - userentityinstancedata - objectid_publisher - - 0 - - - 0ac8e58c-8e1e-4ca2-9d17-037eefcf4e2e - - false - - false - iscustomizable - false - - true - false - Publisher_DuplicateMatchingRecord - None - 7.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - publisherid - publisher - Publisher_DuplicateMatchingRecord - duplicaterecordid - duplicaterecord - duplicaterecordid_publisher - - 0 - - - b03ffacf-2f2e-46b2-ac50-9e8e569f43c9 - - false - - false - iscustomizable - false - - true - true - publisher_appmodule - None - 8.2.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - Cascade - Restrict - NoCascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - publisherid - publisher - publisher_appmodule - publisherid - appmodule - publisher_appmodule_appmodule - - 0 - - - - 8 - OrganizationOwned - - publisherid - - publisherid - - friendlyname - - - false - false - false - true - false - false - false - prvCreatePublisher - b4611d30-e2d5-4886-9929-48fde38dc4ee - Create - - - false - false - false - true - false - false - false - prvReadPublisher - 8cdebade-6187-440d-b041-5b3f3d84db53 - Read - - - false - false - false - true - false - false - false - prvWritePublisher - 835da693-9268-4c1c-95e0-b2f4b802f142 - Write - - - false - false - false - true - false - false - false - prvDeletePublisher - 82c9358d-3e88-43d0-802a-730212b9b372 - Delete - - - false - false - false - true - false - false - false - prvAppendPublisher - fc283683-5d20-4e4e-aa35-a79b876279dc - Append - - - false - false - false - true - false - false - false - prvAppendToPublisher - b37f6920-e7b4-44d1-af9f-a6166b6a59b9 - AppendTo - - - - FilteredPublisher - Publisher - - - false - Standard - false - 5.0.0.0 - entityimage - - false - canchangehierarchicalrelationship - false - - - false - Publishers - - - true - - publishers - 0 - publishers - false - - true - canmodifymobileclientoffline - false - - false - false - - false - false - - - - role - - 42dd5681-6a4a-47f2-8169-5efede47689e - - 0 - - 319c5ef2-76e9-44a0-b662-3cace0e8b349 + 5328d03c-5a09-4076-8887-a33d0f44eca8 Uniqueidentifier @@ -240913,52 +251972,45 @@ false canmodifyadditionalsettings - false + true - 10002 - 2025-11-06T02:05:45.1869952 + 17 + 1900-01-01T00:00:00 - 109ae858-1774-4db5-8dd0-76597b250f8b + 040b19a7-2241-db11-898a-0007e9e17ebd true - Application Id of user who created the role + Unique identifier of the plug-in assembly. 1033 - - - 109ae858-1774-4db5-8dd0-76597b250f8b - - true - Application Id of user who created the role - 1033 - - - - - 08449387-59cb-40dc-ac9a-1950d51526b4 + aeb9d934-19d1-443c-b0f4-44cb34d83571 true - Application Id - 1033 + Entydigt id for plug-in-assemblyen. + 1030 - 08449387-59cb-40dc-ac9a-1950d51526b4 + 040b19a7-2241-db11-898a-0007e9e17ebd true - Application Id + Unique identifier of the plug-in assembly. 1033 + + + + - role + pluginassembly - true + false canmodifyauditsettings false @@ -240971,7 +252023,7 @@ false false - false + true canmodifyglobalfiltersettings false @@ -240988,41 +252040,41 @@ false false - false + true canmodifyissortablesettings false false canmodifysearchsettings - true + false - true - true - true + false + false + false true false true - applicationid - 2025-11-06T02:05:45.1869952 + pluginassemblyidunique + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ApplicationId + PluginAssemblyIdUnique UniqueidentifierType - 9.2.0.0 + 5.0.0.0 false - d615fc47-e71f-4b79-90d0-30114c3a6b67 + b5e06e23-eb4e-4a73-8d03-b1366a92796b String @@ -241034,46 +252086,60 @@ canmodifyadditionalsettings true - 10007 - 2025-11-06T02:05:45.2829952 + 18 + 1900-01-01T00:00:00 - 69118f5c-faf4-43d5-92c1-2f81548312f1 + d67df4b2-9c85-4d30-b3b3-922b39aab3d8 true - Personas/Licenses the security role applies to + Public key token of the assembly. This value can be obtained from the assembly by using reflection. 1033 + + 9e1c9e8f-9a2c-430e-980f-a0938fc5cdcd + + true + Assemblyens token for offentlig nøgle. Denne værdi kan hentes fra assemblyen vha. refleksion. + 1030 + - 69118f5c-faf4-43d5-92c1-2f81548312f1 + d67df4b2-9c85-4d30-b3b3-922b39aab3d8 true - Personas/Licenses the security role applies to + Public key token of the assembly. This value can be obtained from the assembly by using reflection. 1033 - 74fd9570-4856-4be4-8f6f-b171160d60be + bf047c76-68c9-412c-a072-06b44113ce51 true - Applies To + Public Key Token 1033 + + 36b4bbf9-f5bc-4137-94bf-66245e8a69d9 + + true + Offentlig nøgletoken + 1030 + - 74fd9570-4856-4be4-8f6f-b171160d60be + bf047c76-68c9-412c-a072-06b44113ce51 true - Applies To + Public Key Token 1033 - role + pluginassembly @@ -241103,7 +252169,7 @@ false false - false + true false false @@ -241112,193 +252178,112 @@ false - true + false canmodifysearchsettings - true + false true - true - true + false + false true true true - appliesto - 2025-11-06T02:05:45.2829952 + publickeytoken + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - ApplicationRequired + SystemRequired - AppliesTo + PublicKeyToken StringType - 9.2.0.0 + 5.0.0.0 false 0 Text Auto - 2000 + 32 Text - + false 0 - 2000 + 64 - - b74d8904-9f42-43be-ac7d-831b46c2d541 + + a0799000-6113-44f4-94cc-c082e68b230d - Lookup + Uniqueidentifier false false false false canmodifyadditionalsettings - false + true - 6 + 40 1900-01-01T00:00:00 - 8edfeed0-2241-db11-898a-0007e9e17ebd + a0799001-6113-44f4-94cc-c082e68b230d true - Unique identifier of the business unit with which the role is associated. + Unique identifier of the associated solution. 1033 + + 4ea9801f-a38f-40bf-b1e2-020d42caf3ca + + true + Entydigt id for den tilknyttede løsning. + 1030 + - 8edfeed0-2241-db11-898a-0007e9e17ebd + a0799001-6113-44f4-94cc-c082e68b230d true - Unique identifier of the business unit with which the role is associated. + Unique identifier of the associated solution. 1033 - 8ddfeed0-2241-db11-898a-0007e9e17ebd + a0799002-6113-44f4-94cc-c082e68b230d true - Business Unit + Solution 1033 + + 3f46c989-21c3-44c4-933c-714cd33c05e9 + + true + Løsning + 1030 + - 8ddfeed0-2241-db11-898a-0007e9e17ebd + a0799002-6113-44f4-94cc-c082e68b230d true - Business Unit + Solution 1033 - role - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - true - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - false - true - true - false - true - - businessunitid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - BusinessUnitId - - - LookupType - - 5.0.0.0 - false - - - None - - businessunit - - - - ebc50947-1d73-45ec-8552-92a540091350 - - businessunitid - String - false - false - false - - false - canmodifyadditionalsettings - false - - 21 - 1900-01-01T00:00:00 - - - - - - - - - - role + pluginassembly @@ -241346,95 +252331,77 @@ false true false - false + true - businessunitidname + solutionid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - BusinessUnitIdName + SolutionId - StringType + UniqueidentifierType 5.0.0.0 - true - 0 + false + - Text - Auto - 100 - - - Text - - - false - 0 - 320 - - 84419138-21d3-4275-83c9-f5e4d63267e5 + + 5de4a4ec-7d37-4bd4-b9cc-e6b6efce73ee - ManagedProperty + String false false false false canmodifyadditionalsettings - false + true - 53 + 1 1900-01-01T00:00:00 - b3e365b4-8363-49f9-b85f-8d6362cd8d68 + 1f83e03b-d853-4296-8c51-44a6687c5295 true - Tells whether the role can be deleted. + Hash of the source of the assembly. 1033 - - - b3e365b4-8363-49f9-b85f-8d6362cd8d68 - - true - Tells whether the role can be deleted. - 1033 - - - - - b76ff62c-3e0e-4f6d-aac9-b401a99e5591 + 55ddf372-5d58-4877-b7ce-efa03b939624 true - Can Be Deleted - 1033 + Hash for assemblykilden. + 1030 - b76ff62c-3e0e-4f6d-aac9-b401a99e5591 + 1f83e03b-d853-4296-8c51-44a6687c5295 true - Can Be Deleted + Hash of the source of the assembly. 1033 + + + + - role + pluginassembly - false + true canmodifyauditsettings - false + true false @@ -241478,29 +252445,36 @@ true true - canbedeleted + sourcehash 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - CanBeDeleted + SourceHash - ManagedPropertyType + StringType - 9.0.0.0 + 5.0.0.0 false - + 0 - canbedeleted - - 0 - Boolean + Text + Auto + 256 + + + Text + + + false + 0 + 512 - 38a56437-c7e0-45c1-9a9f-8b6862a4eb1c + f64825cb-7786-4d20-b921-37bf7c0c64f2 Picklist @@ -241510,60 +252484,74 @@ false canmodifyadditionalsettings - false + true - 34 + 16 1900-01-01T00:00:00 - c6274e0d-e2ac-4a88-83dc-f740900e6f11 + 0b0b19a7-2241-db11-898a-0007e9e17ebd true - For internal use only. + Location of the assembly, for example 0=database, 1=on-disk. 1033 + + 8e56ed67-7c60-4738-8b06-23a7995a4fff + + true + Placering af assemblyen, f.eks. 0=database, 1=på disk. + 1030 + - c6274e0d-e2ac-4a88-83dc-f740900e6f11 + 0b0b19a7-2241-db11-898a-0007e9e17ebd true - For internal use only. + Location of the assembly, for example 0=database, 1=on-disk. 1033 - 68fb685f-e270-4a0f-a077-91b936c170e6 + 0a0b19a7-2241-db11-898a-0007e9e17ebd true - Component State + Source Type 1033 + + 523ba315-e3f6-42ed-bdbc-d40cd7714d6e + + true + Kildetype + 1030 + - 68fb685f-e270-4a0f-a077-91b936c170e6 + 0a0b19a7-2241-db11-898a-0007e9e17ebd true - Component State + Source Type 1033 - role + pluginassembly - false + true canmodifyauditsettings - false + true false false iscustomizable - true + false false false @@ -241592,23 +252580,23 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - componentstate - 1900-01-01T00:00:00 + sourcetype + 2025-11-06T01:23:13.8329984 false canmodifyrequirementlevelsettings SystemRequired - ComponentState + SourceType PicklistType @@ -241617,43 +252605,57 @@ false 0 - -1 + 0 - faece09f-cefc-11de-8150-00155da18b00 + 11a73f5d-f023-4633-aae1-805b9130ee05 - faece0a1-cefc-11de-8150-00155da18b00 + 155d036e-cab1-49a5-b87d-52863fd962a6 true - The state of this component. + Location of the assembly, for example 0=database, 1=on-disk, 2=Normal, 3=AzureWebApp. 1033 + + 3ecc70b1-f018-4c79-874d-dcf5180bd2a5 + + true + Placering af assemblyen, f.eks. 0=database, 1=på disk, 2=Normal, 3=AzureWebApp. + 1030 + - faece0a1-cefc-11de-8150-00155da18b00 + 155d036e-cab1-49a5-b87d-52863fd962a6 true - The state of this component. + Location of the assembly, for example 0=database, 1=on-disk, 2=Normal, 3=AzureWebApp. 1033 - faece0a0-cefc-11de-8150-00155da18b00 + ae91b028-eaa2-47df-a20e-6d7525acc521 true - Component State + Source Type 1033 + + 4e72bf64-8721-4670-bac2-10c7950689d1 + + true + Kildetype + 1030 + - faece0a0-cefc-11de-8150-00155da18b00 + ae91b028-eaa2-47df-a20e-6d7525acc521 true - Component State + Source Type 1033 @@ -241664,9 +252666,9 @@ iscustomizable false - true + false true - componentstate + pluginassembly_sourcetype Picklist 5.0.0.0 @@ -241684,18 +252686,25 @@ - faece0a3-cefc-11de-8150-00155da18b00 + 0d0b19a7-2241-db11-898a-0007e9e17ebd true - Published + Database 1033 + + 4c827c48-9c70-4cd0-8d52-d553cc8fdfdc + + true + Database + 1030 + - faece0a3-cefc-11de-8150-00155da18b00 + 0d0b19a7-2241-db11-898a-0007e9e17ebd true - Published + Database 1033 @@ -241717,18 +252726,25 @@ - faece0a5-cefc-11de-8150-00155da18b00 + 0f0b19a7-2241-db11-898a-0007e9e17ebd true - Unpublished + Disk 1033 + + 5cb78475-b69c-4fc3-b871-59cb34efb3ed + + true + Disk + 1030 + - faece0a5-cefc-11de-8150-00155da18b00 + 0f0b19a7-2241-db11-898a-0007e9e17ebd true - Unpublished + Disk 1033 @@ -241750,18 +252766,25 @@ - faece0a7-cefc-11de-8150-00155da18b00 + 060628d6-8c23-4612-8105-d8265daca57c true - Deleted + Normal 1033 + + 185612c9-1314-44aa-a897-d76a4f1f11c7 + + true + Normal + 1030 + - faece0a7-cefc-11de-8150-00155da18b00 + 060628d6-8c23-4612-8105-d8265daca57c true - Deleted + Normal 1033 @@ -241783,18 +252806,25 @@ - 1f83e0bb-cefd-11de-8150-00155da18b00 + 25d3e642-8423-4ce0-85dc-78200a0ec66b true - Deleted Unpublished + AzureWebApp 1033 + + 3d26f954-2d2f-4700-947c-713a7dac55c0 + + true + AzureWebApp + 1030 + - 1f83e0bb-cefd-11de-8150-00155da18b00 + 25d3e642-8423-4ce0-85dc-78200a0ec66b true - Deleted Unpublished + AzureWebApp 1033 @@ -241802,6 +252832,39 @@ 3 + + + + + + + + + + false + true + + + + 3f1aa008-5d3f-4b0b-9af4-0d27146786bc + + true + File Store + 1033 + + + + 3f1aa008-5d3f-4b0b-9af4-0d27146786bc + + true + File Store + 1033 + + + + 4 + + @@ -241811,59 +252874,31 @@ - - 37da6c5c-bb4b-4775-a26c-cfcea7a8ab1c + + 38efd578-4db6-4f57-bbaf-b8e552d5672a - - Lookup + sourcetype + Virtual false false false false canmodifyadditionalsettings - false + true - 11 + 41 1900-01-01T00:00:00 - - - 511c9b1e-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who created the role. - 1033 - - - - 511c9b1e-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who created the role. - 1033 - + + - - - 501c9b1e-2341-db11-898a-0007e9e17ebd - - true - Created By - 1033 - - - - 501c9b1e-2341-db11-898a-0007e9e17ebd - - true - Created By - 1033 - + + - role + pluginassembly @@ -241904,61 +252939,99 @@ false canmodifysearchsettings - true + false false false - true + false true false - true + false - createdby + sourcetypename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedBy + SourceTypeName - LookupType + VirtualType 5.0.0.0 - false + true - None - - systemuser - - - d82bac2a-180c-4815-bd5f-a95820efc2fc + + 6c3e8000-6c06-4ef8-9367-e749edb7a67f - createdby - String + + Uniqueidentifier false false false false canmodifyadditionalsettings - false + true - 17 + 42 1900-01-01T00:00:00 - - + + + 6c3e8001-6c06-4ef8-9367-e749edb7a67f + + true + For internal use only. + 1033 + + + a4201877-e2bf-4703-abb4-6ee33850cc57 + + true + Kun til intern brug. + 1030 + + + + 6c3e8001-6c06-4ef8-9367-e749edb7a67f + + true + For internal use only. + 1033 + - - + + + 6c3e8002-6c06-4ef8-9367-e749edb7a67f + + true + Solution + 1033 + + + a561b4e7-78f6-4914-978a-5e923c9ce340 + + true + Løsning + 1030 + + + + 6c3e8002-6c06-4ef8-9367-e749edb7a67f + + true + Solution + 1033 + - role + pluginassembly @@ -241999,47 +253072,36 @@ false canmodifysearchsettings - false + true false false - false - true + true + false false false - createdbyname - 2025-11-06T00:19:23.7129984 + supportingsolutionid + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedByName + SupportingSolutionId - StringType + UniqueidentifierType 5.0.0.0 - true - 0 + false + - Text - Auto - 100 - - - Text - - - false - 0 - 320 - 6c79ff52-4544-47e1-bfd2-7163ba8c63a6 + aef4e471-6c2c-461f-ad36-a9c5cdc5f70e - createdby + String false false @@ -242047,26 +253109,68 @@ false canmodifyadditionalsettings - false + true - 30 + 56 1900-01-01T00:00:00 - - + + + af06ca12-d40d-4ccc-8162-2b3ed773982c + + true + Web Url + 1033 + + + 5ef0d658-eee4-41cf-8d29-9cd8ea89a9bc + + true + URL-adresse + 1030 + + + + af06ca12-d40d-4ccc-8162-2b3ed773982c + + true + Web Url + 1033 + - - + + + f15628e7-6115-4dd5-8f0a-4c5c4c58d613 + + true + Web Url + 1033 + + + 065024b1-7481-4cb8-b2ae-50bcf7ffddda + + true + URL-adresse + 1030 + + + + f15628e7-6115-4dd5-8f0a-4c5c4c58d613 + + true + Web Url + 1033 + - role + pluginassembly - false + true canmodifyauditsettings - false + true false @@ -242101,102 +253205,116 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - createdbyyominame - 2025-11-06T00:19:26.9799936 + url + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedByYomiName + Url StringType - 5.0.0.0 - true + 9.0.0.0 + false 0 Text Auto - 100 - createdbyname + 2000 + Text false 0 - 320 + 4000 - - 1395af94-8650-43d6-a5ea-d8001e5290da + + 1b34239e-e3c6-43f2-b27b-724cc5a05179 - DateTime + String false false false false canmodifyadditionalsettings - false + true - 7 + 53 1900-01-01T00:00:00 - 5a41b506-2341-db11-898a-0007e9e17ebd + c12c50bb-50ba-4d1f-8ad5-69dab299b161 true - Date and time when the role was created. + User Name 1033 + + e58b4bb0-5092-48a1-bdcc-f8341faca277 + + true + Brugernavn + 1030 + - 5a41b506-2341-db11-898a-0007e9e17ebd + c12c50bb-50ba-4d1f-8ad5-69dab299b161 true - Date and time when the role was created. + User Name 1033 - 5941b506-2341-db11-898a-0007e9e17ebd + e2cbe0aa-1c18-45bb-8a15-70dcf8096756 true - Created On + User Name 1033 + + 22ba31fe-5409-474b-bae8-68877aa1f3a9 + + true + Brugernavn + 1030 + - 5941b506-2341-db11-898a-0007e9e17ebd + e2cbe0aa-1c18-45bb-8a15-70dcf8096756 true - Created On + User Name 1033 - role + pluginassembly - false + true canmodifyauditsettings - false + true false @@ -242205,7 +253323,7 @@ false false - true + false true canmodifyglobalfiltersettings @@ -242220,7 +253338,7 @@ false false - true + false false false @@ -242233,107 +253351,120 @@ canmodifysearchsettings true - false - false + true + true true true - false + true true - createdon + username 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOn + UserName - DateTimeType + StringType - 5.0.0.0 + 9.0.0.0 false 0 - DateAndTime - Inactive + Text + Auto + 256 + + + Text + + false 0 - - false - canmodifybehavior - false - - - UserLocal - + 512 - - 5d14b29a-9b57-4d53-b4f9-d055d6bf6bd7 + + 4561ba32-69e4-4d4b-9bec-0c17aa9f7d87 - Lookup + String false false false false canmodifyadditionalsettings - false + true - 48 + 10 1900-01-01T00:00:00 - 6c30be5e-7c78-4848-9715-b53b6ed22da0 + 712a5b79-1f5a-4ca1-bdfe-a51847fc3753 true - Unique identifier of the delegate user who created the role. + Version number of the assembly. The value can be obtained from the assembly through reflection. 1033 + + b9a91579-19c6-43bd-a9ab-20fa6d596287 + + true + Assemblyens versionsnummer. Værdien kan hentes fra assemblyen vha. refleksion. + 1030 + - 6c30be5e-7c78-4848-9715-b53b6ed22da0 + 712a5b79-1f5a-4ca1-bdfe-a51847fc3753 true - Unique identifier of the delegate user who created the role. + Version number of the assembly. The value can be obtained from the assembly through reflection. 1033 - 97bef239-7484-49d9-b67d-bad0fa49cfe5 + b0a7ece4-b924-4fa3-999f-d837aa1b95f6 true - Created By Impersonator + Version 1033 + + 329feb7a-dd02-406e-9c92-bc0d03c8c23c + + true + Version + 1030 + - 97bef239-7484-49d9-b67d-bad0fa49cfe5 + b0a7ece4-b924-4fa3-999f-d837aa1b95f6 true - Created By Impersonator + Version 1033 - role + pluginassembly - false + true canmodifyauditsettings - false + true false false iscustomizable - true + false false false @@ -242351,7 +253482,7 @@ false false - false + true false false @@ -242364,48 +253495,55 @@ canmodifysearchsettings true - false - false + true + true true true - false + true true - createdonbehalfby + version 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - CreatedOnBehalfBy + Version - LookupType + StringType 5.0.0.0 false - + 0 - None - - systemuser - + VersionNumber + Auto + 48 + + + VersionNumber + + + false + 0 + 96 - - 0f9015cc-2feb-4eab-aae6-f80850a3158e + + 211e35fe-b353-4e41-8370-d866761d8385 - createdonbehalfby - String + + BigInt false false false false canmodifyadditionalsettings - false + true - 42 + 11 1900-01-01T00:00:00 @@ -242416,7 +253554,7 @@ - role + pluginassembly @@ -242446,7 +253584,7 @@ false false - false + true false false @@ -242464,321 +253602,926 @@ false true false - false + true - createdonbehalfbyname - 2025-11-06T00:19:24.2130048 + versionnumber + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOnBehalfByName + VersionNumber - StringType + BigIntType 5.0.0.0 - true - 0 + false + - Text - Auto - 100 - - - Text - - - false - 0 - 320 + 9223372036854775807 + -9223372036854775808 - - c20f4ca7-3a86-4c1d-a2ab-8d61695b7790 - - createdonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - false - - 43 - 1900-01-01T00:00:00 - - - - - - - - - - role - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - + + false + false + false + + false + canbeincustomentityassociation + false + + + false + canbeinmanytomany + false + + + false + canbeprimaryentityinrelationship + false + + + false + canberelatedentityinrelationship + true + + true + + false + canchangetrackingbeenabled + false + + + false + cancreateattributes + false + + + false + cancreatecharts + false + + + false + cancreateforms + false + + + false + cancreateviews + false + + + false + canenablesynctoexternalsearchindex + false + + + true + canmodifyadditionalsettings + false + + false + false + Local + 1900-01-01T00:00:00 + + + false + + + + fc0a19a7-2241-db11-898a-0007e9e17ebd + + true + Assembly that contains one or more plug-in types. + 1033 + + + 7a60a3cf-593a-4df8-8f93-57b55e766fe9 + + true + Assembly, der indeholder én eller flere plug-in-typer. + 1030 + + + + fc0a19a7-2241-db11-898a-0007e9e17ebd + + true + Assembly that contains one or more plug-in types. + 1033 + + + + + + fe0a19a7-2241-db11-898a-0007e9e17ebd + + true + Plug-in Assemblies + 1033 + + + 4eafc108-b505-49d7-8e7a-f93c8c2c2253 + + true + Plug-in-assemblies + 1030 + + + + fe0a19a7-2241-db11-898a-0007e9e17ebd + + true + Plug-in Assemblies + 1033 + + + + + + fd0a19a7-2241-db11-898a-0007e9e17ebd + + true + Plug-in Assembly + 1033 + + + bccc603b-1a4b-4812-baea-8374ba662e4a + + true + Plug-in-assembly + 1030 + + + + fd0a19a7-2241-db11-898a-0007e9e17ebd + + true + Plug-in Assembly + 1033 + + + false + + false + false + false + false + + + + + false + false + false + false + + false + canmodifyauditsettings + false + + true + false + false + + false + canmodifyconnectionsettings + false + + false + + false + iscustomizable + false + + false + false + + false + canmodifyduplicatedetectionsettings + false + + false + false + false + false + false + false + false + + false + canmodifymailmergesettings + false + + true + + false + ismappable + false + + false + false + + false + canmodifymobileclientreadonly + false + + true + + false + isrenameable + false + + false + false + false + true + false + true + + false + canmodifyqueuesettings + false + + + false + canmodifymobilevisibility + false + + + false + canmodifymobileclientvisibility + false + + pluginassembly + + + + d5e03606-22ea-4abc-8af0-8266df8e0c44 + + false + false - isrenameable + iscustomizable false - - false - false - false - false - - true - canmodifyissortablesettings + + true + false + lk_pluginassembly_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_pluginassembly_createdonbehalfby + createdonbehalfby + pluginassembly + createdonbehalfby + + 0 + + + 08f72813-bfb2-4bc2-be1e-2773e3ab8ef1 + + false + + false + iscustomizable false - - + + true + false + organization_pluginassembly + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_pluginassembly + organizationid + pluginassembly + organizationid + + 0 + + + 3cbf8728-afba-f011-bbd3-7c1e52365f30 + + false + false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - createdonbehalfbyyominame - 2025-11-06T00:19:27.1069952 - - false - canmodifyrequirementlevelsettings - None - - CreatedOnBehalfByYomiName - - - StringType - + + true + true + pluginpackage_pluginassembly + None + 9.1.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + pluginpackageid + pluginpackage + pluginpackage_pluginassembly + packageid + pluginassembly + PackageId + + 0 + + + 88d5a028-9cab-4d15-b952-5e945c540307 + + false + + false + iscustomizable + false + + true + false + lk_pluginassembly_modifiedonbehalfby + None 5.0.0.0 - true - 0 - - Text - Auto - 100 - createdonbehalfbyname - - Text - - - false - 0 - 320 - - - 7f53f5cd-566e-45a5-96c5-e6599c842550 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_pluginassembly_modifiedonbehalfby + modifiedonbehalfby + pluginassembly + modifiedonbehalfby + + 0 + + + fc98f066-4335-4b6a-962b-b628592d2fa0 - - String - false - false - false - + false + false - canmodifyadditionalsettings - true - - 10005 - 2025-11-06T02:05:45.2499968 - - - - - 497fa38a-0ee3-48f5-89ba-b32ebfd25796 - - true - Description of the security role - 1033 - - - - 497fa38a-0ee3-48f5-89ba-b32ebfd25796 - - true - Description of the security role - 1033 - - - - - - 19c812d0-1687-4a50-b995-c31f5e7288e3 - - true - Description - 1033 - - - - 19c812d0-1687-4a50-b995-c31f5e7288e3 - - true - Description - 1033 - - - role - - - - true - canmodifyauditsettings - true - - false + iscustomizable + false + + true + false + modifiedby_pluginassembly + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + modifiedby_pluginassembly + modifiedby + pluginassembly + modifiedby + + 0 + + + 76d09c6d-adba-f011-bbd3-7c1e52365f30 + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings + true + true + managedidentity_PluginAssembly + None + 9.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + managedidentityid + managedidentity + managedidentity_PluginAssembly + managedidentityid + pluginassembly + managedidentityid + + 0 + + + 43c554ea-ab90-43ac-8ab6-0c0adab04ac4 + + false + + false + iscustomizable false - + true - false - false - + false + createdby_pluginassembly + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + createdby_pluginassembly + createdby + pluginassembly + createdby + + 0 + + + 2025-11-06T01:23:14.2230016 + 4605 + + + b11e2721-aad4-4a25-9a44-74996c481769 + + false + false - isrenameable + iscustomizable false - - false - false - false - false - - true - canmodifyissortablesettings + + true + false + userentityinstancedata_pluginassembly + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + pluginassemblyid + pluginassembly + userentityinstancedata_pluginassembly + objectid + userentityinstancedata + objectid_pluginassembly + + 0 + + + 37d96b99-7b8e-452e-986c-2517136cfc1c + + false + + false + iscustomizable false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - description - 2025-11-06T02:05:45.2499968 - - true - canmodifyrequirementlevelsettings - ApplicationRequired - - Description - - - StringType - - 9.2.0.0 - false - 0 - - Text - Auto - 2000 - - - Text - - - false - 0 - 2000 - - - d7a21f96-c1e2-4692-a2b3-659222103ff7 + + true + true + pluginassembly_plugintype + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + pluginassemblyid + pluginassembly + pluginassembly_plugintype + pluginassemblyid + plugintype + pluginassemblyid + + 0 + + + + 8 + OrganizationOwned + + pluginassemblyid + + pluginassemblyid + + name + + + false + false + false + true + false + false + false + prvCreatePluginAssembly + c81a03bb-4bfc-45a6-9184-e899ce26811a + Create + + + false + false + false + true + false + false + false + prvReadPluginAssembly + f5b50296-a212-488a-be92-cbcca8971717 + Read + + + false + false + false + true + false + false + false + prvWritePluginAssembly + 37009c66-2e53-49f0-b857-62252eaa6412 + Write + + + false + false + false + true + false + false + false + prvDeletePluginAssembly + 3fa24eff-e413-4224-8cf2-bd29193f8adf + Delete + + + + FilteredPluginAssembly + PluginAssembly + + + false + Standard + false + 5.0.0.0 + + + false + canchangehierarchicalrelationship + false + + + false + PluginAssemblies + + + true + + pluginassemblies + 0 + pluginassemblies + false + + true + canmodifymobileclientoffline + false + + false + false + + false + false + + + + plugintype + + 19c3d508-f870-43a6-8703-aa35812a4c96 + + 0 + + + 96a3d21c-feca-458f-b8fc-35cb815ba375 - Integer + String false false false false canmodifyadditionalsettings - false + true - 28 + 3 1900-01-01T00:00:00 - d382618a-af1e-4bc6-9650-9fe4f88e06f8 + 01e0eed0-2241-db11-898a-0007e9e17ebd true - Unique identifier of the data import or data migration that created this record. + Full path name of the plug-in assembly. 1033 + + 6dadf2cb-9f62-4543-82bd-f91897bc0151 + + true + Det fulde stinavn til plug-in-assemblyen. + 1030 + - d382618a-af1e-4bc6-9650-9fe4f88e06f8 + 01e0eed0-2241-db11-898a-0007e9e17ebd true - Unique identifier of the data import or data migration that created this record. + Full path name of the plug-in assembly. 1033 - f720c0be-f38a-44bf-9da5-04550bb71c14 + 30b27e67-9dc8-4f1e-81d2-13d09f738197 true - Import Sequence Number + Assembly Name 1033 + + b03badc4-880c-4294-af2b-0ded92b50017 + + true + Navn på assembly + 1030 + - f720c0be-f38a-44bf-9da5-04550bb71c14 + 30b27e67-9dc8-4f1e-81d2-13d09f738197 true - Import Sequence Number + Assembly Name 1033 - role + plugintype @@ -242790,7 +254533,7 @@ false iscustomizable - true + false false false @@ -242808,7 +254551,7 @@ false false - false + true false false @@ -242821,37 +254564,43 @@ canmodifysearchsettings true - true - false - false + false + true + true true false true - importsequencenumber + assemblyname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + ApplicationRequired - ImportSequenceNumber + AssemblyName - IntegerType + StringType 5.0.0.0 - false + true 0 - None - 2147483647 - -2147483648 + Text + Auto + 100 + + + Text + + false 0 + 512 - 25d3e5bd-b5f0-44b0-b507-d0bae0dd6a18 + 26319000-6227-445d-b7d5-ea4c58263d31 Picklist @@ -242863,52 +254612,66 @@ canmodifyadditionalsettings true - 10003 - 2025-11-06T02:05:45.2029952 + 30 + 1900-01-01T00:00:00 - 6a2b2260-a904-4e33-a892-bd0a5ae67192 + 26319001-6227-445d-b7d5-ea4c58263d31 true - Value indicating whether security role is auto-assigned based on user license + For internal use only. 1033 + + 1232556a-0438-46cc-950a-a6ac629a72bb + + true + Kun til intern brug. + 1030 + - 6a2b2260-a904-4e33-a892-bd0a5ae67192 + 26319001-6227-445d-b7d5-ea4c58263d31 true - Value indicating whether security role is auto-assigned based on user license + For internal use only. 1033 - 447a5837-0452-4093-b4bb-a952eebd48dc + 26319002-6227-445d-b7d5-ea4c58263d31 true - Is Auto Assigned + Component State 1033 + + ed009ec4-ff21-4391-a121-2dcc11f1d95e + + true + Komponenttilstand + 1030 + - 447a5837-0452-4093-b4bb-a952eebd48dc + 26319002-6227-445d-b7d5-ea4c58263d31 true - Is Auto Assigned + Component State 1033 - role + plugintype - true + false canmodifyauditsettings - true + false false @@ -242941,74 +254704,88 @@ false - true + false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true + false true - isautoassigned - 2025-11-06T02:05:45.2029952 + componentstate + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - ApplicationRequired + SystemRequired - IsAutoAssigned + ComponentState PicklistType - 9.2.0.0 + 5.0.0.0 false 0 - + -1 - 165cf55a-039a-4e6e-b3f4-1126db9fcb55 + faece09f-cefc-11de-8150-00155da18b00 - 3b5dd714-b5ba-f011-bbd3-7c1e52365f30 + faece0a1-cefc-11de-8150-00155da18b00 true - Value indicating whether security role is auto-assigned based on user license + The state of this component. 1033 + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + - 3b5dd714-b5ba-f011-bbd3-7c1e52365f30 + faece0a1-cefc-11de-8150-00155da18b00 true - Value indicating whether security role is auto-assigned based on user license + The state of this component. 1033 - 3a5dd714-b5ba-f011-bbd3-7c1e52365f30 + faece0a0-cefc-11de-8150-00155da18b00 true - Is Auto Assigned + Component State 1033 + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + - 3a5dd714-b5ba-f011-bbd3-7c1e52365f30 + faece0a0-cefc-11de-8150-00155da18b00 true - Is Auto Assigned + Component State 1033 - + false false @@ -243017,9 +254794,9 @@ true true - securityrole_isautoassigned + componentstate Picklist - 9.2.0.0 + 5.0.0.0 @@ -243035,18 +254812,25 @@ - 9aea628e-a5fc-4fc2-a48a-a38f22701e77 + faece0a3-cefc-11de-8150-00155da18b00 true - No + Published 1033 + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + - 9aea628e-a5fc-4fc2-a48a-a38f22701e77 + faece0a3-cefc-11de-8150-00155da18b00 true - No + Published 1033 @@ -243068,18 +254852,25 @@ - 52c764e7-40d9-4854-8772-e221e284e479 + faece0a5-cefc-11de-8150-00155da18b00 true - Yes + Unpublished 1033 + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + - 52c764e7-40d9-4854-8772-e221e284e479 + faece0a5-cefc-11de-8150-00155da18b00 true - Yes + Unpublished 1033 @@ -243087,20 +254878,100 @@ 1 + + + + + + + + + + false + true + + + + faece0a7-cefc-11de-8150-00155da18b00 + + true + Deleted + 1033 + + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + + + + faece0a7-cefc-11de-8150-00155da18b00 + + true + Deleted + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 1f83e0bb-cefd-11de-8150-00155da18b00 + + true + Deleted Unpublished + 1033 + + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + + + + 1f83e0bb-cefd-11de-8150-00155da18b00 + + true + Deleted Unpublished + 1033 + + + + 3 + + - + 0 - - 612937d9-b937-4288-98be-8a51e61cbb0f + + ddc7d111-7318-4cca-9391-f179a45e976f - isautoassigned - Virtual + + Lookup false false false @@ -243109,8 +254980,145 @@ canmodifyadditionalsettings true - 10004 - 2025-11-06T02:05:45.2329984 + 9 + 1900-01-01T00:00:00 + + + + + 4faac7f4-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user who created the plug-in type. + 1033 + + + 90973e41-4b32-428e-bd6f-be0484fbeee5 + + true + Entydigt id for den bruger, der oprettede plug-in-typen. + 1030 + + + + 4faac7f4-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user who created the plug-in type. + 1033 + + + + + + 9aede57e-ee33-45d1-a11a-0d403f61ccdb + + true + Created By + 1033 + + + 8f6a1c7a-6545-455f-a717-5259b6e42889 + + true + Oprettet af + 1030 + + + + 9aede57e-ee33-45d1-a11a-0d403f61ccdb + + true + Created By + 1033 + + + plugintype + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + createdby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + 7dca4b90-b1f0-4602-ad56-b23110458ccd + + createdby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 31 + 1900-01-01T00:00:00 @@ -243120,11 +255128,11 @@ - role + plugintype - true + false canmodifyauditsettings false @@ -243132,7 +255140,7 @@ false iscustomizable - true + false false false @@ -243147,7 +255155,7 @@ false isrenameable - true + false false false @@ -243159,7 +255167,7 @@ false - true + false canmodifysearchsettings false @@ -243170,76 +255178,101 @@ false false - isautoassignedname - 2025-11-06T02:05:45.2329984 + createdbyname + 2025-11-06T00:19:23.7299968 - true + false canmodifyrequirementlevelsettings None - isautoassignedName + CreatedByName - VirtualType + StringType - 9.2.0.0 + 5.0.0.0 true - - + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 - - a55a309d-a6db-4e97-8ff9-abb07f8d9f99 + + 08ef711f-df01-4874-bf3f-4a374b571b8e - ManagedProperty + DateTime false false false false canmodifyadditionalsettings - false + true - 51 + 7 1900-01-01T00:00:00 - 86ef6bdd-a98e-4183-a7d9-920511ed5bf7 + f153c2fa-2241-db11-898a-0007e9e17ebd true - Information that specifies whether this component can be customized. + Date and time when the plug-in type was created. 1033 + + 0960a384-1bb5-45ef-97c1-a9cf8973855c + + true + Dato og klokkeslæt for oprettelse af plug-in-typen. + 1030 + - 86ef6bdd-a98e-4183-a7d9-920511ed5bf7 + f153c2fa-2241-db11-898a-0007e9e17ebd true - Information that specifies whether this component can be customized. + Date and time when the plug-in type was created. 1033 - 6ee498df-5e76-4291-922b-6399d14e5cde + 8eb00b7c-da2c-495d-9e72-c7d016703bd0 true - Customizable + Created On 1033 + + e762a9af-ffc0-48b0-acef-f8ef05479dfd + + true + Oprettet + 1030 + - 6ee498df-5e76-4291-922b-6399d14e5cde + 8eb00b7c-da2c-495d-9e72-c7d016703bd0 true - Customizable + Created On 1033 - role + plugintype @@ -243280,89 +255313,111 @@ false canmodifysearchsettings - false + true - true - false - false + false + true + true true - true + false true - iscustomizable + createdon 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsCustomizable + CreatedOn - ManagedPropertyType + DateTimeType 5.0.0.0 false - + 0 - iscustomizableanddeletable - - 0 - Boolean + DateAndTime + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + - - e1db4118-f224-4f50-bfd9-d98cd11c72ab + + fc778d33-2b0c-435d-89a0-a9a291e9f11f - Picklist + Lookup false false false false canmodifyadditionalsettings - false + true - 37 - 2025-11-06T00:19:20.1670016 + 19 + 1900-01-01T00:00:00 - af4d9c0f-0e8b-4fbc-942a-e1d044a678e6 + b4ea5732-d27a-46f8-bdb9-c2220cc832eb true - Role is inherited by users from team membership, if role associated with team. + Unique identifier of the delegate user who created the plugintype. 1033 + + 9480f19d-5d3f-41cf-83f6-564350ce816b + + true + Entydigt id for den stedfortræderbruger, der oprettede plug-in-typen. + 1030 + - af4d9c0f-0e8b-4fbc-942a-e1d044a678e6 + b4ea5732-d27a-46f8-bdb9-c2220cc832eb true - Role is inherited by users from team membership, if role associated with team. + Unique identifier of the delegate user who created the plugintype. 1033 - b98a513d-b17c-47c8-b2e3-d8fe9dab74c8 + b4e61567-b076-4d93-85d0-3a8dd3b9ec59 true - Is Inherited + Created By (Delegate) 1033 + + 8d684a2c-4995-433d-a105-0a5627b7e76c + + true + Oprettet af (stedfortræder) + 1030 + - b98a513d-b17c-47c8-b2e3-d8fe9dab74c8 + b4e61567-b076-4d93-85d0-3a8dd3b9ec59 true - Is Inherited + Created By (Delegate) 1033 - role + plugintype @@ -243374,7 +255429,7 @@ false iscustomizable - true + false false false @@ -243405,172 +255460,49 @@ canmodifysearchsettings true - true + false true true true - true + false true - isinherited - 2025-11-06T02:05:45.0669952 + createdonbehalfby + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsInherited + CreatedOnBehalfBy - PicklistType + LookupType - 9.1.0.0 + 5.0.0.0 false - 0 + - 1 - - 2398b83e-25e1-45c6-a11f-20dfa9c542c9 - - - - - d890d0d0-c4bd-4428-899e-9e4776f49bc1 - - true - The role is inherited - 1033 - - - - d890d0d0-c4bd-4428-899e-9e4776f49bc1 - - true - The role is inherited - 1033 - - - - - - 6f921d2f-fece-47ae-8a1a-a5cfdeb0d5cf - - true - Is Inherited - 1033 - - - - 6f921d2f-fece-47ae-8a1a-a5cfdeb0d5cf - - true - Is Inherited - 1033 - - - - false - - false - iscustomizable - false - - true - true - isinherited - Picklist - 9.1.0.0 - - - - - - - - - - - false - true - - - - a0f9d7c4-329a-41a0-9ca2-8786f2640cab - - true - Team privileges only - 1033 - - - - a0f9d7c4-329a-41a0-9ca2-8786f2640cab - - true - Team privileges only - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 40eb97dc-4075-4757-9899-6423bb1d9d1d - - true - Direct User (Basic) access level and Team privileges - 1033 - - - - 40eb97dc-4075-4757-9899-6423bb1d9d1d - - true - Direct User (Basic) access level and Team privileges - 1033 - - - - 1 - - - - - - - - 0 - - + None + + systemuser + - - 5737c444-d9e3-4620-b629-896475a6edc0 + + d960405f-e6a0-4ac9-a887-0699683c594c - isinherited - Virtual + createdonbehalfby + String false false false false canmodifyadditionalsettings - false + true - 54 - 2025-11-06T00:19:24.3229952 + 27 + 1900-01-01T00:00:00 @@ -243580,7 +255512,7 @@ - role + plugintype @@ -243630,88 +255562,71 @@ false false - isinheritedname - 2025-11-06T02:05:45.3129984 + createdonbehalfbyname + 2025-11-06T00:19:23.48 false canmodifyrequirementlevelsettings None - IsInheritedName + CreatedOnBehalfByName - VirtualType + StringType - 9.1.0.0 + 5.0.0.0 true - + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 320 - - f442a030-b510-4ec9-b6d5-8ba601c11fdc + + ddba9d98-a999-4c23-9d97-a81dbd2a2795 - - Boolean + createdonbehalfby + String false false false false canmodifyadditionalsettings - false + true - 50 + 28 1900-01-01T00:00:00 - - - 8b2b6549-cb1d-4143-9957-68eb1d5a1cc1 - - true - Indicates whether the solution component is part of a managed solution. - 1033 - - - - 8b2b6549-cb1d-4143-9957-68eb1d5a1cc1 - - true - Indicates whether the solution component is part of a managed solution. - 1033 - + + - - - 0e6b1b94-bf79-4f98-b7f1-46a3f7173d65 - - true - State - 1033 - - - - 0e6b1b94-bf79-4f98-b7f1-46a3f7173d65 - - true - State - 1033 - + + - role + plugintype - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -243747,177 +255662,109 @@ false true false - true + false - ismanaged - 1900-01-01T00:00:00 + createdonbehalfbyyominame + 2025-11-06T00:19:27.3869952 false canmodifyrequirementlevelsettings - SystemRequired + None - IsManaged + CreatedOnBehalfByYomiName - BooleanType + StringType 5.0.0.0 - false + true 0 - false - - 9d04e035-5408-4c1d-a5aa-20445a02f691 - - - - - b41954a2-f3a5-47e9-ae13-ceb49de4465b - - true - Information about whether the current component is managed. - 1033 - - - - b41954a2-f3a5-47e9-ae13-ceb49de4465b - - true - Information about whether the current component is managed. - 1033 - - - - - - 45a188b1-91a8-4019-b582-cebda8081064 - - true - Is Component Managed - 1033 - - - - 45a188b1-91a8-4019-b582-cebda8081064 - - true - Is Component Managed - 1033 - - - - false - - false - iscustomizable - false - - true - true - ismanaged - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 443c7078-b7cb-47e7-8547-08dfa82950d0 - - true - Unmanaged - 1033 - - - - 443c7078-b7cb-47e7-8547-08dfa82950d0 - - true - Unmanaged - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - ec886b5b-7e97-4c62-b30c-bf295639d540 - - true - Managed - 1033 - - - - ec886b5b-7e97-4c62-b30c-bf295639d540 - - true - Managed - 1033 - - - - 1 - - - + Text + Auto + 100 + createdonbehalfbyname + + Text + + false 0 + 320 - - 4d51ccde-ce18-4d98-88a9-4f1dc51707d1 + + 746caae7-59e9-435c-b1b9-4a824eb6c81c - ismanaged - Virtual + + String false false false false canmodifyadditionalsettings - false + true - 52 + 6 1900-01-01T00:00:00 - - + + + 7bd7a218-2341-db11-898a-0007e9e17ebd + + true + Culture code for the plug-in assembly. + 1033 + + + 74c3dbc5-bf21-43a7-8547-e474121f3f7f + + true + Kulturkoden for plug-in-assemblyen. + 1030 + + + + 7bd7a218-2341-db11-898a-0007e9e17ebd + + true + Culture code for the plug-in assembly. + 1033 + - - + + + 6d13fd11-c48e-4dcf-a831-95b14020ef21 + + true + Culture + 1033 + + + 2cd58623-25a2-48f2-8635-80495e7ce82a + + true + Kultur + 1030 + + + + 6d13fd11-c48e-4dcf-a831-95b14020ef21 + + true + Culture + 1033 + - role + plugintype - false + true canmodifyauditsettings - false + true false @@ -243959,30 +255806,41 @@ false true false - false + true - ismanagedname + culture 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + ApplicationRequired - IsManagedName + Culture - VirtualType + StringType 5.0.0.0 true - + 0 + Text + Auto + 32 + + + Text + + + false + 0 + 64 - - 92e445bf-aca1-468b-bb66-67246982013e + + f7770353-b2bf-4cfd-9f3c-1710c258eddf - Boolean + Integer false false false @@ -243991,46 +255849,39 @@ canmodifyadditionalsettings true - 10000 - 2025-11-06T02:05:45.1399936 + 18 + 1900-01-01T00:00:00 - 57ef25a7-6057-48fb-8dea-b30c62214c10 + a24901bf-2241-db11-898a-0007e9e17ebd true - Is this role generated by the system + Customization level of the plug-in type. 1033 - - - 57ef25a7-6057-48fb-8dea-b30c62214c10 - - true - Is this role generated by the system - 1033 - - - - - b783151d-fb01-483b-8132-9ca3176d1313 + 8bfd5f90-586c-4f84-9703-4a7bab237016 true - Is System Generated - 1033 + Tilpasningsniveau for plug-in-typen. + 1030 - b783151d-fb01-483b-8132-9ca3176d1313 + a24901bf-2241-db11-898a-0007e9e17ebd true - Is System Generated + Customization level of the plug-in type. 1033 + + + + - role + plugintype @@ -244069,85 +255920,623 @@ false - true + false canmodifysearchsettings - true + false - true - true - true + false + false + false true false true - issytemgenerated - 2025-11-06T02:05:45.1399936 + customizationlevel + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsSystemGenerated + CustomizationLevel - BooleanType + IntegerType - 9.2.0.0 + 5.0.0.0 + false + 0 + + None + 255 + -255 + + 0 + + + 47ba94ab-da60-4a4f-aa08-d35253b82856 + + + Memo + false + false + false + + false + canmodifyadditionalsettings + true + + 44 + 1900-01-01T00:00:00 + + + + + 6d16499d-80d7-4395-b87a-05928accce35 + + true + Serialized Custom Activity Type information, including required arguments. For more information, see SandboxCustomActivityInfo. + 1033 + + + 858fcbdd-523d-4e7d-b5b5-eaa14c5cb773 + + true + Serienummererede oplysninger om brugerdefineret aktivitetstype, herunder krævede argumenter. Du kan finde flere oplysninger i SandboxCustomActivityInfo. + 1030 + + + + 6d16499d-80d7-4395-b87a-05928accce35 + + true + Serialized Custom Activity Type information, including required arguments. For more information, see SandboxCustomActivityInfo. + 1033 + + + + + + 04cc5b89-91e8-4e7e-b0ef-19fffdc2424c + + true + Custom Workflow Activity Info + 1033 + + + b1df853d-38fa-4d4a-90f4-aa4fa217d679 + + true + Oplysninger om brugerdefineret arbejdsprocesaktivitet + 1030 + + + + 04cc5b89-91e8-4e7e-b0ef-19fffdc2424c + + true + Custom Workflow Activity Info + 1033 + + + plugintype + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + customworkflowactivityinfo + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CustomWorkflowActivityInfo + + + MemoType + + 5.0.0.0 + false + + + TextArea + Auto + 1048576 + + TextArea + + false + + + 1c808611-d928-4663-bfbc-6e9bd0b0cc1d + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 42 + 1900-01-01T00:00:00 + + + + + 9db9977b-668a-4061-9d79-1991424d1d1c + + true + Description of the plug-in type. + 1033 + + + 2f172fd4-0111-4c5d-b020-9bdb15ef0e9f + + true + Beskrivelse af plug-in-typen. + 1030 + + + + 9db9977b-668a-4061-9d79-1991424d1d1c + + true + Description of the plug-in type. + 1033 + + + + + + fa5246e7-3b50-4f20-acf9-421505886e1c + + true + Description + 1033 + + + 3a109cb6-3287-458b-bbc8-26d25df37741 + + true + Beskrivelse + 1030 + + + + fa5246e7-3b50-4f20-acf9-421505886e1c + + true + Description + 1033 + + + plugintype + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + description + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Description + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + 717204f4-1344-46c4-a1a5-005b0d52de58 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 1 + 1900-01-01T00:00:00 + + + + + bfabc7f4-2241-db11-898a-0007e9e17ebd + + true + User friendly name for the plug-in. + 1033 + + + ced45c1b-b3cd-4db1-a93b-9e356b2275c0 + + true + Brugervenligt navn på plug-in. + 1030 + + + + bfabc7f4-2241-db11-898a-0007e9e17ebd + + true + User friendly name for the plug-in. + 1033 + + + + + + d2f92b1e-1c57-4793-acab-f9050ea01f6e + + true + Display Name + 1033 + + + 45215e90-ba2e-468a-95f0-ba274133ab2e + + true + Vist navn + 1030 + + + + d2f92b1e-1c57-4793-acab-f9050ea01f6e + + true + Display Name + 1033 + + + plugintype + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + friendlyname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + FriendlyName + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + d29194ec-8620-4ed7-84ec-38b8f0c585e5 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 38 + 1900-01-01T00:00:00 + + + + + + + + + + plugintype + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + ismanaged + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + IsManaged + + + BooleanType + + 5.0.0.0 false 0 false - 4860d714-b5ba-f011-bbd3-7c1e52365f30 + 9d04e035-5408-4c1d-a5aa-20445a02f691 - 4a60d714-b5ba-f011-bbd3-7c1e52365f30 + b41954a2-f3a5-47e9-ae13-ceb49de4465b true - Is this role generated by the system + Information about whether the current component is managed. 1033 + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + - 4a60d714-b5ba-f011-bbd3-7c1e52365f30 + b41954a2-f3a5-47e9-ae13-ceb49de4465b true - Is this role generated by the system + Information about whether the current component is managed. 1033 - 4960d714-b5ba-f011-bbd3-7c1e52365f30 + 45a188b1-91a8-4019-b582-cebda8081064 true - Is System Generated + Is Component Managed 1033 + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + - 4960d714-b5ba-f011-bbd3-7c1e52365f30 + 45a188b1-91a8-4019-b582-cebda8081064 true - Is System Generated + Is Component Managed 1033 - true + false false iscustomizable false - false + true true - role_issytemgenerated + ismanaged Boolean - 9.2.0.0 + 5.0.0.0 @@ -244162,18 +256551,25 @@ - bbb5bec2-7873-4e6f-b0e9-904db579871a + 443c7078-b7cb-47e7-8547-08dfa82950d0 true - No + Unmanaged 1033 + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + - bbb5bec2-7873-4e6f-b0e9-904db579871a + 443c7078-b7cb-47e7-8547-08dfa82950d0 true - No + Unmanaged 1033 @@ -244195,18 +256591,25 @@ - c162bb6e-bd23-45d3-ab88-88238f1f1ed9 + ec886b5b-7e97-4c62-b30c-bf295639d540 true - Yes + Managed 1033 + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + - c162bb6e-bd23-45d3-ab88-88238f1f1ed9 + ec886b5b-7e97-4c62-b30c-bf295639d540 true - Yes + Managed 1033 @@ -244215,13 +256618,13 @@ - + 0 - eb6a146e-b1cd-4ebb-8a45-d37a65237eb4 + 95e5df07-0fec-43ca-8918-f9eb9c73eb57 - issytemgenerated + ismanaged Virtual false false @@ -244231,8 +256634,8 @@ canmodifyadditionalsettings true - 10001 - 2025-11-06T02:05:45.1570048 + 43 + 1900-01-01T00:00:00 @@ -244242,11 +256645,11 @@ - role + plugintype - true + false canmodifyauditsettings false @@ -244254,7 +256657,7 @@ false iscustomizable - true + false false false @@ -244269,7 +256672,7 @@ false isrenameable - true + false false false @@ -244281,7 +256684,7 @@ false - true + false canmodifysearchsettings false @@ -244292,82 +256695,96 @@ false false - issytemgeneratedname - 2025-11-06T02:05:45.1570048 + ismanagedname + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - issytemgeneratedName + IsManagedName VirtualType - 9.2.0.0 + 5.0.0.0 true - + - - 06ed0e22-4c45-416b-9bcd-83f3d8d63307 + + a41dc739-347d-408d-bf99-c6f3c305e27b - Lookup + Boolean false false false false canmodifyadditionalsettings - false + true - 14 + 15 1900-01-01T00:00:00 - 63d6a218-2341-db11-898a-0007e9e17ebd + b457f219-1814-4a12-a233-25f7d4c9c3d6 true - Unique identifier of the user who last modified the role. + Indicates if the plug-in is a custom activity for workflows. 1033 + + 723bb43b-0dfd-4248-9c9e-0c7b05fb3aa1 + + true + Angiver, om plug-in'et er en brugerdefineret aktivitet for arbejdsprocesser. + 1030 + - 63d6a218-2341-db11-898a-0007e9e17ebd + b457f219-1814-4a12-a233-25f7d4c9c3d6 true - Unique identifier of the user who last modified the role. + Indicates if the plug-in is a custom activity for workflows. 1033 - 62d6a218-2341-db11-898a-0007e9e17ebd + a0a02ab3-01c0-4a0e-92d6-b43a92aab533 true - Modified By + Is Workflow Activity 1033 + + 800c9d6b-e129-4a8c-b95a-674437b221d0 + + true + Er en arbejdsprocesaktivitet + 1030 + - 62d6a218-2341-db11-898a-0007e9e17ebd + a0a02ab3-01c0-4a0e-92d6-b43a92aab533 true - Modified By + Is Workflow Activity 1033 - role + plugintype - false + true canmodifyauditsettings - false + true false @@ -244391,7 +256808,7 @@ false false - false + true false false @@ -244405,47 +256822,171 @@ true false - false + true true true false true - modifiedby + isworkflowactivity 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ModifiedBy + IsWorkflowActivity - LookupType + BooleanType 5.0.0.0 false - + 0 - None - - systemuser - + false + + 1f491b5c-a35f-4dfe-b515-93b9c1b14c16 + + + + + d5f6d07d-33d1-4b0a-8145-603519ccee0b + + true + Indicates if the plug-in is a custom activity for workflows. + 1033 + + + 156f107a-dfb0-45a3-a06c-bb6ec9e8b726 + + true + Angiver, om plug-in'et er en brugerdefineret aktivitet for arbejdsprocesser. + 1030 + + + + d5f6d07d-33d1-4b0a-8145-603519ccee0b + + true + Indicates if the plug-in is a custom activity for workflows. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + plugintype_isworkflowactivity + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 3c25e7d6-2241-db15-898a-0007e9e37ebd + + true + No + 1033 + + + c81f9d1e-a4fc-41c3-8ce2-fc31eca645df + + true + Nej + 1030 + + + + 3c25e7d6-2241-db15-898a-0007e9e37ebd + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 3e25e7d6-2241-db17-898a-0007e9e57ebd + + true + Yes + 1033 + + + beef5522-9bdf-4e13-9697-c0a170206385 + + true + Ja + 1030 + + + + 3e25e7d6-2241-db17-898a-0007e9e57ebd + + true + Yes + 1033 + + + + 1 + + + + + 0 - - 06d86934-8da0-40cc-a8f7-fcefbf2006d6 + + a41dc73a-347d-408d-bf99-c6f3c305e27b - modifiedby - String + isworkflowactivity + Virtual false false false false canmodifyadditionalsettings - false + true - 19 + 32 1900-01-01T00:00:00 @@ -244456,7 +256997,7 @@ - role + plugintype @@ -244506,65 +257047,96 @@ false false - modifiedbyname - 2025-11-06T00:19:23.3529984 + isworkflowactivityname + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ModifiedByName + IsWorkflowActivityName - StringType + VirtualType 5.0.0.0 true - 0 + - Text - Auto - 100 - - - Text - - - false - 0 - 320 - - a9ecf312-028a-4071-9b14-669d55e8ee77 + + 3c244c51-aad8-4fac-9be8-a5cb945c84b7 - modifiedby - String + + Integer false false false false canmodifyadditionalsettings - false + true - 29 + 39 1900-01-01T00:00:00 - - + + + c63e1bd2-2e97-42b1-b54c-0dbd7decf115 + + true + Major of the version number of the assembly for the plug-in type. + 1033 + + + 31fcb874-2f82-40a9-8a96-f6c6f70e2696 + + true + Det overordnede versionsnummer på assemblyen for plug-in-typen. + 1030 + + + + c63e1bd2-2e97-42b1-b54c-0dbd7decf115 + + true + Major of the version number of the assembly for the plug-in type. + 1033 + - - + + + d9233e5b-0ac2-4bc9-bb3d-f5f02408cfcc + + true + Version major + 1033 + + + dc48b6b4-ddfc-4306-8f0b-08e471fe907b + + true + Overordnet versionsnummer + 1030 + + + + d9233e5b-0ac2-4bc9-bb3d-f5f02408cfcc + + true + Version major + 1033 + - role + plugintype - false + true canmodifyauditsettings - false + true false @@ -244606,95 +257178,103 @@ false true false - false + true - modifiedbyyominame - 2025-11-06T00:19:26.9799936 + major + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ModifiedByYomiName + Major - StringType + IntegerType 5.0.0.0 true 0 - Text - Auto - 100 - modifiedbyname - - Text - + None + 65534 + 0 - false 0 - 320 - - b69ca17f-6254-4fcd-b7a0-0a3af67ca0ef + + cf8d2695-b795-44a3-8d2c-c5fbb098fad5 - DateTime + Integer false false false false canmodifyadditionalsettings - false + true - 8 + 40 1900-01-01T00:00:00 - 68dfeed0-2241-db11-898a-0007e9e17ebd + 6be57597-4b62-4eed-b3a7-87cc665b17d2 true - Date and time when the role was last modified. + Minor of the version number of the assembly for the plug-in type. 1033 + + 0e056ec0-aeb8-41a4-84c2-b1b556e55d59 + + true + Det underordnede versionsnummer på assemblyen for plug-in-typen. + 1030 + - 68dfeed0-2241-db11-898a-0007e9e17ebd + 6be57597-4b62-4eed-b3a7-87cc665b17d2 true - Date and time when the role was last modified. + Minor of the version number of the assembly for the plug-in type. 1033 - 67dfeed0-2241-db11-898a-0007e9e17ebd + 435800a4-9e96-469c-a36a-62dfba8c1aeb true - Modified On + Version minor 1033 + + 682499d2-4bc3-44d1-94c2-d7b2ccf97634 + + true + Underordnet versionsnummer + 1030 + - 67dfeed0-2241-db11-898a-0007e9e17ebd + 435800a4-9e96-469c-a36a-62dfba8c1aeb true - Modified On + Version minor 1033 - role + plugintype - false + true canmodifyauditsettings - false + true false @@ -244703,7 +257283,7 @@ false false - true + false true canmodifyglobalfiltersettings @@ -244718,7 +257298,7 @@ false false - true + false false false @@ -244729,46 +257309,39 @@ false canmodifysearchsettings - true + false false false - true + false true false true - modifiedon + minor 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ModifiedOn + Minor - DateTimeType + IntegerType 5.0.0.0 - false + true 0 - DateAndTime - Inactive + None + 65534 + 0 0 - - false - canmodifybehavior - false - - - UserLocal - - 95787402-a0a2-4ec6-bb74-ce1472fca10b + bc177a07-c530-4976-a4c0-ce0541061cb1 Lookup @@ -244778,48 +257351,62 @@ false canmodifyadditionalsettings - false + true - 44 + 5 1900-01-01T00:00:00 - b686d745-b22a-4b28-94ce-64ab890e9893 + 049af6ca-2241-db11-898a-0007e9e17ebd true - Unique identifier of the delegate user who last modified the role. + Unique identifier of the user who last modified the plug-in type. 1033 + + 1ee76e9a-12b3-4b7e-be0b-1d7d6322cb32 + + true + Entydigt id for den bruger, der sidst ændrede plug-in-typen. + 1030 + - b686d745-b22a-4b28-94ce-64ab890e9893 + 049af6ca-2241-db11-898a-0007e9e17ebd true - Unique identifier of the delegate user who last modified the role. + Unique identifier of the user who last modified the plug-in type. 1033 - 47dc7dcb-9b0d-43f4-b124-3ab986542241 + fd4ed7b5-0b0a-4af5-8ff5-a7aecc04e7cb true - Modified By (Delegate) + Modified By 1033 + + dce2cdf4-abc1-4740-a22a-b906341818c1 + + true + Ændret af + 1030 + - 47dc7dcb-9b0d-43f4-b124-3ab986542241 + fd4ed7b5-0b0a-4af5-8ff5-a7aecc04e7cb true - Modified By (Delegate) + Modified By 1033 - role + plugintype @@ -244831,7 +257418,7 @@ false iscustomizable - true + false false false @@ -244863,20 +257450,20 @@ true false - false + true true true false true - modifiedonbehalfby + modifiedby 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ModifiedOnBehalfBy + ModifiedBy LookupType @@ -244891,9 +257478,9 @@ - 67a57e3f-fb93-4bfb-931c-c98b0f84b6c6 + 4c2312bd-bd97-47f6-8f3d-646346c74a78 - modifiedonbehalfby + modifiedby String false false @@ -244901,9 +257488,9 @@ false canmodifyadditionalsettings - false + true - 46 + 33 1900-01-01T00:00:00 @@ -244914,7 +257501,7 @@ - role + plugintype @@ -244964,14 +257551,14 @@ false false - modifiedonbehalfbyname - 2025-11-06T00:19:26.0600064 + modifiedbyname + 2025-11-06T00:19:25.12 false canmodifyrequirementlevelsettings None - ModifiedOnBehalfByName + ModifiedByName StringType @@ -244992,173 +257579,85 @@ 0 320 - - 091ec6c7-721b-45f7-a0c6-1f6f2d4779cf - - modifiedonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - false - - 47 - 1900-01-01T00:00:00 - - - - - - - - - - role - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - modifiedonbehalfbyyominame - 2025-11-06T00:19:27.0599936 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfByYomiName - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 100 - modifiedonbehalfbyname - - Text - - - false - 0 - 320 - - - 9491d69f-3ac2-488b-bad7-441383be2a93 + + ad7f0214-4f5e-496c-adde-e75eda7d400f - String + DateTime false false false false canmodifyadditionalsettings - false + true - 5 + 13 1900-01-01T00:00:00 - 8faac7f4-2241-db11-898a-0007e9e17ebd + 67cee1dc-2241-db11-898a-0007e9e17ebd true - Name of the role. + Date and time when the plug-in type was last modified. 1033 + + a75c4a5b-859b-4739-8a84-0cf5c266a597 + + true + Dato og klokkeslæt for den seneste ændring af plug-in-typen. + 1030 + - 8faac7f4-2241-db11-898a-0007e9e17ebd + 67cee1dc-2241-db11-898a-0007e9e17ebd true - Name of the role. + Date and time when the plug-in type was last modified. 1033 - 8eaac7f4-2241-db11-898a-0007e9e17ebd + c72aa8ae-3658-4ede-b6bf-94afa636d705 true - Name + Modified On 1033 + + ee4f743e-6d4c-4b08-9afb-01edd6baf46c + + true + Ændret + 1030 + - 8eaac7f4-2241-db11-898a-0007e9e17ebd + c72aa8ae-3658-4ede-b6bf-94afa636d705 true - Name + Modified On 1033 - role + plugintype - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -245169,15 +257668,15 @@ true false - true + false false isrenameable false false - true - true + false + false false true @@ -245189,94 +257688,109 @@ canmodifysearchsettings true - true - false + false + true true true - true + false true - name + modifiedon 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - Name + ModifiedOn - StringType + DateTimeType 5.0.0.0 false 0 - Text - Auto - 100 - - - Text - + DateAndTime + Inactive - false 0 - 200 + + false + canmodifybehavior + false + + + UserLocal + - - c2761675-189f-4d86-a5d8-ef8599fbcd9b + + eb993f01-da57-4e8b-982e-061838df5fb8 - Uniqueidentifier + Lookup false false false false canmodifyadditionalsettings - false + true - 3 + 20 1900-01-01T00:00:00 - 61d8a218-2341-db11-898a-0007e9e17ebd + f35cd172-bc10-4f26-a8d3-ccb3004afe56 true - Unique identifier of the organization associated with the role. + Unique identifier of the delegate user who last modified the plugintype. 1033 + + db45fe0c-8c39-4342-98a1-44de01e6f0ba + + true + Entydigt id for den stedfortræderbruger, der senest ændrede plug-in-typen. + 1030 + - 61d8a218-2341-db11-898a-0007e9e17ebd + f35cd172-bc10-4f26-a8d3-ccb3004afe56 true - Unique identifier of the organization associated with the role. + Unique identifier of the delegate user who last modified the plugintype. 1033 - 60d8a218-2341-db11-898a-0007e9e17ebd + cba90629-c0f6-41e3-81b2-1c0e96d224b2 true - Organization + Modified By (Delegate) 1033 + + d9af383a-ff8f-4f28-917b-28a6f6bef9cc + + true + Ændret af (stedfortræder) + 1030 + - 60d8a218-2341-db11-898a-0007e9e17ebd + cba90629-c0f6-41e3-81b2-1c0e96d224b2 true - Organization + Modified By (Delegate) 1033 - role + plugintype @@ -245326,27 +257840,31 @@ false true - organizationid + modifiedonbehalfby 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - OrganizationId + ModifiedOnBehalfBy - UniqueidentifierType + LookupType 5.0.0.0 false + None + + systemuser + - aa677006-e47a-41aa-8d56-a2465ee83792 + 3b457d6f-1293-4237-b24f-a3d586b3c144 - organizationid + modifiedonbehalfby String false false @@ -245354,7 +257872,7 @@ false canmodifyadditionalsettings - false + true 23 1900-01-01T00:00:00 @@ -245367,7 +257885,7 @@ - role + plugintype @@ -245417,14 +257935,14 @@ false false - organizationidname - 1900-01-01T00:00:00 + modifiedonbehalfbyname + 2025-11-06T00:19:24.2130048 false canmodifyrequirementlevelsettings - SystemRequired + None - OrganizationIdName + ModifiedOnBehalfByName StringType @@ -245445,71 +257963,43 @@ 0 320 - - a2cc2646-92a4-4b72-a636-4682cea41ada + + d80477c4-41e9-4caf-8cc7-574504cf6d5a - - DateTime + modifiedonbehalfby + String false false false false canmodifyadditionalsettings - false + true - 27 + 24 1900-01-01T00:00:00 - - - 50769e3a-fab5-4b6e-a57f-8fcba61f4341 - - true - Date and time that the record was migrated. - 1033 - - - - 50769e3a-fab5-4b6e-a57f-8fcba61f4341 - - true - Date and time that the record was migrated. - 1033 - + + - - - 60775ca8-ae83-44dd-b320-e728a902e640 - - true - Record Created On - 1033 - - - - 60775ca8-ae83-44dd-b320-e728a902e640 - - true - Record Created On - 1033 - + + - role + plugintype - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -245538,109 +258028,122 @@ false canmodifysearchsettings - true + false - true + false false - true + false true false - true + false - overriddencreatedon - 1900-01-01T00:00:00 + modifiedonbehalfbyyominame + 2025-11-06T00:19:27.4029952 false canmodifyrequirementlevelsettings None - OverriddenCreatedOn + ModifiedOnBehalfByYomiName - DateTimeType + StringType 5.0.0.0 - false + true 0 - DateOnly - Inactive + Text + Auto + 100 + modifiedonbehalfbyname + + Text + + false 0 - - false - canmodifybehavior - false - - - UserLocal - + 320 - - 3541057c-c879-444d-8593-4f04fe62090d + + 3b77bd29-81a4-41e8-9c62-b45b765735f6 - DateTime + String false false false false canmodifyadditionalsettings - false + true - 32 + 41 1900-01-01T00:00:00 - 9943d6dc-d6e7-493a-b091-439afbdf2b78 + 1de4e6db-34cb-4da0-8c83-6d89155b798d true - For internal use only. + Name of the plug-in type. 1033 + + 15409183-84c9-49f1-846e-0d6c7ace4f80 + + true + Navnet på plug-in-typen. + 1030 + - 9943d6dc-d6e7-493a-b091-439afbdf2b78 + 1de4e6db-34cb-4da0-8c83-6d89155b798d true - For internal use only. + Name of the plug-in type. 1033 - 4dd18624-95cd-43e7-a583-975da674a6de + 39646582-83d9-4d3b-b55e-24b17e5f8474 true - Record Overwrite Time + Name 1033 + + 8dda5ab5-8856-4069-be7d-a9d4ad565459 + + true + Navn + 1030 + - 4dd18624-95cd-43e7-a583-975da674a6de + 39646582-83d9-4d3b-b55e-24b17e5f8474 true - Record Overwrite Time + Name 1033 - role + plugintype - false + true canmodifyauditsettings - false + true false false iscustomizable - true + false false false @@ -245651,15 +258154,15 @@ true false - false + true false isrenameable false false - false - false + true + true false true @@ -245669,46 +258172,45 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - overwritetime + name 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - OverwriteTime + Name - DateTimeType + StringType 5.0.0.0 false 0 - DateOnly - Inactive + Text + Auto + 256 + + + Text + + false 0 - - false - canmodifybehavior - false - - - UserLocal - + 512 - b5d30c64-f9ae-47ea-a418-3bac04b9dad2 + 27d6dcfa-fe01-4522-9b75-e9c613fcf004 Lookup @@ -245718,60 +258220,53 @@ false canmodifyadditionalsettings - false + true - 16 + 10 1900-01-01T00:00:00 - 5791aa12-2341-db11-898a-0007e9e17ebd + 1641b506-2341-db11-898a-0007e9e17ebd true - Unique identifier of the parent role. + Unique identifier of the organization with which the plug-in type is associated. 1033 - - - 5791aa12-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the parent role. - 1033 - - - - - 5691aa12-2341-db11-898a-0007e9e17ebd + deec665e-33a8-4cc7-84d2-305d0d513e15 true - Parent Role - 1033 + Entydigt id for den organisation, som plug-in-typen er tilknyttet. + 1030 - 5691aa12-2341-db11-898a-0007e9e17ebd + 1641b506-2341-db11-898a-0007e9e17ebd true - Parent Role + Unique identifier of the organization with which the plug-in type is associated. 1033 + + + + - role + plugintype - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -245800,23 +258295,23 @@ false canmodifysearchsettings - true + false false false - true + false true false true - parentroleid + organizationid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ParentRoleId + OrganizationId LookupType @@ -245827,34 +258322,76 @@ None - role + organization - - 0e35f9a0-2b8a-42e0-a962-f53e20b7d91d + + 2ad11000-e868-4cd8-b926-6e50cc63bc75 - parentroleid - String + + DateTime false false false false canmodifyadditionalsettings - false + true - 26 + 34 1900-01-01T00:00:00 - - + + + 2ad11001-e868-4cd8-b926-6e50cc63bc75 + + true + For internal use only. + 1033 + + + 60baae3d-a32f-4027-97ec-5c794939970f + + true + Kun til intern brug. + 1030 + + + + 2ad11001-e868-4cd8-b926-6e50cc63bc75 + + true + For internal use only. + 1033 + - - + + + 2ad11002-e868-4cd8-b926-6e50cc63bc75 + + true + Record Overwrite Time + 1033 + + + 691bd12a-e32e-4c73-af09-5799b8e316a6 + + true + Klokkeslæt for overskrivning af post + 1030 + + + + 2ad11002-e868-4cd8-b926-6e50cc63bc75 + + true + Record Overwrite Time + 1033 + - role + plugintype @@ -245902,38 +258439,39 @@ false true false - false + true - parentroleidname + overwritetime 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - ParentRoleIdName + OverwriteTime - StringType + DateTimeType 5.0.0.0 - true + false 0 - Text - Auto - 100 - - - Text - + DateOnly + Inactive - false 0 - 200 + + false + canmodifybehavior + false + + + UserLocal + - a6918b34-05c5-46b3-9874-b25e23fd1d9c + 78823c23-2595-4d68-ac05-7993b40fcbda Lookup @@ -245943,48 +258481,62 @@ false canmodifyadditionalsettings - false + true - 40 + 17 1900-01-01T00:00:00 - 90ec8cd9-e1f5-43e3-8a97-96b30bfca133 + e197ba00-2341-db11-898a-0007e9e17ebd true - Unique identifier of the parent root role. + Unique identifier of the plug-in assembly that contains this plug-in type. 1033 + + 6feea50b-1d9e-47cd-a85c-017cd50ee70e + + true + Entydigt id for den plug-in-assembly, der indeholder denne plug-in-type. + 1030 + - 90ec8cd9-e1f5-43e3-8a97-96b30bfca133 + e197ba00-2341-db11-898a-0007e9e17ebd true - Unique identifier of the parent root role. + Unique identifier of the plug-in assembly that contains this plug-in type. 1033 - 5618aa92-96f0-4282-83ea-61d9c300c88e + fa630d4b-3dc6-42ff-bba6-9a1aa2299764 true - Parent Root Role + Plugin Assembly 1033 + + ae6a81ec-910d-4978-af58-2abb4991229b + + true + Plug-in-assembly + 1030 + - 5618aa92-96f0-4282-83ea-61d9c300c88e + fa630d4b-3dc6-42ff-bba6-9a1aa2299764 true - Parent Root Role + Plugin Assembly 1033 - role + plugintype @@ -245996,7 +258548,7 @@ false iscustomizable - true + false false false @@ -246027,21 +258579,21 @@ canmodifysearchsettings true - false - false + true + true true true - false + true true - parentrootroleid + pluginassemblyid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - ParentRootRoleId + PluginAssemblyId LookupType @@ -246052,13 +258604,13 @@ None - role + pluginassembly - be6702c9-b76f-4e91-ae31-33ca568ef4e7 + 26af94c0-bbee-44c9-af54-92d6aa087ec8 - parentrootroleid + pluginassemblyid String false false @@ -246066,9 +258618,9 @@ false canmodifyadditionalsettings - false + true - 41 + 35 1900-01-01T00:00:00 @@ -246079,7 +258631,7 @@ - role + plugintype @@ -246129,14 +258681,14 @@ false false - parentrootroleidname + pluginassemblyidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - ParentRootRoleIdName + PluginAssemblyIdName StringType @@ -246155,13 +258707,13 @@ false 0 - 200 + 320 - - 99d46fde-2225-4212-8563-f8639066e5ec + + dbc0fdc3-0ee9-445b-bd45-8b8325f994de - Uniqueidentifier + String false false false @@ -246170,50 +258722,50 @@ canmodifyadditionalsettings false - 1 - 1900-01-01T00:00:00 + 10000 + 2025-11-06T01:23:14.3800064 - f6aac7f4-2241-db11-898a-0007e9e17ebd + 6c43d511-573d-42c7-a43a-2732914165e7 true - Unique identifier of the role. + Uniquely identifies the plug-in type associated with a plugin package when exporting a solution. 1033 - f6aac7f4-2241-db11-898a-0007e9e17ebd + 6c43d511-573d-42c7-a43a-2732914165e7 true - Unique identifier of the role. + Uniquely identifies the plug-in type associated with a plugin package when exporting a solution. 1033 - f5aac7f4-2241-db11-898a-0007e9e17ebd + b53a9a74-fd19-4f60-b339-a81620d8b461 true - Role + Plugin Type export key 1033 - f5aac7f4-2241-db11-898a-0007e9e17ebd + b53a9a74-fd19-4f60-b339-a81620d8b461 true - Role + Plugin Type export key 1033 - role + plugintype - false + true canmodifyauditsettings false @@ -246224,14 +258776,14 @@ false false - true + false - true + false canmodifyglobalfiltersettings false true - true + false false false @@ -246239,11 +258791,11 @@ false false - true + false false false - true + false canmodifyissortablesettings false @@ -246259,25 +258811,36 @@ false true - roleid - 1900-01-01T00:00:00 + plugintypeexportkey + 2025-11-06T01:23:14.3800064 false canmodifyrequirementlevelsettings SystemRequired - RoleId + PluginTypeExportKey - UniqueidentifierType + StringType - 5.0.0.0 + 1.0.0.0 false - + 0 + Text + Auto + 256 + + + Text + + + false + 0 + 512 - 8de3ef25-e1f6-4e90-aa0f-ad01d0a12d7d + 4527ad71-ebe5-4ada-82ad-70e0394af411 Uniqueidentifier @@ -246287,48 +258850,62 @@ false canmodifyadditionalsettings - false + true - 36 + 4 1900-01-01T00:00:00 - 09a87f46-b345-4b77-ac76-94680bc66fa1 + 1de0eed0-2241-db11-898a-0007e9e17ebd true - For internal use only. + Unique identifier of the plug-in type. 1033 + + ee62585e-0ba6-4bf4-91fa-1f761d2117b8 + + true + Entydigt id for plug-in-typen. + 1030 + - 09a87f46-b345-4b77-ac76-94680bc66fa1 + 1de0eed0-2241-db11-898a-0007e9e17ebd true - For internal use only. + Unique identifier of the plug-in type. 1033 - 7bf10158-482b-4ea5-8a69-fb30bafb1562 + 913123b3-d6c5-4208-bd89-3e76d33921dd true - Unique Id + Plug-in Type 1033 + + 6c4af11d-fcd3-4b85-89f6-dbed76844a5a + + true + Plug-in-type + 1030 + - 7bf10158-482b-4ea5-8a69-fb30bafb1562 + 913123b3-d6c5-4208-bd89-3e76d33921dd true - Unique Id + Plug-in Type 1033 - role + plugintype @@ -246343,14 +258920,14 @@ false false - false + true true canmodifyglobalfiltersettings false true - false + true false false @@ -246358,7 +258935,7 @@ false false - false + true false false @@ -246369,23 +258946,23 @@ false canmodifysearchsettings - false + true - false + true false false true false true - roleidunique + plugintypeid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - RoleIdUnique + PluginTypeId UniqueidentifierType @@ -246395,71 +258972,64 @@ - - 38aaf916-a3c5-4d41-8db2-6b68ccb164e8 + + b205262a-62b6-4f9d-935b-5e095064ff76 - Lookup + Uniqueidentifier false false false false canmodifyadditionalsettings - false + true - 2 + 16 1900-01-01T00:00:00 - 48e8af0c-2341-db11-898a-0007e9e17ebd + 4199ba00-2341-db11-898a-0007e9e17ebd true - Unique identifier of the role template that is associated with the role. + Unique identifier of the plug-in type. 1033 - - - 48e8af0c-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the role template that is associated with the role. - 1033 - - - - - 47e8af0c-2341-db11-898a-0007e9e17ebd + 6d2095a6-89a2-4a14-979c-199d3df0bab1 true - Role Template - 1033 + Entydigt id for plug-in-typen. + 1030 - 47e8af0c-2341-db11-898a-0007e9e17ebd + 4199ba00-2341-db11-898a-0007e9e17ebd true - Role Template + Unique identifier of the plug-in type. 1033 + + + + - role + plugintype - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -246488,7 +259058,7 @@ false canmodifysearchsettings - true + false false false @@ -246497,86 +259067,96 @@ false true - roletemplateid - 2025-11-06T02:05:44.9069952 + plugintypeidunique + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - RoleTemplateId + PluginTypeIdUnique - LookupType + UniqueidentifierType 5.0.0.0 false - None - - roletemplate - - - ad265fd3-c501-40f0-b0f7-3194e536b95c + + a252af69-8619-422e-b0c2-fc01bdd59ffe - Uniqueidentifier + String false false false false canmodifyadditionalsettings - false + true - 35 + 2 1900-01-01T00:00:00 - c3a6ea4c-278c-496f-89dd-b3ea932e69b2 + fbe8af0c-2341-db11-898a-0007e9e17ebd true - Unique identifier of the associated solution. + Public key token of the assembly for the plug-in type. 1033 + + beb44de0-eaee-4f31-b7ed-70ece819541c + + true + Assemblyens token for offentlig nøgle for plug-in-typen. + 1030 + - c3a6ea4c-278c-496f-89dd-b3ea932e69b2 + fbe8af0c-2341-db11-898a-0007e9e17ebd true - Unique identifier of the associated solution. + Public key token of the assembly for the plug-in type. 1033 - 76734f22-cd15-44d0-a35a-f22b062c63d7 + 9a490acb-ce63-4e30-9a6e-a81001c9fc28 true - Solution + Public Key Token 1033 + + 108689d6-6600-430e-85b3-6ca04ad880d7 + + true + Offentlig nøgletoken + 1030 + - 76734f22-cd15-44d0-a35a-f22b062c63d7 + 9a490acb-ce63-4e30-9a6e-a81001c9fc28 true - Solution + Public Key Token 1033 - role + plugintype - false + true canmodifyauditsettings - false + true false @@ -246611,37 +259191,48 @@ false canmodifysearchsettings - false + true false - false - false + true + true true false true - solutionid + publickeytoken 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + ApplicationRequired - SolutionId + PublicKeyToken - UniqueidentifierType + StringType 5.0.0.0 - false - + true + 0 + Text + Auto + 32 + + + Text + + + false + 0 + 64 - - a0a0ead0-4caf-4c19-b222-4ccc4de7f1d0 + + a9893000-414f-4e05-86d2-88a5742a6765 - Memo + Uniqueidentifier false false false @@ -246650,52 +259241,66 @@ canmodifyadditionalsettings true - 10006 - 2025-11-06T02:05:45.2669952 + 36 + 1900-01-01T00:00:00 - 312fe9f1-bdb4-4b4b-9ed1-8e3e6667dfae + a9893001-414f-4e05-86d2-88a5742a6765 true - Summary of Core Table Permissions of the Role + Unique identifier of the associated solution. 1033 + + 3894cc5d-334f-41a8-8f4b-18c9a10993f1 + + true + Entydigt id for den tilknyttede løsning. + 1030 + - 312fe9f1-bdb4-4b4b-9ed1-8e3e6667dfae + a9893001-414f-4e05-86d2-88a5742a6765 true - Summary of Core Table Permissions of the Role + Unique identifier of the associated solution. 1033 - b305a8d5-4080-4043-bcae-a82ce660bd24 + a9893002-414f-4e05-86d2-88a5742a6765 true - Summary of Core Table Permissions + Solution 1033 + + 3bf67a7d-8270-4354-bbca-a900e63607dd + + true + Løsning + 1030 + - b305a8d5-4080-4043-bcae-a82ce660bd24 + a9893002-414f-4e05-86d2-88a5742a6765 true - Summary of Core Table Permissions + Solution 1033 - role + plugintype - true + false canmodifyauditsettings - true + false false @@ -246728,43 +259333,36 @@ false - true + false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true + false true - summaryofcoretablepermissions - 2025-11-06T02:05:45.2669952 + solutionid + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - ApplicationRequired + SystemRequired - SummaryofCoreTablePermissions + SolutionId - MemoType + UniqueidentifierType - 9.2.0.0 + 5.0.0.0 false - TextArea - Auto - 2000 - - TextArea - - false - ef97e43e-0fab-419f-b399-116a61f473d2 + 5efb9000-c63c-47e3-8f37-0f27f5383306 Uniqueidentifier @@ -246774,23 +259372,30 @@ false canmodifyadditionalsettings - false + true - 33 + 37 1900-01-01T00:00:00 - cbc5244b-8338-4c83-b19c-18dc8dd00c68 + 5efb9001-c63c-47e3-8f37-0f27f5383306 true For internal use only. 1033 + + 3d3d0738-1525-42a5-b6ad-e96c3381ad53 + + true + Kun til intern brug. + 1030 + - cbc5244b-8338-4c83-b19c-18dc8dd00c68 + 5efb9001-c63c-47e3-8f37-0f27f5383306 true For internal use only. @@ -246800,22 +259405,29 @@ - e1f5d489-6ce1-460d-b499-c5489dd15ac7 + 5efb9002-c63c-47e3-8f37-0f27f5383306 true Solution 1033 + + 96105ba5-6b61-4862-8310-256f8acd11f1 + + true + Løsning + 1030 + - e1f5d489-6ce1-460d-b499-c5489dd15ac7 + 5efb9002-c63c-47e3-8f37-0f27f5383306 true Solution 1033 - role + plugintype @@ -246856,11 +259468,11 @@ false canmodifysearchsettings - false + true false false - false + true false false false @@ -246882,65 +259494,79 @@ - - 5d6345f6-da3a-48a6-a617-0a6bd4ec124b + + 8d037866-476f-4708-87d7-cebdc3e51968 - BigInt + String false false false false canmodifyadditionalsettings - false + true - 13 + 11 1900-01-01T00:00:00 - 4d9511a2-699f-4e66-b590-50746b138db6 + 2cabc7f4-2241-db11-898a-0007e9e17ebd true - Version number of the role. + Fully qualified type name of the plug-in type. 1033 + + 009f8fe9-6181-4aa8-8cec-1f9b56e4e5f9 + + true + Det fuldt ud kvalificerede typenavn for plug-in-typen. + 1030 + - 4d9511a2-699f-4e66-b590-50746b138db6 + 2cabc7f4-2241-db11-898a-0007e9e17ebd true - Version number of the role. + Fully qualified type name of the plug-in type. 1033 - 80467aed-17a7-4099-afcf-9d2d72b9d8ea + 4178e8cd-abc9-4800-b4b2-03912bf72c0b true - Version number + Type Name 1033 + + 986c116f-9506-47db-bfc9-086b259d29dc + + true + Navn på type + 1030 + - 80467aed-17a7-4099-afcf-9d2d72b9d8ea + 4178e8cd-abc9-4800-b4b2-03912bf72c0b true - Version number + Type Name 1033 - role + plugintype - false + true canmodifyauditsettings - false + true false @@ -246965,7 +259591,7 @@ false true - false + true false true @@ -246975,26 +259601,272 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - versionnumber + typename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - VersionNumber + TypeName - BigIntType + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + f8d340d4-b428-48e1-80b4-f6b1e74f325d + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 8 + 1900-01-01T00:00:00 + + + + + c54901bf-2241-db11-898a-0007e9e17ebd + + true + Version number of the assembly for the plug-in type. + 1033 + + + 2bedf3df-e35e-49a9-99f7-19cb8d869d90 + + true + Versionsnummeret på assemblyen for plug-in-typen. + 1030 + + + + c54901bf-2241-db11-898a-0007e9e17ebd + + true + Version number of the assembly for the plug-in type. + 1033 + + + + + + 0d423275-0dc1-4497-92e5-e15b14c43cb2 + + true + Version + 1033 + + + 22c81b25-f029-4b6d-a11e-fb5b7f22ba79 + + true + Version + 1030 + + + + 0d423275-0dc1-4497-92e5-e15b14c43cb2 + + true + Version + 1033 + + + plugintype + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + version + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + ApplicationRequired + + Version + + + StringType + + 5.0.0.0 + true + 0 + + VersionNumber + Auto + 48 + + + VersionNumber + + + false + 0 + 96 + + + aef421b8-3894-40d8-8ab6-c0f40a4e80d9 + + + BigInt + false + false + false + + false + canmodifyadditionalsettings + true + + 14 + 1900-01-01T00:00:00 + + + + + + + + + + plugintype + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + versionnumber + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + VersionNumber + + + BigIntType 5.0.0.0 false @@ -247003,6 +259875,150 @@ 9223372036854775807 -9223372036854775808 + + 477f4396-f232-4c27-a762-219f5c59c5b8 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 21 + 1900-01-01T00:00:00 + + + + + 20acaf12-ff93-4904-957e-5ba161c3752a + + true + Group name of workflow custom activity. + 1033 + + + 5d13c77b-a48b-429d-b469-d78204c5d682 + + true + Gruppenavnet på den brugerdefinerede aktivitet i arbejdsprocessen. + 1030 + + + + 20acaf12-ff93-4904-957e-5ba161c3752a + + true + Group name of workflow custom activity. + 1033 + + + + + + 24dc0fd7-05d0-45cf-bc6f-1cc782506560 + + true + Workflow Activity Group Name + 1033 + + + 2bb3b927-0f29-4650-9bbe-16eb46d69053 + + true + Gruppenavn for arbejdsprocesaktivitet + 1030 + + + + 24dc0fd7-05d0-45cf-bc6f-1cc782506560 + + true + Workflow Activity Group Name + 1033 + + + plugintype + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + workflowactivitygroupname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + WorkflowActivityGroupName + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + false false @@ -247025,7 +260041,7 @@ false canberelatedentityinrelationship - false + true true @@ -247054,17 +260070,17 @@ false - true + false canenablesynctoexternalsearchindex - true + false true canmodifyadditionalsettings - true + false false - true + false Local 1900-01-01T00:00:00 @@ -247073,54 +260089,75 @@ - 73dc01b9-2241-db11-898a-0007e9e17ebd + 795011ad-2241-db11-898a-0007e9e17ebd true - Grouping of security privileges. Users are assigned roles that authorize their access to the Microsoft CRM system. + Type that inherits from the IPlugin interface and is contained within a plug-in assembly. 1033 + + 491c686b-e577-4e1c-bc74-daef7bf71f24 + + true + Type, der arves fra IPlugin-grænsefladen og findes i en plug-in-assembly. + 1030 + - 73dc01b9-2241-db11-898a-0007e9e17ebd + 795011ad-2241-db11-898a-0007e9e17ebd true - Grouping of security privileges. Users are assigned roles that authorize their access to the Microsoft CRM system. + Type that inherits from the IPlugin interface and is contained within a plug-in assembly. 1033 - 75dc01b9-2241-db11-898a-0007e9e17ebd + 7b5011ad-2241-db11-898a-0007e9e17ebd true - Security Roles + Plug-in Types 1033 + + ad7daa33-af96-4eeb-a1d0-02f66cb7d49a + + true + Plug-in-typer + 1030 + - 75dc01b9-2241-db11-898a-0007e9e17ebd + 7b5011ad-2241-db11-898a-0007e9e17ebd true - Security Roles + Plug-in Types 1033 - 74dc01b9-2241-db11-898a-0007e9e17ebd + 7a5011ad-2241-db11-898a-0007e9e17ebd true - Security Role + Plug-in Type 1033 + + 60ea2272-e0f0-46df-842f-29b60e3c6280 + + true + Plug-in-type + 1030 + - 74dc01b9-2241-db11-898a-0007e9e17ebd + 7a5011ad-2241-db11-898a-0007e9e17ebd true - Security Role + Plug-in Type 1033 @@ -247139,7 +260176,7 @@ false false - true + false canmodifyauditsettings false @@ -247155,7 +260192,7 @@ false iscustomizable - true + false false false @@ -247166,7 +260203,7 @@ false false - true + false false false false @@ -247180,14 +260217,14 @@ false ismappable - true + false false false false canmodifymobileclientreadonly - true + false true @@ -247212,362 +260249,15 @@ false - false + true canmodifymobileclientvisibility true - role - - - 8b366d6e-d389-11db-9246-00123f3a1b51 - - false - - false - iscustomizable - false - - true - true - systemuserroles_association - None - 5.0.0.0 - ManyToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - systemuserid - systemuser - systemuserroles_association - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - roleid - role - systemuserroles_association - systemuserroles - - - 8b366d87-d389-11db-9246-00123f3a1b51 - - false - - false - iscustomizable - false - - true - false - roleprivileges_association - None - 5.0.0.0 - ManyToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - privilegeid - privilege - roleprivileges_association - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - roleid - role - roleprivileges_association - roleprivileges - - - 8b366d71-d389-11db-a92b-00123f3a1b51 - - false - - false - iscustomizable - false - - true - true - appmoduleroles_association - None - 8.2.0.0 - ManyToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - appmoduleid - appmodule - appmoduleroles_association - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - roleid - role - appmoduleroles_association - appmoduleroles - - - 8d0b8700-9ca8-48ef-908d-da2aff07f92e - - false - - false - iscustomizable - false - - true - true - teamroles_association - None - 5.0.0.0 - ManyToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - teamid - team - teamroles_association - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - roleid - role - teamroles_association - teamroles - - - 923f91be-b5ba-f011-bbd3-7c1e52365f30 - - false - - false - iscustomizable - false - - true - false - application_role - None - 1.0 - ManyToManyRelationship - - DoNotDisplay - Details - - - - 7cab3d5a-a521-4beb-87c1-e7122ba69841 - - true - - 1033 - - - - 7cab3d5a-a521-4beb-87c1-e7122ba69841 - - true - - 1033 - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - applicationid - application - application_role - - DoNotDisplay - Details - - - - c68c9fce-30b8-4540-9202-49b5055c100f - - true - - 1033 - - - - c68c9fce-30b8-4540-9202-49b5055c100f - - true - - 1033 - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - roleid - role - application_role - applicationroles - - - 507a678f-b8ba-f011-bbd3-7c1e52365f30 - - true - - false - iscustomizable - false - - true - true - applicationuserrole - None - 1.0 - ManyToManyRelationship - - DoNotDisplay - Details - - - - - - true - - true - - - 00000000-0000-0000-0000-000000000000 - - applicationuserid - applicationuser - applicationuserrole - - DoNotDisplay - Details - - - - - - true - - true - - - 00000000-0000-0000-0000-000000000000 - - roleid - role - applicationuserrole - applicationuserrole - - + plugintype + - 36f8e113-d956-4dfd-ab14-632b66021693 + 52299113-7928-4b1e-9618-3fc0da39870f false @@ -247576,8 +260266,8 @@ false true - true - business_unit_roles + false + lk_plugintype_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -247599,7 +260289,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -247611,17 +260301,17 @@ false false - businessunitid - businessunit - business_unit_roles - businessunitid - role - businessunitid + systemuserid + systemuser + lk_plugintype_createdonbehalfby + createdonbehalfby + plugintype + createdonbehalfby 0 - 15d0a81e-467c-4cf4-a3c0-146b821b6bd9 + 8b542b51-81bb-4598-9025-9d6914188959 false @@ -247630,8 +260320,8 @@ false true - true - lk_role_createdonbehalfby + false + lk_plugintype_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -247667,15 +260357,15 @@ false systemuserid systemuser - lk_role_createdonbehalfby - createdonbehalfby - role - createdonbehalfby + lk_plugintype_modifiedonbehalfby + modifiedonbehalfby + plugintype + modifiedonbehalfby 0 - f5ee7c43-b890-4551-8910-9d6d8cd3ddaa + 94e4e872-1521-468f-b018-55bf559ca46d false @@ -247685,7 +260375,7 @@ true false - organization_roles + organization_plugintype None 5.0.0.0 OneToManyRelationship @@ -247721,15 +260411,15 @@ false organizationid organization - organization_roles + organization_plugintype organizationid - role - organizationid_organization + plugintype + organizationid 0 - 7284bf83-2f84-4ce6-b75b-50753fc5ea78 + 37d96b99-7b8e-452e-986c-2517136cfc1c false @@ -247739,7 +260429,7 @@ true true - role_parent_role + pluginassembly_plugintype None 5.0.0.0 OneToManyRelationship @@ -247761,7 +260451,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -247773,17 +260463,17 @@ false false - roleid - role - role_parent_role - parentroleid - role - parentroleid + pluginassemblyid + pluginassembly + pluginassembly_plugintype + pluginassemblyid + plugintype + pluginassemblyid 0 - b906bdac-aeb2-4a23-af6f-a1c0cf7ba5fc + cce9acab-7944-4e1e-aec2-80e18fb0835d false @@ -247792,8 +260482,8 @@ false true - true - lk_rolebase_createdby + false + createdby_plugintype None 5.0.0.0 OneToManyRelationship @@ -247829,15 +260519,15 @@ false systemuserid systemuser - lk_rolebase_createdby + createdby_plugintype createdby - role + plugintype createdby 0 - d56d1bc2-5777-4f1d-a233-7a97be39fdfb + 212a8cd7-eb4b-45c8-b580-15af4c8824b9 false @@ -247847,115 +260537,7 @@ true false - role_template_roles - Append - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - roletemplateid - roletemplate - role_template_roles - roletemplateid - role - roletemplateid - - 1 - - - 91de8de9-18ad-4505-8b80-d8ce9dec387a - - false - - false - iscustomizable - false - - true - true - solution_role - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - solutionid - solution - solution_role - solutionid - role - solution_role - - 0 - - - 0f8590ea-8b46-466e-b83a-2642d396b3cb - - false - - false - iscustomizable - false - - true - true - lk_rolebase_modifiedby + modifiedby_plugintype None 5.0.0.0 OneToManyRelationship @@ -247991,181 +260573,19 @@ false systemuserid systemuser - lk_rolebase_modifiedby + modifiedby_plugintype modifiedby - role + plugintype modifiedby 0 - - 3ca392fa-ced4-477c-be63-49fcfb6d76f1 - - false - - false - iscustomizable - false - - true - true - lk_role_modifiedonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_role_modifiedonbehalfby - modifiedonbehalfby - role - modifiedonbehalfby - - 0 - - - 1b3addfc-e92f-4e8e-96df-dc57c2c9f699 - - false - - false - iscustomizable - false - - true - true - role_parent_root_role - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - roleid - role - role_parent_root_role - parentrootroleid - role - parentrootroleid - - 0 - - 2025-11-06T02:05:45.36 - 1036 + 2025-11-06T05:11:57.2329984 + 4602 - 2f1bdb05-7eec-438e-9e2a-ef448ebf7803 - - false - - false - iscustomizable - true - - true - true - Role_SyncErrors - Append - 8.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - Cascade - Cascade - Cascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - roleid - role - Role_SyncErrors - regardingobjectid - syncerror - regardingobjectid_role_syncerror - - 1 - - - aa107a07-c124-444b-a43b-86722fd457e6 + 6d5eaf2a-59c0-41da-a94d-8f935caf6525 false @@ -248175,7 +260595,7 @@ true true - Role_AsyncOperations + plugintype_sdkmessageprocessingstep None 5.0.0.0 OneToManyRelationship @@ -248197,7 +260617,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -248209,17 +260629,17 @@ false false - roleid - role - Role_AsyncOperations - regardingobjectid - asyncoperation - regardingobjectid_role + plugintypeid + plugintype + plugintype_sdkmessageprocessingstep + eventhandler + sdkmessageprocessingstep + eventhandler_plugintype 0 - dfb2936e-d55c-4e4f-800b-83cc1bb21f09 + 8b2b6e33-c580-43db-acaa-846e7229ea89 false @@ -248229,7 +260649,7 @@ true false - userentityinstancedata_role + userentityinstancedata_plugintype None 5.0.0.0 OneToManyRelationship @@ -248263,17 +260683,17 @@ false false - roleid - role - userentityinstancedata_role + plugintypeid + plugintype + userentityinstancedata_plugintype objectid userentityinstancedata - objectid_role + objectid_plugintype 0 - 7284bf83-2f84-4ce6-b75b-50753fc5ea78 + 8df80b51-ab41-439b-b04a-b56b7d728daf false @@ -248283,7 +260703,7 @@ true true - role_parent_role + plugintype_plugintypestatistic None 5.0.0.0 OneToManyRelationship @@ -248305,7 +260725,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -248317,17 +260737,17 @@ false false - roleid - role - role_parent_role - parentroleid - role - parentroleid + plugintypeid + plugintype + plugintype_plugintypestatistic + plugintypeid + plugintypestatistic + plugintypeid 0 - 3e5624cf-56fe-4d32-9b12-880063786fcf + a0401e5d-38ea-46e0-bf68-7277f38ddd80 false @@ -248336,8 +260756,8 @@ false true - false - Role_BulkDeleteFailures + true + plugintypeid_sdkmessageprocessingstep None 5.0.0.0 OneToManyRelationship @@ -248359,7 +260779,7 @@ NoCascade NoCascade - Cascade + Restrict NoCascade NoCascade NoCascade @@ -248371,19 +260791,19 @@ false false - roleid - role - Role_BulkDeleteFailures - regardingobjectid - bulkdeletefailure - regardingobjectid_role + plugintypeid + plugintype + plugintypeid_sdkmessageprocessingstep + plugintypeid + sdkmessageprocessingstep + plugintypeid 0 - 1b3addfc-e92f-4e8e-96df-dc57c2c9f699 + 7a2748bc-aeba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -248391,21 +260811,21 @@ true true - role_parent_root_role - None - 5.0.0.0 + plugintype_customapi + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -248413,7 +260833,7 @@ NoCascade NoCascade - Cascade + RemoveLink NoCascade NoCascade NoCascade @@ -248425,114 +260845,102 @@ false false - roleid - role - role_parent_root_role - parentrootroleid - role - parentrootroleid + plugintypeid + plugintype + CustomAPIId + plugintypeid + customapi + PluginTypeId - 0 + 1 8 - BusinessOwned + OrganizationOwned - roleid + plugintypeid - roleid + plugintypeid name false - true + false false true - true + false false false - prvCreateRole - 7398c78c-29a5-4982-9ada-73390f64fe99 + prvCreatePluginType + 592cb518-880d-492f-bd3c-3558413b8ced Create false - true + false false true - true + false false false - prvReadRole - 222a920a-2778-4564-85cb-e78dde8e4276 + prvReadPluginType + 9365005c-4703-473b-8d3c-d073cfd8670c Read false - true + false false true - true + false false false - prvWriteRole - bd123e14-17ba-40f6-8d8b-18f4bffa7e50 + prvWritePluginType + c70843e8-d617-4873-9d05-8a8d4a68ee58 Write false - true + false false true - true + false false false - prvDeleteRole - 34abe1b8-e9bc-4be0-9ef3-09459ca7ae57 + prvDeletePluginType + 5e1c5422-9a12-4d3e-9960-51a812a005e2 Delete false - true - false - true - true - false - false - prvAssignRole - 836d6c7b-cf1d-47f0-8021-8e41091c489c - Assign - - - false - true + false false true - true + false false false - prvAppendRole - 8fdeea95-80ab-47dc-974b-52d71b88c8af + prvAppendPluginType + 1359d788-6ea1-4a5a-97e9-8df778e6991d Append false - true + false false true - true + false false false - prvAppendToRole - eaa02b5b-dc56-4aa3-a889-718f25aa0075 + prvAppendToPluginType + 574c053e-6488-4bfb-832a-cbc47aff8b32 AppendTo - FilteredRole - Role + FilteredPluginType + PluginType false @@ -248547,62 +260955,13 @@ false - Roles + PluginTypes true - 684bbad3-af9c-4547-bc70-237ded8cf96e - - - 00000000-0000-0000-0000-000000000000 - - asyncoperation - - - - - - - 3dd71196-fb05-4bf9-bfbe-961dc17ea9d7 - - true - ParentRootRoleId BusinessUnit lookup key - 1033 - - - - 3dd71196-fb05-4bf9-bfbe-961dc17ea9d7 - - true - ParentRootRoleId BusinessUnit lookup key - 1033 - - - Active - role - 9.2.0.0 - - false - iscustomizable - false - - false - true - false - true - - businessunitid - componentstate - overwritetime - parentrootroleid - - parentrootroleid_businessunitid - parentrootroleid_businessunitid - - - 32554af9-2e30-4d01-8ee2-9ada6d6e8fce + 35877686-39c3-4e74-a96c-d4d87252c3b2 00000000-0000-0000-0000-000000000000 @@ -248614,46 +260973,45 @@ - cf52ea05-1a66-400e-9c88-0f09ef7709ae + a74cc85a-e6e1-41b4-a072-6007c610b5c5 true - RoleTemplateId BusinessUnit lookup key + Plugin Type Entity Key1 1033 - cf52ea05-1a66-400e-9c88-0f09ef7709ae + a74cc85a-e6e1-41b4-a072-6007c610b5c5 true - RoleTemplateId BusinessUnit lookup key + Plugin Type Entity Key1 1033 Active - role - 9.2.0.0 + plugintype + 1.0.0.0 false iscustomizable false - false + true true false true - businessunitid componentstate overwritetime - roletemplateid + plugintypeexportkey - roletemplateid_businessunitid - roletemplateid_businessunitid + plugintypeentitykey + PluginTypeEntityKey - roles - 9999 - roles + plugintypes + 0 + plugintypes false true @@ -248662,71 +261020,91 @@ false false - - <fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false"> - <entity name="role"> - <filter type="and"> - <condition attribute="modifiedon" operator="on-or-after" value="1900-01-01"/> - </filter> - </entity> - </fetch> - + false false - roletemplate + publisher - 58294352-0071-4b30-beb7-02f703cbba49 + fcd2b9c5-4a53-4083-880d-16da4be49ac3 0 - - 3a4bb7d6-f557-4dac-a6cf-945387f540d6 + + 9e4f9ffd-bf3e-46f4-885b-c47717e0e23c - String + Uniqueidentifier false false false false canmodifyadditionalsettings - true + false - 2 + 11 1900-01-01T00:00:00 - f2d8dee2-2241-db11-898a-0007e9e17ebd + 3dcb78f0-5272-4950-aa12-fff070cd5319 true - Name of the role template. + Unique identifier for address 1. 1033 + + ef12c75c-950b-4c30-a009-177f4e9cb9cc + + true + Entydigt id for adresse 1. + 1030 + - f2d8dee2-2241-db11-898a-0007e9e17ebd + 3dcb78f0-5272-4950-aa12-fff070cd5319 true - Name of the role template. + Unique identifier for address 1. 1033 - - + + + b8debc28-fadd-4268-928a-76535bc76b33 + + true + Address 1: ID + 1033 + + + 324cfa8d-be7d-48db-b4f2-a1805a94921d + + true + Adresse 1: Id + 1030 + + + + b8debc28-fadd-4268-928a-76535bc76b33 + + true + Address 1: ID + 1033 + - roletemplate + publisher - true + false canmodifyauditsettings - true + false false @@ -248742,16 +261120,16 @@ false true - false - true + true + false false isrenameable false false - true - true + false + false false true @@ -248770,95 +261148,112 @@ true true - name + address1_addressid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - Name + Address1_AddressId - StringType + UniqueidentifierType 5.0.0.0 - false - 0 + true + - Text - Auto - 100 - - - Text - - - false - 0 - 200 - - 4b79e09a-7afb-47ac-b72d-539954719ed3 + + a7e66424-df48-4d14-ba73-5b25d114040c - Uniqueidentifier + Picklist false false false false canmodifyadditionalsettings - true + false - 1 + 8 1900-01-01T00:00:00 - 8dd8dee2-2241-db11-898a-0007e9e17ebd + ffe30382-0d17-4609-a77f-f455897fd5fc true - Unique identifier of the role template. + Type of address for address 1, such as billing, shipping, or primary address. 1033 + + 0a4f9beb-1931-4339-b313-89ba0adbe7a5 + + true + Adressetypen for adresse 1, f.eks. faktureringsadresse, forsendelsesadresse eller primær adresse. + 1030 + - 8dd8dee2-2241-db11-898a-0007e9e17ebd + ffe30382-0d17-4609-a77f-f455897fd5fc true - Unique identifier of the role template. + Type of address for address 1, such as billing, shipping, or primary address. 1033 - - + + + 7cf97fe5-8215-466c-898b-fa37f6d498ad + + true + Address 1: Address Type + 1033 + + + 1373e8dc-ccdb-4285-93ba-fb233a04106e + + true + Adresse 1: Adressetype + 1030 + + + + 7cf97fe5-8215-466c-898b-fa37f6d498ad + + true + Address 1: Address Type + 1033 + - roletemplate + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false - true + false true canmodifyglobalfiltersettings false true - true + false false false @@ -248866,7 +261261,7 @@ false false - true + false false false @@ -248880,43 +261275,158 @@ false true - false - false + true + true true - false + true true - roletemplateid + address1_addresstypecode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - RoleTemplateId + Address1_AddressTypeCode - UniqueidentifierType + PicklistType 5.0.0.0 - false - + true + 0 + 1 + + a063ff34-c563-4239-98fc-1fefc488b5be + + + + + 65c2ca3d-6f34-463c-8302-5627b6f019b4 + + true + Type of address for address 1, such as billing, shipping, or primary address. + 1033 + + + 4ec25018-e6c2-4f72-b139-e0855ecfbe9b + + true + Adressetypen for adresse 1, f.eks. faktureringsadresse, forsendelsesadresse eller primær adresse. + 1030 + + + + 65c2ca3d-6f34-463c-8302-5627b6f019b4 + + true + Type of address for address 1, such as billing, shipping, or primary address. + 1033 + + + + + + 8343a6e5-8bc3-4bc8-8100-0eefeaf1547e + + true + Address 1: Address Type + 1033 + + + 9868b943-8c67-4d6b-969d-150457426357 + + true + Adresse 1: Adressetype + 1030 + + + + 8343a6e5-8bc3-4bc8-8100-0eefeaf1547e + + true + Address 1: Address Type + 1033 + + + + false + + false + iscustomizable + true + + false + true + publisher_address1_addresstypecode + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + bc522633-af7f-4207-b584-28f70361e6c8 + + true + Default Value + 1033 + + + 584f2c9e-b8ba-4377-aaa9-9490bb03f7ea + + true + Standardværdi + 1030 + + + + bc522633-af7f-4207-b584-28f70361e6c8 + + true + Default Value + 1033 + + + + 1 + + + + + + + + 0 + + - - 757ae9d4-c49e-425d-be66-86753cd0fc06 + + b2db7faa-f208-4357-a139-f4a912baf013 - - Boolean + address1_addresstypecode + Virtual false false false false canmodifyadditionalsettings - true + false - 4 + 61 1900-01-01T00:00:00 @@ -248927,13 +261437,13 @@ - roletemplate + publisher - true + false canmodifyauditsettings - true + false false @@ -248973,610 +261483,238 @@ false false false - false + true false false - upgrading + address1_addresstypecodename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - Upgrading + Address1_AddressTypeCodeName - BooleanType + VirtualType 5.0.0.0 - false - 0 + true + - false - - 2dfd3e35-2c38-401b-b523-5cb5b4c7fdd7 - - - - - - - - - - - false - - false - iscustomizable - false - - false - true - roletemplate_upgrading - Boolean - 5.0.0.0 - - + + + b33eada2-e138-41e6-83bb-6ab9f6742a0f + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 54 + 1900-01-01T00:00:00 + + + + + d0daf291-3ecf-4c92-afc4-307e661607a7 + + true + City name for address 1. + 1033 + + + ea79227f-6c16-4b89-8443-6e8aac670b80 + + true + Bynavn i adresse 1. + 1030 + + + + d0daf291-3ecf-4c92-afc4-307e661607a7 - - - - - - - false - true - - - - 9158aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 9158aec5-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - + true + City name for address 1. + 1033 + + + + + + 850babd8-70b2-4f0e-a7dc-cbb03b042106 + + true + City + 1033 + + + 3f3fe84a-c642-46d9-8ad8-3b93b1abe945 + + true + By + 1030 + + + + 850babd8-70b2-4f0e-a7dc-cbb03b042106 - - - - - - - false - true - - - - 9358aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 9358aec5-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - + true + City + 1033 + + + publisher + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + address1_city + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address1_City + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 80 + + + Text + + false 0 + 160 - - false - false - false - - false - canbeincustomentityassociation - false - - - false - canbeinmanytomany - false - - - false - canbeprimaryentityinrelationship - false - - - false - canberelatedentityinrelationship - false - - true - - false - canchangetrackingbeenabled - false - - - false - cancreateattributes - false - - - false - cancreatecharts - false - - - false - cancreateforms - false - - - false - cancreateviews - false - - - false - canenablesynctoexternalsearchindex - false - - - true - canmodifyadditionalsettings - false - - false - false - Local - 1900-01-01T00:00:00 - - - false - - - - f90a19a7-2241-db11-898a-0007e9e17ebd - - true - Template for a role. Defines initial attributes that will be used when creating a new role. - 1033 - - - - f90a19a7-2241-db11-898a-0007e9e17ebd - - true - Template for a role. Defines initial attributes that will be used when creating a new role. - 1033 - - - - - - fb0a19a7-2241-db11-898a-0007e9e17ebd - - true - Role Templates - 1033 - - - - fb0a19a7-2241-db11-898a-0007e9e17ebd - - true - Role Templates - 1033 - - - - - - fa0a19a7-2241-db11-898a-0007e9e17ebd - - true - Role Template - 1033 - - - - fa0a19a7-2241-db11-898a-0007e9e17ebd - - true - Role Template - 1033 - - - false - - false - false - false - false - - - - - false - false - false - false - - false - canmodifyauditsettings - false - - false - false - false - - false - canmodifyconnectionsettings - false - - false - - false - iscustomizable - false - - false - false - - false - canmodifyduplicatedetectionsettings - false - - false - false - false - false - false - false - false - - false - canmodifymailmergesettings - false - - true - - false - ismappable - false - - false - false - - false - canmodifymobileclientreadonly - false - - true - - false - isrenameable - false - - false - false - false - false - false - false - - false - canmodifyqueuesettings - false - - - false - canmodifymobilevisibility - false - - - false - canmodifymobileclientvisibility - false - - roletemplate - - - 8b366d6f-d389-11db-9246-00123f3a1b51 - - false - - false - iscustomizable - false - - true - false - roletemplateprivileges_association - None - 5.0.0.0 - ManyToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - roletemplateid - roletemplate - roletemplateprivileges_association - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - privilegeid - privilege - roletemplateprivileges_association - roletemplateprivileges - - - - 1900-01-01T00:00:00 - 1037 - - - 1dcef322-6478-4fce-9244-ab491ddee667 - - false - - false - iscustomizable - false - - true - false - userentityinstancedata_roletemplate - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - roletemplateid - roletemplate - userentityinstancedata_roletemplate - objectid - userentityinstancedata - objectid_roletemplate - - 0 - - - d56d1bc2-5777-4f1d-a233-7a97be39fdfb - - false - - false - iscustomizable - false - - true - false - role_template_roles - Append - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - roletemplateid - roletemplate - role_template_roles - roletemplateid - role - roletemplateid - - 1 - - - - 8 - None - - roletemplateid - - roletemplateid - - name - - - - RoleTemplate - - - false - Standard - false - 5.0.0.0 - - - false - canchangehierarchicalrelationship - false - - - false - RoleTemplates - - - false - - roletemplates - 0 - roletemplates - false - - true - canmodifymobileclientoffline - false - - false - false - - false - false - - - - sdkmessage - - 0da6aba6-574f-434f-bb22-95da51f19b40 - - 0 - - - ff17f16b-b742-4a92-860d-5dd206bb6b1b + + c0b16553-22b6-4b15-94aa-9206d4123b1d - Boolean + String false false false false canmodifyadditionalsettings - true + false - 11 + 15 1900-01-01T00:00:00 - 460b19a7-2241-db11-898a-0007e9e17ebd + 11620381-3831-4c67-a4ed-2b33e46f1fec true - Information about whether the SDK message is automatically transacted. + Country/region name for address 1. 1033 + + 95c74389-6304-4385-ad5e-200f532278a9 + + true + Lande- eller områdenavn i adresse 1. + 1030 + - 460b19a7-2241-db11-898a-0007e9e17ebd + 11620381-3831-4c67-a4ed-2b33e46f1fec true - Information about whether the SDK message is automatically transacted. + Country/region name for address 1. 1033 - 617031ae-1834-11df-b172-00188b01dce6 + aad3391b-1fa1-40c6-9252-f299a8004e7c true - Auto Transact + Country/Region 1033 + + 545c5433-db8a-4c97-87e1-e41fac49c0e1 + + true + Land/område + 1030 + - 617031ae-1834-11df-b172-00188b01dce6 + aad3391b-1fa1-40c6-9252-f299a8004e7c true - Auto Transact + Country/Region 1033 - sdkmessage + publisher @@ -249588,7 +261726,7 @@ false iscustomizable - false + true false false @@ -249606,7 +261744,7 @@ false false - true + false false false @@ -249620,280 +261758,107 @@ true true - false + true true true true true - autotransact + address1_country 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - AutoTransact + Address1_Country - BooleanType + StringType 5.0.0.0 - false + true 0 - false - - 7d1d62ea-ad6f-4cff-96f0-7e487e3288bc - - - - - 489912ed-46e5-4991-8c30-747336d877bb - - true - Information about whether the SDK message is automatically transacted. - 1033 - - - - 489912ed-46e5-4991-8c30-747336d877bb - - true - Information about whether the SDK message is automatically transacted. - 1033 - - - - - - - - false - - false - iscustomizable - false - - true - true - sdkmessage_autotransact - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 0725b0cb-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0725b0cb-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 0925b0cb-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 0925b0cb-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - + Text + Active + 80 + + + Text + + false 0 + 160 - - 12e865d4-b659-4b8a-a979-ee420fa833c9 - - autotransact - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 55 - 1900-01-01T00:00:00 - - - - - - - - - - sdkmessage - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - autotransactname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - AutoTransactName - - - VirtualType - - 5.0.0.0 - true - - - - - ce6a970f-ac1c-447d-9905-4cb621306518 + + 4901a447-96cb-4dcd-9959-9ce50a056bdb - Integer + String false false false false canmodifyadditionalsettings - true + false - 14 + 23 1900-01-01T00:00:00 - 500b19a7-2241-db11-898a-0007e9e17ebd + 3f0f0814-38f2-4c05-8853-1650db9738fc true - Identifies where a method will be exposed. 0 - Server, 1 - Client, 2 - both. + County name for address 1. 1033 + + e66afee0-23bc-4dc2-a2c4-4146a520358f + + true + Region i adresse 1. + 1030 + - 500b19a7-2241-db11-898a-0007e9e17ebd + 3f0f0814-38f2-4c05-8853-1650db9738fc true - Identifies where a method will be exposed. 0 - Server, 1 - Client, 2 - both. + County name for address 1. 1033 - 617031af-1834-11df-b172-00188b01dce6 + 073fdc43-2e56-4b53-b6c1-3ed677383541 true - Availability + Address 1: County 1033 + + 53c8e0e8-de63-4d3a-bf96-b51bc822a3c4 + + true + Adresse 1: Region + 1030 + - 617031af-1834-11df-b172-00188b01dce6 + 073fdc43-2e56-4b53-b6c1-3ed677383541 true - Availability + Address 1: County 1033 - sdkmessage + publisher @@ -249905,7 +261870,7 @@ false iscustomizable - false + true false false @@ -249923,7 +261888,7 @@ false false - true + false false false @@ -249937,36 +261902,42 @@ true true - false + true true true true true - availability + address1_county 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - Availability + Address1_County - IntegerType + StringType 5.0.0.0 - false + true 0 - None - 2147483647 - -2147483648 + Text + Active + 50 + + + Text + + false 0 + 100 - 561e1741-575e-4464-af35-6a99e0a6e47c + 97536262-59a9-4216-9411-a5d9ede54928 String @@ -249976,48 +261947,62 @@ false canmodifyadditionalsettings - true + false - 5 + 24 1900-01-01T00:00:00 - 4e0b19a7-2241-db11-898a-0007e9e17ebd + c2a73ac7-25be-4cff-8af2-29f64b6d7a28 true - If this is a categorized method, this is the name, otherwise None. + Fax number for address 1. 1033 + + 34f0267c-3ca1-4c52-9ca8-42f3bc7041f4 + + true + Faxnummer til adresse 1. + 1030 + - 4e0b19a7-2241-db11-898a-0007e9e17ebd + c2a73ac7-25be-4cff-8af2-29f64b6d7a28 true - If this is a categorized method, this is the name, otherwise None. + Fax number for address 1. 1033 - 34ccdcff-27c8-4649-ae03-1d9394bda68b + 4f7f0d94-a8df-4e1a-80b6-dc64e630e19f true - Category Name + Address 1: Fax 1033 + + 4eabc723-0a94-4c07-9ade-8cecf3afdc36 + + true + Adresse 1: Fax + 1030 + - 34ccdcff-27c8-4649-ae03-1d9394bda68b + 4f7f0d94-a8df-4e1a-80b6-dc64e630e19f true - Category Name + Address 1: Fax 1033 - sdkmessage + publisher @@ -250029,7 +262014,7 @@ false iscustomizable - false + true false false @@ -250047,7 +262032,7 @@ false false - true + false false false @@ -250061,31 +262046,31 @@ true true - false + true true true true true - categoryname + address1_fax 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - CategoryName + Address1_Fax StringType 5.0.0.0 - false + true 0 Text - Auto - 25 + Inactive + 50 Text @@ -250093,73 +262078,87 @@ false 0 - 50 + 100 - - 7fa7580f-de4a-4699-8c53-da4773889564 + + b72908e6-548e-4d0a-83a7-8f0b205ecbab - Picklist + Double false false false false canmodifyadditionalsettings - true + false - 70 + 13 1900-01-01T00:00:00 - dddce0f7-acde-4558-b8eb-ffae5de564e4 + be42107d-d458-4f3e-a028-f3bbf861f797 true - For internal use only. + Latitude for address 1. 1033 + + 70cd47ad-8b6d-4ab4-84f5-b3ac02823598 + + true + Breddegrad for adresse 1. + 1030 + - dddce0f7-acde-4558-b8eb-ffae5de564e4 + be42107d-d458-4f3e-a028-f3bbf861f797 true - For internal use only. + Latitude for address 1. 1033 - 306adf51-46f6-4b29-a358-f7b67afdbd3d + 26c4e2d8-486c-4e2c-946c-0b245f141a65 true - Component State + Address 1: Latitude 1033 + + d17ab2c7-6d83-4903-9e43-53b12f9e95d4 + + true + Adresse 1: Breddegrad + 1030 + - 306adf51-46f6-4b29-a358-f7b67afdbd3d + 26c4e2d8-486c-4e2c-946c-0b245f141a65 true - Component State + Address 1: Latitude 1033 - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -250188,290 +262187,117 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - componentstate + address1_latitude 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - ComponentState + Address1_Latitude - PicklistType + DoubleType - 9.0.0.0 - false + 5.0.0.0 + true 0 - -1 - - faece09f-cefc-11de-8150-00155da18b00 - - - - - faece0a1-cefc-11de-8150-00155da18b00 - - true - The state of this component. - 1033 - - - - faece0a1-cefc-11de-8150-00155da18b00 - - true - The state of this component. - 1033 - - - - - - faece0a0-cefc-11de-8150-00155da18b00 - - true - Component State - 1033 - - - - faece0a0-cefc-11de-8150-00155da18b00 - - true - Component State - 1033 - - - - false - - false - iscustomizable - false - - true - true - componentstate - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - faece0a3-cefc-11de-8150-00155da18b00 - - true - Published - 1033 - - - - faece0a3-cefc-11de-8150-00155da18b00 - - true - Published - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - faece0a5-cefc-11de-8150-00155da18b00 - - true - Unpublished - 1033 - - - - faece0a5-cefc-11de-8150-00155da18b00 - - true - Unpublished - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - faece0a7-cefc-11de-8150-00155da18b00 - - true - Deleted - 1033 - - - - faece0a7-cefc-11de-8150-00155da18b00 - - true - Deleted - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 1f83e0bb-cefd-11de-8150-00155da18b00 - - true - Deleted Unpublished - 1033 - - - - 1f83e0bb-cefd-11de-8150-00155da18b00 - - true - Deleted Unpublished - 1033 - - - - 3 - - - - - - + Disabled + 90 + -90 + 5 0 - - - - ebb534c2-5cde-4002-af1f-e83f3121f4c3 + + 2ccee14b-98ea-4f57-8f8c-d7b37b5a8f7a - Lookup + String false false false false canmodifyadditionalsettings - true + false - 4 + 52 1900-01-01T00:00:00 - 440b19a7-2241-db11-898a-0007e9e17ebd + 0cdc5944-2056-4bf2-9ee7-18286b3ed7cf true - Unique identifier of the user who created the SDK message. + First line for entering address 1 information. 1033 + + 32219af2-c960-44de-9cf2-c8a37d8ee221 + + true + Første linje til angivelse af oplysninger om adresse 1. + 1030 + - 440b19a7-2241-db11-898a-0007e9e17ebd + 0cdc5944-2056-4bf2-9ee7-18286b3ed7cf true - Unique identifier of the user who created the SDK message. + First line for entering address 1 information. 1033 - 617031b0-1834-11df-b172-00188b01dce6 + 1db76166-dba5-42fb-8e5e-ace235f507b8 true - Created By + Street 1 1033 + + 2f1fb892-a9e6-4577-88de-c682eafec663 + + true + Gade 1 + 1030 + - 617031b0-1834-11df-b172-00188b01dce6 + 1db76166-dba5-42fb-8e5e-ace235f507b8 true - Created By + Street 1 1033 - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -250502,38 +262328,45 @@ canmodifysearchsettings true - false - false + true + true true true - false + true true - createdby + address1_line1 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedBy + Address1_Line1 - LookupType + StringType 5.0.0.0 - false - + true + 0 - None - - systemuser - + Text + Active + 50 + + + Text + + + false + 0 + 100 - 7377cbe8-0291-4a20-98b6-69eb1cd825da + 8b7b0dec-5f6e-4671-901b-681c9a4192f8 - createdby + String false false @@ -250541,32 +262374,74 @@ false canmodifyadditionalsettings - true + false - 56 + 47 1900-01-01T00:00:00 - - + + + a5e47125-686d-4991-b4dd-7bb8e2b22be4 + + true + Second line for entering address 1 information. + 1033 + + + 09398dde-9e7c-4da6-9264-bce67345c595 + + true + Anden linje til angivelse af oplysninger om adresse 1. + 1030 + + + + a5e47125-686d-4991-b4dd-7bb8e2b22be4 + + true + Second line for entering address 1 information. + 1033 + - - + + + 55547fbc-e1be-4669-85ff-a162736cdfe5 + + true + Street 2 + 1033 + + + 305e8ec9-a126-46d1-a011-08baef054ec6 + + true + Gade 2 + 1030 + + + + 55547fbc-e1be-4669-85ff-a162736cdfe5 + + true + Street 2 + 1033 + - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -250595,23 +262470,23 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - createdbyname - 2025-11-06T00:19:25.9500032 + address1_line2 + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedByName + Address1_Line2 StringType @@ -250621,8 +262496,8 @@ 0 Text - Auto - 100 + Active + 50 Text @@ -250630,73 +262505,87 @@ false 0 - 320 + 100 - - 38148c52-f238-47f4-84f3-e27e66c0c8a3 + + 5af71f68-ad81-4ef0-a916-adaed57006b3 - DateTime + String false false false false canmodifyadditionalsettings - true + false - 13 + 9 1900-01-01T00:00:00 - 4f0b19a7-2241-db11-898a-0007e9e17ebd + e7c88f2f-8795-4d40-b550-92ced4832d21 true - Date and time when the SDK message was created. + Third line for entering address 1 information. 1033 + + 0e7f9ca0-393f-4cc3-9e53-b772a1e5e9b3 + + true + Tredje linje til angivelse af oplysninger om adresse 1. + 1030 + - 4f0b19a7-2241-db11-898a-0007e9e17ebd + e7c88f2f-8795-4d40-b550-92ced4832d21 true - Date and time when the SDK message was created. + Third line for entering address 1 information. 1033 - 617031b1-1834-11df-b172-00188b01dce6 + 62f47c83-7147-4cdf-9a8a-505b85841ede true - Created On + Street 3 1033 + + 21222fa9-a8ad-4870-9ee3-943cb14e3e05 + + true + Gade 3 + 1030 + - 617031b1-1834-11df-b172-00188b01dce6 + 62f47c83-7147-4cdf-9a8a-505b85841ede true - Created On + Street 3 1033 - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -250727,107 +262616,120 @@ canmodifysearchsettings true - false - false + true + true true true - false + true true - createdon + address1_line3 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOn + Address1_Line3 - DateTimeType + StringType 5.0.0.0 - false + true 0 - DateAndTime - Inactive + Text + Active + 50 + + + Text + + false 0 - - false - canmodifybehavior - false - - - UserLocal - + 100 - - 37ed5000-e666-4114-b8e0-9a1535721d3b + + 51fae0b5-3695-4205-9f02-752aaadc84c0 - Lookup + Double false false false false canmodifyadditionalsettings - true + false - 18 + 40 1900-01-01T00:00:00 - 5ca7fe52-05f5-4d87-aa8e-b75f6f639a77 + d9cbb8c7-091a-474a-9391-b8ff36246d89 true - Unique identifier of the delegate user who created the sdkmessage. + Longitude for address 1. 1033 + + e2d22c5a-1765-470f-9ba4-17febb9b3c5a + + true + Længdegrad for adresse 1. + 1030 + - 5ca7fe52-05f5-4d87-aa8e-b75f6f639a77 + d9cbb8c7-091a-474a-9391-b8ff36246d89 true - Unique identifier of the delegate user who created the sdkmessage. + Longitude for address 1. 1033 - 85123a34-c490-422a-896f-07f6f7068b87 + f98c509f-9186-4f9d-aeb4-a9d6a63dff88 true - Created By (Delegate) + Address 1: Longitude 1033 + + ad562a83-1b4f-47ce-b001-28a8cdce20cb + + true + Adresse 1: Længdegrad + 1030 + - 85123a34-c490-422a-896f-07f6f7068b87 + f98c509f-9186-4f9d-aeb4-a9d6a63dff88 true - Created By (Delegate) + Address 1: Longitude 1033 - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -250858,140 +262760,40 @@ canmodifysearchsettings true - false - false + true + true true true - false + true true - createdonbehalfby + address1_longitude 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOnBehalfBy - - - LookupType - - 5.0.0.0 - false - - - None - - systemuser - - - - 7ad5efc3-3743-4efa-8de7-f234300f1a1e - - createdonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 26 - 1900-01-01T00:00:00 - - - - - - - - - - sdkmessage - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - createdonbehalfbyname - 2025-11-06T00:19:23.04 - - false - canmodifyrequirementlevelsettings - None - - CreatedOnBehalfByName + Address1_Longitude - StringType + DoubleType 5.0.0.0 true 0 - Text - Auto - 100 - - - Text - + Disabled + 180 + -180 + 5 - false 0 - 320 - b2761f38-1062-4d61-8da5-a142948a2fff + 5eca2a13-f151-4f93-91bc-b4df145f4955 - createdonbehalfby + String false false @@ -250999,32 +262801,74 @@ false canmodifyadditionalsettings - true + false - 27 + 28 1900-01-01T00:00:00 - - + + + 871c50b9-5ef0-49b9-8365-830526400eee + + true + Name to enter for address 1. + 1033 + + + 27d4b083-10e9-41a3-a9ca-fb8f842f2541 + + true + Det navn, der skal angives for adresse 1. + 1030 + + + + 871c50b9-5ef0-49b9-8365-830526400eee + + true + Name to enter for address 1. + 1033 + - - + + + 873cb2b5-6bf6-4f33-a61c-066e7cfd04c7 + + true + Address 1: Name + 1033 + + + 803fe4a4-2ed8-47ff-9515-3a4a30471c02 + + true + Adresse 1: Navn + 1030 + + + + 873cb2b5-6bf6-4f33-a61c-066e7cfd04c7 + + true + Address 1: Name + 1033 + - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -251053,23 +262897,23 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - createdonbehalfbyyominame - 2025-11-06T00:19:27.0269952 + address1_name + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOnBehalfByYomiName + Address1_Name StringType @@ -251079,56 +262923,84 @@ 0 Text - Auto + Active 100 - createdonbehalfbyname + Text false 0 - 320 + 400 - - db5560f9-b986-4578-b050-4deef86390ec + + 34836951-ff33-4383-8d45-54bd187d7620 - Integer + String false false false false canmodifyadditionalsettings - true + false - 6 + 50 1900-01-01T00:00:00 - 430b19a7-2241-db11-898a-0007e9e17ebd + 5c8fc8b7-7e90-4dfa-ba11-626af1278f8d true - Customization level of the SDK message. + ZIP Code or postal code for address 1. 1033 + + 8ed03144-e0d3-4c3d-9d62-129475ea6dbf + + true + Postnummer i adresse 1. + 1030 + - 430b19a7-2241-db11-898a-0007e9e17ebd + 5c8fc8b7-7e90-4dfa-ba11-626af1278f8d true - Customization level of the SDK message. + ZIP Code or postal code for address 1. 1033 - - + + + 54286b62-91c5-4801-a85b-d7a7099562a2 + + true + ZIP/Postal Code + 1033 + + + e78ef0ad-401c-4a0b-982c-fe449521b4d6 + + true + Postnummer + 1030 + + + + 54286b62-91c5-4801-a85b-d7a7099562a2 + + true + ZIP/Postal Code + 1033 + - sdkmessage + publisher @@ -251140,7 +263012,7 @@ false iscustomizable - false + true false false @@ -251169,39 +263041,45 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - customizationlevel + address1_postalcode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - CustomizationLevel + Address1_PostalCode - IntegerType + StringType 5.0.0.0 - false + true 0 - None - 255 - -255 + Text + Inactive + 20 + + + Text + + false 0 + 40 - 0b60d691-2518-4c01-ac63-790a6b5be680 + fab83480-bf6c-4c3a-b577-e9abae6ab94b String @@ -251213,63 +263091,77 @@ canmodifyadditionalsettings false - 10000 - 2025-11-06T01:14:21.1570048 + 31 + 1900-01-01T00:00:00 - ec2a557e-fb31-4d63-8d40-8517cfacd726 + eb240d6a-eeec-4f92-87f0-f2ff129121ff true - Name of the privilege that allows execution of the SDK message + Post office box number for address 1. 1033 + + 677c07ed-18f7-48c4-bd82-821bb0262f54 + + true + Postboksnummer i adresse 1. + 1030 + - ec2a557e-fb31-4d63-8d40-8517cfacd726 + eb240d6a-eeec-4f92-87f0-f2ff129121ff true - Name of the privilege that allows execution of the SDK message + Post office box number for address 1. 1033 - 651d81e2-e8f1-4a41-a956-394c5b26ce3b + d4808fdd-17de-46af-92ee-99738b1b47fb true - Execute Privilege Name + Address 1: Post Office Box 1033 + + 5779a6ee-3cf1-4a7c-9f75-3ce351416f93 + + true + Adresse 1: Postboksnummer + 1030 + - 651d81e2-e8f1-4a41-a956-394c5b26ce3b + d4808fdd-17de-46af-92ee-99738b1b47fb true - Execute Privilege Name + Address 1: Post Office Box 1033 - sdkmessage + publisher true canmodifyauditsettings - false + true false false iscustomizable - false + true false false - false + true canmodifyglobalfiltersettings false @@ -251286,7 +263178,7 @@ false false - false + true canmodifyissortablesettings false @@ -251302,87 +263194,101 @@ true true - executeprivilegename - 2025-11-06T01:14:21.1570048 + address1_postofficebox + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ExecutePrivilegeName + Address1_PostOfficeBox StringType - 9.1.0.0 - false + 5.0.0.0 + true 0 Text - Auto - 100 + Inactive + 20 Text - + false 0 - 200 + 40 - - 4fa9dd8a-1aca-4ed9-a9ad-f3e17427f7ac + + ebc5a88b-30c1-49ed-9494-80675f54b7a3 - Boolean + Picklist false false false false canmodifyadditionalsettings - true + false - 10 + 18 1900-01-01T00:00:00 - 4c0b19a7-2241-db11-898a-0007e9e17ebd + e0bab70b-3b0f-4bde-8a95-cdef4f14b097 true - Indicates whether the SDK message should have its requests expanded per primary entity defined in its filters. + Method of shipment for address 1. 1033 + + b4649b1d-0e51-4436-9e39-e1fa57e4b5e7 + + true + Forsendelsesmåde for adresse 1. + 1030 + - 4c0b19a7-2241-db11-898a-0007e9e17ebd + e0bab70b-3b0f-4bde-8a95-cdef4f14b097 true - Indicates whether the SDK message should have its requests expanded per primary entity defined in its filters. + Method of shipment for address 1. 1033 - 617031b2-1834-11df-b172-00188b01dce6 + f26a1229-e65e-4e8b-bdbf-f3ba98287439 true - Expand + Address 1: Shipping Method 1033 + + cd31e643-a008-4537-bf5e-c62ebb551833 + + true + Adresse 1: Forsendelsesmåde + 1030 + - 617031b2-1834-11df-b172-00188b01dce6 + f26a1229-e65e-4e8b-bdbf-f3ba98287439 true - Expand + Address 1: Shipping Method 1033 - sdkmessage + publisher @@ -251394,7 +263300,7 @@ false iscustomizable - false + true false false @@ -251423,143 +263329,151 @@ false canmodifysearchsettings - true + false true - false + true true true true true - expand + address1_shippingmethodcode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Expand + Address1_ShippingMethodCode - BooleanType + PicklistType 5.0.0.0 - false + true 0 - false + 1 - a00decf6-c5c4-4846-b01d-4ad0dfd18101 + 158411f6-bc43-4d9e-b434-96bb26be9aa2 - 91cf91ce-0fc2-4cee-b63a-dff13e0b2709 + b7ae2c17-82ef-4961-b3b5-b219f5ae7e6d true - Indicates whether the SDK message should have its requests expanded per primary entity defined in its filters. + Method of shipment for address 1. 1033 + + cf060701-b258-4924-84ae-31df21938e0f + + true + Forsendelsesmåde for adresse 1. + 1030 + - 91cf91ce-0fc2-4cee-b63a-dff13e0b2709 + b7ae2c17-82ef-4961-b3b5-b219f5ae7e6d true - Indicates whether the SDK message should have its requests expanded per primary entity defined in its filters. + Method of shipment for address 1. 1033 - - + + + ad2ec1d8-cb3b-40a5-8c5c-27527e9307b0 + + true + Address 1: Shipping Method + 1033 + + + 379a73be-be0a-4b9d-bb16-34dd0787f214 + + true + Adresse 1: Forsendelsesmåde + 1030 + + + + ad2ec1d8-cb3b-40a5-8c5c-27527e9307b0 + + true + Address 1: Shipping Method + 1033 + false false iscustomizable - false + true false true - sdkmessage_expand - Boolean + publisher_address1_shippingmethodcode + Picklist 5.0.0.0 - - - - - - - - - - false - true - - - - 0b25b0cb-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0b25b0cb-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 0d25b0cb-e780-db11-9b85-00137299e160 + + + + + + + + + + + false + true + + + + 39d1d9b7-55bf-4488-b9fc-83f20dc13012 + + true + Default Value + 1033 + + + b60a46de-dcb8-4652-b11b-1e9bf505a73c + + true + Standardværdi + 1030 + + + + 39d1d9b7-55bf-4488-b9fc-83f20dc13012 - true - Yes - 1033 - - - - 0d25b0cb-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - + true + Default Value + 1033 + + + + 1 + + + + + 0 + + - a5e9496c-d9a8-4c85-9b14-80bef8f8177d + ea3ef15b-23d0-4ada-bc61-393489c34488 - expand + address1_shippingmethodcode Virtual false false @@ -251567,9 +263481,9 @@ false canmodifyadditionalsettings - true + false - 57 + 56 1900-01-01T00:00:00 @@ -251580,7 +263494,7 @@ - sdkmessage + publisher @@ -251630,14 +263544,14 @@ false false - expandname + address1_shippingmethodcodename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ExpandName + Address1_ShippingMethodCodeName VirtualType @@ -251648,7 +263562,7 @@ - 6295db6c-ca30-48b7-bbc6-d6a6d7776398 + a0ddb9af-d81a-4ad9-8c8f-453713b3a158 String @@ -251660,46 +263574,60 @@ canmodifyadditionalsettings false - 73 + 51 1900-01-01T00:00:00 - 06528a8b-fae1-484b-b28f-9abf3f5159f9 + cb3b9061-7321-47da-9347-b319f9b61d60 true - Version in which the component is introduced. + State or province for address 1. 1033 + + ca0d90ab-2a21-40c9-9af0-37d6e3f91edb + + true + Område i adresse 1. + 1030 + - 06528a8b-fae1-484b-b28f-9abf3f5159f9 + cb3b9061-7321-47da-9347-b319f9b61d60 true - Version in which the component is introduced. + State or province for address 1. 1033 - 301a8e46-ed8d-4155-b310-c95869bcdb11 + 48feecc4-aed9-4a17-b0b4-a94330d0bb4b true - Introduced Version + State/Province 1033 + + bf1dec5c-a496-4b07-a11e-c5fbc4712ad2 + + true + Område + 1030 + - 301a8e46-ed8d-4155-b310-c95869bcdb11 + 48feecc4-aed9-4a17-b0b4-a94330d0bb4b true - Introduced Version + State/Province 1033 - sdkmessage + publisher @@ -251711,7 +263639,7 @@ false iscustomizable - false + true false false @@ -251740,96 +263668,110 @@ false canmodifysearchsettings - false + true true - false - false + true + true true - false + true true - introducedversion + address1_stateorprovince 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IntroducedVersion + Address1_StateOrProvince StringType - 9.0.0.0 - false + 5.0.0.0 + true 0 - VersionNumber - Auto - 48 + Text + Active + 50 - VersionNumber + Text false 0 - 96 + 100 - - 41d2be6f-9777-4f81-9169-d2570eb2a24c + + cc3a9f14-8167-4580-803c-fea04779b5bd - Boolean + String false false false false canmodifyadditionalsettings - true + false - 65 + 38 1900-01-01T00:00:00 - c3012164-2194-4188-a07d-885e969f9aff + 171daed9-70aa-4179-b5c6-4132f4d0e8af true - Information about whether the SDK message is active. + First telephone number associated with address 1. 1033 + + 36368af1-fa11-4f06-8b0e-b4ee3bd63a46 + + true + Første telefonnummer, der er tilknyttet adresse 1. + 1030 + - c3012164-2194-4188-a07d-885e969f9aff + 171daed9-70aa-4179-b5c6-4132f4d0e8af true - Information about whether the SDK message is active. + First telephone number associated with address 1. 1033 - 47292e29-a7ce-4221-86f4-d5070d0ae049 + 8f22956e-2b21-4945-a6aa-7aa7a472b027 true - Is Active + Phone 1033 + + b720d51c-bf22-466f-90c3-86557b47e9ce + + true + Telefon + 1030 + - 47292e29-a7ce-4221-86f4-d5070d0ae049 + 8f22956e-2b21-4945-a6aa-7aa7a472b027 true - Is Active + Phone 1033 - sdkmessage + publisher @@ -251841,7 +263783,7 @@ false iscustomizable - false + true false false @@ -251859,7 +263801,7 @@ false false - false + true false false @@ -251873,174 +263815,120 @@ true true - false + true true true true true - isactive + address1_telephone1 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IsActive + Address1_Telephone1 - BooleanType + StringType - 6.0.0.0 - false + 5.0.0.0 + true 0 - true - - ce450429-cac4-4559-ad7b-17fb4f717cac - - - - - 2b8a9f67-465a-495f-b7bc-b50adea27e1e - - true - Information about whether the SDK message is automatically transacted. - 1033 - - - - 2b8a9f67-465a-495f-b7bc-b50adea27e1e - - true - Information about whether the SDK message is automatically transacted. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - sdkmessage_isactive - Boolean - 6.0.0.0 - - - - - - - - - - false - true - - - - e3115f51-16e7-45d7-a6f4-c9582c69ab97 - - true - No - 1033 - - - - e3115f51-16e7-45d7-a6f4-c9582c69ab97 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 327a29e1-efb1-476f-a550-af00c9af7449 - - true - Yes - 1033 - - - - 327a29e1-efb1-476f-a550-af00c9af7449 - - true - Yes - 1033 - - - - 1 - - - + Text + Inactive + 50 + + + Text + + false 0 + 100 - - 4ac9a113-99e7-4d57-9132-f41cb99795dc + + 6e762b80-aca8-4940-b0ea-95e6921d3751 - isactive - Virtual + + String false false false false canmodifyadditionalsettings - true + false - 66 + 6 1900-01-01T00:00:00 - - + + + cfd3bf0a-17bd-447b-a1df-afb20747df0b + + true + Second telephone number associated with address 1. + 1033 + + + 18712abd-b59c-4676-9850-91086e25ca0d + + true + Andet telefonnummer, der er tilknyttet adresse 1. + 1030 + + + + cfd3bf0a-17bd-447b-a1df-afb20747df0b + + true + Second telephone number associated with address 1. + 1033 + - - - - sdkmessage - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - + + + 825ec7c2-542c-48cb-be3d-3d5c540f8e3b + + true + Address 1: Telephone 2 + 1033 + + + 12699d6c-b84c-4e98-a0a5-a86b0e1fc808 + + true + Adresse 1: Telefon 2 + 1030 + + + + 825ec7c2-542c-48cb-be3d-3d5c540f8e3b + + true + Address 1: Telephone 2 + 1033 + + + publisher + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + false false @@ -252068,85 +263956,110 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - isactivename + address1_telephone2 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IsActiveName + Address1_Telephone2 - VirtualType + StringType - 6.0.0.0 + 5.0.0.0 true - + 0 + Text + Inactive + 50 + + + Text + + + false + 0 + 100 - - fc07655d-09c1-43f8-bcfa-4a8608fa8656 + + cc579053-3cc0-4e4f-9e36-a4a6aad20006 - Boolean + String false false false false canmodifyadditionalsettings - true + false - 72 + 2 1900-01-01T00:00:00 - 4a5a9176-8aa8-47a4-9ecd-ec8c68fdaaca + c1e8b440-f682-4130-ba14-d70e0065faab true - Information that specifies whether this component is managed. + Third telephone number associated with address 1. 1033 + + 2bd6326e-7011-43d1-b39e-3d99aba18f32 + + true + Tredje telefonnummer, der er tilknyttet adresse 1. + 1030 + - 4a5a9176-8aa8-47a4-9ecd-ec8c68fdaaca + c1e8b440-f682-4130-ba14-d70e0065faab true - Information that specifies whether this component is managed. + Third telephone number associated with address 1. 1033 - c972fd19-cc41-4531-9cd8-6c38476e9d83 + b3dddb4f-d5f9-4f33-ab5f-734370dd2003 true - State + Address 1: Telephone 3 1033 + + 22f325ee-a603-4270-bb8b-0cb11240b366 + + true + Adresse 1: Telefon 3 + 1030 + - c972fd19-cc41-4531-9cd8-6c38476e9d83 + b3dddb4f-d5f9-4f33-ab5f-734370dd2003 true - State + Address 1: Telephone 3 1033 - sdkmessage + publisher @@ -252158,7 +264071,7 @@ false iscustomizable - false + true false false @@ -252187,190 +264100,122 @@ false canmodifysearchsettings - false + true - false - false + true + true true true - false + true true - ismanaged + address1_telephone3 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsManaged + Address1_Telephone3 - BooleanType + StringType - 9.0.0.0 - false + 5.0.0.0 + true 0 - false - - 9d04e035-5408-4c1d-a5aa-20445a02f691 - - - - - b41954a2-f3a5-47e9-ae13-ceb49de4465b - - true - Information about whether the current component is managed. - 1033 - - - - b41954a2-f3a5-47e9-ae13-ceb49de4465b - - true - Information about whether the current component is managed. - 1033 - - - - - - 45a188b1-91a8-4019-b582-cebda8081064 - - true - Is Component Managed - 1033 - - - - 45a188b1-91a8-4019-b582-cebda8081064 - - true - Is Component Managed - 1033 - - - - false - - false - iscustomizable - false - - true - true - ismanaged - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 443c7078-b7cb-47e7-8547-08dfa82950d0 - - true - Unmanaged - 1033 - - - - 443c7078-b7cb-47e7-8547-08dfa82950d0 - - true - Unmanaged - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - ec886b5b-7e97-4c62-b30c-bf295639d540 - - true - Managed - 1033 - - - - ec886b5b-7e97-4c62-b30c-bf295639d540 - - true - Managed - 1033 - - - - 1 - - - + Text + Inactive + 50 + + + Text + + false 0 + 100 - - 5b824a3c-d676-4449-9024-fa83730d0169 + + be1e7f45-d16b-48ef-bdf5-0ccd4c59da6d - ismanaged - Virtual + + String false false false false canmodifyadditionalsettings - true + false - 75 + 29 1900-01-01T00:00:00 - - + + + 2634d80c-93c2-4e96-9b22-f2556124c4bd + + true + United Parcel Service (UPS) zone for address 1. + 1033 + + + 378ec0d2-5f37-42c0-9e7e-13b9a6538057 + + true + UPS-zone (United Parcel Service) for adresse 1. + 1030 + + + + 2634d80c-93c2-4e96-9b22-f2556124c4bd + + true + United Parcel Service (UPS) zone for address 1. + 1033 + - - + + + a2d35df8-067a-434c-a35e-b172d01b97fe + + true + Address 1: UPS Zone + 1033 + + + 842e9593-ed7b-4b19-bfa4-d825d63b89a7 + + true + Adresse 1: UPS-zone + 1030 + + + + a2d35df8-067a-434c-a35e-b172d01b97fe + + true + Address 1: UPS Zone + 1033 + - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -252399,97 +264244,122 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - ismanagedname + address1_upszone 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IsManagedName + Address1_UPSZone - VirtualType + StringType - 9.0.0.0 + 5.0.0.0 true - + 0 + Text + Auto + 4 + + + Text + + + false + 0 + 8 - - 30454421-a811-4e30-a5bf-9368796cb1b6 + + 97a3a538-a3f2-4f66-8470-e7b8715319cb - Boolean + Integer false false false false canmodifyadditionalsettings - true + false - 2 + 21 1900-01-01T00:00:00 - 420b19a7-2241-db11-898a-0007e9e17ebd + 7d7b8a2e-1ac9-4a4f-b97f-e1e69612a5d4 true - Indicates whether the SDK message is private. + UTC offset for address 1. This is the difference between local time and standard Coordinated Universal Time. 1033 + + cd72013c-b13b-4061-ba9e-0741b4e19917 + + true + Forskydning fra GMT for adresse 1. Dette er forskellen mellem lokal tid og GMT-standardtid. + 1030 + - 420b19a7-2241-db11-898a-0007e9e17ebd + 7d7b8a2e-1ac9-4a4f-b97f-e1e69612a5d4 true - Indicates whether the SDK message is private. + UTC offset for address 1. This is the difference between local time and standard Coordinated Universal Time. 1033 - 617031b3-1834-11df-b172-00188b01dce6 + ed42853f-c2e8-4ee9-a4a2-d34247dd0156 true - Is Private + Address 1: UTC Offset 1033 + + 927d5bbf-ec79-416e-a0e8-694e34ca88f7 + + true + Adresse 1: Forskydning fra GMT + 1030 + - 617031b3-1834-11df-b172-00188b01dce6 + ed42853f-c2e8-4ee9-a4a2-d34247dd0156 true - Is Private + Address 1: UTC Offset 1033 - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -252518,164 +264388,104 @@ false canmodifysearchsettings - true + false true - false + true true true true true - isprivate + address1_utcoffset 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IsPrivate + Address1_UTCOffset - BooleanType + IntegerType 5.0.0.0 - false + true 0 - false - - 6bb7bb24-296f-42e7-b30d-fb72cbb3518a - - - - - 15768e08-99a2-4215-b3b3-df8a18fdae32 - - true - Indicates whether the SDK message is private. - 1033 - - - - 15768e08-99a2-4215-b3b3-df8a18fdae32 - - true - Indicates whether the SDK message is private. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - sdkmessage_isprivate - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 0f25b0cb-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0f25b0cb-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 1125b0cb-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1125b0cb-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - + TimeZone + 1500 + -1500 0 - d2ce4898-b740-41ea-9f2d-81f2d1f2cc80 + a966a9e3-14a2-4452-b261-e08c96ca5034 - isprivate - Virtual + + Uniqueidentifier false false false false canmodifyadditionalsettings - true + false - 60 + 12 1900-01-01T00:00:00 - - + + + db6e86f7-e05c-4f02-a7c9-54cd957c6e99 + + true + Unique identifier for address 2. + 1033 + + + d379422f-762b-4d09-a59f-5909e4cd9e29 + + true + Entydigt id for adresse 2. + 1030 + + + + db6e86f7-e05c-4f02-a7c9-54cd957c6e99 + + true + Unique identifier for address 2. + 1033 + - - + + + 22285271-f390-4e94-a6b9-5a39be97031c + + true + Address 2: ID + 1033 + + + ad2dd655-64d6-4e37-84a3-066de390b0f9 + + true + Adresse 2: Id + 1030 + + + + 22285271-f390-4e94-a6b9-5a39be97031c + + true + Address 2: ID + 1033 + - sdkmessage + publisher @@ -252697,7 +264507,7 @@ false true - false + true false false @@ -252718,87 +264528,101 @@ canmodifysearchsettings false - false + true false false true - false - false + true + true - isprivatename + address2_addressid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IsPrivateName + Address2_AddressId - VirtualType + UniqueidentifierType 5.0.0.0 true - - 667b1be4-f197-41b7-a286-819bd040c3d9 + + 35314d0f-0d40-4f9c-816c-d99c28adb089 - Boolean + Picklist false false false false canmodifyadditionalsettings - true + false - 28 + 7 1900-01-01T00:00:00 - be12ebe5-ab78-4279-bce3-3e0f65c0f82b + bbfc793a-6fc7-4de2-8ab0-cf9205f554ce true - Identifies whether an SDK message will be ReadOnly or Read Write. false - ReadWrite, true - ReadOnly . + Type of address for address 2. such as billing, shipping, or primary address. 1033 + + 886235b8-9fee-4a66-a916-4f5e5092b8a8 + + true + Adressetypen for adresse 2, f.eks. faktureringsadresse, forsendelsesadresse eller primær adresse. + 1030 + - be12ebe5-ab78-4279-bce3-3e0f65c0f82b + bbfc793a-6fc7-4de2-8ab0-cf9205f554ce true - Identifies whether an SDK message will be ReadOnly or Read Write. false - ReadWrite, true - ReadOnly . + Type of address for address 2. such as billing, shipping, or primary address. 1033 - 75340187-47ca-4dc4-a61e-7491c8d8009c + 032c886d-a084-4e21-b0d1-344f4c903fc6 true - Intent + Address 2: Address Type 1033 + + 8dd36dd4-b533-47aa-936e-cde592a4dbbc + + true + Adresse 2: Adressetype + 1030 + - 75340187-47ca-4dc4-a61e-7491c8d8009c + 032c886d-a084-4e21-b0d1-344f4c903fc6 true - Intent + Address 2: Address Type 1033 - sdkmessage + publisher - false + true canmodifyauditsettings true @@ -252806,7 +264630,7 @@ false iscustomizable - false + true false false @@ -252835,68 +264659,82 @@ false canmodifysearchsettings - true + false true - false + true true true - false + true true - isreadonly + address2_addresstypecode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsReadOnly + Address2_AddressTypeCode - BooleanType + PicklistType - 7.1.0.0 - false + 5.0.0.0 + true 0 - false + 1 - ee89f0cc-4512-45ff-8a13-24deb5151471 + 0e3cc738-af45-4401-ad16-8d2518c4cfd2 - b0bfcb58-06cf-42fb-80ff-dbf772fd7bba + 179dc93f-7d54-4484-87be-0d40a186cde8 true - Indication of whether a SDKMessage/Plugin is of ReadOnly or ReadWrite Intent + Type of address for address 2. such as billing, shipping, or primary address. 1033 + + c4d0fe5d-e36d-473c-b7b7-bd291a2d27b3 + + true + Adressetypen for adresse 2, f.eks. faktureringsadresse, forsendelsesadresse eller primær adresse. + 1030 + - b0bfcb58-06cf-42fb-80ff-dbf772fd7bba + 179dc93f-7d54-4484-87be-0d40a186cde8 true - Indication of whether a SDKMessage/Plugin is of ReadOnly or ReadWrite Intent + Type of address for address 2. such as billing, shipping, or primary address. 1033 - 59ff6b6f-5aa5-481b-8d6a-0e7a76d2c58f + 9c163cc9-72d3-48cf-9683-a44d224188de true - Is Operation Intent Read Only + Address 2: Address Type 1033 + + 9cfb70d4-7799-4f08-9db3-11e7f495a739 + + true + Adresse 2: Adressetype + 1030 + - 59ff6b6f-5aa5-481b-8d6a-0e7a76d2c58f + 9c163cc9-72d3-48cf-9683-a44d224188de true - Is Operation Intent Read Only + Address 2: Address Type 1033 @@ -252905,87 +264743,67 @@ false iscustomizable - false + true - true + false true - isoperationintentreadonly - Boolean - 7.1.0.0 - - - - - - - - - - false - true - - - - 689c7bc5-a039-4084-bd1c-3e1930a82567 - - true - No - 1033 - - - - 689c7bc5-a039-4084-bd1c-3e1930a82567 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 5b05f5da-d6db-4bd1-be75-167605fcccdc + publisher_address2_addresstypecode + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + e0b09b5d-d067-47b6-ab29-a8a4812c7bb8 + + true + Default Value + 1033 + + + cc99dcba-7aa0-4f9b-bb97-1ebe17dfbdfc + + true + Standardværdi + 1030 + + + + e0b09b5d-d067-47b6-ab29-a8a4812c7bb8 - true - Yes - 1033 - - - - 5b05f5da-d6db-4bd1-be75-167605fcccdc - - true - Yes - 1033 - - - - 1 - - + true + Default Value + 1033 + + + + 1 + + + + + 0 + + - 302bb3fd-0115-47fd-8621-31f158ddfec0 + 236bc657-bf94-4d61-ab7c-82077a608329 - isreadonly + address2_addresstypecode Virtual false false @@ -252993,9 +264811,9 @@ false canmodifyadditionalsettings - true + false - 29 + 57 1900-01-01T00:00:00 @@ -253006,7 +264824,7 @@ - sdkmessage + publisher @@ -253056,76 +264874,90 @@ false false - isreadonlyname + address2_addresstypecodename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsReadOnlyName + Address2_AddressTypeCodeName VirtualType - 7.1.0.0 + 5.0.0.0 true - - cb070e81-3348-42cb-b2bc-88d0d9195d3b + + ee91b713-f648-4e6f-9e88-12358aa6d281 - Boolean + String false false false false canmodifyadditionalsettings - true + false - 20 + 16 1900-01-01T00:00:00 - ad103961-0137-4e66-b66c-1b5743b511a7 + 2c375133-8b18-4f1d-90a0-8c0d4b649606 true - For internal use only. + City name for address 2. 1033 + + c10d9d8b-3e63-49fa-9f9b-d96444dcc499 + + true + Bynavn i adresse 2. + 1030 + - ad103961-0137-4e66-b66c-1b5743b511a7 + 2c375133-8b18-4f1d-90a0-8c0d4b649606 true - For internal use only. + City name for address 2. 1033 - b944c58b-a14d-42f1-a92d-1f5021746eb1 + d4142362-b868-47e6-9657-8638c356b421 true - Is Valid for Execute Async + Address 2: City 1033 + + 543e966b-10bd-444a-abfb-2e92c1764a3f + + true + Adresse 2: By + 1030 + - b944c58b-a14d-42f1-a92d-1f5021746eb1 + d4142362-b868-47e6-9657-8638c356b421 true - Is Valid for Execute Async + Address 2: City 1033 - sdkmessage + publisher @@ -253137,7 +264969,7 @@ false iscustomizable - false + true false false @@ -253166,204 +264998,122 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - isvalidforexecuteasync + address2_city 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IsValidForExecuteAsync + Address2_City - BooleanType + StringType - 6.0.0.0 - false + 5.0.0.0 + true 0 - false - - 1872d252-e6c9-4843-a351-b347a2f0b21e - - - - - 4ec1282e-3eea-4b02-936d-f8240209a321 - - true - Indicates whether this SDK message can be passed to ExecuteAsync SDK. - 1033 - - - - 4ec1282e-3eea-4b02-936d-f8240209a321 - - true - Indicates whether this SDK message can be passed to ExecuteAsync SDK. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - sdkmessage_isvalidforexecuteasync - Boolean - 6.0.0.0 - - - - - - - - - - false - true - - - - beb44d7f-29c7-4933-b812-0fc1df2559e1 - - true - No - 1033 - - - - beb44d7f-29c7-4933-b812-0fc1df2559e1 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - c0d6dcd1-1c8c-472d-b273-c36f45d00069 - - true - Yes - 1033 - - - - c0d6dcd1-1c8c-472d-b273-c36f45d00069 - - true - Yes - 1033 - - - - 1 - - - + Text + Active + 80 + + + Text + + false 0 + 160 - - 5a18b581-522e-413d-811d-7badfd5d2ffe + + d1e8ecb0-4c21-4f73-a596-59200f289199 - Lookup + String false false false false canmodifyadditionalsettings - true + false - 8 + 4 1900-01-01T00:00:00 - 490b19a7-2241-db11-898a-0007e9e17ebd + b3fab775-a21f-44f6-956d-8deea3598955 true - Unique identifier of the user who last modified the SDK message. + Country/region name for address 2. 1033 + + ee42f109-9152-4cd0-8b26-360ed1402e12 + + true + Lande- eller områdenavn i adresse 2. + 1030 + - 490b19a7-2241-db11-898a-0007e9e17ebd + b3fab775-a21f-44f6-956d-8deea3598955 true - Unique identifier of the user who last modified the SDK message. + Country/region name for address 2. 1033 - 617031b4-1834-11df-b172-00188b01dce6 + d33548da-4f5a-4ce7-b4d0-3a24962be827 true - Modified By + Address 2: Country/Region 1033 + + 017c79f3-7063-4ae0-9bc0-54575c1ea2db + + true + Adresse 2: Land/område + 1030 + - 617031b4-1834-11df-b172-00188b01dce6 + d33548da-4f5a-4ce7-b4d0-3a24962be827 true - Modified By + Address 2: Country/Region 1033 - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -253394,38 +265144,45 @@ canmodifysearchsettings true - false - false + true + true true true - false + true true - modifiedby + address2_country 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ModifiedBy + Address2_Country - LookupType + StringType 5.0.0.0 - false - + true + 0 - None - - systemuser - + Text + Active + 80 + + + Text + + + false + 0 + 160 - cb9e7884-e3fd-44ca-9b4a-f530f4e5cbf3 + 616f535f-ef9e-4bbd-849c-b439d1c2e9d4 - modifiedby + String false false @@ -253433,32 +265190,74 @@ false canmodifyadditionalsettings - true + false - 58 + 14 1900-01-01T00:00:00 - - + + + 1148c020-f9e8-467f-a197-c1dcc763e9a5 + + true + County name for address 2. + 1033 + + + 420e53ba-5cb1-4c6a-a61b-eb0ef9dfa4e3 + + true + Region i adresse 2. + 1030 + + + + 1148c020-f9e8-467f-a197-c1dcc763e9a5 + + true + County name for address 2. + 1033 + - - + + + bdab9eaf-fbdd-4957-8d73-ccda84d3d513 + + true + Address 2: County + 1033 + + + cc46a9e9-34e8-4be9-bcf7-5755e5c484d7 + + true + Adresse 2: Region + 1030 + + + + bdab9eaf-fbdd-4957-8d73-ccda84d3d513 + + true + Address 2: County + 1033 + - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -253487,23 +265286,23 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - modifiedbyname - 2025-11-06T00:19:25.6669952 + address2_county + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ModifiedByName + Address2_County StringType @@ -253513,8 +265312,8 @@ 0 Text - Auto - 100 + Active + 50 Text @@ -253522,73 +265321,87 @@ false 0 - 320 + 100 - - 802d278e-97d6-44da-ad06-9f2d91b880ea + + dfb4b619-656e-4af6-8b79-7f086f1baa99 - DateTime + String false false false false canmodifyadditionalsettings - true + false - 7 + 53 1900-01-01T00:00:00 - 470b19a7-2241-db11-898a-0007e9e17ebd + b5df75c3-67bb-404e-a0e6-8cd289addf13 true - Date and time when the SDK message was last modified. + Fax number for address 2. 1033 + + 8d2a8b66-d2cf-4164-b271-993e72591db3 + + true + Faxnummer til adresse 2. + 1030 + - 470b19a7-2241-db11-898a-0007e9e17ebd + b5df75c3-67bb-404e-a0e6-8cd289addf13 true - Date and time when the SDK message was last modified. + Fax number for address 2. 1033 - 617031b5-1834-11df-b172-00188b01dce6 + 740cb246-e898-4da9-9e71-545cadfda10a true - Modified On + Address 2: Fax 1033 + + c2da952e-de0c-41fe-b408-1558a1cc4093 + + true + Adresse 2: Fax + 1030 + - 617031b5-1834-11df-b172-00188b01dce6 + 740cb246-e898-4da9-9e71-545cadfda10a true - Modified On + Address 2: Fax 1033 - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -253619,107 +265432,120 @@ canmodifysearchsettings true - false - false + true + true true true - false + true true - modifiedon + address2_fax 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ModifiedOn + Address2_Fax - DateTimeType + StringType 5.0.0.0 - false + true 0 - DateAndTime + Text Inactive + 50 + + + Text + + false 0 - - false - canmodifybehavior - false - - - UserLocal - + 100 - - 0a6cc991-4759-4f35-b4f1-d22f6f06d08f + + 1e26e40e-11de-414d-9a2d-d7ccd2c8ec30 - Lookup + Double false false false false canmodifyadditionalsettings - true + false - 19 + 42 1900-01-01T00:00:00 - 55ef7c20-92c2-4402-9ad7-2efd8f007925 + 12e9f51a-80d0-46dc-ad0b-061d3f882972 true - Unique identifier of the delegate user who last modified the sdkmessage. + Latitude for address 2. 1033 + + 3eeb871b-43f5-44d8-9f76-09dc88c36034 + + true + Breddegrad for adresse 2. + 1030 + - 55ef7c20-92c2-4402-9ad7-2efd8f007925 + 12e9f51a-80d0-46dc-ad0b-061d3f882972 true - Unique identifier of the delegate user who last modified the sdkmessage. + Latitude for address 2. 1033 - 7c9acf04-5881-4eaa-bfdc-2b47527d3e2a + 1e923227-3124-4bce-9b25-7293df9274f7 true - Modified By (Delegate) + Address 2: Latitude 1033 + + 8cd20cc2-5d5b-4030-81af-de90c4eeb996 + + true + Adresse 2: Breddegrad + 1030 + - 7c9acf04-5881-4eaa-bfdc-2b47527d3e2a + 1e923227-3124-4bce-9b25-7293df9274f7 true - Modified By (Delegate) + Address 2: Latitude 1033 - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -253750,140 +265576,40 @@ canmodifysearchsettings true - false - false + true + true true true - false + true true - modifiedonbehalfby + address2_latitude 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ModifiedOnBehalfBy - - - LookupType - - 5.0.0.0 - false - - - None - - systemuser - - - - dfd890da-e478-4255-a7b1-f132c2380187 - - modifiedonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 22 - 1900-01-01T00:00:00 - - - - - - - - - - sdkmessage - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - modifiedonbehalfbyname - 2025-11-06T00:19:25.3229952 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfByName + Address2_Latitude - StringType + DoubleType 5.0.0.0 true 0 - Text - Auto - 100 - - - Text - + Disabled + 90 + -90 + 5 - false 0 - 320 - 252f1b29-70b8-4061-9658-73b27b75e6f4 + 5937aa88-8bda-4840-9bc5-47678a20e40b - modifiedonbehalfby + String false false @@ -253891,32 +265617,74 @@ false canmodifyadditionalsettings - true + false - 23 + 46 1900-01-01T00:00:00 - - + + + c3adcaac-080c-45a8-a5b9-4e09899d8bdc + + true + First line for entering address 2 information. + 1033 + + + 94be4162-b012-463f-8494-c7f95523b475 + + true + Første linje til angivelse af oplysninger om adresse 2. + 1030 + + + + c3adcaac-080c-45a8-a5b9-4e09899d8bdc + + true + First line for entering address 2 information. + 1033 + - - + + + c7169659-2778-4ed5-9545-d78eb72377fa + + true + Address 2: Street 1 + 1033 + + + 2143ab31-779a-411d-8b17-69db7b606a80 + + true + Adresse 2: Gade 1 + 1030 + + + + c7169659-2778-4ed5-9545-d78eb72377fa + + true + Address 2: Street 1 + 1033 + - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -253945,23 +265713,23 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - modifiedonbehalfbyyominame - 2025-11-06T00:19:28.2770048 + address2_line1 + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ModifiedOnBehalfByYomiName + Address2_Line1 StringType @@ -253971,19 +265739,19 @@ 0 Text - Auto - 100 - modifiedonbehalfbyname + Active + 50 + Text false 0 - 320 + 100 - 3821e38a-55b9-41f2-8966-3c8bf55508c4 + d3856c03-e4a2-41d2-b773-97a2d7fe9c98 String @@ -253993,48 +265761,62 @@ false canmodifyadditionalsettings - true + false - 15 + 20 1900-01-01T00:00:00 - 510b19a7-2241-db11-898a-0007e9e17ebd + 5daacbd0-8b15-4188-b196-9847830ab3e5 true - Name of the SDK message. + Second line for entering address 2 information. 1033 + + 5fcb9eb8-7d31-46ff-991d-e5c4bd18f79c + + true + Anden linje til angivelse af oplysninger om adresse 2. + 1030 + - 510b19a7-2241-db11-898a-0007e9e17ebd + 5daacbd0-8b15-4188-b196-9847830ab3e5 true - Name of the SDK message. + Second line for entering address 2 information. 1033 - 617031b6-1834-11df-b172-00188b01dce6 + 1402ef26-ae55-4109-80ab-c5081bd53216 true - Name + Address 2: Street 2 1033 + + d0e98ea2-4461-468d-a356-e597a2c2c02b + + true + Adresse 2: Gade 2 + 1030 + - 617031b6-1834-11df-b172-00188b01dce6 + 1402ef26-ae55-4109-80ab-c5081bd53216 true - Name + Address 2: Street 2 1033 - sdkmessage + publisher @@ -254046,7 +265828,7 @@ false iscustomizable - false + true false false @@ -254057,15 +265839,15 @@ true false - true + false false isrenameable false false - true - true + false + false false true @@ -254078,31 +265860,31 @@ true true - false + true true true true true - name + address2_line2 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - Name + Address2_Line2 StringType 5.0.0.0 - false + true 0 Text - Auto - 256 + Active + 50 Text @@ -254110,59 +265892,87 @@ false 0 - 512 + 100 - - cc23d329-c175-42bf-a44a-f436b31cc4e0 + + 35b74842-95c0-4dad-858d-3f0f725ce473 - Lookup + String false false false false canmodifyadditionalsettings - true + false - 1 + 43 1900-01-01T00:00:00 - 400b19a7-2241-db11-898a-0007e9e17ebd + 59127ded-fa5b-4e49-95a9-dca69ad5b069 true - Unique identifier of the organization with which the SDK message is associated. + Third line for entering address 2 information. 1033 + + c90f0971-f2c4-4805-b43e-cdaa456e6d11 + + true + Tredje linje til angivelse af oplysninger om adresse 2. + 1030 + - 400b19a7-2241-db11-898a-0007e9e17ebd + 59127ded-fa5b-4e49-95a9-dca69ad5b069 true - Unique identifier of the organization with which the SDK message is associated. + Third line for entering address 2 information. 1033 - - + + + ddb23729-c28b-42ee-ae8e-55ff87b0512f + + true + Address 2: Street 3 + 1033 + + + f768b73d-7b63-449b-9100-cd3d46dc0c0b + + true + Adresse 2: Gade 3 + 1030 + + + + ddb23729-c28b-42ee-ae8e-55ff87b0512f + + true + Address 2: Street 3 + 1033 + - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -254191,101 +266001,122 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - organizationid + address2_line3 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - OrganizationId + Address2_Line3 - LookupType + StringType 5.0.0.0 - false - + true + 0 - None - - organization - + Text + Active + 50 + + + Text + + + false + 0 + 100 - - 9f2e0856-c690-444e-85c7-47de87a6fdc9 + + 0c5a7ebc-3469-4191-96e1-3a2dee869870 - DateTime + Double false false false false canmodifyadditionalsettings - true + false - 71 + 19 1900-01-01T00:00:00 - c01f3bfc-9e22-4b11-ad2c-0eb934fb6ec6 + 5931de5e-245b-47ad-ad20-b7c8ac8c17e2 true - For internal use only. + Longitude for address 2. 1033 + + 9f466793-7fd2-431a-8d12-3657957a8c1f + + true + Længdegrad for adresse 2. + 1030 + - c01f3bfc-9e22-4b11-ad2c-0eb934fb6ec6 + 5931de5e-245b-47ad-ad20-b7c8ac8c17e2 true - For internal use only. + Longitude for address 2. 1033 - 4f7cb85f-e0ee-44c4-b39d-b82998433729 + cecb8c80-32ee-4d89-81a3-74349bface53 true - Record Overwrite Time + Address 2: Longitude 1033 + + 8007f241-3428-4c19-ae4a-555fd4fa4368 + + true + Adresse 2: Længdegrad + 1030 + - 4f7cb85f-e0ee-44c4-b39d-b82998433729 + cecb8c80-32ee-4d89-81a3-74349bface53 true - Record Overwrite Time + Address 2: Longitude 1033 - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -254314,200 +266145,117 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - overwritetime + address2_longitude 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - OverwriteTime + Address2_Longitude - DateTimeType + DoubleType - 9.0.0.0 - false + 5.0.0.0 + true 0 - DateOnly - Inactive + Disabled + 180 + -180 + 5 0 - - false - canmodifybehavior - false - - - UserLocal - - - 22f9e608-d378-4606-9a4e-6f475576ca8e + + 7303e76f-599c-4979-b8ac-c1f286be1554 - Uniqueidentifier + String false false false false canmodifyadditionalsettings - true + false - 3 + 10 1900-01-01T00:00:00 - 4d0b19a7-2241-db11-898a-0007e9e17ebd + 7fd688e6-9e0b-4b48-898b-690a2976559a true - Unique identifier of the SDK message entity. + Name to enter for address 2. 1033 + + e8390a54-a791-44f7-8083-29bf68e6d585 + + true + Det navn, der skal angives for adresse 2. + 1030 + - 4d0b19a7-2241-db11-898a-0007e9e17ebd + 7fd688e6-9e0b-4b48-898b-690a2976559a true - Unique identifier of the SDK message entity. + Name to enter for address 2. 1033 - - - - sdkmessage - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - true - - true - canmodifyglobalfiltersettings - false - - true - true - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - false - true - - sdkmessageid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - SdkMessageId - - - UniqueidentifierType - - 5.0.0.0 - false - - - - - 5d0064c5-25c6-451d-bccf-238900844261 - - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 9 - 1900-01-01T00:00:00 - - - 4b0b19a7-2241-db11-898a-0007e9e17ebd + ae7a7527-82c0-4c5a-92c1-506414fed56d true - Unique identifier of the SDK message. + Address 2: Name 1033 + + 8fc88df5-9a43-4551-ba90-3212720798c9 + + true + Adresse 2: Navn + 1030 + - 4b0b19a7-2241-db11-898a-0007e9e17ebd + ae7a7527-82c0-4c5a-92c1-506414fed56d true - Unique identifier of the SDK message. + Address 2: Name 1033 - - - - - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -254536,97 +266284,122 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - sdkmessageidunique + address2_name 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - SdkMessageIdUnique + Address2_Name - UniqueidentifierType + StringType 5.0.0.0 - false - + true + 0 + Text + Active + 100 + + + Text + + + false + 0 + 400 - - adec7ad0-0f2c-4a25-ad93-134fe58c9926 + + 036f7ac3-8cdc-4c69-ba5b-32bb2b50968c - Uniqueidentifier + String false false false false canmodifyadditionalsettings - true + false - 69 + 48 1900-01-01T00:00:00 - 2cceef03-3527-4444-b1cc-fd57100131f7 + 45ba997f-940e-4f53-90c9-92a3bc67c736 true - Unique identifier of the associated solution. + ZIP Code or postal code for address 2. 1033 + + 794e52e8-ac8b-41be-8bf9-aff12f75c687 + + true + Postnummer i adresse 2. + 1030 + - 2cceef03-3527-4444-b1cc-fd57100131f7 + 45ba997f-940e-4f53-90c9-92a3bc67c736 true - Unique identifier of the associated solution. + ZIP Code or postal code for address 2. 1033 - c5585e1a-a555-4204-9e64-148894a1cc0f + bfc9a327-96a2-464b-9889-7ad3301a809a true - Solution + Address 2: ZIP/Postal Code 1033 + + 6e89b481-8ac0-4a8c-842d-c87cfa2aa096 + + true + Adresse 2: Postnummer + 1030 + - c5585e1a-a555-4204-9e64-148894a1cc0f + bfc9a327-96a2-464b-9889-7ad3301a809a true - Solution + Address 2: ZIP/Postal Code 1033 - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -254655,97 +266428,122 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - solutionid + address2_postalcode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - SolutionId + Address2_PostalCode - UniqueidentifierType + StringType - 9.0.0.0 - false - + 5.0.0.0 + true + 0 + Text + Inactive + 20 + + + Text + + + false + 0 + 40 - - c9c0642b-818e-47c7-9f56-92e533b734f3 + + 89b77a91-bcfe-4703-9804-fb58c39fde21 - Uniqueidentifier + String false false false false canmodifyadditionalsettings - true + false - 74 + 41 1900-01-01T00:00:00 - 6cf2feb8-e6d7-4f50-9a66-82868276484b + d378b5aa-1303-48a7-8299-e7d869c22086 true - For internal use only. + Post office box number for address 2. 1033 + + 101f63ec-d4d4-40e8-82c8-d358bf318de2 + + true + Postboksnummer i adresse 2. + 1030 + - 6cf2feb8-e6d7-4f50-9a66-82868276484b + d378b5aa-1303-48a7-8299-e7d869c22086 true - For internal use only. + Post office box number for address 2. 1033 - 8346b265-c8ab-4385-90ad-511b8d676f94 + 2aa426f5-6655-432e-b6cc-14b7f526e860 true - Solution + Address 2: Post Office Box 1033 + + 38ee14c8-0d73-418d-b0df-f28bcb070758 + + true + Adresse 2: Postboksnummer + 1030 + - 8346b265-c8ab-4385-90ad-511b8d676f94 + 2aa426f5-6655-432e-b6cc-14b7f526e860 true - Solution + Address 2: Post Office Box 1033 - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -254776,83 +266574,108 @@ canmodifysearchsettings true - false - false + true + true true - false - false - false + true + true + true - supportingsolutionid + address2_postofficebox 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - SupportingSolutionId + Address2_PostOfficeBox - UniqueidentifierType + StringType - 9.0.0.0 - false - + 5.0.0.0 + true + 0 + Text + Inactive + 20 + + + Text + + + false + 0 + 40 - - 4299079f-7d7e-44cf-bd0c-e550a051239e + + 14c0c82f-3fe8-40b7-a9b4-d90bdd4eb3cf - Boolean + Picklist false false false false canmodifyadditionalsettings - true + false - 17 + 35 1900-01-01T00:00:00 - 520b19a7-2241-db11-898a-0007e9e17ebd + f804a13b-6ff7-45ec-a6dc-6d431efd8b1d true - Indicates whether the SDK message is a template. + Method of shipment for address 2. 1033 + + a81f1805-5d3b-4c44-9f37-15ca6acf8b28 + + true + Forsendelsesmåde for adresse 2. + 1030 + - 520b19a7-2241-db11-898a-0007e9e17ebd + f804a13b-6ff7-45ec-a6dc-6d431efd8b1d true - Indicates whether the SDK message is a template. + Method of shipment for address 2. 1033 - 617031b7-1834-11df-b172-00188b01dce6 + b33c4a82-7993-416b-9a3f-14e20d05eb08 true - Template + Address 2: Shipping Method 1033 + + 88d9bc64-255a-4bbe-9ef3-88b652af4abf + + true + Adresse 2: Forsendelsesmåde + 1030 + - 617031b7-1834-11df-b172-00188b01dce6 + b33c4a82-7993-416b-9a3f-14e20d05eb08 true - Template + Address 2: Shipping Method 1033 - sdkmessage + publisher @@ -254864,7 +266687,7 @@ false iscustomizable - false + true false false @@ -254893,143 +266716,151 @@ false canmodifysearchsettings - true + false true - false + true true true true true - template + address2_shippingmethodcode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Template + Address2_ShippingMethodCode - BooleanType + PicklistType 5.0.0.0 - false + true 0 - false + 1 - f5f0579d-7d33-49e9-8b30-467364385286 + 82228b43-e2d2-411e-9445-9617186b9ca9 - 502e758f-f41b-44b7-b101-3804cf6eb2da + b7d69fe5-8330-4f81-8337-0896101070df true - Indicates whether the SDK message is a template. + Method of shipment for address 2. 1033 + + 5a5f499b-a271-4e72-bffe-58ad2af15b54 + + true + Forsendelsesmåde for adresse 2. + 1030 + - 502e758f-f41b-44b7-b101-3804cf6eb2da + b7d69fe5-8330-4f81-8337-0896101070df true - Indicates whether the SDK message is a template. + Method of shipment for address 2. 1033 - - + + + 0db1cb6b-8599-4c2e-a032-f402668fe912 + + true + Address 2: Shipping Method + 1033 + + + b9163335-a242-4183-83fa-88b5cf948a88 + + true + Adresse 2: Forsendelsesmåde + 1030 + + + + 0db1cb6b-8599-4c2e-a032-f402668fe912 + + true + Address 2: Shipping Method + 1033 + false false iscustomizable - false + true false true - sdkmessage_template - Boolean + publisher_address2_shippingmethodcode + Picklist 5.0.0.0 - - - - - - - - - - false - true - - - - 1325b0cb-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 1325b0cb-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 1525b0cb-e780-db11-9b85-00137299e160 + + + + + + + + + + + false + true + + + + 56c95f5e-8d5e-45b0-a74c-eb06959e3956 + + true + Default Value + 1033 + + + e963d629-22a6-4686-af0b-d5eb6019854b + + true + Standardværdi + 1030 + + + + 56c95f5e-8d5e-45b0-a74c-eb06959e3956 - true - Yes - 1033 - - - - 1525b0cb-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - + true + Default Value + 1033 + + + + 1 + + + + + 0 + + - 02abc3fa-f149-4269-8e38-1a2face166b1 + c6107cd1-4c7f-4a72-8180-546be2aeb0a1 - template + address2_shippingmethodcode Virtual false false @@ -255037,9 +266868,9 @@ false canmodifyadditionalsettings - true + false - 59 + 60 1900-01-01T00:00:00 @@ -255050,7 +266881,7 @@ - sdkmessage + publisher @@ -255100,14 +266931,14 @@ false false - templatename + address2_shippingmethodcodename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - TemplateName + Address2_ShippingMethodCodeName VirtualType @@ -255118,7 +266949,7 @@ - c060823c-45b1-4fe1-8604-d598db6abce1 + e07b5145-88a9-4f4a-9923-923e89caef4a String @@ -255128,60 +266959,74 @@ false canmodifyadditionalsettings - true + false - 61 + 34 1900-01-01T00:00:00 - 37b9bbdd-828a-4e85-9bce-b81dfd382599 + 0fb0b7df-7277-4470-b6b7-72f0da3418c2 true - For internal use only. + State or province for address 2. 1033 + + 122e27fc-3bb6-4ca0-b19e-5bd28559d66f + + true + Område i adresse 2. + 1030 + - 37b9bbdd-828a-4e85-9bce-b81dfd382599 + 0fb0b7df-7277-4470-b6b7-72f0da3418c2 true - For internal use only. + State or province for address 2. 1033 - 45927594-1d7a-48e1-a3c6-9210f23e3038 + f67b3c26-8d6f-4ef3-8c4f-969862eab5d7 true - Throttle Settings + Address 2: State/Province 1033 + + 201c0b89-5663-42bc-a275-9732fcef29a9 + + true + Adresse 2: Område + 1030 + - 45927594-1d7a-48e1-a3c6-9210f23e3038 + f67b3c26-8d6f-4ef3-8c4f-969862eab5d7 true - Throttle Settings + Address 2: State/Province 1033 - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -255210,34 +267055,34 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - throttlesettings + address2_stateorprovince 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ThrottleSettings + Address2_StateOrProvince StringType 5.0.0.0 - false + true 0 Text - Auto - 512 + Active + 50 Text @@ -255245,59 +267090,87 @@ false 0 - 1024 + 100 - - 9a9ff23f-fb98-46f2-947c-cf24e8b83e2d + + 78366ce9-4a59-4ef2-a51d-c89352f80112 - BigInt + String false false false false canmodifyadditionalsettings - true + false - 12 + 44 1900-01-01T00:00:00 - 537c375b-d5eb-4c9f-9f7c-05f44b70b066 + f6286c5d-396c-4f53-aac3-0b0dd5d657b4 true - Number that identifies a specific revision of the SDK message. + First telephone number associated with address 2. 1033 + + 2d604fdc-83c7-4a67-a7bc-5ca33c19f711 + + true + Første telefonnummer, der er tilknyttet adresse 2. + 1030 + - 537c375b-d5eb-4c9f-9f7c-05f44b70b066 + f6286c5d-396c-4f53-aac3-0b0dd5d657b4 true - Number that identifies a specific revision of the SDK message. + First telephone number associated with address 2. 1033 - - + + + 9fdbc60f-7991-4a7a-9b63-3ca5d8629d0c + + true + Address 2: Telephone 1 + 1033 + + + 4434b3c9-5f4a-4b20-8907-9cb9848c44d7 + + true + Adresse 2: Telefon 1 + 1030 + + + + 9fdbc60f-7991-4a7a-9b63-3ca5d8629d0c + + true + Address 2: Telephone 1 + 1033 + - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -255315,7 +267188,7 @@ false false - true + false false false @@ -255326,87 +267199,110 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - versionnumber + address2_telephone1 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - VersionNumber + Address2_Telephone1 - BigIntType + StringType 5.0.0.0 - false - + true + 0 - 9223372036854775807 - -9223372036854775808 + Text + Inactive + 50 + + + Text + + + false + 0 + 100 - - 22fc5685-da17-4591-ad53-b9839443bbb0 + + 6ce04bf1-7225-468c-bbc6-cd80175e7fb1 - Boolean + String false false false false canmodifyadditionalsettings - true + false - 67 + 36 1900-01-01T00:00:00 - 7e73ef59-cff9-45ff-9a4a-986f2c3e07ed + 6bd244ab-a67b-4ab6-8c9a-3856e744d02a true - Whether or not the SDK message can be called from a workflow. + Second telephone number associated with address 2. 1033 + + d394c739-9ee8-493d-b7d9-4e5578db7213 + + true + Andet telefonnummer, der er tilknyttet adresse 2. + 1030 + - 7e73ef59-cff9-45ff-9a4a-986f2c3e07ed + 6bd244ab-a67b-4ab6-8c9a-3856e744d02a true - Whether or not the SDK message can be called from a workflow. + Second telephone number associated with address 2. 1033 - 6dd2b172-1048-432a-a19a-b0ae517ef226 + 0577f65a-594e-4606-846b-a94c76c158af true - WorkflowSdkStepEnabled + Address 2: Telephone 2 1033 + + 505d5108-ac88-461f-bce3-158fbc19b9db + + true + Adresse 2: Telefon 2 + 1030 + - 6dd2b172-1048-432a-a19a-b0ae517ef226 + 0577f65a-594e-4606-846b-a94c76c158af true - WorkflowSdkStepEnabled + Address 2: Telephone 2 1033 - sdkmessage + publisher @@ -255418,7 +267314,7 @@ false iscustomizable - false + true false false @@ -255449,174 +267345,120 @@ canmodifysearchsettings true - false - false + true + true true true - false + true true - workflowsdkstepenabled + address2_telephone2 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - WorkflowSdkStepEnabled + Address2_Telephone2 - BooleanType + StringType - 7.1.0.0 - false + 5.0.0.0 + true 0 - false - - e8601d63-d8e6-478b-8c39-46a98239d108 - - - - - 94244c98-cf0e-4610-8236-9f9c2c1c9d01 - - true - Whether or not the SDK message can be called from a workflow. - 1033 - - - - 94244c98-cf0e-4610-8236-9f9c2c1c9d01 - - true - Whether or not the SDK message can be called from a workflow. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - sdkmessage_workflowsdkstepenabled - Boolean - 7.1.0.0 - - - - - - - - - - false - true - - - - 598c8636-0173-4aab-a23e-198d71860025 - - true - No - 1033 - - - - 598c8636-0173-4aab-a23e-198d71860025 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 3e8a3d0e-3f5b-4536-956b-d40a00bc58e7 - - true - Yes - 1033 - - - - 3e8a3d0e-3f5b-4536-956b-d40a00bc58e7 - - true - Yes - 1033 - - - - 1 - - - + Text + Inactive + 50 + + + Text + + false 0 + 100 - - f6735556-cf7b-410c-97c0-fd286e8159bf + + c0e44b90-cf8e-4ba7-bcee-d218c86f1e04 - workflowsdkstepenabled - Virtual + + String false false false false canmodifyadditionalsettings - true + false - 68 + 55 1900-01-01T00:00:00 - - + + + 5f1e1c97-497b-4833-a637-adeb66344070 + + true + Third telephone number associated with address 2. + 1033 + + + f71440a9-6c07-4ec2-bf6d-4a714eba8a07 + + true + Tredje telefonnummer, der er tilknyttet adresse 2. + 1030 + + + + 5f1e1c97-497b-4833-a637-adeb66344070 + + true + Third telephone number associated with address 2. + 1033 + - - + + + 463fae5d-f040-4acb-a006-5d899661ead9 + + true + Address 2: Telephone 3 + 1033 + + + a523956d-56d5-4180-81f1-5ba10e7dce46 + + true + Adresse 2: Telefon 3 + 1030 + + + + 463fae5d-f040-4acb-a006-5d899661ead9 + + true + Address 2: Telephone 3 + 1033 + - sdkmessage + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -255645,1136 +267487,110 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - workflowsdkstepenabledname + address2_telephone3 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - WorkflowSdkStepEnabledName + Address2_Telephone3 - VirtualType + StringType - 7.1.0.0 + 5.0.0.0 true - + 0 + Text + Inactive + 50 + + + Text + + + false + 0 + 100 - - false - false - false - - false - canbeincustomentityassociation - false - - - false - canbeinmanytomany - false - - - false - canbeprimaryentityinrelationship - true - - - false - canberelatedentityinrelationship - false - - true - - false - canchangetrackingbeenabled - false - - - false - cancreateattributes - false - - - false - cancreatecharts - false - - - false - cancreateforms - false - - - false - cancreateviews - false - - - false - canenablesynctoexternalsearchindex - false - - - true - canmodifyadditionalsettings - false - - false - false - Local - 1900-01-01T00:00:00 - - - false - - - - 3d0b19a7-2241-db11-898a-0007e9e17ebd - - true - Message that is supported by the SDK. - 1033 - - - - 3d0b19a7-2241-db11-898a-0007e9e17ebd - - true - Message that is supported by the SDK. - 1033 - - - - - - 3f0b19a7-2241-db11-898a-0007e9e17ebd - - true - Sdk Messages - 1033 - - - - 3f0b19a7-2241-db11-898a-0007e9e17ebd - - true - Sdk Messages - 1033 - - - - - - 3e0b19a7-2241-db11-898a-0007e9e17ebd - - true - Sdk Message - 1033 - - - - 3e0b19a7-2241-db11-898a-0007e9e17ebd - - true - Sdk Message - 1033 - - - false - - false - false - false - false - - - - - false - false - false - false - - false - canmodifyauditsettings - false - - true - false - false - - false - canmodifyconnectionsettings - false - - false - - false - iscustomizable - false - - false - false - - false - canmodifyduplicatedetectionsettings - false - - false - false - false - false - false - false - false - - false - canmodifymailmergesettings - false - - true - - false - ismappable - false - - false - false - - false - canmodifymobileclientreadonly - false - - true - - false - isrenameable - false - - false - false - false - true - false - true - - false - canmodifyqueuesettings - false - - - false - canmodifymobilevisibility - false - - - false - canmodifymobileclientvisibility - false - - sdkmessage - - - - 50759f02-bec2-47c8-8016-c149fe878904 - - false - - false - iscustomizable - false - - true - false - organization_sdkmessage - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sdkmessage - organizationid - sdkmessage - organizationid - - 0 - - - 3e20fa4a-103b-40ed-9f70-818089c08dfa - - false - - false - iscustomizable - false - - true - false - lk_sdkmessage_createdonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_sdkmessage_createdonbehalfby - createdonbehalfby - sdkmessage - createdonbehalfby - - 0 - - - 270055b8-0508-4d07-b9b1-075a89d79c79 - - false - - false - iscustomizable - false - - true - false - createdby_sdkmessage - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - createdby_sdkmessage - createdby - sdkmessage - createdby - - 0 - - - 56bf74db-1c03-438b-ad7d-d903ed865955 - - false - - false - iscustomizable - false - - true - false - modifiedby_sdkmessage - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - modifiedby_sdkmessage - modifiedby - sdkmessage - modifiedby - - 0 - - - 4a5dfcf9-b625-47f8-9aae-fe942d099e1e - - false - - false - iscustomizable - false - - true - false - lk_sdkmessage_modifiedonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_sdkmessage_modifiedonbehalfby - modifiedonbehalfby - sdkmessage - modifiedonbehalfby - - 0 - - - 2025-11-06T01:14:21.2029952 - 4606 - - - 8ffac306-b8ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - sdkmessage_serviceplanmapping - Append - 2.4.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - 10000 - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageid - sdkmessage - sdkmessage_serviceplanmapping - sdkmessage - serviceplanmapping - SdkMessage - - 1 - - - 14e3df29-c1f5-4e6e-a9b7-dea929536700 - - false - - false - iscustomizable - false - - true - false - userentityinstancedata_sdkmessage - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageid - sdkmessage - userentityinstancedata_sdkmessage - objectid - userentityinstancedata - objectid_sdkmessage - - 0 - - - bd434c32-e6ba-f011-bbd3-7c1e52365f30 - - false - - false - iscustomizable - false - - true - true - sdkmessage_aiskillconfig_sdkmessageid - Append - 1.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - 10000 - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - RemoveLink - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageid - sdkmessage - sdkmessage_aiskillconfig_sdkmessageid - sdkmessageid - aiskillconfig - sdkmessageid - - 1 - - - bdad9d80-5ad6-4d3c-891f-230121a0c4fb - - false - - false - iscustomizable - false - - true - true - sdkmessageid_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageid - sdkmessage - sdkmessageid_sdkmessageprocessingstep - sdkmessageid - sdkmessageprocessingstep - sdkmessageid - - 0 - - - e846c782-2e65-45e7-9449-38e95217fcbd - - false - - false - iscustomizable - false - - true - false - message_sdkmessagepair - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageid - sdkmessage - message_sdkmessagepair - sdkmessageid - sdkmessagepair - sdkmessageid - - 0 - - - d10ec3ba-c4c1-47f1-a36c-c3ee16a120f9 - - false - - false - iscustomizable - false - - true - true - sdkmessageid_sdkmessagefilter - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageid - sdkmessage - sdkmessageid_sdkmessagefilter - sdkmessageid - sdkmessagefilter - sdkmessageid - - 0 - - - 752748bc-aeba-f011-bbd3-7c1e52365f30 - - true - - false - iscustomizable - false - - true - true - sdkmessage_customapi - Append - 1.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - 10000 - true - - true - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageid - sdkmessage - CustomAPIId - sdkmessageid - customapi - SdkMessageId - - 1 - - - 1441a4ec-605a-413f-87f7-53faa1d33610 - - false - - false - iscustomizable - false - - true - false - sdkmessageid_workflow_dependency - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageid - sdkmessage - sdkmessageid_workflow_dependency - sdkmessageid - workflowdependency - sdkmessageid - - 0 - - - - 8 - OrganizationOwned - - sdkmessageid - - sdkmessageid - - name - - - false - false - false - true - false - false - false - prvCreateSdkMessage - 303def1c-947c-4af3-a63b-406a7abc72de - Create - - - false - false - false - true - false - false - false - prvReadSdkMessage - 94c3ac2c-eb23-41cb-a903-4e2e49e910b4 - Read - - - false - false - false - true - false - false - false - prvWriteSdkMessage - 6ebc7c4c-fde7-424c-842e-11651498a9b3 - Write - - - false - false - false - true - false - false - false - prvDeleteSdkMessage - 8f9b0745-2842-45b6-a306-eab47f138c7a - Delete - - - false - false - false - true - false - false - false - prvAppendSdkMessage - 76ccf87c-1b01-49a0-a5e6-8f30bd6239bd - Append - - - false - false - false - true - false - false - false - prvAppendToSdkMessage - c0133d59-1cd8-4037-af7f-b68db5a025a5 - AppendTo - - - - FilteredSdkMessage - SdkMessage - - - false - Standard - false - 5.0.0.0 - - - false - canchangehierarchicalrelationship - false - - - false - SdkMessages - - - true - - sdkmessages - 0 - sdkmessages - false - - true - canmodifymobileclientoffline - false - - false - false - - false - false - - - - sdkmessagefilter - - 0e9a355e-480a-42bf-80a7-a0432106506b - - 0 - - - dce686d1-e5a8-4280-817d-4453d8f7fd74 + + bb1ff9b4-2ab1-45a4-b77b-f888934eec35 - Integer + String false false false false canmodifyadditionalsettings - true + false - 14 + 37 1900-01-01T00:00:00 - 4bdc01b9-2241-db11-898a-0007e9e17ebd + e7d4cb1b-7482-455a-9102-7ad96d5a7abc true - Identifies where a method will be exposed. 0 - Server, 1 - Client, 2 - both. + United Parcel Service (UPS) zone for address 2. 1033 + + 0659ca11-6bd9-4b26-95d3-f7e20e3c22a1 + + true + UPS-zone (United Parcel Service) for adresse 2. + 1030 + - 4bdc01b9-2241-db11-898a-0007e9e17ebd + e7d4cb1b-7482-455a-9102-7ad96d5a7abc true - Identifies where a method will be exposed. 0 - Server, 1 - Client, 2 - both. + United Parcel Service (UPS) zone for address 2. 1033 - 617031b8-1834-11df-b172-00188b01dce6 + 6053681d-ef1c-4e0d-86f3-9f5135c673ab true - Availability + Address 2: UPS Zone 1033 + + 01ac0061-f6e9-49a2-965d-3b51f1dfc54c + + true + Adresse 2: UPS-zone + 1030 + - 617031b8-1834-11df-b172-00188b01dce6 + 6053681d-ef1c-4e0d-86f3-9f5135c673ab true - Availability + Address 2: UPS Zone 1033 - sdkmessagefilter + publisher @@ -256786,7 +267602,7 @@ false iscustomizable - false + true false false @@ -256804,7 +267620,7 @@ false false - true + false false false @@ -256818,99 +267634,119 @@ true true - false + true true true true true - availability + address2_upszone 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - Availability + Address2_UPSZone - IntegerType + StringType 5.0.0.0 - false + true 0 - None - 2147483647 - -2147483648 + Text + Auto + 4 + + + Text + + false 0 + 8 - - ea301b79-1050-4756-a58b-3d353ad3016b + + a0a47ffb-8ae3-4ee9-88e2-bde614abfe67 - Picklist + Integer false false false false canmodifyadditionalsettings - true + false - 81 + 27 1900-01-01T00:00:00 - a798d7d3-6505-4434-80af-bf012aa8fa16 + 8915a8e8-7b84-4cd3-be69-2ab1fd319ce9 true - For internal use only. + UTC offset for address 2. This is the difference between local time and standard Coordinated Universal Time. 1033 + + a18a9c6b-5acc-4c5b-9b71-14149b926b20 + + true + Forskydning fra GMT for adresse 2. Dette er forskellen mellem lokal tid og GMT-standardtid. + 1030 + - a798d7d3-6505-4434-80af-bf012aa8fa16 + 8915a8e8-7b84-4cd3-be69-2ab1fd319ce9 true - For internal use only. + UTC offset for address 2. This is the difference between local time and standard Coordinated Universal Time. 1033 - 38e8fd2c-4086-4ee8-a047-bb841d71bf70 + d9521332-4d1e-40f7-8eb0-02bfc07f3691 true - Component State + Address 2: UTC Offset 1033 + + a7536eb8-b02f-4000-b318-be65dbc3fd82 + + true + Adresse 2: Forskydning fra GMT + 1030 + - 38e8fd2c-4086-4ee8-a047-bb841d71bf70 + d9521332-4d1e-40f7-8eb0-02bfc07f3691 true - Component State + Address 2: UTC Offset 1033 - sdkmessagefilter + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -256941,225 +267777,37 @@ canmodifysearchsettings false - false - false - false + true + true + true true - false + true true - componentstate + address2_utcoffset 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - ComponentState + Address2_UTCOffset - PicklistType + IntegerType - 9.0.0.0 - false + 5.0.0.0 + true 0 - -1 - - faece09f-cefc-11de-8150-00155da18b00 - - - - - faece0a1-cefc-11de-8150-00155da18b00 - - true - The state of this component. - 1033 - - - - faece0a1-cefc-11de-8150-00155da18b00 - - true - The state of this component. - 1033 - - - - - - faece0a0-cefc-11de-8150-00155da18b00 - - true - Component State - 1033 - - - - faece0a0-cefc-11de-8150-00155da18b00 - - true - Component State - 1033 - - - - false - - false - iscustomizable - false - - true - true - componentstate - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - faece0a3-cefc-11de-8150-00155da18b00 - - true - Published - 1033 - - - - faece0a3-cefc-11de-8150-00155da18b00 - - true - Published - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - faece0a5-cefc-11de-8150-00155da18b00 - - true - Unpublished - 1033 - - - - faece0a5-cefc-11de-8150-00155da18b00 - - true - Unpublished - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - faece0a7-cefc-11de-8150-00155da18b00 - - true - Deleted - 1033 - - - - faece0a7-cefc-11de-8150-00155da18b00 - - true - Deleted - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 1f83e0bb-cefd-11de-8150-00155da18b00 - - true - Deleted Unpublished - 1033 - - - - 1f83e0bb-cefd-11de-8150-00155da18b00 - - true - Deleted Unpublished - 1033 - - - - 3 - - - - - - + TimeZone + 1500 + -1500 0 - - - 5f645454-1812-47eb-90c4-e89b5830a217 + eb684248-a813-4dd8-b43a-d1ddb32b9405 Lookup @@ -257169,48 +267817,62 @@ false canmodifyadditionalsettings - true + false - 1 + 32 1900-01-01T00:00:00 - 40dc01b9-2241-db11-898a-0007e9e17ebd + e9c821e6-0cc9-4e69-b672-40d91fba1cdb true - Unique identifier of the user who created the SDK message filter. + Unique identifier of the user who created the publisher. 1033 + + 7f55854f-1092-42a9-966a-3417c1333baa + + true + Entydigt id for den bruger, der oprettede udgiveren. + 1030 + - 40dc01b9-2241-db11-898a-0007e9e17ebd + e9c821e6-0cc9-4e69-b672-40d91fba1cdb true - Unique identifier of the user who created the SDK message filter. + Unique identifier of the user who created the publisher. 1033 - 617031b9-1834-11df-b172-00188b01dce6 + bbef4e7e-6b07-488d-8d06-98e87f8777ac true Created By 1033 + + 5dea15ea-60b6-42d2-8341-d98c8606afd9 + + true + Oprettet af + 1030 + - 617031b9-1834-11df-b172-00188b01dce6 + bbef4e7e-6b07-488d-8d06-98e87f8777ac true Created By 1033 - sdkmessagefilter + publisher @@ -257251,11 +267913,11 @@ false canmodifysearchsettings - true + false false false - true + false true false true @@ -257282,7 +267944,7 @@ - 2e472c00-150a-497f-a894-f5084e50cd20 + b19e0e00-7e9e-11dd-94cd-00188b01dce6 createdby String @@ -257292,9 +267954,9 @@ false canmodifyadditionalsettings - true + false - 50 + 58 1900-01-01T00:00:00 @@ -257305,7 +267967,7 @@ - sdkmessagefilter + publisher @@ -257356,7 +268018,7 @@ false createdbyname - 2025-11-06T00:19:23.0569984 + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings @@ -257384,7 +268046,7 @@ 320 - e513f1ab-6800-4c79-976b-1a531ea47ff0 + f20c4e1e-c4c2-4e2d-921d-314c8bd60923 DateTime @@ -257394,48 +268056,62 @@ false canmodifyadditionalsettings - true + false - 13 + 22 1900-01-01T00:00:00 - 4cdc01b9-2241-db11-898a-0007e9e17ebd + f2734e96-ffa9-44fd-a78c-0063955d1b40 true - Date and time when the SDK message filter was created. + Date and time when the publisher was created. 1033 + + a54aad71-83b5-4617-9b42-fac5ed4b5ea7 + + true + Dato og klokkeslæt for oprettelse af udgiveren. + 1030 + - 4cdc01b9-2241-db11-898a-0007e9e17ebd + f2734e96-ffa9-44fd-a78c-0063955d1b40 true - Date and time when the SDK message filter was created. + Date and time when the publisher was created. 1033 - 617031ba-1834-11df-b172-00188b01dce6 + 8c9f0343-a0ca-4803-b8ed-4fbbcf5d1b15 true Created On 1033 + + 2137161f-8f54-471a-885e-1f460b269c38 + + true + Oprettet + 1030 + - 617031ba-1834-11df-b172-00188b01dce6 + 8c9f0343-a0ca-4803-b8ed-4fbbcf5d1b15 true Created On 1033 - sdkmessagefilter + publisher @@ -257476,11 +268152,11 @@ false canmodifysearchsettings - true + false false false - true + false true false true @@ -257515,7 +268191,7 @@ - 7c624a8a-481e-4b1f-87ad-5c1df0db15be + 9fb1805b-6930-494f-b293-4daadc13ba5a Lookup @@ -257525,48 +268201,62 @@ false canmodifyadditionalsettings - true + false - 18 + 69 1900-01-01T00:00:00 - 68483545-a5e3-44c3-94f5-006562f96a72 + 9ce4ea1a-e749-44d2-9f19-2233814f12f5 true - Unique identifier of the delegate user who created the sdkmessagefilter. + Unique identifier of the delegate user who created the publisher. 1033 + + ab40cbe7-086e-4c5c-8e25-0e3fb84fa475 + + true + Entydigt id for den stedfortræderbruger, der oprettede udgiveren. + 1030 + - 68483545-a5e3-44c3-94f5-006562f96a72 + 9ce4ea1a-e749-44d2-9f19-2233814f12f5 true - Unique identifier of the delegate user who created the sdkmessagefilter. + Unique identifier of the delegate user who created the publisher. 1033 - b951d505-e03e-4f45-8f25-4a0d72848a61 + 9a0da4b8-976c-4daf-acee-7169afc95f72 true Created By (Delegate) 1033 + + 1cc0f542-8811-4141-9f60-c1c6773f6a44 + + true + Oprettet af (stedfortræder) + 1030 + - b951d505-e03e-4f45-8f25-4a0d72848a61 + 9a0da4b8-976c-4daf-acee-7169afc95f72 true Created By (Delegate) 1033 - sdkmessagefilter + publisher @@ -257578,7 +268268,7 @@ false iscustomizable - false + true false false @@ -257610,7 +268300,7 @@ true false - false + true true true false @@ -257638,7 +268328,7 @@ - cef37593-501f-4f95-9b36-62b629c09704 + ae4994a9-7ff3-4613-bb9d-f8b98efac867 createdonbehalfby String @@ -257648,9 +268338,9 @@ false canmodifyadditionalsettings - true + false - 27 + 71 1900-01-01T00:00:00 @@ -257661,7 +268351,7 @@ - sdkmessagefilter + publisher @@ -257712,7 +268402,7 @@ false createdonbehalfbyname - 2025-11-06T00:19:23.9000064 + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings @@ -257740,7 +268430,7 @@ 320 - d838dcf6-0ef1-4810-a911-226d816b3daa + 6ab1079d-c522-4e7e-a1a6-9ae39cccc717 createdonbehalfby String @@ -257750,9 +268440,9 @@ false canmodifyadditionalsettings - true + false - 28 + 72 1900-01-01T00:00:00 @@ -257763,7 +268453,7 @@ - sdkmessagefilter + publisher @@ -257814,7 +268504,7 @@ false createdonbehalfbyyominame - 2025-11-06T00:19:27.5430016 + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings @@ -257842,7 +268532,7 @@ 320 - 14c390a5-99e1-4c9b-b8ab-38671a69ae82 + b7062cc6-cefe-45c9-ace7-bf3138086fab Integer @@ -257852,34 +268542,62 @@ false canmodifyadditionalsettings - true + false - 7 + 73 1900-01-01T00:00:00 - 45dc01b9-2241-db11-898a-0007e9e17ebd + c200c03c-fb91-4ee2-81f7-ca6813bf62bb true - Customization level of the SDK message filter. + Default option value prefix used for newly created options for solutions associated with this publisher. 1033 + + 7caf3625-c3e4-4290-ba15-2fec0ec102e2 + + true + Præfiks for standardværdien for nyoprettede indstillinger for de løsninger, der er tilknyttet denne udgiver. + 1030 + - 45dc01b9-2241-db11-898a-0007e9e17ebd + c200c03c-fb91-4ee2-81f7-ca6813bf62bb true - Customization level of the SDK message filter. + Default option value prefix used for newly created options for solutions associated with this publisher. 1033 - - + + + a137f7d7-c4f0-4ef4-a998-2f13f390b0c0 + + true + Option Value Prefix + 1033 + + + d00f1864-a5f0-4209-aeb8-e4284fa3c5f9 + + true + Præfiks for værdi for indstilling + 1030 + + + + a137f7d7-c4f0-4ef4-a998-2f13f390b0c0 + + true + Option Value Prefix + 1033 + - sdkmessagefilter + publisher @@ -257891,7 +268609,7 @@ false iscustomizable - false + true false false @@ -257922,21 +268640,21 @@ canmodifysearchsettings false - false + true false false true - false + true true - customizationlevel + customizationoptionvalueprefix 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - CustomizationLevel + CustomizationOptionValuePrefix IntegerType @@ -257946,13 +268664,13 @@ 0 None - 255 - -255 + 99999 + 10000 0 - f4096d5f-0fcb-4c96-9a74-764f2e3d2902 + 4432ecac-f1d6-4a8f-a9ab-2cde39e74ec1 String @@ -257964,46 +268682,60 @@ canmodifyadditionalsettings false - 84 + 33 1900-01-01T00:00:00 - 592cb803-026c-45fa-a0af-e2ea3be60cc0 + 4b183a52-0559-4f81-96f1-b847ea1207f4 true - Version in which the component is introduced. + Prefix used for new entities, attributes, and entity relationships for solutions associated with this publisher. 1033 + + 705bfed9-e0e7-4836-b074-ccdf94263535 + + true + Præfikset bruges til nye objekter, attributter og objektrelationer for de løsninger, der er tilknyttet denne udgiver. + 1030 + - 592cb803-026c-45fa-a0af-e2ea3be60cc0 + 4b183a52-0559-4f81-96f1-b847ea1207f4 true - Version in which the component is introduced. + Prefix used for new entities, attributes, and entity relationships for solutions associated with this publisher. 1033 - 2698a74d-ea5a-47fc-9660-d8dc7243541d + 71750b30-d293-43f1-94b5-22e1a9cd13d8 true - Introduced Version + Prefix 1033 + + 47015c7a-cf5b-4f14-b7f3-ec3f46911427 + + true + Præfiks + 1030 + - 2698a74d-ea5a-47fc-9660-d8dc7243541d + 71750b30-d293-43f1-94b5-22e1a9cd13d8 true - Introduced Version + Prefix 1033 - sdkmessagefilter + publisher @@ -258015,7 +268747,7 @@ false iscustomizable - false + true false false @@ -258044,96 +268776,110 @@ false canmodifysearchsettings - false + true true - false - false + true + true true - false + true true - introducedversion + customizationprefix 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - IntroducedVersion + CustomizationPrefix StringType - 9.0.0.0 + 5.0.0.0 false 0 - VersionNumber + Text Auto - 48 + 8 - VersionNumber + Text false 0 - 84 + 16 - - 24d92601-c950-409b-a800-1d97743b59d0 + + 9cb8b826-564b-47c8-b901-eee3e429ecc6 - Boolean + String false false false false canmodifyadditionalsettings - true + false - 11 + 3 1900-01-01T00:00:00 - a3aa0dcc-f35e-4187-94ad-c8663801dfdb + 6f13f7c5-2531-4044-9ad6-9a30c6d59572 true - Indicates whether a custom SDK message processing step is allowed. + Description of the solution. 1033 + + 3c81f5d3-8034-444b-97f0-790cae9ae316 + + true + Beskrivelse af løsningen. + 1030 + - a3aa0dcc-f35e-4187-94ad-c8663801dfdb + 6f13f7c5-2531-4044-9ad6-9a30c6d59572 true - Indicates whether a custom SDK message processing step is allowed. + Description of the solution. 1033 - 0b140a8a-07d1-4e7e-ac5c-31086078150e + e03b85dc-25f4-4d43-be86-bdcb984c4e3a true - Custom Processing Step Allowed + Description 1033 + + 4c750a9c-9edd-4432-af4e-6fec84327846 + + true + Beskrivelse + 1030 + - 0b140a8a-07d1-4e7e-ac5c-31086078150e + e03b85dc-25f4-4d43-be86-bdcb984c4e3a true - Custom Processing Step Allowed + Description 1033 - sdkmessagefilter + publisher @@ -258145,7 +268891,7 @@ false iscustomizable - false + true false false @@ -258163,7 +268909,7 @@ false false - false + true false false @@ -258183,134 +268929,182 @@ true true - iscustomprocessingstepallowed + description 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsCustomProcessingStepAllowed + Description - BooleanType + StringType 5.0.0.0 false 0 - false - - dec442f8-3e53-4443-975d-20f519697fa1 - - - - - 9ceeab5b-1e8d-4378-9947-6bfde390bf77 - - true - Indicates whether a custom SDK message processing step is allowed. - 1033 - - - - 9ceeab5b-1e8d-4378-9947-6bfde390bf77 + TextArea + Auto + 2000 + + + TextArea + + + true + 0 + 4000 + + + 61784fc3-cad1-473a-abca-3b75bb304c48 + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 17 + 1900-01-01T00:00:00 + + + + + f5b5392c-1acb-4cfa-88df-6acebb77792f - true - Indicates whether a custom SDK message processing step is allowed. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - sdkmessagefilter_iscustomprocessingstepallowed - Boolean - 5.0.0.0 - - + true + Email address for the publisher. + 1033 + + + a0eb3c5b-24e9-45d5-9461-919ba34b5403 + + true + Udgiverens mailadresse. + 1030 + + + + f5b5392c-1acb-4cfa-88df-6acebb77792f - - - - - - - false - true - - - - 4e2bbe4c-3d74-4931-80f1-2898747f5ae8 - - true - No - 1033 - - - - 4e2bbe4c-3d74-4931-80f1-2898747f5ae8 - - true - No - 1033 - - - - 0 - - - - + true + Email address for the publisher. + 1033 + + + + + + b58594d6-99ba-4cbd-b23d-34a20f6cbeb9 + + true + Email + 1033 + + + a1447776-5fbd-476d-8454-526453f901cb + + true + Mail + 1030 + + + + b58594d6-99ba-4cbd-b23d-34a20f6cbeb9 - - - - - - - false - true - - - - 5a296ca4-bf0e-4012-b79c-f7ad7433e401 - - true - Yes - 1033 - - - - 5a296ca4-bf0e-4012-b79c-f7ad7433e401 - - true - Yes - 1033 - - - - 1 - - - + true + Email + 1033 + + + publisher + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + emailaddress + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + EMailAddress + + + StringType + + 5.0.0.0 + false + 0 + + Email + Inactive + 100 + + + Email + + false 0 + 200 - - 49171e5f-5e2c-4502-8c5c-966cacd873c2 + + c5751ceb-8a89-47b5-9d9a-d1c26cf8c7e4 - iscustomprocessingstepallowed + entityimageid Virtual false false @@ -258318,9 +269112,147 @@ false canmodifyadditionalsettings + false + + 77 + 1900-01-01T00:00:00 + + + + + b153c1bf-b4d7-4ca6-8c78-ace08cc9ee43 + + true + Shows the default image for the record. + 1033 + + + b26c224b-5efc-486a-95cb-7a06becbccb4 + + true + Viser postens standardbillede. + 1030 + + + + b153c1bf-b4d7-4ca6-8c78-ace08cc9ee43 + + true + Shows the default image for the record. + 1033 + + + + + + c3aee941-7e60-4a05-8717-4d82187506a3 + + true + Entity Image + 1033 + + + 3620b7ce-595f-4613-8c9f-c5a02155cada + + true + Objektbillede + 1030 + + + + c3aee941-7e60-4a05-8717-4d82187506a3 + + true + Entity Image + 1033 + + + publisher + + + + true + canmodifyauditsettings + false + + false + + false + iscustomizable true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + entityimage + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + EntityImage + + + ImageType + + 6.0.0.0 + true + + + false + true + 144 + 10240 + 144 + + + e51664f4-1bc4-466d-835a-2f6a0125463c + + entityimageid + BigInt + false + false + false + + false + canmodifyadditionalsettings + false - 55 + 80 1900-01-01T00:00:00 @@ -258331,7 +269263,7 @@ - sdkmessagefilter + publisher @@ -258379,82 +269311,200 @@ false true false - false + true - iscustomprocessingstepallowedname + entityimage_timestamp 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IsCustomProcessingStepAllowedName + EntityImage_Timestamp - VirtualType + BigIntType - 5.0.0.0 + 6.0.0.0 true + 9223372036854775807 + -9223372036854775808 - - 7059b26e-aa6f-450d-9993-4b82c0e017e6 + + 038f0d1e-3a26-445a-aa9e-df4ed91dce09 - - Boolean + entityimageid + String false false false false canmodifyadditionalsettings + false + + 78 + 1900-01-01T00:00:00 + + + + + + + + + + publisher + + + + false + canmodifyauditsettings true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + entityimage_url + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + EntityImage_URL + + + StringType + + 6.0.0.0 + true + 0 + + Url + Disabled + 200 + + + Url + + + false + 0 + 400 + + + dd8e0af5-adb9-45b0-849c-465d38f368b1 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + false - 83 + 79 1900-01-01T00:00:00 - f551870e-dbb4-4720-8a04-f0373db96563 + 65b06f6c-b40d-4404-a4d1-77caedd72d4e true - Information that specifies whether this component is managed. + For internal use only. 1033 + + cfda1edd-4ec2-488d-aeee-fef132f0d293 + + true + Kun til intern brug. + 1030 + - f551870e-dbb4-4720-8a04-f0373db96563 + 65b06f6c-b40d-4404-a4d1-77caedd72d4e true - Information that specifies whether this component is managed. + For internal use only. 1033 - 651f7f75-caaa-48ef-9c8e-3cfd1350c748 + c27a31a6-1fed-4fb0-bdb1-2d86ed5dbbda true - State + Entity Image Id 1033 + + e94dc32c-427a-4e80-a9c4-6abd74d9de0c + + true + Id for objektbillede + 1030 + - 651f7f75-caaa-48ef-9c8e-3cfd1350c748 + c27a31a6-1fed-4fb0-bdb1-2d86ed5dbbda true - State + Entity Image Id 1033 - sdkmessagefilter + publisher - true + false canmodifyauditsettings true @@ -258495,186 +269545,107 @@ false false - true + false true false true - ismanaged + entityimageid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsManaged + EntityImageId - BooleanType + UniqueidentifierType - 9.0.0.0 + 6.0.0.0 false - 0 + - false - - 9d04e035-5408-4c1d-a5aa-20445a02f691 - - - - - b41954a2-f3a5-47e9-ae13-ceb49de4465b - - true - Information about whether the current component is managed. - 1033 - - - - b41954a2-f3a5-47e9-ae13-ceb49de4465b - - true - Information about whether the current component is managed. - 1033 - - - - - - 45a188b1-91a8-4019-b582-cebda8081064 - - true - Is Component Managed - 1033 - - - - 45a188b1-91a8-4019-b582-cebda8081064 - - true - Is Component Managed - 1033 - - - - false - - false - iscustomizable - false - - true - true - ismanaged - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 443c7078-b7cb-47e7-8547-08dfa82950d0 - - true - Unmanaged - 1033 - - - - 443c7078-b7cb-47e7-8547-08dfa82950d0 - - true - Unmanaged - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - ec886b5b-7e97-4c62-b30c-bf295639d540 - - true - Managed - 1033 - - - - ec886b5b-7e97-4c62-b30c-bf295639d540 - - true - Managed - 1033 - - - - 1 - - - - - 0 - - b67f7374-807e-4d50-b359-1be210b81164 + + 9e19102f-6e1a-4c4a-a62a-604bfb802306 - ismanaged - Virtual + + String false false false false canmodifyadditionalsettings - true + false - 85 + 64 1900-01-01T00:00:00 - - + + + 41ff1b52-9cf8-462b-995c-b1d7912cfbe1 + + true + User display name for this publisher. + 1033 + + + 96a783ae-c9e0-4428-b0a0-870ddb13caa3 + + true + Brugerens viste navn for udgiveren. + 1030 + + + + 41ff1b52-9cf8-462b-995c-b1d7912cfbe1 + + true + User display name for this publisher. + 1033 + - - + + + 055b7378-830e-4b3b-b593-eb617a3848b5 + + true + Display Name + 1033 + + + a1fd9c0b-b257-485a-bd41-7711f54abf7c + + true + Vist navn + 1030 + + + + 055b7378-830e-4b3b-b593-eb617a3848b5 + + true + Display Name + 1033 + - sdkmessagefilter + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -258685,15 +269656,15 @@ true false - false + true false isrenameable false false - false - false + true + true false true @@ -258703,34 +269674,45 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - ismanagedname + friendlyname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - IsManagedName + FriendlyName - VirtualType + StringType - 9.0.0.0 - true - + 5.0.0.0 + false + 0 + Text + Auto + 256 + + + Text + + + true + 0 + 512 - a0348287-6853-4c4f-9ea0-7b1fe0706882 + adc16762-4cd4-11df-a505-f4ce462d9b5d Boolean @@ -258740,34 +269722,62 @@ false canmodifyadditionalsettings - true + false - 20 + 76 1900-01-01T00:00:00 - c884058b-3f0b-4b0e-bd59-8c578afce170 + adc16775-4cd4-11df-a505-f4ce462d9b5d true - Indicates whether the filter should be visible. + Indicates whether the publisher was created as part of a managed solution installation. 1033 + + 3663756e-a912-4ecd-aad7-d1880fa6abb5 + + true + Angiver, om udgiveren blev oprettet som en del af en administreret løsningsinstallation. + 1030 + - c884058b-3f0b-4b0e-bd59-8c578afce170 + adc16775-4cd4-11df-a505-f4ce462d9b5d true - Indicates whether the filter should be visible. + Indicates whether the publisher was created as part of a managed solution installation. 1033 - - + + + adc16773-4cd4-11df-a505-f4ce462d9b5d + + true + Is Read-Only Publisher + 1033 + + + 6826375b-a801-4d07-8e33-84be835e14c1 + + true + Er skrivebeskyttet udgiver + 1030 + + + + adc16773-4cd4-11df-a505-f4ce462d9b5d + + true + Is Read-Only Publisher + 1033 + - sdkmessagefilter + publisher @@ -258779,7 +269789,7 @@ false iscustomizable - false + true false false @@ -258817,14 +269827,14 @@ false true - isvisible + isreadonly 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsVisible + IsReadonly BooleanType @@ -258835,40 +269845,68 @@ false - 8f0adef4-10b3-4e5b-9d50-e01b61581482 + adc16774-4cd4-11df-a505-f4ce462d9b5d - cbb5a919-555d-4e57-a124-f6347af4c631 + adc16771-4cd4-11df-a505-f4ce462d9b5d true - Indicates whether filter is visible. + Indicates whether the publish was initially installed as part of a managed solution. 1033 + + 4502a74b-b6bc-473f-b2ea-6e4941c8d52f + + true + Angiver, om udgiveren oprindeligt blev installeret som en del af en administreret løsning. + 1030 + - cbb5a919-555d-4e57-a124-f6347af4c631 + adc16771-4cd4-11df-a505-f4ce462d9b5d true - Indicates whether filter is visible. + Indicates whether the publish was initially installed as part of a managed solution. 1033 - - + + + adc16772-4cd4-11df-a505-f4ce462d9b5d + + true + Is read-only publisher + 1033 + + + 5abbbc65-9a5b-4b5c-9673-327ef4d66fb7 + + true + Er skrivebeskyttet udgiver + 1030 + + + + adc16772-4cd4-11df-a505-f4ce462d9b5d + + true + Is read-only publisher + 1033 + false false iscustomizable - false + true false true - sdkmessagefilter_isvisible + publisher_isreadonly Boolean 5.0.0.0 @@ -258885,15 +269923,22 @@ - c703bfe8-a8a6-497d-9ee8-a54cd1f30992 + adc1676f-4cd4-11df-a505-f4ce462d9b5d true No 1033 + + 40334922-a322-407f-84bc-afc0e015f262 + + true + Nej + 1030 + - c703bfe8-a8a6-497d-9ee8-a54cd1f30992 + adc1676f-4cd4-11df-a505-f4ce462d9b5d true No @@ -258918,15 +269963,22 @@ - 5b3af812-c635-4aa0-ab2e-a184c09d6644 + adc1676d-4cd4-11df-a505-f4ce462d9b5d true Yes 1033 + + 3e0fb524-04b9-4274-9ccf-9bdccdad75f2 + + true + Ja + 1030 + - 5b3af812-c635-4aa0-ab2e-a184c09d6644 + adc1676d-4cd4-11df-a505-f4ce462d9b5d true Yes @@ -258942,7 +269994,7 @@ 0 - e8bf71dd-0890-47ca-88b6-56334f4ace06 + 37665ef6-17c0-4d04-9793-8c17bfeeb74b Lookup @@ -258952,48 +270004,62 @@ false canmodifyadditionalsettings - true + false - 6 + 5 1900-01-01T00:00:00 - 43dc01b9-2241-db11-898a-0007e9e17ebd + a56e1997-eb9f-48a2-82d9-d898a7ca353f true - Unique identifier of the user who last modified the SDK message filter. + Unique identifier of the user who last modified the publisher. 1033 + + 4ddee5b9-400d-497d-bded-6d60147be56b + + true + Entydigt id for den bruger, der sidst ændrede udgiveren. + 1030 + - 43dc01b9-2241-db11-898a-0007e9e17ebd + a56e1997-eb9f-48a2-82d9-d898a7ca353f true - Unique identifier of the user who last modified the SDK message filter. + Unique identifier of the user who last modified the publisher. 1033 - 617031bb-1834-11df-b172-00188b01dce6 + d6096ca7-eac8-47a1-9933-1fb270904624 true Modified By 1033 + + 0ada40da-fddc-4ad9-9506-c2e4e94993e0 + + true + Ændret af + 1030 + - 617031bb-1834-11df-b172-00188b01dce6 + d6096ca7-eac8-47a1-9933-1fb270904624 true Modified By 1033 - sdkmessagefilter + publisher @@ -259034,11 +270100,11 @@ false canmodifysearchsettings - true + false false false - true + false true false true @@ -259065,7 +270131,7 @@ - 0be8c156-4ae7-4743-9ee2-ee38eea3c81a + b19e0dfe-7e9e-11dd-94cd-00188b01dce6 modifiedby String @@ -259075,9 +270141,9 @@ false canmodifyadditionalsettings - true + false - 51 + 59 1900-01-01T00:00:00 @@ -259088,7 +270154,7 @@ - sdkmessagefilter + publisher @@ -259139,7 +270205,7 @@ false modifiedbyname - 2025-11-06T00:19:26.6829952 + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings @@ -259167,7 +270233,7 @@ 320 - d8ed2ef1-0c52-4610-85c7-d45c036c7810 + fb6e4bed-a60b-435f-9439-b6c99dc5d1c8 DateTime @@ -259177,48 +270243,62 @@ false canmodifyadditionalsettings - true + false - 10 + 30 1900-01-01T00:00:00 - 47dc01b9-2241-db11-898a-0007e9e17ebd + 7297fb79-e3e1-4660-a189-0842f80ab4ad true - Date and time when the SDK message filter was last modified. + Date and time when the publisher was last modified. 1033 + + 004c5263-1aab-4350-8f5d-e14b5e29c369 + + true + Dato og klokkeslæt for seneste ændring af udgiveren. + 1030 + - 47dc01b9-2241-db11-898a-0007e9e17ebd + 7297fb79-e3e1-4660-a189-0842f80ab4ad true - Date and time when the SDK message filter was last modified. + Date and time when the publisher was last modified. 1033 - 617031bc-1834-11df-b172-00188b01dce6 + eeb117f3-2c97-4080-aaee-fc5a5730b8bb true Modified On 1033 + + 4d69f890-06d7-4ae7-bf4a-7da524c4bc24 + + true + Ændret + 1030 + - 617031bc-1834-11df-b172-00188b01dce6 + eeb117f3-2c97-4080-aaee-fc5a5730b8bb true Modified On 1033 - sdkmessagefilter + publisher @@ -259259,11 +270339,11 @@ false canmodifysearchsettings - true + false false false - true + false true false true @@ -259298,7 +270378,7 @@ - dbf4ac15-57b5-4ca2-aa6c-9b3c34474bef + 19848b5b-0d83-4b76-9852-7eb4123c3cad Lookup @@ -259308,48 +270388,62 @@ false canmodifyadditionalsettings - true + false - 19 + 65 1900-01-01T00:00:00 - 9746e7f5-2313-4d59-a2ee-5869a2525c0f + 75dca444-73e7-4088-a305-ffd81c4d9582 true - Unique identifier of the delegate user who last modified the sdkmessagefilter. + Unique identifier of the delegate user who modified the publisher. 1033 + + 4ede571d-d777-431a-afa8-8f3cf50c78de + + true + Entydigt id for den stedfortræderbruger, der ændrede udgiveren. + 1030 + - 9746e7f5-2313-4d59-a2ee-5869a2525c0f + 75dca444-73e7-4088-a305-ffd81c4d9582 true - Unique identifier of the delegate user who last modified the sdkmessagefilter. + Unique identifier of the delegate user who modified the publisher. 1033 - cf6d3d06-7c06-4e2d-90e3-76b569cafeab + ee2b3f09-dfcb-4fd0-9a32-85570f848764 true Modified By (Delegate) 1033 + + 712e6227-fdbd-42cf-95da-a330dfbad3c0 + + true + Ændret af (stedfortræder) + 1030 + - cf6d3d06-7c06-4e2d-90e3-76b569cafeab + ee2b3f09-dfcb-4fd0-9a32-85570f848764 true Modified By (Delegate) 1033 - sdkmessagefilter + publisher @@ -259361,7 +270455,7 @@ false iscustomizable - false + true false false @@ -259393,7 +270487,7 @@ true false - false + true true true false @@ -259421,7 +270515,7 @@ - b9bb8d20-1edb-4874-8e6e-ca942ae03358 + fdffee98-60e1-42a7-ab29-10f55e5b75cc modifiedonbehalfby String @@ -259431,9 +270525,9 @@ false canmodifyadditionalsettings - true + false - 23 + 67 1900-01-01T00:00:00 @@ -259444,7 +270538,7 @@ - sdkmessagefilter + publisher @@ -259495,7 +270589,7 @@ false modifiedonbehalfbyname - 2025-11-06T00:19:23.8230016 + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings @@ -259523,7 +270617,7 @@ 320 - c4212d24-07e5-4b31-8868-417313a60cf2 + b734a916-fa80-4381-9455-898e88d3a53b modifiedonbehalfby String @@ -259533,9 +270627,9 @@ false canmodifyadditionalsettings - true + false - 24 + 68 1900-01-01T00:00:00 @@ -259546,7 +270640,7 @@ - sdkmessagefilter + publisher @@ -259597,7 +270691,7 @@ false modifiedonbehalfbyyominame - 2025-11-06T00:19:28.5129984 + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings @@ -259624,11 +270718,11 @@ 0 320 - - 8bb110a2-8547-4603-9820-a23089d3d28a + + 8533f0ae-9f50-439b-8256-d405acb95cf1 - String + Lookup false false false @@ -259637,162 +270731,60 @@ canmodifyadditionalsettings false - 10000 - 2025-11-06T01:14:21.2999936 + 1 + 1900-01-01T00:00:00 - 510b19a7-2241-db22-898a-0008f2e12ebd + b89a7089-9bdc-4231-aa5b-6925d38d9bb4 true - Name of the SDK message filter. + Unique identifier of the organization associated with the publisher. 1033 + + d5c1506d-8aa9-4c40-a000-7fd4b80999d2 + + true + Entydigt id for den organisation, der er tilknyttet udgiveren. + 1030 + - 510b19a7-2241-db22-898a-0008f2e12ebd + b89a7089-9bdc-4231-aa5b-6925d38d9bb4 true - Name of the SDK message filter. + Unique identifier of the organization associated with the publisher. 1033 - 615043d6-1834-11df-b172-00188b01dce6 + d54e9400-30f3-4cdf-bc54-724cc416ca5a true - Name + Organization 1033 - - - 615043d6-1834-11df-b172-00188b01dce6 - - true - Name - 1033 - - - sdkmessagefilter - - - - true - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - false - canmodifyglobalfiltersettings - false - - true - false - true - - false - isrenameable - false - - true - true - true - false - - false - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - name - 2025-11-06T01:14:21.2999936 - - false - canmodifyrequirementlevelsettings - None - - Name - - - StringType - - 9.1.0.0 - false - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - - 8272ce5d-41b2-44e1-be66-8f52be26e563 - - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 3 - 1900-01-01T00:00:00 - - - - 48dc01b9-2241-db11-898a-0007e9e17ebd + f8c29802-24d5-4945-ab9f-f78341b04575 true - Unique identifier of the organization with which the SDK message filter is associated. - 1033 + Organisation + 1030 - 48dc01b9-2241-db11-898a-0007e9e17ebd + d54e9400-30f3-4cdf-bc54-724cc416ca5a true - Unique identifier of the organization with which the SDK message filter is associated. + Organization 1033 - - - - - sdkmessagefilter + publisher @@ -259863,59 +270855,31 @@ organization - - 08f3d108-2373-4261-bcf0-dec447d20fd9 + + 5572d37f-f3b7-4477-b39d-9135327ec5f4 - - DateTime + organizationid + String false false false false canmodifyadditionalsettings - true + false - 82 + 62 1900-01-01T00:00:00 - - - 5fbd2caf-b0ab-420e-acf2-36fb05c6439c - - true - For internal use only. - 1033 - - - - 5fbd2caf-b0ab-420e-acf2-36fb05c6439c - - true - For internal use only. - 1033 - + + - - - 7ab3d5b1-8298-4a2d-aae4-876edbb0e5ea - - true - Record Overwrite Time - 1033 - - - - 7ab3d5b1-8298-4a2d-aae4-876edbb0e5ea - - true - Record Overwrite Time - 1033 - + + - sdkmessagefilter + publisher @@ -259963,39 +270927,38 @@ false true false - true + false - overwritetime + organizationidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - OverwriteTime + OrganizationIdName - DateTimeType + StringType - 9.0.0.0 - false + 5.0.0.0 + true 0 - DateOnly - Inactive + Text + Auto + 100 + + + Text + + false 0 - - false - canmodifybehavior - false - - - UserLocal - + 320 - c81a098f-bdeb-46cd-8b87-718819391390 + fe27f28a-776f-4234-927c-4bf189a7a5ee String @@ -260005,194 +270968,53 @@ false canmodifyadditionalsettings - true + false - 4 + 75 1900-01-01T00:00:00 - 46dc01b9-2241-db11-898a-0007e9e17ebd + a4577d08-2b98-498a-ac21-7f234c0d5e84 true - Type of entity with which the SDK message filter is primarily associated. + Default locale of the publisher in Microsoft Pinpoint. 1033 - - - 46dc01b9-2241-db11-898a-0007e9e17ebd - - true - Type of entity with which the SDK message filter is primarily associated. - 1033 - - - - - 617031bd-1834-11df-b172-00188b01dce6 + 14294009-91fe-4a3c-a54c-ffd0d91304e1 true - Primary Object Type Code - 1033 + Landestandard-id'et for udgiveren i Microsoft Pinpoint. + 1030 - 617031bd-1834-11df-b172-00188b01dce6 + a4577d08-2b98-498a-ac21-7f234c0d5e84 true - Primary Object Type Code + Default locale of the publisher in Microsoft Pinpoint. 1033 - - sdkmessagefilter - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - false - true - true - true - true - - primaryobjecttypecode - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - PrimaryObjectTypeCode - - - StringType - - 5.0.0.0 - false - - - -1 - - 8ce5eb57-00ca-45e0-8aa6-c1b6a0b562fa - - - - - 5a5733dc-6211-4929-9d17-49bfeb1d5d5a - - true - Type of entity with which the SDK message filter is primarily associated. - 1033 - - - - 5a5733dc-6211-4929-9d17-49bfeb1d5d5a - - true - Type of entity with which the SDK message filter is primarily associated. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - sdkmessagefilter_primaryobjecttypecode - Picklist - 5.0.0.0 - - - - - true - - - a95280a4-03ce-450d-8fa8-d4dee52ccee4 - - primaryobjecttypecode - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 17 - 1900-01-01T00:00:00 - - - - - sdkmessagefilter + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -260228,56 +271050,74 @@ false true false - false + true - primaryobjecttypecodename + pinpointpublisherdefaultlocale 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - PrimaryObjectTypeCodeName + PinpointPublisherDefaultLocale - VirtualType + StringType 5.0.0.0 - true - + false + 0 + Text + Inactive + 16 + + + Text + + + false + 0 + 32 - - ff9866b4-07ec-4260-8cf7-978a9c28bbfe + + 2740de49-4f3f-4a49-b53e-326f3045322e - Integer + BigInt false false false false canmodifyadditionalsettings - true + false - 86 + 74 1900-01-01T00:00:00 - be97699a-0a20-46e1-aa64-a5cc44db6b66 + 600bbc13-ffa5-4c9c-88ee-d25f14bb9559 true - For internal use only. + Identifier of the publisher in Microsoft Pinpoint. 1033 + + 62ede737-35d2-491c-a429-7aaec53fb90b + + true + Id for udgiveren i Microsoft Pinpoint. + 1030 + - be97699a-0a20-46e1-aa64-a5cc44db6b66 + 600bbc13-ffa5-4c9c-88ee-d25f14bb9559 true - For internal use only. + Identifier of the publisher in Microsoft Pinpoint. 1033 @@ -260285,7 +271125,7 @@ - sdkmessagefilter + publisher @@ -260297,7 +271137,7 @@ false iscustomizable - false + true false false @@ -260328,37 +271168,34 @@ canmodifysearchsettings false - true + false false false true false true - restrictionlevel + pinpointpublisherid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - RestrictionLevel + PinpointPublisherId - IntegerType + BigIntType - 9.0.0.0 + 5.0.0.0 false - 0 + - None - 255 - 0 - - 0 + 9223372036854775807 + -9223372036854775808 - f165db47-c8e8-4bf1-ae7d-09dfb7e1ace9 + 69fefa15-de34-48a9-86f5-a357db8adff2 Uniqueidentifier @@ -260368,34 +271205,62 @@ false canmodifyadditionalsettings - true + false - 2 + 45 1900-01-01T00:00:00 - 42dc01b9-2241-db11-898a-0007e9e17ebd + 9b740bd4-15c1-4209-a14b-22a63ee1087a true - Unique identifier of the SDK message filter entity. + Unique identifier of the publisher. 1033 + + ede8e99b-2988-482c-88ce-387fa11191d6 + + true + Entydigt id for udgiveren. + 1030 + - 42dc01b9-2241-db11-898a-0007e9e17ebd + 9b740bd4-15c1-4209-a14b-22a63ee1087a true - Unique identifier of the SDK message filter entity. + Unique identifier of the publisher. 1033 - - + + + 2633ff4c-1dc6-4640-8a8e-c066ec77c80a + + true + Publisher Identifier + 1033 + + + 06891380-66b6-412c-ab5e-7a3b823bf819 + + true + Udgiver-id + 1030 + + + + 2633ff4c-1dc6-4640-8a8e-c066ec77c80a + + true + Publisher Identifier + 1033 + - sdkmessagefilter + publisher @@ -260436,7 +271301,7 @@ false canmodifysearchsettings - false + true true false @@ -260445,14 +271310,14 @@ false true - sdkmessagefilterid + publisherid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - SdkMessageFilterId + PublisherId UniqueidentifierType @@ -260462,57 +271327,85 @@ - - ff987568-7364-41b4-b43b-02c6a56aa20f + + f4f2ae6e-e1c8-4b6b-8147-ba31fe6c7eae - Uniqueidentifier + String false false false false canmodifyadditionalsettings - true + false - 9 + 39 1900-01-01T00:00:00 - 4adc01b9-2241-db11-898a-0007e9e17ebd + 12c5dfb4-f3c5-4531-bf88-2478166de38f true - Unique identifier of the SDK message filter. + URL for the supporting website of this publisher. 1033 + + 438a7b49-04f3-4872-9879-edfcc8b11dbb + + true + URL-adressen til det understøttende websted for denne udgiver. + 1030 + - 4adc01b9-2241-db11-898a-0007e9e17ebd + 12c5dfb4-f3c5-4531-bf88-2478166de38f true - Unique identifier of the SDK message filter. + URL for the supporting website of this publisher. 1033 - - + + + 4cbd917e-ef74-49e4-9559-1805312f4029 + + true + Website + 1033 + + + 833abe6e-f225-4066-8761-9f231244cca3 + + true + Websted + 1030 + + + + 4cbd917e-ef74-49e4-9559-1805312f4029 + + true + Website + 1033 + - sdkmessagefilter + publisher - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -260530,7 +271423,7 @@ false false - false + true false false @@ -260541,85 +271434,110 @@ false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - sdkmessagefilteridunique + supportingwebsiteurl 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - SdkMessageFilterIdUnique + SupportingWebsiteUrl - UniqueidentifierType + StringType 5.0.0.0 false - + 0 + Url + Inactive + 200 + + + Url + + + false + 0 + 400 - - 68b5c7d4-ee09-4509-9b60-c7a8ef761e13 + + 97207f18-8fa6-4056-ba1f-18b3abd6e8d9 - Lookup + String false false false false canmodifyadditionalsettings - true + false - 15 + 63 1900-01-01T00:00:00 - 3edc01b9-2241-db11-898a-0007e9e17ebd + 5af01a04-18b0-45f1-8fcf-3b274466ac28 true - Unique identifier of the related SDK message. + The unique name of this publisher. 1033 + + 0dc4657e-f22e-442b-a710-ba43bacc55ad + + true + Det entydige navn for denne udgiver. + 1030 + - 3edc01b9-2241-db11-898a-0007e9e17ebd + 5af01a04-18b0-45f1-8fcf-3b274466ac28 true - Unique identifier of the related SDK message. + The unique name of this publisher. 1033 - 617031bf-1834-11df-b172-00188b01dce6 + 7e7e0e4e-1e26-4651-8b6e-21625b837b10 true - SDK Message ID + Name 1033 + + 3b22efaa-c6e6-44c9-854a-32d6f6726967 + + true + Navn + 1030 + - 617031bf-1834-11df-b172-00188b01dce6 + 7e7e0e4e-1e26-4651-8b6e-21625b837b10 true - SDK Message ID + Name 1033 - sdkmessagefilter + publisher @@ -260631,7 +271549,7 @@ false iscustomizable - false + true false false @@ -260648,7 +271566,7 @@ isrenameable false - false + true true true false @@ -260663,126 +271581,31 @@ true true - false + true true true false true - sdkmessageid + uniquename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - SdkMessageId - - - LookupType - - 5.0.0.0 - false - - - None - - sdkmessage - - - - 3a2560de-bd3d-4ca8-9bc0-f5abc00e7553 - - sdkmessageid - String - false - false - false - - false - canmodifyadditionalsettings - true - - 54 - 1900-01-01T00:00:00 - - - - - - - - - - sdkmessagefilter - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - sdkmessageidname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - SdkMessageIdName + UniqueName StringType 5.0.0.0 - true + false 0 Text Auto - 100 + 256 Text @@ -260790,67 +271613,39 @@ false 0 - 320 + 512 - - 39a71df0-d0d8-4bdc-b858-0da92a8240d5 + + 29805ba5-41a8-11dd-9bde-0019b9312238 - EntityName + BigInt false false false false canmodifyadditionalsettings - true + false - 8 + 25 1900-01-01T00:00:00 - - - 4ddc01b9-2241-db11-898a-0007e9e17ebd - - true - Type of entity with which the SDK message filter is secondarily associated. - 1033 - - - - 4ddc01b9-2241-db11-898a-0007e9e17ebd - - true - Type of entity with which the SDK message filter is secondarily associated. - 1033 - + + - - - 617031c0-1834-11df-b172-00188b01dce6 - - true - Secondary Object Type Code - 1033 - - - - 617031c0-1834-11df-b172-00188b01dce6 - - true - Secondary Object Type Code - 1033 - + + - sdkmessagefilter + publisher - true + false canmodifyauditsettings - true + false false @@ -260885,813 +271680,33 @@ false canmodifysearchsettings - true + false false false - true + false true false true - secondaryobjecttypecode + versionnumber 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - SecondaryObjectTypeCode + VersionNumber - EntityNameType + BigIntType 5.0.0.0 false - -1 - - 02126f5e-fc11-4399-9cea-94178e658ba0 - - - - - 08529197-56c3-44ad-8998-3f6431988f4c - - true - Type of entity with which the SDK message filter is secondarily associated. - 1033 - - - - 08529197-56c3-44ad-8998-3f6431988f4c - - true - Type of entity with which the SDK message filter is secondarily associated. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - sdkmessagefilter_secondaryobjecttypecode - Picklist - 5.0.0.0 - - - - - true - - - dfcb659e-2f39-4e24-9160-74befa19d3fc - - secondaryobjecttypecode - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 16 - 1900-01-01T00:00:00 - - - - - - - - - - sdkmessagefilter - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - secondaryobjecttypecodename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - SecondaryObjectTypeCodeName - - - VirtualType - - 5.0.0.0 - true - - - - - f0173549-dcae-4dda-9b22-0139c9e03893 - - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 79 - 1900-01-01T00:00:00 - - - - - 7ca51dbd-2d77-4e56-adcd-a2a9a6f38f14 - - true - Unique identifier of the associated solution. - 1033 - - - - 7ca51dbd-2d77-4e56-adcd-a2a9a6f38f14 - - true - Unique identifier of the associated solution. - 1033 - - - - - - 59e22d9e-7c40-4d24-a989-4e3a9c2ad89a - - true - Solution - 1033 - - - - 59e22d9e-7c40-4d24-a989-4e3a9c2ad89a - - true - Solution - 1033 - - - sdkmessagefilter - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - solutionid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - SolutionId - - - UniqueidentifierType - - 9.0.0.0 - false - - - - - b5323898-1bc1-41fb-b11e-8e3c2fec703f - - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 80 - 1900-01-01T00:00:00 - - - - - cd67d554-20c6-4267-8da5-c8e3f4776dcd - - true - For internal use only. - 1033 - - - - cd67d554-20c6-4267-8da5-c8e3f4776dcd - - true - For internal use only. - 1033 - - - - - - 885791e1-0a8f-4517-98aa-173a9eaa06ca - - true - Solution - 1033 - - - - 885791e1-0a8f-4517-98aa-173a9eaa06ca - - true - Solution - 1033 - - - sdkmessagefilter - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - false - true - false - false - false - - supportingsolutionid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - SupportingSolutionId - - - UniqueidentifierType - - 9.0.0.0 - false - - - - - 2a9ffd7f-0e70-4d84-ab70-13ad8a310e18 - - - BigInt - false - false - false - - false - canmodifyadditionalsettings - true - - 5 - 1900-01-01T00:00:00 - - - - - - - - - - sdkmessagefilter - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - versionnumber - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - VersionNumber - - - BigIntType - - 5.0.0.0 - false - - - 9223372036854775807 - -9223372036854775808 - - - b6153daf-c6d8-4b72-8f28-70578e3c75b6 - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - true - - 67 - 1900-01-01T00:00:00 - - - - - 529c62ab-1c07-4992-a0f4-608ff1d7f7ce - - true - Whether or not the SDK message can be called from a workflow. - 1033 - - - - 529c62ab-1c07-4992-a0f4-608ff1d7f7ce - - true - Whether or not the SDK message can be called from a workflow. - 1033 - - - - - - d6df95ad-cc4d-4f63-9d9d-35baba073b3c - - true - WorkflowSdkStepEnabled - 1033 - - - - d6df95ad-cc4d-4f63-9d9d-35baba073b3c - - true - WorkflowSdkStepEnabled - 1033 - - - sdkmessagefilter - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - false - true - true - false - true - - workflowsdkstepenabled - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - WorkflowSdkStepEnabled - - - BooleanType - - 7.1.0.0 - false - 0 - - false - - 320ef530-bd3e-4cd0-ac50-6018d2b89b09 - - - - - c68531c2-3f7e-4557-bcb2-8a191a56269e - - true - Whether or not the SDK message can be called from a workflow. - 1033 - - - - c68531c2-3f7e-4557-bcb2-8a191a56269e - - true - Whether or not the SDK message can be called from a workflow. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - sdkmessagefilter_workflowsdkstepenabled - Boolean - 7.1.0.0 - - - - - - - - - - false - true - - - - 1bbacdc6-4652-4cb6-a07a-2be0e0984f29 - - true - No - 1033 - - - - 1bbacdc6-4652-4cb6-a07a-2be0e0984f29 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - aea1ff29-1cdf-43a6-9e72-fe8ff2b2b188 - - true - Yes - 1033 - - - - aea1ff29-1cdf-43a6-9e72-fe8ff2b2b188 - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - 14712504-177f-4c9c-8c2a-980f0fcd0b78 - - workflowsdkstepenabled - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 78 - 1900-01-01T00:00:00 - - - - - - - - - - sdkmessagefilter - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - workflowsdkstepenabledname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - WorkflowSdkStepEnabledName - - - VirtualType - - 7.1.0.0 - true - - + 9223372036854775807 + -9223372036854775808 false @@ -261710,7 +271725,7 @@ false canbeprimaryentityinrelationship - true + false false @@ -261719,9 +271734,9 @@ true - false + true canchangetrackingbeenabled - false + true false @@ -261751,10 +271766,10 @@ true canmodifyadditionalsettings - false + true false - false + true Local 1900-01-01T00:00:00 @@ -261763,61 +271778,82 @@ - 3bdc01b9-2241-db11-898a-0007e9e17ebd + 11444fd6-499a-41bf-b3fb-03d91997852e true - Filter that defines which SDK messages are valid for each type of entity. + A publisher of a CRM solution. 1033 + + 574ce04f-548a-4450-84ea-0974c179e699 + + true + En udgiver af en CRM-løsning. + 1030 + - 3bdc01b9-2241-db11-898a-0007e9e17ebd + 11444fd6-499a-41bf-b3fb-03d91997852e true - Filter that defines which SDK messages are valid for each type of entity. + A publisher of a CRM solution. 1033 - 3ddc01b9-2241-db11-898a-0007e9e17ebd + afcdd355-d1a9-4c2e-a5c3-5fef54ac45fa true - Sdk Message Filters + Publishers 1033 + + 6ec85b11-3f08-4270-880e-7e5a0b5d436d + + true + Udgivere + 1030 + - 3ddc01b9-2241-db11-898a-0007e9e17ebd + afcdd355-d1a9-4c2e-a5c3-5fef54ac45fa true - Sdk Message Filters + Publishers 1033 - 3cdc01b9-2241-db11-898a-0007e9e17ebd + 950e7a55-e8d0-41d2-8426-4c89e19d90d9 true - Sdk Message Filter + Publisher 1033 + + 571ae55b-f463-45a2-953b-a6f7c7fbe338 + + true + Udgiver + 1030 + - 3cdc01b9-2241-db11-898a-0007e9e17ebd + 950e7a55-e8d0-41d2-8426-4c89e19d90d9 true - Sdk Message Filter + Publisher 1033 false false - false + true false false @@ -261829,7 +271865,7 @@ false false - false + true canmodifyauditsettings false @@ -261845,14 +271881,14 @@ false iscustomizable - false + true false false false canmodifyduplicatedetectionsettings - false + true false false @@ -261888,7 +271924,7 @@ false false false - true + false false true @@ -261906,11 +271942,11 @@ canmodifymobileclientvisibility false - sdkmessagefilter + publisher - b3c71d20-4346-44d9-877b-efa259c4d705 + b19e0e02-7e9e-11dd-94cd-00188b01dce6 false @@ -261919,8 +271955,8 @@ false true - false - lk_sdkmessagefilter_modifiedonbehalfby + true + lk_publisher_createdby None 5.0.0.0 OneToManyRelationship @@ -261956,15 +271992,15 @@ false systemuserid systemuser - lk_sdkmessagefilter_modifiedonbehalfby - modifiedonbehalfby - sdkmessagefilter - modifiedonbehalfby + lk_publisher_createdby + createdby + publisher + createdby 0 - 5ec0c84b-e78f-43ea-baff-8288893eee15 + a5aee05f-197a-40cf-b7df-55144aef1cc1 false @@ -261974,7 +272010,7 @@ true false - createdby_sdkmessagefilter + organization_publisher None 5.0.0.0 OneToManyRelationship @@ -262008,17 +272044,17 @@ false false - systemuserid - systemuser - createdby_sdkmessagefilter - createdby - sdkmessagefilter - createdby + organizationid + organization + organization_publisher + organizationid + publisher + organizationid 0 - de552a57-7570-43ee-a090-1936744a2bfd + 357be860-2ad9-446e-bdc1-376254fb7865 false @@ -262027,8 +272063,8 @@ false true - false - organization_sdkmessagefilter + true + lk_publisherbase_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -262062,17 +272098,17 @@ false false - organizationid - organization - organization_sdkmessagefilter - organizationid - sdkmessagefilter - organizationid + systemuserid + systemuser + lk_publisherbase_modifiedonbehalfby + modifiedonbehalfby + publisher + modifiedonbehalfby 0 - 6761d288-c523-47a8-bae7-63ae6a04e651 + b80c1264-7e9f-11dd-94cd-00188b01dce6 false @@ -262081,8 +272117,8 @@ false true - false - modifiedby_sdkmessagefilter + true + lk_publisher_modifiedby None 5.0.0.0 OneToManyRelationship @@ -262118,15 +272154,15 @@ false systemuserid systemuser - modifiedby_sdkmessagefilter + lk_publisher_modifiedby modifiedby - sdkmessagefilter + publisher modifiedby 0 - b1b980a3-5013-44a3-a35d-a9c4318af6af + fb8f3e8b-dd34-40b9-8248-dc66c540c476 false @@ -262135,8 +272171,8 @@ false true - false - lk_sdkmessagefilter_createdonbehalfby + true + lk_publisherbase_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -262172,15 +272208,15 @@ false systemuserid systemuser - lk_sdkmessagefilter_createdonbehalfby + lk_publisherbase_createdonbehalfby createdonbehalfby - sdkmessagefilter + publisher createdonbehalfby 0 - d10ec3ba-c4c1-47f1-a36c-c3ee16a120f9 + f11b0d9d-9353-42aa-89d2-59b63a25e680 false @@ -262189,10 +272225,10 @@ false true - true - sdkmessageid_sdkmessagefilter + false + lk_publisher_entityimage None - 5.0.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -262212,7 +272248,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -262224,21 +272260,129 @@ false false - sdkmessageid - sdkmessage - sdkmessageid_sdkmessagefilter - sdkmessageid - sdkmessagefilter - sdkmessageid + imagedescriptorid + imagedescriptor + lk_publisher_entityimage + entityimageid + publisher + entityimageid_imagedescriptor 0 - 2025-11-06T01:14:21.3299968 - 4607 + 2025-12-23T18:07:31.1869952 + 7101 - 581f0027-6898-4ac9-95d0-54f5b7c24d60 + c7019102-b723-43c7-8d31-69dd1738d442 + + false + + false + iscustomizable + false + + true + false + Publisher_DuplicateBaseRecord + None + 7.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + publisherid + publisher + Publisher_DuplicateBaseRecord + baserecordid + duplicaterecord + baserecordid_publisher + + 0 + + + 82a5db1c-d373-43ee-a969-0c620bd21e3a + + false + + false + iscustomizable + true + + true + true + Publisher_SyncErrors + Append + 8.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Cascade + Cascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + publisherid + publisher + Publisher_SyncErrors + regardingobjectid + syncerror + regardingobjectid_publisher_syncerror + + 1 + + + 38d0d634-23a1-4ec3-8ede-7fe2d5bf97b1 false @@ -262248,7 +272392,7 @@ true true - sdkmessagefilterid_sdkmessageprocessingstep + publisher_solution None 5.0.0.0 OneToManyRelationship @@ -262269,9 +272413,63 @@ NoCascade - NoCascade + Cascade Restrict NoCascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + publisherid + publisher + publisher_solution + publisherid + solution + publisherid + + 0 + + + d4b1a848-2323-484d-ae44-b5c40149e871 + + false + + false + iscustomizable + false + + true + true + Publisher_PublisherAddress + Append + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + Cascade NoCascade NoCascade NoCascade @@ -262282,17 +272480,17 @@ false false - sdkmessagefilterid - sdkmessagefilter - sdkmessagefilterid_sdkmessageprocessingstep - sdkmessagefilterid - sdkmessageprocessingstep - sdkmessagefilterid + publisherid + publisher + Publisher_PublisherAddress + parentid + publisheraddress + parentid - 0 + 1 - ae0f5b3e-fc90-4e90-825d-9fec8321bb74 + 9e0e0477-cd70-41b0-8e27-4843bbfeeb88 false @@ -262302,7 +272500,7 @@ true false - userentityinstancedata_sdkmessagefilter + userentityinstancedata_publisher None 5.0.0.0 OneToManyRelationship @@ -262336,41 +272534,41 @@ false false - sdkmessagefilterid - sdkmessagefilter - userentityinstancedata_sdkmessagefilter + publisherid + publisher + userentityinstancedata_publisher objectid userentityinstancedata - objectid_sdkmessagefilter + objectid_publisher 0 - 67f0df85-aeba-f011-bbd3-7c1e52365f30 + 0ac8e58c-8e1e-4ca2-9d17-037eefcf4e2e - true + false false iscustomizable false true - true - sdkmessagefilter_internalcatalogassignment - Append - 1.0.0.0 + false + Publisher_DuplicateMatchingRecord + None + 7.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -262378,7 +272576,7 @@ NoCascade NoCascade - RemoveLink + Cascade NoCascade NoCascade NoCascade @@ -262390,25 +272588,79 @@ false false - sdkmessagefilterid - sdkmessagefilter - InternalCatalogAssignmentId - object - internalcatalogassignment - SdkMessageFilterId + publisherid + publisher + Publisher_DuplicateMatchingRecord + duplicaterecordid + duplicaterecord + duplicaterecordid_publisher - 1 + 0 + + + b03ffacf-2f2e-46b2-ac50-9e8e569f43c9 + + false + + false + iscustomizable + false + + true + true + publisher_appmodule + None + 8.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Restrict + NoCascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + publisherid + publisher + publisher_appmodule + publisherid + appmodule + publisher_appmodule_appmodule + + 0 8 OrganizationOwned - sdkmessagefilterid + publisherid - sdkmessagefilterid + publisherid - name + friendlyname false @@ -262418,8 +272670,8 @@ false false false - prvCreateSdkMessage - 303def1c-947c-4af3-a63b-406a7abc72de + prvCreatePublisher + b4611d30-e2d5-4886-9929-48fde38dc4ee Create @@ -262430,8 +272682,8 @@ false false false - prvReadSdkMessage - 94c3ac2c-eb23-41cb-a903-4e2e49e910b4 + prvReadPublisher + 8cdebade-6187-440d-b041-5b3f3d84db53 Read @@ -262442,8 +272694,8 @@ false false false - prvWriteSdkMessage - 6ebc7c4c-fde7-424c-842e-11651498a9b3 + prvWritePublisher + 835da693-9268-4c1c-95e0-b2f4b802f142 Write @@ -262454,8 +272706,8 @@ false false false - prvDeleteSdkMessage - 8f9b0745-2842-45b6-a306-eab47f138c7a + prvDeletePublisher + 82c9358d-3e88-43d0-802a-730212b9b372 Delete @@ -262466,8 +272718,8 @@ false false false - prvAppendSdkMessageFilter - 75e24728-68f8-4e06-96f4-c37b556a9b8a + prvAppendPublisher + fc283683-5d20-4e4e-aa35-a79b876279dc Append @@ -262478,21 +272730,21 @@ false false false - prvAppendToSdkMessageFilter - 26dca9ab-8451-4a61-8eab-d71d89987ca1 + prvAppendToPublisher + b37f6920-e7b4-44d1-af9f-a6166b6a59b9 AppendTo - FilteredSdkMessageFilter - SdkMessageFilter + FilteredPublisher + Publisher false Standard false 5.0.0.0 - + entityimage false canchangehierarchicalrelationship @@ -262500,14 +272752,14 @@ false - SdkMessageFilters + Publishers true - sdkmessagefilters + publishers 0 - sdkmessagefilters + publishers false true @@ -262522,71 +272774,71 @@ - sdkmessageprocessingstep + role - eff65459-0684-41f0-b166-aa6a29b7050b + 42dd5681-6a4a-47f2-8169-5efede47689e 0 - - a1ef61dc-3371-4cc9-be6d-06ea05192b3c + + 319c5ef2-76e9-44a0-b662-3cace0e8b349 - Boolean + Uniqueidentifier false false false false canmodifyadditionalsettings - true + false - 35 - 1900-01-01T00:00:00 + 10002 + 2025-11-06T02:05:45.1869952 - 90d80c80-e2e2-473e-8332-1668df31eb45 + 109ae858-1774-4db5-8dd0-76597b250f8b true - Indicates whether the asynchronous system job is automatically deleted on completion. + Application Id of user who created the role 1033 - 90d80c80-e2e2-473e-8332-1668df31eb45 + 109ae858-1774-4db5-8dd0-76597b250f8b true - Indicates whether the asynchronous system job is automatically deleted on completion. + Application Id of user who created the role 1033 - 617031c3-1834-11df-b172-00188b01dce6 + 08449387-59cb-40dc-ac9a-1950d51526b4 true - Asynchronous Automatic Delete + Application Id 1033 - 617031c3-1834-11df-b172-00188b01dce6 + 08449387-59cb-40dc-ac9a-1950d51526b4 true - Asynchronous Automatic Delete + Application Id 1033 - sdkmessageprocessingstep + role true canmodifyauditsettings - true + false false @@ -262597,7 +272849,7 @@ false false - true + false canmodifyglobalfiltersettings false @@ -262614,7 +272866,7 @@ false false - true + false canmodifyissortablesettings false @@ -262627,138 +272879,31 @@ true true true - true + false true - asyncautodelete - 1900-01-01T00:00:00 + applicationid + 2025-11-06T02:05:45.1869952 false canmodifyrequirementlevelsettings - SystemRequired + None - AsyncAutoDelete + ApplicationId - BooleanType + UniqueidentifierType - 5.0.0.0 + 9.2.0.0 false - 0 + - false - - 4e71632a-9fba-49aa-891e-d55e042866be - - - - - 577da2da-eadd-47df-a083-bff030137959 - - true - Indicates whether the asynchronous system job is automatically deleted on completion. - 1033 - - - - 577da2da-eadd-47df-a083-bff030137959 - - true - Indicates whether the asynchronous system job is automatically deleted on completion. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - sdkmessageprocessingstep_asyncautodelete - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 1e2d5e93-85c0-4383-bb5a-f5507035acc1 - - true - No - 1033 - - - - 1e2d5e93-85c0-4383-bb5a-f5507035acc1 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - e5d3cb52-3a22-4f4f-85bc-154c6ca14c0a - - true - Yes - 1033 - - - - e5d3cb52-3a22-4f4f-85bc-154c6ca14c0a - - true - Yes - 1033 - - - - 1 - - - - - 0 - - a1ef61dd-3371-4cc9-be6d-06ea05192b3c + + d615fc47-e71f-4b79-90d0-30114c3a6b67 - asyncautodelete - Virtual + + String false false false @@ -262767,123 +272912,46 @@ canmodifyadditionalsettings true - 47 - 1900-01-01T00:00:00 + 10007 + 2025-11-06T02:05:45.2829952 - - - - - 617031c4-1834-11df-b172-00188b01dce6 + 69118f5c-faf4-43d5-92c1-2f81548312f1 true - Async Auto Delete Name + Personas/Licenses the security role applies to 1033 - 617031c4-1834-11df-b172-00188b01dce6 + 69118f5c-faf4-43d5-92c1-2f81548312f1 true - Async Auto Delete Name + Personas/Licenses the security role applies to 1033 - - sdkmessageprocessingstep - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - asyncautodeletename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - AsyncAutoDeleteName - - - VirtualType - - 5.0.0.0 - true - - - - - 9e3f25bf-9613-4b5c-b401-e04e143bcc4c - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - true - - 10001 - 2025-11-06T01:14:21.5000064 - - - - - - + + + 74fd9570-4856-4be4-8f6f-b171160d60be + + true + Applies To + 1033 + + + + 74fd9570-4856-4be4-8f6f-b171160d60be + + true + Applies To + 1033 + - sdkmessageprocessingstep + role @@ -262933,292 +273001,105 @@ true true - canbebypassed - 2025-11-06T01:14:21.5000064 + appliesto + 2025-11-06T02:05:45.2829952 true canmodifyrequirementlevelsettings - SystemRequired + ApplicationRequired - CanBeBypassed + AppliesTo - BooleanType + StringType 9.2.0.0 false 0 - false - - 8f0165eb-adba-f011-bbd3-7c1e52365f30 - - - - - 910165eb-adba-f011-bbd3-7c1e52365f30 - - true - CanBeBypassed - 1033 - - - - 910165eb-adba-f011-bbd3-7c1e52365f30 - - true - CanBeBypassed - 1033 - - - - - - 900165eb-adba-f011-bbd3-7c1e52365f30 - - true - CanBeBypassed - 1033 - - - - 900165eb-adba-f011-bbd3-7c1e52365f30 - - true - CanBeBypassed - 1033 - - - - true - - false - iscustomizable - false - - false - true - sdkmessageprocessingstep_canbebypassed - Boolean - 9.2.0.0 - - - - #0000ff - - - - - - false - true - - - - b6cc3628-1fa7-40e1-b025-efbe944067dd - - true - No - 1033 - - - - b6cc3628-1fa7-40e1-b025-efbe944067dd - - true - No - 1033 - - - - 0 - - - - - - #0000ff - - - - - - false - true - - - - aa7f7ed9-a771-4b65-98f0-d2a0afa5d3b0 - - true - Yes - 1033 - - - - aa7f7ed9-a771-4b65-98f0-d2a0afa5d3b0 - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 2000 + + + Text + + false 0 + 2000 - - 1523bed6-6401-44e2-aba5-5ad41827859c - - canbebypassed - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10002 - 2025-11-06T01:14:21.5170048 - - - - - - - - - - sdkmessageprocessingstep - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - canbebypassedname - 2025-11-06T01:14:21.5170048 - - true - canmodifyrequirementlevelsettings - None - - canbebypassedName - - - VirtualType - - 9.2.0.0 - true - - - - - 12a37b71-ac7e-4d0e-9e5e-9d54c943a06e + + b74d8904-9f42-43be-ac7d-831b46c2d541 - Boolean + Lookup false false false false canmodifyadditionalsettings - true + false - 64 + 6 1900-01-01T00:00:00 - dae0f76b-3a84-424a-b805-27dc9cb5ae3c + 8edfeed0-2241-db11-898a-0007e9e17ebd true - Identifies whether a SDK Message Processing Step type will be ReadOnly or Read Write. false - ReadWrite, true - ReadOnly + Unique identifier of the business unit with which the role is associated. 1033 + + 260015cd-966b-4f3c-bb85-6afa12537ed6 + + true + Entydigt id for den afdeling, som rollen er tilknyttet. + 1030 + - dae0f76b-3a84-424a-b805-27dc9cb5ae3c + 8edfeed0-2241-db11-898a-0007e9e17ebd true - Identifies whether a SDK Message Processing Step type will be ReadOnly or Read Write. false - ReadWrite, true - ReadOnly + Unique identifier of the business unit with which the role is associated. 1033 - 86b08de5-ba62-4e1a-9015-e3da945a1bff + 8ddfeed0-2241-db11-898a-0007e9e17ebd true - Intent + Business Unit 1033 + + 885a4e20-d1db-4412-a414-df1f5522eb28 + + true + Afdeling + 1030 + - 86b08de5-ba62-4e1a-9015-e3da945a1bff + 8ddfeed0-2241-db11-898a-0007e9e17ebd true - Intent + Business Unit 1033 - sdkmessageprocessingstep + role - false + true canmodifyauditsettings true @@ -263226,10 +273107,10 @@ false iscustomizable - false + true false - false + true true canmodifyglobalfiltersettings @@ -263264,158 +273145,41 @@ false true - canusereadonlyconnection + businessunitid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - CanUseReadOnlyConnection + BusinessUnitId - BooleanType + LookupType - 7.1.0.0 + 5.0.0.0 false - 0 + - false - - ee89f0cc-4512-45ff-8a13-24deb5151471 - - - - - b0bfcb58-06cf-42fb-80ff-dbf772fd7bba - - true - Indication of whether a SDKMessage/Plugin is of ReadOnly or ReadWrite Intent - 1033 - - - - b0bfcb58-06cf-42fb-80ff-dbf772fd7bba - - true - Indication of whether a SDKMessage/Plugin is of ReadOnly or ReadWrite Intent - 1033 - - - - - - 59ff6b6f-5aa5-481b-8d6a-0e7a76d2c58f - - true - Is Operation Intent Read Only - 1033 - - - - 59ff6b6f-5aa5-481b-8d6a-0e7a76d2c58f - - true - Is Operation Intent Read Only - 1033 - - - - false - - false - iscustomizable - false - - true - true - isoperationintentreadonly - Boolean - 7.1.0.0 - - - - - - - - - - false - true - - - - 689c7bc5-a039-4084-bd1c-3e1930a82567 - - true - No - 1033 - - - - 689c7bc5-a039-4084-bd1c-3e1930a82567 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 5b05f5da-d6db-4bd1-be75-167605fcccdc - - true - Yes - 1033 - - - - 5b05f5da-d6db-4bd1-be75-167605fcccdc - - true - Yes - 1033 - - - - 1 - - - - - 0 + None + + businessunit + - - 8de802db-c947-4a47-a172-a4afa1af111b + + ebc50947-1d73-45ec-8552-92a540091350 - canusereadonlyconnection - Virtual + businessunitid + String false false false false canmodifyadditionalsettings - true + false - 65 + 21 1900-01-01T00:00:00 @@ -263426,7 +273190,7 @@ - sdkmessageprocessingstep + role @@ -263476,28 +273240,39 @@ false false - canusereadonlyconnectionname + businessunitidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - CanUseReadOnlyConnectionName + BusinessUnitIdName - VirtualType + StringType - 7.1.0.0 + 5.0.0.0 true - + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 320 - - 961daaaa-ac5d-4d1d-9619-aaeb653d6007 + + 84419138-21d3-4275-83c9-f5e4d63267e5 - String + ManagedProperty false false false @@ -263506,50 +273281,64 @@ canmodifyadditionalsettings false - 10000 - 2025-11-06T01:14:21.4870016 + 53 + 1900-01-01T00:00:00 - 4c4a7262-5f12-49cb-bd64-da561b945d0a + b3e365b4-8363-49f9-b85f-8d6362cd8d68 true - For internal use only. + Tells whether the role can be deleted. 1033 + + 86fd4eec-e94a-43c4-82f4-a7841d25fc11 + + true + Angiver, om rollen kan slettes. + 1030 + - 4c4a7262-5f12-49cb-bd64-da561b945d0a + b3e365b4-8363-49f9-b85f-8d6362cd8d68 true - For internal use only. + Tells whether the role can be deleted. 1033 - 5d6c28e4-16fb-4863-8b8b-1b55b8cdd6d9 + b76ff62c-3e0e-4f6d-aac9-b401a99e5591 true - Category + Can Be Deleted 1033 + + 48f2a221-2bf9-40d7-a26c-8a43641d9cb0 + + true + Kan slettes + 1030 + - 5d6c28e4-16fb-4863-8b8b-1b55b8cdd6d9 + b76ff62c-3e0e-4f6d-aac9-b401a99e5591 true - Category + Can Be Deleted 1033 - sdkmessageprocessingstep + role - true + false canmodifyauditsettings false @@ -263562,7 +273351,7 @@ false false - false + true canmodifyglobalfiltersettings false @@ -263579,52 +273368,45 @@ false false - false + true canmodifyissortablesettings false false canmodifysearchsettings - true + false true - true - true + false + false true - false + true true - category - 2025-11-06T01:14:21.4870016 + canbedeleted + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - Category + CanBeDeleted - StringType + ManagedPropertyType - 9.1.0.0 + 9.0.0.0 false - 0 + - Text - Auto - 100 - - - Text - - - false - 0 - 200 + canbedeleted + + 0 + Boolean - 98493000-f4b4-4867-b95b-5658f813c1de + 38a56437-c7e0-45c1-9a9f-8b6862a4eb1c Picklist @@ -263634,23 +273416,30 @@ false canmodifyadditionalsettings - true + false - 48 + 34 1900-01-01T00:00:00 - 98493001-f4b4-4867-b95b-5658f813c1de + c6274e0d-e2ac-4a88-83dc-f740900e6f11 true For internal use only. 1033 + + 5dcc7847-6613-409c-92c6-dfc597d08f39 + + true + Kun til intern brug. + 1030 + - 98493001-f4b4-4867-b95b-5658f813c1de + c6274e0d-e2ac-4a88-83dc-f740900e6f11 true For internal use only. @@ -263660,22 +273449,29 @@ - 98493002-f4b4-4867-b95b-5658f813c1de + 68fb685f-e270-4a0f-a077-91b936c170e6 true Component State 1033 + + cfef657f-1300-4c63-82f4-4f6bc05cdd91 + + true + Komponenttilstand + 1030 + - 98493002-f4b4-4867-b95b-5658f813c1de + 68fb685f-e270-4a0f-a077-91b936c170e6 true Component State 1033 - sdkmessageprocessingstep + role @@ -263687,7 +273483,7 @@ false iscustomizable - false + true false false @@ -263754,6 +273550,13 @@ The state of this component. 1033 + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + faece0a1-cefc-11de-8150-00155da18b00 @@ -263772,6 +273575,13 @@ Component State 1033 + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + faece0a0-cefc-11de-8150-00155da18b00 @@ -263814,6 +273624,13 @@ Published 1033 + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + faece0a3-cefc-11de-8150-00155da18b00 @@ -263847,6 +273664,13 @@ Unpublished 1033 + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + faece0a5-cefc-11de-8150-00155da18b00 @@ -263880,6 +273704,13 @@ Deleted 1033 + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + faece0a7-cefc-11de-8150-00155da18b00 @@ -263913,6 +273744,13 @@ Deleted Unpublished 1033 + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + 1f83e0bb-cefd-11de-8150-00155da18b00 @@ -263935,65 +273773,79 @@ - - dd16b72f-69b9-4453-bee9-fc37c8619b41 + + 37da6c5c-bb4b-4775-a26c-cfcea7a8ab1c - String + Lookup false false false false canmodifyadditionalsettings - true + false - 2 + 11 1900-01-01T00:00:00 - c2dd01b9-2241-db11-898a-0007e9e17ebd + 511c9b1e-2341-db11-898a-0007e9e17ebd true - Step-specific configuration for the plug-in type. Passed to the plug-in constructor at run time. + Unique identifier of the user who created the role. 1033 + + c8225126-df44-4ff9-88d7-12d6983b5f50 + + true + Entydigt id for den bruger, der oprettede rollen. + 1030 + - c2dd01b9-2241-db11-898a-0007e9e17ebd + 511c9b1e-2341-db11-898a-0007e9e17ebd true - Step-specific configuration for the plug-in type. Passed to the plug-in constructor at run time. + Unique identifier of the user who created the role. 1033 - 617031c5-1834-11df-b172-00188b01dce6 + 501c9b1e-2341-db11-898a-0007e9e17ebd true - Configuration + Created By 1033 + + f4c6f144-09d5-47a9-beb4-139cbbdca09a + + true + Oprettet af + 1030 + - 617031c5-1834-11df-b172-00188b01dce6 + 501c9b1e-2341-db11-898a-0007e9e17ebd true - Configuration + Created By 1033 - sdkmessageprocessingstep + role - true + false canmodifyauditsettings - true + false false @@ -264030,94 +273882,59 @@ canmodifysearchsettings true - true - true + false + false true true - true + false true - configuration + createdby 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Configuration + CreatedBy - StringType + LookupType 5.0.0.0 false - 0 + - Text - Auto - 1073741823 - - - Text - - - false - 0 - -1 + None + + systemuser + - - 6a20f6e4-06e3-49c0-90cd-4d8e736b3c47 + + d82bac2a-180c-4815-bd5f-a95820efc2fc - - Lookup + createdby + String false false false false canmodifyadditionalsettings - true + false - 10 + 17 1900-01-01T00:00:00 - - - 1d4901bf-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who created the SDK message processing step. - 1033 - - - - 1d4901bf-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who created the SDK message processing step. - 1033 - + + - - - 617031c6-1834-11df-b172-00188b01dce6 - - true - Created By - 1033 - - - - 617031c6-1834-11df-b172-00188b01dce6 - - true - Created By - 1033 - + + - sdkmessageprocessingstep + role @@ -264158,38 +273975,45 @@ false canmodifysearchsettings - true + false false - true - true + false + false true false - true + false - createdby - 1900-01-01T00:00:00 + createdbyname + 2025-11-06T00:19:23.7129984 false canmodifyrequirementlevelsettings None - CreatedBy + CreatedByName - LookupType + StringType 5.0.0.0 - false - + true + 0 - None - - systemuser - + Text + Auto + 100 + + + Text + + + false + 0 + 320 - 1a5696d7-797d-470e-9534-7189aba22a4d + 6c79ff52-4544-47e1-bfd2-7163ba8c63a6 createdby String @@ -264199,9 +274023,9 @@ false canmodifyadditionalsettings - true + false - 49 + 30 1900-01-01T00:00:00 @@ -264212,7 +274036,7 @@ - sdkmessageprocessingstep + role @@ -264262,14 +274086,14 @@ false false - createdbyname - 2025-11-06T00:19:26.6200064 + createdbyyominame + 2025-11-06T00:19:26.9799936 false canmodifyrequirementlevelsettings None - CreatedByName + CreatedByYomiName StringType @@ -264281,7 +274105,7 @@ Text Auto 100 - + createdbyname Text @@ -264291,7 +274115,7 @@ 320 - 637dbf32-aea7-4f71-8b2b-297f429fda3a + 1395af94-8650-43d6-a5ea-d8001e5290da DateTime @@ -264301,48 +274125,62 @@ false canmodifyadditionalsettings - true + false - 1 + 7 1900-01-01T00:00:00 - 154901bf-2241-db11-898a-0007e9e17ebd + 5a41b506-2341-db11-898a-0007e9e17ebd true - Date and time when the SDK message processing step was created. + Date and time when the role was created. 1033 + + f481ae18-5602-4383-a876-bfe4a5fce185 + + true + Dato og klokkeslæt for oprettelse af rollen. + 1030 + - 154901bf-2241-db11-898a-0007e9e17ebd + 5a41b506-2341-db11-898a-0007e9e17ebd true - Date and time when the SDK message processing step was created. + Date and time when the role was created. 1033 - 617031c7-1834-11df-b172-00188b01dce6 + 5941b506-2341-db11-898a-0007e9e17ebd true Created On 1033 + + 79926c7b-cbc9-46ff-9ff4-9f67c3ca2676 + + true + Oprettet + 1030 + - 617031c7-1834-11df-b172-00188b01dce6 + 5941b506-2341-db11-898a-0007e9e17ebd true Created On 1033 - sdkmessageprocessingstep + role @@ -264357,7 +274195,7 @@ false false - false + true true canmodifyglobalfiltersettings @@ -264372,7 +274210,7 @@ false false - false + true false false @@ -264386,7 +274224,7 @@ true false - true + false true true false @@ -264422,7 +274260,7 @@ - 64b9a810-d648-497a-ad06-bde806fd9b43 + 5d14b29a-9b57-4d53-b4f9-d055d6bf6bd7 Lookup @@ -264432,48 +274270,62 @@ false canmodifyadditionalsettings - true + false - 34 + 48 1900-01-01T00:00:00 - 95e2013f-0c2a-4aa2-a6dc-f26a0920ec8c + 6c30be5e-7c78-4848-9715-b53b6ed22da0 true - Unique identifier of the delegate user who created the sdkmessageprocessingstep. + Unique identifier of the delegate user who created the role. 1033 + + fba6adb3-8e2d-4baa-b8d8-772e9ff535b1 + + true + Entydigt id for den stedfortræderbruger, der oprettede rollen. + 1030 + - 95e2013f-0c2a-4aa2-a6dc-f26a0920ec8c + 6c30be5e-7c78-4848-9715-b53b6ed22da0 true - Unique identifier of the delegate user who created the sdkmessageprocessingstep. + Unique identifier of the delegate user who created the role. 1033 - bffe0180-168a-4c75-9238-7761e2a9ff9d + 97bef239-7484-49d9-b67d-bad0fa49cfe5 true - Created By (Delegate) + Created By Impersonator 1033 + + 480d6de2-d35f-4240-95ff-7553bc6117e7 + + true + Oprettet af repræsentant + 1030 + - bffe0180-168a-4c75-9238-7761e2a9ff9d + 97bef239-7484-49d9-b67d-bad0fa49cfe5 true - Created By (Delegate) + Created By Impersonator 1033 - sdkmessageprocessingstep + role @@ -264485,7 +274337,7 @@ false iscustomizable - false + true false false @@ -264517,7 +274369,7 @@ true false - true + false true true false @@ -264545,7 +274397,7 @@ - 40f2b4c7-226d-4d93-80a5-e80af47593e7 + 0f9015cc-2feb-4eab-aae6-f80850a3158e createdonbehalfby String @@ -264555,7 +274407,7 @@ false canmodifyadditionalsettings - true + false 42 1900-01-01T00:00:00 @@ -264568,7 +274420,7 @@ - sdkmessageprocessingstep + role @@ -264619,7 +274471,7 @@ false createdonbehalfbyname - 2025-11-06T00:19:25.2130048 + 2025-11-06T00:19:24.2130048 false canmodifyrequirementlevelsettings @@ -264647,7 +274499,7 @@ 320 - eaca3ee8-b540-4818-ac21-7c18052ecd11 + c20f4ca7-3a86-4c1d-a2ab-8d61695b7790 createdonbehalfby String @@ -264657,7 +274509,7 @@ false canmodifyadditionalsettings - true + false 43 1900-01-01T00:00:00 @@ -264670,7 +274522,7 @@ - sdkmessageprocessingstep + role @@ -264721,7 +274573,7 @@ false createdonbehalfbyyominame - 2025-11-06T00:19:27.4169984 + 2025-11-06T00:19:27.1069952 false canmodifyrequirementlevelsettings @@ -264748,11 +274600,11 @@ 0 320 - - 72ef95d3-5b0e-49f3-838b-09ba2a163d19 + + 7f53f5cd-566e-45a5-96c5-e6599c842550 - Integer + String false false false @@ -264761,32 +274613,46 @@ canmodifyadditionalsettings true - 14 - 1900-01-01T00:00:00 + 10005 + 2025-11-06T02:05:45.2499968 - 1c4901bf-2241-db11-898a-0007e9e17ebd + 497fa38a-0ee3-48f5-89ba-b32ebfd25796 true - Customization level of the SDK message processing step. + Description of the security role 1033 - 1c4901bf-2241-db11-898a-0007e9e17ebd + 497fa38a-0ee3-48f5-89ba-b32ebfd25796 true - Customization level of the SDK message processing step. + Description of the security role 1033 - - + + + 19c812d0-1687-4a50-b995-c31f5e7288e3 + + true + Description + 1033 + + + + 19c812d0-1687-4a50-b995-c31f5e7288e3 + + true + Description + 1033 + - sdkmessageprocessingstep + role @@ -264825,41 +274691,47 @@ false - false + true canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - customizationlevel - 1900-01-01T00:00:00 + description + 2025-11-06T02:05:45.2499968 - false + true canmodifyrequirementlevelsettings - SystemRequired + ApplicationRequired - CustomizationLevel + Description - IntegerType + StringType - 5.0.0.0 + 9.2.0.0 false 0 - None - 255 - -255 - + Text + Auto + 2000 + + + Text + + + false 0 + 2000 - 7b777905-6eea-4025-9ad7-6cea364ab1e0 + a01bc5ff-185b-4dc7-a0c2-75f58931fc12 String @@ -264871,46 +274743,46 @@ canmodifyadditionalsettings true - 19 - 1900-01-01T00:00:00 + 10008 + 2026-06-08T11:52:30.3529984 - d0dd01b9-2241-db11-898a-0007e9e17ebd + d0aa6563-b892-4ac0-a2f9-a86e417eb2f2 true - Description of the SDK message processing step. + The Id, Aot Name, of an FnORole. 1033 - d0dd01b9-2241-db11-898a-0007e9e17ebd + d0aa6563-b892-4ac0-a2f9-a86e417eb2f2 true - Description of the SDK message processing step. + The Id, Aot Name, of an FnORole. 1033 - 617031c8-1834-11df-b172-00188b01dce6 + 35df77ce-68ce-4420-97d2-17b828b1bf65 true - Description + FnOAotName 1033 - 617031c8-1834-11df-b172-00188b01dce6 + 35df77ce-68ce-4420-97d2-17b828b1bf65 true - Description + FnOAotName 1033 - sdkmessageprocessingstep + role @@ -264937,11 +274809,11 @@ false isrenameable - false + true - false - false - false + true + true + true false true @@ -264949,7 +274821,7 @@ false - false + true canmodifysearchsettings true @@ -264960,19 +274832,19 @@ true true - description - 1900-01-01T00:00:00 + FnOAotName + 2026-06-08T11:52:30.3529984 - false + true canmodifyrequirementlevelsettings None - Description + FnOAotName StringType - 5.0.0.0 + 9.2.0.0 false 0 @@ -264983,16 +274855,154 @@ Text - + false 0 - 512 + 256 - - d5faa564-9f41-4924-bb60-ab558f5c2565 + + d7a21f96-c1e2-4692-a2b3-659222103ff7 - Boolean + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 28 + 1900-01-01T00:00:00 + + + + + d382618a-af1e-4bc6-9650-9fe4f88e06f8 + + true + Unique identifier of the data import or data migration that created this record. + 1033 + + + 821e5863-5426-4dcf-97cd-555fe7bfa643 + + true + Entydigt id for den dataimport eller dataoverførsel, der oprettede denne post. + 1030 + + + + d382618a-af1e-4bc6-9650-9fe4f88e06f8 + + true + Unique identifier of the data import or data migration that created this record. + 1033 + + + + + + f720c0be-f38a-44bf-9da5-04550bb71c14 + + true + Import Sequence Number + 1033 + + + a7b273b9-ce3b-4318-ae11-8e87be42af71 + + true + Importsekvensnummer + 1030 + + + + f720c0be-f38a-44bf-9da5-04550bb71c14 + + true + Import Sequence Number + 1033 + + + role + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + false + false + true + false + true + + importsequencenumber + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ImportSequenceNumber + + + IntegerType + + 5.0.0.0 + false + 0 + + None + 2147483647 + -2147483648 + + 0 + + + 25d3e5bd-b5f0-44b0-b507-d0bae0dd6a18 + + + Picklist false false false @@ -265002,45 +275012,45 @@ true 10003 - 2025-11-06T01:23:14.5500032 + 2025-11-06T02:05:45.2029952 - 4758d3eb-9a94-4bea-8ff0-1df4fe29ed0c + 6a2b2260-a904-4e33-a892-bd0a5ae67192 true - EnablePluginProfiler + Value indicating whether security role is auto-assigned based on user license 1033 - 4758d3eb-9a94-4bea-8ff0-1df4fe29ed0c + 6a2b2260-a904-4e33-a892-bd0a5ae67192 true - EnablePluginProfiler + Value indicating whether security role is auto-assigned based on user license 1033 - 5d64f38e-fd89-4910-b948-a14a7776abd0 + 447a5837-0452-4093-b4bb-a952eebd48dc true - EnablePluginProfiler + Is Auto Assigned 1033 - 5d64f38e-fd89-4910-b948-a14a7776abd0 + 447a5837-0452-4093-b4bb-a952eebd48dc true - EnablePluginProfiler + Is Auto Assigned 1033 - sdkmessageprocessingstep + role @@ -265090,159 +275100,165 @@ true true - enablepluginprofiler - 2025-11-06T01:23:14.5500032 + isautoassigned + 2025-11-06T02:05:45.2029952 true canmodifyrequirementlevelsettings - None + ApplicationRequired - EnablePluginProfiler + IsAutoAssigned - BooleanType + PicklistType - 1.0.0.0 + 9.2.0.0 false 0 - false + - 69be8728-afba-f011-bbd3-7c1e52365f30 + 165cf55a-039a-4e6e-b3f4-1126db9fcb55 - 6bbe8728-afba-f011-bbd3-7c1e52365f30 + 3b5dd714-b5ba-f011-bbd3-7c1e52365f30 true - EnablePluginProfiler + Value indicating whether security role is auto-assigned based on user license 1033 - 6bbe8728-afba-f011-bbd3-7c1e52365f30 + 3b5dd714-b5ba-f011-bbd3-7c1e52365f30 true - EnablePluginProfiler + Value indicating whether security role is auto-assigned based on user license 1033 - 6abe8728-afba-f011-bbd3-7c1e52365f30 + 3a5dd714-b5ba-f011-bbd3-7c1e52365f30 true - EnablePluginProfiler + Is Auto Assigned 1033 - 6abe8728-afba-f011-bbd3-7c1e52365f30 + 3a5dd714-b5ba-f011-bbd3-7c1e52365f30 true - EnablePluginProfiler + Is Auto Assigned 1033 - - true + + false false iscustomizable - true + false - false + true true - sdkmessageprocessingstep_enablepluginprofiler - Boolean - 1.0.0.0 - - - - #0000ff - - - - - - false - true - - - - 7fa0c221-6b5d-4575-9e7d-7b6e8bc512b5 + securityrole_isautoassigned + Picklist + 9.2.0.0 + + + + + + + + + + + false + true + + + + 9aea628e-a5fc-4fc2-a48a-a38f22701e77 + + true + No + 1033 + + + + 9aea628e-a5fc-4fc2-a48a-a38f22701e77 - true - No - 1033 - - - - 7fa0c221-6b5d-4575-9e7d-7b6e8bc512b5 - - true - No - 1033 - - - - 0 - - - - - - #0000ff - - - - - - false - true - - - - 0fb7a6e9-33cb-4b08-b681-f4ef8689aab7 + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 52c764e7-40d9-4854-8772-e221e284e479 + + true + Yes + 1033 + + + + 52c764e7-40d9-4854-8772-e221e284e479 - true - Yes - 1033 - - - - 0fb7a6e9-33cb-4b08-b681-f4ef8689aab7 - - true - Yes - 1033 - - - - 1 - - + true + Yes + 1033 + + + + 1 + + + + + 0 + + - 601c1166-458c-4eea-8750-6124fcf5f75f + 612937d9-b937-4288-98be-8a51e61cbb0f - enablepluginprofiler + isautoassigned Virtual false false false - true + false canmodifyadditionalsettings true 10004 - 2025-11-06T01:23:14.5670016 + 2025-11-06T02:05:45.2329984 @@ -265252,7 +275268,7 @@ - sdkmessageprocessingstep + role @@ -265262,7 +275278,7 @@ false - true + false iscustomizable true @@ -265273,11 +275289,11 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable true @@ -265302,82 +275318,96 @@ false false - enablepluginprofilername - 2025-11-06T01:23:14.5670016 + isautoassignedname + 2025-11-06T02:05:45.2329984 true canmodifyrequirementlevelsettings None - enablepluginprofilerName + isautoassignedName VirtualType - 1.0.0.0 + 9.2.0.0 true - - f6359a23-b96c-4994-ad00-832e2a7ee05f + + a55a309d-a6db-4e97-8ff9-abb07f8d9f99 - String + ManagedProperty false false false false canmodifyadditionalsettings - true + false - 66 + 51 1900-01-01T00:00:00 - cd1b0ea7-d7af-4794-b94f-212f318d08c7 + 86ef6bdd-a98e-4183-a7d9-920511ed5bf7 true - Configuration for sending pipeline events to the Event Expander service. + Information that specifies whether this component can be customized. 1033 + + d9b97321-f7ae-4126-a110-ac5351610df0 + + true + Oplysninger om, hvorvidt denne komponent kan tilpasses. + 1030 + - cd1b0ea7-d7af-4794-b94f-212f318d08c7 + 86ef6bdd-a98e-4183-a7d9-920511ed5bf7 true - Configuration for sending pipeline events to the Event Expander service. + Information that specifies whether this component can be customized. 1033 - ec0b1d75-2804-4f18-9c6b-4b61b2b83418 + 6ee498df-5e76-4291-922b-6399d14e5cde true - EventExpander + Customizable 1033 + + b48aea93-e9ac-4cbe-9d08-eec56f1a1bd0 + + true + Kan tilpasses + 1030 + - ec0b1d75-2804-4f18-9c6b-4b61b2b83418 + 6ee498df-5e76-4291-922b-6399d14e5cde true - EventExpander + Customizable 1033 - sdkmessageprocessingstep + role - true + false canmodifyauditsettings - true + false false @@ -265412,108 +275442,115 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - eventexpander + iscustomizable 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - EventExpander + IsCustomizable - StringType + ManagedPropertyType - 9.0.0.0 + 5.0.0.0 false - 0 + - Text - Auto - 1073741823 - - - Text - - - false - 0 - -1 + iscustomizableanddeletable + + 0 + Boolean - - d6615b08-e6c8-40bb-84ed-a2652632e32a + + e1db4118-f224-4f50-bfd9-d98cd11c72ab - Lookup + Picklist false false false false canmodifyadditionalsettings - true + false - 44 - 1900-01-01T00:00:00 + 37 + 2025-11-06T00:19:20.1670016 - acd40e44-3088-4011-b507-1777d6fbe17a + af4d9c0f-0e8b-4fbc-942a-e1d044a678e6 true - Unique identifier of the associated event handler. + Role is inherited by users from team membership, if role associated with team. 1033 + + a7861ce8-94ac-47a3-8d99-e393b8d8d48e + + true + Rollen er nedarvet af brugere fra det teammedlemskab, hvis rolle er knyttet til teamet. + 1030 + - acd40e44-3088-4011-b507-1777d6fbe17a + af4d9c0f-0e8b-4fbc-942a-e1d044a678e6 true - Unique identifier of the associated event handler. + Role is inherited by users from team membership, if role associated with team. 1033 - d8f3e9b6-f9cf-4c5f-a135-a13a8b201e9d + b98a513d-b17c-47c8-b2e3-d8fe9dab74c8 true - Event Handler + Is Inherited 1033 + + b068f6a8-181b-4be3-8ce0-b9a461f5dbf4 + + true + Er nedarvet + 1030 + - d8f3e9b6-f9cf-4c5f-a135-a13a8b201e9d + b98a513d-b17c-47c8-b2e3-d8fe9dab74c8 true - Event Handler + Is Inherited 1033 - sdkmessageprocessingstep + role - true + false canmodifyauditsettings - true + false false false iscustomizable - false + true false false @@ -265531,7 +275568,7 @@ false false - true + false false false @@ -265551,43 +275588,193 @@ true true - eventhandler - 1900-01-01T00:00:00 + isinherited + 2025-11-06T02:05:45.0669952 false canmodifyrequirementlevelsettings SystemRequired - EventHandler + IsInherited - LookupType + PicklistType - 5.0.0.0 + 9.1.0.0 false - + 0 - Regarding - - plugintype - serviceendpoint - + 1 + + 2398b83e-25e1-45c6-a11f-20dfa9c542c9 + + + + + 4bf88130-45fc-431b-ae76-bbebdd1670c0 + + true + The role is inherited + 1033 + + + 7ed5b61a-105b-4a54-b79a-3e92d5132ebd + + true + Rollen er nedarvet + 1030 + + + + 4bf88130-45fc-431b-ae76-bbebdd1670c0 + + true + The role is inherited + 1033 + + + + + + 96d9e4ac-7106-4a00-84cc-42fb9611bbf8 + + true + Is Inherited + 1033 + + + 2639f9b5-b709-4de4-9996-224c9128d602 + + true + Er nedarvet + 1030 + + + + 96d9e4ac-7106-4a00-84cc-42fb9611bbf8 + + true + Is Inherited + 1033 + + + + false + + false + iscustomizable + false + + true + true + isinherited + Picklist + 9.1.0.0 + + + + + + + + + + + false + true + + + + 130c571b-8668-4056-820f-d484bea3fcc9 + + true + Team privileges only + 1033 + + + 0a9b40aa-0ccf-437c-8352-14f8c6ab2b70 + + true + Kun Team-rettigheder + 1030 + + + + 130c571b-8668-4056-820f-d484bea3fcc9 + + true + Team privileges only + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + c5f24b0e-99d3-4567-9675-f683833f8b4a + + true + Direct User (Basic) access level and Team privileges + 1033 + + + acdc8e7c-41da-47ca-b20b-aa29a3cd0e32 + + true + Adgangsniveau som direkte bruger (basis) og Team-rettigheder + 1030 + + + + c5f24b0e-99d3-4567-9675-f683833f8b4a + + true + Direct User (Basic) access level and Team privileges + 1033 + + + + 1 + + + + + + + + 0 + + - - e2cc28ad-9e7c-4069-91b1-c1850d9a42e7 + + 5737c444-d9e3-4620-b629-896475a6edc0 - eventhandler - String + isinherited + Virtual false false false false canmodifyadditionalsettings - true + false - 46 - 1900-01-01T00:00:00 + 54 + 2025-11-06T00:19:24.3229952 @@ -265597,7 +275784,7 @@ - sdkmessageprocessingstep + role @@ -265647,71 +275834,102 @@ false false - eventhandlername - 1900-01-01T00:00:00 + isinheritedname + 2025-11-06T02:05:45.3129984 false canmodifyrequirementlevelsettings None - EventHandlerName + IsInheritedName - StringType + VirtualType - 5.0.0.0 + 9.1.0.0 true - 0 + - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - 3d9a01b7-4d21-4d93-811b-b4d479c4f8b0 + + f442a030-b510-4ec9-b6d5-8ba601c11fdc - eventhandler - EntityName + + Boolean false false false false canmodifyadditionalsettings - true + false - 45 + 50 1900-01-01T00:00:00 - - + + + 8b2b6549-cb1d-4143-9957-68eb1d5a1cc1 + + true + Indicates whether the solution component is part of a managed solution. + 1033 + + + 546350a6-5bdd-48ac-83c5-eb916e866458 + + true + Angiver, om løsningskomponenten er en del af en administreret løsning. + 1030 + + + + 8b2b6549-cb1d-4143-9957-68eb1d5a1cc1 + + true + Indicates whether the solution component is part of a managed solution. + 1033 + - - + + + 0e6b1b94-bf79-4f98-b7f1-46a3f7173d65 + + true + State + 1033 + + + df8f4eb1-53d1-4b04-8e24-ae5dd763a6b2 + + true + Tilstand + 1030 + + + + 0e6b1b94-bf79-4f98-b7f1-46a3f7173d65 + + true + State + 1033 + - sdkmessageprocessingstep + role - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -265742,93 +275960,210 @@ canmodifysearchsettings false - true + false false false true - true - false + false + true - eventhandlertypecode + ismanaged 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - EventHandlerTypeCode + IsManaged - EntityNameType + BooleanType 5.0.0.0 false - + 0 - - - - true + false + + 9d04e035-5408-4c1d-a5aa-20445a02f691 + + + + + b41954a2-f3a5-47e9-ae13-ceb49de4465b + + true + Information about whether the current component is managed. + 1033 + + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + + + + b41954a2-f3a5-47e9-ae13-ceb49de4465b + + true + Information about whether the current component is managed. + 1033 + + + + + + 45a188b1-91a8-4019-b582-cebda8081064 + + true + Is Component Managed + 1033 + + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + + + + 45a188b1-91a8-4019-b582-cebda8081064 + + true + Is Component Managed + 1033 + + + + false + + false + iscustomizable + false + + true + true + ismanaged + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 443c7078-b7cb-47e7-8547-08dfa82950d0 + + true + Unmanaged + 1033 + + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + + + + 443c7078-b7cb-47e7-8547-08dfa82950d0 + + true + Unmanaged + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + ec886b5b-7e97-4c62-b30c-bf295639d540 + + true + Managed + 1033 + + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + + + + ec886b5b-7e97-4c62-b30c-bf295639d540 + + true + Managed + 1033 + + + + 1 + + + + + 0 - - 105db31d-85e6-4974-9b65-6d15d98ac9b0 + + 4d51ccde-ce18-4d98-88a9-4f1dc51707d1 - - String + ismanaged + Virtual false false false false canmodifyadditionalsettings - true + false - 13 + 52 1900-01-01T00:00:00 - - - 114901bf-2241-db11-898a-0007e9e17ebd - - true - Comma-separated list of attributes. If at least one of these attributes is modified, the plug-in should execute. - 1033 - - - - 114901bf-2241-db11-898a-0007e9e17ebd - - true - Comma-separated list of attributes. If at least one of these attributes is modified, the plug-in should execute. - 1033 - + + - - - 617031c9-1834-11df-b172-00188b01dce6 - - true - Filtering Attributes - 1033 - - - - 617031c9-1834-11df-b172-00188b01dce6 - - true - Filtering Attributes - 1033 - + + - sdkmessageprocessingstep + role - true + false canmodifyauditsettings - true + false false @@ -265863,102 +276198,91 @@ false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true - true + false + false - filteringattributes + ismanagedname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - FilteringAttributes + IsManagedName - StringType + VirtualType 5.0.0.0 - false - 0 + true + - Text - Auto - 100000 - - - Text - - - false - 0 - -1 - - 4d44afe3-da0e-4552-802e-457ec348f7ca + + 92e445bf-aca1-468b-bb66-67246982013e - Lookup + Boolean false false false false canmodifyadditionalsettings - false + true - 10006 - 2025-11-06T04:55:06.2530048 + 10000 + 2025-11-06T02:05:45.1399936 - 7395a91c-61e9-4b65-b102-711d1c95d0c9 + 57ef25a7-6057-48fb-8dea-b30c62214c10 true - Unique identifier for fxexpression associated with SdkMessageProcessingStep. + Is this role generated by the system 1033 - 7395a91c-61e9-4b65-b102-711d1c95d0c9 + 57ef25a7-6057-48fb-8dea-b30c62214c10 true - Unique identifier for fxexpression associated with SdkMessageProcessingStep. + Is this role generated by the system 1033 - b00cc6a5-abcd-4ca3-bb58-71c4b5237bb1 + b783151d-fb01-483b-8132-9ca3176d1313 true - fxexpressionid + Is System Generated 1033 - b00cc6a5-abcd-4ca3-bb58-71c4b5237bb1 + b783151d-fb01-483b-8132-9ca3176d1313 true - fxexpressionid + Is System Generated 1033 - sdkmessageprocessingstep + role true canmodifyauditsettings - false + true false @@ -265991,7 +276315,7 @@ false - false + true canmodifysearchsettings true @@ -265999,45 +276323,162 @@ true true true - true + false true - fxexpressionid - 2025-11-06T04:55:06.7869952 + issytemgenerated + 2025-11-06T02:05:45.1399936 false canmodifyrequirementlevelsettings - None + SystemRequired - FxExpressionId + IsSystemGenerated - LookupType + BooleanType - 1.0 + 9.2.0.0 false - + 0 - None - - fxexpression - + false + + 4860d714-b5ba-f011-bbd3-7c1e52365f30 + + + + + 4a60d714-b5ba-f011-bbd3-7c1e52365f30 + + true + Is this role generated by the system + 1033 + + + + 4a60d714-b5ba-f011-bbd3-7c1e52365f30 + + true + Is this role generated by the system + 1033 + + + + + + 4960d714-b5ba-f011-bbd3-7c1e52365f30 + + true + Is System Generated + 1033 + + + + 4960d714-b5ba-f011-bbd3-7c1e52365f30 + + true + Is System Generated + 1033 + + + + true + + false + iscustomizable + false + + false + true + role_issytemgenerated + Boolean + 9.2.0.0 + + + + + + + + + + false + true + + + + bbb5bec2-7873-4e6f-b0e9-904db579871a + + true + No + 1033 + + + + bbb5bec2-7873-4e6f-b0e9-904db579871a + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + c162bb6e-bd23-45d3-ab88-88238f1f1ed9 + + true + Yes + 1033 + + + + c162bb6e-bd23-45d3-ab88-88238f1f1ed9 + + true + Yes + 1033 + + + + 1 + + + + + 0 - - 613f5425-8a5b-4fb9-81c3-c9bb705a9875 + + eb6a146e-b1cd-4ebb-8a45-d37a65237eb4 - fxexpressionid - String + issytemgenerated + Virtual false false false - true + false canmodifyadditionalsettings true - 10007 - 2025-11-06T04:55:06.8930048 + 10001 + 2025-11-06T02:05:45.1570048 @@ -266047,17 +276488,17 @@ - sdkmessageprocessingstep + role true canmodifyauditsettings - true + false false - true + false iscustomizable true @@ -266068,11 +276509,11 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable true @@ -266097,36 +276538,25 @@ false false - fxexpressionidname - 2025-11-06T04:55:06.8930048 + issytemgeneratedname + 2025-11-06T02:05:45.1570048 true canmodifyrequirementlevelsettings None - FxExpressionIdName + issytemgeneratedName - StringType + VirtualType - 9.1.0.0 + 9.2.0.0 true - 0 + - Text - Auto - 100 - - - Text - - - false - 0 - 200 - e78b0043-9c61-4abb-9fad-16de79eda3ef + 06ed0e22-4c45-416b-9bcd-83f3d8d63307 Lookup @@ -266136,54 +276566,68 @@ false canmodifyadditionalsettings - true + false - 24 + 14 1900-01-01T00:00:00 - cbdd01b9-2241-db11-898a-0007e9e17ebd + 63d6a218-2341-db11-898a-0007e9e17ebd true - Unique identifier of the user to impersonate context when step is executed. + Unique identifier of the user who last modified the role. 1033 + + 582a115b-dfb7-4e13-a9dd-f49a90609bc6 + + true + Entydigt id for den bruger, der sidst ændrede rollen. + 1030 + - cbdd01b9-2241-db11-898a-0007e9e17ebd + 63d6a218-2341-db11-898a-0007e9e17ebd true - Unique identifier of the user to impersonate context when step is executed. + Unique identifier of the user who last modified the role. 1033 - 617031ca-1834-11df-b172-00188b01dce6 + 62d6a218-2341-db11-898a-0007e9e17ebd true - Impersonating User + Modified By 1033 + + 23f5edde-0e6a-4df2-9c9b-203c4f2cf135 + + true + Ændret af + 1030 + - 617031ca-1834-11df-b172-00188b01dce6 + 62d6a218-2341-db11-898a-0007e9e17ebd true - Impersonating User + Modified By 1033 - sdkmessageprocessingstep + role - true + false canmodifyauditsettings - true + false false @@ -266220,21 +276664,21 @@ canmodifysearchsettings true - true - true + false + false true true - true + false true - impersonatinguserid + modifiedby 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ImpersonatingUserId + ModifiedBy LookupType @@ -266249,9 +276693,9 @@ - ff32f142-87af-4daf-b4bf-514114cdacc5 + 06d86934-8da0-40cc-a8f7-fcefbf2006d6 - impersonatinguserid + modifiedby String false false @@ -266259,9 +276703,9 @@ false canmodifyadditionalsettings - true + false - 50 + 19 1900-01-01T00:00:00 @@ -266272,7 +276716,7 @@ - sdkmessageprocessingstep + role @@ -266322,14 +276766,14 @@ false false - impersonatinguseridname - 1900-01-01T00:00:00 + modifiedbyname + 2025-11-06T00:19:23.3529984 false canmodifyrequirementlevelsettings None - ImpersonatingUserIdName + ModifiedByName StringType @@ -266351,9 +276795,9 @@ 320 - 6239ac65-7a52-4052-8ebb-b7a9c16a28ec + a9ecf312-028a-4071-9b14-669d55e8ee77 - + modifiedby String false false @@ -266363,52 +276807,168 @@ canmodifyadditionalsettings false - 62 + 29 + 1900-01-01T00:00:00 + + + + + + + + + + role + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modifiedbyyominame + 2025-11-06T00:19:26.9799936 + + false + canmodifyrequirementlevelsettings + None + + ModifiedByYomiName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + modifiedbyname + + Text + + + false + 0 + 320 + + + b69ca17f-6254-4fcd-b7a0-0a3af67ca0ef + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + false + + 8 1900-01-01T00:00:00 - a2d15b0b-4c02-4a70-ac64-24d6d0fadeb4 + 68dfeed0-2241-db11-898a-0007e9e17ebd true - Version in which the form is introduced. + Date and time when the role was last modified. 1033 + + 52758ab6-aa7c-4184-b8d9-00906a306a60 + + true + Dato og klokkeslæt for den seneste ændring af rollen. + 1030 + - a2d15b0b-4c02-4a70-ac64-24d6d0fadeb4 + 68dfeed0-2241-db11-898a-0007e9e17ebd true - Version in which the form is introduced. + Date and time when the role was last modified. 1033 - 05d1b319-2d68-4aea-82df-66c29f04ee2d + 67dfeed0-2241-db11-898a-0007e9e17ebd true - Introduced Version + Modified On 1033 + + d1379766-fed6-4d1b-ab5c-28bf1e82383c + + true + Ændret + 1030 + - 05d1b319-2d68-4aea-82df-66c29f04ee2d + 67dfeed0-2241-db11-898a-0007e9e17ebd true - Introduced Version + Modified On 1033 - sdkmessageprocessingstep + role - true + false canmodifyauditsettings - true + false false @@ -266417,7 +276977,7 @@ false false - false + true true canmodifyglobalfiltersettings @@ -266432,7 +276992,7 @@ false false - false + true false false @@ -266443,108 +277003,123 @@ false canmodifysearchsettings - false + true - true + false false - false + true true false true - introducedversion + modifiedon 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IntroducedVersion + ModifiedOn - StringType + DateTimeType - 6.0.0.0 + 5.0.0.0 false 0 - VersionNumber - Auto - 48 - - - VersionNumber - + DateAndTime + Inactive - false 0 - 96 + + false + canmodifybehavior + false + + + UserLocal + - - 5696417f-0c89-405d-a9e6-b838fd4544b9 + + 95787402-a0a2-4ec6-bb74-ce1472fca10b - Picklist + Lookup false false false false canmodifyadditionalsettings - true + false - 25 + 44 1900-01-01T00:00:00 - 5.0.0.0 + - 4c189460-0b35-419b-b280-4833912d34d5 + b686d745-b22a-4b28-94ce-64ab890e9893 true - Identifies if a plug-in should be executed from a parent pipeline, a child pipeline, or both. + Unique identifier of the delegate user who last modified the role. 1033 + + 8920c467-3cf8-4791-85c3-aa487a1f0ced + + true + Entydigt id for den stedfortræderbruger, der senest ændrede rollen. + 1030 + - 4c189460-0b35-419b-b280-4833912d34d5 + b686d745-b22a-4b28-94ce-64ab890e9893 true - Identifies if a plug-in should be executed from a parent pipeline, a child pipeline, or both. + Unique identifier of the delegate user who last modified the role. 1033 - 643ab52d-db2d-4f28-be5c-9aeff2e48044 + 47dc7dcb-9b0d-43f4-b124-3ab986542241 true - Invocation Source + Modified By (Delegate) 1033 + + 60cf5da1-9a24-45b2-83b2-e844ecf56175 + + true + Ændret af (stedfortræder) + 1030 + - 643ab52d-db2d-4f28-be5c-9aeff2e48044 + 47dc7dcb-9b0d-43f4-b124-3ab986542241 true - Invocation Source + Modified By (Delegate) 1033 - sdkmessageprocessingstep + role - true + false canmodifyauditsettings - true + false false false iscustomizable - false + true false false @@ -266573,206 +277148,50 @@ false canmodifysearchsettings - false + true - true + false false - false + true true - true - false + false + true - invocationsource + modifiedonbehalfby 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - InvocationSource + ModifiedOnBehalfBy - PicklistType + LookupType 5.0.0.0 false - 0 + - 0 - - a15f5d9e-8d97-4803-867b-e5e3f849886b - - - - - 523e71b1-f0bc-49d6-a8d3-4902fb727087 - - true - Identifies if a plug-in should be executed from a parent pipeline, a child pipeline, or both. - 1033 - - - - 523e71b1-f0bc-49d6-a8d3-4902fb727087 - - true - Identifies if a plug-in should be executed from a parent pipeline, a child pipeline, or both. - 1033 - - - - - - e072900d-75ee-47a0-a643-05d1b28927d7 - - true - Invocation Source - 1033 - - - - e072900d-75ee-47a0-a643-05d1b28927d7 - - true - Invocation Source - 1033 - - - - false - - false - iscustomizable - false - - false - true - sdkmessageprocessingstep_invocationsource - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 38176a8b-545d-469d-82bd-07f6fe441e59 - - true - Internal - 1033 - - - - 38176a8b-545d-469d-82bd-07f6fe441e59 - - true - Internal - 1033 - - - - -1 - - - - - - - - - - - - false - true - - - - 9a4928cf-609d-457a-a033-7ebfefae1f36 - - true - Parent - 1033 - - - - 9a4928cf-609d-457a-a033-7ebfefae1f36 - - true - Parent - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 3c62b905-4a15-4329-ad48-4e530da56e6f - - true - Child - 1033 - - - - 3c62b905-4a15-4329-ad48-4e530da56e6f - - true - Child - 1033 - - - - 1 - - - - - - - - 0 - - + None + + systemuser + - - 16ce2904-555b-4e4d-a1e5-ef0359e427c1 + + 67a57e3f-fb93-4bfb-931c-c98b0f84b6c6 - invocationsource - Virtual + modifiedonbehalfby + String false false false false canmodifyadditionalsettings - true + false - 31 + 46 1900-01-01T00:00:00 @@ -266783,7 +277202,7 @@ - sdkmessageprocessingstep + role @@ -266833,76 +277252,59 @@ false false - invocationsourcename - 1900-01-01T00:00:00 + modifiedonbehalfbyname + 2025-11-06T00:19:26.0600064 false canmodifyrequirementlevelsettings None - InvocationSourceName + ModifiedOnBehalfByName - VirtualType + StringType 5.0.0.0 true - + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 320 - - 3bb0b62d-a32f-4922-84df-6f105a291ebc + + 091ec6c7-721b-45f7-a0c6-1f6f2d4779cf - - ManagedProperty + modifiedonbehalfby + String false false false false canmodifyadditionalsettings - true + false - 60 + 47 1900-01-01T00:00:00 - - - 0347fa86-631e-49ac-a622-7ebba9c5c472 - - true - Information that specifies whether this component can be customized. - 1033 - - - - 0347fa86-631e-49ac-a622-7ebba9c5c472 - - true - Information that specifies whether this component can be customized. - 1033 - + + - - - db634820-6c56-485c-bc2c-49fb53484df1 - - true - Customizable - 1033 - - - - db634820-6c56-485c-bc2c-49fb53484df1 - - true - Customizable - 1033 - + + - sdkmessageprocessingstep + role @@ -266945,102 +277347,123 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - iscustomizable - 1900-01-01T00:00:00 + modifiedonbehalfbyyominame + 2025-11-06T00:19:27.0599936 false canmodifyrequirementlevelsettings - SystemRequired + None - IsCustomizable + ModifiedOnBehalfByYomiName - ManagedPropertyType + StringType 5.0.0.0 - false - + true + 0 - iscustomizableanddeletable - - 0 - Boolean + Text + Auto + 100 + modifiedonbehalfbyname + + Text + + + false + 0 + 320 - - 12351fef-69e5-11df-a50e-f4ce462d9b5d + + 9491d69f-3ac2-488b-bad7-441383be2a93 - ManagedProperty + String false false false false canmodifyadditionalsettings - true + false - 61 + 5 1900-01-01T00:00:00 - 12351ff0-69e5-11df-a50e-f4ce462d9b5d + 8faac7f4-2241-db11-898a-0007e9e17ebd true - Information that specifies whether this component should be hidden. + Name of the role. 1033 + + d5004acf-fe18-45eb-9d83-e03be89779b4 + + true + Navnet på rollen. + 1030 + - 12351ff0-69e5-11df-a50e-f4ce462d9b5d + 8faac7f4-2241-db11-898a-0007e9e17ebd true - Information that specifies whether this component should be hidden. + Name of the role. 1033 - 12351ff1-69e5-11df-a50e-f4ce462d9b5d + 8eaac7f4-2241-db11-898a-0007e9e17ebd true - Hidden + Name 1033 + + 3b2ee38c-67dc-4bbd-8c16-a68e0d97d598 + + true + Navn + 1030 + - 12351ff1-69e5-11df-a50e-f4ce462d9b5d + 8eaac7f4-2241-db11-898a-0007e9e17ebd true - Hidden + Name 1033 - sdkmessageprocessingstep + role - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false - true + false true canmodifyglobalfiltersettings @@ -267048,15 +277471,15 @@ true false - false + true false isrenameable false false - false - false + true + true false true @@ -267066,95 +277489,116 @@ false canmodifysearchsettings - false + true true false - false + true true true true - ishidden + name 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsHidden + Name - ManagedPropertyType + StringType 5.0.0.0 false - + 0 - ishidden - - 0 - Boolean + Text + Auto + 100 + + + Text + + + false + 0 + 200 - - de979383-7a59-4830-9f0c-a4b8196cdf00 + + c2761675-189f-4d86-a5d8-ef8599fbcd9b - Boolean + Uniqueidentifier false false false false canmodifyadditionalsettings - true + false - 57 + 3 1900-01-01T00:00:00 - b42eeebc-d76a-49d9-94e0-e2926f07ee31 + 61d8a218-2341-db11-898a-0007e9e17ebd true - Information that specifies whether this component is managed. + Unique identifier of the organization associated with the role. 1033 + + 13517469-fbe6-42bd-8c93-693a33408673 + + true + Entydigt id for den organisation, der er tilknyttet rollen. + 1030 + - b42eeebc-d76a-49d9-94e0-e2926f07ee31 + 61d8a218-2341-db11-898a-0007e9e17ebd true - Information that specifies whether this component is managed. + Unique identifier of the organization associated with the role. 1033 - 09916adb-965b-426b-a539-cf19f0a12c08 + 60d8a218-2341-db11-898a-0007e9e17ebd true - State + Organization 1033 + + 422592f6-36bf-40ac-a4c4-ca8708189b26 + + true + Organisation + 1030 + - 09916adb-965b-426b-a539-cf19f0a12c08 + 60d8a218-2341-db11-898a-0007e9e17ebd true - State + Organization 1033 - sdkmessageprocessingstep + role - true + false canmodifyauditsettings - true + false false @@ -267193,163 +277637,42 @@ false false - true + false true false true - ismanaged + organizationid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsManaged + OrganizationId - BooleanType + UniqueidentifierType 5.0.0.0 false - 0 + - false - - 9d04e035-5408-4c1d-a5aa-20445a02f691 - - - - - b41954a2-f3a5-47e9-ae13-ceb49de4465b - - true - Information about whether the current component is managed. - 1033 - - - - b41954a2-f3a5-47e9-ae13-ceb49de4465b - - true - Information about whether the current component is managed. - 1033 - - - - - - 45a188b1-91a8-4019-b582-cebda8081064 - - true - Is Component Managed - 1033 - - - - 45a188b1-91a8-4019-b582-cebda8081064 - - true - Is Component Managed - 1033 - - - - false - - false - iscustomizable - false - - true - true - ismanaged - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 443c7078-b7cb-47e7-8547-08dfa82950d0 - - true - Unmanaged - 1033 - - - - 443c7078-b7cb-47e7-8547-08dfa82950d0 - - true - Unmanaged - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - ec886b5b-7e97-4c62-b30c-bf295639d540 - - true - Managed - 1033 - - - - ec886b5b-7e97-4c62-b30c-bf295639d540 - - true - Managed - 1033 - - - - 1 - - - - - 0 - - 143f00ae-c193-43b9-9dde-963971bbfa62 + + aa677006-e47a-41aa-8d56-a2465ee83792 - ismanaged - Virtual + organizationid + String false false false false canmodifyadditionalsettings - true + false - 59 + 23 1900-01-01T00:00:00 @@ -267360,7 +277683,7 @@ - sdkmessageprocessingstep + role @@ -267410,425 +277733,113 @@ false false - ismanagedname + organizationidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - IsManagedName + OrganizationIdName - VirtualType + StringType 5.0.0.0 true - + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 320 - - 078f0e96-1a60-47c6-9dee-430c19cc0cb9 + + a2cc2646-92a4-4b72-a636-4682cea41ada - Picklist + DateTime false false false false canmodifyadditionalsettings - true + false - 21 + 27 1900-01-01T00:00:00 - 174901bf-2241-db11-898a-0007e9e17ebd + 50769e3a-fab5-4b6e-a57f-8fcba61f4341 true - Run-time mode of execution, for example, synchronous or asynchronous. + Date and time that the record was migrated. 1033 - - - 174901bf-2241-db11-898a-0007e9e17ebd - - true - Run-time mode of execution, for example, synchronous or asynchronous. - 1033 - - - - - 164901bf-2241-db11-898a-0007e9e17ebd + 737e9b2e-b558-405c-b5a8-7c3dfc2091d0 true - Execution Mode - 1033 + Dato og klokkeslæt for overførsel af posten. + 1030 - 164901bf-2241-db11-898a-0007e9e17ebd + 50769e3a-fab5-4b6e-a57f-8fcba61f4341 true - Execution Mode + Date and time that the record was migrated. 1033 - - sdkmessageprocessingstep - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - mode - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - Mode - - - PicklistType - - 5.0.0.0 - false - 0 - - 0 - - 310b9033-08e7-4577-aae0-9adbfc1fcb44 - - - - - 5dd19e03-1c2d-414b-9d59-d02752bd5665 - - true - Run-time mode of execution, for example, synchronous or asynchronous. - 1033 - - - - 5dd19e03-1c2d-414b-9d59-d02752bd5665 - - true - Run-time mode of execution, for example, synchronous or asynchronous. - 1033 - - - - - - 94d41f17-97e5-4c4a-b79c-f715f309e99a - - true - Mode - 1033 - - - - 94d41f17-97e5-4c4a-b79c-f715f309e99a - - true - Mode - 1033 - - - - false - - false - iscustomizable - false - - false - true - sdkmessageprocessingstep_mode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 194901bf-2241-db11-898a-0007e9e17ebd - - true - Synchronous - 1033 - - - - 194901bf-2241-db11-898a-0007e9e17ebd - - true - Synchronous - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 1b4901bf-2241-db11-898a-0007e9e17ebd - - true - Asynchronous - 1033 - - - - 1b4901bf-2241-db11-898a-0007e9e17ebd - - true - Asynchronous - 1033 - - - - 1 - - - - - - - - 0 - - - - - 5c0224d2-fb0f-444e-ab91-5514993f1aec - - mode - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 30 - 1900-01-01T00:00:00 - - - - - - - - sdkmessageprocessingstep - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - modename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ModeName - - - VirtualType - - 5.0.0.0 - true - - - - - b7371f72-f9c5-410c-bfd0-3e48d4d730b6 - - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 15 - 1900-01-01T00:00:00 - - - 214901bf-2241-db11-898a-0007e9e17ebd + 60775ca8-ae83-44dd-b320-e728a902e640 true - Unique identifier of the user who last modified the SDK message processing step. + Record Created On 1033 - - - 214901bf-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who last modified the SDK message processing step. - 1033 - - - - - 617031cb-1834-11df-b172-00188b01dce6 + be346516-bf4a-4051-9b9f-8a13143f4a33 true - Modified By - 1033 + Posten blev oprettet den + 1030 - 617031cb-1834-11df-b172-00188b01dce6 + 60775ca8-ae83-44dd-b320-e728a902e640 true - Modified By + Record Created On 1033 - sdkmessageprocessingstep + role - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -267859,138 +277870,44 @@ canmodifysearchsettings true - false - true + true + false true true false true - modifiedby + overriddencreatedon 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ModifiedBy + OverriddenCreatedOn - LookupType + DateTimeType 5.0.0.0 false - - - None - - systemuser - - - - d68bcdc4-6621-492f-93ae-149b291e67bb - - modifiedby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 51 - 1900-01-01T00:00:00 - - - - - - - - - - sdkmessageprocessingstep - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - modifiedbyname - 2025-11-06T00:19:24.3229952 - - false - canmodifyrequirementlevelsettings - None - - ModifiedByName - - - StringType - - 5.0.0.0 - true 0 - Text - Auto - 100 - - - Text - + DateOnly + Inactive - false 0 - 320 + + false + canmodifybehavior + false + + + UserLocal + - 9caa8423-cf02-47f1-accb-2da43048b6f8 + 3541057c-c879-444d-8593-4f04fe62090d DateTime @@ -268000,48 +277917,62 @@ false canmodifyadditionalsettings - true + false - 7 + 32 1900-01-01T00:00:00 - 0d4901bf-2241-db11-898a-0007e9e17ebd + 9943d6dc-d6e7-493a-b091-439afbdf2b78 true - Date and time when the SDK message processing step was last modified. + For internal use only. 1033 + + d03ceba9-29e1-497a-b343-49a87e0dc855 + + true + Kun til intern brug. + 1030 + - 0d4901bf-2241-db11-898a-0007e9e17ebd + 9943d6dc-d6e7-493a-b091-439afbdf2b78 true - Date and time when the SDK message processing step was last modified. + For internal use only. 1033 - 617031cc-1834-11df-b172-00188b01dce6 + 4dd18624-95cd-43e7-a583-975da674a6de true - Modified On + Record Overwrite Time 1033 + + fcc7d8d9-c713-4b49-8c51-8db0427f5626 + + true + Klokkeslæt for overskrivning af post + 1030 + - 617031cc-1834-11df-b172-00188b01dce6 + 4dd18624-95cd-43e7-a583-975da674a6de true - Modified On + Record Overwrite Time 1033 - sdkmessageprocessingstep + role @@ -268053,7 +277984,7 @@ false iscustomizable - false + true false false @@ -268082,23 +278013,23 @@ false canmodifysearchsettings - true + false false - true - true + false + false true false true - modifiedon + overwritetime 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ModifiedOn + OverwriteTime DateTimeType @@ -268107,7 +278038,7 @@ false 0 - DateAndTime + DateOnly Inactive 0 @@ -268121,7 +278052,7 @@ - c4f0e8d8-086e-4c52-a01c-0629a9ed2237 + b5d30c64-f9ae-47ea-a418-3bac04b9dad2 Lookup @@ -268131,60 +278062,74 @@ false canmodifyadditionalsettings - true + false - 33 + 16 1900-01-01T00:00:00 - 96068e81-a64a-44f6-b68c-a0915ed68699 + 5791aa12-2341-db11-898a-0007e9e17ebd true - Unique identifier of the delegate user who last modified the sdkmessageprocessingstep. + Unique identifier of the parent role. 1033 + + 79eb1887-893d-406b-84c2-ec3e518c102b + + true + Entydigt id for den overordnede rolle. + 1030 + - 96068e81-a64a-44f6-b68c-a0915ed68699 + 5791aa12-2341-db11-898a-0007e9e17ebd true - Unique identifier of the delegate user who last modified the sdkmessageprocessingstep. + Unique identifier of the parent role. 1033 - bcccf33a-28e5-4aef-babe-ca5546f6f685 + 5691aa12-2341-db11-898a-0007e9e17ebd true - Modified By (Delegate) + Parent Role 1033 + + 1614630a-0c1b-45fe-9f8d-2f10732f61ef + + true + Overordnet rolle + 1030 + - bcccf33a-28e5-4aef-babe-ca5546f6f685 + 5691aa12-2341-db11-898a-0007e9e17ebd true - Modified By (Delegate) + Parent Role 1033 - sdkmessageprocessingstep + role - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -268216,20 +278161,20 @@ true false - true + false true true false true - modifiedonbehalfby + parentroleid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ModifiedOnBehalfBy + ParentRoleId LookupType @@ -268240,13 +278185,13 @@ None - systemuser + role - 37c50f0f-98ca-4425-872e-2f0097a58e85 + 0e35f9a0-2b8a-42e0-a962-f53e20b7d91d - modifiedonbehalfby + parentroleid String false false @@ -268254,111 +278199,9 @@ false canmodifyadditionalsettings - true - - 38 - 1900-01-01T00:00:00 - - - - - - - - - - sdkmessageprocessingstep - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings false - - false - false - false - true - false - false - - modifiedonbehalfbyname - 2025-11-06T00:19:26.6070016 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfByName - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 320 - - - 8de7d48a-5aa5-4f5b-b5de-24f8b7481267 - - modifiedonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - true - 39 + 26 1900-01-01T00:00:00 @@ -268369,7 +278212,7 @@ - sdkmessageprocessingstep + role @@ -268419,155 +278262,25 @@ false false - modifiedonbehalfbyyominame - 2025-11-06T00:19:26.9170048 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfByYomiName - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 100 - modifiedonbehalfbyname - - Text - - - false - 0 - 320 - - - ac8acaf3-3b97-4c9a-8c50-fa60fbc5cb54 - - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 58 - 1900-01-01T00:00:00 - - - - - 176e2929-796f-49c8-874d-5359d2cfbdb0 - - true - Name of SdkMessage processing step. - 1033 - - - - 176e2929-796f-49c8-874d-5359d2cfbdb0 - - true - Name of SdkMessage processing step. - 1033 - - - - - - 80b2ca4e-eb7c-4b1b-a8a9-a4fa8f5a0cce - - true - Name - 1033 - - - - 80b2ca4e-eb7c-4b1b-a8a9-a4fa8f5a0cce - - true - Name - 1033 - - - sdkmessageprocessingstep - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - true - - false - isrenameable - false - - false - true - true - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - name + parentroleidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - Name + ParentRoleIdName StringType 5.0.0.0 - false + true 0 Text Auto - 256 + 100 Text @@ -268575,10 +278288,10 @@ false 0 - 512 + 200 - 317f070d-48bc-4ee3-a4fb-80f612100a1a + a6918b34-05c5-46b3-9874-b25e23fd1d9c Lookup @@ -268588,288 +278301,62 @@ false canmodifyadditionalsettings - true + false - 11 + 40 1900-01-01T00:00:00 - 0e4901bf-2241-db11-898a-0007e9e17ebd + 90ec8cd9-e1f5-43e3-8a97-96b30bfca133 true - Unique identifier of the organization with which the SDK message processing step is associated. + Unique identifier of the parent root role. 1033 - - - 0e4901bf-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the organization with which the SDK message processing step is associated. - 1033 - - - - - - - sdkmessageprocessingstep - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - organizationid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - OrganizationId - - - LookupType - - 5.0.0.0 - false - - - None - - organization - - - - f95c8000-fc79-4288-bab0-98e5f5a1e831 - - - DateTime - false - false - false - - false - canmodifyadditionalsettings - true - - 52 - 1900-01-01T00:00:00 - - - - f95c8001-fc79-4288-bab0-98e5f5a1e831 + e9b3610b-f23b-44ed-8f69-b222a2ed65ce true - For internal use only. - 1033 + Entydigt id for den overordnede rodrolle. + 1030 - f95c8001-fc79-4288-bab0-98e5f5a1e831 + 90ec8cd9-e1f5-43e3-8a97-96b30bfca133 true - For internal use only. + Unique identifier of the parent root role. 1033 - f95c8002-fc79-4288-bab0-98e5f5a1e831 - - true - Record Overwrite Time - 1033 - - - - f95c8002-fc79-4288-bab0-98e5f5a1e831 - - true - Record Overwrite Time - 1033 - - - sdkmessageprocessingstep - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - overwritetime - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - OverwriteTime - - - DateTimeType - - 5.0.0.0 - false - 0 - - DateOnly - Inactive - - 0 - - false - canmodifybehavior - false - - - UserLocal - - - - cc361213-7d1f-45a7-a5e8-53c7b6143a3f - - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 4 - 1900-01-01T00:00:00 - 5.0.0.0 - - - - cddd01b9-2241-db11-898a-0007e9e17ebd + 5618aa92-96f0-4282-83ea-61d9c300c88e true - Unique identifier of the plug-in type associated with the step. + Parent Root Role 1033 - - - cddd01b9-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the plug-in type associated with the step. - 1033 - - - - - 37a71755-fe94-4e5f-8146-8a1bfc58ea7c + e4a6626e-5db7-4817-a72a-48bd141d2828 true - Plug-In Type - 1033 + Overordnet rodrolle + 1030 - 37a71755-fe94-4e5f-8146-8a1bfc58ea7c + 5618aa92-96f0-4282-83ea-61d9c300c88e true - Plug-In Type + Parent Root Role 1033 - sdkmessageprocessingstep + role @@ -268881,7 +278368,7 @@ false iscustomizable - false + true false false @@ -268912,21 +278399,21 @@ canmodifysearchsettings true - true - true + false + false true true - true - false + false + true - plugintypeid + parentrootroleid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - PluginTypeId + ParentRootRoleId LookupType @@ -268937,13 +278424,13 @@ None - sdkmessagefilter + role - e8965be8-482c-4135-8f16-c621789fba99 + be6702c9-b76f-4e91-ae31-33ca568ef4e7 - plugintypeid + parentrootroleid String false false @@ -268951,11 +278438,11 @@ false canmodifyadditionalsettings - true + false - 53 + 41 1900-01-01T00:00:00 - 5.0.0.0 + @@ -268964,7 +278451,7 @@ - sdkmessageprocessingstep + role @@ -269014,14 +278501,14 @@ false false - plugintypeidname + parentrootroleidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - PluginTypeIdName + ParentRootRoleIdName StringType @@ -269040,13 +278527,13 @@ false 0 - 320 + 200 - - 1e91a08e-a0e0-4d1e-a5e5-a95c7d0aac19 + + 99d46fde-2225-4212-8563-f8639066e5ec - Lookup + Uniqueidentifier false false false @@ -269055,50 +278542,64 @@ canmodifyadditionalsettings false - 10005 - 2025-11-06T04:55:06.2530048 + 1 + 1900-01-01T00:00:00 - 64609ddf-4cf2-4181-a912-7ebc0843690e + f6aac7f4-2241-db11-898a-0007e9e17ebd true - Unique identifier for powerfxrule associated with SdkMessageProcessingStep. + Unique identifier of the role. 1033 + + e22fa4a3-3bca-479e-911a-fdf9db2440b8 + + true + Entydigt id for rollen. + 1030 + - 64609ddf-4cf2-4181-a912-7ebc0843690e + f6aac7f4-2241-db11-898a-0007e9e17ebd true - Unique identifier for powerfxrule associated with SdkMessageProcessingStep. + Unique identifier of the role. 1033 - 3423d8a7-cb9d-4365-a179-df112998a5d5 + f5aac7f4-2241-db11-898a-0007e9e17ebd true - powerfxruleid + Role 1033 + + ce4c4caa-b0b3-4f5c-aded-6377ff64ad4b + + true + Rolle + 1030 + - 3423d8a7-cb9d-4365-a179-df112998a5d5 + f5aac7f4-2241-db11-898a-0007e9e17ebd true - powerfxruleid + Role 1033 - sdkmessageprocessingstep + role - true + false canmodifyauditsettings false @@ -269109,14 +278610,14 @@ false false - false + true true canmodifyglobalfiltersettings false true - false + true false false @@ -269124,7 +278625,7 @@ false false - false + true false false @@ -269138,194 +278639,102 @@ true true - true - true + false + false true - true + false true - powerfxruleid - 2025-11-06T04:55:06.9730048 + roleid + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - PowerfxRuleId + RoleId - LookupType + UniqueidentifierType - 1.0 + 5.0.0.0 false - None - - powerfxrule - - - - 703adad5-144c-4e4a-adc0-3606d2e4f211 - - powerfxruleid - String - false - false - false - - true - canmodifyadditionalsettings - true - - 10008 - 2025-11-06T04:55:07.0370048 - - - - - - - - - - sdkmessageprocessingstep - - - - true - canmodifyauditsettings - true - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - powerfxruleidname - 2025-11-06T04:55:07.0370048 - - true - canmodifyrequirementlevelsettings - None - - PowerfxRuleIdName - - - StringType - - 9.1.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 200 - - 4fbad614-6842-49b8-bfda-2693a108e923 + + 8de3ef25-e1f6-4e90-aa0f-ad01d0a12d7d - Integer + Uniqueidentifier false false false false canmodifyadditionalsettings - true + false - 5 + 36 1900-01-01T00:00:00 - 144901bf-2241-db11-898a-0007e9e17ebd + 09a87f46-b345-4b77-ac76-94680bc66fa1 true - Processing order within the stage. + For internal use only. 1033 + + a9187440-1b49-41d2-9753-115388b9d0d0 + + true + Kun til intern brug. + 1030 + - 144901bf-2241-db11-898a-0007e9e17ebd + 09a87f46-b345-4b77-ac76-94680bc66fa1 true - Processing order within the stage. + For internal use only. 1033 - 617031cd-1834-11df-b172-00188b01dce6 + 7bf10158-482b-4ea5-8a69-fb30bafb1562 true - Execution Order + Unique Id 1033 + + b1725225-59ab-4df9-a046-9c43dee65956 + + true + Entydigt id + 1030 + - 617031cd-1834-11df-b172-00188b01dce6 + 7bf10158-482b-4ea5-8a69-fb30bafb1562 true - Execution Order + Unique Id 1033 - sdkmessageprocessingstep + role - true + false canmodifyauditsettings - true + false false @@ -269362,40 +278771,35 @@ canmodifysearchsettings false - true + false false false true - true + false true - rank + roleidunique 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - Rank + RoleIdUnique - IntegerType + UniqueidentifierType 5.0.0.0 false - 0 + - None - 2147483647 - -2147483648 - - 0 - - a76cae40-c5a1-4308-b31e-d4aae57cb2aa + + 38aaf916-a3c5-4d41-8db2-6b68ccb164e8 - String + Lookup false false false @@ -269404,58 +278808,72 @@ canmodifyadditionalsettings false - 10009 - 2025-11-06T05:11:57.9830016 + 2 + 1900-01-01T00:00:00 - 9add322b-e0c6-4207-93f6-9f9dfc55fe32 + 48e8af0c-2341-db11-898a-0007e9e17ebd true - For internal use only. Holds miscellaneous properties related to runtime integration. + Unique identifier of the role template that is associated with the role. 1033 + + add457fd-8849-405f-a539-6f4c1a9dfb18 + + true + Entydigt id for den rolleskabelon, der er tilknyttet rollen. + 1030 + - 9add322b-e0c6-4207-93f6-9f9dfc55fe32 + 48e8af0c-2341-db11-898a-0007e9e17ebd true - For internal use only. Holds miscellaneous properties related to runtime integration. + Unique identifier of the role template that is associated with the role. 1033 - 9ae5dc6a-b206-45b4-bd63-f3c6ffb89985 + 47e8af0c-2341-db11-898a-0007e9e17ebd true - Runtime Integration Properties + Role Template 1033 + + 6ec6e54d-1081-41b7-922d-e638166f793d + + true + Rolleskabelon + 1030 + - 9ae5dc6a-b206-45b4-bd63-f3c6ffb89985 + 47e8af0c-2341-db11-898a-0007e9e17ebd true - Runtime Integration Properties + Role Template 1033 - sdkmessageprocessingstep + role true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -269484,102 +278902,109 @@ false canmodifysearchsettings - false + true - true + false false false true - true + false true - runtimeintegrationproperties - 2025-11-06T05:11:57.9830016 + roletemplateid + 2025-11-06T02:05:44.9069952 false canmodifyrequirementlevelsettings None - RuntimeIntegrationProperties + RoleTemplateId - StringType + LookupType - 9.1.0.0 + 5.0.0.0 false - 0 - - Text - Auto - 512 - - - Text - - - false - 0 - -1 + + + None + + roletemplate + - - 2479fe23-bb5a-46a0-9fef-42292c358c7c + + ad265fd3-c501-40f0-b0f7-3194e536b95c - Lookup + Uniqueidentifier false false false false canmodifyadditionalsettings - true + false - 22 + 35 1900-01-01T00:00:00 - 1f4901bf-2241-db11-898a-0007e9e17ebd + c3a6ea4c-278c-496f-89dd-b3ea932e69b2 true - Unique identifier of the SDK message filter. + Unique identifier of the associated solution. 1033 + + 118e2ced-e2c8-4c6a-82d3-7d61a69eb40a + + true + Entydigt id for den tilknyttede løsning. + 1030 + - 1f4901bf-2241-db11-898a-0007e9e17ebd + c3a6ea4c-278c-496f-89dd-b3ea932e69b2 true - Unique identifier of the SDK message filter. + Unique identifier of the associated solution. 1033 - 617031ce-1834-11df-b172-00188b01dce6 + 76734f22-cd15-44d0-a35a-f22b062c63d7 true - SdkMessage Filter + Solution 1033 + + 297d5e49-0f75-4a89-b36f-0a4095c632d3 + + true + Løsning + 1030 + - 617031ce-1834-11df-b172-00188b01dce6 + 76734f22-cd15-44d0-a35a-f22b062c63d7 true - SdkMessage Filter + Solution 1033 - sdkmessageprocessingstep + role - true + false canmodifyauditsettings - true + false false @@ -269616,39 +279041,35 @@ canmodifysearchsettings false - true + false false false true - true + false true - sdkmessagefilterid + solutionid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - SdkMessageFilterId + SolutionId - LookupType + UniqueidentifierType 5.0.0.0 false - None - - sdkmessagefilter - - - 0b2f313f-cdc5-4f65-aaf6-3c4a1684311a + + a0a0ead0-4caf-4c19-b222-4ccc4de7f1d0 - Lookup + Memo false false false @@ -269657,46 +279078,46 @@ canmodifyadditionalsettings true - 6 - 1900-01-01T00:00:00 + 10006 + 2025-11-06T02:05:45.2669952 - 124901bf-2241-db11-898a-0007e9e17ebd + 312fe9f1-bdb4-4b4b-9ed1-8e3e6667dfae true - Unique identifier of the SDK message. + Summary of Core Table Permissions of the Role 1033 - 124901bf-2241-db11-898a-0007e9e17ebd + 312fe9f1-bdb4-4b4b-9ed1-8e3e6667dfae true - Unique identifier of the SDK message. + Summary of Core Table Permissions of the Role 1033 - 617031cf-1834-11df-b172-00188b01dce6 + b305a8d5-4080-4043-bcae-a82ce660bd24 true - SDK Message + Summary of Core Table Permissions 1033 - 617031cf-1834-11df-b172-00188b01dce6 + b305a8d5-4080-4043-bcae-a82ce660bd24 true - SDK Message + Summary of Core Table Permissions 1033 - sdkmessageprocessingstep + role @@ -269726,7 +279147,7 @@ false false - true + false false false @@ -269735,7 +279156,7 @@ false - false + true canmodifysearchsettings true @@ -269746,131 +279167,32 @@ true true - sdkmessageid - 1900-01-01T00:00:00 + summaryofcoretablepermissions + 2025-11-06T02:05:45.2669952 - false + true canmodifyrequirementlevelsettings - SystemRequired + ApplicationRequired - SdkMessageId + SummaryofCoreTablePermissions - LookupType + MemoType - 5.0.0.0 + 9.2.0.0 false - None - - sdkmessage - - - - 72f140f6-36e5-4571-bf64-3dea3e15be59 - - sdkmessageid - String - false - false - false - - false - canmodifyadditionalsettings - true - - 54 - 1900-01-01T00:00:00 - - - - - - - - - - sdkmessageprocessingstep - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - sdkmessageidname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - SdkMessageIdName - - - StringType - - 5.0.0.0 - true - 0 - - Text + TextArea Auto - 100 - - - Text + 2000 + + TextArea - false - 0 - 320 - d79fcd2e-0ed3-4ee6-8adc-b3227456aa38 + ef97e43e-0fab-419f-b399-116a61f473d2 Uniqueidentifier @@ -269880,139 +279202,62 @@ false canmodifyadditionalsettings - true + false - 8 + 33 1900-01-01T00:00:00 - cfdd01b9-2241-db11-898a-0007e9e17ebd + cbc5244b-8338-4c83-b19c-18dc8dd00c68 true - Unique identifier of the SDK message processing step entity. + For internal use only. 1033 + + 37d44723-c935-47dc-b8ed-fa068504cd3d + + true + Kun til intern brug. + 1030 + - cfdd01b9-2241-db11-898a-0007e9e17ebd + cbc5244b-8338-4c83-b19c-18dc8dd00c68 true - Unique identifier of the SDK message processing step entity. + For internal use only. 1033 - - - - sdkmessageprocessingstep - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - true - - true - canmodifyglobalfiltersettings - false - - true - true - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - false - true - - sdkmessageprocessingstepid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - SdkMessageProcessingStepId - - - UniqueidentifierType - - 5.0.0.0 - false - - - - - 9fb91f92-85bf-41ce-b8fc-118c6d3ad910 - - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 12 - 1900-01-01T00:00:00 - - - 104901bf-2241-db11-898a-0007e9e17ebd + e1f5d489-6ce1-460d-b499-c5489dd15ac7 true - Unique identifier of the SDK message processing step. + Solution 1033 + + 6d5813e4-49b5-4872-9a15-37c126639319 + + true + Løsning + 1030 + - 104901bf-2241-db11-898a-0007e9e17ebd + e1f5d489-6ce1-460d-b499-c5489dd15ac7 true - Unique identifier of the SDK message processing step. + Solution 1033 - - - - - sdkmessageprocessingstep + role @@ -270058,18 +279303,18 @@ false false false - true + false false - true + false - sdkmessageprocessingstepidunique + supportingsolutionid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - SdkMessageProcessingStepIdUnique + SupportingSolutionId UniqueidentifierType @@ -270079,65 +279324,79 @@ - - 7ade6fbd-ed6f-4929-a34f-4cd4c37d68eb + + 5d6345f6-da3a-48a6-a617-0a6bd4ec124b - Lookup + BigInt false false false false canmodifyadditionalsettings - true + false - 18 + 13 1900-01-01T00:00:00 - 1b1171c6-4d37-4e1d-abbe-9378b9f7f6a9 + 4d9511a2-699f-4e66-b590-50746b138db6 true - Unique identifier of the Sdk message processing step secure configuration. + Version number of the role. 1033 + + 79055731-f1c8-4c15-899a-651b1cda6c9b + + true + Versionsnummeret for rollen. + 1030 + - 1b1171c6-4d37-4e1d-abbe-9378b9f7f6a9 + 4d9511a2-699f-4e66-b590-50746b138db6 true - Unique identifier of the Sdk message processing step secure configuration. + Version number of the role. 1033 - 617031d0-1834-11df-b172-00188b01dce6 + 80467aed-17a7-4099-afcf-9d2d72b9d8ea true - SDK Message Processing Step Secure Configuration + Version number 1033 + + 11e92cec-4ac9-4b60-a50d-7387dbc34b6e + + true + Versionsnummer + 1030 + - 617031d0-1834-11df-b172-00188b01dce6 + 80467aed-17a7-4099-afcf-9d2d72b9d8ea true - SDK Message Processing Step Secure Configuration + Version number 1033 - sdkmessageprocessingstep + role - true + false canmodifyauditsettings - true + false false @@ -270161,7 +279420,7 @@ false false - false + true false false @@ -270174,118 +279433,1857 @@ canmodifysearchsettings false - true + false false false true - true + false true - sdkmessageprocessingstepsecureconfigid + versionnumber 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - ApplicationRequired + None - SdkMessageProcessingStepSecureConfigId + VersionNumber - LookupType + BigIntType 5.0.0.0 false - None - - sdkmessageprocessingstepsecureconfig - + 9223372036854775807 + -9223372036854775808 - - 15d71000-3ba6-4734-89f9-327179be6218 - - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 55 - 1900-01-01T00:00:00 - - - - - 15d71001-3ba6-4734-89f9-327179be6218 - - true - Unique identifier of the associated solution. - 1033 - - - - 15d71001-3ba6-4734-89f9-327179be6218 - - true - Unique identifier of the associated solution. - 1033 - - - - - - 15d71002-3ba6-4734-89f9-327179be6218 - - true - Solution - 1033 - - - - 15d71002-3ba6-4734-89f9-327179be6218 - - true - Solution - 1033 - - - sdkmessageprocessingstep - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true + + false + false + false + + false + canbeincustomentityassociation + false + + + false + canbeinmanytomany + false + + + false + canbeprimaryentityinrelationship + true + + + false + canberelatedentityinrelationship + false + + true + + false + canchangetrackingbeenabled + false + + + false + cancreateattributes + false + + + false + cancreatecharts + false + + + false + cancreateforms + false + + + false + cancreateviews + false + + + true + canenablesynctoexternalsearchindex + true + + + true + canmodifyadditionalsettings + true + + false + true + Local + 1900-01-01T00:00:00 + + + false + + + + 73dc01b9-2241-db11-898a-0007e9e17ebd + + true + Grouping of security privileges. Users are assigned roles that authorize their access to the Microsoft CRM system. + 1033 + + + 9436ed42-1e94-48df-96b6-682806eaa4d4 + + true + En gruppeinddeling af sikkerhedsrettigheder. Brugere tildeles roller, der godkender adgangen til Microsoft CRM. + 1030 + + + + 73dc01b9-2241-db11-898a-0007e9e17ebd + + true + Grouping of security privileges. Users are assigned roles that authorize their access to the Microsoft CRM system. + 1033 + + + + + + 75dc01b9-2241-db11-898a-0007e9e17ebd + + true + Security Roles + 1033 + + + 3ad5d75e-6400-4158-bfbf-ea86abda7804 + + true + Sikkerhedsroller + 1030 + + + + 75dc01b9-2241-db11-898a-0007e9e17ebd + + true + Security Roles + 1033 + + + + + + 74dc01b9-2241-db11-898a-0007e9e17ebd + + true + Security Role + 1033 + + + 2b856649-ecc9-4dbe-be4c-f75b0f54f9bf + + true + Sikkerhedsrolle + 1030 + + + + 74dc01b9-2241-db11-898a-0007e9e17ebd + + true + Security Role + 1033 + + + false + + false + false + false + false + + + + + false + false + false + false + + true + canmodifyauditsettings + false + + true + false + false + + false + canmodifyconnectionsettings + false + + false + + false + iscustomizable + true + + false + false + + false + canmodifyduplicatedetectionsettings + false + + false + false + true + false + false + false + false + + false + canmodifymailmergesettings + false + + true + + false + ismappable + true + + false + false + + false + canmodifymobileclientreadonly + true + + true + + false + isrenameable + false + + false + false + false + true + false + true + + false + canmodifyqueuesettings + false + + + false + canmodifymobilevisibility + false + + + false + canmodifymobileclientvisibility + true + + role + + + 8b366d6e-d389-11db-9246-00123f3a1b51 + + false + + false + iscustomizable + false + + true + true + systemuserroles_association + None + 5.0.0.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + systemuserid + systemuser + systemuserroles_association + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + roleid + role + systemuserroles_association + systemuserroles + + + 8b366d87-d389-11db-9246-00123f3a1b51 + + false + + false + iscustomizable + false + + true + false + roleprivileges_association + None + 5.0.0.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + privilegeid + privilege + roleprivileges_association + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + roleid + role + roleprivileges_association + roleprivileges + + + 8b366d71-d389-11db-a92b-00123f3a1b51 + + false + + false + iscustomizable + false + + true + true + appmoduleroles_association + None + 8.2.0.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + appmoduleid + appmodule + appmoduleroles_association + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + roleid + role + appmoduleroles_association + appmoduleroles + + + 8d0b8700-9ca8-48ef-908d-da2aff07f92e + + false + + false + iscustomizable + false + + true + true + teamroles_association + None + 5.0.0.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + teamid + team + teamroles_association + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + roleid + role + teamroles_association + teamroles + + + 923f91be-b5ba-f011-bbd3-7c1e52365f30 + + false + + false + iscustomizable + false + + true + false + application_role + None + 1.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + 7cab3d5a-a521-4beb-87c1-e7122ba69841 + + true + + 1033 + + + + 7cab3d5a-a521-4beb-87c1-e7122ba69841 + + true + + 1033 + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + applicationid + application + application_role + + DoNotDisplay + Details + + + + c68c9fce-30b8-4540-9202-49b5055c100f + + true + + 1033 + + + + c68c9fce-30b8-4540-9202-49b5055c100f + + true + + 1033 + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + roleid + role + application_role + applicationroles + + + 507a678f-b8ba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + applicationuserrole + None + 1.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + + + true + + true + + + 00000000-0000-0000-0000-000000000000 + + applicationuserid + applicationuser + applicationuserrole + + DoNotDisplay + Details + + + + + + true + + true + + + 00000000-0000-0000-0000-000000000000 + + roleid + role + applicationuserrole + applicationuserrole + + + + + 36f8e113-d956-4dfd-ab14-632b66021693 + + false + + false + iscustomizable + false + + true + true + business_unit_roles + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_roles + businessunitid + role + businessunitid + + 0 + + + 15d0a81e-467c-4cf4-a3c0-146b821b6bd9 + + false + + false + iscustomizable + false + + true + true + lk_role_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_role_createdonbehalfby + createdonbehalfby + role + createdonbehalfby + + 0 + + + f5ee7c43-b890-4551-8910-9d6d8cd3ddaa + + false + + false + iscustomizable + false + + true + false + organization_roles + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_roles + organizationid + role + organizationid_organization + + 0 + + + 7284bf83-2f84-4ce6-b75b-50753fc5ea78 + + false + + false + iscustomizable + false + + true + true + role_parent_role + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + roleid + role + role_parent_role + parentroleid + role + parentroleid + + 0 + + + b906bdac-aeb2-4a23-af6f-a1c0cf7ba5fc + + false + + false + iscustomizable + false + + true + true + lk_rolebase_createdby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_rolebase_createdby + createdby + role + createdby + + 0 + + + d56d1bc2-5777-4f1d-a233-7a97be39fdfb + + false + + false + iscustomizable + false + + true + false + role_template_roles + Append + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + roletemplateid + roletemplate + role_template_roles + roletemplateid + role + roletemplateid + + 1 + + + 91de8de9-18ad-4505-8b80-d8ce9dec387a + + false + + false + iscustomizable + false + + true + true + solution_role + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + solutionid + solution + solution_role + solutionid + role + solution_role + + 0 + + + 0f8590ea-8b46-466e-b83a-2642d396b3cb + + false + + false + iscustomizable + false + + true + true + lk_rolebase_modifiedby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_rolebase_modifiedby + modifiedby + role + modifiedby + + 0 + + + 3ca392fa-ced4-477c-be63-49fcfb6d76f1 + + false + + false + iscustomizable + false + + true + true + lk_role_modifiedonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_role_modifiedonbehalfby + modifiedonbehalfby + role + modifiedonbehalfby + + 0 + + + 1b3addfc-e92f-4e8e-96df-dc57c2c9f699 + + false + + false + iscustomizable + false + + true + true + role_parent_root_role + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + roleid + role + role_parent_root_role + parentrootroleid + role + parentrootroleid + + 0 + + + 2026-06-08T11:52:32.0569984 + 1036 + + + 2f1bdb05-7eec-438e-9e2a-ef448ebf7803 + + false + + false + iscustomizable + true + + true + true + Role_SyncErrors + Append + 8.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Cascade + Cascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + roleid + role + Role_SyncErrors + regardingobjectid + syncerror + regardingobjectid_role_syncerror + + 1 + + + aa107a07-c124-444b-a43b-86722fd457e6 + + false + + false + iscustomizable + false + + true + true + Role_AsyncOperations + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + roleid + role + Role_AsyncOperations + regardingobjectid + asyncoperation + regardingobjectid_role + + 0 + + + dfb2936e-d55c-4e4f-800b-83cc1bb21f09 + + false + + false + iscustomizable + false + + true + false + userentityinstancedata_role + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + roleid + role + userentityinstancedata_role + objectid + userentityinstancedata + objectid_role + + 0 + + + 7284bf83-2f84-4ce6-b75b-50753fc5ea78 + + false + + false + iscustomizable + false + + true + true + role_parent_role + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + roleid + role + role_parent_role + parentroleid + role + parentroleid + + 0 + + + 3e5624cf-56fe-4d32-9b12-880063786fcf + + false + + false + iscustomizable + false + + true + false + Role_BulkDeleteFailures + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + roleid + role + Role_BulkDeleteFailures + regardingobjectid + bulkdeletefailure + regardingobjectid_role + + 0 + + + 1b3addfc-e92f-4e8e-96df-dc57c2c9f699 + + false + + false + iscustomizable + false + + true + true + role_parent_root_role + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + roleid + role + role_parent_root_role + parentrootroleid + role + parentrootroleid + + 0 + + + + 8 + BusinessOwned + + roleid + + roleid + + name + + + false + true + false + true + true + false + false + prvCreateRole + 7398c78c-29a5-4982-9ada-73390f64fe99 + Create + + + false + true + false + true + true + false + false + prvReadRole + 222a920a-2778-4564-85cb-e78dde8e4276 + Read + + + false + true + false + true + true + false + false + prvWriteRole + bd123e14-17ba-40f6-8d8b-18f4bffa7e50 + Write + + + false + true + false + true + true + false + false + prvDeleteRole + 34abe1b8-e9bc-4be0-9ef3-09459ca7ae57 + Delete + + + false + true + false + true + true + false + false + prvAssignRole + 836d6c7b-cf1d-47f0-8021-8e41091c489c + Assign + + + false + true + false + true + true + false + false + prvAppendRole + 8fdeea95-80ab-47dc-974b-52d71b88c8af + Append + + + false + true + false + true + true + false + false + prvAppendToRole + eaa02b5b-dc56-4aa3-a889-718f25aa0075 + AppendTo + + + + FilteredRole + Role + + + false + Standard + false + 5.0.0.0 + + + false + canchangehierarchicalrelationship + false + + + false + Roles + + + true + + + 32554af9-2e30-4d01-8ee2-9ada6d6e8fce + + + 00000000-0000-0000-0000-000000000000 + + asyncoperation + + + + + + + cf52ea05-1a66-400e-9c88-0f09ef7709ae + + true + RoleTemplateId BusinessUnit lookup key + 1033 + + + + cf52ea05-1a66-400e-9c88-0f09ef7709ae + + true + RoleTemplateId BusinessUnit lookup key + 1033 + + + Active + role + 9.2.0.0 + + false + iscustomizable + false + + false + true + false + true + + businessunitid + componentstate + overwritetime + roletemplateid + + roletemplateid_businessunitid + roletemplateid_businessunitid + + + 66080440-f35b-424b-9153-5349dc52bfae + + + 00000000-0000-0000-0000-000000000000 + + asyncoperation + + + + + + + c9148edf-094c-41e7-adc8-8c8543429310 + + true + Unique FnOAotName Name + 1033 + + + + c9148edf-094c-41e7-adc8-8c8543429310 + + true + Unique FnOAotName Name + 1033 + + + Active + role + 9.2.0.0 + + false + iscustomizable + false + + false + true + false + true + + componentstate + FnOAotName + overwritetime + + fnoaotnameid + FnOAotNameId + + + 684bbad3-af9c-4547-bc70-237ded8cf96e + + + 00000000-0000-0000-0000-000000000000 + + asyncoperation + + + + + + + 3dd71196-fb05-4bf9-bfbe-961dc17ea9d7 + + true + ParentRootRoleId BusinessUnit lookup key + 1033 + + + + 3dd71196-fb05-4bf9-bfbe-961dc17ea9d7 + + true + ParentRootRoleId BusinessUnit lookup key + 1033 + + + Active + role + 9.2.0.0 + + false + iscustomizable + false + + false + true + false + true + + businessunitid + componentstate + overwritetime + parentrootroleid + + parentrootroleid_businessunitid + parentrootroleid_businessunitid + + + roles + 9999 + roles + false + + true + canmodifymobileclientoffline + false + + false + false + + <fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false"> + <entity name="role"> + <filter type="and"> + <condition attribute="modifiedon" operator="on-or-after" value="1900-01-01"/> + </filter> + </entity> + </fetch> + + false + false + + + + roletemplate + + 58294352-0071-4b30-beb7-02f703cbba49 + + 0 + + + 3a4bb7d6-f557-4dac-a6cf-945387f540d6 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 2 + 1900-01-01T00:00:00 + + + + + f2d8dee2-2241-db11-898a-0007e9e17ebd + + true + Name of the role template. + 1033 + + + dc289229-b34b-4397-9927-6ae8b91e1c1f + + true + Navnet på rolleskabelonen. + 1030 + + + + f2d8dee2-2241-db11-898a-0007e9e17ebd + + true + Name of the role template. + 1033 + + + + + + + roletemplate + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true canmodifyglobalfiltersettings false true false - false + true false isrenameable false false - false - false + true + true false true @@ -270297,35 +281295,46 @@ canmodifysearchsettings false - false + true false false true - false + true true - solutionid + name 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - SolutionId + Name - UniqueidentifierType + StringType 5.0.0.0 false - + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 200 - - df46dd2a-fa4e-4c1a-8ef3-0c5bce965fd8 + + 4b79e09a-7afb-47ac-b72d-539954719ed3 - Picklist + Uniqueidentifier false false false @@ -270334,46 +281343,130 @@ canmodifyadditionalsettings true - 9 + 1 1900-01-01T00:00:00 - d2dd01b9-2241-db11-898a-0007e9e17ebd + 8dd8dee2-2241-db11-898a-0007e9e17ebd true - Stage in the execution pipeline that the SDK message processing step is in. + Unique identifier of the role template. 1033 - - - d2dd01b9-2241-db11-898a-0007e9e17ebd - - true - Stage in the execution pipeline that the SDK message processing step is in. - 1033 - - - - - d1dd01b9-2241-db11-898a-0007e9e17ebd + d9f2afed-c728-4655-91f9-2fd48492b1ad true - Execution Stage - 1033 + Entydigt id for rolleskabelonen. + 1030 - d1dd01b9-2241-db11-898a-0007e9e17ebd + 8dd8dee2-2241-db11-898a-0007e9e17ebd true - Execution Stage + Unique identifier of the role template. 1033 + + + + - sdkmessageprocessingstep + roletemplate + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + true + + true + canmodifyglobalfiltersettings + false + + true + true + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + false + true + + roletemplateid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + RoleTemplateId + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + 757ae9d4-c49e-425d-be66-86753cd0fc06 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 4 + 1900-01-01T00:00:00 + + + + + + + + + + roletemplate @@ -270416,68 +281509,40 @@ canmodifysearchsettings false - true + false false false - true - true - true + false + false + false - stage + upgrading 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - Stage + Upgrading - PicklistType + BooleanType 5.0.0.0 false 0 - 10 + false - 6435a092-00aa-41ea-84b9-84eb55ce813c + 2dfd3e35-2c38-401b-b523-5cb5b4c7fdd7 - - - 7d8f956c-97a3-4a9c-b109-55580eea303d - - true - Stage in the execution pipeline that the SDK message processing step is in. - 1033 - - - - 7d8f956c-97a3-4a9c-b109-55580eea303d - - true - Stage in the execution pipeline that the SDK message processing step is in. - 1033 - + + - - - 79a61071-8cc0-48b0-912c-615ce367dfce - - true - Stage - 1033 - - - - 79a61071-8cc0-48b0-912c-615ce367dfce - - true - Stage - 1033 - + + false @@ -270488,544 +281553,556 @@ false true - sdkmessageprocessingstep_stage - Picklist + roletemplate_upgrading + Boolean 5.0.0.0 - - - - - - - - - - - false - true - - - - a5d6bf08-ce39-426c-b758-aaadcce89e04 - - true - Initial Pre-operation (For internal use only) - 1033 - - - - a5d6bf08-ce39-426c-b758-aaadcce89e04 + + + + + + + + + + false + true + + + + 9158aec5-e780-db11-9b85-00137299e160 - true - Initial Pre-operation (For internal use only) - 1033 - - - - 5 - - - - - - - - - - - - false - true - - - - d4dd01b9-2241-db11-898a-0007e9e17ebd - - true - Pre-validation - 1033 - - - - d4dd01b9-2241-db11-898a-0007e9e17ebd - - true - Pre-validation - 1033 - - - - 10 - - - - - - - - - - - - false - true - - - - b5cb3b13-9cbe-47f9-a539-a06446a82f56 - - true - Internal Pre-operation Before External Plugins (For internal use only) - 1033 - - - - b5cb3b13-9cbe-47f9-a539-a06446a82f56 - - true - Internal Pre-operation Before External Plugins (For internal use only) - 1033 - - - - 15 - - - - - - - - - - - - false - true - - - - d6dd01b9-2241-db11-898a-0007e9e17ebd - - true - Pre-operation - 1033 - - - - d6dd01b9-2241-db11-898a-0007e9e17ebd - - true - Pre-operation - 1033 - - - - 20 - - - - - - - - - - - - false - true - - - - a116fe5b-f714-45f5-870e-10f96e00c085 - - true - Internal Pre-operation After External Plugins (For internal use only) - 1033 - - - - a116fe5b-f714-45f5-870e-10f96e00c085 - - true - Internal Pre-operation After External Plugins (For internal use only) - 1033 - - - - 25 - - - - - - - - - - - - false - true - - - - d8dd01b9-2241-db11-898a-0007e9e17ebd - - true - Main Operation (For internal use only) - 1033 - - - - d8dd01b9-2241-db11-898a-0007e9e17ebd - - true - Main Operation (For internal use only) - 1033 - - - - 30 - - - - - - - - - - - - false - true - - - - b94760f5-9473-4876-adc8-cf5ff2361934 - - true - Internal Post-operation Before External Plugins (For internal use only) - 1033 - - - - b94760f5-9473-4876-adc8-cf5ff2361934 - - true - Internal Post-operation Before External Plugins (For internal use only) - 1033 - - - - 35 - - - - - - - - - - - - false - true - - - - dadd01b9-2241-db11-898a-0007e9e17ebd - - true - Post-operation - 1033 - - - - dadd01b9-2241-db11-898a-0007e9e17ebd - - true - Post-operation - 1033 - - - - 40 - - - - - - - - - - - - false - true - - - - ec7d21fa-8a49-4a07-b7eb-86b1a6670f13 - - true - Internal Post-operation After External Plugins (For internal use only) - 1033 - - - - ec7d21fa-8a49-4a07-b7eb-86b1a6670f13 - - true - Internal Post-operation After External Plugins (For internal use only) - 1033 - - - - 45 - - - - - - - - - - - - false - true - - - - dcdd01b9-2241-db11-898a-0007e9e17ebd - - true - Post-operation (Deprecated) - 1033 - - - - dcdd01b9-2241-db11-898a-0007e9e17ebd - - true - Post-operation (Deprecated) - 1033 - - - - 50 - - - - - - - - - - - - false - true - - - - 3a7eadd3-8b9e-455a-b217-881691aa91f1 - - true - Final Post-operation (For internal use only) - 1033 - - - - 3a7eadd3-8b9e-455a-b217-881691aa91f1 + true + No + 1033 + + + 18e4dd15-64c8-40ed-a9d6-9f78566eea41 - true - Final Post-operation (For internal use only) - 1033 - - - - 55 - - - - - - - - - - - - false - true - - - - 7ef49770-069e-4392-9e7c-cd5e9c2f571e - - true - Pre-Commit stage fired before transaction commit (For internal use only) - 1033 - - - - 7ef49770-069e-4392-9e7c-cd5e9c2f571e + true + Nej + 1030 + + + + 9158aec5-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 9358aec5-e780-db11-9b85-00137299e160 - true - Pre-Commit stage fired before transaction commit (For internal use only) - 1033 - - - - 80 - - - - - - - - - - - - false - true - - - - 09a0e9c1-fe82-4026-aa30-65ad2c814c71 - - true - Post-Commit stage fired after transaction commit (For internal use only) - 1033 - - - - 09a0e9c1-fe82-4026-aa30-65ad2c814c71 + true + Yes + 1033 + + + b1e58b44-2302-4c21-82ef-eefc13d53c4b - true - Post-Commit stage fired after transaction commit (For internal use only) - 1033 - - - - 90 - - - - + true + Ja + 1030 + + + + 9358aec5-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + - 0 - - - - 2e8ce1f0-b153-4d5e-861c-4d2bdbbb2ac9 + + false + false + false + + false + canbeincustomentityassociation + false + + + false + canbeinmanytomany + false + + + false + canbeprimaryentityinrelationship + false + + + false + canberelatedentityinrelationship + false + + true + + false + canchangetrackingbeenabled + false + + + false + cancreateattributes + false + + + false + cancreatecharts + false + + + false + cancreateforms + false + + + false + cancreateviews + false + + + false + canenablesynctoexternalsearchindex + false + + + true + canmodifyadditionalsettings + false + + false + false + Local + 1900-01-01T00:00:00 + + + false + + + + f90a19a7-2241-db11-898a-0007e9e17ebd + + true + Template for a role. Defines initial attributes that will be used when creating a new role. + 1033 + + + 65303410-19a5-452b-ac02-a1331d9626e6 + + true + Skabelon for en rolle. Angiver de startattributter, der bruges ved oprettelse af en ny rolle. + 1030 + + + + f90a19a7-2241-db11-898a-0007e9e17ebd - stage - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 27 - 1900-01-01T00:00:00 - - - - - - - - - - sdkmessageprocessingstep - - - - false - canmodifyauditsettings - false - - false + true + Template for a role. Defines initial attributes that will be used when creating a new role. + 1033 + + + + + + fb0a19a7-2241-db11-898a-0007e9e17ebd + + true + Role Templates + 1033 + + + 0df4aaf8-a9e3-4943-9808-35b735886285 + + true + Rolleskabeloner + 1030 + + + + fb0a19a7-2241-db11-898a-0007e9e17ebd + + true + Role Templates + 1033 + + + + + + fa0a19a7-2241-db11-898a-0007e9e17ebd + + true + Role Template + 1033 + + + f74a28c2-9d86-4153-8485-85fb7ce637b6 + + true + Rolleskabelon + 1030 + + + + fa0a19a7-2241-db11-898a-0007e9e17ebd + + true + Role Template + 1033 + + + false + + false + false + false + false + + + + + false + false + false + false + + false + canmodifyauditsettings + false + + false + false + false + + false + canmodifyconnectionsettings + false + + false + + false + iscustomizable + false + + false + false + + false + canmodifyduplicatedetectionsettings + false + + false + false + false + false + false + false + false + + false + canmodifymailmergesettings + false + + true + + false + ismappable + false + + false + false + + false + canmodifymobileclientreadonly + false + + true + + false + isrenameable + false + + false + false + false + false + false + false + + false + canmodifyqueuesettings + false + + + false + canmodifymobilevisibility + false + + + false + canmodifymobileclientvisibility + false + + roletemplate + + + 8b366d6f-d389-11db-9246-00123f3a1b51 + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - + false + roletemplateprivileges_association + None + 5.0.0.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + roletemplateid + roletemplate + roletemplateprivileges_association + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + privilegeid + privilege + roletemplateprivileges_association + roletemplateprivileges + + + + 1900-01-01T00:00:00 + 1037 + + + 1dcef322-6478-4fce-9244-ab491ddee667 + + false + false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings + iscustomizable false - - + + true + false + userentityinstancedata_roletemplate + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + roletemplateid + roletemplate + userentityinstancedata_roletemplate + objectid + userentityinstancedata + objectid_roletemplate + + 0 + + + d56d1bc2-5777-4f1d-a233-7a97be39fdfb + + false + false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - stagename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - StageName - - - VirtualType - + + true + false + role_template_roles + Append 5.0.0.0 - true - - - - - 614d1ea5-c483-db11-9d7e-00137299e160 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + roletemplateid + roletemplate + role_template_roles + roletemplateid + role + roletemplateid + + 1 + + + + 8 + None + + roletemplateid + + roletemplateid + + name + + + + RoleTemplate + + + false + Standard + false + 5.0.0.0 + + + false + canchangehierarchicalrelationship + false + + + false + RoleTemplates + + + false + + roletemplates + 0 + roletemplates + false + + true + canmodifymobileclientoffline + false + + false + false + + false + false + + + + sdkmessage + + 0da6aba6-574f-434f-bb22-95da51f19b40 + + 0 + + + ff17f16b-b742-4a92-860d-5dd206bb6b1b - State + Boolean false false false @@ -271034,46 +282111,60 @@ canmodifyadditionalsettings true - 16 + 11 1900-01-01T00:00:00 - 624d1ea5-c483-db11-9d7e-00137299e160 + 460b19a7-2241-db11-898a-0007e9e17ebd true - Status of the SDK message processing step. + Information about whether the SDK message is automatically transacted. 1033 + + 9fd3fcdb-a000-4db9-9a6c-7d821ebe3332 + + true + Oplysninger, der viser, om der er er udført en automatisk transaktion for SDK-meddelelsen. + 1030 + - 624d1ea5-c483-db11-9d7e-00137299e160 + 460b19a7-2241-db11-898a-0007e9e17ebd true - Status of the SDK message processing step. + Information about whether the SDK message is automatically transacted. 1033 - 674d1ea5-c483-db11-9d7e-00137299e160 + 617031ae-1834-11df-b172-00188b01dce6 true - Status + Auto Transact 1033 + + b93d1213-c0f9-452a-b39a-df079049e5fd + + true + Automatisk transaktion + 1030 + - 674d1ea5-c483-db11-9d7e-00137299e160 + 617031ae-1834-11df-b172-00188b01dce6 true - Status + Auto Transact 1033 - sdkmessageprocessingstep + sdkmessage @@ -271103,7 +282194,7 @@ false false - false + true false false @@ -271116,68 +282207,61 @@ canmodifysearchsettings true - false - true + true + false true true true true - statecode + autotransact 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - StateCode + AutoTransact - StateType + BooleanType 5.0.0.0 false - + 0 - 0 + false - 3f3ead3d-8142-457a-a887-c45d7915bbd3 + 7d1d62ea-ad6f-4cff-96f0-7e487e3288bc - 1164f499-4c88-4486-a5ba-7c32696024ea + 489912ed-46e5-4991-8c30-747336d877bb true - Status of the SDK message processing step. + Information about whether the SDK message is automatically transacted. 1033 - - - 1164f499-4c88-4486-a5ba-7c32696024ea - - true - Status of the SDK message processing step. - 1033 - - - - - f4ff9715-d6c3-4aee-a802-9aa13b173599 + 28bb2097-b862-4ab9-ad7f-cdf602ae1106 true - Status - 1033 + Oplysninger, der viser, om der er er udført en automatisk transaktion for SDK-meddelelsen. + 1030 - f4ff9715-d6c3-4aee-a802-9aa13b173599 + 489912ed-46e5-4991-8c30-747336d877bb true - Status + Information about whether the SDK message is automatically transacted. 1033 + + + + false @@ -271186,91 +282270,99 @@ iscustomizable false - false + true true - sdkmessageprocessingstep_statecode - State + sdkmessage_autotransact + Boolean 5.0.0.0 - - - - - - - - - - - false - true - - - - 644d1ea5-c483-db11-9d7e-00137299e160 - - true - Enabled - 1033 - - - - 644d1ea5-c483-db11-9d7e-00137299e160 + + + + + + + + + + false + true + + + + 0725b0cb-e780-db11-9b85-00137299e160 - true - Enabled - 1033 - - - - 0 - - 1 - Enabled - - - - - - - - - - - false - true - - - - 664d1ea5-c483-db11-9d7e-00137299e160 - - true - Disabled - 1033 - - - - 664d1ea5-c483-db11-9d7e-00137299e160 + true + No + 1033 + + + beaf0eb3-1ff5-4e51-9787-b196db17ecce - true - Disabled - 1033 - - - - 1 - - 2 - Disabled - - - + true + Nej + 1030 + + + + 0725b0cb-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 0925b0cb-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + 7fc87027-73e6-414c-a9e7-ad2fe5590ee8 + + true + Ja + 1030 + + + + 0925b0cb-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + - + + 0 - 684d1ea5-c483-db11-9d7e-00137299e160 + 12e865d4-b659-4b8a-a979-ee420fa833c9 - statecode + autotransact Virtual false false @@ -271280,7 +282372,7 @@ canmodifyadditionalsettings true - 26 + 55 1900-01-01T00:00:00 @@ -271291,7 +282383,7 @@ - sdkmessageprocessingstep + sdkmessage @@ -271341,14 +282433,14 @@ false false - statecodename - 2025-11-06T00:19:23.2300032 + autotransactname + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - StateCodeName + AutoTransactName VirtualType @@ -271358,11 +282450,11 @@ - - 694d1ea5-c483-db11-9d7e-00137299e160 + + ce6a970f-ac1c-447d-9905-4cb621306518 - Status + Integer false false false @@ -271371,46 +282463,60 @@ canmodifyadditionalsettings true - 23 + 14 1900-01-01T00:00:00 - 6a4d1ea5-c483-db11-9d7e-00137299e160 + 500b19a7-2241-db11-898a-0007e9e17ebd true - Reason for the status of the SDK message processing step. + Identifies where a method will be exposed. 0 - Server, 1 - Client, 2 - both. 1033 + + 9cf81601-3d69-49dd-b019-998eb18884a8 + + true + Angiver, hvor en metode vises. 0 - Server, 1 - Klient, 2 - begge. + 1030 + - 6a4d1ea5-c483-db11-9d7e-00137299e160 + 500b19a7-2241-db11-898a-0007e9e17ebd true - Reason for the status of the SDK message processing step. + Identifies where a method will be exposed. 0 - Server, 1 - Client, 2 - both. 1033 - 6f4d1ea5-c483-db11-9d7e-00137299e160 + 617031af-1834-11df-b172-00188b01dce6 true - Status Reason + Availability 1033 + + f723b493-e8a0-41dc-858b-5df822fe93e1 + + true + Tilgængelighed + 1030 + - 6f4d1ea5-c483-db11-9d7e-00137299e160 + 617031af-1834-11df-b172-00188b01dce6 true - Status Reason + Availability 1033 - sdkmessageprocessingstep + sdkmessage @@ -271440,7 +282546,7 @@ false false - false + true false false @@ -271454,161 +282560,39 @@ true true - true + false true true true true - statuscode + availability 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - StatusCode + Availability - StatusType + IntegerType 5.0.0.0 false - + 0 - -1 - - 39bcd34c-0a62-434f-ab8a-ea6135f4a317 - - - - - fcf51fa2-3cd7-4ab4-b290-51906b36edf6 - - true - Reason for the status of the SDK message processing step. - 1033 - - - - fcf51fa2-3cd7-4ab4-b290-51906b36edf6 - - true - Reason for the status of the SDK message processing step. - 1033 - - - - - - 6ad60bd1-4523-4546-81f8-688c2e78a37c - - true - Status Reason - 1033 - - - - 6ad60bd1-4523-4546-81f8-688c2e78a37c - - true - Status Reason - 1033 - - - - false - - false - iscustomizable - false - - false - true - sdkmessageprocessingstep_statuscode - Status - 5.0.0.0 - - - - - - - - - - - false - true - - - - 6c4d1ea5-c483-db11-9d7e-00137299e160 - - true - Enabled - 1033 - - - - 6c4d1ea5-c483-db11-9d7e-00137299e160 - - true - Enabled - 1033 - - - - 1 - - 0 - - - - - - - - - - - - false - true - - - - 6e4d1ea5-c483-db11-9d7e-00137299e160 - - true - Disabled - 1033 - - - - 6e4d1ea5-c483-db11-9d7e-00137299e160 - - true - Disabled - 1033 - - - - 2 - - 1 - - - - - - + None + 2147483647 + -2147483648 + + 0 - - 704d1ea5-c483-db11-9d7e-00137299e160 + + 561e1741-575e-4464-af35-6a99e0a6e47c - statuscode - Virtual + + String false false false @@ -271617,24 +282601,66 @@ canmodifyadditionalsettings true - 28 + 5 1900-01-01T00:00:00 - - + + + 4e0b19a7-2241-db11-898a-0007e9e17ebd + + true + If this is a categorized method, this is the name, otherwise None. + 1033 + + + 6950da81-e4f4-4d40-a652-7857d950de25 + + true + Hvis dette er en kategoriseret metode, er dette navnet. Hvis ikke, er navnet Ingen. + 1030 + + + + 4e0b19a7-2241-db11-898a-0007e9e17ebd + + true + If this is a categorized method, this is the name, otherwise None. + 1033 + - - + + + 34ccdcff-27c8-4649-ae03-1d9394bda68b + + true + Category Name + 1033 + + + ea9b8c0e-6967-45e5-8846-0617748fb256 + + true + Kategorinavn + 1030 + + + + 34ccdcff-27c8-4649-ae03-1d9394bda68b + + true + Category Name + 1033 + - sdkmessageprocessingstep + sdkmessage - false + true canmodifyauditsettings - false + true false @@ -271658,7 +282684,7 @@ false false - false + true false false @@ -271669,34 +282695,45 @@ false canmodifysearchsettings - false + true - false + true false - false + true true - false - false + true + true - statuscodename - 2025-11-06T00:19:23.8700032 + categoryname + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - StatusCodeName + CategoryName - VirtualType + StringType 5.0.0.0 - true - + false + 0 + Text + Auto + 25 + + + Text + + + false + 0 + 50 - f0753625-d601-48f7-a8de-d604988577d8 + 7fa7580f-de4a-4699-8c53-da4773889564 Picklist @@ -271708,52 +282745,66 @@ canmodifyadditionalsettings true - 3 + 70 1900-01-01T00:00:00 - c4dd01b9-2241-db11-898a-0007e9e17ebd + dddce0f7-acde-4558-b8eb-ffae5de564e4 true - Deployment that the SDK message processing step should be executed on; server, client, or both. + For internal use only. 1033 + + f5fa6d33-fe46-427f-a940-9c8f6c4a6fe6 + + true + Kun til intern brug. + 1030 + - c4dd01b9-2241-db11-898a-0007e9e17ebd + dddce0f7-acde-4558-b8eb-ffae5de564e4 true - Deployment that the SDK message processing step should be executed on; server, client, or both. + For internal use only. 1033 - c3dd01b9-2241-db11-898a-0007e9e17ebd + 306adf51-46f6-4b29-a358-f7b67afdbd3d true - Deployment + Component State 1033 + + 5e536c12-40cb-4d0b-9346-aae011931450 + + true + Komponenttilstand + 1030 + - c3dd01b9-2241-db11-898a-0007e9e17ebd + 306adf51-46f6-4b29-a358-f7b67afdbd3d true - Deployment + Component State 1033 - sdkmessageprocessingstep + sdkmessage - true + false canmodifyauditsettings - true + false false @@ -271777,7 +282828,7 @@ false false - true + false false false @@ -271788,68 +282839,82 @@ false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true + false true - supporteddeployment + componentstate 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - SupportedDeployment + ComponentState PicklistType - 5.0.0.0 + 9.0.0.0 false 0 - 0 + -1 - 43ee2a9e-bffb-4e43-83d1-3a4892caa03b + faece09f-cefc-11de-8150-00155da18b00 - b6fd21f7-a3eb-4cc1-87ae-c03f16f43668 + faece0a1-cefc-11de-8150-00155da18b00 true - Deployment that the SDK message processing step should be executed on; server, client, or both. + The state of this component. 1033 + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + - b6fd21f7-a3eb-4cc1-87ae-c03f16f43668 + faece0a1-cefc-11de-8150-00155da18b00 true - Deployment that the SDK message processing step should be executed on; server, client, or both. + The state of this component. 1033 - e686d869-8205-4f05-af44-0176ff264c6e + faece0a0-cefc-11de-8150-00155da18b00 true - Supported Deployment + Component State 1033 + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + - e686d869-8205-4f05-af44-0176ff264c6e + faece0a0-cefc-11de-8150-00155da18b00 true - Supported Deployment + Component State 1033 @@ -271860,9 +282925,9 @@ iscustomizable false - false + true true - sdkmessageprocessingstep_supporteddeployment + componentstate Picklist 5.0.0.0 @@ -271880,18 +282945,25 @@ - c6dd01b9-2241-db11-898a-0007e9e17ebd + faece0a3-cefc-11de-8150-00155da18b00 true - Server Only + Published 1033 + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + - c6dd01b9-2241-db11-898a-0007e9e17ebd + faece0a3-cefc-11de-8150-00155da18b00 true - Server Only + Published 1033 @@ -271913,18 +282985,25 @@ - c8dd01b9-2241-db11-898a-0007e9e17ebd + faece0a5-cefc-11de-8150-00155da18b00 true - Microsoft Dynamics 365 Client for Outlook Only + Unpublished 1033 + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + - c8dd01b9-2241-db11-898a-0007e9e17ebd + faece0a5-cefc-11de-8150-00155da18b00 true - Microsoft Dynamics 365 Client for Outlook Only + Unpublished 1033 @@ -271946,18 +283025,25 @@ - cadd01b9-2241-db11-898a-0007e9e17ebd + faece0a7-cefc-11de-8150-00155da18b00 true - Both + Deleted 1033 + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + - cadd01b9-2241-db11-898a-0007e9e17ebd + faece0a7-cefc-11de-8150-00155da18b00 true - Both + Deleted 1033 @@ -271965,6 +283051,46 @@ 2 + + + + + + + + + + false + true + + + + 1f83e0bb-cefd-11de-8150-00155da18b00 + + true + Deleted Unpublished + 1033 + + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + + + + 1f83e0bb-cefd-11de-8150-00155da18b00 + + true + Deleted Unpublished + 1033 + + + + 3 + + @@ -271974,11 +283100,11 @@ - - f0b6c15e-1aba-495b-9d6b-f049c1243f2a + + ebb534c2-5cde-4002-af1f-e83f3121f4c3 - supporteddeployment - Virtual + + Lookup false false false @@ -271987,7 +283113,144 @@ canmodifyadditionalsettings true - 29 + 4 + 1900-01-01T00:00:00 + + + + + 440b19a7-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user who created the SDK message. + 1033 + + + 66a46320-9f85-4976-b38a-d37415d0c7fe + + true + Entydigt id for den bruger, der oprettede SDK-meddelelsen. + 1030 + + + + 440b19a7-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user who created the SDK message. + 1033 + + + + + + 617031b0-1834-11df-b172-00188b01dce6 + + true + Created By + 1033 + + + d90e9340-fbf1-4f44-8e5a-63c8ee5e535c + + true + Oprettet af + 1030 + + + + 617031b0-1834-11df-b172-00188b01dce6 + + true + Created By + 1033 + + + sdkmessage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + false + true + true + false + true + + createdby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + 7377cbe8-0291-4a20-98b6-69eb1cd825da + + createdby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 56 1900-01-01T00:00:00 @@ -271998,7 +283261,7 @@ - sdkmessageprocessingstep + sdkmessage @@ -272048,28 +283311,39 @@ false false - supporteddeploymentname - 1900-01-01T00:00:00 + createdbyname + 2025-11-06T00:19:25.9500032 false canmodifyrequirementlevelsettings None - SupportedDeploymentName + CreatedByName - VirtualType + StringType 5.0.0.0 true - + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 320 - - 18faf000-6ae7-4e1a-aa58-0a480aa159b6 + + 38148c52-f238-47f4-84f3-e27e66c0c8a3 - Uniqueidentifier + DateTime false false false @@ -272078,46 +283352,60 @@ canmodifyadditionalsettings true - 56 + 13 1900-01-01T00:00:00 - 18faf001-6ae7-4e1a-aa58-0a480aa159b6 + 4f0b19a7-2241-db11-898a-0007e9e17ebd true - For internal use only. + Date and time when the SDK message was created. 1033 + + d39a99f3-850e-46e7-bdc1-f09761cc3b20 + + true + Dato og klokkeslæt for oprettelse af SDK-meddelelsen. + 1030 + - 18faf001-6ae7-4e1a-aa58-0a480aa159b6 + 4f0b19a7-2241-db11-898a-0007e9e17ebd true - For internal use only. + Date and time when the SDK message was created. 1033 - 18faf002-6ae7-4e1a-aa58-0a480aa159b6 + 617031b1-1834-11df-b172-00188b01dce6 true - Solution + Created On 1033 + + 805076db-a58b-4f9f-a655-d44e9be59b6f + + true + Oprettet + 1030 + - 18faf002-6ae7-4e1a-aa58-0a480aa159b6 + 617031b1-1834-11df-b172-00188b01dce6 true - Solution + Created On 1033 - sdkmessageprocessingstep + sdkmessage @@ -272163,32 +283451,44 @@ false false true - false + true false - false + true - supportingsolutionid + createdon 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - SupportingSolutionId + CreatedOn - UniqueidentifierType + DateTimeType 5.0.0.0 false - + 0 + DateAndTime + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + - - c25167ca-73dc-44b4-8933-c0ab40874e3c + + 37ed5000-e666-4114-b8e0-9a1535721d3b - BigInt + Lookup false false false @@ -272197,32 +283497,60 @@ canmodifyadditionalsettings true - 20 + 18 1900-01-01T00:00:00 - 4bf016d8-5c44-4717-bc27-d86d65fb414e + 5ca7fe52-05f5-4d87-aa8e-b75f6f639a77 true - Number that identifies a specific revision of the SDK message processing step. + Unique identifier of the delegate user who created the sdkmessage. 1033 + + 86304439-dabe-4f0d-bf09-39f80a43f095 + + true + Entydigt id for den stedfortræderbruger, der oprettede SDK-meddelelsen. + 1030 + - 4bf016d8-5c44-4717-bc27-d86d65fb414e + 5ca7fe52-05f5-4d87-aa8e-b75f6f639a77 true - Number that identifies a specific revision of the SDK message processing step. + Unique identifier of the delegate user who created the sdkmessage. 1033 - - + + + 85123a34-c490-422a-896f-07f6f7068b87 + + true + Created By (Delegate) + 1033 + + + dd05b65d-c3b3-44d3-8efd-d4e17e879709 + + true + Oprettet af (stedfortræder) + 1030 + + + + 85123a34-c490-422a-896f-07f6f7068b87 + + true + Created By (Delegate) + 1033 + - sdkmessageprocessingstep + sdkmessage @@ -272252,7 +283580,7 @@ false false - true + false false false @@ -272263,1361 +283591,40 @@ false canmodifysearchsettings - false + true false false - false + true true false true - versionnumber + createdonbehalfby 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - VersionNumber + CreatedOnBehalfBy - BigIntType + LookupType 5.0.0.0 false - 9223372036854775807 - -9223372036854775808 + None + + systemuser + - - false - false - false - - false - canbeincustomentityassociation - false - - - false - canbeinmanytomany - false - - - false - canbeprimaryentityinrelationship - true - - - false - canberelatedentityinrelationship - true - - true - - false - canchangetrackingbeenabled - false - - - false - cancreateattributes - false - - - false - cancreatecharts - false - - - false - cancreateforms - false - - - false - cancreateviews - false - - - false - canenablesynctoexternalsearchindex - false - - - true - canmodifyadditionalsettings - false - - false - false - Local - 1900-01-01T00:00:00 - - - false - - - - bfdd01b9-2241-db11-898a-0007e9e17ebd - - true - Stage in the execution pipeline that a plug-in is to execute. - 1033 - - - - bfdd01b9-2241-db11-898a-0007e9e17ebd - - true - Stage in the execution pipeline that a plug-in is to execute. - 1033 - - - - - - c1dd01b9-2241-db11-898a-0007e9e17ebd - - true - Sdk Message Processing Steps - 1033 - - - - c1dd01b9-2241-db11-898a-0007e9e17ebd + + 7ad5efc3-3743-4efa-8de7-f234300f1a1e - true - Sdk Message Processing Steps - 1033 - - - - - - c0dd01b9-2241-db11-898a-0007e9e17ebd - - true - Sdk Message Processing Step - 1033 - - - - c0dd01b9-2241-db11-898a-0007e9e17ebd - - true - Sdk Message Processing Step - 1033 - - - false - - false - false - false - false - - - - - false - false - false - false - - false - canmodifyauditsettings - false - - true - false - false - - false - canmodifyconnectionsettings - false - - false - - false - iscustomizable - false - - false - false - - false - canmodifyduplicatedetectionsettings - false - - false - false - false - false - false - false - false - - false - canmodifymailmergesettings - false - - true - - false - ismappable - false - - false - false - - false - canmodifymobileclientreadonly - false - - true - - false - isrenameable - false - - false - false - false - true - false - true - - false - canmodifyqueuesettings - false - - - false - canmodifymobilevisibility - false - - - false - canmodifymobileclientvisibility - true - - sdkmessageprocessingstep - - - - ab3ebc03-0f1a-4d15-ae2d-0492852f2b5f - - false - - false - iscustomizable - false - - true - true - sdkmessageprocessingstepsecureconfigid_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageprocessingstepsecureconfigid - sdkmessageprocessingstepsecureconfig - sdkmessageprocessingstepsecureconfigid_sdkmessageprocessingstep - sdkmessageprocessingstepsecureconfigid - sdkmessageprocessingstep - sdkmessageprocessingstepsecureconfigid - - 0 - - - 94dbb921-33e2-4cb4-a445-5655b1b33560 - - false - - false - iscustomizable - false - - true - false - impersonatinguserid_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - impersonatinguserid_sdkmessageprocessingstep - impersonatinguserid - sdkmessageprocessingstep - impersonatinguserid - - 0 - - - 581f0027-6898-4ac9-95d0-54f5b7c24d60 - - false - - false - iscustomizable - false - - true - true - sdkmessagefilterid_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessagefilterid - sdkmessagefilter - sdkmessagefilterid_sdkmessageprocessingstep - sdkmessagefilterid - sdkmessageprocessingstep - sdkmessagefilterid - - 0 - - - 6d5eaf2a-59c0-41da-a94d-8f935caf6525 - - false - - false - iscustomizable - false - - true - true - plugintype_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - plugintypeid - plugintype - plugintype_sdkmessageprocessingstep - eventhandler - sdkmessageprocessingstep - eventhandler_plugintype - - 0 - - - a32d7e54-47fa-4b95-99ce-d7189e0285c6 - - false - - false - iscustomizable - false - - true - true - serviceendpoint_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - serviceendpointid - serviceendpoint - serviceendpoint_sdkmessageprocessingstep - eventhandler - sdkmessageprocessingstep - eventhandler_serviceendpoint - - 0 - - - a0401e5d-38ea-46e0-bf68-7277f38ddd80 - - false - - false - iscustomizable - false - - true - true - plugintypeid_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - plugintypeid - plugintype - plugintypeid_sdkmessageprocessingstep - plugintypeid - sdkmessageprocessingstep - plugintypeid - - 0 - - - 156ec960-b29f-4663-bf06-ccb6c70387fe - - false - - false - iscustomizable - false - - true - false - createdby_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - createdby_sdkmessageprocessingstep - createdby - sdkmessageprocessingstep - createdby - - 0 - - - 65fc9d7e-6050-4c7f-8dd4-7537fc7aee50 - - false - - false - iscustomizable - false - - true - false - lk_sdkmessageprocessingstep_modifiedonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_sdkmessageprocessingstep_modifiedonbehalfby - modifiedonbehalfby - sdkmessageprocessingstep - modifiedonbehalfby - - 0 - - - bdad9d80-5ad6-4d3c-891f-230121a0c4fb - - false - - false - iscustomizable - false - - true - true - sdkmessageid_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageid - sdkmessage - sdkmessageid_sdkmessageprocessingstep - sdkmessageid - sdkmessageprocessingstep - sdkmessageid - - 0 - - - 536b2488-7a4a-4ab4-9da8-7fc9da4d3970 - - false - - false - iscustomizable - false - - true - false - modifiedby_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - modifiedby_sdkmessageprocessingstep - modifiedby - sdkmessageprocessingstep - modifiedby - - 0 - - - ce2a68be-ccba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - fxexpression_sdkmessageprocessingstep - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - fxexpressionid - fxexpression - fxexpression_sdkmessageprocessingstep - fxexpressionid - sdkmessageprocessingstep - fxexpression - - 0 - - - d32a68be-ccba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - powerfxrule_sdkmessageprocessingstep - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - powerfxruleid - powerfxrule - powerfxrule_sdkmessageprocessingstep - powerfxruleid - sdkmessageprocessingstep - powerfxrule - - 0 - - - ba96abc9-d7c6-4b82-ad35-5ea507d4fd37 - - false - - false - iscustomizable - false - - true - false - organization_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_sdkmessageprocessingstep - organizationid - sdkmessageprocessingstep - organizationid - - 0 - - - 4b8d36dc-2580-4715-8e1d-2740729c084d - - false - - false - iscustomizable - false - - true - false - lk_sdkmessageprocessingstep_createdonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_sdkmessageprocessingstep_createdonbehalfby - createdonbehalfby - sdkmessageprocessingstep - createdonbehalfby - - 0 - - - 2025-11-06T05:13:10.6930048 - 4608 - - - a9751a02-b0dc-4278-8580-d6e32385ae93 - - false - - false - iscustomizable - false - - true - true - sdkmessageprocessingstepid_sdkmessageprocessingstepimage - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageprocessingstepid - sdkmessageprocessingstep - sdkmessageprocessingstepid_sdkmessageprocessingstepimage - sdkmessageprocessingstepid - sdkmessageprocessingstepimage - sdkmessageprocessingstepid - - 0 - - - afa1d23a-9279-43d2-ae74-be9d9b2c86bb - - false - - false - iscustomizable - false - - true - true - SdkMessageProcessingStep_AsyncOperations - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageprocessingstepid - sdkmessageprocessingstep - SdkMessageProcessingStep_AsyncOperations - owningextensionid - asyncoperation - owningextensionid - - 0 - - - e72a68be-ccba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - sdkmessageprocessingstep_plugin_SdkMessageProcessingStep - None - 1.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - d211da02-9920-48e5-b162-43deba1d727e - - false - - 1033 - - - - d211da02-9920-48e5-b162-43deba1d727e - - false - - 1033 - - - 10000 - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - RemoveLink - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageprocessingstepid - sdkmessageprocessingstep - sdkmessageprocessingstep_plugin_SdkMessageProcessingStep - sdkmessageprocessingstep - plugin - SdkMessageProcessingStep - - 0 - - - b4a30ed5-cdfd-442b-916d-f790b30bf2ba - - false - - false - iscustomizable - false - - true - false - userentityinstancedata_sdkmessageprocessingstep - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - sdkmessageprocessingstepid - sdkmessageprocessingstep - userentityinstancedata_sdkmessageprocessingstep - objectid - userentityinstancedata - objectid_sdkmessageprocessingstep - - 0 - - - - 8 - OrganizationOwned - - sdkmessageprocessingstepid - - sdkmessageprocessingstepid - - name - - - false - false - false - true - false - false - false - prvCreateSdkMessageProcessingStep - 998329e9-5ce5-4538-99b1-983191899a8b - Create - - - false - false - false - true - false - false - false - prvReadSdkMessageProcessingStep - db10a828-ec49-4035-8b7e-c58efaf169ec - Read - - - false - false - false - true - false - false - false - prvWriteSdkMessageProcessingStep - 072aee35-581d-4488-85b1-af09926fda70 - Write - - - false - false - false - true - false - false - false - prvDeleteSdkMessageProcessingStep - 25ca2afd-e85d-4a14-bb81-c368cd59bf5b - Delete - - - false - false - false - true - false - false - false - prvAppendToSdkMessageProcessingStep - 88678b0b-fa75-4b33-ba67-63fdaf87debb - AppendTo - - - - FilteredSdkMessageProcessingStep - SdkMessageProcessingStep - - - false - Standard - false - 5.0.0.0 - - - false - canchangehierarchicalrelationship - false - - - false - SdkMessageProcessingSteps - - - true - - sdkmessageprocessingsteps - 0 - sdkmessageprocessingsteps - false - - true - canmodifymobileclientoffline - false - - false - false - - false - false - - - - sdkmessageprocessingstepimage - - 65fa198f-6a95-4ade-b73f-a3331b943daa - - 0 - - - f7cf7267-3490-4e56-9d69-589b48116634 - - + createdonbehalfby String false false @@ -273627,52 +283634,24 @@ canmodifyadditionalsettings true - 16 + 26 1900-01-01T00:00:00 - - - a95011ad-2241-db11-898a-0007e9e17ebd - - true - Comma-separated list of attributes that are to be passed into the SDK message processing step image. - 1033 - - - - a95011ad-2241-db11-898a-0007e9e17ebd - - true - Comma-separated list of attributes that are to be passed into the SDK message processing step image. - 1033 - + + - - - f3abccf9-9142-4b99-ac0a-f92e51fbe0a9 - - true - Attributes - 1033 - - - - f3abccf9-9142-4b99-ac0a-f92e51fbe0a9 - - true - Attributes - 1033 - + + - sdkmessageprocessingstepimage + sdkmessage - true + false canmodifyauditsettings - true + false false @@ -273707,34 +283686,34 @@ false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true - true + false + false - attributes - 1900-01-01T00:00:00 + createdonbehalfbyname + 2025-11-06T00:19:23.04 false canmodifyrequirementlevelsettings None - Attributes + CreatedOnBehalfByName StringType 5.0.0.0 - false + true 0 Text Auto - 100000 + 100 Text @@ -273742,13 +283721,13 @@ false 0 - -1 + 320 - - 5ad2a000-7396-4320-b6ff-ae11abb5a988 + + b2761f38-1062-4d61-8da5-a142948a2fff - - Picklist + createdonbehalfby + String false false false @@ -273757,46 +283736,18 @@ canmodifyadditionalsettings true - 28 + 27 1900-01-01T00:00:00 - - - 5ad2a001-7396-4320-b6ff-ae11abb5a988 - - true - For internal use only. - 1033 - - - - 5ad2a001-7396-4320-b6ff-ae11abb5a988 - - true - For internal use only. - 1033 - + + - - - 5ad2a002-7396-4320-b6ff-ae11abb5a988 - - true - Component State - 1033 - - - - 5ad2a002-7396-4320-b6ff-ae11abb5a988 - - true - Component State - 1033 - + + - sdkmessageprocessingstepimage + sdkmessage @@ -273844,223 +283795,41 @@ false true false - true + false - componentstate - 1900-01-01T00:00:00 + createdonbehalfbyyominame + 2025-11-06T00:19:27.0269952 false canmodifyrequirementlevelsettings - SystemRequired + None - ComponentState + CreatedOnBehalfByYomiName - PicklistType + StringType 5.0.0.0 - false + true 0 - -1 - - faece09f-cefc-11de-8150-00155da18b00 - - - - - faece0a1-cefc-11de-8150-00155da18b00 - - true - The state of this component. - 1033 - - - - faece0a1-cefc-11de-8150-00155da18b00 - - true - The state of this component. - 1033 - - - - - - faece0a0-cefc-11de-8150-00155da18b00 - - true - Component State - 1033 - - - - faece0a0-cefc-11de-8150-00155da18b00 - - true - Component State - 1033 - - - - false - - false - iscustomizable - false - - true - true - componentstate - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - faece0a3-cefc-11de-8150-00155da18b00 - - true - Published - 1033 - - - - faece0a3-cefc-11de-8150-00155da18b00 - - true - Published - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - faece0a5-cefc-11de-8150-00155da18b00 - - true - Unpublished - 1033 - - - - faece0a5-cefc-11de-8150-00155da18b00 - - true - Unpublished - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - faece0a7-cefc-11de-8150-00155da18b00 - - true - Deleted - 1033 - - - - faece0a7-cefc-11de-8150-00155da18b00 - - true - Deleted - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 1f83e0bb-cefd-11de-8150-00155da18b00 - - true - Deleted Unpublished - 1033 - - - - 1f83e0bb-cefd-11de-8150-00155da18b00 - - true - Deleted Unpublished - 1033 - - - - 3 - - - - - - + Text + Auto + 100 + createdonbehalfbyname + + Text + + false 0 - - + 320 - - 51759951-3fb9-4326-945c-e353363ee538 + + db5560f9-b986-4578-b050-4deef86390ec - Lookup + Integer false false false @@ -274069,147 +283838,45 @@ canmodifyadditionalsettings true - 10 + 6 1900-01-01T00:00:00 - b95011ad-2241-db11-898a-0007e9e17ebd + 430b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the user who created the SDK message processing step image. + Customization level of the SDK message. 1033 - - - b95011ad-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who created the SDK message processing step image. - 1033 - - - - - 53993a34-4e7e-486d-9885-2f5bb7557858 + d3f61b1c-eb4a-47e8-8744-ff6e2c9257fd true - Created By - 1033 + Tilpasningsniveau for SDK-meddelelsen. + 1030 - 53993a34-4e7e-486d-9885-2f5bb7557858 + 430b19a7-2241-db11-898a-0007e9e17ebd true - Created By + Customization level of the SDK message. 1033 - - sdkmessageprocessingstepimage - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - false - true - true - false - true - - createdby - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - CreatedBy - - - LookupType - - 5.0.0.0 - false - - - None - - systemuser - - - - 27569a48-f57d-4ff0-acf9-1485513a04b8 - - createdby - String - false - false - false - - false - canmodifyadditionalsettings - true - - 29 - 1900-01-01T00:00:00 - - - - - sdkmessageprocessingstepimage + sdkmessage - false + true canmodifyauditsettings - false + true false @@ -274251,93 +283918,87 @@ false true false - false + true - createdbyname - 2025-11-06T00:19:24.4470016 + customizationlevel + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - CreatedByName + CustomizationLevel - StringType + IntegerType 5.0.0.0 - true + false 0 - Text - Auto - 100 - - - Text - + None + 255 + -255 - false 0 - 320 - - 9d7f883e-6307-4636-8f9c-e880bdd82339 + + 0b60d691-2518-4c01-ac63-790a6b5be680 - DateTime + String false false false false canmodifyadditionalsettings - true + false - 7 - 1900-01-01T00:00:00 + 10000 + 2025-11-06T01:14:21.1570048 - a65011ad-2241-db11-898a-0007e9e17ebd + ec2a557e-fb31-4d63-8d40-8517cfacd726 true - Date and time when the SDK message processing step image was created. + Name of the privilege that allows execution of the SDK message 1033 - a65011ad-2241-db11-898a-0007e9e17ebd + ec2a557e-fb31-4d63-8d40-8517cfacd726 true - Date and time when the SDK message processing step image was created. + Name of the privilege that allows execution of the SDK message 1033 - f61790e6-06b5-4190-8597-7d02e9f67608 + 651d81e2-e8f1-4a41-a956-394c5b26ce3b true - Created On + Execute Privilege Name 1033 - f61790e6-06b5-4190-8597-7d02e9f67608 + 651d81e2-e8f1-4a41-a956-394c5b26ce3b true - Created On + Execute Privilege Name 1033 - sdkmessageprocessingstepimage + sdkmessage - false + true canmodifyauditsettings false @@ -274350,7 +284011,7 @@ false false - true + false canmodifyglobalfiltersettings false @@ -274367,7 +284028,7 @@ false false - true + false canmodifyissortablesettings false @@ -274376,47 +284037,46 @@ canmodifysearchsettings true - false - false + true + true true true - false + true true - createdon - 1900-01-01T00:00:00 + executeprivilegename + 2025-11-06T01:14:21.1570048 false canmodifyrequirementlevelsettings None - CreatedOn + ExecutePrivilegeName - DateTimeType + StringType - 5.0.0.0 + 9.1.0.0 false 0 - DateAndTime - Inactive - + Text + Auto + 100 + + + Text + + + false 0 - - false - canmodifybehavior - false - - - UserLocal - + 200 - - 43addc98-b73a-4160-8228-3f03947ce7a1 + + 4fa9dd8a-1aca-4ed9-a9ad-f3e17427f7ac - Lookup + Boolean false false false @@ -274425,52 +284085,66 @@ canmodifyadditionalsettings true - 18 + 10 1900-01-01T00:00:00 - caa22cd6-07b0-4169-a876-3f7d356728f1 + 4c0b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the delegate user who created the sdkmessageprocessingstepimage. + Indicates whether the SDK message should have its requests expanded per primary entity defined in its filters. 1033 + + 018ba8bb-0395-43e6-a8c0-42ba688867a9 + + true + Oplysninger, der angiver, om SDK-meddelelsens anmodninger skal udvides i henhold til det primære objekt, der er defineret i dens filtre. + 1030 + - caa22cd6-07b0-4169-a876-3f7d356728f1 + 4c0b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the delegate user who created the sdkmessageprocessingstepimage. + Indicates whether the SDK message should have its requests expanded per primary entity defined in its filters. 1033 - 7b0ca161-c8d9-4f25-b3db-718b6e54fe6a + 617031b2-1834-11df-b172-00188b01dce6 true - Created By (Delegate) + Expand 1033 + + 74ae838a-6019-41a4-92fb-8dbc90653e31 + + true + Udvid + 1030 + - 7b0ca161-c8d9-4f25-b3db-718b6e54fe6a + 617031b2-1834-11df-b172-00188b01dce6 true - Created By (Delegate) + Expand 1033 - sdkmessageprocessingstepimage + sdkmessage - false + true canmodifyauditsettings - false + true false @@ -274507,39 +284181,163 @@ canmodifysearchsettings true - false + true false true true - false + true true - createdonbehalfby + expand 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOnBehalfBy + Expand - LookupType + BooleanType 5.0.0.0 false - + 0 - None - - systemuser - + false + + a00decf6-c5c4-4846-b01d-4ad0dfd18101 + + + + + 91cf91ce-0fc2-4cee-b63a-dff13e0b2709 + + true + Indicates whether the SDK message should have its requests expanded per primary entity defined in its filters. + 1033 + + + 36ae8627-f2f0-4588-ade2-0e8d4444c610 + + true + Oplysninger, der angiver, om SDK-meddelelsens anmodninger skal udvides i henhold til det primære objekt, der er defineret i dens filtre. + 1030 + + + + 91cf91ce-0fc2-4cee-b63a-dff13e0b2709 + + true + Indicates whether the SDK message should have its requests expanded per primary entity defined in its filters. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + sdkmessage_expand + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 0b25b0cb-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + 2d28585f-ba30-41ba-a58f-852f51ffd828 + + true + Nej + 1030 + + + + 0b25b0cb-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 0d25b0cb-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + fd9731d2-aaa9-45a1-b2ed-fa42db959927 + + true + Ja + 1030 + + + + 0d25b0cb-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + + + 0 - - f3ec6eca-688c-449f-875b-7b79dd56432c + + a5e9496c-d9a8-4c85-9b14-80bef8f8177d - createdonbehalfby - String + expand + Virtual false false false @@ -274548,7 +284346,7 @@ canmodifyadditionalsettings true - 26 + 57 1900-01-01T00:00:00 @@ -274559,7 +284357,7 @@ - sdkmessageprocessingstepimage + sdkmessage @@ -274609,38 +284407,27 @@ false false - createdonbehalfbyname - 2025-11-06T00:19:25.8099968 + expandname + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOnBehalfByName + ExpandName - StringType + VirtualType 5.0.0.0 true - 0 + - Text - Auto - 100 - - - Text - - - false - 0 - 320 - be5ddc35-d98e-4895-a322-a06dc9b2dc0d + 6295db6c-ca30-48b7-bbc6-d6a6d7776398 - createdonbehalfby + String false false @@ -274648,26 +284435,68 @@ false canmodifyadditionalsettings - true + false - 27 + 73 1900-01-01T00:00:00 - - + + + 06528a8b-fae1-484b-b28f-9abf3f5159f9 + + true + Version in which the component is introduced. + 1033 + + + e6cf1778-1b5a-45c8-816c-b16fc755b015 + + true + Version, som komponenten introduceres i. + 1030 + + + + 06528a8b-fae1-484b-b28f-9abf3f5159f9 + + true + Version in which the component is introduced. + 1033 + - - + + + 301a8e46-ed8d-4155-b310-c95869bcdb11 + + true + Introduced Version + 1033 + + + 492949e9-b0f0-4ade-85eb-29e72cab797a + + true + Introduceret version + 1030 + + + + 301a8e46-ed8d-4155-b310-c95869bcdb11 + + true + Introduced Version + 1033 + - sdkmessageprocessingstepimage + sdkmessage - false + true canmodifyauditsettings - false + true false @@ -274704,46 +284533,46 @@ canmodifysearchsettings false - false + true false false true false - false + true - createdonbehalfbyyominame - 2025-11-06T00:19:28.1529984 + introducedversion + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOnBehalfByYomiName + IntroducedVersion StringType - 5.0.0.0 - true + 9.0.0.0 + false 0 - Text + VersionNumber Auto - 100 - createdonbehalfbyname + 48 + - Text + VersionNumber false 0 - 320 + 96 - - 056fe279-7d81-491a-8289-c97199d23d68 + + 41d2be6f-9777-4f81-9169-d2570eb2a24c - Integer + Boolean false false false @@ -274752,156 +284581,60 @@ canmodifyadditionalsettings true - 9 + 65 1900-01-01T00:00:00 - ac5011ad-2241-db11-898a-0007e9e17ebd + c3012164-2194-4188-a07d-885e969f9aff true - Customization level of the SDK message processing step image. + Information about whether the SDK message is active. 1033 - - - ac5011ad-2241-db11-898a-0007e9e17ebd - - true - Customization level of the SDK message processing step image. - 1033 - - - - - - - sdkmessageprocessingstepimage - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - customizationlevel - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - CustomizationLevel - - - IntegerType - - 5.0.0.0 - false - 0 - - None - 255 - -255 - - 0 - - - bc74bf49-7945-4e5e-b8f8-d25585782958 - - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 35 - 1900-01-01T00:00:00 - - - - dc415ca3-15f1-4398-b762-3cd099e0fe0b + a7df2d81-8dfb-40a9-95aa-d7f2ceb943b0 true - Description of the SDK message processing step image. - 1033 + Oplysninger, der viser, om SDK-meddelelsen er aktiv. + 1030 - dc415ca3-15f1-4398-b762-3cd099e0fe0b + c3012164-2194-4188-a07d-885e969f9aff true - Description of the SDK message processing step image. + Information about whether the SDK message is active. 1033 - 270dcd9c-6ec3-4a76-b060-f546555f3d55 + 47292e29-a7ce-4221-86f4-d5070d0ae049 true - Description + Is Active 1033 + + b61dd0d8-daed-409e-83b1-2726d6910ea3 + + true + Er aktiv + 1030 + - 270dcd9c-6ec3-4a76-b060-f546555f3d55 + 47292e29-a7ce-4221-86f4-d5070d0ae049 true - Description + Is Active 1033 - sdkmessageprocessingstepimage + sdkmessage @@ -274931,8 +284664,8 @@ false false - true - true + false + false false true @@ -274945,45 +284678,162 @@ true true - true + false true true true true - description + isactive 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Description + IsActive - StringType + BooleanType - 5.0.0.0 + 6.0.0.0 false 0 - Text - Auto - 256 - - - Text - + true + + ce450429-cac4-4559-ad7b-17fb4f717cac + + + + + 2b8a9f67-465a-495f-b7bc-b50adea27e1e + + true + Information about whether the SDK message is automatically transacted. + 1033 + + + 742632f5-bca6-45a1-8fa1-9951de777d63 + + true + Oplysninger, der viser, om der er udført en automatisk transaktion for SDK-meddelelsen. + 1030 + + + + 2b8a9f67-465a-495f-b7bc-b50adea27e1e + + true + Information about whether the SDK message is automatically transacted. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + sdkmessage_isactive + Boolean + 6.0.0.0 + + + + + + + + + + false + true + + + + e3115f51-16e7-45d7-a6f4-c9582c69ab97 + + true + No + 1033 + + + 5c28d469-93a4-403e-83b9-763dfe31b448 + + true + Nej + 1030 + + + + e3115f51-16e7-45d7-a6f4-c9582c69ab97 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 327a29e1-efb1-476f-a550-af00c9af7449 + + true + Yes + 1033 + + + 4535a1ff-b819-45d8-be48-af9e5cafa05c + + true + Ja + 1030 + + + + 327a29e1-efb1-476f-a550-af00c9af7449 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 512 - - 41b5316b-23ed-4922-bbde-27b43a1d1b91 + + 4ac9a113-99e7-4d57-9132-f41cb99795dc - - String + isactive + Virtual false false false @@ -274992,52 +284842,24 @@ canmodifyadditionalsettings true - 8 + 66 1900-01-01T00:00:00 - - - a85011ad-2241-db11-898a-0007e9e17ebd - - true - Key name used to access the pre-image or post-image property bags in a step. - 1033 - - - - a85011ad-2241-db11-898a-0007e9e17ebd - - true - Key name used to access the pre-image or post-image property bags in a step. - 1033 - + + - - - 600041bf-21a5-11df-82b5-00188b01dce6 - - true - Entity Alias - 1033 - - - - 600041bf-21a5-11df-82b5-00188b01dce6 - - true - Entity Alias - 1033 - + + - sdkmessageprocessingstepimage + sdkmessage - true + false canmodifyauditsettings - true + false false @@ -275072,48 +284894,37 @@ false canmodifysearchsettings - true + false - true + false false - true + false true - true - true + false + false - entityalias + isactivename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - EntityAlias + IsActiveName - StringType + VirtualType - 5.0.0.0 - false - 0 + 6.0.0.0 + true + - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - ed38b65a-2270-4c2b-a9cc-a14d9e8c4a05 + + fc07655d-09c1-43f8-bcfa-4a8608fa8656 - Picklist + Boolean false false false @@ -275122,46 +284933,60 @@ canmodifyadditionalsettings true - 12 + 72 1900-01-01T00:00:00 - af5011ad-2241-db11-898a-0007e9e17ebd + 4a5a9176-8aa8-47a4-9ecd-ec8c68fdaaca true - Type of image requested. + Information that specifies whether this component is managed. 1033 + + 19e002d3-88c1-47b8-8d0c-150fae3cf5a4 + + true + Oplysning om, hvorvidt komponenten er administreret. + 1030 + - af5011ad-2241-db11-898a-0007e9e17ebd + 4a5a9176-8aa8-47a4-9ecd-ec8c68fdaaca true - Type of image requested. + Information that specifies whether this component is managed. 1033 - ae5011ad-2241-db11-898a-0007e9e17ebd + c972fd19-cc41-4531-9cd8-6c38476e9d83 true - Image Type + State 1033 + + eb59756f-34de-4606-854c-0550b6c0501c + + true + Tilstand + 1030 + - ae5011ad-2241-db11-898a-0007e9e17ebd + c972fd19-cc41-4531-9cd8-6c38476e9d83 true - Image Type + State 1033 - sdkmessageprocessingstepimage + sdkmessage @@ -275191,7 +285016,7 @@ false false - true + false false false @@ -275202,68 +285027,82 @@ false canmodifysearchsettings - true + false - true + false false true true - true + false true - imagetype + ismanaged 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - ImageType + IsManaged - PicklistType + BooleanType - 5.0.0.0 + 9.0.0.0 false 0 - 0 + false - c875fc04-477a-4ad1-8c0e-ac0d596b8863 + 9d04e035-5408-4c1d-a5aa-20445a02f691 - 79c5e9e9-400f-4b98-a140-9e2fd0f57313 + b41954a2-f3a5-47e9-ae13-ceb49de4465b true - Type of image requested. + Information about whether the current component is managed. 1033 + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + - 79c5e9e9-400f-4b98-a140-9e2fd0f57313 + b41954a2-f3a5-47e9-ae13-ceb49de4465b true - Type of image requested. + Information about whether the current component is managed. 1033 - ade1b897-1b4f-4a7d-8c4d-9b5bb139cf12 + 45a188b1-91a8-4019-b582-cebda8081064 true - Image Type + Is Component Managed 1033 + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + - ade1b897-1b4f-4a7d-8c4d-9b5bb139cf12 + 45a188b1-91a8-4019-b582-cebda8081064 true - Image Type + Is Component Managed 1033 @@ -275274,124 +285113,99 @@ iscustomizable false - false + true true - sdkmessageprocessingstepimage_imagetype - Picklist + ismanaged + Boolean 5.0.0.0 - - - - - - - - - - - false - true - - - - b15011ad-2241-db11-898a-0007e9e17ebd - - true - PreImage - 1033 - - - - b15011ad-2241-db11-898a-0007e9e17ebd + + + + + + + + + + false + true + + + + 443c7078-b7cb-47e7-8547-08dfa82950d0 - true - PreImage - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - b35011ad-2241-db11-898a-0007e9e17ebd - - true - PostImage - 1033 - - - - b35011ad-2241-db11-898a-0007e9e17ebd + true + Unmanaged + 1033 + + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db - true - PostImage - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - b55011ad-2241-db11-898a-0007e9e17ebd - - true - Both - 1033 - - - - b55011ad-2241-db11-898a-0007e9e17ebd + true + Ikke administreret + 1030 + + + + 443c7078-b7cb-47e7-8547-08dfa82950d0 + + true + Unmanaged + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + ec886b5b-7e97-4c62-b30c-bf295639d540 - true - Both - 1033 - - - - 2 - - - - + true + Managed + 1033 + + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + + + + ec886b5b-7e97-4c62-b30c-bf295639d540 + + true + Managed + 1033 + + + + 1 + + - 0 - - - 060f67ec-0339-4d11-84be-a57b05e056c0 + 5b824a3c-d676-4449-9024-fa83730d0169 - imagetype + ismanaged Virtual false false @@ -275401,7 +285215,7 @@ canmodifyadditionalsettings true - 17 + 75 1900-01-01T00:00:00 @@ -275412,7 +285226,7 @@ - sdkmessageprocessingstepimage + sdkmessage @@ -275462,82 +285276,96 @@ false false - imagetypename + ismanagedname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ImageTypeName + IsManagedName VirtualType - 5.0.0.0 + 9.0.0.0 true - - ff8b3c07-dc06-42b6-9509-b8c5101ed9bd + + 30454421-a811-4e30-a5bf-9368796cb1b6 - String + Boolean false false false false canmodifyadditionalsettings - false + true - 38 + 2 1900-01-01T00:00:00 - 9e8cc36b-63c8-4cd1-8cd9-ebecc406deff + 420b19a7-2241-db11-898a-0007e9e17ebd true - Version in which the form is introduced. + Indicates whether the SDK message is private. 1033 + + ed92a73c-cee8-4ca9-89d9-b574c6465471 + + true + Oplysninger, der angiver, om SDK-meddelelsen er privat. + 1030 + - 9e8cc36b-63c8-4cd1-8cd9-ebecc406deff + 420b19a7-2241-db11-898a-0007e9e17ebd true - Version in which the form is introduced. + Indicates whether the SDK message is private. 1033 - eb30d68b-01f8-4d30-9ea8-ebf77da84103 + 617031b3-1834-11df-b172-00188b01dce6 true - Introduced Version + Is Private 1033 + + d2c6bc32-45b9-4788-8fe6-a354e5fca37d + + true + Er privat + 1030 + - eb30d68b-01f8-4d30-9ea8-ebf77da84103 + 617031b3-1834-11df-b172-00188b01dce6 true - Introduced Version + Is Private 1033 - sdkmessageprocessingstepimage + sdkmessage - true + false canmodifyauditsettings - true + false false @@ -275572,48 +285400,165 @@ false canmodifysearchsettings - false + true true false - false + true true - false + true true - introducedversion + isprivate 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IntroducedVersion + IsPrivate - StringType + BooleanType - 6.0.0.0 + 5.0.0.0 false 0 - VersionNumber - Auto - 48 - - - VersionNumber - + false + + 6bb7bb24-296f-42e7-b30d-fb72cbb3518a + + + + + 15768e08-99a2-4215-b3b3-df8a18fdae32 + + true + Indicates whether the SDK message is private. + 1033 + + + ad9384c1-3322-4606-b246-95ef7acc4f36 + + true + Oplysninger, der angiver, om SDK-meddelelsen er privat. + 1030 + + + + 15768e08-99a2-4215-b3b3-df8a18fdae32 + + true + Indicates whether the SDK message is private. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + sdkmessage_isprivate + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 0f25b0cb-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + 1717cf96-e089-422a-8f8d-d1b2b9b4103b + + true + Nej + 1030 + + + + 0f25b0cb-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 1125b0cb-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + de158116-794c-4401-a0ee-9bc44e2793c6 + + true + Ja + 1030 + + + + 1125b0cb-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 96 - - 6b850de8-590e-47af-886e-4165737fe0a4 + + d2ce4898-b740-41ea-9f2d-81f2d1f2cc80 - - ManagedProperty + isprivate + Virtual false false false @@ -275622,46 +285567,18 @@ canmodifyadditionalsettings true - 36 + 60 1900-01-01T00:00:00 - - - 18d2dfa3-5e97-4efb-aaf8-a16f2aec1dce - - true - Information that specifies whether this component can be customized. - 1033 - - - - 18d2dfa3-5e97-4efb-aaf8-a16f2aec1dce - - true - Information that specifies whether this component can be customized. - 1033 - + + - - - 2a4fe593-6ff4-49da-b909-8442eefbe26f - - true - Customizable - 1033 - - - - 2a4fe593-6ff4-49da-b909-8442eefbe26f - - true - Customizable - 1033 - + + - sdkmessageprocessingstepimage + sdkmessage @@ -275704,36 +285621,32 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - iscustomizable + isprivatename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsCustomizable + IsPrivateName - ManagedPropertyType + VirtualType 5.0.0.0 - false + true - iscustomizableanddeletable - - - Boolean - 30273b4b-0ce1-496d-b9e6-7008dd648372 + 667b1be4-f197-41b7-a286-819bd040c3d9 Boolean @@ -275745,22 +285658,64 @@ canmodifyadditionalsettings true - 24 + 28 1900-01-01T00:00:00 - - + + + be12ebe5-ab78-4279-bce3-3e0f65c0f82b + + true + Identifies whether an SDK message will be ReadOnly or Read Write. false - ReadWrite, true - ReadOnly . + 1033 + + + 93377c4f-fe9f-4f5b-bf19-552a1f83d31d + + true + Identificerer, om en SDK-meddelelse skal være ReadOnly eller Read Write, falsk - ReadWrite, sand - ReadOnly. + 1030 + + + + be12ebe5-ab78-4279-bce3-3e0f65c0f82b + + true + Identifies whether an SDK message will be ReadOnly or Read Write. false - ReadWrite, true - ReadOnly . + 1033 + - - + + + 75340187-47ca-4dc4-a61e-7491c8d8009c + + true + Intent + 1033 + + + 0eae29f2-e939-4e6a-b2bd-b1844b940281 + + true + Hensigt + 1030 + + + + 75340187-47ca-4dc4-a61e-7491c8d8009c + + true + Intent + 1033 + - sdkmessageprocessingstepimage + sdkmessage - true + false canmodifyauditsettings true @@ -275797,68 +285752,82 @@ false canmodifysearchsettings - false + true - false + true false - false + true true false true - ismanaged + isreadonly 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsManaged + IsReadOnly BooleanType - 5.0.0.0 + 7.1.0.0 false 0 false - 9d04e035-5408-4c1d-a5aa-20445a02f691 + ee89f0cc-4512-45ff-8a13-24deb5151471 - b41954a2-f3a5-47e9-ae13-ceb49de4465b + b0bfcb58-06cf-42fb-80ff-dbf772fd7bba true - Information about whether the current component is managed. + Indication of whether a SDKMessage/Plugin is of ReadOnly or ReadWrite Intent 1033 + + cb0c8c7c-c938-45eb-8725-76e3ab19c631 + + true + Angiver, om SDKMessage/plug-in er med hensigten ReadOnly eller ReadWrite + 1030 + - b41954a2-f3a5-47e9-ae13-ceb49de4465b + b0bfcb58-06cf-42fb-80ff-dbf772fd7bba true - Information about whether the current component is managed. + Indication of whether a SDKMessage/Plugin is of ReadOnly or ReadWrite Intent 1033 - 45a188b1-91a8-4019-b582-cebda8081064 + 59ff6b6f-5aa5-481b-8d6a-0e7a76d2c58f true - Is Component Managed + Is Operation Intent Read Only 1033 + + 014a971a-ca3c-4972-bb85-ca8fc53d6940 + + true + Er handlingens hensigt skrivebeskyttet + 1030 + - 45a188b1-91a8-4019-b582-cebda8081064 + 59ff6b6f-5aa5-481b-8d6a-0e7a76d2c58f true - Is Component Managed + Is Operation Intent Read Only 1033 @@ -275871,9 +285840,9 @@ true true - ismanaged + isoperationintentreadonly Boolean - 5.0.0.0 + 7.1.0.0 @@ -275888,18 +285857,25 @@ - 443c7078-b7cb-47e7-8547-08dfa82950d0 + 689c7bc5-a039-4084-bd1c-3e1930a82567 true - Unmanaged + No 1033 + + ff4010a7-1da1-4163-9349-98a338bc5cbb + + true + Nej + 1030 + - 443c7078-b7cb-47e7-8547-08dfa82950d0 + 689c7bc5-a039-4084-bd1c-3e1930a82567 true - Unmanaged + No 1033 @@ -275921,18 +285897,25 @@ - ec886b5b-7e97-4c62-b30c-bf295639d540 + 5b05f5da-d6db-4bd1-be75-167605fcccdc true - Managed + Yes 1033 + + b08d97f1-7288-48a2-95b6-026fbcb55032 + + true + Ja + 1030 + - ec886b5b-7e97-4c62-b30c-bf295639d540 + 5b05f5da-d6db-4bd1-be75-167605fcccdc true - Managed + Yes 1033 @@ -275945,9 +285928,9 @@ 0 - e2ec7cbf-2b69-460e-a425-b3f700b6388f + 302bb3fd-0115-47fd-8621-31f158ddfec0 - ismanaged + isreadonly Virtual false false @@ -275957,7 +285940,7 @@ canmodifyadditionalsettings true - 37 + 29 1900-01-01T00:00:00 @@ -275968,7 +285951,7 @@ - sdkmessageprocessingstepimage + sdkmessage @@ -276018,28 +286001,28 @@ false false - ismanagedname + isreadonlyname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - IsManagedName + IsReadOnlyName VirtualType - 5.0.0.0 + 7.1.0.0 true - - e5181f28-5238-43c4-bba3-bb4b74edfa54 + + cb070e81-3348-42cb-b2bc-88d0d9195d3b - String + Boolean false false false @@ -276048,46 +286031,60 @@ canmodifyadditionalsettings true - 15 + 20 1900-01-01T00:00:00 - fe4a6bd9-2868-4e70-92fb-a8263a854317 + ad103961-0137-4e66-b66c-1b5743b511a7 true - Name of the property on the Request message. + For internal use only. 1033 + + d96d3008-6dfe-4b8b-8e48-c360df3bf5e4 + + true + Kun til intern brug. + 1030 + - fe4a6bd9-2868-4e70-92fb-a8263a854317 + ad103961-0137-4e66-b66c-1b5743b511a7 true - Name of the property on the Request message. + For internal use only. 1033 - 600041c1-21a5-11df-82b5-00188b01dce6 + b944c58b-a14d-42f1-a92d-1f5021746eb1 true - Message Property Name + Is Valid for Execute Async 1033 + + 752253d0-28de-436b-8ec8-550d85a7effc + + true + Er gyldig for asynkron udførelse + 1030 + - 600041c1-21a5-11df-82b5-00188b01dce6 + b944c58b-a14d-42f1-a92d-1f5021746eb1 true - Message Property Name + Is Valid for Execute Async 1033 - sdkmessageprocessingstepimage + sdkmessage @@ -276117,7 +286114,7 @@ false false - true + false false false @@ -276128,45 +286125,162 @@ false canmodifysearchsettings - true + false - true + false false - true + false true - true + false true - messagepropertyname + isvalidforexecuteasync 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - MessagePropertyName + IsValidForExecuteAsync - StringType + BooleanType - 5.0.0.0 + 6.0.0.0 false 0 - Text - Auto - 256 - - - Text - + false + + 1872d252-e6c9-4843-a351-b347a2f0b21e + + + + + 4ec1282e-3eea-4b02-936d-f8240209a321 + + true + Indicates whether this SDK message can be passed to ExecuteAsync SDK. + 1033 + + + 3141a26f-2acd-4a47-9325-a9aabb1cd90e + + true + Angiver, om denne SDK-meddelelse kan sendes til ExecuteAsync SDK. + 1030 + + + + 4ec1282e-3eea-4b02-936d-f8240209a321 + + true + Indicates whether this SDK message can be passed to ExecuteAsync SDK. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + sdkmessage_isvalidforexecuteasync + Boolean + 6.0.0.0 + + + + + + + + + + false + true + + + + beb44d7f-29c7-4933-b812-0fc1df2559e1 + + true + No + 1033 + + + ecbef87b-6b2b-4ac0-a7ec-53a8dbcfcd31 + + true + Nej + 1030 + + + + beb44d7f-29c7-4933-b812-0fc1df2559e1 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + c0d6dcd1-1c8c-472d-b273-c36f45d00069 + + true + Yes + 1033 + + + 3ed4e74f-2d06-4433-89d1-1da1c696cb32 + + true + Ja + 1030 + + + + c0d6dcd1-1c8c-472d-b273-c36f45d00069 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 512 - c1872e69-5197-48d0-ad2d-bf0041e94e1d + 5a18b581-522e-413d-811d-7badfd5d2ffe Lookup @@ -276178,46 +286292,60 @@ canmodifyadditionalsettings true - 1 + 8 1900-01-01T00:00:00 - aa5011ad-2241-db11-898a-0007e9e17ebd + 490b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the user who last modified the SDK message processing step. + Unique identifier of the user who last modified the SDK message. 1033 + + d5d243d3-282e-4f98-aa31-443f2bf7bd7f + + true + Entydigt id for den bruger, der sidst ændrede SDK-meddelelsen. + 1030 + - aa5011ad-2241-db11-898a-0007e9e17ebd + 490b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the user who last modified the SDK message processing step. + Unique identifier of the user who last modified the SDK message. 1033 - 600041c2-21a5-11df-82b5-00188b01dce6 + 617031b4-1834-11df-b172-00188b01dce6 true Modified By 1033 + + cdd39b4c-79a8-4a48-9776-3cd711eee8ec + + true + Ændret af + 1030 + - 600041c2-21a5-11df-82b5-00188b01dce6 + 617031b4-1834-11df-b172-00188b01dce6 true Modified By 1033 - sdkmessageprocessingstepimage + sdkmessage @@ -276289,7 +286417,7 @@ - 9698d7ac-02e6-43ed-96b0-a363166b49f3 + cb9e7884-e3fd-44ca-9b4a-f530f4e5cbf3 modifiedby String @@ -276301,7 +286429,7 @@ canmodifyadditionalsettings true - 30 + 58 1900-01-01T00:00:00 @@ -276312,7 +286440,7 @@ - sdkmessageprocessingstepimage + sdkmessage @@ -276363,7 +286491,7 @@ false modifiedbyname - 2025-11-06T00:19:25.2600064 + 2025-11-06T00:19:25.6669952 false canmodifyrequirementlevelsettings @@ -276391,7 +286519,7 @@ 320 - e85bd5ff-734b-4e63-a65d-b7f40d37728b + 802d278e-97d6-44da-ad06-9f2d91b880ea DateTime @@ -276403,46 +286531,60 @@ canmodifyadditionalsettings true - 3 + 7 1900-01-01T00:00:00 - a55011ad-2241-db11-898a-0007e9e17ebd + 470b19a7-2241-db11-898a-0007e9e17ebd true - Date and time when the SDK message processing step was last modified. + Date and time when the SDK message was last modified. 1033 + + 0d2fc0f3-1781-455e-897c-3d7ee292ff9b + + true + Dato og klokkeslæt for sidste ændring af SDK-meddelelsen. + 1030 + - a55011ad-2241-db11-898a-0007e9e17ebd + 470b19a7-2241-db11-898a-0007e9e17ebd true - Date and time when the SDK message processing step was last modified. + Date and time when the SDK message was last modified. 1033 - 600041c3-21a5-11df-82b5-00188b01dce6 + 617031b5-1834-11df-b172-00188b01dce6 true - Modified By + Modified On 1033 + + 4ae0268b-c1ca-4f2b-af2e-62afa9015979 + + true + Ændret + 1030 + - 600041c3-21a5-11df-82b5-00188b01dce6 + 617031b5-1834-11df-b172-00188b01dce6 true - Modified By + Modified On 1033 - sdkmessageprocessingstepimage + sdkmessage @@ -276522,7 +286664,7 @@ - 37bbcd8f-9ede-48b3-a8f1-7107c9f549e1 + 0a6cc991-4759-4f35-b4f1-d22f6f06d08f Lookup @@ -276540,40 +286682,54 @@ - 03b52b7c-bf4c-4966-bd42-e01f060ce3db + 55ef7c20-92c2-4402-9ad7-2efd8f007925 true - Unique identifier of the delegate user who last modified the sdkmessageprocessingstepimage. + Unique identifier of the delegate user who last modified the sdkmessage. 1033 + + 205e9eac-33f2-47d8-8c3d-d2579114037f + + true + Entydigt id for den stedfortræderbruger, der senest ændrede SDK-meddelelsen. + 1030 + - 03b52b7c-bf4c-4966-bd42-e01f060ce3db + 55ef7c20-92c2-4402-9ad7-2efd8f007925 true - Unique identifier of the delegate user who last modified the sdkmessageprocessingstepimage. + Unique identifier of the delegate user who last modified the sdkmessage. 1033 - 98423b0e-55c2-45e5-8ab2-2ba0f35fa6a3 + 7c9acf04-5881-4eaa-bfdc-2b47527d3e2a true Modified By (Delegate) 1033 + + b5f84d60-9acf-4034-aab5-0be1013d75eb + + true + Ændret af (stedfortræder) + 1030 + - 98423b0e-55c2-45e5-8ab2-2ba0f35fa6a3 + 7c9acf04-5881-4eaa-bfdc-2b47527d3e2a true Modified By (Delegate) 1033 - sdkmessageprocessingstepimage + sdkmessage @@ -276645,7 +286801,7 @@ - 450410a8-c7ca-443b-8b5e-bee1dd1b8c68 + dfd890da-e478-4255-a7b1-f132c2380187 modifiedonbehalfby String @@ -276668,7 +286824,7 @@ - sdkmessageprocessingstepimage + sdkmessage @@ -276719,7 +286875,7 @@ false modifiedonbehalfbyname - 2025-11-06T00:19:26.6370048 + 2025-11-06T00:19:25.3229952 false canmodifyrequirementlevelsettings @@ -276747,7 +286903,7 @@ 320 - 1352c88e-5318-4a7a-83e0-282e77f55aa4 + 252f1b29-70b8-4061-9658-73b27b75e6f4 modifiedonbehalfby String @@ -276770,7 +286926,7 @@ - sdkmessageprocessingstepimage + sdkmessage @@ -276821,7 +286977,7 @@ false modifiedonbehalfbyyominame - 2025-11-06T00:19:27.12 + 2025-11-06T00:19:28.2770048 false canmodifyrequirementlevelsettings @@ -276849,7 +287005,7 @@ 320 - 98f77607-daf3-49e7-b6df-d3a0e7d9e2a4 + 3821e38a-55b9-41f2-8966-3c8bf55508c4 String @@ -276861,46 +287017,60 @@ canmodifyadditionalsettings true - 34 + 15 1900-01-01T00:00:00 - 9c726129-1e6c-43e0-8e58-ab041d2e769d + 510b19a7-2241-db11-898a-0007e9e17ebd true - Name of SdkMessage processing step image. + Name of the SDK message. 1033 + + 8a958df7-c309-49f4-bcab-b090813e08a7 + + true + Navn på SDK-meddelelsen. + 1030 + - 9c726129-1e6c-43e0-8e58-ab041d2e769d + 510b19a7-2241-db11-898a-0007e9e17ebd true - Name of SdkMessage processing step image. + Name of the SDK message. 1033 - f4cce8e3-98b9-45f7-b40f-3d8b9397f787 + 617031b6-1834-11df-b172-00188b01dce6 true Name 1033 + + 724e4194-d675-4b9d-821e-ecedf7b188b0 + + true + Navn + 1030 + - f4cce8e3-98b9-45f7-b40f-3d8b9397f787 + 617031b6-1834-11df-b172-00188b01dce6 true Name 1033 - sdkmessageprocessingstepimage + sdkmessage @@ -276944,7 +287114,7 @@ true true - true + false true true true @@ -276979,7 +287149,7 @@ 512 - 56241f85-0930-4dc0-96e3-72a952c9a711 + cc23d329-c175-42bf-a44a-f436b31cc4e0 Lookup @@ -276991,24 +287161,31 @@ canmodifyadditionalsettings true - 5 + 1 1900-01-01T00:00:00 - b65011ad-2241-db11-898a-0007e9e17ebd + 400b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the organization with which the SDK message processing step is associated. + Unique identifier of the organization with which the SDK message is associated. 1033 + + c53dc55e-8fd2-4750-b75f-c4f0be60d034 + + true + Entydigt id for den organisation, som SDK-meddelelsen er tilknyttet. + 1030 + - b65011ad-2241-db11-898a-0007e9e17ebd + 400b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the organization with which the SDK message processing step is associated. + Unique identifier of the organization with which the SDK message is associated. 1033 @@ -277016,7 +287193,7 @@ - sdkmessageprocessingstepimage + sdkmessage @@ -277088,7 +287265,7 @@ - 1264c000-8dfe-4717-a68a-dc6a427b56c3 + 9f2e0856-c690-444e-85c7-47de87a6fdc9 DateTime @@ -277100,21 +287277,28 @@ canmodifyadditionalsettings true - 31 + 71 1900-01-01T00:00:00 - 1264c001-8dfe-4717-a68a-dc6a427b56c3 + c01f3bfc-9e22-4b11-ad2c-0eb934fb6ec6 true For internal use only. 1033 + + d72fa638-ab41-4a05-9f79-88ad1d474785 + + true + Kun til intern brug. + 1030 + - 1264c001-8dfe-4717-a68a-dc6a427b56c3 + c01f3bfc-9e22-4b11-ad2c-0eb934fb6ec6 true For internal use only. @@ -277124,22 +287308,29 @@ - 1264c002-8dfe-4717-a68a-dc6a427b56c3 + 4f7cb85f-e0ee-44c4-b39d-b82998433729 true Record Overwrite Time 1033 + + f28d6039-ba70-43fe-afc8-bbaac4836b56 + + true + Klokkeslæt for overskrivning af post + 1030 + - 1264c002-8dfe-4717-a68a-dc6a427b56c3 + 4f7cb85f-e0ee-44c4-b39d-b82998433729 true Record Overwrite Time 1033 - sdkmessageprocessingstepimage + sdkmessage @@ -277201,7 +287392,7 @@ DateTimeType - 5.0.0.0 + 9.0.0.0 false 0 @@ -277218,11 +287409,11 @@ UserLocal - - 116e0f5b-b8ea-4aea-bc4c-deebf075d4cc + + 22f9e608-d378-4606-9a4e-6f475576ca8e - String + Uniqueidentifier false false false @@ -277231,52 +287422,45 @@ canmodifyadditionalsettings true - 14 + 3 1900-01-01T00:00:00 - b85011ad-2241-db11-898a-0007e9e17ebd + 4d0b19a7-2241-db11-898a-0007e9e17ebd true - Name of the related entity. + Unique identifier of the SDK message entity. 1033 - - - b85011ad-2241-db11-898a-0007e9e17ebd - - true - Name of the related entity. - 1033 - - - - - 600041c4-21a5-11df-82b5-00188b01dce6 + 8623b2dc-aa87-47de-9dd8-6c4a06122c80 true - Related Attribute Name - 1033 + Entydigt id for SDK-meddelelsesobjektet. + 1030 - 600041c4-21a5-11df-82b5-00188b01dce6 + 4d0b19a7-2241-db11-898a-0007e9e17ebd true - Related Attribute Name + Unique identifier of the SDK message entity. 1033 + + + + - sdkmessageprocessingstepimage + sdkmessage - true + false canmodifyauditsettings - true + false false @@ -277285,14 +287469,14 @@ false false - false + true true canmodifyglobalfiltersettings false true - false + true false false @@ -277311,48 +287495,37 @@ false canmodifysearchsettings - true + false true false - true + false true - true + false true - relatedattributename + sdkmessageid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - RelatedAttributeName + SdkMessageId - StringType + UniqueidentifierType 5.0.0.0 false - 0 + - Text - Auto - 256 - - - Text - - - false - 0 - 512 - - 0b762fae-d794-469d-aa1b-bcececd323fc + + 5d0064c5-25c6-451d-bccf-238900844261 - Lookup + Uniqueidentifier false false false @@ -277361,52 +287534,45 @@ canmodifyadditionalsettings true - 2 + 9 1900-01-01T00:00:00 - a35011ad-2241-db11-898a-0007e9e17ebd + 4b0b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the SDK message processing step. + Unique identifier of the SDK message. 1033 - - - a35011ad-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the SDK message processing step. - 1033 - - - - - 600041c5-21a5-11df-82b5-00188b01dce6 + bb00518c-2734-456d-ab4a-3c102c213e87 true - SDK Message Processing Step - 1033 + Entydigt id for SDK-meddelelsen. + 1030 - 600041c5-21a5-11df-82b5-00188b01dce6 + 4b0b19a7-2241-db11-898a-0007e9e17ebd true - SDK Message Processing Step + Unique identifier of the SDK message. 1033 + + + + - sdkmessageprocessingstepimage + sdkmessage - true + false canmodifyauditsettings - true + false false @@ -277430,7 +287596,7 @@ false false - true + false false false @@ -277443,36 +287609,32 @@ canmodifysearchsettings false - true + false false false true - true + false true - sdkmessageprocessingstepid + sdkmessageidunique 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - SdkMessageProcessingStepId + SdkMessageIdUnique - LookupType + UniqueidentifierType 5.0.0.0 false - None - - sdkmessageprocessingstep - - efacc843-2670-4193-9623-6b9c4187b4dc + adec7ad0-0f2c-4a25-ad93-134fe58c9926 Uniqueidentifier @@ -277484,32 +287646,60 @@ canmodifyadditionalsettings true - 6 + 69 1900-01-01T00:00:00 - a75011ad-2241-db11-898a-0007e9e17ebd + 2cceef03-3527-4444-b1cc-fd57100131f7 true - Unique identifier of the SDK message processing step image entity. + Unique identifier of the associated solution. 1033 + + 9c59677e-6551-4fbd-b806-a4c61a056952 + + true + Entydigt id for den tilknyttede løsning. + 1030 + - a75011ad-2241-db11-898a-0007e9e17ebd + 2cceef03-3527-4444-b1cc-fd57100131f7 true - Unique identifier of the SDK message processing step image entity. + Unique identifier of the associated solution. 1033 - - + + + c5585e1a-a555-4204-9e64-148894a1cc0f + + true + Solution + 1033 + + + 6b9a3ccb-a82c-4393-a8b8-d10cc6baa359 + + true + Løsning + 1030 + + + + c5585e1a-a555-4204-9e64-148894a1cc0f + + true + Solution + 1033 + - sdkmessageprocessingstepimage + sdkmessage @@ -277524,14 +287714,14 @@ false false - true + false true canmodifyglobalfiltersettings false true - true + false false false @@ -277539,7 +287729,7 @@ false false - true + false false false @@ -277550,34 +287740,34 @@ false canmodifysearchsettings - true + false - true + false false false true false true - sdkmessageprocessingstepimageid + solutionid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - SdkMessageProcessingStepImageId + SolutionId UniqueidentifierType - 5.0.0.0 + 9.0.0.0 false - 041cf5b1-5170-4f33-b15c-d50b2cac9411 + c9c0642b-818e-47c7-9f56-92e533b734f3 Uniqueidentifier @@ -277589,32 +287779,60 @@ canmodifyadditionalsettings true - 11 + 74 1900-01-01T00:00:00 - ad5011ad-2241-db11-898a-0007e9e17ebd + 6cf2feb8-e6d7-4f50-9a66-82868276484b true - Unique identifier of the SDK message processing step image. + For internal use only. 1033 + + 1317d854-f8eb-4f5f-8fb1-721d6f6f058f + + true + Kun til intern brug. + 1030 + - ad5011ad-2241-db11-898a-0007e9e17ebd + 6cf2feb8-e6d7-4f50-9a66-82868276484b true - Unique identifier of the SDK message processing step image. + For internal use only. 1033 - - + + + 8346b265-c8ab-4385-90ad-511b8d676f94 + + true + Solution + 1033 + + + 16eeb7a4-ecf9-4e03-894c-39e81bc00bf7 + + true + Løsning + 1030 + + + + 8346b265-c8ab-4385-90ad-511b8d676f94 + + true + Solution + 1033 + - sdkmessageprocessingstepimage + sdkmessage @@ -277655,37 +287873,37 @@ false canmodifysearchsettings - false + true false false - false - true + true + false false - true + false - sdkmessageprocessingstepimageidunique + supportingsolutionid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - SdkMessageProcessingStepImageIdUnique + SupportingSolutionId UniqueidentifierType - 5.0.0.0 + 9.0.0.0 false - - e5806000-95bc-4e75-9201-e6ea71ec4764 + + 4299079f-7d7e-44cf-bd0c-e550a051239e - Uniqueidentifier + Boolean false false false @@ -277694,46 +287912,279 @@ canmodifyadditionalsettings true - 32 + 17 1900-01-01T00:00:00 - e5806001-95bc-4e75-9201-e6ea71ec4764 + 520b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the associated solution. + Indicates whether the SDK message is a template. 1033 + + a93b6561-5ece-4e51-854a-f3f846a26deb + + true + Oplysninger, der angiver, om SDK-meddelelsen er en skabelon. + 1030 + - e5806001-95bc-4e75-9201-e6ea71ec4764 + 520b19a7-2241-db11-898a-0007e9e17ebd true - Unique identifier of the associated solution. + Indicates whether the SDK message is a template. 1033 - e5806002-95bc-4e75-9201-e6ea71ec4764 + 617031b7-1834-11df-b172-00188b01dce6 true - Solution + Template 1033 + + 206245a7-d58c-4f77-8f56-438a7684f367 + + true + Skabelon + 1030 + - e5806002-95bc-4e75-9201-e6ea71ec4764 + 617031b7-1834-11df-b172-00188b01dce6 true - Solution + Template 1033 - sdkmessageprocessingstepimage + sdkmessage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + false + true + true + true + true + + template + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Template + + + BooleanType + + 5.0.0.0 + false + 0 + + false + + f5f0579d-7d33-49e9-8b30-467364385286 + + + + + 502e758f-f41b-44b7-b101-3804cf6eb2da + + true + Indicates whether the SDK message is a template. + 1033 + + + d5e4e21a-a957-48fc-8d56-a58a4da2958f + + true + Oplysninger, der angiver, om SDK-meddelelsen er en skabelon. + 1030 + + + + 502e758f-f41b-44b7-b101-3804cf6eb2da + + true + Indicates whether the SDK message is a template. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + sdkmessage_template + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 1325b0cb-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + e213653a-8cd9-4511-acd1-8b53ac266fdd + + true + Nej + 1030 + + + + 1325b0cb-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 1525b0cb-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + be046e62-04b0-471f-a35a-30e92aa7c949 + + true + Ja + 1030 + + + + 1525b0cb-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 02abc3fa-f149-4269-8e38-1a2face166b1 + + template + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 59 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessage @@ -277781,30 +288232,30 @@ false true false - true + false - solutionid + templatename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - SolutionId + TemplateName - UniqueidentifierType + VirtualType 5.0.0.0 - false + true - - 8285b000-ed78-4a55-b290-e1a76555dc03 + + c060823c-45b1-4fe1-8604-d598db6abce1 - Uniqueidentifier + String false false false @@ -277813,21 +288264,28 @@ canmodifyadditionalsettings true - 33 + 61 1900-01-01T00:00:00 - 8285b001-ed78-4a55-b290-e1a76555dc03 + 37b9bbdd-828a-4e85-9bce-b81dfd382599 true For internal use only. 1033 + + 271846e1-8864-4e3b-acf3-521ac4dacbdd + + true + Kun til intern brug. + 1030 + - 8285b001-ed78-4a55-b290-e1a76555dc03 + 37b9bbdd-828a-4e85-9bce-b81dfd382599 true For internal use only. @@ -277837,22 +288295,29 @@ - 8285b002-ed78-4a55-b290-e1a76555dc03 + 45927594-1d7a-48e1-a3c6-9210f23e3038 true - Solution + Throttle Settings 1033 + + 20cb98d7-c147-456c-8a1c-2c688057da31 + + true + Slå indstillinger til/fra + 1030 + - 8285b002-ed78-4a55-b290-e1a76555dc03 + 45927594-1d7a-48e1-a3c6-9210f23e3038 true - Solution + Throttle Settings 1033 - sdkmessageprocessingstepimage + sdkmessage @@ -277893,34 +288358,45 @@ false canmodifysearchsettings - true + false false false - true - false + false + true false - false + true - supportingsolutionid + throttlesettings 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - SupportingSolutionId + ThrottleSettings - UniqueidentifierType + StringType 5.0.0.0 false - + 0 + Text + Auto + 512 + + + Text + + + false + 0 + 1024 - 2c0af7eb-16d1-4ea8-aa68-b7bd6d2b94b5 + 9a9ff23f-fb98-46f2-947c-cf24e8b83e2d BigInt @@ -277932,24 +288408,31 @@ canmodifyadditionalsettings true - 4 + 12 1900-01-01T00:00:00 - a402014c-07e0-4203-9ced-129b09e3b1d3 + 537c375b-d5eb-4c9f-9f7c-05f44b70b066 true - Number that identifies a specific revision of the step image. + Number that identifies a specific revision of the SDK message. 1033 + + bc2947e5-82e5-49cd-a02d-a54a07053f8c + + true + Nummer, der identificerer en bestemt version af SDK-meddelelsen. + 1030 + - a402014c-07e0-4203-9ced-129b09e3b1d3 + 537c375b-d5eb-4c9f-9f7c-05f44b70b066 true - Number that identifies a specific revision of the step image. + Number that identifies a specific revision of the SDK message. 1033 @@ -277957,7 +288440,7 @@ - sdkmessageprocessingstepimage + sdkmessage @@ -278026,124 +288509,497 @@ 9223372036854775807 -9223372036854775808 - - false - false - false - - false - canbeincustomentityassociation - false - - - false - canbeinmanytomany - false - - - false - canbeprimaryentityinrelationship - false - - - false - canberelatedentityinrelationship - false - - true - - false - canchangetrackingbeenabled - false - - - false - cancreateattributes - false - - - false - cancreatecharts - false - - - false - cancreateforms - false - - - false - cancreateviews - false - - - false - canenablesynctoexternalsearchindex - false - - - true - canmodifyadditionalsettings - false - - false - false - Local - 1900-01-01T00:00:00 - - - false - - - - a05011ad-2241-db11-898a-0007e9e17ebd - - true - Copy of an entity's attributes before or after the core system operation. - 1033 - - - - a05011ad-2241-db11-898a-0007e9e17ebd - - true - Copy of an entity's attributes before or after the core system operation. - 1033 - - - - - - a25011ad-2241-db11-898a-0007e9e17ebd - - true - Sdk Message Processing Step Images - 1033 - - - - a25011ad-2241-db11-898a-0007e9e17ebd + + 22fc5685-da17-4591-ad53-b9839443bbb0 - true - Sdk Message Processing Step Images + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 67 + 1900-01-01T00:00:00 + + + + + 7e73ef59-cff9-45ff-9a4a-986f2c3e07ed + + true + Whether or not the SDK message can be called from a workflow. + 1033 + + + 6889933c-b9c7-487e-998d-652bad1c5ed1 + + true + Angiver, om SDK-meddelelsen kan kaldes fra en arbejdsproces. + 1030 + + + + 7e73ef59-cff9-45ff-9a4a-986f2c3e07ed + + true + Whether or not the SDK message can be called from a workflow. + 1033 + + + + + + 6dd2b172-1048-432a-a19a-b0ae517ef226 + + true + WorkflowSdkStepEnabled + 1033 + + + c8d34200-18d4-4c48-9e48-9795176036ac + + true + WorkflowSdkStepEnabled + 1030 + + + + 6dd2b172-1048-432a-a19a-b0ae517ef226 + + true + WorkflowSdkStepEnabled + 1033 + + + sdkmessage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + false + true + true + false + true + + workflowsdkstepenabled + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + WorkflowSdkStepEnabled + + + BooleanType + + 7.1.0.0 + false + 0 + + false + + e8601d63-d8e6-478b-8c39-46a98239d108 + + + + + 94244c98-cf0e-4610-8236-9f9c2c1c9d01 + + true + Whether or not the SDK message can be called from a workflow. + 1033 + + + e9a13e1c-e136-4556-8c09-1ec97fdc0d9b + + true + Angiver, om SDK-meddelelsen kan kaldes fra en arbejdsproces. + 1030 + + + + 94244c98-cf0e-4610-8236-9f9c2c1c9d01 + + true + Whether or not the SDK message can be called from a workflow. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + sdkmessage_workflowsdkstepenabled + Boolean + 7.1.0.0 + + + + + + + + + + false + true + + + + 598c8636-0173-4aab-a23e-198d71860025 + + true + No + 1033 + + + 9d833b07-7b91-4537-99f0-7d369e1927c0 + + true + Nej + 1030 + + + + 598c8636-0173-4aab-a23e-198d71860025 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 3e8a3d0e-3f5b-4536-956b-d40a00bc58e7 + + true + Yes + 1033 + + + 398c3ff6-ab80-4d87-a6ea-885825bfee5a + + true + Ja + 1030 + + + + 3e8a3d0e-3f5b-4536-956b-d40a00bc58e7 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + f6735556-cf7b-410c-97c0-fd286e8159bf + + workflowsdkstepenabled + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 68 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + workflowsdkstepenabledname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + WorkflowSdkStepEnabledName + + + VirtualType + + 7.1.0.0 + true + + + + + false + false + false + + false + canbeincustomentityassociation + false + + + false + canbeinmanytomany + false + + + false + canbeprimaryentityinrelationship + true + + + false + canberelatedentityinrelationship + false + + true + + false + canchangetrackingbeenabled + false + + + false + cancreateattributes + false + + + false + cancreatecharts + false + + + false + cancreateforms + false + + + false + cancreateviews + false + + + false + canenablesynctoexternalsearchindex + false + + + true + canmodifyadditionalsettings + false + + false + false + Local + 1900-01-01T00:00:00 + + + false + + + + 3d0b19a7-2241-db11-898a-0007e9e17ebd + + true + Message that is supported by the SDK. + 1033 + + + b0320b3a-1a6a-4edb-9160-5f3068e4814b + + true + Meddelelse, der understøttes af SDK'en. + 1030 + + + + 3d0b19a7-2241-db11-898a-0007e9e17ebd + + true + Message that is supported by the SDK. + 1033 + + + + + + 3f0b19a7-2241-db11-898a-0007e9e17ebd + + true + Sdk Messages + 1033 + + + 924370a2-d831-4fb1-9a45-cd338a494258 + + true + Sdk-meddelelser + 1030 + + + + 3f0b19a7-2241-db11-898a-0007e9e17ebd + + true + Sdk Messages 1033 - a15011ad-2241-db11-898a-0007e9e17ebd + 3e0b19a7-2241-db11-898a-0007e9e17ebd true - Sdk Message Processing Step Image + Sdk Message 1033 + + a0f87a6d-ffa4-439d-9c33-c1b243e3e525 + + true + Sdk-meddelelse + 1030 + - a15011ad-2241-db11-898a-0007e9e17ebd + 3e0b19a7-2241-db11-898a-0007e9e17ebd true - Sdk Message Processing Step Image + Sdk Message 1033 @@ -278239,11 +289095,11 @@ canmodifymobileclientvisibility false - sdkmessageprocessingstepimage + sdkmessage - 6b4f264d-9608-4058-9749-16974ee3aacc + 50759f02-bec2-47c8-8016-c149fe878904 false @@ -278253,7 +289109,61 @@ true false - lk_sdkmessageprocessingstepimage_createdonbehalfby + organization_sdkmessage + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessage + organizationid + sdkmessage + organizationid + + 0 + + + 3e20fa4a-103b-40ed-9f70-818089c08dfa + + false + + false + iscustomizable + false + + true + false + lk_sdkmessage_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -278289,15 +289199,15 @@ false systemuserid systemuser - lk_sdkmessageprocessingstepimage_createdonbehalfby + lk_sdkmessage_createdonbehalfby createdonbehalfby - sdkmessageprocessingstepimage + sdkmessage createdonbehalfby 0 - 600269dc-c746-486f-a1db-7318e5c28fd7 + 270055b8-0508-4d07-b9b1-075a89d79c79 false @@ -278307,7 +289217,7 @@ true false - lk_sdkmessageprocessingstepimage_modifiedonbehalfby + createdby_sdkmessage None 5.0.0.0 OneToManyRelationship @@ -278343,15 +289253,15 @@ false systemuserid systemuser - lk_sdkmessageprocessingstepimage_modifiedonbehalfby - modifiedonbehalfby - sdkmessageprocessingstepimage - modifiedonbehalfby + createdby_sdkmessage + createdby + sdkmessage + createdby 0 - a9751a02-b0dc-4278-8580-d6e32385ae93 + 56bf74db-1c03-438b-ad7d-d903ed865955 false @@ -278360,8 +289270,8 @@ false true - true - sdkmessageprocessingstepid_sdkmessageprocessingstepimage + false + modifiedby_sdkmessage None 5.0.0.0 OneToManyRelationship @@ -278383,7 +289293,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -278395,17 +289305,17 @@ false false - sdkmessageprocessingstepid - sdkmessageprocessingstep - sdkmessageprocessingstepid_sdkmessageprocessingstepimage - sdkmessageprocessingstepid - sdkmessageprocessingstepimage - sdkmessageprocessingstepid + systemuserid + systemuser + modifiedby_sdkmessage + modifiedby + sdkmessage + modifiedby 0 - a123c794-d679-43a7-a1ce-28d42de980cf + 4a5dfcf9-b625-47f8-9aae-fe942d099e1e false @@ -278415,7 +289325,7 @@ true false - createdby_sdkmessageprocessingstepimage + lk_sdkmessage_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -278451,15 +289361,73 @@ false systemuserid systemuser - createdby_sdkmessageprocessingstepimage - createdby - sdkmessageprocessingstepimage - createdby + lk_sdkmessage_modifiedonbehalfby + modifiedonbehalfby + sdkmessage + modifiedonbehalfby 0 + + 2025-11-06T01:14:21.2029952 + 4606 + - a82dc8c5-a9d4-476f-b1fa-9954b4fa6edf + 8ffac306-b8ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + sdkmessage_serviceplanmapping + Append + 2.4.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageid + sdkmessage + sdkmessage_serviceplanmapping + sdkmessage + serviceplanmapping + SdkMessage + + 1 + + + 14e3df29-c1f5-4e6e-a9b7-dea929536700 false @@ -278469,7 +289437,7 @@ true false - organization_sdkmessageprocessingstepimage + userentityinstancedata_sdkmessage None 5.0.0.0 OneToManyRelationship @@ -278491,7 +289459,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -278503,17 +289471,17 @@ false false - organizationid - organization - organization_sdkmessageprocessingstepimage - organizationid - sdkmessageprocessingstepimage - organizationid + sdkmessageid + sdkmessage + userentityinstancedata_sdkmessage + objectid + userentityinstancedata + objectid_sdkmessage 0 - 6d255e0a-b3fd-4557-a3c6-1acf25ca6727 + bd434c32-e6ba-f011-bbd3-7c1e52365f30 false @@ -278522,8 +289490,62 @@ false true - false - modifiedby_sdkmessageprocessingstepimage + true + sdkmessage_aiskillconfig_sdkmessageid + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageid + sdkmessage + sdkmessage_aiskillconfig_sdkmessageid + sdkmessageid + aiskillconfig + sdkmessageid + + 1 + + + bdad9d80-5ad6-4d3c-891f-230121a0c4fb + + false + + false + iscustomizable + false + + true + true + sdkmessageid_sdkmessageprocessingstep None 5.0.0.0 OneToManyRelationship @@ -278545,7 +289567,7 @@ NoCascade NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -278557,21 +289579,17 @@ false false - systemuserid - systemuser - modifiedby_sdkmessageprocessingstepimage - modifiedby - sdkmessageprocessingstepimage - modifiedby + sdkmessageid + sdkmessage + sdkmessageid_sdkmessageprocessingstep + sdkmessageid + sdkmessageprocessingstep + sdkmessageid 0 - - 1900-01-01T00:00:00 - 4615 - - ec9190aa-7da6-412b-990b-f3f22be49708 + e846c782-2e65-45e7-9449-38e95217fcbd false @@ -278581,7 +289599,7 @@ true false - userentityinstancedata_sdkmessageprocessingstepimage + message_sdkmessagepair None 5.0.0.0 OneToManyRelationship @@ -278615,12 +289633,174 @@ false false - sdkmessageprocessingstepimageid - sdkmessageprocessingstepimage - userentityinstancedata_sdkmessageprocessingstepimage - objectid - userentityinstancedata - objectid_sdkmessageprocessingstepimage + sdkmessageid + sdkmessage + message_sdkmessagepair + sdkmessageid + sdkmessagepair + sdkmessageid + + 0 + + + d10ec3ba-c4c1-47f1-a36c-c3ee16a120f9 + + false + + false + iscustomizable + false + + true + true + sdkmessageid_sdkmessagefilter + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageid + sdkmessage + sdkmessageid_sdkmessagefilter + sdkmessageid + sdkmessagefilter + sdkmessageid + + 0 + + + 752748bc-aeba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + sdkmessage_customapi + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageid + sdkmessage + CustomAPIId + sdkmessageid + customapi + SdkMessageId + + 1 + + + 1441a4ec-605a-413f-87f7-53faa1d33610 + + false + + false + iscustomizable + false + + true + false + sdkmessageid_workflow_dependency + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageid + sdkmessage + sdkmessageid_workflow_dependency + sdkmessageid + workflowdependency + sdkmessageid 0 @@ -278629,9 +289809,9 @@ 8 OrganizationOwned - sdkmessageprocessingstepimageid + sdkmessageid - sdkmessageprocessingstepimageid + sdkmessageid name @@ -278643,8 +289823,8 @@ false false false - prvCreateSdkMessageProcessingStepImage - 65171d1b-1581-4fbb-96a3-95d14b5723cb + prvCreateSdkMessage + 303def1c-947c-4af3-a63b-406a7abc72de Create @@ -278655,8 +289835,8 @@ false false false - prvReadSdkMessageProcessingStepImage - 122e085f-8c52-47e8-8415-875dee1c961e + prvReadSdkMessage + 94c3ac2c-eb23-41cb-a903-4e2e49e910b4 Read @@ -278667,8 +289847,8 @@ false false false - prvWriteSdkMessageProcessingStepImage - 11954a66-b7ad-4dd9-b845-225d1b4c9ffe + prvWriteSdkMessage + 6ebc7c4c-fde7-424c-842e-11651498a9b3 Write @@ -278679,14 +289859,38 @@ false false false - prvDeleteSdkMessageProcessingStepImage - 5ebf516c-e769-47df-ad46-458b4b23603f + prvDeleteSdkMessage + 8f9b0745-2842-45b6-a306-eab47f138c7a Delete + + false + false + false + true + false + false + false + prvAppendSdkMessage + 76ccf87c-1b01-49a0-a5e6-8f30bd6239bd + Append + + + false + false + false + true + false + false + false + prvAppendToSdkMessage + c0133d59-1cd8-4037-af7f-b68db5a025a5 + AppendTo + - FilteredSdkMessageProcessingStepImages - SdkMessageProcessingStepImage + FilteredSdkMessage + SdkMessage false @@ -278701,14 +289905,14 @@ false - SdkMessageProcessingStepImages + SdkMessages true - sdkmessageprocessingstepimages + sdkmessages 0 - sdkmessageprocessingstepimages + sdkmessages false true @@ -278723,65 +289927,79 @@ - solution + sdkmessagefilter - 3ffa7e2c-9d9c-4923-bf59-645d04c10063 + 0e9a355e-480a-42bf-80a7-a0432106506b 0 - - d593b18f-d822-4fa0-b0c2-45bdc4bcc598 + + dce686d1-e5a8-4280-817d-4453d8f7fd74 - Lookup + Integer false false false false canmodifyadditionalsettings - false + true - 36 + 14 1900-01-01T00:00:00 - 888f4f7b-688b-4945-8c4b-4b54aa75bd5b + 4bdc01b9-2241-db11-898a-0007e9e17ebd true - A link to an optional configuration page for this solution. + Identifies where a method will be exposed. 0 - Server, 1 - Client, 2 - both. 1033 + + b428ad56-8249-43a4-aa64-291883553078 + + true + Angiver, hvor en metode vises. 0 - Server, 1 - Klient, 2 - begge. + 1030 + - 888f4f7b-688b-4945-8c4b-4b54aa75bd5b + 4bdc01b9-2241-db11-898a-0007e9e17ebd true - A link to an optional configuration page for this solution. + Identifies where a method will be exposed. 0 - Server, 1 - Client, 2 - both. 1033 - 65187bde-32a6-4c53-8fa0-48eb1be1302e + 617031b8-1834-11df-b172-00188b01dce6 true - Configuration Page + Availability 1033 + + 51dbf063-7ede-46df-9363-efa494294d59 + + true + Tilgængelighed + 1030 + - 65187bde-32a6-4c53-8fa0-48eb1be1302e + 617031b8-1834-11df-b172-00188b01dce6 true - Configuration Page + Availability 1033 - solution + sdkmessagefilter @@ -278793,7 +290011,7 @@ false iscustomizable - true + false false false @@ -278811,7 +290029,7 @@ false false - false + true false false @@ -278822,61 +290040,104 @@ false canmodifysearchsettings - false + true true - true - false + false + true true true true - configurationpageid + availability 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ConfigurationPageId + Availability - LookupType + IntegerType 5.0.0.0 false - + 0 None - - webresource - + 2147483647 + -2147483648 + + 0 - - 4a165337-20a0-467f-b0e3-50cd432abc79 + + ea301b79-1050-4756-a58b-3d353ad3016b - configurationpageid - String + + Picklist false false false false canmodifyadditionalsettings - false + true - 37 + 81 1900-01-01T00:00:00 - - + + + a798d7d3-6505-4434-80af-bf012aa8fa16 + + true + For internal use only. + 1033 + + + d226f572-7c84-48f6-939f-9d9d46682391 + + true + Kun til intern brug. + 1030 + + + + a798d7d3-6505-4434-80af-bf012aa8fa16 + + true + For internal use only. + 1033 + - - + + + 38e8fd2c-4086-4ee8-a047-bb841d71bf70 + + true + Component State + 1033 + + + f050c460-6877-44a0-95ce-acd14942bc83 + + true + Komponenttilstand + 1030 + + + + 38e8fd2c-4086-4ee8-a047-bb841d71bf70 + + true + Component State + 1033 + - solution + sdkmessagefilter @@ -278924,38 +290185,262 @@ false true false - false + true - configurationpageidname + componentstate 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ConfigurationPageIdName + ComponentState - StringType + PicklistType - 5.0.0.0 - true + 9.0.0.0 + false 0 - Text - Auto - 256 - - - Text - + -1 + + faece09f-cefc-11de-8150-00155da18b00 + + + + + faece0a1-cefc-11de-8150-00155da18b00 + + true + The state of this component. + 1033 + + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + + + + faece0a1-cefc-11de-8150-00155da18b00 + + true + The state of this component. + 1033 + + + + + + faece0a0-cefc-11de-8150-00155da18b00 + + true + Component State + 1033 + + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + + + + faece0a0-cefc-11de-8150-00155da18b00 + + true + Component State + 1033 + + + + false + + false + iscustomizable + false + + true + true + componentstate + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + faece0a3-cefc-11de-8150-00155da18b00 + + true + Published + 1033 + + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + + + + faece0a3-cefc-11de-8150-00155da18b00 + + true + Published + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + faece0a5-cefc-11de-8150-00155da18b00 + + true + Unpublished + 1033 + + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + + + + faece0a5-cefc-11de-8150-00155da18b00 + + true + Unpublished + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + faece0a7-cefc-11de-8150-00155da18b00 + + true + Deleted + 1033 + + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + + + + faece0a7-cefc-11de-8150-00155da18b00 + + true + Deleted + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 1f83e0bb-cefd-11de-8150-00155da18b00 + + true + Deleted Unpublished + 1033 + + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + + + + 1f83e0bb-cefd-11de-8150-00155da18b00 + + true + Deleted Unpublished + 1033 + + + + 3 + + + + + + - false 0 - 512 + + - 217a63c2-71d9-48f5-a681-0c9c0b325c61 + 5f645454-1812-47eb-90c4-e89b5830a217 Lookup @@ -278965,48 +290450,62 @@ false canmodifyadditionalsettings - false + true - 10 + 1 1900-01-01T00:00:00 - 84749473-dc30-4da7-8434-3ad25c53b856 + 40dc01b9-2241-db11-898a-0007e9e17ebd true - Unique identifier of the user who created the solution. + Unique identifier of the user who created the SDK message filter. 1033 + + 9ad0980a-485e-463a-8508-9d0490e984d2 + + true + Entydigt id for den bruger, der oprettede SDK-meddelelsesfilteret. + 1030 + - 84749473-dc30-4da7-8434-3ad25c53b856 + 40dc01b9-2241-db11-898a-0007e9e17ebd true - Unique identifier of the user who created the solution. + Unique identifier of the user who created the SDK message filter. 1033 - 04c1006a-ae4b-4c03-a9bb-6a5525a8df38 + 617031b9-1834-11df-b172-00188b01dce6 true Created By 1033 + + 49f18fc5-15b1-4735-afc3-aa06e4837b51 + + true + Oprettet af + 1030 + - 04c1006a-ae4b-4c03-a9bb-6a5525a8df38 + 617031b9-1834-11df-b172-00188b01dce6 true Created By 1033 - solution + sdkmessagefilter @@ -279050,7 +290549,7 @@ true false - true + false true true false @@ -279078,7 +290577,7 @@ - ef3a1786-7e9c-11dd-94cd-00188b01dce6 + 2e472c00-150a-497f-a894-f5084e50cd20 createdby String @@ -279088,9 +290587,9 @@ false canmodifyadditionalsettings - false + true - 20 + 50 1900-01-01T00:00:00 @@ -279101,7 +290600,7 @@ - solution + sdkmessagefilter @@ -279152,7 +290651,7 @@ false createdbyname - 1900-01-01T00:00:00 + 2025-11-06T00:19:23.0569984 false canmodifyrequirementlevelsettings @@ -279180,7 +290679,7 @@ 320 - 3c5a7197-813b-4152-8bbc-69cd39caf8ca + e513f1ab-6800-4c79-976b-1a531ea47ff0 DateTime @@ -279190,48 +290689,62 @@ false canmodifyadditionalsettings - false + true - 6 + 13 1900-01-01T00:00:00 - ca4aca21-a6f6-4177-8eae-cb138751315e + 4cdc01b9-2241-db11-898a-0007e9e17ebd true - Date and time when the solution was created. + Date and time when the SDK message filter was created. 1033 + + 20accdfc-ae44-4d7d-9da3-5289b9bc05cd + + true + Dato og klokkeslæt for oprettelse af SDK-meddelelsesfilteret. + 1030 + - ca4aca21-a6f6-4177-8eae-cb138751315e + 4cdc01b9-2241-db11-898a-0007e9e17ebd true - Date and time when the solution was created. + Date and time when the SDK message filter was created. 1033 - 08aff569-f9cd-42b2-8c9d-bd41d1d4025b + 617031ba-1834-11df-b172-00188b01dce6 true Created On 1033 + + d85da29a-f2f8-48e1-8e2b-ff7472442994 + + true + Oprettet + 1030 + - 08aff569-f9cd-42b2-8c9d-bd41d1d4025b + 617031ba-1834-11df-b172-00188b01dce6 true Created On 1033 - solution + sdkmessagefilter @@ -279275,7 +290788,7 @@ true false - true + false true true false @@ -279311,7 +290824,7 @@ - b59ff240-67be-4e5f-ac91-b7fbcd4b48e3 + 7c624a8a-481e-4b1f-87ad-5c1df0db15be Lookup @@ -279321,48 +290834,62 @@ false canmodifyadditionalsettings - false + true - 28 + 18 1900-01-01T00:00:00 - f2d9773f-0a72-4625-aa6a-578c23e849c2 + 68483545-a5e3-44c3-94f5-006562f96a72 true - Unique identifier of the delegate user who created the solution. + Unique identifier of the delegate user who created the sdkmessagefilter. 1033 + + 6e67a67d-21a1-46d0-86d6-34edf39c79d2 + + true + Entydigt id for den stedfortræderbruger, der oprettede SDK-meddelelsesfilteret. + 1030 + - f2d9773f-0a72-4625-aa6a-578c23e849c2 + 68483545-a5e3-44c3-94f5-006562f96a72 true - Unique identifier of the delegate user who created the solution. + Unique identifier of the delegate user who created the sdkmessagefilter. 1033 - 953eb3a8-6b93-405a-b805-0914f0f9f5a5 + b951d505-e03e-4f45-8f25-4a0d72848a61 true Created By (Delegate) 1033 + + 0ac1c357-e25e-410a-bb74-3a5f5ecb0680 + + true + Oprettet af (stedfortræder) + 1030 + - 953eb3a8-6b93-405a-b805-0914f0f9f5a5 + b951d505-e03e-4f45-8f25-4a0d72848a61 true Created By (Delegate) 1033 - solution + sdkmessagefilter @@ -279374,7 +290901,7 @@ false iscustomizable - true + false false false @@ -279406,7 +290933,7 @@ true false - true + false true true false @@ -279434,7 +290961,7 @@ - 40a6b501-85bf-4ed0-ad7d-c6b48463a3d2 + cef37593-501f-4f95-9b36-62b629c09704 createdonbehalfby String @@ -279444,9 +290971,9 @@ false canmodifyadditionalsettings - false + true - 30 + 27 1900-01-01T00:00:00 @@ -279457,7 +290984,7 @@ - solution + sdkmessagefilter @@ -279508,7 +291035,7 @@ false createdonbehalfbyname - 1900-01-01T00:00:00 + 2025-11-06T00:19:23.9000064 false canmodifyrequirementlevelsettings @@ -279536,7 +291063,7 @@ 320 - 5492e382-dbad-4619-8d53-40bff781de33 + d838dcf6-0ef1-4810-a911-226d816b3daa createdonbehalfby String @@ -279546,9 +291073,9 @@ false canmodifyadditionalsettings - false + true - 31 + 28 1900-01-01T00:00:00 @@ -279559,7 +291086,7 @@ - solution + sdkmessagefilter @@ -279610,7 +291137,7 @@ false createdonbehalfbyyominame - 1900-01-01T00:00:00 + 2025-11-06T00:19:27.5430016 false canmodifyrequirementlevelsettings @@ -279637,8 +291164,125 @@ 0 320 + + 14c390a5-99e1-4c9b-b8ab-38671a69ae82 + + + Integer + false + false + false + + false + canmodifyadditionalsettings + true + + 7 + 1900-01-01T00:00:00 + + + + + 45dc01b9-2241-db11-898a-0007e9e17ebd + + true + Customization level of the SDK message filter. + 1033 + + + 33feec85-1457-463b-8ac2-86948bd39bac + + true + Tilpasningsniveau for SDK-meddelelsesfilteret. + 1030 + + + + 45dc01b9-2241-db11-898a-0007e9e17ebd + + true + Customization level of the SDK message filter. + 1033 + + + + + + + sdkmessagefilter + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + customizationlevel + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + CustomizationLevel + + + IntegerType + + 5.0.0.0 + false + 0 + + None + 255 + -255 + + 0 + - cd786c2c-2706-4629-a824-2e3611111e7a + f4096d5f-0fcb-4c96-9a74-764f2e3d2902 String @@ -279650,46 +291294,60 @@ canmodifyadditionalsettings false - 12 + 84 1900-01-01T00:00:00 - 6577d034-a195-4544-9c8c-b4b81a62b9d5 + 592cb803-026c-45fa-a0af-e2ea3be60cc0 true - Description of the solution. + Version in which the component is introduced. 1033 + + 2f1d3a40-c182-425f-ad32-77218e1fd40f + + true + Version, som komponenten introduceres i. + 1030 + - 6577d034-a195-4544-9c8c-b4b81a62b9d5 + 592cb803-026c-45fa-a0af-e2ea3be60cc0 true - Description of the solution. + Version in which the component is introduced. 1033 - 94372fa1-0b98-40b6-9e45-285d5bf3cdbd + 2698a74d-ea5a-47fc-9660-d8dc7243541d true - Description + Introduced Version 1033 + + d43c38b8-74e4-4c4f-ac17-4a42c20ea3ae + + true + Introduceret version + 1030 + - 94372fa1-0b98-40b6-9e45-285d5bf3cdbd + 2698a74d-ea5a-47fc-9660-d8dc7243541d true - Description + Introduced Version 1033 - solution + sdkmessagefilter @@ -279701,7 +291359,7 @@ false iscustomizable - true + false false false @@ -279719,7 +291377,7 @@ false false - true + false false false @@ -279730,45 +291388,45 @@ false canmodifysearchsettings - true + false true - true - true + false + false true - true + false true - description + introducedversion 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Description + IntroducedVersion StringType - 5.0.0.0 + 9.0.0.0 false 0 - TextArea + VersionNumber Auto - 2000 + 48 - TextArea + VersionNumber - true + false 0 - 4000 + 84 - 424766ed-f995-4d13-aabf-1bf986ad4022 + 24d92601-c950-409b-a800-1d97743b59d0 Boolean @@ -279778,48 +291436,62 @@ false canmodifyadditionalsettings - false + true - 10003 - 2025-11-06T01:58:33.0969984 + 11 + 1900-01-01T00:00:00 - 63cd3152-e389-4a6b-b838-e47db1b3b9a4 + a3aa0dcc-f35e-4187-94ad-c8663801dfdb true - Indicates if solution is enabled for source control integration + Indicates whether a custom SDK message processing step is allowed. 1033 + + 71233267-7033-40a6-8eb9-06783efafe37 + + true + Angiver, om et brugerdefineret behandlingstrin for SDK-meddelelsen er tilladt. + 1030 + - 63cd3152-e389-4a6b-b838-e47db1b3b9a4 + a3aa0dcc-f35e-4187-94ad-c8663801dfdb true - Indicates if solution is enabled for source control integration + Indicates whether a custom SDK message processing step is allowed. 1033 - c88e77d0-7c64-4c7d-8ecd-97d741c90439 + 0b140a8a-07d1-4e7e-ac5c-31086078150e true - Enabled for Source Control Integration + Custom Processing Step Allowed 1033 + + 6b2a2740-59af-4e66-b797-a8b3a467f4c1 + + true + Brugerdefinerede behandlingstrin er tilladt + 1030 + - c88e77d0-7c64-4c7d-8ecd-97d741c90439 + 0b140a8a-07d1-4e7e-ac5c-31086078150e true - Enabled for Source Control Integration + Custom Processing Step Allowed 1033 - solution + sdkmessagefilter @@ -279836,7 +291508,7 @@ false false - false + true canmodifyglobalfiltersettings false @@ -279853,7 +291525,7 @@ false false - false + true canmodifyissortablesettings false @@ -279869,64 +291541,57 @@ true true - enabledforsourcecontrolintegration - 2025-11-06T01:58:33.0969984 + iscustomprocessingstepallowed + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - EnabledForSourceControlIntegration + IsCustomProcessingStepAllowed BooleanType - 9.1.0.0 + 5.0.0.0 false 0 false - 099f5c18-b4ba-f011-bbd3-7c1e52365f30 + dec442f8-3e53-4443-975d-20f519697fa1 - 0b9f5c18-b4ba-f011-bbd3-7c1e52365f30 + 9ceeab5b-1e8d-4378-9947-6bfde390bf77 true - + Indicates whether a custom SDK message processing step is allowed. 1033 - - - 0b9f5c18-b4ba-f011-bbd3-7c1e52365f30 - - true - - 1033 - - - - - 0a9f5c18-b4ba-f011-bbd3-7c1e52365f30 + abf0b8fd-6b5c-4343-8233-7c222047efd7 true - Enabled for Source Control Integration - 1033 + Angiver, om et brugerdefineret behandlingstrin for SDK-meddelelsen er tilladt. + 1030 - 0a9f5c18-b4ba-f011-bbd3-7c1e52365f30 + 9ceeab5b-1e8d-4378-9947-6bfde390bf77 true - Enabled for Source Control Integration + Indicates whether a custom SDK message processing step is allowed. 1033 + + + + - - true + + false false iscustomizable @@ -279934,9 +291599,9 @@ false true - solution_enabledforsourcecontrolintegration + sdkmessagefilter_iscustomprocessingstepallowed Boolean - 9.1.0.0 + 5.0.0.0 @@ -279945,21 +291610,28 @@ - + false true - 781659a7-d7a9-420e-af85-b28157eaf12d + 4e2bbe4c-3d74-4931-80f1-2898747f5ae8 true No 1033 + + 9a4db19b-39c0-450f-b7f4-b2eab41a5817 + + true + Nej + 1030 + - 781659a7-d7a9-420e-af85-b28157eaf12d + 4e2bbe4c-3d74-4931-80f1-2898747f5ae8 true No @@ -279978,21 +291650,28 @@ - + false true - c3da0ff3-8098-442e-ac3a-b52dd270e2be + 5a296ca4-bf0e-4012-b79c-f7ad7433e401 true Yes 1033 + + 8ae09883-ecc6-4d12-a5e9-334ce337d459 + + true + Ja + 1030 + - c3da0ff3-8098-442e-ac3a-b52dd270e2be + 5a296ca4-bf0e-4012-b79c-f7ad7433e401 true Yes @@ -280004,24 +291683,24 @@ - + 0 - 64d99443-dc64-4341-8520-ad9d7f9b3d67 + 49171e5f-5e2c-4502-8c5c-966cacd873c2 - enabledforsourcecontrolintegration + iscustomprocessingstepallowed Virtual false false false - true + false canmodifyadditionalsettings true - 10004 - 2025-11-06T01:58:33.1270016 + 55 + 1900-01-01T00:00:00 @@ -280031,19 +291710,19 @@ - solution + sdkmessagefilter - true + false canmodifyauditsettings false false - true + false iscustomizable - true + false false false @@ -280052,13 +291731,13 @@ canmodifyglobalfiltersettings false - false + true false false - true + false isrenameable - true + false false false @@ -280070,7 +291749,7 @@ false - true + false canmodifysearchsettings false @@ -280081,82 +291760,96 @@ false false - enabledforsourcecontrolintegrationname - 2025-11-06T01:58:33.1270016 + iscustomprocessingstepallowedname + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - enabledforsourcecontrolintegrationName + IsCustomProcessingStepAllowedName VirtualType - 9.1.0.0 + 5.0.0.0 true - + - - f8d0a3a1-2dca-41b0-b80a-d28d17cfb76c + + 7059b26e-aa6f-450d-9993-4b82c0e017e6 - Virtual + Boolean false false false false canmodifyadditionalsettings - false + true - 45 - 2025-11-06T00:19:21.2600064 + 83 + 1900-01-01T00:00:00 - 94cb42e2-498c-46a6-8d5a-321b5e3595c1 + f551870e-dbb4-4720-8a04-f0373db96563 true - File Id for the blob url used for file storage. + Information that specifies whether this component is managed. 1033 + + e3a142d4-1ed6-4b04-a71d-f482936fa2a4 + + true + Oplysning om, hvorvidt komponenten er administreret. + 1030 + - 94cb42e2-498c-46a6-8d5a-321b5e3595c1 + f551870e-dbb4-4720-8a04-f0373db96563 true - File Id for the blob url used for file storage. + Information that specifies whether this component is managed. 1033 - f86eca1e-4568-4a39-9e51-6f514a1edf4d + 651f7f75-caaa-48ef-9c8e-3cfd1350c748 true - File Id + State 1033 + + 71e88bc3-9b93-4d8d-8ca8-60560b289618 + + true + Tilstand + 1030 + - f86eca1e-4568-4a39-9e51-6f514a1edf4d + 651f7f75-caaa-48ef-9c8e-3cfd1350c748 true - File Id + State 1033 - solution + sdkmessagefilter - false + true canmodifyauditsettings - false + true false @@ -280195,94 +291888,214 @@ false false - false - false + true + true false - false + true - fileid - 2025-11-06T00:19:21.2600064 + ismanaged + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - FileId + IsManaged - FileType + BooleanType - 9.1.0.0 + 9.0.0.0 false - + 0 - 128000 + false + + 9d04e035-5408-4c1d-a5aa-20445a02f691 + + + + + b41954a2-f3a5-47e9-ae13-ceb49de4465b + + true + Information about whether the current component is managed. + 1033 + + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + + + + b41954a2-f3a5-47e9-ae13-ceb49de4465b + + true + Information about whether the current component is managed. + 1033 + + + + + + 45a188b1-91a8-4019-b582-cebda8081064 + + true + Is Component Managed + 1033 + + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + + + + 45a188b1-91a8-4019-b582-cebda8081064 + + true + Is Component Managed + 1033 + + + + false + + false + iscustomizable + false + + true + true + ismanaged + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 443c7078-b7cb-47e7-8547-08dfa82950d0 + + true + Unmanaged + 1033 + + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + + + + 443c7078-b7cb-47e7-8547-08dfa82950d0 + + true + Unmanaged + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + ec886b5b-7e97-4c62-b30c-bf295639d540 + + true + Managed + 1033 + + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + + + + ec886b5b-7e97-4c62-b30c-bf295639d540 + + true + Managed + 1033 + + + + 1 + + + + + 0 - - bd8fd21d-7ae0-4cd8-9fe5-755c3aaf89fc + + b67f7374-807e-4d50-b359-1be210b81164 - - String + ismanaged + Virtual false false false false canmodifyadditionalsettings - false + true - 15 + 85 1900-01-01T00:00:00 - - - 254ba0a4-fb2a-4d6d-b6fc-c47396ac0309 - - true - User display name for the solution. - 1033 - - - - 254ba0a4-fb2a-4d6d-b6fc-c47396ac0309 - - true - User display name for the solution. - 1033 - + + - - - f60b2767-3ed0-484f-b0e0-899f8a386718 - - true - Display Name - 1033 - - - - f60b2767-3ed0-484f-b0e0-899f8a386718 - - true - Display Name - 1033 - + + - solution + sdkmessagefilter - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -280293,15 +292106,15 @@ true false - true + false false isrenameable false false - true - true + false + false false true @@ -280311,227 +292124,78 @@ false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true - true + false + false - friendlyname + ismanagedname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - FriendlyName + IsManagedName - StringType + VirtualType - 5.0.0.0 - false - 0 + 9.0.0.0 + true + - Text - Auto - 256 - - - Text - - - true - 0 - 512 - - 2fb03864-8d1f-4f11-88b4-f06d06f793f6 + + a0348287-6853-4c4f-9ea0-7b1fe0706882 - DateTime + Boolean false false false false canmodifyadditionalsettings - false + true - 5 + 20 1900-01-01T00:00:00 - ce6ee082-91e2-4613-98f5-01804da6e8ed - - true - Date and time when the solution was installed/upgraded. - 1033 - - - - ce6ee082-91e2-4613-98f5-01804da6e8ed - - true - Date and time when the solution was installed/upgraded. - 1033 - - - - - - 115ffc79-76ea-49a7-b2c0-8ba2b374baad + c884058b-3f0b-4b0e-bd59-8c578afce170 true - Installed On + Indicates whether the filter should be visible. 1033 - - - 115ffc79-76ea-49a7-b2c0-8ba2b374baad - - true - Installed On - 1033 - - - solution - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - false - true - true - false - true - - installedon - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - InstalledOn - - - DateTimeType - - 5.0.0.0 - false - 0 - - DateOnly - Auto - - 0 - - false - canmodifybehavior - false - - - UserLocal - - - - ae891101-d736-48ca-9481-61b98437a1ee - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 46 - 2025-11-06T00:19:20.8230016 - - - - 9a004176-c643-463f-b1e0-744da4fbc2e9 + 5ecbb991-8a8c-45b4-8ad1-c0ecf3fbb5c2 true - Information about whether the solution is api managed. - 1033 + Angiver, om filteret skal være synligt. + 1030 - 9a004176-c643-463f-b1e0-744da4fbc2e9 + c884058b-3f0b-4b0e-bd59-8c578afce170 true - Information about whether the solution is api managed. + Indicates whether the filter should be visible. 1033 - - - e810591b-df44-4c88-8164-0f9efbc2af1f - - true - Is Api Managed Solution - 1033 - - - - e810591b-df44-4c88-8164-0f9efbc2af1f - - true - Is Api Managed Solution - 1033 - + + - solution + sdkmessagefilter @@ -280543,7 +292207,7 @@ false iscustomizable - true + false false false @@ -280581,41 +292245,48 @@ false true - isapimanaged - 2025-11-06T00:19:20.8230016 + isvisible + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - IsApiManaged + IsVisible BooleanType - 9.1.0.0 + 5.0.0.0 false 0 false - 876a3512-0a92-2f72-a12c-43fcd000085e + 8f0adef4-10b3-4e5b-9d50-e01b61581482 - f100db8f-efe2-4e74-80fe-9b27d3908704 + cbb5a919-555d-4e57-a124-f6347af4c631 true - Information about whether the solution is api managed. + Indicates whether filter is visible. 1033 + + 876f2489-0c49-40df-b1ac-2f61f330c7fe + + true + Angiver, om filteret er synligt. + 1030 + - f100db8f-efe2-4e74-80fe-9b27d3908704 + cbb5a919-555d-4e57-a124-f6347af4c631 true - Information about whether the solution is api managed. + Indicates whether filter is visible. 1033 @@ -280628,13 +292299,13 @@ false iscustomizable - true + false false true - solution_isapimanaged + sdkmessagefilter_isvisible Boolean - 9.1.0.0 + 5.0.0.0 @@ -280649,255 +292320,22 @@ - 863e3940-c890-44be-b584-3858d31de77a + c703bfe8-a8a6-497d-9ee8-a54cd1f30992 true No 1033 - - - 863e3940-c890-44be-b584-3858d31de77a - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 0f4792f4-a296-43bb-aafe-c93bfe465b8b - - true - Yes - 1033 - - - - 0f4792f4-a296-43bb-aafe-c93bfe465b8b - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - 890ad142-93a8-4672-bc86-e71c2c1f303e - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 42 - 1900-01-01T00:00:00 - - - - - 55619b3b-364c-485f-89aa-bbd928e269bf - - true - Indicates whether the solution is internal or not. - 1033 - - - - 55619b3b-364c-485f-89aa-bbd928e269bf - - true - Indicates whether the solution is internal or not. - 1033 - - - - - - 0732de7f-22df-4491-911e-5cf671ec1132 - - true - Is internal solution - 1033 - - - - 0732de7f-22df-4491-911e-5cf671ec1132 - - true - Is internal solution - 1033 - - - solution - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - false - false - false - - isinternal - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - IsInternal - - - BooleanType - - 8.1.0.0 - false - 0 - - false - - 1acbd753-1a75-4147-8aee-b0421652220c - - - - - e6a74331-6dfd-4980-a696-4f028f143352 - - true - Indicates whether the solution is internal. - 1033 - - - - e6a74331-6dfd-4980-a696-4f028f143352 - - true - Indicates whether the solution is internal. - 1033 - - - - - - a21c9337-08de-49f7-8935-58f80f26351b - - true - Is internal solution - 1033 - - - - a21c9337-08de-49f7-8935-58f80f26351b - - true - Is internal solution - 1033 - - - - false - - false - iscustomizable - false - - false - true - solution_isinternal - Boolean - 8.1.0.0 - - - - - - - - - - false - true - - - 75c97dc0-3b0e-4972-8e86-f1d548bfaced + f462fff3-191a-44bb-96f9-76d9a9f87b16 true - No - 1033 + Nej + 1030 - 75c97dc0-3b0e-4972-8e86-f1d548bfaced + c703bfe8-a8a6-497d-9ee8-a54cd1f30992 true No @@ -280922,258 +292360,25 @@ - 84625cd3-25ee-471c-b5a4-990f665ce31e + 5b3af812-c635-4aa0-ab2e-a184c09d6644 true Yes 1033 - - - 84625cd3-25ee-471c-b5a4-990f665ce31e - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - 4b51b5d3-e656-4f84-a159-2c235e9d2719 - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 13 - 1900-01-01T00:00:00 - - - - - fceb656e-b673-437e-93fa-7dc16cf3fea6 - - true - Indicates whether the solution is managed or unmanaged. - 1033 - - - - fceb656e-b673-437e-93fa-7dc16cf3fea6 - - true - Indicates whether the solution is managed or unmanaged. - 1033 - - - - - - 6d2c716f-f092-4172-8df0-4109331375a1 - - true - Package Type - 1033 - - - - 6d2c716f-f092-4172-8df0-4109331375a1 - - true - Package Type - 1033 - - - solution - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - ismanaged - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - IsManaged - - - BooleanType - - 5.0.0.0 - false - 0 - - false - - 81d6b3e8-95b5-479c-919d-d597d4e9f38e - - - - - 716eedfc-1a75-4c94-bfac-fe285caa652d - - true - Indicates whether the solution is managed or unmanaged. - 1033 - - - - 716eedfc-1a75-4c94-bfac-fe285caa652d - - true - Indicates whether the solution is managed or unmanaged. - 1033 - - - - - - b50e42bc-9c13-4645-a57f-a22c3695f176 - - true - Managed - 1033 - - - - b50e42bc-9c13-4645-a57f-a22c3695f176 - - true - Managed - 1033 - - - - false - - false - iscustomizable - true - - false - true - solution_ismanaged - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 763dccb0-7e1e-45ed-929a-f9130a205a14 - - true - Unmanaged - 1033 - - - - 763dccb0-7e1e-45ed-929a-f9130a205a14 - - true - Unmanaged - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - cb010841-f8fe-4ff8-a4b6-b9e59d1284ee + d1f070c4-17f4-46b6-a74d-7e042c74776a true - Managed - 1033 + Ja + 1030 - cb010841-f8fe-4ff8-a4b6-b9e59d1284ee + 5b3af812-c635-4aa0-ab2e-a184c09d6644 true - Managed + Yes 1033 @@ -281185,390 +292390,73 @@ 0 - - c330539d-3711-4597-8875-eec770e47ac3 - - ismanaged - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 19 - 1900-01-01T00:00:00 - - - - - - - - - - solution - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - ismanagedname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - IsManagedName - - - VirtualType - - 5.0.0.0 - true - - - - - b5180252-c67f-4c53-a95a-7a7a8d3b4643 + + e8bf71dd-0890-47ca-88b6-56334f4ace06 - Boolean + Lookup false false false false canmodifyadditionalsettings - false + true - 11 + 6 1900-01-01T00:00:00 - 97c45589-d532-4599-9369-22813b89074c + 43dc01b9-2241-db11-898a-0007e9e17ebd true - Indicates whether the solution is visible outside of the platform. + Unique identifier of the user who last modified the SDK message filter. 1033 - - - 97c45589-d532-4599-9369-22813b89074c - - true - Indicates whether the solution is visible outside of the platform. - 1033 - - - - - cc91775d-fb75-4709-937d-0c27bca259c3 + 798d291c-f5a9-4789-9acb-7640e6f7be7b true - Is Visible Outside Platform - 1033 + Entydigt id for den bruger, der sidst ændrede SDK-meddelelsesfilteret. + 1030 - cc91775d-fb75-4709-937d-0c27bca259c3 + 43dc01b9-2241-db11-898a-0007e9e17ebd true - Is Visible Outside Platform + Unique identifier of the user who last modified the SDK message filter. 1033 - - solution - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - true - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - isvisible - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - IsVisible - - - BooleanType - - 5.0.0.0 - false - 0 - - true - - 5bde12c4-b7cf-4b1f-8313-b943167dee37 - - - - - 2dc29ef3-8434-437c-823e-d53a69f1ccd6 - - true - Indicates whether the solution is visible outside of the platform. - 1033 - - - - 2dc29ef3-8434-437c-823e-d53a69f1ccd6 - - true - Indicates whether the solution is visible outside of the platform. - 1033 - - - - - - a99bad0d-0888-4f91-8dcc-1da7c7fde4e5 - - true - Is visible outside platform - 1033 - - - - a99bad0d-0888-4f91-8dcc-1da7c7fde4e5 - - true - Is visible outside platform - 1033 - - - - false - - false - iscustomizable - true - - false - true - solution_isvisible - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - b8a5da8a-21ee-47d1-a77a-7229d4b76494 - - true - No - 1033 - - - - b8a5da8a-21ee-47d1-a77a-7229d4b76494 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - e0242482-858d-41b8-8913-bf8b6e1963cb - - true - Yes - 1033 - - - - e0242482-858d-41b8-8913-bf8b6e1963cb - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - 2ba3f1f4-ff78-4aa7-9348-308e9c73fdb0 - - - Lookup - false - false - false - - false - canmodifyadditionalsettings - false - - 16 - 1900-01-01T00:00:00 - - + + - 5af90e74-8f70-47e3-8830-7741ddbbaf89 + 617031bb-1834-11df-b172-00188b01dce6 true - Unique identifier of the user who last modified the solution. + Modified By 1033 - - - 5af90e74-8f70-47e3-8830-7741ddbbaf89 - - true - Unique identifier of the user who last modified the solution. - 1033 - - - - - 8db17921-7317-40ca-ab10-e02b628e710f + b3b25c79-583e-47c5-a1c1-e25405b75467 true - Modified By - 1033 + Ændret af + 1030 - 8db17921-7317-40ca-ab10-e02b628e710f + 617031bb-1834-11df-b172-00188b01dce6 true Modified By 1033 - solution + sdkmessagefilter @@ -281609,11 +292497,11 @@ false canmodifysearchsettings - false + true false false - false + true true false true @@ -281640,7 +292528,7 @@ - ef3a1787-7e9c-11dd-94cd-00188b01dce6 + 0be8c156-4ae7-4743-9ee2-ee38eea3c81a modifiedby String @@ -281650,9 +292538,9 @@ false canmodifyadditionalsettings - false + true - 21 + 51 1900-01-01T00:00:00 @@ -281663,7 +292551,7 @@ - solution + sdkmessagefilter @@ -281714,7 +292602,7 @@ false modifiedbyname - 1900-01-01T00:00:00 + 2025-11-06T00:19:26.6829952 false canmodifyrequirementlevelsettings @@ -281742,7 +292630,7 @@ 320 - 3a12ef3e-472e-4c5d-9ce1-c30801b1253b + d8ed2ef1-0c52-4610-85c7-d45c036c7810 DateTime @@ -281752,48 +292640,62 @@ false canmodifyadditionalsettings - false + true - 9 + 10 1900-01-01T00:00:00 - 33f0c576-50d5-47b4-b61d-3d1543202e50 + 47dc01b9-2241-db11-898a-0007e9e17ebd true - Date and time when the solution was last modified. + Date and time when the SDK message filter was last modified. 1033 + + 1a65c70f-8bc2-47ae-8ad1-1cea7f6be81c + + true + Dato og klokkeslæt for sidste ændring af SDK-meddelelsesfilteret. + 1030 + - 33f0c576-50d5-47b4-b61d-3d1543202e50 + 47dc01b9-2241-db11-898a-0007e9e17ebd true - Date and time when the solution was last modified. + Date and time when the SDK message filter was last modified. 1033 - 803a14bd-ed80-47cf-9171-30908ea74d62 + 617031bc-1834-11df-b172-00188b01dce6 true Modified On 1033 + + c213b1c0-5b3b-44f2-859b-540ac8127108 + + true + Ændret + 1030 + - 803a14bd-ed80-47cf-9171-30908ea74d62 + 617031bc-1834-11df-b172-00188b01dce6 true Modified On 1033 - solution + sdkmessagefilter @@ -281834,11 +292736,11 @@ false canmodifysearchsettings - false + true false false - false + true true false true @@ -281873,7 +292775,7 @@ - 47d57594-cf6c-4abd-bf90-1c21dd006673 + dbf4ac15-57b5-4ca2-aa6c-9b3c34474bef Lookup @@ -281883,48 +292785,62 @@ false canmodifyadditionalsettings - false + true - 24 + 19 1900-01-01T00:00:00 - 7d793bb4-ea86-48f9-94ae-ebeffa494368 + 9746e7f5-2313-4d59-a2ee-5869a2525c0f true - Unique identifier of the delegate user who modified the solution. + Unique identifier of the delegate user who last modified the sdkmessagefilter. 1033 + + a196424c-9385-4d43-8754-93fb9841926c + + true + Entydigt id for den stedfortræderbruger, der senest ændrede SDK-meddelelsesfilteret. + 1030 + - 7d793bb4-ea86-48f9-94ae-ebeffa494368 + 9746e7f5-2313-4d59-a2ee-5869a2525c0f true - Unique identifier of the delegate user who modified the solution. + Unique identifier of the delegate user who last modified the sdkmessagefilter. 1033 - 9fe59629-89a7-481e-871d-67b729a35b7a + cf6d3d06-7c06-4e2d-90e3-76b569cafeab true Modified By (Delegate) 1033 + + 43a281f9-410b-41e2-83a3-753ccd3400e4 + + true + Ændret af (stedfortræder) + 1030 + - 9fe59629-89a7-481e-871d-67b729a35b7a + cf6d3d06-7c06-4e2d-90e3-76b569cafeab true Modified By (Delegate) 1033 - solution + sdkmessagefilter @@ -281936,7 +292852,7 @@ false iscustomizable - true + false false false @@ -281968,7 +292884,7 @@ true false - true + false true true false @@ -281996,7 +292912,7 @@ - b726e2e3-a182-4f38-8829-f6b2f0f89a21 + b9bb8d20-1edb-4874-8e6e-ca942ae03358 modifiedonbehalfby String @@ -282006,9 +292922,9 @@ false canmodifyadditionalsettings - false + true - 26 + 23 1900-01-01T00:00:00 @@ -282019,7 +292935,7 @@ - solution + sdkmessagefilter @@ -282070,7 +292986,7 @@ false modifiedonbehalfbyname - 1900-01-01T00:00:00 + 2025-11-06T00:19:23.8230016 false canmodifyrequirementlevelsettings @@ -282098,7 +293014,7 @@ 320 - f8cce16d-5d40-4ce1-b45a-26de6acf16ab + c4212d24-07e5-4b31-8868-417313a60cf2 modifiedonbehalfby String @@ -282108,9 +293024,9 @@ false canmodifyadditionalsettings - false + true - 27 + 24 1900-01-01T00:00:00 @@ -282121,7 +293037,7 @@ - solution + sdkmessagefilter @@ -282172,7 +293088,7 @@ false modifiedonbehalfbyyominame - 1900-01-01T00:00:00 + 2025-11-06T00:19:28.5129984 false canmodifyrequirementlevelsettings @@ -282199,11 +293115,11 @@ 0 320 - - 963efa22-6a2a-4b93-bc41-52721727a512 + + 8bb110a2-8547-4603-9820-a23089d3d28a - Lookup + String false false false @@ -282212,50 +293128,50 @@ canmodifyadditionalsettings false - 7 - 1900-01-01T00:00:00 + 10000 + 2025-11-06T01:14:21.2999936 - 915ff2f2-3f99-40bd-a26a-3063e5d5cd04 + 510b19a7-2241-db22-898a-0008f2e12ebd true - Unique identifier of the organization associated with the solution. + Name of the SDK message filter. 1033 - 915ff2f2-3f99-40bd-a26a-3063e5d5cd04 + 510b19a7-2241-db22-898a-0008f2e12ebd true - Unique identifier of the organization associated with the solution. + Name of the SDK message filter. 1033 - 040e3e99-91e9-4793-99ab-f73aa41ca108 + 615043d6-1834-11df-b172-00188b01dce6 true - Organization + Name 1033 - 040e3e99-91e9-4793-99ab-f73aa41ca108 + 615043d6-1834-11df-b172-00188b01dce6 true - Organization + Name 1033 - solution + sdkmessagefilter - false + true canmodifyauditsettings false @@ -282268,85 +293184,113 @@ false false - true + false canmodifyglobalfiltersettings false true false - false + true false isrenameable false - false - false - false + true + true + true false - true + false canmodifyissortablesettings false false canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - organizationid - 1900-01-01T00:00:00 + name + 2025-11-06T01:14:21.2999936 false canmodifyrequirementlevelsettings - SystemRequired + None - OrganizationId + Name - LookupType + StringType - 5.0.0.0 + 9.1.0.0 false - + 0 - None - - organization - + Text + Auto + 256 + + + Text + + + false + 0 + 512 - - ba280f32-b1d3-4c9b-b057-c7b0c8f33e53 + + 8272ce5d-41b2-44e1-be66-8f52be26e563 - organizationid - String + + Lookup false false false false canmodifyadditionalsettings - false + true - 18 + 3 1900-01-01T00:00:00 - - + + + 48dc01b9-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the organization with which the SDK message filter is associated. + 1033 + + + 3039d0fe-cb6b-43f0-b9a3-d37fb0391d8f + + true + Entydigt id for den organisation, som SDK-meddelelsesfilteret er tilknyttet. + 1030 + + + + 48dc01b9-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the organization with which the SDK message filter is associated. + 1033 + - solution + sdkmessagefilter @@ -282394,95 +293338,102 @@ false true false - false + true - organizationidname + organizationid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - OrganizationIdName + OrganizationId - StringType + LookupType 5.0.0.0 - true - 0 + false + - Text - Auto - 100 - - - Text - - - false - 0 - 320 + None + + organization + - - 69d0c73e-2074-4b14-afef-42e92c162ef9 + + 08f3d108-2373-4261-bcf0-dec447d20fd9 - Lookup + DateTime false false false false canmodifyadditionalsettings - false + true - 40 + 82 1900-01-01T00:00:00 - ef55bfdb-f641-4c36-8ea9-19578b90e797 + 5fbd2caf-b0ab-420e-acf2-36fb05c6439c true - Unique identifier of the parent solution. Should only be non-null if this solution is a patch. + For internal use only. 1033 + + fd8041c6-2fce-42de-9e98-66c0d1522ba2 + + true + Kun til intern brug. + 1030 + - ef55bfdb-f641-4c36-8ea9-19578b90e797 + 5fbd2caf-b0ab-420e-acf2-36fb05c6439c true - Unique identifier of the parent solution. Should only be non-null if this solution is a patch. + For internal use only. 1033 - 944ff8b3-d53d-4f5a-88e8-757ef4cc17d7 + 7ab3d5b1-8298-4a2d-aae4-876edbb0e5ea true - Parent Solution + Record Overwrite Time 1033 + + 44a7eb69-452a-4cb8-9c3a-9d14d8f03fb6 + + true + Klokkeslæt for overskrivning af post + 1030 + - 944ff8b3-d53d-4f5a-88e8-757ef4cc17d7 + 7ab3d5b1-8298-4a2d-aae4-876edbb0e5ea true - Parent Solution + Record Overwrite Time 1033 - solution + sdkmessagefilter - true + false canmodifyauditsettings - true + false false @@ -282506,7 +293457,7 @@ false false - true + false false false @@ -282517,67 +293468,117 @@ false canmodifysearchsettings - true + false false - true - true + false + false true false true - parentsolutionid + overwritetime 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ParentSolutionId + OverwriteTime - LookupType + DateTimeType - 8.0.0.0 + 9.0.0.0 false - + 0 - None - - solution - + DateOnly + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + - - a3410a91-c818-4172-a74f-32a41ff09a0c + + c81a098f-bdeb-46cd-8b87-718819391390 - parentsolutionid - String + + EntityName false false false false canmodifyadditionalsettings - false + true - 41 + 4 1900-01-01T00:00:00 - - + + + 46dc01b9-2241-db11-898a-0007e9e17ebd + + true + Type of entity with which the SDK message filter is primarily associated. + 1033 + + + 4256326a-db8a-47e7-881e-898ecc42f7ec + + true + Den objekttype, som SDK-meddelelsesfilteret primært er tilknyttet. + 1030 + + + + 46dc01b9-2241-db11-898a-0007e9e17ebd + + true + Type of entity with which the SDK message filter is primarily associated. + 1033 + - - + + + 617031bd-1834-11df-b172-00188b01dce6 + + true + Primary Object Type Code + 1033 + + + 26183920-7cdf-49cd-b88f-54886dcc950f + + true + Primær objekttypekode + 1030 + + + + 617031bd-1834-11df-b172-00188b01dce6 + + true + Primary Object Type Code + 1033 + - solution + sdkmessagefilter - false + true canmodifyauditsettings - false + true false @@ -282601,7 +293602,7 @@ false false - false + true false false @@ -282612,57 +293613,96 @@ false canmodifysearchsettings - false + true false false - false + true true false - false + true - parentsolutionidname + primaryobjecttypecode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ParentSolutionIdName + PrimaryObjectTypeCode - StringType + EntityNameType - 8.0.0.0 - true - 0 + 5.0.0.0 + false + - Text - Auto - 100 - - - Text - - - false - 0 - 320 + -1 + + 8ce5eb57-00ca-45e0-8aa6-c1b6a0b562fa + + + + + 5a5733dc-6211-4929-9d17-49bfeb1d5d5a + + true + Type of entity with which the SDK message filter is primarily associated. + 1033 + + + f560634f-6fae-4dd3-9a79-7270d43bdf54 + + true + Den objekttype, som SDK-meddelelsesfilteret primært er tilknyttet. + 1030 + + + + 5a5733dc-6211-4929-9d17-49bfeb1d5d5a + + true + Type of entity with which the SDK message filter is primarily associated. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + sdkmessagefilter_primaryobjecttypecode + Picklist + 5.0.0.0 + + + + + true - - 25e55f6b-b52c-4359-86b0-f80424453ac5 + + a95280a4-03ce-450d-8fa8-d4dee52ccee4 - - String + primaryobjecttypecode + Virtual false false false false canmodifyadditionalsettings - false + true - 38 + 17 1900-01-01T00:00:00 @@ -282673,19 +293713,19 @@ - solution + sdkmessagefilter - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -282721,67 +293761,63 @@ false true false - true + false - pinpointassetid + primaryobjecttypecodename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - PinpointAssetId + PrimaryObjectTypeCodeName - StringType + VirtualType 5.0.0.0 - false - 0 + true + - Text - Inactive - 255 - - - Text - - - false - 0 - 510 - - f6a032b7-192d-443b-909c-da8a28184f38 + + ff9866b4-07ec-4260-8cf7-978a9c28bbfe - BigInt + Integer false false false false canmodifyadditionalsettings - false + true - 35 + 86 1900-01-01T00:00:00 - 713ae691-3ef0-4837-8937-e84b29e11eb4 + be97699a-0a20-46e1-aa64-a5cc44db6b66 true - Identifier of the publisher of this solution in Microsoft Pinpoint. + For internal use only. 1033 + + ec1f35f8-877d-4cf5-8682-f78c5a423eee + + true + Kun til intern brug. + 1030 + - 713ae691-3ef0-4837-8937-e84b29e11eb4 + be97699a-0a20-46e1-aa64-a5cc44db6b66 true - Identifier of the publisher of this solution in Microsoft Pinpoint. + For internal use only. 1033 @@ -282789,7 +293825,7 @@ - solution + sdkmessagefilter @@ -282801,7 +293837,7 @@ false iscustomizable - true + false false false @@ -282832,63 +293868,73 @@ canmodifysearchsettings false - false + true false false true false true - pinpointpublisherid + restrictionlevel 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - PinpointPublisherId + RestrictionLevel - BigIntType + IntegerType - 5.0.0.0 - true - + 9.0.0.0 + false + 0 - 9223372036854775807 - -9223372036854775808 + None + 255 + 0 + + 0 - - b9929279-f7d5-4a89-834b-2a4b79b85add + + f165db47-c8e8-4bf1-ae7d-09dfb7e1ace9 - String + Uniqueidentifier false false false false canmodifyadditionalsettings - false + true - 34 + 2 1900-01-01T00:00:00 - 48b83a31-b722-4269-9533-7cc6b2a670a6 + 42dc01b9-2241-db11-898a-0007e9e17ebd true - Default locale of the solution in Microsoft Pinpoint. + Unique identifier of the SDK message filter entity. 1033 + + bba7a20c-468e-4c63-a070-c4e0215a24e8 + + true + Entydigt id for SDK-meddelelsesfilterobjektet. + 1030 + - 48b83a31-b722-4269-9533-7cc6b2a670a6 + 42dc01b9-2241-db11-898a-0007e9e17ebd true - Default locale of the solution in Microsoft Pinpoint. + Unique identifier of the SDK message filter entity. 1033 @@ -282896,29 +293942,29 @@ - solution + sdkmessagefilter - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false - false + true true canmodifyglobalfiltersettings false true - false + true false false @@ -282926,7 +293972,7 @@ false false - false + true false false @@ -282939,72 +293985,68 @@ canmodifysearchsettings false - false + true false false true false true - pinpointsolutiondefaultlocale + sdkmessagefilterid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - PinpointSolutionDefaultLocale + SdkMessageFilterId - StringType + UniqueidentifierType 5.0.0.0 false - 0 + - Text - Inactive - 16 - - - Text - - - false - 0 - 32 - - d763b070-bce7-4589-874f-404ccaf09a2d + + ff987568-7364-41b4-b43b-02c6a56aa20f - BigInt + Uniqueidentifier false false false false canmodifyadditionalsettings - false + true - 33 + 9 1900-01-01T00:00:00 - 3e0b8ebf-4ba5-4f4c-9d17-01ae70461c1c + 4adc01b9-2241-db11-898a-0007e9e17ebd true - Identifier of the solution in Microsoft Pinpoint. + Unique identifier of the SDK message filter. 1033 + + 6fbbe054-17e3-40a9-afaa-d7882ae475a1 + + true + Entydigt id for SDK-meddelelsesfilteret. + 1030 + - 3e0b8ebf-4ba5-4f4c-9d17-01ae70461c1c + 4adc01b9-2241-db11-898a-0007e9e17ebd true - Identifier of the solution in Microsoft Pinpoint. + Unique identifier of the SDK message filter. 1033 @@ -283012,19 +294054,19 @@ - solution + sdkmessagefilter - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -283062,27 +294104,25 @@ false true - pinpointsolutionid + sdkmessagefilteridunique 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - PinpointSolutionId + SdkMessageFilterIdUnique - BigIntType + UniqueidentifierType 5.0.0.0 false - 9223372036854775807 - -9223372036854775808 - be1ba7c1-1444-4723-87bf-db739e0b2aa1 + 68b5c7d4-ee09-4509-9b60-c7a8ef761e13 Lookup @@ -283092,48 +294132,62 @@ false canmodifyadditionalsettings - false + true - 8 + 15 1900-01-01T00:00:00 - d1f7f9e5-9fed-421a-a2c2-85fa3ba22147 + 3edc01b9-2241-db11-898a-0007e9e17ebd true - Unique identifier of the publisher. + Unique identifier of the related SDK message. 1033 + + a52d1c9b-7dfa-4340-aa98-046d422117c5 + + true + Entydigt id for den relaterede SDK-meddelelse. + 1030 + - d1f7f9e5-9fed-421a-a2c2-85fa3ba22147 + 3edc01b9-2241-db11-898a-0007e9e17ebd true - Unique identifier of the publisher. + Unique identifier of the related SDK message. 1033 - e1cf9358-cce3-4427-8bc7-e5953add7002 + 617031bf-1834-11df-b172-00188b01dce6 true - Publisher + SDK Message ID 1033 + + bffcaec4-7d21-446d-b177-8450c972347c + + true + SDK-meddelelses-id + 1030 + - e1cf9358-cce3-4427-8bc7-e5953add7002 + 617031bf-1834-11df-b172-00188b01dce6 true - Publisher + SDK Message ID 1033 - solution + sdkmessagefilter @@ -283145,7 +294199,7 @@ false iscustomizable - true + false false false @@ -283164,7 +294218,7 @@ false true - false + true false true @@ -283177,20 +294231,20 @@ true true - true + false true true - true + false true - publisherid + sdkmessageid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - PublisherId + SdkMessageId LookupType @@ -283201,13 +294255,13 @@ None - publisher + sdkmessage - bb28a636-dd4c-4aef-8c9d-af66ca650b42 + 3a2560de-bd3d-4ca8-9bc0-f5abc00e7553 - publisherid + sdkmessageid String false false @@ -283215,48 +294269,20 @@ false canmodifyadditionalsettings - false + true - 17 + 54 1900-01-01T00:00:00 - - - 6201e742-4e14-4f93-8a5f-a1a2daf26234 - - true - name of the publisher. - 1033 - - - - 6201e742-4e14-4f93-8a5f-a1a2daf26234 - - true - name of the publisher. - 1033 - + + - - - 020f1bd7-b3a4-4d5c-9f17-99a484a3b0f5 - - true - Publisher - 1033 - - - - 020f1bd7-b3a4-4d5c-9f17-99a484a3b0f5 - - true - Publisher - 1033 - + + - solution + sdkmessagefilter @@ -283301,19 +294327,19 @@ false false - true + false true false false - publisheridname + sdkmessageidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - PublisherIdName + SdkMessageIdName StringType @@ -283334,37 +294360,79 @@ 0 320 - - 120deb8a-3c08-4108-91d0-8e7a8e4e0fd7 + + 39a71df0-d0d8-4bdc-b858-0da92a8240d5 - publisherid - Integer + + EntityName false false false false canmodifyadditionalsettings - false + true - 32 + 8 1900-01-01T00:00:00 - - + + + 4ddc01b9-2241-db11-898a-0007e9e17ebd + + true + Type of entity with which the SDK message filter is secondarily associated. + 1033 + + + b85c1f61-4f35-4e12-8e9f-bba6d71e446d + + true + Den objekttype, som SDK-meddelelsesfilteret sekundært er tilknyttet. + 1030 + + + + 4ddc01b9-2241-db11-898a-0007e9e17ebd + + true + Type of entity with which the SDK message filter is secondarily associated. + 1033 + - - + + + 617031c0-1834-11df-b172-00188b01dce6 + + true + Secondary Object Type Code + 1033 + + + 4e106978-8bab-42a7-baa4-eda466b640e0 + + true + Sekundær objekttypekode + 1030 + + + + 617031c0-1834-11df-b172-00188b01dce6 + + true + Secondary Object Type Code + 1033 + - solution + sdkmessagefilter - false + true canmodifyauditsettings - false + true false @@ -283388,7 +294456,7 @@ false false - false + true false false @@ -283399,51 +294467,96 @@ false canmodifysearchsettings - false + true false false - false + true true false - false + true - publisheridoptionvalueprefix + secondaryobjecttypecode 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - PublisherIdOptionValuePrefix + SecondaryObjectTypeCode - IntegerType + EntityNameType 5.0.0.0 - true - 0 + false + - None - 2147483647 - -2147483648 - - 0 + -1 + + 02126f5e-fc11-4399-9cea-94178e658ba0 + + + + + 08529197-56c3-44ad-8998-3f6431988f4c + + true + Type of entity with which the SDK message filter is secondarily associated. + 1033 + + + c8f99379-b5f8-450d-bba6-6010fbddf919 + + true + Den objekttype, som SDK-meddelelsesfilteret sekundært er tilknyttet. + 1030 + + + + 08529197-56c3-44ad-8998-3f6431988f4c + + true + Type of entity with which the SDK message filter is secondarily associated. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + sdkmessagefilter_secondaryobjecttypecode + Picklist + 5.0.0.0 + + + + + true - - f359be45-1669-4c99-8ee0-039760b618ca + + dfcb659e-2f39-4e24-9160-74befa19d3fc - publisherid - String + secondaryobjecttypecode + Virtual false false false false canmodifyadditionalsettings - false + true - 22 + 16 1900-01-01T00:00:00 @@ -283454,7 +294567,7 @@ - solution + sdkmessagefilter @@ -283504,36 +294617,25 @@ false false - publisheridprefix + secondaryobjecttypecodename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - PublisherIdPrefix + SecondaryObjectTypeCodeName - StringType + VirtualType 5.0.0.0 true - 0 + - Text - Auto - 256 - - - Text - - - false - 0 - 512 - 9d9fc349-efd2-4088-92e9-0f6b845c73d2 + f0173549-dcae-4dda-9b22-0139c9e03893 Uniqueidentifier @@ -283543,48 +294645,62 @@ false canmodifyadditionalsettings - false + true - 2 + 79 1900-01-01T00:00:00 - cfdf8427-9428-47ae-a633-36a151e38f4e + 7ca51dbd-2d77-4e56-adcd-a2a9a6f38f14 true - Unique identifier of the solution. + Unique identifier of the associated solution. 1033 + + 0bc1e1de-4ef7-4626-85f5-285946e218ea + + true + Entydigt id for den tilknyttede løsning. + 1030 + - cfdf8427-9428-47ae-a633-36a151e38f4e + 7ca51dbd-2d77-4e56-adcd-a2a9a6f38f14 true - Unique identifier of the solution. + Unique identifier of the associated solution. 1033 - fd43cc4b-cc45-4dd8-9154-779c46029c86 + 59e22d9e-7c40-4d24-a989-4e3a9c2ad89a true - Solution Identifier + Solution 1033 + + ef92e7df-5c44-4bd5-a63d-0b57450c3268 + + true + Løsning + 1030 + - fd43cc4b-cc45-4dd8-9154-779c46029c86 + 59e22d9e-7c40-4d24-a989-4e3a9c2ad89a true - Solution Identifier + Solution 1033 - solution + sdkmessagefilter @@ -283599,14 +294715,14 @@ false false - true + false true canmodifyglobalfiltersettings false true - true + false false false @@ -283614,7 +294730,7 @@ false false - true + false false false @@ -283627,7 +294743,7 @@ canmodifysearchsettings false - true + false false false true @@ -283646,76 +294762,90 @@ UniqueidentifierType - 5.0.0.0 + 9.0.0.0 false - - 5695cedc-f6c9-4aea-abee-44f3dcd55126 + + b5323898-1bc1-41fb-b11e-8e3c2fec703f - String + Uniqueidentifier false false false false canmodifyadditionalsettings - false + true - 39 + 80 1900-01-01T00:00:00 - 7ef84ece-1a4e-4bca-a068-d6baeda6844f + cd67d554-20c6-4267-8da5-c8e3f4776dcd true - Solution package source organization version + For internal use only. 1033 + + 6ea14247-af6b-4362-bea6-eb587fb7bc8d + + true + Kun til intern brug. + 1030 + - 7ef84ece-1a4e-4bca-a068-d6baeda6844f + cd67d554-20c6-4267-8da5-c8e3f4776dcd true - Solution package source organization version + For internal use only. 1033 - 260f596a-01b7-4b23-9637-ea058a6c5289 + 885791e1-0a8f-4517-98aa-173a9eaa06ca true - Solution Package Version + Solution 1033 + + 5582fec3-0c4d-4a65-9de9-173b7dfc199d + + true + Løsning + 1030 + - 260f596a-01b7-4b23-9637-ea058a6c5289 + 885791e1-0a8f-4517-98aa-173a9eaa06ca true - Solution Package Version + Solution 1033 - solution + sdkmessagefilter - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -283746,100 +294876,61 @@ canmodifysearchsettings true - true + false false true - true - true - true + false + false + false - solutionpackageversion + supportingsolutionid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - SolutionPackageVersion + SupportingSolutionId - StringType + UniqueidentifierType - 7.1.0.0 + 9.0.0.0 false - 0 + - VersionNumber - Auto - 256 - - - VersionNumber - - - false - 0 - 512 - - 0fe2ce7c-5dd7-492f-9d8b-ec430ffeaa33 - + + 2a9ffd7f-0e70-4d84-ab70-13ad8a310e18 + - Picklist + BigInt false false false false canmodifyadditionalsettings - false + true - 43 + 5 1900-01-01T00:00:00 - - - a7f2381e-eee9-4d44-83a1-9fe469aa0c17 - - true - Solution Type - 1033 - - - - a7f2381e-eee9-4d44-83a1-9fe469aa0c17 - - true - Solution Type - 1033 - + + - - - b6449168-6138-42ae-9ab4-c614df71abcd - - true - Solution Type - 1033 - - - - b6449168-6138-42ae-9ab4-c614df71abcd - - true - Solution Type - 1033 - + + - solution + sdkmessagefilter false canmodifyauditsettings - true + false false @@ -283863,7 +294954,7 @@ false false - false + true false false @@ -283876,243 +294967,99 @@ canmodifysearchsettings false - true + false false false true false true - solutiontype + versionnumber 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - SolutionType + VersionNumber - PicklistType + BigIntType - 8.2.0.0 + 5.0.0.0 false - 0 + - 0 - - 54b8d8e7-1672-46a2-934b-e01471605ef1 - - - - - e5e8e246-0122-465b-96fa-9acac0efefc6 - - true - All possible types of solution - 1033 - - - - e5e8e246-0122-465b-96fa-9acac0efefc6 - - true - All possible types of solution - 1033 - - - - - - 910e34f1-e004-43f3-9a63-fc8c8e14a2cb - - true - Solution Type - 1033 - - - - 910e34f1-e004-43f3-9a63-fc8c8e14a2cb - - true - Solution Type - 1033 - - - - false - - false - iscustomizable - false - - false - true - solution_solutiontype - Picklist - 8.2.0.0 - - - - - - - - - - - false - true - - - - 4a42aa93-4b61-4bad-aa76-f90e4706e586 - - true - None - 1033 - - - - 4a42aa93-4b61-4bad-aa76-f90e4706e586 - - true - None - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - bf58e337-4b76-4b93-a380-0259f66be465 - - true - Snapshot - 1033 - - - - bf58e337-4b76-4b93-a380-0259f66be465 - - true - Snapshot - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - af9a4d63-3717-4b2d-8395-2deb993293c4 - - true - Internal - 1033 - - - - af9a4d63-3717-4b2d-8395-2deb993293c4 - - true - Internal - 1033 - - - - 2 - - - - - - - - 0 - - + 9223372036854775807 + -9223372036854775808 - - ceb1df41-0895-45c3-a6b6-d39521790e8c + + b6153daf-c6d8-4b72-8f28-70578e3c75b6 - Picklist + Boolean false false false false canmodifyadditionalsettings - false + true - 10005 - 2025-11-06T01:58:33.1270016 + 67 + 1900-01-01T00:00:00 - 1fead37b-c65d-48fd-8e5b-b8bd877d9289 + 529c62ab-1c07-4992-a0f4-608ff1d7f7ce true - Indicates the current status of source control integration + Whether or not the SDK message can be called from a workflow. 1033 + + d29385a9-55ff-4351-a549-9a17f0c5f94d + + true + Angiver, om SDK-meddelelsen kan kaldes fra en arbejdsproces. + 1030 + - 1fead37b-c65d-48fd-8e5b-b8bd877d9289 + 529c62ab-1c07-4992-a0f4-608ff1d7f7ce true - Indicates the current status of source control integration + Whether or not the SDK message can be called from a workflow. 1033 - b5ae32ae-a3f6-4cbd-9cc0-d236916a2360 + d6df95ad-cc4d-4f63-9d9d-35baba073b3c true - Source Control Sync Status + WorkflowSdkStepEnabled 1033 + + 25a83c0c-42da-44a1-800b-193251a8b27d + + true + WorkflowSdkStepEnabled + 1030 + - b5ae32ae-a3f6-4cbd-9cc0-d236916a2360 + d6df95ad-cc4d-4f63-9d9d-35baba073b3c true - Source Control Sync Status + WorkflowSdkStepEnabled 1033 - solution + sdkmessagefilter @@ -284129,7 +295076,7 @@ false false - false + true canmodifyglobalfiltersettings false @@ -284146,7 +295093,7 @@ false false - false + true canmodifyissortablesettings false @@ -284155,71 +295102,64 @@ canmodifysearchsettings true - true - true + false + false true true - true + false true - sourcecontrolsyncstatus - 2025-11-06T01:58:33.1270016 + workflowsdkstepenabled + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - SourceControlSyncStatus + WorkflowSdkStepEnabled - PicklistType + BooleanType - 9.1.0.0 + 7.1.0.0 false 0 - 0 + false - 0c9f5c18-b4ba-f011-bbd3-7c1e52365f30 + 320ef530-bd3e-4cd0-ac50-6018d2b89b09 - 0e9f5c18-b4ba-f011-bbd3-7c1e52365f30 + c68531c2-3f7e-4557-bcb2-8a191a56269e true - + Whether or not the SDK message can be called from a workflow. 1033 - - - 0e9f5c18-b4ba-f011-bbd3-7c1e52365f30 - - true - - 1033 - - - - - 0d9f5c18-b4ba-f011-bbd3-7c1e52365f30 + 932626ec-16e8-4a26-ab52-31c4756cfb2c true - Source Control Sync Status - 1033 + Angiver, om SDK-meddelelsen kan kaldes fra en arbejdsproces. + 1030 - 0d9f5c18-b4ba-f011-bbd3-7c1e52365f30 + c68531c2-3f7e-4557-bcb2-8a191a56269e true - Source Control Sync Status + Whether or not the SDK message can be called from a workflow. 1033 + + + + - - true + + false false iscustomizable @@ -284227,1122 +295167,107 @@ false true - solution_sourcecontrolsyncstatus - Picklist - 9.1.0.0 - - - - - - - - - b1d17bb2-3de7-4606-b7a1-ceb756df254a - - true - - 1033 - - - - b1d17bb2-3de7-4606-b7a1-ceb756df254a - - true - - 1033 - - - - false - true - - - - 38b8f560-2bae-45dc-993a-04e0822ddb3b - - true - Not started - 1033 - - - - 38b8f560-2bae-45dc-993a-04e0822ddb3b - - true - Not started - 1033 - - - - 0 - - - - - - - - - - 6f91f0c7-fefc-40ac-8817-91fab3fc31b8 - - true - - 1033 - - - - 6f91f0c7-fefc-40ac-8817-91fab3fc31b8 - - true - - 1033 - - - - false - true - - - - 0813ac66-0601-4ce5-8b60-4d098a4e7176 - - true - Initial sync in progress - 1033 - - - - 0813ac66-0601-4ce5-8b60-4d098a4e7176 - - true - Initial sync in progress - 1033 - - - - 1 - - - - - - - - - - f27f6934-2c4c-4036-93ca-5e318314cfa9 - - true - - 1033 - - - - f27f6934-2c4c-4036-93ca-5e318314cfa9 - - true - - 1033 - - - - false - true - - - - 14578acc-8523-4e07-8b69-4ef04ced4957 - - true - Errors in initial sync - 1033 - - - - 14578acc-8523-4e07-8b69-4ef04ced4957 - - true - Errors in initial sync - 1033 - - - - 2 - - - - - - - - - - 1371188a-ffd5-47d6-a849-203a83f9180c - - true - - 1033 - - - - 1371188a-ffd5-47d6-a849-203a83f9180c + sdkmessagefilter_workflowsdkstepenabled + Boolean + 7.1.0.0 + + + + + + + + + + false + true + + + + 1bbacdc6-4652-4cb6-a07a-2be0e0984f29 - true - - 1033 - - - - false - true - - - - 9876a5a3-9447-4f0a-a61f-3c909272b115 - - true - Pending changes to be committed - 1033 - - - - 9876a5a3-9447-4f0a-a61f-3c909272b115 + true + No + 1033 + + + f31f00e9-ed54-46b9-b452-8cfcf1533746 - true - Pending changes to be committed - 1033 - - - - 3 - - - - - - - - - - 3521d013-443f-404b-a2b3-ba83e5bd3b43 - - true - - 1033 - - - - 3521d013-443f-404b-a2b3-ba83e5bd3b43 + true + Nej + 1030 + + + + 1bbacdc6-4652-4cb6-a07a-2be0e0984f29 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + aea1ff29-1cdf-43a6-9e72-fe8ff2b2b188 - true - - 1033 - - - - false - true - - - - afc6d65b-3d79-4f88-b6f5-a2215bcfec44 - - true - Committed - 1033 - - - - afc6d65b-3d79-4f88-b6f5-a2215bcfec44 + true + Yes + 1033 + + + 7d890764-6684-4560-98a4-3adea00fa461 - true - Committed - 1033 - - - - 4 - - - - + true + Ja + 1030 + + + + aea1ff29-1cdf-43a6-9e72-fe8ff2b2b188 + + true + Yes + 1033 + + + + 1 + + - - + 0 - - - ba92bade-0224-4083-a222-f508942bb216 + 14712504-177f-4c9c-8c2a-980f0fcd0b78 - sourcecontrolsyncstatus + workflowsdkstepenabled Virtual false false false - - true - canmodifyadditionalsettings - true - - 10006 - 2025-11-06T01:58:33.1430016 - - - - - - - - - - solution - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - sourcecontrolsyncstatusname - 2025-11-06T01:58:33.1430016 - - true - canmodifyrequirementlevelsettings - None - - sourcecontrolsyncstatusName - - - VirtualType - - 9.1.0.0 - true - - - - - efe8e6a0-de5d-4aec-b5da-44186bc58508 - - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 10000 - 2025-11-06T00:45:37.32 - - - - - 936b6fd6-6787-420c-b2ae-a6a4754d4984 - - true - The template suffix of this solution - 1033 - - - - 936b6fd6-6787-420c-b2ae-a6a4754d4984 - - true - The template suffix of this solution - 1033 - - - - - - 2176f235-9033-4a97-9302-7fc4adfd6237 - - true - Suffix - 1033 - - - - 2176f235-9033-4a97-9302-7fc4adfd6237 - - true - Suffix - 1033 - - - solution - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - true - true - true - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - false - true - - templatesuffix - 2025-12-23T18:07:34.6870016 - - false - canmodifyrequirementlevelsettings - None - - TemplateSuffix - - - StringType - - 9.1.0.0 - false - 0 - - Text - Auto - 65 - - - Text - - - false - 0 - 130 - - - a060fa9c-8bf4-48e6-b6f5-f71d5c90f3a9 - - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 10002 - 2025-11-06T00:45:37.3670016 - - - - - fdc3d9eb-3543-414f-8636-99053ad83898 - - true - thumbprint of the solution signature - 1033 - - - - fdc3d9eb-3543-414f-8636-99053ad83898 - - true - thumbprint of the solution signature - 1033 - - - - - - f16d49a2-393e-4fe5-834e-4b0e4ceb4aa8 - - true - Thumbprint - 1033 - - - - f16d49a2-393e-4fe5-834e-4b0e4ceb4aa8 - - true - Thumbprint - 1033 - - - solution - - - - false - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - true - true - true - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - false - false - true - - thumbprint - 2025-12-23T18:07:34.8600064 - - false - canmodifyrequirementlevelsettings - None - - Thumbprint - - - StringType - - 9.1.0.0 - false - 0 - - Text - Auto - 65 - - - Text - - - false - 0 - 0 - - - c7f1c81a-18f5-40af-a1c1-afebf1005382 - - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 14 - 1900-01-01T00:00:00 - - - - - 7339a245-e0a8-4e88-bf32-137a867664ac - - true - The unique name of this solution - 1033 - - - - 7339a245-e0a8-4e88-bf32-137a867664ac - - true - The unique name of this solution - 1033 - - - - - - 09af35e9-50b8-48fc-aaa4-6f7692809775 - - true - Name - 1033 - - - - 09af35e9-50b8-48fc-aaa4-6f7692809775 - - true - Name - 1033 - - - solution - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - true - true - true - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - false - true - - uniquename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - UniqueName - - - StringType - - 5.0.0.0 - false - 0 - - Text - Auto - 65 - - - Text - - - false - 0 - 130 - - - b7a52c26-6ff3-40b5-b44e-0224cd2755d1 - - - DateTime - false - false - false - - false - canmodifyadditionalsettings - false - - 44 - 1900-01-01T00:00:00 - - - - - 03271427-47c6-4e8b-8ff0-f93e4eee332a - - true - Date and time when the solution was updated. - 1033 - - - - 03271427-47c6-4e8b-8ff0-f93e4eee332a - - true - Date and time when the solution was updated. - 1033 - - - - - - ad6c3c9c-d5fc-46e3-a982-e66c37064cd0 - - true - Updated On - 1033 - - - - ad6c3c9c-d5fc-46e3-a982-e66c37064cd0 - - true - Updated On - 1033 - - - solution - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - updatedon - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - UpdatedOn - - - DateTimeType - - 9.0.0.0 - false - 0 - - DateAndTime - Inactive - - 0 - - false - canmodifybehavior - false - - - UserLocal - - - - 2b1d1c52-134c-ade2-c08c-6bd4effc97c7 - - - Memo - false - false - false - - false - canmodifyadditionalsettings - false - - 10001 - 2025-11-06T00:45:37.3369984 - - - - - 51014af1-a536-072b-bbcf-b8081ce2491f - - true - Contains component info for the solution upgrade operation - 1033 - - - - 51014af1-a536-072b-bbcf-b8081ce2491f - - true - Contains component info for the solution upgrade operation - 1033 - - - - - - - solution - - - - false - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - upgradeinfo - 2025-12-23T18:07:34.8130048 - - false - canmodifyrequirementlevelsettings - None - - UpgradeInfo - - - MemoType - - 9.1.0.0 - false - - - TextArea - Auto - 1073741823 - - TextArea - - false - - - 8eaec995-d351-42f8-ae47-89e4743482ce - - - String - false - false - false - - false - canmodifyadditionalsettings - false - - 23 - 1900-01-01T00:00:00 - - - - - b3f6ab86-44a4-4d98-a396-82f94712c663 - - true - Solution version, used to identify a solution for upgrades and hotfixes. - 1033 - - - - b3f6ab86-44a4-4d98-a396-82f94712c663 - - true - Solution version, used to identify a solution for upgrades and hotfixes. - 1033 - - - - - - 16a99b3a-920b-4071-a90e-186f3f7b6392 - - true - Version - 1033 - - - - 16a99b3a-920b-4071-a90e-186f3f7b6392 - - true - Version - 1033 - - - solution - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - true - true - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - true - true - true - true - true - true - - version - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - Version - - - StringType - - 5.0.0.0 - false - 0 - - VersionNumber - Auto - 256 - - - VersionNumber - - - false - 0 - 512 - - - 29805ba4-41a8-11dd-9bde-0019b9312238 - - - BigInt - false - false - false false canmodifyadditionalsettings false - 1 + 78 1900-01-01T00:00:00 @@ -285353,7 +295278,7 @@ - solution + sdkmessagefilter @@ -285383,7 +295308,7 @@ false false - true + false false false @@ -285401,26 +295326,24 @@ false true false - true + false - versionnumber + workflowsdkstepenabledname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - VersionNumber + WorkflowSdkStepEnabledName - BigIntType + VirtualType - 5.0.0.0 - false + 7.1.0.0 + true - 9223372036854775807 - -9223372036854775808 false @@ -285439,7 +295362,7 @@ false canbeprimaryentityinrelationship - false + true false @@ -285448,9 +295371,9 @@ true - true + false canchangetrackingbeenabled - true + false false @@ -285480,10 +295403,10 @@ true canmodifyadditionalsettings - true + false false - true + false Local 1900-01-01T00:00:00 @@ -285492,54 +295415,75 @@ - a4f94019-6c08-4591-9578-4f520f707a40 + 3bdc01b9-2241-db11-898a-0007e9e17ebd true - A solution which contains CRM customizations. + Filter that defines which SDK messages are valid for each type of entity. 1033 + + 9efdec0b-fe71-47f2-b982-399eee0b41c1 + + true + Filter, der definerer, hvilke SDK-meddelelser der er gyldige for hver objekttype. + 1030 + - a4f94019-6c08-4591-9578-4f520f707a40 + 3bdc01b9-2241-db11-898a-0007e9e17ebd true - A solution which contains CRM customizations. + Filter that defines which SDK messages are valid for each type of entity. 1033 - cc01efe6-6819-41a9-b2b5-c94f7d2a03c5 + 3ddc01b9-2241-db11-898a-0007e9e17ebd true - Solutions + Sdk Message Filters 1033 + + 4c33cde7-b704-43cf-92ad-a2a221a78349 + + true + Sdk-meddelelsesfiltre + 1030 + - cc01efe6-6819-41a9-b2b5-c94f7d2a03c5 + 3ddc01b9-2241-db11-898a-0007e9e17ebd true - Solutions + Sdk Message Filters 1033 - 6f3c50dd-7019-4810-b008-da363198eaaf + 3cdc01b9-2241-db11-898a-0007e9e17ebd true - Solution + Sdk Message Filter 1033 + + fd5634ee-b5aa-4d7e-836c-c10ea75a0451 + + true + Sdk-meddelelsesfilter + 1030 + - 6f3c50dd-7019-4810-b008-da363198eaaf + 3cdc01b9-2241-db11-898a-0007e9e17ebd true - Solution + Sdk Message Filter 1033 @@ -285558,7 +295502,7 @@ false false - true + false canmodifyauditsettings false @@ -285574,7 +295518,7 @@ false iscustomizable - true + false false false @@ -285617,9 +295561,9 @@ false false false - false + true false - false + true false canmodifyqueuesettings @@ -285635,65 +295579,11 @@ canmodifymobileclientvisibility false - solution - - - 23925f91-aaba-f011-bbd3-7c1e52365f30 - - true - - false - iscustomizable - false - - true - true - package_solution - None - 9.0.0.0 - ManyToManyRelationship - - DoNotDisplay - Details - - - - - - true - - true - - - 00000000-0000-0000-0000-000000000000 - - packageid - package - package_solution - - DoNotDisplay - Details - - - - - - true - - true - - - 00000000-0000-0000-0000-000000000000 - - solutionid - solution - package_solution - package_solution - - + sdkmessagefilter + - 09db11ea-7e9b-11dd-94cd-00188b01dce6 + b3c71d20-4346-44d9-877b-efa259c4d705 false @@ -285702,8 +295592,8 @@ false true - true - lk_solution_createdby + false + lk_sdkmessagefilter_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -285739,15 +295629,15 @@ false systemuserid systemuser - lk_solution_createdby - createdby - solution - createdby + lk_sdkmessagefilter_modifiedonbehalfby + modifiedonbehalfby + sdkmessagefilter + modifiedonbehalfby 0 - 09db11ed-7e9b-11dd-94cd-00188b01dce6 + 5ec0c84b-e78f-43ea-baff-8288893eee15 false @@ -285756,8 +295646,8 @@ false true - true - lk_solution_modifiedby + false + createdby_sdkmessagefilter None 5.0.0.0 OneToManyRelationship @@ -285793,69 +295683,15 @@ false systemuserid systemuser - lk_solution_modifiedby - modifiedby - solution - modifiedby - - 0 - - - 1eda0589-4273-4db6-a86e-ac2cce2aeacb - - false - - false - iscustomizable - false - - true - true - solution_parent_solution - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - Cascade - Restrict - NoCascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - solutionid - solution - solution_parent_solution - parentsolutionid - solution - parentsolutionid + createdby_sdkmessagefilter + createdby + sdkmessagefilter + createdby 0 - b751ff85-e53b-4497-af66-17825148c8f8 + de552a57-7570-43ee-a090-1936744a2bfd false @@ -285865,7 +295701,7 @@ true false - solution_configuration_webresource + organization_sdkmessagefilter None 5.0.0.0 OneToManyRelationship @@ -285887,7 +295723,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -285899,17 +295735,17 @@ false false - webresourceid - webresource - solution_configuration_webresource - configurationpageid - solution - configurationpageid + organizationid + organization + organization_sdkmessagefilter + organizationid + sdkmessagefilter + organizationid 0 - 7164a1ac-d8f2-423f-9557-0dbf2bd4f0aa + 6761d288-c523-47a8-bae7-63ae6a04e651 false @@ -285918,8 +295754,8 @@ false true - true - lk_solutionbase_modifiedonbehalfby + false + modifiedby_sdkmessagefilter None 5.0.0.0 OneToManyRelationship @@ -285955,15 +295791,15 @@ false systemuserid systemuser - lk_solutionbase_modifiedonbehalfby - modifiedonbehalfby - solution - modifiedonbehalfby + modifiedby_sdkmessagefilter + modifiedby + sdkmessagefilter + modifiedby 0 - 23cb25d4-9186-4a94-8199-819c1c01a942 + b1b980a3-5013-44a3-a35d-a9c4318af6af false @@ -285973,61 +295809,7 @@ true false - organization_solution - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - organizationid - organization - organization_solution - organizationid - solution - organizationid - - 0 - - - dd874335-3204-4cbf-beba-b2dcec54fb2c - - false - - false - iscustomizable - false - - true - true - lk_solutionbase_createdonbehalfby + lk_sdkmessagefilter_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -286063,15 +295845,15 @@ false systemuserid systemuser - lk_solutionbase_createdonbehalfby + lk_sdkmessagefilter_createdonbehalfby createdonbehalfby - solution + sdkmessagefilter createdonbehalfby 0 - 38d0d634-23a1-4ec3-8ede-7fe2d5bf97b1 + d10ec3ba-c4c1-47f1-a36c-c3ee16a120f9 false @@ -286081,7 +295863,7 @@ true true - publisher_solution + sdkmessageid_sdkmessagefilter None 5.0.0.0 OneToManyRelationship @@ -286100,64 +295882,10 @@ 00000000-0000-0000-0000-000000000000 - - NoCascade - Cascade - Restrict - NoCascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - publisherid - publisher - publisher_solution - publisherid - solution - publisherid - - 0 - - - 4cc3e4fd-e5a3-44f1-b591-2ed63ded18b6 - - false - - false - iscustomizable - false - - true - false - fileattachment_solution_fileid - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - NoCascade NoCascade - RemoveLink + Restrict NoCascade NoCascade NoCascade @@ -286169,21 +295897,21 @@ false false - fileattachmentid - fileattachment - solution_fileid - fileid - solution - fileid + sdkmessageid + sdkmessage + sdkmessageid_sdkmessagefilter + sdkmessageid + sdkmessagefilter + sdkmessageid 0 - 2025-11-06T01:58:33.2370048 - 7100 + 2025-11-06T01:14:21.3299968 + 4607 - 4806d7ef-850b-4c19-aef6-270b51492bb6 + 581f0027-6898-4ac9-95d0-54f5b7c24d60 false @@ -286193,7 +295921,7 @@ true true - solution_solutioncomponent + sdkmessagefilterid_sdkmessageprocessingstep None 5.0.0.0 OneToManyRelationship @@ -286214,12 +295942,12 @@ NoCascade - Cascade - Cascade + NoCascade + Restrict NoCascade - Cascade - Cascade - Cascade + NoCascade + NoCascade + NoCascade NoCascade @@ -286227,17 +295955,17 @@ false false - solutionid - solution - solution_solutioncomponent - solutionid - solutioncomponent - solutionid + sdkmessagefilterid + sdkmessagefilter + sdkmessagefilterid_sdkmessageprocessingstep + sdkmessagefilterid + sdkmessageprocessingstep + sdkmessagefilterid 0 - 4751608e-38ed-11de-9d3f-8000600fe800 + ae0f5b3e-fc90-4e90-825d-9fec8321bb74 false @@ -286247,7 +295975,7 @@ true false - solution_base_dependencynode + userentityinstancedata_sdkmessagefilter None 5.0.0.0 OneToManyRelationship @@ -286268,66 +295996,12 @@ NoCascade - Cascade + NoCascade Cascade NoCascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - solutionid - solution - solution_base_dependencynode - basesolutionid - dependencynode - basesolutionid - - 0 - - - 47516094-38ed-11de-9d3f-8000600fe800 - - false - - false - iscustomizable - false - - true - false - solution_top_dependencynode - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - Cascade - RemoveLink - NoCascade - Cascade - Cascade - Cascade + NoCascade + NoCascade + NoCascade NoCascade @@ -286335,19 +296009,19 @@ false false - solutionid - solution - solution_top_dependencynode - topsolutionid - dependencynode - topsolutionid + sdkmessagefilterid + sdkmessagefilter + userentityinstancedata_sdkmessagefilter + objectid + userentityinstancedata + objectid_sdkmessagefilter 0 - 1eda0589-4273-4db6-a86e-ac2cce2aeacb + 67f0df85-aeba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -286355,33 +296029,33 @@ true true - solution_parent_solution - None - 8.0.0.0 + sdkmessagefilter_internalcatalogassignment + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 NoCascade - Cascade - Restrict + NoCascade + RemoveLink NoCascade - Cascade - Cascade - Cascade + NoCascade + NoCascade + NoCascade NoCascade @@ -286389,565 +296063,25 @@ false false - solutionid - solution - solution_parent_solution - parentsolutionid - solution - parentsolutionid + sdkmessagefilterid + sdkmessagefilter + InternalCatalogAssignmentId + object + internalcatalogassignment + SdkMessageFilterId - 0 - - - cfe66967-408e-46e2-941e-8177c782ce39 - - false - - false - iscustomizable - true - - true - true - Solution_SyncErrors - Append - 8.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - Cascade - Cascade - Cascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - solutionid - solution - Solution_SyncErrors - regardingobjectid - syncerror - regardingobjectid_solution_syncerror - - 1 - - - 62506f71-d6f3-4477-889e-c5d292effe82 - - false - - false - iscustomizable - false - - true - false - userentityinstancedata_solution - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - solutionid - solution - userentityinstancedata_solution - objectid - userentityinstancedata - objectid_solution - - 0 - - - 7b50a8a5-6af5-4b29-8b55-1a4b235c1109 - - false - - false - iscustomizable - true - - true - false - FileAttachment_Solution - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - solutionid - solution - regardingobjectid_fileattachment_solution - objectid - fileattachment - FileAttachment_Solution - - 0 - - - 7a7af2fb-94d6-4e23-9484-944fc70438f8 - - false - - false - iscustomizable - false - - true - false - FK_CanvasApp_Solution - None - 9.0.2.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - solutionid - solution - FK_CanvasApp_Solution - solutionid - canvasapp - FK_CanvasApp_Solution - - 0 - - - 3f4e10c2-c82c-437b-8864-9c9d520496b9 - - false - - false - iscustomizable - false - - true - false - solution_fieldpermission - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - solutionid - solution - solution_fieldpermission - solutionid - fieldpermission - solution_fieldpermission - - 0 - - - 4a282509-8cb9-4b02-b553-af0179a44512 - - false - - false - iscustomizable - false - - true - true - solution_fieldsecurityprofile - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - solutionid - solution - solution_fieldsecurityprofile - solutionid - fieldsecurityprofile - solution_fieldsecurityprofile - - 0 - - - 156fcc9c-44e5-40c6-80a0-dbe24e42d502 - - false - - false - iscustomizable - false - - true - false - solution_privilege - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - solutionid - solution - solution_privilege - solutionid - privilege - solution_privilege - - 0 - - - 91de8de9-18ad-4505-8b80-d8ce9dec387a - - false - - false - iscustomizable - false - - true - true - solution_role - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - solutionid - solution - solution_role - solutionid - role - solution_role - - 0 - - - 506e7861-7c3d-4cdb-a9f6-8ef8303262d9 - - false - - false - iscustomizable - false - - true - false - solution_roleprivileges - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - solutionid - solution - solution_roleprivileges - solutionid - roleprivileges - solutionid - - 0 - - - b1f0bee7-a9ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - user_settings_preferred_solution - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - 10000 - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - RemoveLink - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - solutionid - solution - user_settings_preferred_solution - preferredsolution - usersettings - preferredsolution - - 0 + 1 8 OrganizationOwned - solutionid + sdkmessagefilterid - solutionid + sdkmessagefilterid - friendlyname + name false @@ -286957,8 +296091,8 @@ false false false - prvCreateSolution - 14dd992d-2858-4547-91e9-139ca92d3932 + prvCreateSdkMessage + 303def1c-947c-4af3-a63b-406a7abc72de Create @@ -286969,8 +296103,8 @@ false false false - prvReadSolution - b64e92c8-5d2a-4052-a026-1b73eff9cebf + prvReadSdkMessage + 94c3ac2c-eb23-41cb-a903-4e2e49e910b4 Read @@ -286981,8 +296115,8 @@ false false false - prvWriteSolution - bfab24a8-3987-40ec-9828-8cfa938ee756 + prvWriteSdkMessage + 6ebc7c4c-fde7-424c-842e-11651498a9b3 Write @@ -286993,8 +296127,8 @@ false false false - prvDeleteSolution - 9ef73297-f404-4630-ad16-7340265c6d08 + prvDeleteSdkMessage + 8f9b0745-2842-45b6-a306-eab47f138c7a Delete @@ -287005,8 +296139,8 @@ false false false - prvAppendSolution - ccea7ff5-5e26-4aed-94a4-fcc2d9733f3a + prvAppendSdkMessageFilter + 75e24728-68f8-4e06-96f4-c37b556a9b8a Append @@ -287017,14 +296151,14 @@ false false false - prvAppendToSolution - a264eaae-0c71-4370-99d9-4986b33bab60 + prvAppendToSdkMessageFilter + 26dca9ab-8451-4a61-8eab-d71d89987ca1 AppendTo - FilteredSolution - Solution + FilteredSdkMessageFilter + SdkMessageFilter false @@ -287039,14 +296173,14 @@ false - Solutions + SdkMessageFilters true - solutions + sdkmessagefilters 0 - solutions + sdkmessagefilters false true @@ -287061,17 +296195,17 @@ - solutioncomponent + sdkmessageprocessingstep - 357a748c-78ec-40a6-9694-35af375a1c6b + eff65459-0684-41f0-b166-aa6a29b7050b 0 - - ceeef3db-a6be-4cdc-9898-af84db1181f1 + + a1ef61dc-3371-4cc9-be6d-06ea05192b3c - Picklist + Boolean false false false @@ -287080,46 +296214,60 @@ canmodifyadditionalsettings true - 2 + 35 1900-01-01T00:00:00 - fb46c222-79b5-4df9-a857-d9f8291543b1 + 90d80c80-e2e2-473e-8332-1668df31eb45 true - The object type code of the component. + Indicates whether the asynchronous system job is automatically deleted on completion. 1033 + + 510ded4d-9c19-47fa-9f74-c3b4e45fa5aa + + true + Angiver, om det asynkrone systemjob slettes automatisk ved fuldførelse. + 1030 + - fb46c222-79b5-4df9-a857-d9f8291543b1 + 90d80c80-e2e2-473e-8332-1668df31eb45 true - The object type code of the component. + Indicates whether the asynchronous system job is automatically deleted on completion. 1033 - 7a8edf11-5736-4eeb-8b9b-2e0f374088bf + 617031c3-1834-11df-b172-00188b01dce6 true - Object Type Code + Asynchronous Automatic Delete 1033 + + 7ec572aa-ce46-4516-b1e3-39b6d030087e + + true + Asynkron automatisk sletning + 1030 + - 7a8edf11-5736-4eeb-8b9b-2e0f374088bf + 617031c3-1834-11df-b172-00188b01dce6 true - Object Type Code + Asynchronous Automatic Delete 1033 - solutioncomponent + sdkmessageprocessingstep @@ -287157,6 +296305,246 @@ canmodifyissortablesettings false + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + asyncautodelete + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + AsyncAutoDelete + + + BooleanType + + 5.0.0.0 + false + 0 + + false + + 4e71632a-9fba-49aa-891e-d55e042866be + + + + + 577da2da-eadd-47df-a083-bff030137959 + + true + Indicates whether the asynchronous system job is automatically deleted on completion. + 1033 + + + c542637b-9a86-4f85-be49-7bcca887219f + + true + Angiver, om det asynkrone systemjob slettes automatisk ved fuldførelse. + 1030 + + + + 577da2da-eadd-47df-a083-bff030137959 + + true + Indicates whether the asynchronous system job is automatically deleted on completion. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + sdkmessageprocessingstep_asyncautodelete + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 1e2d5e93-85c0-4383-bb5a-f5507035acc1 + + true + No + 1033 + + + f3a73aef-6f2f-4262-972e-39b9bf66e864 + + true + Nej + 1030 + + + + 1e2d5e93-85c0-4383-bb5a-f5507035acc1 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + e5d3cb52-3a22-4f4f-85bc-154c6ca14c0a + + true + Yes + 1033 + + + 2e1a9ade-657b-4df6-9ab3-288a9997d99d + + true + Ja + 1030 + + + + e5d3cb52-3a22-4f4f-85bc-154c6ca14c0a + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + a1ef61dd-3371-4cc9-be6d-06ea05192b3c + + asyncautodelete + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 47 + 1900-01-01T00:00:00 + + + + + + + + + 617031c4-1834-11df-b172-00188b01dce6 + + true + Async Auto Delete Name + 1033 + + + 9f413d59-311e-48e5-af42-f366fbad7512 + + true + Navn på asynkron automatisk sletning + 1030 + + + + 617031c4-1834-11df-b172-00188b01dce6 + + true + Async Auto Delete Name + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + false canmodifysearchsettings @@ -287167,16 +296555,955 @@ false true false + false + + asyncautodeletename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + AsyncAutoDeleteName + + + VirtualType + + 5.0.0.0 + true + + + + + 9e3f25bf-9613-4b5c-b401-e04e143bcc4c + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 10001 + 2025-11-06T01:14:21.5000064 + + + + + + + + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true true - componenttype + canbebypassed + 2025-11-06T01:14:21.5000064 + + true + canmodifyrequirementlevelsettings + SystemRequired + + CanBeBypassed + + + BooleanType + + 9.2.0.0 + false + 0 + + false + + 8f0165eb-adba-f011-bbd3-7c1e52365f30 + + + + + 910165eb-adba-f011-bbd3-7c1e52365f30 + + true + CanBeBypassed + 1033 + + + + 910165eb-adba-f011-bbd3-7c1e52365f30 + + true + CanBeBypassed + 1033 + + + + + + 900165eb-adba-f011-bbd3-7c1e52365f30 + + true + CanBeBypassed + 1033 + + + + 900165eb-adba-f011-bbd3-7c1e52365f30 + + true + CanBeBypassed + 1033 + + + + true + + false + iscustomizable + false + + false + true + sdkmessageprocessingstep_canbebypassed + Boolean + 9.2.0.0 + + + + #0000ff + + + + + + false + true + + + + b6cc3628-1fa7-40e1-b025-efbe944067dd + + true + No + 1033 + + + + b6cc3628-1fa7-40e1-b025-efbe944067dd + + true + No + 1033 + + + + 0 + + + + + + #0000ff + + + + + + false + true + + + + aa7f7ed9-a771-4b65-98f0-d2a0afa5d3b0 + + true + Yes + 1033 + + + + aa7f7ed9-a771-4b65-98f0-d2a0afa5d3b0 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 1523bed6-6401-44e2-aba5-5ad41827859c + + canbebypassed + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10002 + 2025-11-06T01:14:21.5170048 + + + + + + + + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + canbebypassedname + 2025-11-06T01:14:21.5170048 + + true + canmodifyrequirementlevelsettings + None + + canbebypassedName + + + VirtualType + + 9.2.0.0 + true + + + + + 12a37b71-ac7e-4d0e-9e5e-9d54c943a06e + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 64 + 1900-01-01T00:00:00 + + + + + dae0f76b-3a84-424a-b805-27dc9cb5ae3c + + true + Identifies whether a SDK Message Processing Step type will be ReadOnly or Read Write. false - ReadWrite, true - ReadOnly + 1033 + + + f570c820-f397-4161-af44-4c34aa73833a + + true + Identificerer, om en behandlingstrintype for en SDK-meddelelse skal være ReadOnly eller Read Write. falsk - ReadWrite, sand - ReadOnly + 1030 + + + + dae0f76b-3a84-424a-b805-27dc9cb5ae3c + + true + Identifies whether a SDK Message Processing Step type will be ReadOnly or Read Write. false - ReadWrite, true - ReadOnly + 1033 + + + + + + 86b08de5-ba62-4e1a-9015-e3da945a1bff + + true + Intent + 1033 + + + 8769b254-e7a4-452b-8e6b-0ab905bcb263 + + true + Hensigt + 1030 + + + + 86b08de5-ba62-4e1a-9015-e3da945a1bff + + true + Intent + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + false + true + true + false + true + + canusereadonlyconnection 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - ComponentType + CanUseReadOnlyConnection + + + BooleanType + + 7.1.0.0 + false + 0 + + false + + ee89f0cc-4512-45ff-8a13-24deb5151471 + + + + + b0bfcb58-06cf-42fb-80ff-dbf772fd7bba + + true + Indication of whether a SDKMessage/Plugin is of ReadOnly or ReadWrite Intent + 1033 + + + cb0c8c7c-c938-45eb-8725-76e3ab19c631 + + true + Angiver, om SDKMessage/plug-in er med hensigten ReadOnly eller ReadWrite + 1030 + + + + b0bfcb58-06cf-42fb-80ff-dbf772fd7bba + + true + Indication of whether a SDKMessage/Plugin is of ReadOnly or ReadWrite Intent + 1033 + + + + + + 59ff6b6f-5aa5-481b-8d6a-0e7a76d2c58f + + true + Is Operation Intent Read Only + 1033 + + + 014a971a-ca3c-4972-bb85-ca8fc53d6940 + + true + Er handlingens hensigt skrivebeskyttet + 1030 + + + + 59ff6b6f-5aa5-481b-8d6a-0e7a76d2c58f + + true + Is Operation Intent Read Only + 1033 + + + + false + + false + iscustomizable + false + + true + true + isoperationintentreadonly + Boolean + 7.1.0.0 + + + + + + + + + + false + true + + + + 689c7bc5-a039-4084-bd1c-3e1930a82567 + + true + No + 1033 + + + ff4010a7-1da1-4163-9349-98a338bc5cbb + + true + Nej + 1030 + + + + 689c7bc5-a039-4084-bd1c-3e1930a82567 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 5b05f5da-d6db-4bd1-be75-167605fcccdc + + true + Yes + 1033 + + + b08d97f1-7288-48a2-95b6-026fbcb55032 + + true + Ja + 1030 + + + + 5b05f5da-d6db-4bd1-be75-167605fcccdc + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 8de802db-c947-4a47-a172-a4afa1af111b + + canusereadonlyconnection + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 65 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + canusereadonlyconnectionname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + CanUseReadOnlyConnectionName + + + VirtualType + + 7.1.0.0 + true + + + + + 961daaaa-ac5d-4d1d-9619-aaeb653d6007 + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 10000 + 2025-11-06T01:14:21.4870016 + + + + + 4c4a7262-5f12-49cb-bd64-da561b945d0a + + true + For internal use only. + 1033 + + + + 4c4a7262-5f12-49cb-bd64-da561b945d0a + + true + For internal use only. + 1033 + + + + + + 5d6c28e4-16fb-4863-8b8b-1b55b8cdd6d9 + + true + Category + 1033 + + + + 5d6c28e4-16fb-4863-8b8b-1b55b8cdd6d9 + + true + Category + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + false + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + false + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + false + true + + category + 2025-11-06T01:14:21.4870016 + + false + canmodifyrequirementlevelsettings + None + + Category + + + StringType + + 9.1.0.0 + false + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 200 + + + 98493000-f4b4-4867-b95b-5658f813c1de + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 48 + 1900-01-01T00:00:00 + + + + + 98493001-f4b4-4867-b95b-5658f813c1de + + true + For internal use only. + 1033 + + + 76c713d8-cc1e-4611-a39a-c70f719d822e + + true + Kun til intern brug. + 1030 + + + + 98493001-f4b4-4867-b95b-5658f813c1de + + true + For internal use only. + 1033 + + + + + + 98493002-f4b4-4867-b95b-5658f813c1de + + true + Component State + 1033 + + + cd8521f1-3a4b-4c0a-a52c-1bdf16abdad9 + + true + Komponenttilstand + 1030 + + + + 98493002-f4b4-4867-b95b-5658f813c1de + + true + Component State + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + componentstate + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + ComponentState PicklistType @@ -287185,43 +297512,57 @@ false 0 - + -1 - 10d12bb7-9759-4f24-a100-6f145ca4607c + faece09f-cefc-11de-8150-00155da18b00 - 3250e1f4-b9bb-11de-844f-00155da18b00 + faece0a1-cefc-11de-8150-00155da18b00 true - All of the possible component types for solutions. + The state of this component. 1033 + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + - 3250e1f4-b9bb-11de-844f-00155da18b00 + faece0a1-cefc-11de-8150-00155da18b00 true - All of the possible component types for solutions. + The state of this component. 1033 - 3250e1f3-b9bb-11de-844f-00155da18b00 + faece0a0-cefc-11de-8150-00155da18b00 true - Component Type + Component State 1033 + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + - 3250e1f3-b9bb-11de-844f-00155da18b00 + faece0a0-cefc-11de-8150-00155da18b00 true - Component Type + Component State 1033 @@ -287234,7 +297575,7 @@ true true - componenttype + componentstate Picklist 5.0.0.0 @@ -287252,56 +297593,30 @@ - 3250e1f6-b9bb-11de-844f-00155da18b00 + faece0a3-cefc-11de-8150-00155da18b00 true - Entity + Published 1033 - - - 3250e1f6-b9bb-11de-844f-00155da18b00 - - true - Entity - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - 3250e1f8-b9bb-11de-844f-00155da18b00 + 70c6cc18-219d-48a6-8b06-b7438ebfd290 true - Attribute - 1033 + Udgivet + 1030 - 3250e1f8-b9bb-11de-844f-00155da18b00 + faece0a3-cefc-11de-8150-00155da18b00 true - Attribute + Published 1033 - 2 + 0 @@ -287318,56 +297633,30 @@ - 3250e1fa-b9bb-11de-844f-00155da18b00 + faece0a5-cefc-11de-8150-00155da18b00 true - Relationship + Unpublished 1033 - - - 3250e1fa-b9bb-11de-844f-00155da18b00 - - true - Relationship - 1033 - - - - 3 - - - - - - - - - - - - false - true - - - 3250e1fc-b9bb-11de-844f-00155da18b00 + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf true - Attribute Picklist Value - 1033 + Ikke-udgivet + 1030 - 3250e1fc-b9bb-11de-844f-00155da18b00 + faece0a5-cefc-11de-8150-00155da18b00 true - Attribute Picklist Value + Unpublished 1033 - 4 + 1 @@ -287384,56 +297673,30 @@ - 3250e1fe-b9bb-11de-844f-00155da18b00 + faece0a7-cefc-11de-8150-00155da18b00 true - Attribute Lookup Value + Deleted 1033 - - - 3250e1fe-b9bb-11de-844f-00155da18b00 - - true - Attribute Lookup Value - 1033 - - - - 5 - - - - - - - - - - - - false - true - - - 3250e200-b9bb-11de-844f-00155da18b00 + 19fbfb90-4251-41db-9758-511a17934830 true - View Attribute - 1033 + Slettet + 1030 - 3250e200-b9bb-11de-844f-00155da18b00 + faece0a7-cefc-11de-8150-00155da18b00 true - View Attribute + Deleted 1033 - 6 + 2 @@ -287450,157 +297713,36683 @@ - 3250e202-b9bb-11de-844f-00155da18b00 + 1f83e0bb-cefd-11de-8150-00155da18b00 true - Localized Label + Deleted Unpublished 1033 - - - 3250e202-b9bb-11de-844f-00155da18b00 - - true - Localized Label - 1033 - - - - 7 - - - - - - - - - - - - false - true - - - 3250e204-b9bb-11de-844f-00155da18b00 + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 true - Relationship Extra Condition - 1033 + Ikke-publicerede blev slettet + 1030 - 3250e204-b9bb-11de-844f-00155da18b00 + 1f83e0bb-cefd-11de-8150-00155da18b00 true - Relationship Extra Condition + Deleted Unpublished 1033 - 8 + 3 - - + + + + + + 0 + + + + + dd16b72f-69b9-4453-bee9-fc37c8619b41 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 2 + 1900-01-01T00:00:00 + + + + + c2dd01b9-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 3250e206-b9bb-11de-844f-00155da18b00 - - true - Option Set - 1033 - - - - 3250e206-b9bb-11de-844f-00155da18b00 - - true - Option Set - 1033 - - - - 9 - - - - + true + Step-specific configuration for the plug-in type. Passed to the plug-in constructor at run time. + 1033 + + + 94077cf8-0306-466e-a0e0-9ee178e3101c - - - - - - - false - true - - - - 3250e208-b9bb-11de-844f-00155da18b00 - - true - Entity Relationship - 1033 - - - - 3250e208-b9bb-11de-844f-00155da18b00 - - true - Entity Relationship - 1033 - - - - 10 - - - - + true + Trinspecifik konfiguration til plug-in-typen. Den sendes til plug-in-konstruktøren på kørselstidspunktet. + 1030 + + + + c2dd01b9-2241-db11-898a-0007e9e17ebd + + true + Step-specific configuration for the plug-in type. Passed to the plug-in constructor at run time. + 1033 + + + + + + 617031c5-1834-11df-b172-00188b01dce6 - - - - - - - false - true - + true + Configuration + 1033 + + + d21eddfd-81bf-4cbf-a875-727c40641112 + + true + Konfiguration + 1030 + + + + 617031c5-1834-11df-b172-00188b01dce6 + + true + Configuration + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + configuration + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Configuration + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 1073741823 + + + Text + + + false + 0 + -1 + + + 6a20f6e4-06e3-49c0-90cd-4d8e736b3c47 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 10 + 1900-01-01T00:00:00 + + + + + 1d4901bf-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user who created the SDK message processing step. + 1033 + + + edc0fa2a-cd28-4f79-9798-770b8a02ba94 + + true + Entydigt id for den bruger, der oprettede SDK-meddelelsens behandlingstrin. + 1030 + + + + 1d4901bf-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user who created the SDK message processing step. + 1033 + + + + + + 617031c6-1834-11df-b172-00188b01dce6 + + true + Created By + 1033 + + + 20e6cfc7-7b96-4ec8-857b-3cfdbf045838 + + true + Oprettet af + 1030 + + + + 617031c6-1834-11df-b172-00188b01dce6 + + true + Created By + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + createdby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + 1a5696d7-797d-470e-9534-7189aba22a4d + + createdby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 49 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + createdbyname + 2025-11-06T00:19:26.6200064 + + false + canmodifyrequirementlevelsettings + None + + CreatedByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 637dbf32-aea7-4f71-8b2b-297f429fda3a + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + true + + 1 + 1900-01-01T00:00:00 + + + + + 154901bf-2241-db11-898a-0007e9e17ebd + + true + Date and time when the SDK message processing step was created. + 1033 + + + 2e037fe0-03a7-4fe7-9cba-2630d1754c53 + + true + Dato og klokkeslæt for oprettelse af SDK-meddelelsens behandlingstrin. + 1030 + + + + 154901bf-2241-db11-898a-0007e9e17ebd + + true + Date and time when the SDK message processing step was created. + 1033 + + + + + + 617031c7-1834-11df-b172-00188b01dce6 + + true + Created On + 1033 + + + 10f95abf-e6f9-4a75-9aed-0a1dd476833d + + true + Oprettet + 1030 + + + + 617031c7-1834-11df-b172-00188b01dce6 + + true + Created On + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + createdon + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedOn + + + DateTimeType + + 5.0.0.0 + false + 0 + + DateAndTime + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + + + + 64b9a810-d648-497a-ad06-bde806fd9b43 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 34 + 1900-01-01T00:00:00 + + + + + 95e2013f-0c2a-4aa2-a6dc-f26a0920ec8c + + true + Unique identifier of the delegate user who created the sdkmessageprocessingstep. + 1033 + + + 29f332bb-3ff0-48f3-9576-2e3d45e4034f + + true + Entydigt id for den stedfortræderbruger, der oprettede behandlingstrinnet for SDK-meddelelsen. + 1030 + + + + 95e2013f-0c2a-4aa2-a6dc-f26a0920ec8c + + true + Unique identifier of the delegate user who created the sdkmessageprocessingstep. + 1033 + + + + + + bffe0180-168a-4c75-9238-7761e2a9ff9d + + true + Created By (Delegate) + 1033 + + + 15e6ce77-69a3-4519-a8df-e1ed0259ed35 + + true + Oprettet af (stedfortræder) + 1030 + + + + bffe0180-168a-4c75-9238-7761e2a9ff9d + + true + Created By (Delegate) + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + createdonbehalfby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedOnBehalfBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + 40f2b4c7-226d-4d93-80a5-e80af47593e7 + + createdonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 42 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + createdonbehalfbyname + 2025-11-06T00:19:25.2130048 + + false + canmodifyrequirementlevelsettings + None + + CreatedOnBehalfByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + eaca3ee8-b540-4818-ac21-7c18052ecd11 + + createdonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 43 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + createdonbehalfbyyominame + 2025-11-06T00:19:27.4169984 + + false + canmodifyrequirementlevelsettings + None + + CreatedOnBehalfByYomiName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + createdonbehalfbyname + + Text + + + false + 0 + 320 + + + 72ef95d3-5b0e-49f3-838b-09ba2a163d19 + + + Integer + false + false + false + + false + canmodifyadditionalsettings + true + + 14 + 1900-01-01T00:00:00 + + + + + 1c4901bf-2241-db11-898a-0007e9e17ebd + + true + Customization level of the SDK message processing step. + 1033 + + + d7883e0b-0e14-42ac-88a2-054802addd6c + + true + Tilpasningsniveau for SDK-meddelelsens behandlingstrin. + 1030 + + + + 1c4901bf-2241-db11-898a-0007e9e17ebd + + true + Customization level of the SDK message processing step. + 1033 + + + + + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + customizationlevel + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + CustomizationLevel + + + IntegerType + + 5.0.0.0 + false + 0 + + None + 255 + -255 + + 0 + + + 7b777905-6eea-4025-9ad7-6cea364ab1e0 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 19 + 1900-01-01T00:00:00 + + + + + d0dd01b9-2241-db11-898a-0007e9e17ebd + + true + Description of the SDK message processing step. + 1033 + + + 8188c14b-05ff-48ac-aac2-9d8f159c0a67 + + true + Beskrivelse af behandlingstrin for SDK-meddelelse. + 1030 + + + + d0dd01b9-2241-db11-898a-0007e9e17ebd + + true + Description of the SDK message processing step. + 1033 + + + + + + 617031c8-1834-11df-b172-00188b01dce6 + + true + Description + 1033 + + + 67c6ae9e-eb88-4a74-817e-4d3ab5e94d40 + + true + Beskrivelse + 1030 + + + + 617031c8-1834-11df-b172-00188b01dce6 + + true + Description + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + description + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Description + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + d5faa564-9f41-4924-bb60-ab558f5c2565 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 10003 + 2025-11-06T01:23:14.5500032 + + + + + 4758d3eb-9a94-4bea-8ff0-1df4fe29ed0c + + true + EnablePluginProfiler + 1033 + + + + 4758d3eb-9a94-4bea-8ff0-1df4fe29ed0c + + true + EnablePluginProfiler + 1033 + + + + + + 5d64f38e-fd89-4910-b948-a14a7776abd0 + + true + EnablePluginProfiler + 1033 + + + + 5d64f38e-fd89-4910-b948-a14a7776abd0 + + true + EnablePluginProfiler + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + enablepluginprofiler + 2025-11-06T01:23:14.5500032 + + true + canmodifyrequirementlevelsettings + None + + EnablePluginProfiler + + + BooleanType + + 1.0.0.0 + false + 0 + + false + + 69be8728-afba-f011-bbd3-7c1e52365f30 + + + + + 6bbe8728-afba-f011-bbd3-7c1e52365f30 + + true + EnablePluginProfiler + 1033 + + + + 6bbe8728-afba-f011-bbd3-7c1e52365f30 + + true + EnablePluginProfiler + 1033 + + + + + + 6abe8728-afba-f011-bbd3-7c1e52365f30 + + true + EnablePluginProfiler + 1033 + + + + 6abe8728-afba-f011-bbd3-7c1e52365f30 + + true + EnablePluginProfiler + 1033 + + + + true + + false + iscustomizable + true + + false + true + sdkmessageprocessingstep_enablepluginprofiler + Boolean + 1.0.0.0 + + + + #0000ff + + + + + + false + true + + + + 7fa0c221-6b5d-4575-9e7d-7b6e8bc512b5 + + true + No + 1033 + + + + 7fa0c221-6b5d-4575-9e7d-7b6e8bc512b5 + + true + No + 1033 + + + + 0 + + + + + + #0000ff + + + + + + false + true + + + + 0fb7a6e9-33cb-4b08-b681-f4ef8689aab7 + + true + Yes + 1033 + + + + 0fb7a6e9-33cb-4b08-b681-f4ef8689aab7 + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 601c1166-458c-4eea-8750-6124fcf5f75f + + enablepluginprofiler + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10004 + 2025-11-06T01:23:14.5670016 + + + + + + + + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + enablepluginprofilername + 2025-11-06T01:23:14.5670016 + + true + canmodifyrequirementlevelsettings + None + + enablepluginprofilerName + + + VirtualType + + 1.0.0.0 + true + + + + + f6359a23-b96c-4994-ad00-832e2a7ee05f + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 66 + 1900-01-01T00:00:00 + + + + + cd1b0ea7-d7af-4794-b94f-212f318d08c7 + + true + Configuration for sending pipeline events to the Event Expander service. + 1033 + + + fa61ef35-23d3-43c2-be7e-8ac3579d9f1b + + true + Konfiguration for afsendelse af pipelinehændelser til tjenesten Event Expander. + 1030 + + + + cd1b0ea7-d7af-4794-b94f-212f318d08c7 + + true + Configuration for sending pipeline events to the Event Expander service. + 1033 + + + + + + ec0b1d75-2804-4f18-9c6b-4b61b2b83418 + + true + EventExpander + 1033 + + + 0814c165-e075-47bd-ba52-962c569e8484 + + true + EventExpander + 1030 + + + + ec0b1d75-2804-4f18-9c6b-4b61b2b83418 + + true + EventExpander + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + eventexpander + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + EventExpander + + + StringType + + 9.0.0.0 + false + 0 + + Text + Auto + 1073741823 + + + Text + + + false + 0 + -1 + + + d6615b08-e6c8-40bb-84ed-a2652632e32a + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 44 + 1900-01-01T00:00:00 + + + + + acd40e44-3088-4011-b507-1777d6fbe17a + + true + Unique identifier of the associated event handler. + 1033 + + + 22cd2724-28a3-4c5f-aa12-3a5f1253c77a + + true + Entydigt id for den tilknyttede hændelsesbehandler. + 1030 + + + + acd40e44-3088-4011-b507-1777d6fbe17a + + true + Unique identifier of the associated event handler. + 1033 + + + + + + d8f3e9b6-f9cf-4c5f-a135-a13a8b201e9d + + true + Event Handler + 1033 + + + 3b233395-6b44-4843-a3e7-7c33445c12b8 + + true + Hændelseshandler + 1030 + + + + d8f3e9b6-f9cf-4c5f-a135-a13a8b201e9d + + true + Event Handler + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + eventhandler + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + EventHandler + + + LookupType + + 5.0.0.0 + false + + + Regarding + + plugintype + serviceendpoint + + + + e2cc28ad-9e7c-4069-91b1-c1850d9a42e7 + + eventhandler + String + false + false + false + + false + canmodifyadditionalsettings + true + + 46 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + eventhandlername + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + EventHandlerName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + 3d9a01b7-4d21-4d93-811b-b4d479c4f8b0 + + eventhandler + EntityName + false + false + false + + false + canmodifyadditionalsettings + true + + 45 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + false + + eventhandlertypecode + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + EventHandlerTypeCode + + + EntityNameType + + 5.0.0.0 + false + + + + + + true + + + 105db31d-85e6-4974-9b65-6d15d98ac9b0 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 13 + 1900-01-01T00:00:00 + + + + + 114901bf-2241-db11-898a-0007e9e17ebd + + true + Comma-separated list of attributes. If at least one of these attributes is modified, the plug-in should execute. + 1033 + + + fd9824d0-70ca-45ea-b368-0f6ebaeff189 + + true + Kommasepareret liste over attributter. Hvis mindst én af disse attributter ændres, skal plug-in'et køres. + 1030 + + + + 114901bf-2241-db11-898a-0007e9e17ebd + + true + Comma-separated list of attributes. If at least one of these attributes is modified, the plug-in should execute. + 1033 + + + + + + 617031c9-1834-11df-b172-00188b01dce6 + + true + Filtering Attributes + 1033 + + + f0605407-1e2a-448c-98d4-f06d9bb15b2b + + true + Filtreringsattributter + 1030 + + + + 617031c9-1834-11df-b172-00188b01dce6 + + true + Filtering Attributes + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + filteringattributes + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + FilteringAttributes + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 100000 + + + Text + + + false + 0 + -1 + + + 4d44afe3-da0e-4552-802e-457ec348f7ca + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + false + + 10006 + 2025-11-06T04:55:06.2530048 + + + + + 7395a91c-61e9-4b65-b102-711d1c95d0c9 + + true + Unique identifier for fxexpression associated with SdkMessageProcessingStep. + 1033 + + + 69719d06-fe58-4654-9ef5-8fd76bb6efe9 + + true + Entydigt id for fxexpression, der er tilknyttet SdkMessageProcessingStep. + 1030 + + + + 7395a91c-61e9-4b65-b102-711d1c95d0c9 + + true + Unique identifier for fxexpression associated with SdkMessageProcessingStep. + 1033 + + + + + + b00cc6a5-abcd-4ca3-bb58-71c4b5237bb1 + + true + fxexpressionid + 1033 + + + b7f8436f-4331-42c2-a9b2-06118763c47a + + true + fxexpressionid + 1030 + + + + b00cc6a5-abcd-4ca3-bb58-71c4b5237bb1 + + true + fxexpressionid + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + fxexpressionid + 2025-11-06T04:55:06.7869952 + + false + canmodifyrequirementlevelsettings + None + + FxExpressionId + + + LookupType + + 1.0 + false + + + None + + fxexpression + + + + 613f5425-8a5b-4fb9-81c3-c9bb705a9875 + + fxexpressionid + String + false + false + false + + true + canmodifyadditionalsettings + true + + 10007 + 2025-11-06T04:55:06.8930048 + + + + + + + + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + fxexpressionidname + 2025-11-06T04:55:06.8930048 + + true + canmodifyrequirementlevelsettings + None + + FxExpressionIdName + + + StringType + + 9.1.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 200 + + + e78b0043-9c61-4abb-9fad-16de79eda3ef + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 24 + 1900-01-01T00:00:00 + + + + + cbdd01b9-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user to impersonate context when step is executed. + 1033 + + + a77111e0-a798-4733-8ee1-dcf09870511d + + true + Entydigt id for bruger til repræsentation af kontekst ved udførelse af trinnet. + 1030 + + + + cbdd01b9-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user to impersonate context when step is executed. + 1033 + + + + + + 617031ca-1834-11df-b172-00188b01dce6 + + true + Impersonating User + 1033 + + + 92749bc9-b6e7-4de8-9c61-f5ce247c2a1f + + true + Efterligner bruger + 1030 + + + + 617031ca-1834-11df-b172-00188b01dce6 + + true + Impersonating User + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + impersonatinguserid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ImpersonatingUserId + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + ff32f142-87af-4daf-b4bf-514114cdacc5 + + impersonatinguserid + String + false + false + false + + false + canmodifyadditionalsettings + true + + 50 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + impersonatinguseridname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ImpersonatingUserIdName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 6239ac65-7a52-4052-8ebb-b7a9c16a28ec + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 62 + 1900-01-01T00:00:00 + + + + + a2d15b0b-4c02-4a70-ac64-24d6d0fadeb4 + + true + Version in which the form is introduced. + 1033 + + + a24a9bce-3237-42f4-bf2c-1922fe48922e + + true + Version, som formularen introduceres i. + 1030 + + + + a2d15b0b-4c02-4a70-ac64-24d6d0fadeb4 + + true + Version in which the form is introduced. + 1033 + + + + + + 05d1b319-2d68-4aea-82df-66c29f04ee2d + + true + Introduced Version + 1033 + + + 050ea52f-fd56-4cfa-9090-252f1d28325b + + true + Introduceret version + 1030 + + + + 05d1b319-2d68-4aea-82df-66c29f04ee2d + + true + Introduced Version + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + false + true + + introducedversion + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + IntroducedVersion + + + StringType + + 6.0.0.0 + false + 0 + + VersionNumber + Auto + 48 + + + VersionNumber + + + false + 0 + 96 + + + 5696417f-0c89-405d-a9e6-b838fd4544b9 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 25 + 1900-01-01T00:00:00 + 5.0.0.0 + + + + 4c189460-0b35-419b-b280-4833912d34d5 + + true + Identifies if a plug-in should be executed from a parent pipeline, a child pipeline, or both. + 1033 + + + 04a55642-a992-475a-b9db-047590731cf9 + + true + Identificerer, om et plug-in skal køres fra en overordnet pipeline, en underordnet pipeline eller begge. + 1030 + + + + 4c189460-0b35-419b-b280-4833912d34d5 + + true + Identifies if a plug-in should be executed from a parent pipeline, a child pipeline, or both. + 1033 + + + + + + 643ab52d-db2d-4f28-be5c-9aeff2e48044 + + true + Invocation Source + 1033 + + + e8f0ed2d-207f-444d-8780-e6166eeb7d2c + + true + Aktiveringskilde + 1030 + + + + 643ab52d-db2d-4f28-be5c-9aeff2e48044 + + true + Invocation Source + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + false + + invocationsource + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + InvocationSource + + + PicklistType + + 5.0.0.0 + false + 0 + + 0 + + a15f5d9e-8d97-4803-867b-e5e3f849886b + + + + + 523e71b1-f0bc-49d6-a8d3-4902fb727087 + + true + Identifies if a plug-in should be executed from a parent pipeline, a child pipeline, or both. + 1033 + + + 3c0c3ceb-6181-43ff-9fa7-13ea65c722a2 + + true + Identificerer, om et plug-in skal køres fra en overordnet pipeline, en underordnet pipeline eller begge. + 1030 + + + + 523e71b1-f0bc-49d6-a8d3-4902fb727087 + + true + Identifies if a plug-in should be executed from a parent pipeline, a child pipeline, or both. + 1033 + + + + + + e072900d-75ee-47a0-a643-05d1b28927d7 + + true + Invocation Source + 1033 + + + 49a5519b-4dfd-4d0a-9087-dfa06abaf491 + + true + Aktiveringskilde + 1030 + + + + e072900d-75ee-47a0-a643-05d1b28927d7 + + true + Invocation Source + 1033 + + + + false + + false + iscustomizable + false + + false + true + sdkmessageprocessingstep_invocationsource + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + 38176a8b-545d-469d-82bd-07f6fe441e59 + + true + Internal + 1033 + + + 76425576-0fda-4d20-95f5-ecfb466aba0f + + true + Intern + 1030 + + + + 38176a8b-545d-469d-82bd-07f6fe441e59 + + true + Internal + 1033 + + + + -1 + + + + + + + + + + + + false + true + + + + 9a4928cf-609d-457a-a033-7ebfefae1f36 + + true + Parent + 1033 + + + 2c5ecb68-19fc-4c5e-bd65-d771377f388e + + true + Overordnet + 1030 + + + + 9a4928cf-609d-457a-a033-7ebfefae1f36 + + true + Parent + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 3c62b905-4a15-4329-ad48-4e530da56e6f + + true + Child + 1033 + + + fbd543fd-6726-497e-904c-48ec39892259 + + true + Underordnet + 1030 + + + + 3c62b905-4a15-4329-ad48-4e530da56e6f + + true + Child + 1033 + + + + 1 + + + + + + + + 0 + + + + + 16ce2904-555b-4e4d-a1e5-ef0359e427c1 + + invocationsource + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 31 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + invocationsourcename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + InvocationSourceName + + + VirtualType + + 5.0.0.0 + true + + + + + 3bb0b62d-a32f-4922-84df-6f105a291ebc + + + ManagedProperty + false + false + false + + false + canmodifyadditionalsettings + true + + 60 + 1900-01-01T00:00:00 + + + + + 0347fa86-631e-49ac-a622-7ebba9c5c472 + + true + Information that specifies whether this component can be customized. + 1033 + + + 68313ab1-3098-40f9-bf16-2b0dc32f9ff0 + + true + Oplysninger om, hvorvidt denne komponent kan tilpasses. + 1030 + + + + 0347fa86-631e-49ac-a622-7ebba9c5c472 + + true + Information that specifies whether this component can be customized. + 1033 + + + + + + db634820-6c56-485c-bc2c-49fb53484df1 + + true + Customizable + 1033 + + + 6389d991-20fc-41d7-b1c8-0c25cdb8d78b + + true + Kan tilpasses + 1030 + + + + db634820-6c56-485c-bc2c-49fb53484df1 + + true + Customizable + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + iscustomizable + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + IsCustomizable + + + ManagedPropertyType + + 5.0.0.0 + false + + + iscustomizableanddeletable + + 0 + Boolean + + + 12351fef-69e5-11df-a50e-f4ce462d9b5d + + + ManagedProperty + false + false + false + + false + canmodifyadditionalsettings + true + + 61 + 1900-01-01T00:00:00 + + + + + 12351ff0-69e5-11df-a50e-f4ce462d9b5d + + true + Information that specifies whether this component should be hidden. + 1033 + + + 6089c06a-0071-4a48-93d8-08c183f7a09f + + true + Oplysning om, hvorvidt komponenten bør skjules. + 1030 + + + + 12351ff0-69e5-11df-a50e-f4ce462d9b5d + + true + Information that specifies whether this component should be hidden. + 1033 + + + + + + 12351ff1-69e5-11df-a50e-f4ce462d9b5d + + true + Hidden + 1033 + + + 926d36f4-c216-410e-9491-f6b49d86c036 + + true + Skjult + 1030 + + + + 12351ff1-69e5-11df-a50e-f4ce462d9b5d + + true + Hidden + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + true + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + ishidden + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + IsHidden + + + ManagedPropertyType + + 5.0.0.0 + false + + + ishidden + + 0 + Boolean + + + de979383-7a59-4830-9f0c-a4b8196cdf00 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 57 + 1900-01-01T00:00:00 + + + + + b42eeebc-d76a-49d9-94e0-e2926f07ee31 + + true + Information that specifies whether this component is managed. + 1033 + + + e39f58dd-783a-4494-98d7-d298b3b61794 + + true + Oplysning om, hvorvidt komponenten er administreret. + 1030 + + + + b42eeebc-d76a-49d9-94e0-e2926f07ee31 + + true + Information that specifies whether this component is managed. + 1033 + + + + + + 09916adb-965b-426b-a539-cf19f0a12c08 + + true + State + 1033 + + + 754e1dce-2a9e-4e1e-8ebc-faf6cef1b747 + + true + Tilstand + 1030 + + + + 09916adb-965b-426b-a539-cf19f0a12c08 + + true + State + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + true + true + false + true + + ismanaged + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + IsManaged + + + BooleanType + + 5.0.0.0 + false + 0 + + false + + 9d04e035-5408-4c1d-a5aa-20445a02f691 + + + + + b41954a2-f3a5-47e9-ae13-ceb49de4465b + + true + Information about whether the current component is managed. + 1033 + + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + + + + b41954a2-f3a5-47e9-ae13-ceb49de4465b + + true + Information about whether the current component is managed. + 1033 + + + + + + 45a188b1-91a8-4019-b582-cebda8081064 + + true + Is Component Managed + 1033 + + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + + + + 45a188b1-91a8-4019-b582-cebda8081064 + + true + Is Component Managed + 1033 + + + + false + + false + iscustomizable + false + + true + true + ismanaged + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 443c7078-b7cb-47e7-8547-08dfa82950d0 + + true + Unmanaged + 1033 + + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + + + + 443c7078-b7cb-47e7-8547-08dfa82950d0 + + true + Unmanaged + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + ec886b5b-7e97-4c62-b30c-bf295639d540 + + true + Managed + 1033 + + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + + + + ec886b5b-7e97-4c62-b30c-bf295639d540 + + true + Managed + 1033 + + + + 1 + + + + + 0 + + + 143f00ae-c193-43b9-9dde-963971bbfa62 + + ismanaged + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 59 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + ismanagedname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + IsManagedName + + + VirtualType + + 5.0.0.0 + true + + + + + 078f0e96-1a60-47c6-9dee-430c19cc0cb9 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 21 + 1900-01-01T00:00:00 + + + + + 174901bf-2241-db11-898a-0007e9e17ebd + + true + Run-time mode of execution, for example, synchronous or asynchronous. + 1033 + + + d3e73a9c-7fea-43d5-b82f-4b05e870ca2d + + true + Kørselstilstand, f.eks. synkron eller asynkron. + 1030 + + + + 174901bf-2241-db11-898a-0007e9e17ebd + + true + Run-time mode of execution, for example, synchronous or asynchronous. + 1033 + + + + + + 164901bf-2241-db11-898a-0007e9e17ebd + + true + Execution Mode + 1033 + + + fd372ea2-2658-47b1-88c3-f9ec21ab43a1 + + true + Udførelsestilstand + 1030 + + + + 164901bf-2241-db11-898a-0007e9e17ebd + + true + Execution Mode + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + mode + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + Mode + + + PicklistType + + 5.0.0.0 + false + 0 + + 0 + + 310b9033-08e7-4577-aae0-9adbfc1fcb44 + + + + + 5dd19e03-1c2d-414b-9d59-d02752bd5665 + + true + Run-time mode of execution, for example, synchronous or asynchronous. + 1033 + + + 58860f23-ac6b-4f15-ac06-79e478b67e3a + + true + Kørselstilstand, f.eks. synkron eller asynkron. + 1030 + + + + 5dd19e03-1c2d-414b-9d59-d02752bd5665 + + true + Run-time mode of execution, for example, synchronous or asynchronous. + 1033 + + + + + + 94d41f17-97e5-4c4a-b79c-f715f309e99a + + true + Mode + 1033 + + + d10f018b-710c-4e4b-b5a5-0e6f965bb4a6 + + true + Tilstand + 1030 + + + + 94d41f17-97e5-4c4a-b79c-f715f309e99a + + true + Mode + 1033 + + + + false + + false + iscustomizable + false + + false + true + sdkmessageprocessingstep_mode + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + 194901bf-2241-db11-898a-0007e9e17ebd + + true + Synchronous + 1033 + + + aa3ed9c6-a407-4af3-ad01-a11e5625d61f + + true + Synkron + 1030 + + + + 194901bf-2241-db11-898a-0007e9e17ebd + + true + Synchronous + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 1b4901bf-2241-db11-898a-0007e9e17ebd + + true + Asynchronous + 1033 + + + b3a86e6c-159a-46ed-9c60-2b571aec0ce0 + + true + Asynkron + 1030 + + + + 1b4901bf-2241-db11-898a-0007e9e17ebd + + true + Asynchronous + 1033 + + + + 1 + + + + + + + + 0 + + + + + 5c0224d2-fb0f-444e-ab91-5514993f1aec + + mode + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 30 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModeName + + + VirtualType + + 5.0.0.0 + true + + + + + b7371f72-f9c5-410c-bfd0-3e48d4d730b6 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 15 + 1900-01-01T00:00:00 + + + + + 214901bf-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user who last modified the SDK message processing step. + 1033 + + + e19d640b-b1cd-4318-ac11-38b0fc731ff8 + + true + Entydigt id for den bruger, der sidst ændrede SDK-meddelelsens behandlingstrin. + 1030 + + + + 214901bf-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user who last modified the SDK message processing step. + 1033 + + + + + + 617031cb-1834-11df-b172-00188b01dce6 + + true + Modified By + 1033 + + + 2f85ab79-46de-449a-9e32-8762cf34cc2c + + true + Ændret af + 1030 + + + + 617031cb-1834-11df-b172-00188b01dce6 + + true + Modified By + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + modifiedby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + d68bcdc4-6621-492f-93ae-149b291e67bb + + modifiedby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 51 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modifiedbyname + 2025-11-06T00:19:24.3229952 + + false + canmodifyrequirementlevelsettings + None + + ModifiedByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 9caa8423-cf02-47f1-accb-2da43048b6f8 + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + true + + 7 + 1900-01-01T00:00:00 + + + + + 0d4901bf-2241-db11-898a-0007e9e17ebd + + true + Date and time when the SDK message processing step was last modified. + 1033 + + + 0f4d5f17-ec24-4e22-ac99-cbe06ad4f956 + + true + Dato og klokkeslæt for sidste ændring af SDK-meddelelsens behandlingstrin. + 1030 + + + + 0d4901bf-2241-db11-898a-0007e9e17ebd + + true + Date and time when the SDK message processing step was last modified. + 1033 + + + + + + 617031cc-1834-11df-b172-00188b01dce6 + + true + Modified On + 1033 + + + 29fce853-ebbc-450d-be24-32e56a2dc988 + + true + Ændret + 1030 + + + + 617031cc-1834-11df-b172-00188b01dce6 + + true + Modified On + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + modifiedon + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOn + + + DateTimeType + + 5.0.0.0 + false + 0 + + DateAndTime + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + + + + c4f0e8d8-086e-4c52-a01c-0629a9ed2237 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 33 + 1900-01-01T00:00:00 + + + + + 96068e81-a64a-44f6-b68c-a0915ed68699 + + true + Unique identifier of the delegate user who last modified the sdkmessageprocessingstep. + 1033 + + + 208d31e4-4ae9-4900-8d36-24f73562217e + + true + Entydigt id for den stedfortræderbruger, der senest ændrede behandlingstrinnet for SDK-meddelelsen. + 1030 + + + + 96068e81-a64a-44f6-b68c-a0915ed68699 + + true + Unique identifier of the delegate user who last modified the sdkmessageprocessingstep. + 1033 + + + + + + bcccf33a-28e5-4aef-babe-ca5546f6f685 + + true + Modified By (Delegate) + 1033 + + + 81d5404f-a937-4bbd-887e-9d4948bec839 + + true + Ændret af (stedfortræder) + 1030 + + + + bcccf33a-28e5-4aef-babe-ca5546f6f685 + + true + Modified By (Delegate) + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + modifiedonbehalfby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOnBehalfBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + 37c50f0f-98ca-4425-872e-2f0097a58e85 + + modifiedonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 38 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modifiedonbehalfbyname + 2025-11-06T00:19:26.6070016 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOnBehalfByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 8de7d48a-5aa5-4f5b-b5de-24f8b7481267 + + modifiedonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 39 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modifiedonbehalfbyyominame + 2025-11-06T00:19:26.9170048 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOnBehalfByYomiName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + modifiedonbehalfbyname + + Text + + + false + 0 + 320 + + + ac8acaf3-3b97-4c9a-8c50-fa60fbc5cb54 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 58 + 1900-01-01T00:00:00 + + + + + 176e2929-796f-49c8-874d-5359d2cfbdb0 + + true + Name of SdkMessage processing step. + 1033 + + + bd1f18af-575a-4a39-9091-eb46a24822f8 + + true + Navnet på behandlingstrinnet for SDK-meddelelsen. + 1030 + + + + 176e2929-796f-49c8-874d-5359d2cfbdb0 + + true + Name of SdkMessage processing step. + 1033 + + + + + + 80b2ca4e-eb7c-4b1b-a8a9-a4fa8f5a0cce + + true + Name + 1033 + + + 890ee26d-cf43-4677-a62b-abe03f40a4ff + + true + Navn + 1030 + + + + 80b2ca4e-eb7c-4b1b-a8a9-a4fa8f5a0cce + + true + Name + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + true + + false + isrenameable + false + + false + true + true + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + name + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + Name + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + 317f070d-48bc-4ee3-a4fb-80f612100a1a + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 11 + 1900-01-01T00:00:00 + + + + + 0e4901bf-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the organization with which the SDK message processing step is associated. + 1033 + + + 9d727745-7158-43b1-8dcd-ef48378838a8 + + true + Entydigt id for den organisation, som SDK-meddelelsens behandlingstrin er tilknyttet. + 1030 + + + + 0e4901bf-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the organization with which the SDK message processing step is associated. + 1033 + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + organizationid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + OrganizationId + + + LookupType + + 5.0.0.0 + false + + + None + + organization + + + + f95c8000-fc79-4288-bab0-98e5f5a1e831 + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + true + + 52 + 1900-01-01T00:00:00 + + + + + f95c8001-fc79-4288-bab0-98e5f5a1e831 + + true + For internal use only. + 1033 + + + 2a0463cf-bf9c-48c8-bca6-241733a8cbe1 + + true + Kun til intern brug. + 1030 + + + + f95c8001-fc79-4288-bab0-98e5f5a1e831 + + true + For internal use only. + 1033 + + + + + + f95c8002-fc79-4288-bab0-98e5f5a1e831 + + true + Record Overwrite Time + 1033 + + + 61a9ad0d-c97a-4cdb-b1b5-c4c56b207829 + + true + Klokkeslæt for overskrivning af post + 1030 + + + + f95c8002-fc79-4288-bab0-98e5f5a1e831 + + true + Record Overwrite Time + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + overwritetime + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + OverwriteTime + + + DateTimeType + + 5.0.0.0 + false + 0 + + DateOnly + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + + + + cc361213-7d1f-45a7-a5e8-53c7b6143a3f + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 4 + 1900-01-01T00:00:00 + 5.0.0.0 + + + + cddd01b9-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the plug-in type associated with the step. + 1033 + + + dbc6bab0-9843-476b-bea1-281ffe43ee6d + + true + Entydigt id for plug-in-typen, der er tilknyttet trinnet. + 1030 + + + + cddd01b9-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the plug-in type associated with the step. + 1033 + + + + + + 37a71755-fe94-4e5f-8146-8a1bfc58ea7c + + true + Plug-In Type + 1033 + + + 418fb57e-f834-457d-bcd7-c8679314e2aa + + true + Plug-in-type + 1030 + + + + 37a71755-fe94-4e5f-8146-8a1bfc58ea7c + + true + Plug-In Type + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + false + + plugintypeid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + PluginTypeId + + + LookupType + + 5.0.0.0 + false + + + None + + sdkmessagefilter + + + + e8965be8-482c-4135-8f16-c621789fba99 + + plugintypeid + String + false + false + false + + false + canmodifyadditionalsettings + true + + 53 + 1900-01-01T00:00:00 + 5.0.0.0 + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + plugintypeidname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + PluginTypeIdName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 1e91a08e-a0e0-4d1e-a5e5-a95c7d0aac19 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + false + + 10005 + 2025-11-06T04:55:06.2530048 + + + + + 64609ddf-4cf2-4181-a912-7ebc0843690e + + true + Unique identifier for powerfxrule associated with SdkMessageProcessingStep. + 1033 + + + 9fa3c2bd-888b-42a0-92af-1e1a6c92ee0f + + true + Entydigt id for powerfxrule, der er tilknyttet SdkMessageProcessingStep. + 1030 + + + + 64609ddf-4cf2-4181-a912-7ebc0843690e + + true + Unique identifier for powerfxrule associated with SdkMessageProcessingStep. + 1033 + + + + + + 3423d8a7-cb9d-4365-a179-df112998a5d5 + + true + powerfxruleid + 1033 + + + 186e7e39-eb11-46f9-9c45-7b92be940cf9 + + true + powerfxruleid + 1030 + + + + 3423d8a7-cb9d-4365-a179-df112998a5d5 + + true + powerfxruleid + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + powerfxruleid + 2025-11-06T04:55:06.9730048 + + false + canmodifyrequirementlevelsettings + None + + PowerfxRuleId + + + LookupType + + 1.0 + false + + + None + + powerfxrule + + + + 703adad5-144c-4e4a-adc0-3606d2e4f211 + + powerfxruleid + String + false + false + false + + true + canmodifyadditionalsettings + true + + 10008 + 2025-11-06T04:55:07.0370048 + + + + + + + + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + powerfxruleidname + 2025-11-06T04:55:07.0370048 + + true + canmodifyrequirementlevelsettings + None + + PowerfxRuleIdName + + + StringType + + 9.1.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 200 + + + 4fbad614-6842-49b8-bfda-2693a108e923 + + + Integer + false + false + false + + false + canmodifyadditionalsettings + true + + 5 + 1900-01-01T00:00:00 + + + + + 144901bf-2241-db11-898a-0007e9e17ebd + + true + Processing order within the stage. + 1033 + + + 8a4be626-ebad-45d7-b153-30e24b88b542 + + true + Behandler ordre i trinnet. + 1030 + + + + 144901bf-2241-db11-898a-0007e9e17ebd + + true + Processing order within the stage. + 1033 + + + + + + 617031cd-1834-11df-b172-00188b01dce6 + + true + Execution Order + 1033 + + + 3d505de4-e779-4cd1-9380-9a7d71f4ce4c + + true + Udførelsesrækkefølge + 1030 + + + + 617031cd-1834-11df-b172-00188b01dce6 + + true + Execution Order + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + rank + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + Rank + + + IntegerType + + 5.0.0.0 + false + 0 + + None + 2147483647 + -2147483648 + + 0 + + + a76cae40-c5a1-4308-b31e-d4aae57cb2aa + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 10009 + 2025-11-06T05:11:57.9830016 + + + + + 9add322b-e0c6-4207-93f6-9f9dfc55fe32 + + true + For internal use only. Holds miscellaneous properties related to runtime integration. + 1033 + + + 8fe82c21-1dfd-4fa7-b549-1515ea144919 + + true + Kun til intern brug. Indeholder diverse egenskaber, der er relateret til kørselsintegration. + 1030 + + + + 9add322b-e0c6-4207-93f6-9f9dfc55fe32 + + true + For internal use only. Holds miscellaneous properties related to runtime integration. + 1033 + + + + + + 9ae5dc6a-b206-45b4-bd63-f3c6ffb89985 + + true + Runtime Integration Properties + 1033 + + + f04985a1-b10f-4ac8-ac04-7bfb23418827 + + true + Egenskaber for kørselsintegration + 1030 + + + + 9ae5dc6a-b206-45b4-bd63-f3c6ffb89985 + + true + Runtime Integration Properties + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + runtimeintegrationproperties + 2025-11-06T05:11:57.9830016 + + false + canmodifyrequirementlevelsettings + None + + RuntimeIntegrationProperties + + + StringType + + 9.1.0.0 + false + 0 + + Text + Auto + 512 + + + Text + + + false + 0 + -1 + + + 2479fe23-bb5a-46a0-9fef-42292c358c7c + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 22 + 1900-01-01T00:00:00 + + + + + 1f4901bf-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message filter. + 1033 + + + b013f93f-0aca-402a-8f30-04cd21882164 + + true + Entydigt id for SDK-meddelelsesfilteret. + 1030 + + + + 1f4901bf-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message filter. + 1033 + + + + + + 617031ce-1834-11df-b172-00188b01dce6 + + true + SdkMessage Filter + 1033 + + + 30096c6a-6972-45d2-b48a-e794d9666a1f + + true + SDK-meddelelsesfilter + 1030 + + + + 617031ce-1834-11df-b172-00188b01dce6 + + true + SdkMessage Filter + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + sdkmessagefilterid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SdkMessageFilterId + + + LookupType + + 5.0.0.0 + false + + + None + + sdkmessagefilter + + + + 0b2f313f-cdc5-4f65-aaf6-3c4a1684311a + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 6 + 1900-01-01T00:00:00 + + + + + 124901bf-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message. + 1033 + + + 32744930-ac61-4ff7-8bae-4f0289f5c66b + + true + Entydigt id for SDK-meddelelsen. + 1030 + + + + 124901bf-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message. + 1033 + + + + + + 617031cf-1834-11df-b172-00188b01dce6 + + true + SDK Message + 1033 + + + ac1888a8-db67-4e69-905d-7e373f4b1026 + + true + Sdk-meddelelse + 1030 + + + + 617031cf-1834-11df-b172-00188b01dce6 + + true + SDK Message + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + sdkmessageid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SdkMessageId + + + LookupType + + 5.0.0.0 + false + + + None + + sdkmessage + + + + 72f140f6-36e5-4571-bf64-3dea3e15be59 + + sdkmessageid + String + false + false + false + + false + canmodifyadditionalsettings + true + + 54 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + sdkmessageidname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SdkMessageIdName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + d79fcd2e-0ed3-4ee6-8adc-b3227456aa38 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 8 + 1900-01-01T00:00:00 + + + + + cfdd01b9-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message processing step entity. + 1033 + + + ebc93bd8-e5d8-4dbf-ab4c-8dad1638857c + + true + Entydigt id for SDK-meddelelsens behandlingstrinobjekt. + 1030 + + + + cfdd01b9-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message processing step entity. + 1033 + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + true + + true + canmodifyglobalfiltersettings + false + + true + true + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + false + true + + sdkmessageprocessingstepid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SdkMessageProcessingStepId + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + 9fb91f92-85bf-41ce-b8fc-118c6d3ad910 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 12 + 1900-01-01T00:00:00 + + + + + 104901bf-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message processing step. + 1033 + + + 9ff54d59-2974-4b0e-807a-bc003a1e4b74 + + true + Entydigt id for SDK-meddelelsens behandlingstrin. + 1030 + + + + 104901bf-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message processing step. + 1033 + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + sdkmessageprocessingstepidunique + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SdkMessageProcessingStepIdUnique + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + 7ade6fbd-ed6f-4929-a34f-4cd4c37d68eb + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 18 + 1900-01-01T00:00:00 + + + + + 1b1171c6-4d37-4e1d-abbe-9378b9f7f6a9 + + true + Unique identifier of the Sdk message processing step secure configuration. + 1033 + + + 3fa7e36f-329c-4003-9963-79f33c09c29c + + true + Entydigt id for den sikre konfiguration af Sdk-meddelelsesbehandlingstrinnet. + 1030 + + + + 1b1171c6-4d37-4e1d-abbe-9378b9f7f6a9 + + true + Unique identifier of the Sdk message processing step secure configuration. + 1033 + + + + + + 617031d0-1834-11df-b172-00188b01dce6 + + true + SDK Message Processing Step Secure Configuration + 1033 + + + eb91976d-16bd-4bb5-872b-bfea0b19f07b + + true + Sikker konfiguration af behandlingstrin for Sdk-meddelelse + 1030 + + + + 617031d0-1834-11df-b172-00188b01dce6 + + true + SDK Message Processing Step Secure Configuration + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + sdkmessageprocessingstepsecureconfigid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + ApplicationRequired + + SdkMessageProcessingStepSecureConfigId + + + LookupType + + 5.0.0.0 + false + + + None + + sdkmessageprocessingstepsecureconfig + + + + 15d71000-3ba6-4734-89f9-327179be6218 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 55 + 1900-01-01T00:00:00 + + + + + 15d71001-3ba6-4734-89f9-327179be6218 + + true + Unique identifier of the associated solution. + 1033 + + + 1bf08594-60d7-4ac2-958c-41ef3102415c + + true + Entydigt id for den tilknyttede løsning. + 1030 + + + + 15d71001-3ba6-4734-89f9-327179be6218 + + true + Unique identifier of the associated solution. + 1033 + + + + + + 15d71002-3ba6-4734-89f9-327179be6218 + + true + Solution + 1033 + + + 867922ca-aa8c-4d37-acdd-03f243932b3a + + true + Løsning + 1030 + + + + 15d71002-3ba6-4734-89f9-327179be6218 + + true + Solution + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + solutionid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SolutionId + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + df46dd2a-fa4e-4c1a-8ef3-0c5bce965fd8 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 9 + 1900-01-01T00:00:00 + + + + + d2dd01b9-2241-db11-898a-0007e9e17ebd + + true + Stage in the execution pipeline that the SDK message processing step is in. + 1033 + + + 7952ce53-7475-4654-8cc1-1c662ad03929 + + true + Trin i kørselspipelinen, som SDK-meddelelsens behandlingstrin befinder sig i. + 1030 + + + + d2dd01b9-2241-db11-898a-0007e9e17ebd + + true + Stage in the execution pipeline that the SDK message processing step is in. + 1033 + + + + + + d1dd01b9-2241-db11-898a-0007e9e17ebd + + true + Execution Stage + 1033 + + + 9f642500-e022-4995-8cc5-2761b3bc551f + + true + Udførelsesfase + 1030 + + + + d1dd01b9-2241-db11-898a-0007e9e17ebd + + true + Execution Stage + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + stage + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + Stage + + + PicklistType + + 5.0.0.0 + false + 0 + + 10 + + 6435a092-00aa-41ea-84b9-84eb55ce813c + + + + + 7d8f956c-97a3-4a9c-b109-55580eea303d + + true + Stage in the execution pipeline that the SDK message processing step is in. + 1033 + + + f2969e7e-6a7d-4e76-890a-839739619a08 + + true + Trin i kørselspipelinen, som SDK-meddelelsens behandlingstrin befinder sig i. + 1030 + + + + 7d8f956c-97a3-4a9c-b109-55580eea303d + + true + Stage in the execution pipeline that the SDK message processing step is in. + 1033 + + + + + + 79a61071-8cc0-48b0-912c-615ce367dfce + + true + Stage + 1033 + + + da467f45-41c6-4f41-ad21-803251524e40 + + true + Fase + 1030 + + + + 79a61071-8cc0-48b0-912c-615ce367dfce + + true + Stage + 1033 + + + + false + + false + iscustomizable + false + + false + true + sdkmessageprocessingstep_stage + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + a5d6bf08-ce39-426c-b758-aaadcce89e04 + + true + Initial Pre-operation (For internal use only) + 1033 + + + 9bca73da-de21-4dc5-b0cc-fc5d01e78977 + + true + Starthandling (kun til intern brug) + 1030 + + + + a5d6bf08-ce39-426c-b758-aaadcce89e04 + + true + Initial Pre-operation (For internal use only) + 1033 + + + + 5 + + + + + + + + + + + + false + true + + + + d4dd01b9-2241-db11-898a-0007e9e17ebd + + true + Pre-validation + 1033 + + + 01d29d93-3d34-4bce-9a46-4d5d40af5d29 + + true + Startvalidering + 1030 + + + + d4dd01b9-2241-db11-898a-0007e9e17ebd + + true + Pre-validation + 1033 + + + + 10 + + + + + + + + + + + + false + true + + + + b5cb3b13-9cbe-47f9-a539-a06446a82f56 + + true + Internal Pre-operation Before External Plugins (For internal use only) + 1033 + + + 4ae40048-ad6c-4963-909e-34f9b139cccd + + true + Intern starthandling før eksterne plug-ins (kun til intern brug) + 1030 + + + + b5cb3b13-9cbe-47f9-a539-a06446a82f56 + + true + Internal Pre-operation Before External Plugins (For internal use only) + 1033 + + + + 15 + + + + + + + + + + + + false + true + + + + d6dd01b9-2241-db11-898a-0007e9e17ebd + + true + Pre-operation + 1033 + + + 8ca8b0bd-197f-4f67-8f33-08a718e6a1f9 + + true + Starthandling + 1030 + + + + d6dd01b9-2241-db11-898a-0007e9e17ebd + + true + Pre-operation + 1033 + + + + 20 + + + + + + + + + + + + false + true + + + + a116fe5b-f714-45f5-870e-10f96e00c085 + + true + Internal Pre-operation After External Plugins (For internal use only) + 1033 + + + 4cef447a-5e13-4be9-aad3-29b66af2e032 + + true + Intern starthandling efter eksterne plug-ins (kun til intern brug) + 1030 + + + + a116fe5b-f714-45f5-870e-10f96e00c085 + + true + Internal Pre-operation After External Plugins (For internal use only) + 1033 + + + + 25 + + + + + + + + + + + + false + true + + + + d8dd01b9-2241-db11-898a-0007e9e17ebd + + true + Main Operation (For internal use only) + 1033 + + + 71d43ad9-a25e-4d22-a5e9-f9103179f765 + + true + Hovedhandling (kun til intern brug) + 1030 + + + + d8dd01b9-2241-db11-898a-0007e9e17ebd + + true + Main Operation (For internal use only) + 1033 + + + + 30 + + + + + + + + + + + + false + true + + + + b94760f5-9473-4876-adc8-cf5ff2361934 + + true + Internal Post-operation Before External Plugins (For internal use only) + 1033 + + + ac903879-dd7a-4bc1-9f11-b94ca01a9f47 + + true + Intern efterfølgende handling før eksterne plug-ins (kun til intern brug) + 1030 + + + + b94760f5-9473-4876-adc8-cf5ff2361934 + + true + Internal Post-operation Before External Plugins (For internal use only) + 1033 + + + + 35 + + + + + + + + + + + + false + true + + + + dadd01b9-2241-db11-898a-0007e9e17ebd + + true + Post-operation + 1033 + + + 51ba4d7f-604d-4d67-97af-d8342ba651ab + + true + Efterfølgende handling + 1030 + + + + dadd01b9-2241-db11-898a-0007e9e17ebd + + true + Post-operation + 1033 + + + + 40 + + + + + + + + + + + + false + true + + + + ec7d21fa-8a49-4a07-b7eb-86b1a6670f13 + + true + Internal Post-operation After External Plugins (For internal use only) + 1033 + + + 7d2ce86a-e15e-41b3-9d9c-46b7dcac43ba + + true + Intern efterfølgende handling efter eksterne plug-ins (kun til intern brug) + 1030 + + + + ec7d21fa-8a49-4a07-b7eb-86b1a6670f13 + + true + Internal Post-operation After External Plugins (For internal use only) + 1033 + + + + 45 + + + + + + + + + + + + false + true + + + + dcdd01b9-2241-db11-898a-0007e9e17ebd + + true + Post-operation (Deprecated) + 1033 + + + c5303a6e-5c82-4469-9532-d789c5482ccd + + true + Efterfølgende handling (frarådes) + 1030 + + + + dcdd01b9-2241-db11-898a-0007e9e17ebd + + true + Post-operation (Deprecated) + 1033 + + + + 50 + + + + + + + + + + + + false + true + + + + 3a7eadd3-8b9e-455a-b217-881691aa91f1 + + true + Final Post-operation (For internal use only) + 1033 + + + c3238059-4d2a-4a39-adeb-f4147f624686 + + true + Afsluttende efterfølgende handling (kun til intern brug) + 1030 + + + + 3a7eadd3-8b9e-455a-b217-881691aa91f1 + + true + Final Post-operation (For internal use only) + 1033 + + + + 55 + + + + + + + + + + + + false + true + + + + c66c841a-6b75-4c1e-bdbc-02850d85d22b + + true + Pre-Commit stage fired before transaction commit (For internal use only) + 1033 + + + 483daebb-875b-4b21-b60c-d63b69dd91eb + + true + Fase før bekræftelse blev udløst før bekræftelse af transaktion (kun til intern brug) + 1030 + + + + c66c841a-6b75-4c1e-bdbc-02850d85d22b + + true + Pre-Commit stage fired before transaction commit (For internal use only) + 1033 + + + + 80 + + + + + + + + + + + + false + true + + + + 8075ae00-f15d-48fb-a4bb-2499e3b4b55f + + true + Post-Commit stage fired after transaction commit (For internal use only) + 1033 + + + fd66a8c3-5e87-4b55-b865-e4d87e1047d9 + + true + Fase efter bekræftelse blev udløst efter bekræftelse af transaktion (kun til intern brug) + 1030 + + + + 8075ae00-f15d-48fb-a4bb-2499e3b4b55f + + true + Post-Commit stage fired after transaction commit (For internal use only) + 1033 + + + + 90 + + + + + + + + 0 + + + + + 2e8ce1f0-b153-4d5e-861c-4d2bdbbb2ac9 + + stage + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 27 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + stagename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + StageName + + + VirtualType + + 5.0.0.0 + true + + + + + 614d1ea5-c483-db11-9d7e-00137299e160 + + + State + false + false + false + + false + canmodifyadditionalsettings + true + + 16 + 1900-01-01T00:00:00 + + + + + 624d1ea5-c483-db11-9d7e-00137299e160 + + true + Status of the SDK message processing step. + 1033 + + + 7f085de5-d66d-4b41-9f0f-7c74d7c44f71 + + true + Status for SDK-meddelelsens behandlingstrin. + 1030 + + + + 624d1ea5-c483-db11-9d7e-00137299e160 + + true + Status of the SDK message processing step. + 1033 + + + + + + 674d1ea5-c483-db11-9d7e-00137299e160 + + true + Status + 1033 + + + 515bd5b5-b2da-44ea-bef9-1a85450ee0eb + + true + Status + 1030 + + + + 674d1ea5-c483-db11-9d7e-00137299e160 + + true + Status + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + true + true + + statecode + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + StateCode + + + StateType + + 5.0.0.0 + false + + + 0 + + 3f3ead3d-8142-457a-a887-c45d7915bbd3 + + + + + 1164f499-4c88-4486-a5ba-7c32696024ea + + true + Status of the SDK message processing step. + 1033 + + + 74e34a3c-3d40-401f-8caa-7f46abb0f6db + + true + Status for SDK-meddelelsens behandlingstrin. + 1030 + + + + 1164f499-4c88-4486-a5ba-7c32696024ea + + true + Status of the SDK message processing step. + 1033 + + + + + + f4ff9715-d6c3-4aee-a802-9aa13b173599 + + true + Status + 1033 + + + 1d6973dc-d8b9-4c11-b051-73fd87556548 + + true + Status + 1030 + + + + f4ff9715-d6c3-4aee-a802-9aa13b173599 + + true + Status + 1033 + + + + false + + false + iscustomizable + false + + false + true + sdkmessageprocessingstep_statecode + State + 5.0.0.0 + + + + + + + + + + + false + true + + + + 644d1ea5-c483-db11-9d7e-00137299e160 + + true + Enabled + 1033 + + + 85a6dec5-e417-45aa-a07f-d6fb8f51a9d8 + + true + Aktiveret + 1030 + + + + 644d1ea5-c483-db11-9d7e-00137299e160 + + true + Enabled + 1033 + + + + 0 + + 1 + Enabled + + + + + + + + + + + false + true + + + + 664d1ea5-c483-db11-9d7e-00137299e160 + + true + Disabled + 1033 + + + 48a43803-51ef-43d4-9dce-12b7cf384865 + + true + Deaktiveret + 1030 + + + + 664d1ea5-c483-db11-9d7e-00137299e160 + + true + Disabled + 1033 + + + + 1 + + 2 + Disabled + + + + + + + + 684d1ea5-c483-db11-9d7e-00137299e160 + + statecode + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 26 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + statecodename + 2025-11-06T00:19:23.2300032 + + false + canmodifyrequirementlevelsettings + None + + StateCodeName + + + VirtualType + + 5.0.0.0 + true + + + + + 694d1ea5-c483-db11-9d7e-00137299e160 + + + Status + false + false + false + + false + canmodifyadditionalsettings + true + + 23 + 1900-01-01T00:00:00 + + + + + 6a4d1ea5-c483-db11-9d7e-00137299e160 + + true + Reason for the status of the SDK message processing step. + 1033 + + + 9e5664b8-d89a-4a2e-96f3-a3494048f4ae + + true + Årsag til status for SDK-meddelelsens behandlingstrin. + 1030 + + + + 6a4d1ea5-c483-db11-9d7e-00137299e160 + + true + Reason for the status of the SDK message processing step. + 1033 + + + + + + 6f4d1ea5-c483-db11-9d7e-00137299e160 + + true + Status Reason + 1033 + + + 07d7f2d9-81e1-4a58-9a53-f9b56791e58c + + true + Statusårsag + 1030 + + + + 6f4d1ea5-c483-db11-9d7e-00137299e160 + + true + Status Reason + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + statuscode + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + StatusCode + + + StatusType + + 5.0.0.0 + false + + + -1 + + 39bcd34c-0a62-434f-ab8a-ea6135f4a317 + + + + + fcf51fa2-3cd7-4ab4-b290-51906b36edf6 + + true + Reason for the status of the SDK message processing step. + 1033 + + + e7cdb561-f8ba-4c26-8921-968f22e3dc9a + + true + Årsag til status for SDK-meddelelsens behandlingstrin. + 1030 + + + + fcf51fa2-3cd7-4ab4-b290-51906b36edf6 + + true + Reason for the status of the SDK message processing step. + 1033 + + + + + + 6ad60bd1-4523-4546-81f8-688c2e78a37c + + true + Status Reason + 1033 + + + 9517fef3-d683-4620-871a-b78b6d849d8d + + true + Statusårsag + 1030 + + + + 6ad60bd1-4523-4546-81f8-688c2e78a37c + + true + Status Reason + 1033 + + + + false + + false + iscustomizable + false + + false + true + sdkmessageprocessingstep_statuscode + Status + 5.0.0.0 + + + + + + + + + + + false + true + + + + 6c4d1ea5-c483-db11-9d7e-00137299e160 + + true + Enabled + 1033 + + + 02b9c718-dd99-4c3b-9f74-c571d5f7f3e1 + + true + Aktiveret + 1030 + + + + 6c4d1ea5-c483-db11-9d7e-00137299e160 + + true + Enabled + 1033 + + + + 1 + + 0 + + + + + + + + + + + + false + true + + + + 6e4d1ea5-c483-db11-9d7e-00137299e160 + + true + Disabled + 1033 + + + 7d256c0c-3eb3-4cae-b2a9-5f4e60c1d2b2 + + true + Deaktiveret + 1030 + + + + 6e4d1ea5-c483-db11-9d7e-00137299e160 + + true + Disabled + 1033 + + + + 2 + + 1 + + + + + + + + + 704d1ea5-c483-db11-9d7e-00137299e160 + + statuscode + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 28 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + statuscodename + 2025-11-06T00:19:23.8700032 + + false + canmodifyrequirementlevelsettings + None + + StatusCodeName + + + VirtualType + + 5.0.0.0 + true + + + + + f0753625-d601-48f7-a8de-d604988577d8 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 3 + 1900-01-01T00:00:00 + + + + + c4dd01b9-2241-db11-898a-0007e9e17ebd + + true + Deployment that the SDK message processing step should be executed on; server, client, or both. + 1033 + + + 2ab19517-280c-44dd-a77f-cb24c3c02c65 + + true + Installation, som SDK-meddelelsens behandlingstrin skal køres på: server, klient eller begge. + 1030 + + + + c4dd01b9-2241-db11-898a-0007e9e17ebd + + true + Deployment that the SDK message processing step should be executed on; server, client, or both. + 1033 + + + + + + c3dd01b9-2241-db11-898a-0007e9e17ebd + + true + Deployment + 1033 + + + db7906d3-46d6-4f64-87ab-1711d8c56027 + + true + Implementering + 1030 + + + + c3dd01b9-2241-db11-898a-0007e9e17ebd + + true + Deployment + 1033 + + + sdkmessageprocessingstep + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + supporteddeployment + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SupportedDeployment + + + PicklistType + + 5.0.0.0 + false + 0 + + 0 + + 43ee2a9e-bffb-4e43-83d1-3a4892caa03b + + + + + b6fd21f7-a3eb-4cc1-87ae-c03f16f43668 + + true + Deployment that the SDK message processing step should be executed on; server, client, or both. + 1033 + + + c1fbc0fb-d42b-4ba2-bbea-48b2ff42f71e + + true + Installation, som SDK-meddelelsens behandlingstrin skal køres på: server, klient eller begge. + 1030 + + + + b6fd21f7-a3eb-4cc1-87ae-c03f16f43668 + + true + Deployment that the SDK message processing step should be executed on; server, client, or both. + 1033 + + + + + + e686d869-8205-4f05-af44-0176ff264c6e + + true + Supported Deployment + 1033 + + + 1e76e3b3-3530-4d2a-b123-f2636634f9ab + + true + Understøttet installation + 1030 + + + + e686d869-8205-4f05-af44-0176ff264c6e + + true + Supported Deployment + 1033 + + + + false + + false + iscustomizable + false + + false + true + sdkmessageprocessingstep_supporteddeployment + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + c6dd01b9-2241-db11-898a-0007e9e17ebd + + true + Server Only + 1033 + + + 7b2cf32c-399e-45fe-879b-4dfde74ca03a + + true + Kun server + 1030 + + + + c6dd01b9-2241-db11-898a-0007e9e17ebd + + true + Server Only + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + c8dd01b9-2241-db11-898a-0007e9e17ebd + + true + Microsoft Dynamics 365 Client for Outlook Only + 1033 + + + 3261d84a-4e8e-490d-b30e-ae1b49ae9980 + + true + Kun Microsoft Dynamics 365-klienten til Outlook + 1030 + + + + c8dd01b9-2241-db11-898a-0007e9e17ebd + + true + Microsoft Dynamics 365 Client for Outlook Only + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + cadd01b9-2241-db11-898a-0007e9e17ebd + + true + Both + 1033 + + + b6e4d3c2-9e3e-4905-83ef-b87381e40135 + + true + Begge + 1030 + + + + cadd01b9-2241-db11-898a-0007e9e17ebd + + true + Both + 1033 + + + + 2 + + + + + + + + 0 + + + + + f0b6c15e-1aba-495b-9d6b-f049c1243f2a + + supporteddeployment + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 29 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + supporteddeploymentname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SupportedDeploymentName + + + VirtualType + + 5.0.0.0 + true + + + + + 18faf000-6ae7-4e1a-aa58-0a480aa159b6 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 56 + 1900-01-01T00:00:00 + + + + + 18faf001-6ae7-4e1a-aa58-0a480aa159b6 + + true + For internal use only. + 1033 + + + 6a65d96c-dff3-41ab-84f0-04a74d40efdb + + true + Kun til intern brug. + 1030 + + + + 18faf001-6ae7-4e1a-aa58-0a480aa159b6 + + true + For internal use only. + 1033 + + + + + + 18faf002-6ae7-4e1a-aa58-0a480aa159b6 + + true + Solution + 1033 + + + d196f819-21cd-4ca2-8ba3-9cd95cff911b + + true + Løsning + 1030 + + + + 18faf002-6ae7-4e1a-aa58-0a480aa159b6 + + true + Solution + 1033 + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + false + true + false + false + false + + supportingsolutionid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SupportingSolutionId + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + c25167ca-73dc-44b4-8933-c0ab40874e3c + + + BigInt + false + false + false + + false + canmodifyadditionalsettings + true + + 20 + 1900-01-01T00:00:00 + + + + + 4bf016d8-5c44-4717-bc27-d86d65fb414e + + true + Number that identifies a specific revision of the SDK message processing step. + 1033 + + + adeba0d1-cf3f-4276-b494-9908d5a48fe2 + + true + Nummer, der identificerer en bestemt version af SDK-meddelelsens behandlingstrin. + 1030 + + + + 4bf016d8-5c44-4717-bc27-d86d65fb414e + + true + Number that identifies a specific revision of the SDK message processing step. + 1033 + + + + + + + sdkmessageprocessingstep + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + versionnumber + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + VersionNumber + + + BigIntType + + 5.0.0.0 + false + + + 9223372036854775807 + -9223372036854775808 + + + false + false + false + + false + canbeincustomentityassociation + false + + + false + canbeinmanytomany + false + + + false + canbeprimaryentityinrelationship + true + + + false + canberelatedentityinrelationship + true + + true + + false + canchangetrackingbeenabled + false + + + false + cancreateattributes + false + + + false + cancreatecharts + false + + + false + cancreateforms + false + + + false + cancreateviews + false + + + false + canenablesynctoexternalsearchindex + false + + + true + canmodifyadditionalsettings + false + + false + false + Local + 1900-01-01T00:00:00 + + + false + + + + bfdd01b9-2241-db11-898a-0007e9e17ebd + + true + Stage in the execution pipeline that a plug-in is to execute. + 1033 + + + d408b916-0a27-477b-85ab-80c749b9b677 + + true + Trin i den kørselsrækkefølge, som et plug-in skal gennemføre. + 1030 + + + + bfdd01b9-2241-db11-898a-0007e9e17ebd + + true + Stage in the execution pipeline that a plug-in is to execute. + 1033 + + + + + + c1dd01b9-2241-db11-898a-0007e9e17ebd + + true + Sdk Message Processing Steps + 1033 + + + 7cf766d1-90a5-422d-8e02-d01da9b56ca3 + + true + Behandlingstrin for Sdk-meddelelse + 1030 + + + + c1dd01b9-2241-db11-898a-0007e9e17ebd + + true + Sdk Message Processing Steps + 1033 + + + + + + c0dd01b9-2241-db11-898a-0007e9e17ebd + + true + Sdk Message Processing Step + 1033 + + + 1cd2b44f-e4c2-46e8-9418-910148391d60 + + true + Behandlingstrin for Sdk-meddelelse + 1030 + + + + c0dd01b9-2241-db11-898a-0007e9e17ebd + + true + Sdk Message Processing Step + 1033 + + + false + + false + false + false + false + + + + + false + false + false + false + + false + canmodifyauditsettings + false + + true + false + false + + false + canmodifyconnectionsettings + false + + false + + false + iscustomizable + false + + false + false + + false + canmodifyduplicatedetectionsettings + false + + false + false + false + false + false + false + false + + false + canmodifymailmergesettings + false + + true + + false + ismappable + false + + false + false + + false + canmodifymobileclientreadonly + false + + true + + false + isrenameable + false + + false + false + false + true + false + true + + false + canmodifyqueuesettings + false + + + false + canmodifymobilevisibility + false + + + false + canmodifymobileclientvisibility + true + + sdkmessageprocessingstep + + + + ab3ebc03-0f1a-4d15-ae2d-0492852f2b5f + + false + + false + iscustomizable + false + + true + true + sdkmessageprocessingstepsecureconfigid_sdkmessageprocessingstep + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageprocessingstepsecureconfigid + sdkmessageprocessingstepsecureconfig + sdkmessageprocessingstepsecureconfigid_sdkmessageprocessingstep + sdkmessageprocessingstepsecureconfigid + sdkmessageprocessingstep + sdkmessageprocessingstepsecureconfigid + + 0 + + + 94dbb921-33e2-4cb4-a445-5655b1b33560 + + false + + false + iscustomizable + false + + true + false + impersonatinguserid_sdkmessageprocessingstep + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + impersonatinguserid_sdkmessageprocessingstep + impersonatinguserid + sdkmessageprocessingstep + impersonatinguserid + + 0 + + + 581f0027-6898-4ac9-95d0-54f5b7c24d60 + + false + + false + iscustomizable + false + + true + true + sdkmessagefilterid_sdkmessageprocessingstep + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessagefilterid + sdkmessagefilter + sdkmessagefilterid_sdkmessageprocessingstep + sdkmessagefilterid + sdkmessageprocessingstep + sdkmessagefilterid + + 0 + + + 6d5eaf2a-59c0-41da-a94d-8f935caf6525 + + false + + false + iscustomizable + false + + true + true + plugintype_sdkmessageprocessingstep + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + plugintypeid + plugintype + plugintype_sdkmessageprocessingstep + eventhandler + sdkmessageprocessingstep + eventhandler_plugintype + + 0 + + + a32d7e54-47fa-4b95-99ce-d7189e0285c6 + + false + + false + iscustomizable + false + + true + true + serviceendpoint_sdkmessageprocessingstep + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + serviceendpointid + serviceendpoint + serviceendpoint_sdkmessageprocessingstep + eventhandler + sdkmessageprocessingstep + eventhandler_serviceendpoint + + 0 + + + a0401e5d-38ea-46e0-bf68-7277f38ddd80 + + false + + false + iscustomizable + false + + true + true + plugintypeid_sdkmessageprocessingstep + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + plugintypeid + plugintype + plugintypeid_sdkmessageprocessingstep + plugintypeid + sdkmessageprocessingstep + plugintypeid + + 0 + + + 156ec960-b29f-4663-bf06-ccb6c70387fe + + false + + false + iscustomizable + false + + true + false + createdby_sdkmessageprocessingstep + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + createdby_sdkmessageprocessingstep + createdby + sdkmessageprocessingstep + createdby + + 0 + + + 65fc9d7e-6050-4c7f-8dd4-7537fc7aee50 + + false + + false + iscustomizable + false + + true + false + lk_sdkmessageprocessingstep_modifiedonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_sdkmessageprocessingstep_modifiedonbehalfby + modifiedonbehalfby + sdkmessageprocessingstep + modifiedonbehalfby + + 0 + + + bdad9d80-5ad6-4d3c-891f-230121a0c4fb + + false + + false + iscustomizable + false + + true + true + sdkmessageid_sdkmessageprocessingstep + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageid + sdkmessage + sdkmessageid_sdkmessageprocessingstep + sdkmessageid + sdkmessageprocessingstep + sdkmessageid + + 0 + + + 536b2488-7a4a-4ab4-9da8-7fc9da4d3970 + + false + + false + iscustomizable + false + + true + false + modifiedby_sdkmessageprocessingstep + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + modifiedby_sdkmessageprocessingstep + modifiedby + sdkmessageprocessingstep + modifiedby + + 0 + + + ce2a68be-ccba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + fxexpression_sdkmessageprocessingstep + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + fxexpressionid + fxexpression + fxexpression_sdkmessageprocessingstep + fxexpressionid + sdkmessageprocessingstep + fxexpression + + 0 + + + d32a68be-ccba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + powerfxrule_sdkmessageprocessingstep + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + powerfxruleid + powerfxrule + powerfxrule_sdkmessageprocessingstep + powerfxruleid + sdkmessageprocessingstep + powerfxrule + + 0 + + + ba96abc9-d7c6-4b82-ad35-5ea507d4fd37 + + false + + false + iscustomizable + false + + true + false + organization_sdkmessageprocessingstep + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessageprocessingstep + organizationid + sdkmessageprocessingstep + organizationid + + 0 + + + 4b8d36dc-2580-4715-8e1d-2740729c084d + + false + + false + iscustomizable + false + + true + false + lk_sdkmessageprocessingstep_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_sdkmessageprocessingstep_createdonbehalfby + createdonbehalfby + sdkmessageprocessingstep + createdonbehalfby + + 0 + + + 2025-11-06T05:13:10.6930048 + 4608 + + + a9751a02-b0dc-4278-8580-d6e32385ae93 + + false + + false + iscustomizable + false + + true + true + sdkmessageprocessingstepid_sdkmessageprocessingstepimage + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageprocessingstepid + sdkmessageprocessingstep + sdkmessageprocessingstepid_sdkmessageprocessingstepimage + sdkmessageprocessingstepid + sdkmessageprocessingstepimage + sdkmessageprocessingstepid + + 0 + + + afa1d23a-9279-43d2-ae74-be9d9b2c86bb + + false + + false + iscustomizable + false + + true + true + SdkMessageProcessingStep_AsyncOperations + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageprocessingstepid + sdkmessageprocessingstep + SdkMessageProcessingStep_AsyncOperations + owningextensionid + asyncoperation + owningextensionid + + 0 + + + e72a68be-ccba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + sdkmessageprocessingstep_plugin_SdkMessageProcessingStep + None + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + d211da02-9920-48e5-b162-43deba1d727e + + false + + 1033 + + + c004a456-b2d5-4466-ae9b-a54c877b62b4 + + true + + 1030 + + + + d211da02-9920-48e5-b162-43deba1d727e + + false + + 1033 + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageprocessingstepid + sdkmessageprocessingstep + sdkmessageprocessingstep_plugin_SdkMessageProcessingStep + sdkmessageprocessingstep + plugin + SdkMessageProcessingStep + + 0 + + + b4a30ed5-cdfd-442b-916d-f790b30bf2ba + + false + + false + iscustomizable + false + + true + false + userentityinstancedata_sdkmessageprocessingstep + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageprocessingstepid + sdkmessageprocessingstep + userentityinstancedata_sdkmessageprocessingstep + objectid + userentityinstancedata + objectid_sdkmessageprocessingstep + + 0 + + + + 8 + OrganizationOwned + + sdkmessageprocessingstepid + + sdkmessageprocessingstepid + + name + + + false + false + false + true + false + false + false + prvCreateSdkMessageProcessingStep + 998329e9-5ce5-4538-99b1-983191899a8b + Create + + + false + false + false + true + false + false + false + prvReadSdkMessageProcessingStep + db10a828-ec49-4035-8b7e-c58efaf169ec + Read + + + false + false + false + true + false + false + false + prvWriteSdkMessageProcessingStep + 072aee35-581d-4488-85b1-af09926fda70 + Write + + + false + false + false + true + false + false + false + prvDeleteSdkMessageProcessingStep + 25ca2afd-e85d-4a14-bb81-c368cd59bf5b + Delete + + + false + false + false + true + false + false + false + prvAppendToSdkMessageProcessingStep + 88678b0b-fa75-4b33-ba67-63fdaf87debb + AppendTo + + + + FilteredSdkMessageProcessingStep + SdkMessageProcessingStep + + + false + Standard + false + 5.0.0.0 + + + false + canchangehierarchicalrelationship + false + + + false + SdkMessageProcessingSteps + + + true + + sdkmessageprocessingsteps + 0 + sdkmessageprocessingsteps + false + + true + canmodifymobileclientoffline + false + + false + false + + false + false + + + + sdkmessageprocessingstepimage + + 65fa198f-6a95-4ade-b73f-a3331b943daa + + 0 + + + f7cf7267-3490-4e56-9d69-589b48116634 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 16 + 1900-01-01T00:00:00 + + + + + a95011ad-2241-db11-898a-0007e9e17ebd + + true + Comma-separated list of attributes that are to be passed into the SDK message processing step image. + 1033 + + + 4190b913-96f3-4d71-be0c-2c20df2cccb9 + + true + Kommasepareret liste over attributter, som sendes til billedet for SDK-meddelelsens behandlingstrin. + 1030 + + + + a95011ad-2241-db11-898a-0007e9e17ebd + + true + Comma-separated list of attributes that are to be passed into the SDK message processing step image. + 1033 + + + + + + f3abccf9-9142-4b99-ac0a-f92e51fbe0a9 + + true + Attributes + 1033 + + + b5498efc-fe7f-4a73-b9e8-fe849e739954 + + true + Attributter + 1030 + + + + f3abccf9-9142-4b99-ac0a-f92e51fbe0a9 + + true + Attributes + 1033 + + + sdkmessageprocessingstepimage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + attributes + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Attributes + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 100000 + + + Text + + + false + 0 + -1 + + + 5ad2a000-7396-4320-b6ff-ae11abb5a988 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 28 + 1900-01-01T00:00:00 + + + + + 5ad2a001-7396-4320-b6ff-ae11abb5a988 + + true + For internal use only. + 1033 + + + 47533c00-affe-4068-a6d4-d12fcfe7c01f + + true + Kun til intern brug. + 1030 + + + + 5ad2a001-7396-4320-b6ff-ae11abb5a988 + + true + For internal use only. + 1033 + + + + + + 5ad2a002-7396-4320-b6ff-ae11abb5a988 + + true + Component State + 1033 + + + c04a7d8b-3107-454f-a271-bbff1826e397 + + true + Komponenttilstand + 1030 + + + + 5ad2a002-7396-4320-b6ff-ae11abb5a988 + + true + Component State + 1033 + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + componentstate + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + ComponentState + + + PicklistType + + 5.0.0.0 + false + 0 + + -1 + + faece09f-cefc-11de-8150-00155da18b00 + + + + + faece0a1-cefc-11de-8150-00155da18b00 + + true + The state of this component. + 1033 + + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + + + + faece0a1-cefc-11de-8150-00155da18b00 + + true + The state of this component. + 1033 + + + + + + faece0a0-cefc-11de-8150-00155da18b00 + + true + Component State + 1033 + + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + + + + faece0a0-cefc-11de-8150-00155da18b00 + + true + Component State + 1033 + + + + false + + false + iscustomizable + false + + true + true + componentstate + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + faece0a3-cefc-11de-8150-00155da18b00 + + true + Published + 1033 + + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + + + + faece0a3-cefc-11de-8150-00155da18b00 + + true + Published + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + faece0a5-cefc-11de-8150-00155da18b00 + + true + Unpublished + 1033 + + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + + + + faece0a5-cefc-11de-8150-00155da18b00 + + true + Unpublished + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + faece0a7-cefc-11de-8150-00155da18b00 + + true + Deleted + 1033 + + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + + + + faece0a7-cefc-11de-8150-00155da18b00 + + true + Deleted + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 1f83e0bb-cefd-11de-8150-00155da18b00 + + true + Deleted Unpublished + 1033 + + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + + + + 1f83e0bb-cefd-11de-8150-00155da18b00 + + true + Deleted Unpublished + 1033 + + + + 3 + + + + + + + + 0 + + + + + 51759951-3fb9-4326-945c-e353363ee538 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 10 + 1900-01-01T00:00:00 + + + + + b95011ad-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user who created the SDK message processing step image. + 1033 + + + eed3bbef-8131-48f9-bdb4-7ad273b6107d + + true + Entydigt id for den bruger, der oprettede billedet for SDK-meddelelsens behandlingstrin. + 1030 + + + + b95011ad-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user who created the SDK message processing step image. + 1033 + + + + + + 53993a34-4e7e-486d-9885-2f5bb7557858 + + true + Created By + 1033 + + + a4b3f34e-b27d-4253-b3f3-f4f42ac7a382 + + true + Oprettet af + 1030 + + + + 53993a34-4e7e-486d-9885-2f5bb7557858 + + true + Created By + 1033 + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + false + true + true + false + true + + createdby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + 27569a48-f57d-4ff0-acf9-1485513a04b8 + + createdby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 29 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + createdbyname + 2025-11-06T00:19:24.4470016 + + false + canmodifyrequirementlevelsettings + None + + CreatedByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 9d7f883e-6307-4636-8f9c-e880bdd82339 + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + true + + 7 + 1900-01-01T00:00:00 + + + + + a65011ad-2241-db11-898a-0007e9e17ebd + + true + Date and time when the SDK message processing step image was created. + 1033 + + + 931ac66e-1513-4a35-8bf4-394db32e8098 + + true + Dato og klokkeslæt for oprettelse af billedet for SDK-meddelelsens behandlingstrin. + 1030 + + + + a65011ad-2241-db11-898a-0007e9e17ebd + + true + Date and time when the SDK message processing step image was created. + 1033 + + + + + + f61790e6-06b5-4190-8597-7d02e9f67608 + + true + Created On + 1033 + + + 1d318a81-1333-418d-a82f-6be5ab5d3b18 + + true + Oprettet + 1030 + + + + f61790e6-06b5-4190-8597-7d02e9f67608 + + true + Created On + 1033 + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + false + true + true + false + true + + createdon + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedOn + + + DateTimeType + + 5.0.0.0 + false + 0 + + DateAndTime + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + + + + 43addc98-b73a-4160-8228-3f03947ce7a1 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 18 + 1900-01-01T00:00:00 + + + + + caa22cd6-07b0-4169-a876-3f7d356728f1 + + true + Unique identifier of the delegate user who created the sdkmessageprocessingstepimage. + 1033 + + + 59e9e6ae-2e5f-46ad-9d83-e6de4494b011 + + true + Entydigt id for den stedfortræderbruger, der oprettede billedet til behandlingstrinnet for SDK-meddelelsen. + 1030 + + + + caa22cd6-07b0-4169-a876-3f7d356728f1 + + true + Unique identifier of the delegate user who created the sdkmessageprocessingstepimage. + 1033 + + + + + + 7b0ca161-c8d9-4f25-b3db-718b6e54fe6a + + true + Created By (Delegate) + 1033 + + + fc64bb88-a0ec-48c0-959e-b93c0a79e3f8 + + true + Oprettet af (stedfortræder) + 1030 + + + + 7b0ca161-c8d9-4f25-b3db-718b6e54fe6a + + true + Created By (Delegate) + 1033 + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + false + true + true + false + true + + createdonbehalfby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedOnBehalfBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + f3ec6eca-688c-449f-875b-7b79dd56432c + + createdonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 26 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + createdonbehalfbyname + 2025-11-06T00:19:25.8099968 + + false + canmodifyrequirementlevelsettings + None + + CreatedOnBehalfByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + be5ddc35-d98e-4895-a322-a06dc9b2dc0d + + createdonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 27 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + createdonbehalfbyyominame + 2025-11-06T00:19:28.1529984 + + false + canmodifyrequirementlevelsettings + None + + CreatedOnBehalfByYomiName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + createdonbehalfbyname + + Text + + + false + 0 + 320 + + + 056fe279-7d81-491a-8289-c97199d23d68 + + + Integer + false + false + false + + false + canmodifyadditionalsettings + true + + 9 + 1900-01-01T00:00:00 + + + + + ac5011ad-2241-db11-898a-0007e9e17ebd + + true + Customization level of the SDK message processing step image. + 1033 + + + 71922a41-8eac-49a7-bd95-3c1e5e985acd + + true + Tilpasningsniveau for billedet for SDK-meddelelsens behandlingstrin. + 1030 + + + + ac5011ad-2241-db11-898a-0007e9e17ebd + + true + Customization level of the SDK message processing step image. + 1033 + + + + + + + sdkmessageprocessingstepimage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + customizationlevel + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + CustomizationLevel + + + IntegerType + + 5.0.0.0 + false + 0 + + None + 255 + -255 + + 0 + + + bc74bf49-7945-4e5e-b8f8-d25585782958 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 35 + 1900-01-01T00:00:00 + + + + + dc415ca3-15f1-4398-b762-3cd099e0fe0b + + true + Description of the SDK message processing step image. + 1033 + + + a8e62c22-6370-4026-97ed-ac5159dccc61 + + true + Beskrivelse af billede til behandlingstrin for SDK-meddelelse. + 1030 + + + + dc415ca3-15f1-4398-b762-3cd099e0fe0b + + true + Description of the SDK message processing step image. + 1033 + + + + + + 270dcd9c-6ec3-4a76-b060-f546555f3d55 + + true + Description + 1033 + + + 0f0db826-8672-4b81-8c39-b89640268914 + + true + Beskrivelse + 1030 + + + + 270dcd9c-6ec3-4a76-b060-f546555f3d55 + + true + Description + 1033 + + + sdkmessageprocessingstepimage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + true + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + description + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Description + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + 41b5316b-23ed-4922-bbde-27b43a1d1b91 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 8 + 1900-01-01T00:00:00 + + + + + a85011ad-2241-db11-898a-0007e9e17ebd + + true + Key name used to access the pre-image or post-image property bags in a step. + 1033 + + + 0fba8960-5c75-4944-826c-df5ae52fe251 + + true + Navn på den nøgle, som anvendes til at opnå adgang til egenskabssamlingerne for det indledende billede eller det efterfølgende billede i et trin. + 1030 + + + + a85011ad-2241-db11-898a-0007e9e17ebd + + true + Key name used to access the pre-image or post-image property bags in a step. + 1033 + + + + + + 600041bf-21a5-11df-82b5-00188b01dce6 + + true + Entity Alias + 1033 + + + b6bb1e93-6d8e-466f-acc0-851d62e0b1da + + true + Objektalias + 1030 + + + + 600041bf-21a5-11df-82b5-00188b01dce6 + + true + Entity Alias + 1033 + + + sdkmessageprocessingstepimage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + false + true + true + true + true + + entityalias + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + EntityAlias + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + ed38b65a-2270-4c2b-a9cc-a14d9e8c4a05 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 12 + 1900-01-01T00:00:00 + + + + + af5011ad-2241-db11-898a-0007e9e17ebd + + true + Type of image requested. + 1033 + + + 511ec84e-8ff8-40df-aec9-3719e609ae74 + + true + Anmodet billedtype. + 1030 + + + + af5011ad-2241-db11-898a-0007e9e17ebd + + true + Type of image requested. + 1033 + + + + + + ae5011ad-2241-db11-898a-0007e9e17ebd + + true + Image Type + 1033 + + + 82ee2f90-d00a-4c58-b0cc-3f2f951276dc + + true + Billedtype + 1030 + + + + ae5011ad-2241-db11-898a-0007e9e17ebd + + true + Image Type + 1033 + + + sdkmessageprocessingstepimage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + false + true + true + true + true + + imagetype + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + ImageType + + + PicklistType + + 5.0.0.0 + false + 0 + + 0 + + c875fc04-477a-4ad1-8c0e-ac0d596b8863 + + + + + 79c5e9e9-400f-4b98-a140-9e2fd0f57313 + + true + Type of image requested. + 1033 + + + d4f7333d-65e3-4b6c-a454-59625363cd16 + + true + Anmodet billedtype. + 1030 + + + + 79c5e9e9-400f-4b98-a140-9e2fd0f57313 + + true + Type of image requested. + 1033 + + + + + + ade1b897-1b4f-4a7d-8c4d-9b5bb139cf12 + + true + Image Type + 1033 + + + d63435c4-98d2-4d4c-a507-c2d72dd8a4f4 + + true + Billedtype + 1030 + + + + ade1b897-1b4f-4a7d-8c4d-9b5bb139cf12 + + true + Image Type + 1033 + + + + false + + false + iscustomizable + false + + false + true + sdkmessageprocessingstepimage_imagetype + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + b15011ad-2241-db11-898a-0007e9e17ebd + + true + PreImage + 1033 + + + 8d00e3fc-e9e3-425d-8f4f-8d8f77073b1a + + true + PreImage + 1030 + + + + b15011ad-2241-db11-898a-0007e9e17ebd + + true + PreImage + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + b35011ad-2241-db11-898a-0007e9e17ebd + + true + PostImage + 1033 + + + cdb57aa3-c671-4d05-a36c-ba6479826020 + + true + PostImage + 1030 + + + + b35011ad-2241-db11-898a-0007e9e17ebd + + true + PostImage + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + b55011ad-2241-db11-898a-0007e9e17ebd + + true + Both + 1033 + + + 906a9f6f-206f-42ce-bf87-cb983911f5a5 + + true + Begge + 1030 + + + + b55011ad-2241-db11-898a-0007e9e17ebd + + true + Both + 1033 + + + + 2 + + + + + + + + 0 + + + + + 060f67ec-0339-4d11-84be-a57b05e056c0 + + imagetype + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 17 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + imagetypename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ImageTypeName + + + VirtualType + + 5.0.0.0 + true + + + + + ff8b3c07-dc06-42b6-9509-b8c5101ed9bd + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 38 + 1900-01-01T00:00:00 + + + + + 9e8cc36b-63c8-4cd1-8cd9-ebecc406deff + + true + Version in which the form is introduced. + 1033 + + + 484fa4f5-37be-4368-bd1e-4b4f5c18d829 + + true + Version, som formularen introduceres i. + 1030 + + + + 9e8cc36b-63c8-4cd1-8cd9-ebecc406deff + + true + Version in which the form is introduced. + 1033 + + + + + + eb30d68b-01f8-4d30-9ea8-ebf77da84103 + + true + Introduced Version + 1033 + + + 07faddd7-29bd-4ab0-8c0e-ff72096f41c5 + + true + Introduceret version + 1030 + + + + eb30d68b-01f8-4d30-9ea8-ebf77da84103 + + true + Introduced Version + 1033 + + + sdkmessageprocessingstepimage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + false + true + + introducedversion + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + IntroducedVersion + + + StringType + + 6.0.0.0 + false + 0 + + VersionNumber + Auto + 48 + + + VersionNumber + + + false + 0 + 96 + + + 6b850de8-590e-47af-886e-4165737fe0a4 + + + ManagedProperty + false + false + false + + false + canmodifyadditionalsettings + true + + 36 + 1900-01-01T00:00:00 + + + + + 18d2dfa3-5e97-4efb-aaf8-a16f2aec1dce + + true + Information that specifies whether this component can be customized. + 1033 + + + 694223f2-d2f9-47e9-8b8e-b02a374c7936 + + true + Oplysninger om, hvorvidt denne komponent kan tilpasses. + 1030 + + + + 18d2dfa3-5e97-4efb-aaf8-a16f2aec1dce + + true + Information that specifies whether this component can be customized. + 1033 + + + + + + 2a4fe593-6ff4-49da-b909-8442eefbe26f + + true + Customizable + 1033 + + + 043cf4e0-39f5-4840-85b0-cf4db69ae383 + + true + Kan tilpasses + 1030 + + + + 2a4fe593-6ff4-49da-b909-8442eefbe26f + + true + Customizable + 1033 + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + iscustomizable + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + IsCustomizable + + + ManagedPropertyType + + 5.0.0.0 + false + + + iscustomizableanddeletable + + + Boolean + + + 30273b4b-0ce1-496d-b9e6-7008dd648372 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 24 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstepimage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + ismanaged + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + IsManaged + + + BooleanType + + 5.0.0.0 + false + 0 + + false + + 9d04e035-5408-4c1d-a5aa-20445a02f691 + + + + + b41954a2-f3a5-47e9-ae13-ceb49de4465b + + true + Information about whether the current component is managed. + 1033 + + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + + + + b41954a2-f3a5-47e9-ae13-ceb49de4465b + + true + Information about whether the current component is managed. + 1033 + + + + + + 45a188b1-91a8-4019-b582-cebda8081064 + + true + Is Component Managed + 1033 + + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + + + + 45a188b1-91a8-4019-b582-cebda8081064 + + true + Is Component Managed + 1033 + + + + false + + false + iscustomizable + false + + true + true + ismanaged + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 443c7078-b7cb-47e7-8547-08dfa82950d0 + + true + Unmanaged + 1033 + + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + + + + 443c7078-b7cb-47e7-8547-08dfa82950d0 + + true + Unmanaged + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + ec886b5b-7e97-4c62-b30c-bf295639d540 + + true + Managed + 1033 + + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + + + + ec886b5b-7e97-4c62-b30c-bf295639d540 + + true + Managed + 1033 + + + + 1 + + + + + 0 + + + e2ec7cbf-2b69-460e-a425-b3f700b6388f + + ismanaged + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 37 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + ismanagedname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + IsManagedName + + + VirtualType + + 5.0.0.0 + true + + + + + e5181f28-5238-43c4-bba3-bb4b74edfa54 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 15 + 1900-01-01T00:00:00 + + + + + fe4a6bd9-2868-4e70-92fb-a8263a854317 + + true + Name of the property on the Request message. + 1033 + + + 5096ad1e-a214-4626-80f4-b42a59b792b7 + + true + Navn på egenskaben i anmodningsmeddelelsen. + 1030 + + + + fe4a6bd9-2868-4e70-92fb-a8263a854317 + + true + Name of the property on the Request message. + 1033 + + + + + + 600041c1-21a5-11df-82b5-00188b01dce6 + + true + Message Property Name + 1033 + + + 8238eaa3-c7a9-4f0b-8ee8-7ab97e846912 + + true + Navn på meddelelsesegenskab + 1030 + + + + 600041c1-21a5-11df-82b5-00188b01dce6 + + true + Message Property Name + 1033 + + + sdkmessageprocessingstepimage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + false + true + true + true + true + + messagepropertyname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + MessagePropertyName + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + c1872e69-5197-48d0-ad2d-bf0041e94e1d + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 1 + 1900-01-01T00:00:00 + + + + + aa5011ad-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user who last modified the SDK message processing step. + 1033 + + + 8b6ef9b5-d88f-4c13-aeac-0364674a3892 + + true + Entydigt id for den bruger, der sidst ændrede SDK-meddelelsens behandlingstrin. + 1030 + + + + aa5011ad-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the user who last modified the SDK message processing step. + 1033 + + + + + + 600041c2-21a5-11df-82b5-00188b01dce6 + + true + Modified By + 1033 + + + 64795aa4-7fe5-42c2-acd0-5b2afb5cd2a8 + + true + Ændret af + 1030 + + + + 600041c2-21a5-11df-82b5-00188b01dce6 + + true + Modified By + 1033 + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + false + true + true + false + true + + modifiedby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + 9698d7ac-02e6-43ed-96b0-a363166b49f3 + + modifiedby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 30 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modifiedbyname + 2025-11-06T00:19:25.2600064 + + false + canmodifyrequirementlevelsettings + None + + ModifiedByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + e85bd5ff-734b-4e63-a65d-b7f40d37728b + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + true + + 3 + 1900-01-01T00:00:00 + + + + + a55011ad-2241-db11-898a-0007e9e17ebd + + true + Date and time when the SDK message processing step was last modified. + 1033 + + + 0105e942-c55f-4a7a-9366-8c029cc6d553 + + true + Dato og klokkeslæt for sidste ændring af SDK-meddelelsens behandlingstrin. + 1030 + + + + a55011ad-2241-db11-898a-0007e9e17ebd + + true + Date and time when the SDK message processing step was last modified. + 1033 + + + + + + 600041c3-21a5-11df-82b5-00188b01dce6 + + true + Modified By + 1033 + + + 2118a83c-ea48-4f7c-ae90-c030e50db354 + + true + Ændret af + 1030 + + + + 600041c3-21a5-11df-82b5-00188b01dce6 + + true + Modified By + 1033 + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + false + true + true + false + true + + modifiedon + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOn + + + DateTimeType + + 5.0.0.0 + false + 0 + + DateAndTime + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + + + + 37bbcd8f-9ede-48b3-a8f1-7107c9f549e1 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 19 + 1900-01-01T00:00:00 + + + + + 03b52b7c-bf4c-4966-bd42-e01f060ce3db + + true + Unique identifier of the delegate user who last modified the sdkmessageprocessingstepimage. + 1033 + + + 4ddb2f07-d1ef-4ccb-95c2-d4ec0900318c + + true + Entydigt id for den stedfortræderbruger, der senest ændrede billedet til behandlingstrinnet for SDK-meddelelsen. + 1030 + + + + 03b52b7c-bf4c-4966-bd42-e01f060ce3db + + true + Unique identifier of the delegate user who last modified the sdkmessageprocessingstepimage. + 1033 + + + + + + 98423b0e-55c2-45e5-8ab2-2ba0f35fa6a3 + + true + Modified By (Delegate) + 1033 + + + 52b1969d-9b01-4f59-8bee-77a38ff5042b + + true + Ændret af (stedfortræder) + 1030 + + + + 98423b0e-55c2-45e5-8ab2-2ba0f35fa6a3 + + true + Modified By (Delegate) + 1033 + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + false + true + true + false + true + + modifiedonbehalfby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOnBehalfBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + 450410a8-c7ca-443b-8b5e-bee1dd1b8c68 + + modifiedonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 22 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modifiedonbehalfbyname + 2025-11-06T00:19:26.6370048 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOnBehalfByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 1352c88e-5318-4a7a-83e0-282e77f55aa4 + + modifiedonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 23 + 1900-01-01T00:00:00 + + + + + + + + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modifiedonbehalfbyyominame + 2025-11-06T00:19:27.12 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOnBehalfByYomiName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + modifiedonbehalfbyname + + Text + + + false + 0 + 320 + + + 98f77607-daf3-49e7-b6df-d3a0e7d9e2a4 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 34 + 1900-01-01T00:00:00 + + + + + 9c726129-1e6c-43e0-8e58-ab041d2e769d + + true + Name of SdkMessage processing step image. + 1033 + + + 2e437699-2b12-4fe4-a23d-9f748cf054a1 + + true + Navnet på billedet til behandlingstrinnet for SDK-meddelelsen. + 1030 + + + + 9c726129-1e6c-43e0-8e58-ab041d2e769d + + true + Name of SdkMessage processing step image. + 1033 + + + + + + f4cce8e3-98b9-45f7-b40f-3d8b9397f787 + + true + Name + 1033 + + + f28d712d-efbb-430a-b35b-df329e75f5f6 + + true + Navn + 1030 + + + + f4cce8e3-98b9-45f7-b40f-3d8b9397f787 + + true + Name + 1033 + + + sdkmessageprocessingstepimage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + true + + false + isrenameable + false + + false + true + true + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + name + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + Name + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + 56241f85-0930-4dc0-96e3-72a952c9a711 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 5 + 1900-01-01T00:00:00 + + + + + b65011ad-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the organization with which the SDK message processing step is associated. + 1033 + + + 1c4aaeba-ab47-42aa-aef2-645bc45c9380 + + true + Entydigt id for den organisation, som SDK-meddelelsens behandlingstrin er tilknyttet. + 1030 + + + + b65011ad-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the organization with which the SDK message processing step is associated. + 1033 + + + + + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + organizationid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + OrganizationId + + + LookupType + + 5.0.0.0 + false + + + None + + organization + + + + 1264c000-8dfe-4717-a68a-dc6a427b56c3 + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + true + + 31 + 1900-01-01T00:00:00 + + + + + 1264c001-8dfe-4717-a68a-dc6a427b56c3 + + true + For internal use only. + 1033 + + + 107e8ce9-260d-4499-b353-49aec690447d + + true + Kun til intern brug. + 1030 + + + + 1264c001-8dfe-4717-a68a-dc6a427b56c3 + + true + For internal use only. + 1033 + + + + + + 1264c002-8dfe-4717-a68a-dc6a427b56c3 + + true + Record Overwrite Time + 1033 + + + 82cee399-5fc3-417a-810c-b6ec30172747 + + true + Klokkeslæt for overskrivning af post + 1030 + + + + 1264c002-8dfe-4717-a68a-dc6a427b56c3 + + true + Record Overwrite Time + 1033 + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + overwritetime + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + OverwriteTime + + + DateTimeType + + 5.0.0.0 + false + 0 + + DateOnly + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + + + + 116e0f5b-b8ea-4aea-bc4c-deebf075d4cc + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 14 + 1900-01-01T00:00:00 + + + + + b85011ad-2241-db11-898a-0007e9e17ebd + + true + Name of the related entity. + 1033 + + + db931899-642d-4a86-92f7-3d9c39c65897 + + true + Navn på det relaterede objekt. + 1030 + + + + b85011ad-2241-db11-898a-0007e9e17ebd + + true + Name of the related entity. + 1033 + + + + + + 600041c4-21a5-11df-82b5-00188b01dce6 + + true + Related Attribute Name + 1033 + + + ae5e34e7-8431-40bc-b01d-95c11f8acbb1 + + true + Navn på relateret attribut + 1030 + + + + 600041c4-21a5-11df-82b5-00188b01dce6 + + true + Related Attribute Name + 1033 + + + sdkmessageprocessingstepimage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + false + true + true + true + true + + relatedattributename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + RelatedAttributeName + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + 0b762fae-d794-469d-aa1b-bcececd323fc + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 2 + 1900-01-01T00:00:00 + + + + + a35011ad-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message processing step. + 1033 + + + a3eaea66-d240-4032-a424-52fdf64612d6 + + true + Entydigt id for SDK-meddelelsens behandlingstrin. + 1030 + + + + a35011ad-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message processing step. + 1033 + + + + + + 600041c5-21a5-11df-82b5-00188b01dce6 + + true + SDK Message Processing Step + 1033 + + + 295170a4-118d-4a2d-95b4-4f19159c7971 + + true + Trin til behandling af SDK-meddelelser + 1030 + + + + 600041c5-21a5-11df-82b5-00188b01dce6 + + true + SDK Message Processing Step + 1033 + + + sdkmessageprocessingstepimage + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + sdkmessageprocessingstepid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SdkMessageProcessingStepId + + + LookupType + + 5.0.0.0 + false + + + None + + sdkmessageprocessingstep + + + + efacc843-2670-4193-9623-6b9c4187b4dc + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 6 + 1900-01-01T00:00:00 + + + + + a75011ad-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message processing step image entity. + 1033 + + + 0a5db1b4-61bf-443c-b03b-4bccc8b8fe7b + + true + Entydigt id for billedobjektet for SDK-meddelelsens behandlingstrin. + 1030 + + + + a75011ad-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message processing step image entity. + 1033 + + + + + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + true + + true + canmodifyglobalfiltersettings + false + + true + true + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + false + false + true + false + true + + sdkmessageprocessingstepimageid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SdkMessageProcessingStepImageId + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + 041cf5b1-5170-4f33-b15c-d50b2cac9411 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 11 + 1900-01-01T00:00:00 + + + + + ad5011ad-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message processing step image. + 1033 + + + f9e187b9-4d80-4e35-a1ff-e1437b12e00e + + true + Entydigt id for billedet for SDK-meddelelsens behandlingstrin. + 1030 + + + + ad5011ad-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the SDK message processing step image. + 1033 + + + + + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + sdkmessageprocessingstepimageidunique + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SdkMessageProcessingStepImageIdUnique + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + e5806000-95bc-4e75-9201-e6ea71ec4764 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 32 + 1900-01-01T00:00:00 + + + + + e5806001-95bc-4e75-9201-e6ea71ec4764 + + true + Unique identifier of the associated solution. + 1033 + + + aee2aaea-c034-4583-a081-a33cfa847e51 + + true + Entydigt id for den tilknyttede løsning. + 1030 + + + + e5806001-95bc-4e75-9201-e6ea71ec4764 + + true + Unique identifier of the associated solution. + 1033 + + + + + + e5806002-95bc-4e75-9201-e6ea71ec4764 + + true + Solution + 1033 + + + 1ed99b0a-5188-4e5e-9863-e0293410076b + + true + Løsning + 1030 + + + + e5806002-95bc-4e75-9201-e6ea71ec4764 + + true + Solution + 1033 + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + solutionid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SolutionId + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + 8285b000-ed78-4a55-b290-e1a76555dc03 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 33 + 1900-01-01T00:00:00 + + + + + 8285b001-ed78-4a55-b290-e1a76555dc03 + + true + For internal use only. + 1033 + + + 691a6683-cf51-421f-883a-b52d0b3577a7 + + true + Kun til intern brug. + 1030 + + + + 8285b001-ed78-4a55-b290-e1a76555dc03 + + true + For internal use only. + 1033 + + + + + + 8285b002-ed78-4a55-b290-e1a76555dc03 + + true + Solution + 1033 + + + 7f7374e2-c18c-4192-bf91-5fc2f2984c23 + + true + Løsning + 1030 + + + + 8285b002-ed78-4a55-b290-e1a76555dc03 + + true + Solution + 1033 + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + false + true + false + false + false + + supportingsolutionid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SupportingSolutionId + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + 2c0af7eb-16d1-4ea8-aa68-b7bd6d2b94b5 + + + BigInt + false + false + false + + false + canmodifyadditionalsettings + true + + 4 + 1900-01-01T00:00:00 + + + + + a402014c-07e0-4203-9ced-129b09e3b1d3 + + true + Number that identifies a specific revision of the step image. + 1033 + + + b0d0c49a-a658-44af-b9c8-ccdb1fd8541a + + true + Nummer, der identificerer en bestemt version af trinbilledet. + 1030 + + + + a402014c-07e0-4203-9ced-129b09e3b1d3 + + true + Number that identifies a specific revision of the step image. + 1033 + + + + + + + sdkmessageprocessingstepimage + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + versionnumber + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + VersionNumber + + + BigIntType + + 5.0.0.0 + false + + + 9223372036854775807 + -9223372036854775808 + + + false + false + false + + false + canbeincustomentityassociation + false + + + false + canbeinmanytomany + false + + + false + canbeprimaryentityinrelationship + false + + + false + canberelatedentityinrelationship + false + + true + + false + canchangetrackingbeenabled + false + + + false + cancreateattributes + false + + + false + cancreatecharts + false + + + false + cancreateforms + false + + + false + cancreateviews + false + + + false + canenablesynctoexternalsearchindex + false + + + true + canmodifyadditionalsettings + false + + false + false + Local + 1900-01-01T00:00:00 + + + false + + + + a05011ad-2241-db11-898a-0007e9e17ebd + + true + Copy of an entity's attributes before or after the core system operation. + 1033 + + + 4edb5a23-dff3-4e47-a824-84769da5f88b + + true + Kopi af et objekts attributter før eller efter kernesystemhandlingen. + 1030 + + + + a05011ad-2241-db11-898a-0007e9e17ebd + + true + Copy of an entity's attributes before or after the core system operation. + 1033 + + + + + + a25011ad-2241-db11-898a-0007e9e17ebd + + true + Sdk Message Processing Step Images + 1033 + + + f681f561-aa91-4a00-a5fb-42b612d20b1e + + true + Behandlingstrinsbillede for Sdk-meddelelse + 1030 + + + + a25011ad-2241-db11-898a-0007e9e17ebd + + true + Sdk Message Processing Step Images + 1033 + + + + + + a15011ad-2241-db11-898a-0007e9e17ebd + + true + Sdk Message Processing Step Image + 1033 + + + 17536f93-8d31-4e7f-9397-1babcaa358df + + true + Behandlingstrinsbillede for Sdk-meddelelse + 1030 + + + + a15011ad-2241-db11-898a-0007e9e17ebd + + true + Sdk Message Processing Step Image + 1033 + + + false + + false + false + false + false + + + + + false + false + false + false + + false + canmodifyauditsettings + false + + true + false + false + + false + canmodifyconnectionsettings + false + + false + + false + iscustomizable + false + + false + false + + false + canmodifyduplicatedetectionsettings + false + + false + false + false + false + false + false + false + + false + canmodifymailmergesettings + false + + true + + false + ismappable + false + + false + false + + false + canmodifymobileclientreadonly + false + + true + + false + isrenameable + false + + false + false + false + true + false + true + + false + canmodifyqueuesettings + false + + + false + canmodifymobilevisibility + false + + + false + canmodifymobileclientvisibility + false + + sdkmessageprocessingstepimage + + + + a9751a02-b0dc-4278-8580-d6e32385ae93 + + false + + false + iscustomizable + false + + true + true + sdkmessageprocessingstepid_sdkmessageprocessingstepimage + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageprocessingstepid + sdkmessageprocessingstep + sdkmessageprocessingstepid_sdkmessageprocessingstepimage + sdkmessageprocessingstepid + sdkmessageprocessingstepimage + sdkmessageprocessingstepid + + 0 + + + 6d255e0a-b3fd-4557-a3c6-1acf25ca6727 + + false + + false + iscustomizable + false + + true + false + modifiedby_sdkmessageprocessingstepimage + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + modifiedby_sdkmessageprocessingstepimage + modifiedby + sdkmessageprocessingstepimage + modifiedby + + 0 + + + 6b4f264d-9608-4058-9749-16974ee3aacc + + false + + false + iscustomizable + false + + true + false + lk_sdkmessageprocessingstepimage_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_sdkmessageprocessingstepimage_createdonbehalfby + createdonbehalfby + sdkmessageprocessingstepimage + createdonbehalfby + + 0 + + + a123c794-d679-43a7-a1ce-28d42de980cf + + false + + false + iscustomizable + false + + true + false + createdby_sdkmessageprocessingstepimage + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + createdby_sdkmessageprocessingstepimage + createdby + sdkmessageprocessingstepimage + createdby + + 0 + + + a82dc8c5-a9d4-476f-b1fa-9954b4fa6edf + + false + + false + iscustomizable + false + + true + false + organization_sdkmessageprocessingstepimage + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_sdkmessageprocessingstepimage + organizationid + sdkmessageprocessingstepimage + organizationid + + 0 + + + 600269dc-c746-486f-a1db-7318e5c28fd7 + + false + + false + iscustomizable + false + + true + false + lk_sdkmessageprocessingstepimage_modifiedonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_sdkmessageprocessingstepimage_modifiedonbehalfby + modifiedonbehalfby + sdkmessageprocessingstepimage + modifiedonbehalfby + + 0 + + + 1900-01-01T00:00:00 + 4615 + + + ec9190aa-7da6-412b-990b-f3f22be49708 + + false + + false + iscustomizable + false + + true + false + userentityinstancedata_sdkmessageprocessingstepimage + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + sdkmessageprocessingstepimageid + sdkmessageprocessingstepimage + userentityinstancedata_sdkmessageprocessingstepimage + objectid + userentityinstancedata + objectid_sdkmessageprocessingstepimage + + 0 + + + + 8 + OrganizationOwned + + sdkmessageprocessingstepimageid + + sdkmessageprocessingstepimageid + + name + + + false + false + false + true + false + false + false + prvCreateSdkMessageProcessingStepImage + 65171d1b-1581-4fbb-96a3-95d14b5723cb + Create + + + false + false + false + true + false + false + false + prvReadSdkMessageProcessingStepImage + 122e085f-8c52-47e8-8415-875dee1c961e + Read + + + false + false + false + true + false + false + false + prvWriteSdkMessageProcessingStepImage + 11954a66-b7ad-4dd9-b845-225d1b4c9ffe + Write + + + false + false + false + true + false + false + false + prvDeleteSdkMessageProcessingStepImage + 5ebf516c-e769-47df-ad46-458b4b23603f + Delete + + + + FilteredSdkMessageProcessingStepImages + SdkMessageProcessingStepImage + + + false + Standard + false + 5.0.0.0 + + + false + canchangehierarchicalrelationship + false + + + false + SdkMessageProcessingStepImages + + + true + + sdkmessageprocessingstepimages + 0 + sdkmessageprocessingstepimages + false + + true + canmodifymobileclientoffline + false + + false + false + + false + false + + + + solution + + 3ffa7e2c-9d9c-4923-bf59-645d04c10063 + + 0 + + + d593b18f-d822-4fa0-b0c2-45bdc4bcc598 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + false + + 36 + 1900-01-01T00:00:00 + + + + + 888f4f7b-688b-4945-8c4b-4b54aa75bd5b + + true + A link to an optional configuration page for this solution. + 1033 + + + ae02186a-eb17-40b9-8768-4d50e39faf5f + + true + Et link til en valgfri konfigurationsside for denne løsning. + 1030 + + + + 888f4f7b-688b-4945-8c4b-4b54aa75bd5b + + true + A link to an optional configuration page for this solution. + 1033 + + + + + + 65187bde-32a6-4c53-8fa0-48eb1be1302e + + true + Configuration Page + 1033 + + + 73f2bb91-0466-4722-93c6-b44a3a621074 + + true + Konfigurationsside + 1030 + + + + 65187bde-32a6-4c53-8fa0-48eb1be1302e + + true + Configuration Page + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + true + false + true + true + true + + configurationpageid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ConfigurationPageId + + + LookupType + + 5.0.0.0 + false + + + None + + webresource + + + + 4a165337-20a0-467f-b0e3-50cd432abc79 + + configurationpageid + String + false + false + false + + false + canmodifyadditionalsettings + false + + 37 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + configurationpageidname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ConfigurationPageIdName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + 217a63c2-71d9-48f5-a681-0c9c0b325c61 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + false + + 10 + 1900-01-01T00:00:00 + + + + + 84749473-dc30-4da7-8434-3ad25c53b856 + + true + Unique identifier of the user who created the solution. + 1033 + + + 0f4c7baa-63d5-4437-a17b-2a4c85291cd2 + + true + Entydigt id for den bruger, der oprettede løsningen. + 1030 + + + + 84749473-dc30-4da7-8434-3ad25c53b856 + + true + Unique identifier of the user who created the solution. + 1033 + + + + + + 04c1006a-ae4b-4c03-a9bb-6a5525a8df38 + + true + Created By + 1033 + + + 06d13b44-c141-404d-b21c-ff4bb34cad84 + + true + Oprettet af + 1030 + + + + 04c1006a-ae4b-4c03-a9bb-6a5525a8df38 + + true + Created By + 1033 + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + createdby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + ef3a1786-7e9c-11dd-94cd-00188b01dce6 + + createdby + String + false + false + false + + false + canmodifyadditionalsettings + false + + 20 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + createdbyname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 3c5a7197-813b-4152-8bbc-69cd39caf8ca + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + false + + 6 + 1900-01-01T00:00:00 + + + + + ca4aca21-a6f6-4177-8eae-cb138751315e + + true + Date and time when the solution was created. + 1033 + + + d1b9b0a8-e9d9-41c9-97f7-14b92f4fa3d2 + + true + Dato og klokkeslæt for oprettelse af løsningen. + 1030 + + + + ca4aca21-a6f6-4177-8eae-cb138751315e + + true + Date and time when the solution was created. + 1033 + + + + + + 08aff569-f9cd-42b2-8c9d-bd41d1d4025b + + true + Created On + 1033 + + + d863bbee-d0dd-4cc1-adc5-edc08a13be81 + + true + Oprettet + 1030 + + + + 08aff569-f9cd-42b2-8c9d-bd41d1d4025b + + true + Created On + 1033 + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + createdon + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedOn + + + DateTimeType + + 5.0.0.0 + false + 0 + + DateAndTime + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + + + + b59ff240-67be-4e5f-ac91-b7fbcd4b48e3 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + false + + 28 + 1900-01-01T00:00:00 + + + + + f2d9773f-0a72-4625-aa6a-578c23e849c2 + + true + Unique identifier of the delegate user who created the solution. + 1033 + + + 6d21ee94-3079-4bb5-85a2-ef262fa77fe2 + + true + Entydigt id for den stedfortræderbruger, der oprettede løsningen. + 1030 + + + + f2d9773f-0a72-4625-aa6a-578c23e849c2 + + true + Unique identifier of the delegate user who created the solution. + 1033 + + + + + + 953eb3a8-6b93-405a-b805-0914f0f9f5a5 + + true + Created By (Delegate) + 1033 + + + ce1f9178-61b0-46bc-95cc-00c724ffad37 + + true + Oprettet af (stedfortræder) + 1030 + + + + 953eb3a8-6b93-405a-b805-0914f0f9f5a5 + + true + Created By (Delegate) + 1033 + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + createdonbehalfby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedOnBehalfBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + 40a6b501-85bf-4ed0-ad7d-c6b48463a3d2 + + createdonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + false + + 30 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + createdonbehalfbyname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedOnBehalfByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 5492e382-dbad-4619-8d53-40bff781de33 + + createdonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + false + + 31 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + createdonbehalfbyyominame + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedOnBehalfByYomiName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + createdonbehalfbyname + + Text + + + false + 0 + 320 + + + cd786c2c-2706-4629-a824-2e3611111e7a + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 12 + 1900-01-01T00:00:00 + + + + + 6577d034-a195-4544-9c8c-b4b81a62b9d5 + + true + Description of the solution. + 1033 + + + bf27024c-9553-40da-8a96-9a2df8910b03 + + true + Beskrivelse af løsningen. + 1030 + + + + 6577d034-a195-4544-9c8c-b4b81a62b9d5 + + true + Description of the solution. + 1033 + + + + + + 94372fa1-0b98-40b6-9e45-285d5bf3cdbd + + true + Description + 1033 + + + 7df174d1-1f70-4dfe-ab44-fec298db36dd + + true + Beskrivelse + 1030 + + + + 94372fa1-0b98-40b6-9e45-285d5bf3cdbd + + true + Description + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + description + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Description + + + StringType + + 5.0.0.0 + false + 0 + + TextArea + Auto + 2000 + + + TextArea + + + true + 0 + 4000 + + + 424766ed-f995-4d13-aabf-1bf986ad4022 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 10003 + 2025-11-06T01:58:33.0969984 + + + + + 63cd3152-e389-4a6b-b838-e47db1b3b9a4 + + true + Indicates if solution is enabled for source control integration + 1033 + + + + 63cd3152-e389-4a6b-b838-e47db1b3b9a4 + + true + Indicates if solution is enabled for source control integration + 1033 + + + + + + c88e77d0-7c64-4c7d-8ecd-97d741c90439 + + true + Enabled for Source Control Integration + 1033 + + + + c88e77d0-7c64-4c7d-8ecd-97d741c90439 + + true + Enabled for Source Control Integration + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + false + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + false + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + enabledforsourcecontrolintegration + 2025-11-06T01:58:33.0969984 + + false + canmodifyrequirementlevelsettings + SystemRequired + + EnabledForSourceControlIntegration + + + BooleanType + + 9.1.0.0 + false + 0 + + false + + 099f5c18-b4ba-f011-bbd3-7c1e52365f30 + + + + + 0b9f5c18-b4ba-f011-bbd3-7c1e52365f30 + + true + + 1033 + + + + 0b9f5c18-b4ba-f011-bbd3-7c1e52365f30 + + true + + 1033 + + + + + + 0a9f5c18-b4ba-f011-bbd3-7c1e52365f30 + + true + Enabled for Source Control Integration + 1033 + + + + 0a9f5c18-b4ba-f011-bbd3-7c1e52365f30 + + true + Enabled for Source Control Integration + 1033 + + + + true + + false + iscustomizable + false + + false + true + solution_enabledforsourcecontrolintegration + Boolean + 9.1.0.0 + + + + + + + + + + false + true + + + + 781659a7-d7a9-420e-af85-b28157eaf12d + + true + No + 1033 + + + + 781659a7-d7a9-420e-af85-b28157eaf12d + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + c3da0ff3-8098-442e-ac3a-b52dd270e2be + + true + Yes + 1033 + + + + c3da0ff3-8098-442e-ac3a-b52dd270e2be + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 64d99443-dc64-4341-8520-ad9d7f9b3d67 + + enabledforsourcecontrolintegration + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10004 + 2025-11-06T01:58:33.1270016 + + + + + + + + + + solution + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + enabledforsourcecontrolintegrationname + 2025-11-06T01:58:33.1270016 + + true + canmodifyrequirementlevelsettings + None + + enabledforsourcecontrolintegrationName + + + VirtualType + + 9.1.0.0 + true + + + + + f8d0a3a1-2dca-41b0-b80a-d28d17cfb76c + + + Virtual + false + false + false + + false + canmodifyadditionalsettings + false + + 45 + 2025-11-06T00:19:21.2600064 + + + + + 9df574c7-1268-4c22-9a83-92e2992e37bc + + true + File Id for the blob url used for file storage. + 1033 + + + 3ed72fab-8aaf-4de3-a1c4-d3f5529e328b + + true + Fil-id for blob-URL-adressen, der bruges til fillagring. + 1030 + + + + 9df574c7-1268-4c22-9a83-92e2992e37bc + + true + File Id for the blob url used for file storage. + 1033 + + + + + + 903e6eea-8f8d-45d1-952e-620abb27fe0a + + true + File Id + 1033 + + + 14d0e11c-1bd5-476b-b810-7cb1f7c02751 + + true + Fil-id + 1030 + + + + 903e6eea-8f8d-45d1-952e-620abb27fe0a + + true + File Id + 1033 + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + false + false + false + + fileid + 2025-11-06T00:19:21.2600064 + + false + canmodifyrequirementlevelsettings + None + + FileId + + + FileType + + 9.1.0.0 + false + + + 128000 + + + bd8fd21d-7ae0-4cd8-9fe5-755c3aaf89fc + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 15 + 1900-01-01T00:00:00 + + + + + 254ba0a4-fb2a-4d6d-b6fc-c47396ac0309 + + true + User display name for the solution. + 1033 + + + 5a552837-f836-4b3d-a080-eb7cb7c6eb6d + + true + Brugerens viste navn på løsningen. + 1030 + + + + 254ba0a4-fb2a-4d6d-b6fc-c47396ac0309 + + true + User display name for the solution. + 1033 + + + + + + f60b2767-3ed0-484f-b0e0-899f8a386718 + + true + Display Name + 1033 + + + 95b8e845-00ab-4917-a8cf-179551024146 + + true + Vist navn + 1030 + + + + f60b2767-3ed0-484f-b0e0-899f8a386718 + + true + Display Name + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + true + + false + isrenameable + false + + false + true + true + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + friendlyname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + FriendlyName + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 256 + + + Text + + + true + 0 + 512 + + + 2fb03864-8d1f-4f11-88b4-f06d06f793f6 + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + false + + 5 + 1900-01-01T00:00:00 + + + + + ce6ee082-91e2-4613-98f5-01804da6e8ed + + true + Date and time when the solution was installed/upgraded. + 1033 + + + 750b6b73-d2d6-475e-bdac-9a83a544c67e + + true + Den dato og det klokkeslæt, hvor løsningen blev installeret/opgraderet. + 1030 + + + + ce6ee082-91e2-4613-98f5-01804da6e8ed + + true + Date and time when the solution was installed/upgraded. + 1033 + + + + + + 115ffc79-76ea-49a7-b2c0-8ba2b374baad + + true + Installed On + 1033 + + + caca94aa-2e45-44d9-95db-141ec156c7b5 + + true + Installeret + 1030 + + + + 115ffc79-76ea-49a7-b2c0-8ba2b374baad + + true + Installed On + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + false + true + true + false + true + + installedon + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + InstalledOn + + + DateTimeType + + 5.0.0.0 + false + 0 + + DateOnly + Auto + + 0 + + false + canmodifybehavior + false + + + UserLocal + + + + ae891101-d736-48ca-9481-61b98437a1ee + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 46 + 2025-11-06T00:19:20.8230016 + + + + + 8d40591c-538f-4a94-8630-d2f131dadc24 + + true + Information about whether the solution is api managed. + 1033 + + + 9eeda384-4c91-4c76-9227-7c1e36a37e23 + + true + Angiver, om løsningen er API-administreret. + 1030 + + + + 8d40591c-538f-4a94-8630-d2f131dadc24 + + true + Information about whether the solution is api managed. + 1033 + + + + + + a9241168-53a2-4a97-81f0-11c1df1cf5c5 + + true + Is Api Managed Solution + 1033 + + + 005fe42e-657b-4b35-a5b3-ebbfd92940ac + + true + Er API-administreret løsning + 1030 + + + + a9241168-53a2-4a97-81f0-11c1df1cf5c5 + + true + Is Api Managed Solution + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + isapimanaged + 2025-11-06T00:19:20.8230016 + + false + canmodifyrequirementlevelsettings + SystemRequired + + IsApiManaged + + + BooleanType + + 9.1.0.0 + false + 0 + + false + + 876a3512-0a92-2f72-a12c-43fcd000085e + + + + + 50042593-cb76-4f37-bba9-42ed275bb729 + + true + Information about whether the solution is api managed. + 1033 + + + ed4239c5-b1e7-48c1-a35b-5a47607cb1d2 + + true + Angiver, om løsningen er API-administreret. + 1030 + + + + 50042593-cb76-4f37-bba9-42ed275bb729 + + true + Information about whether the solution is api managed. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + solution_isapimanaged + Boolean + 9.1.0.0 + + + + + + + + + + false + true + + + + 35bc4e9d-3e83-41ef-95d0-241bc79b3d5d + + true + No + 1033 + + + 81ed6e1f-1b09-4c7c-b9ae-a63b99fc945f + + true + Nej + 1030 + + + + 35bc4e9d-3e83-41ef-95d0-241bc79b3d5d + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 57e7ed1c-d568-444d-94dd-ddb0f8065c0c + + true + Yes + 1033 + + + 230df052-74cc-4d1a-a0d9-1c9be2e88d34 + + true + Ja + 1030 + + + + 57e7ed1c-d568-444d-94dd-ddb0f8065c0c + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 890ad142-93a8-4672-bc86-e71c2c1f303e + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 42 + 1900-01-01T00:00:00 + + + + + 55619b3b-364c-485f-89aa-bbd928e269bf + + true + Indicates whether the solution is internal or not. + 1033 + + + 70e24104-dbc3-420f-b1b8-dacbd2f5f350 + + true + Angiver, om løsningen er intern eller ej. + 1030 + + + + 55619b3b-364c-485f-89aa-bbd928e269bf + + true + Indicates whether the solution is internal or not. + 1033 + + + + + + 0732de7f-22df-4491-911e-5cf671ec1132 + + true + Is internal solution + 1033 + + + 96b3de79-7583-4254-bbba-8fdc94aef2ee + + true + Er intern løsning + 1030 + + + + 0732de7f-22df-4491-911e-5cf671ec1132 + + true + Is internal solution + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + false + false + false + + isinternal + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + IsInternal + + + BooleanType + + 8.1.0.0 + false + 0 + + false + + 1acbd753-1a75-4147-8aee-b0421652220c + + + + + e6a74331-6dfd-4980-a696-4f028f143352 + + true + Indicates whether the solution is internal. + 1033 + + + 85bec87a-657b-4f2f-b795-4210681d32e9 + + true + Angiver, om løsningen er intern. + 1030 + + + + e6a74331-6dfd-4980-a696-4f028f143352 + + true + Indicates whether the solution is internal. + 1033 + + + + + + a21c9337-08de-49f7-8935-58f80f26351b + + true + Is internal solution + 1033 + + + 9eee3283-5d84-4bd9-855f-87c2285fb5bd + + true + Er intern løsning + 1030 + + + + a21c9337-08de-49f7-8935-58f80f26351b + + true + Is internal solution + 1033 + + + + false + + false + iscustomizable + false + + false + true + solution_isinternal + Boolean + 8.1.0.0 + + + + + + + + + + false + true + + + + 75c97dc0-3b0e-4972-8e86-f1d548bfaced + + true + No + 1033 + + + b42d1928-f5c5-418a-8c8a-ba93c5f3b270 + + true + Nej + 1030 + + + + 75c97dc0-3b0e-4972-8e86-f1d548bfaced + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 84625cd3-25ee-471c-b5a4-990f665ce31e + + true + Yes + 1033 + + + e86497c8-5a7a-4568-be71-907e71f7bde6 + + true + Ja + 1030 + + + + 84625cd3-25ee-471c-b5a4-990f665ce31e + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 4b51b5d3-e656-4f84-a159-2c235e9d2719 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 13 + 1900-01-01T00:00:00 + + + + + fceb656e-b673-437e-93fa-7dc16cf3fea6 + + true + Indicates whether the solution is managed or unmanaged. + 1033 + + + 9b904073-243a-412a-b509-665f8dcfb196 + + true + Angiver, om løsningen er administreret eller ej. + 1030 + + + + fceb656e-b673-437e-93fa-7dc16cf3fea6 + + true + Indicates whether the solution is managed or unmanaged. + 1033 + + + + + + 6d2c716f-f092-4172-8df0-4109331375a1 + + true + Package Type + 1033 + + + 21182221-2217-4b4c-bd44-3f9b13de5e5e + + true + Pakketype + 1030 + + + + 6d2c716f-f092-4172-8df0-4109331375a1 + + true + Package Type + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + ismanaged + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + IsManaged + + + BooleanType + + 5.0.0.0 + false + 0 + + false + + 81d6b3e8-95b5-479c-919d-d597d4e9f38e + + + + + 716eedfc-1a75-4c94-bfac-fe285caa652d + + true + Indicates whether the solution is managed or unmanaged. + 1033 + + + c007c7ef-f8c1-4baf-9f22-8d0d4da1b7cb + + true + Angiver, om løsningen er administreret eller ej. + 1030 + + + + 716eedfc-1a75-4c94-bfac-fe285caa652d + + true + Indicates whether the solution is managed or unmanaged. + 1033 + + + + + + b50e42bc-9c13-4645-a57f-a22c3695f176 + + true + Managed + 1033 + + + 7ea0dede-e90b-4d38-9f19-eb0cef1bd2f4 + + true + Administreret + 1030 + + + + b50e42bc-9c13-4645-a57f-a22c3695f176 + + true + Managed + 1033 + + + + false + + false + iscustomizable + true + + false + true + solution_ismanaged + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 763dccb0-7e1e-45ed-929a-f9130a205a14 + + true + Unmanaged + 1033 + + + a84bc44f-c69c-4a34-a6c0-f6aaabe6a0c5 + + true + Ikke administreret + 1030 + + + + 763dccb0-7e1e-45ed-929a-f9130a205a14 + + true + Unmanaged + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + cb010841-f8fe-4ff8-a4b6-b9e59d1284ee + + true + Managed + 1033 + + + fb60a022-e05e-489d-b79b-4747db50613d + + true + Administreret + 1030 + + + + cb010841-f8fe-4ff8-a4b6-b9e59d1284ee + + true + Managed + 1033 + + + + 1 + + + + + 0 + + + c330539d-3711-4597-8875-eec770e47ac3 + + ismanaged + Virtual + false + false + false + + false + canmodifyadditionalsettings + false + + 19 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + ismanagedname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + IsManagedName + + + VirtualType + + 5.0.0.0 + true + + + + + b5180252-c67f-4c53-a95a-7a7a8d3b4643 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + false + + 11 + 1900-01-01T00:00:00 + + + + + 97c45589-d532-4599-9369-22813b89074c + + true + Indicates whether the solution is visible outside of the platform. + 1033 + + + 03132763-a0c6-4d1c-95cf-d514b9f96686 + + true + Angiver, om løsningen er synlig uden for platformen. + 1030 + + + + 97c45589-d532-4599-9369-22813b89074c + + true + Indicates whether the solution is visible outside of the platform. + 1033 + + + + + + cc91775d-fb75-4709-937d-0c27bca259c3 + + true + Is Visible Outside Platform + 1033 + + + de52ecb4-6ce4-4319-9a25-b18912d11a66 + + true + Er synlig uden for platformen + 1030 + + + + cc91775d-fb75-4709-937d-0c27bca259c3 + + true + Is Visible Outside Platform + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + true + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + isvisible + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + IsVisible + + + BooleanType + + 5.0.0.0 + false + 0 + + true + + 5bde12c4-b7cf-4b1f-8313-b943167dee37 + + + + + 2dc29ef3-8434-437c-823e-d53a69f1ccd6 + + true + Indicates whether the solution is visible outside of the platform. + 1033 + + + 477cd7c6-67b2-4fa5-a54a-9a0e4dd53078 + + true + Angiver, om løsningen er synlig uden for platformen. + 1030 + + + + 2dc29ef3-8434-437c-823e-d53a69f1ccd6 + + true + Indicates whether the solution is visible outside of the platform. + 1033 + + + + + + a99bad0d-0888-4f91-8dcc-1da7c7fde4e5 + + true + Is visible outside platform + 1033 + + + 35c0c530-d301-463f-b4f3-efc0bf436ad2 + + true + Er synlig uden for platformen + 1030 + + + + a99bad0d-0888-4f91-8dcc-1da7c7fde4e5 + + true + Is visible outside platform + 1033 + + + + false + + false + iscustomizable + true + + false + true + solution_isvisible + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + b8a5da8a-21ee-47d1-a77a-7229d4b76494 + + true + No + 1033 + + + 9ccf5445-4a5b-461c-bfff-75c88f3a1119 + + true + Nej + 1030 + + + + b8a5da8a-21ee-47d1-a77a-7229d4b76494 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + e0242482-858d-41b8-8913-bf8b6e1963cb + + true + Yes + 1033 + + + 7cd1156f-610d-4dd1-94c3-d1d47f3d0bd7 + + true + Ja + 1030 + + + + e0242482-858d-41b8-8913-bf8b6e1963cb + + true + Yes + 1033 + + + + 1 + + + + + 0 + + + 2ba3f1f4-ff78-4aa7-9348-308e9c73fdb0 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + false + + 16 + 1900-01-01T00:00:00 + + + + + 5af90e74-8f70-47e3-8830-7741ddbbaf89 + + true + Unique identifier of the user who last modified the solution. + 1033 + + + 7b5b0c3f-8903-4a20-a557-25deac6bf86a + + true + Entydigt id for den bruger, der senest ændrede løsningen. + 1030 + + + + 5af90e74-8f70-47e3-8830-7741ddbbaf89 + + true + Unique identifier of the user who last modified the solution. + 1033 + + + + + + 8db17921-7317-40ca-ab10-e02b628e710f + + true + Modified By + 1033 + + + 049cc791-47c3-4152-8ec4-eb4d1a96bbee + + true + Ændret af + 1030 + + + + 8db17921-7317-40ca-ab10-e02b628e710f + + true + Modified By + 1033 + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + modifiedby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + ef3a1787-7e9c-11dd-94cd-00188b01dce6 + + modifiedby + String + false + false + false + + false + canmodifyadditionalsettings + false + + 21 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modifiedbyname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 3a12ef3e-472e-4c5d-9ce1-c30801b1253b + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + false + + 9 + 1900-01-01T00:00:00 + + + + + 33f0c576-50d5-47b4-b61d-3d1543202e50 + + true + Date and time when the solution was last modified. + 1033 + + + 645d288e-560d-4132-9de7-06a5e5db2021 + + true + Dato og klokkeslæt for den seneste ændring af løsningen. + 1030 + + + + 33f0c576-50d5-47b4-b61d-3d1543202e50 + + true + Date and time when the solution was last modified. + 1033 + + + + + + 803a14bd-ed80-47cf-9171-30908ea74d62 + + true + Modified On + 1033 + + + 3405151c-8633-4f84-a4b4-e3834d20d609 + + true + Ændret + 1030 + + + + 803a14bd-ed80-47cf-9171-30908ea74d62 + + true + Modified On + 1033 + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + modifiedon + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOn + + + DateTimeType + + 5.0.0.0 + false + 0 + + DateAndTime + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + + + + 47d57594-cf6c-4abd-bf90-1c21dd006673 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + false + + 24 + 1900-01-01T00:00:00 + + + + + 7d793bb4-ea86-48f9-94ae-ebeffa494368 + + true + Unique identifier of the delegate user who modified the solution. + 1033 + + + f89e9bfa-8f84-4d82-a2b0-787060dc17fa + + true + Entydigt id for den stedfortræderbruger, der ændrede løsningen. + 1030 + + + + 7d793bb4-ea86-48f9-94ae-ebeffa494368 + + true + Unique identifier of the delegate user who modified the solution. + 1033 + + + + + + 9fe59629-89a7-481e-871d-67b729a35b7a + + true + Modified By (Delegate) + 1033 + + + b0193e53-ad3f-4597-b3a7-b7030b3c2579 + + true + Ændret af (stedfortræder) + 1030 + + + + 9fe59629-89a7-481e-871d-67b729a35b7a + + true + Modified By (Delegate) + 1033 + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + modifiedonbehalfby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOnBehalfBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + b726e2e3-a182-4f38-8829-f6b2f0f89a21 + + modifiedonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + false + + 26 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modifiedonbehalfbyname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOnBehalfByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + f8cce16d-5d40-4ce1-b45a-26de6acf16ab + + modifiedonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + false + + 27 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modifiedonbehalfbyyominame + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOnBehalfByYomiName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + modifiedonbehalfbyname + + Text + + + false + 0 + 320 + + + 963efa22-6a2a-4b93-bc41-52721727a512 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + false + + 7 + 1900-01-01T00:00:00 + + + + + 915ff2f2-3f99-40bd-a26a-3063e5d5cd04 + + true + Unique identifier of the organization associated with the solution. + 1033 + + + cd406bc1-4d5c-4930-bf24-676b7f32f8d5 + + true + Entydigt id for den organisation, der er tilknyttet løsningen. + 1030 + + + + 915ff2f2-3f99-40bd-a26a-3063e5d5cd04 + + true + Unique identifier of the organization associated with the solution. + 1033 + + + + + + 040e3e99-91e9-4793-99ab-f73aa41ca108 + + true + Organization + 1033 + + + 654ed996-2c54-4124-a762-c13875660a83 + + true + Organisation + 1030 + + + + 040e3e99-91e9-4793-99ab-f73aa41ca108 + + true + Organization + 1033 + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + organizationid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + OrganizationId + + + LookupType + + 5.0.0.0 + false + + + None + + organization + + + + ba280f32-b1d3-4c9b-b057-c7b0c8f33e53 + + organizationid + String + false + false + false + + false + canmodifyadditionalsettings + false + + 18 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + organizationidname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + OrganizationIdName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 69d0c73e-2074-4b14-afef-42e92c162ef9 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + false + + 40 + 1900-01-01T00:00:00 + + + + + ef55bfdb-f641-4c36-8ea9-19578b90e797 + + true + Unique identifier of the parent solution. Should only be non-null if this solution is a patch. + 1033 + + + a6425ac1-e6a9-4ea7-8202-d746d8d808ec + + true + Entydigt id for den overordnede løsning. Bør kun være ikke-null-værdier, hvis løsningen er en programrettelse. + 1030 + + + + ef55bfdb-f641-4c36-8ea9-19578b90e797 + + true + Unique identifier of the parent solution. Should only be non-null if this solution is a patch. + 1033 + + + + + + 944ff8b3-d53d-4f5a-88e8-757ef4cc17d7 + + true + Parent Solution + 1033 + + + ff3cc1aa-0e8f-45ba-8301-7a47d35461b2 + + true + Overordnet løsning + 1030 + + + + 944ff8b3-d53d-4f5a-88e8-757ef4cc17d7 + + true + Parent Solution + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + parentsolutionid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ParentSolutionId + + + LookupType + + 8.0.0.0 + false + + + None + + solution + + + + a3410a91-c818-4172-a74f-32a41ff09a0c + + parentsolutionid + String + false + false + false + + false + canmodifyadditionalsettings + false + + 41 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + parentsolutionidname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ParentSolutionIdName + + + StringType + + 8.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 25e55f6b-b52c-4359-86b0-f80424453ac5 + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 38 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + pinpointassetid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + PinpointAssetId + + + StringType + + 5.0.0.0 + false + 0 + + Text + Inactive + 255 + + + Text + + + false + 0 + 510 + + + f6a032b7-192d-443b-909c-da8a28184f38 + + + BigInt + false + false + false + + false + canmodifyadditionalsettings + false + + 35 + 1900-01-01T00:00:00 + + + + + 713ae691-3ef0-4837-8937-e84b29e11eb4 + + true + Identifier of the publisher of this solution in Microsoft Pinpoint. + 1033 + + + 0c7b89b6-29c7-4c95-b896-3464eee6cd3f + + true + Id'et for udgiveren af denne løsning i Microsoft Pinpoint. + 1030 + + + + 713ae691-3ef0-4837-8937-e84b29e11eb4 + + true + Identifier of the publisher of this solution in Microsoft Pinpoint. + 1033 + + + + + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + pinpointpublisherid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + PinpointPublisherId + + + BigIntType + + 5.0.0.0 + true + + + 9223372036854775807 + -9223372036854775808 + + + b9929279-f7d5-4a89-834b-2a4b79b85add + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 34 + 1900-01-01T00:00:00 + + + + + 48b83a31-b722-4269-9533-7cc6b2a670a6 + + true + Default locale of the solution in Microsoft Pinpoint. + 1033 + + + de3f38eb-0a02-4204-9eab-150d7b958f39 + + true + Standardlokal-id for løsningen i Microsoft Pinpoint. + 1030 + + + + 48b83a31-b722-4269-9533-7cc6b2a670a6 + + true + Default locale of the solution in Microsoft Pinpoint. + 1033 + + + + + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + pinpointsolutiondefaultlocale + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + PinpointSolutionDefaultLocale + + + StringType + + 5.0.0.0 + false + 0 + + Text + Inactive + 16 + + + Text + + + false + 0 + 32 + + + d763b070-bce7-4589-874f-404ccaf09a2d + + + BigInt + false + false + false + + false + canmodifyadditionalsettings + false + + 33 + 1900-01-01T00:00:00 + + + + + 3e0b8ebf-4ba5-4f4c-9d17-01ae70461c1c + + true + Identifier of the solution in Microsoft Pinpoint. + 1033 + + + 72268b9b-7a81-4b0a-a4dc-bbe7f0f5f310 + + true + Id for løsningen i Microsoft Pinpoint. + 1030 + + + + 3e0b8ebf-4ba5-4f4c-9d17-01ae70461c1c + + true + Identifier of the solution in Microsoft Pinpoint. + 1033 + + + + + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + pinpointsolutionid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + PinpointSolutionId + + + BigIntType + + 5.0.0.0 + false + + + 9223372036854775807 + -9223372036854775808 + + + be1ba7c1-1444-4723-87bf-db739e0b2aa1 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + false + + 8 + 1900-01-01T00:00:00 + + + + + d1f7f9e5-9fed-421a-a2c2-85fa3ba22147 + + true + Unique identifier of the publisher. + 1033 + + + 1754517c-7ac9-44c6-a171-523d5af7b10e + + true + Entydigt id for udgiveren. + 1030 + + + + d1f7f9e5-9fed-421a-a2c2-85fa3ba22147 + + true + Unique identifier of the publisher. + 1033 + + + + + + e1cf9358-cce3-4427-8bc7-e5953add7002 + + true + Publisher + 1033 + + + 7adc770b-54b1-4d50-93a7-052eeb979f3e + + true + Udgiver + 1030 + + + + e1cf9358-cce3-4427-8bc7-e5953add7002 + + true + Publisher + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + publisherid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + PublisherId + + + LookupType + + 5.0.0.0 + false + + + None + + publisher + + + + bb28a636-dd4c-4aef-8c9d-af66ca650b42 + + publisherid + String + false + false + false + + false + canmodifyadditionalsettings + false + + 17 + 1900-01-01T00:00:00 + + + + + 6201e742-4e14-4f93-8a5f-a1a2daf26234 + + true + name of the publisher. + 1033 + + + 31668e89-8ebc-49ec-ac1c-3faf41aa5783 + + true + navnet på udgiveren. + 1030 + + + + 6201e742-4e14-4f93-8a5f-a1a2daf26234 + + true + name of the publisher. + 1033 + + + + + + 020f1bd7-b3a4-4d5c-9f17-99a484a3b0f5 + + true + Publisher + 1033 + + + 03f3ab51-a53f-4ada-a85d-dcc0c552990d + + true + Udgiver + 1030 + + + + 020f1bd7-b3a4-4d5c-9f17-99a484a3b0f5 + + true + Publisher + 1033 + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + true + true + false + false + + publisheridname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + PublisherIdName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 120deb8a-3c08-4108-91d0-8e7a8e4e0fd7 + + publisherid + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 32 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + publisheridoptionvalueprefix + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + PublisherIdOptionValuePrefix + + + IntegerType + + 5.0.0.0 + true + 0 + + None + 2147483647 + -2147483648 + + 0 + + + f359be45-1669-4c99-8ee0-039760b618ca + + publisherid + String + false + false + false + + false + canmodifyadditionalsettings + false + + 22 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + publisheridprefix + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + PublisherIdPrefix + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + 9d9fc349-efd2-4088-92e9-0f6b845c73d2 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + false + + 2 + 1900-01-01T00:00:00 + + + + + cfdf8427-9428-47ae-a633-36a151e38f4e + + true + Unique identifier of the solution. + 1033 + + + 43301df9-ae96-43cc-a692-12ca479673df + + true + Entydigt id for løsningen. + 1030 + + + + cfdf8427-9428-47ae-a633-36a151e38f4e + + true + Unique identifier of the solution. + 1033 + + + + + + fd43cc4b-cc45-4dd8-9154-779c46029c86 + + true + Solution Identifier + 1033 + + + c38684a8-0e20-43ef-b7d5-caa1d1974a79 + + true + Løsnings-id + 1030 + + + + fd43cc4b-cc45-4dd8-9154-779c46029c86 + + true + Solution Identifier + 1033 + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + true + + true + canmodifyglobalfiltersettings + false + + true + true + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + false + true + + solutionid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SolutionId + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + 5695cedc-f6c9-4aea-abee-44f3dcd55126 + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 39 + 1900-01-01T00:00:00 + + + + + 7ef84ece-1a4e-4bca-a068-d6baeda6844f + + true + Solution package source organization version + 1033 + + + 7d503c49-7c77-496a-ac13-3e24a3769389 + + true + Version af kildeorganisation for løsningspakke + 1030 + + + + 7ef84ece-1a4e-4bca-a068-d6baeda6844f + + true + Solution package source organization version + 1033 + + + + + + 260f596a-01b7-4b23-9637-ea058a6c5289 + + true + Solution Package Version + 1033 + + + b2a560a0-450f-42a2-a15e-6dcdc5a966da + + true + Version af løsningspakke + 1030 + + + + 260f596a-01b7-4b23-9637-ea058a6c5289 + + true + Solution Package Version + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + false + true + true + true + true + + solutionpackageversion + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SolutionPackageVersion + + + StringType + + 7.1.0.0 + false + 0 + + VersionNumber + Auto + 256 + + + VersionNumber + + + false + 0 + 512 + + + 0fe2ce7c-5dd7-492f-9d8b-ec430ffeaa33 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + false + + 43 + 1900-01-01T00:00:00 + + + + + a7f2381e-eee9-4d44-83a1-9fe469aa0c17 + + true + Solution Type + 1033 + + + d5d7a68d-e02e-4d6e-996d-c3e801da36a3 + + true + Løsningstype + 1030 + + + + a7f2381e-eee9-4d44-83a1-9fe469aa0c17 + + true + Solution Type + 1033 + + + + + + b6449168-6138-42ae-9ab4-c614df71abcd + + true + Solution Type + 1033 + + + 59276552-a82a-4aca-ae57-bb432a1902ac + + true + Løsningstype + 1030 + + + + b6449168-6138-42ae-9ab4-c614df71abcd + + true + Solution Type + 1033 + + + solution + + + + false + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + false + true + + solutiontype + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SolutionType + + + PicklistType + + 8.2.0.0 + false + 0 + + 0 + + 54b8d8e7-1672-46a2-934b-e01471605ef1 + + + + + e5e8e246-0122-465b-96fa-9acac0efefc6 + + true + All possible types of solution + 1033 + + + 707ccac4-15d6-4ae5-aba0-cd7ea555dbf4 + + true + Alle mulige løsningstyper + 1030 + + + + e5e8e246-0122-465b-96fa-9acac0efefc6 + + true + All possible types of solution + 1033 + + + + + + 910e34f1-e004-43f3-9a63-fc8c8e14a2cb + + true + Solution Type + 1033 + + + 696ed8bb-1c00-411a-b448-f82a6e5954ba + + true + Løsningstype + 1030 + + + + 910e34f1-e004-43f3-9a63-fc8c8e14a2cb + + true + Solution Type + 1033 + + + + false + + false + iscustomizable + false + + false + true + solution_solutiontype + Picklist + 8.2.0.0 + + + + + + + + + + + false + true + + + + 4a42aa93-4b61-4bad-aa76-f90e4706e586 + + true + None + 1033 + + + 5c9c3059-21f3-43cd-aa18-b9ec77a31fd0 + + true + Ingen + 1030 + + + + 4a42aa93-4b61-4bad-aa76-f90e4706e586 + + true + None + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + bf58e337-4b76-4b93-a380-0259f66be465 + + true + Snapshot + 1033 + + + 0203a025-7e21-443b-ad50-1fcfb0b25065 + + true + Øjebliksbillede + 1030 + + + + bf58e337-4b76-4b93-a380-0259f66be465 + + true + Snapshot + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + af9a4d63-3717-4b2d-8395-2deb993293c4 + + true + Internal + 1033 + + + 23e59147-49b0-4bf7-8053-27213812b60f + + true + Intern + 1030 + + + + af9a4d63-3717-4b2d-8395-2deb993293c4 + + true + Internal + 1033 + + + + 2 + + + + + + + + 0 + + + + + ceb1df41-0895-45c3-a6b6-d39521790e8c + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + false + + 10005 + 2025-11-06T01:58:33.1270016 + + + + + 1fead37b-c65d-48fd-8e5b-b8bd877d9289 + + true + Indicates the current status of source control integration + 1033 + + + + 1fead37b-c65d-48fd-8e5b-b8bd877d9289 + + true + Indicates the current status of source control integration + 1033 + + + + + + b5ae32ae-a3f6-4cbd-9cc0-d236916a2360 + + true + Source Control Sync Status + 1033 + + + + b5ae32ae-a3f6-4cbd-9cc0-d236916a2360 + + true + Source Control Sync Status + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + false + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + false + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + sourcecontrolsyncstatus + 2025-11-06T01:58:33.1270016 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SourceControlSyncStatus + + + PicklistType + + 9.1.0.0 + false + 0 + + 0 + + 0c9f5c18-b4ba-f011-bbd3-7c1e52365f30 + + + + + 0e9f5c18-b4ba-f011-bbd3-7c1e52365f30 + + true + + 1033 + + + + 0e9f5c18-b4ba-f011-bbd3-7c1e52365f30 + + true + + 1033 + + + + + + 0d9f5c18-b4ba-f011-bbd3-7c1e52365f30 + + true + Source Control Sync Status + 1033 + + + + 0d9f5c18-b4ba-f011-bbd3-7c1e52365f30 + + true + Source Control Sync Status + 1033 + + + + true + + false + iscustomizable + false + + false + true + solution_sourcecontrolsyncstatus + Picklist + 9.1.0.0 + + + + + + + + + b1d17bb2-3de7-4606-b7a1-ceb756df254a + + true + + 1033 + + + + b1d17bb2-3de7-4606-b7a1-ceb756df254a + + true + + 1033 + + + + false + true + + + + 38b8f560-2bae-45dc-993a-04e0822ddb3b + + true + Not started + 1033 + + + + 38b8f560-2bae-45dc-993a-04e0822ddb3b + + true + Not started + 1033 + + + + 0 + + + + + + + + + + 6f91f0c7-fefc-40ac-8817-91fab3fc31b8 + + true + + 1033 + + + + 6f91f0c7-fefc-40ac-8817-91fab3fc31b8 + + true + + 1033 + + + + false + true + + + + 0813ac66-0601-4ce5-8b60-4d098a4e7176 + + true + Initial sync in progress + 1033 + + + + 0813ac66-0601-4ce5-8b60-4d098a4e7176 + + true + Initial sync in progress + 1033 + + + + 1 + + + + + + + + + + f27f6934-2c4c-4036-93ca-5e318314cfa9 + + true + + 1033 + + + + f27f6934-2c4c-4036-93ca-5e318314cfa9 + + true + + 1033 + + + + false + true + + + + 14578acc-8523-4e07-8b69-4ef04ced4957 + + true + Errors in initial sync + 1033 + + + + 14578acc-8523-4e07-8b69-4ef04ced4957 + + true + Errors in initial sync + 1033 + + + + 2 + + + + + + + + + + 1371188a-ffd5-47d6-a849-203a83f9180c + + true + + 1033 + + + + 1371188a-ffd5-47d6-a849-203a83f9180c + + true + + 1033 + + + + false + true + + + + 9876a5a3-9447-4f0a-a61f-3c909272b115 + + true + Pending changes to be committed + 1033 + + + + 9876a5a3-9447-4f0a-a61f-3c909272b115 + + true + Pending changes to be committed + 1033 + + + + 3 + + + + + + + + + + 3521d013-443f-404b-a2b3-ba83e5bd3b43 + + true + + 1033 + + + + 3521d013-443f-404b-a2b3-ba83e5bd3b43 + + true + + 1033 + + + + false + true + + + + afc6d65b-3d79-4f88-b6f5-a2215bcfec44 + + true + Committed + 1033 + + + + afc6d65b-3d79-4f88-b6f5-a2215bcfec44 + + true + Committed + 1033 + + + + 4 + + + + + + + + 0 + + + + + ba92bade-0224-4083-a222-f508942bb216 + + sourcecontrolsyncstatus + Virtual + false + false + false + + true + canmodifyadditionalsettings + true + + 10006 + 2025-11-06T01:58:33.1430016 + + + + + + + + + + solution + + + + true + canmodifyauditsettings + false + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + sourcecontrolsyncstatusname + 2025-11-06T01:58:33.1430016 + + true + canmodifyrequirementlevelsettings + None + + sourcecontrolsyncstatusName + + + VirtualType + + 9.1.0.0 + true + + + + + efe8e6a0-de5d-4aec-b5da-44186bc58508 + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 10000 + 2025-11-06T00:45:37.32 + + + + + 936b6fd6-6787-420c-b2ae-a6a4754d4984 + + true + The template suffix of this solution + 1033 + + + + 936b6fd6-6787-420c-b2ae-a6a4754d4984 + + true + The template suffix of this solution + 1033 + + + + + + 2176f235-9033-4a97-9302-7fc4adfd6237 + + true + Suffix + 1033 + + + + 2176f235-9033-4a97-9302-7fc4adfd6237 + + true + Suffix + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + true + true + true + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + false + true + + templatesuffix + 2025-12-23T18:07:34.6870016 + + false + canmodifyrequirementlevelsettings + None + + TemplateSuffix + + + StringType + + 9.1.0.0 + false + 0 + + Text + Auto + 65 + + + Text + + + false + 0 + 130 + + + a060fa9c-8bf4-48e6-b6f5-f71d5c90f3a9 + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 10002 + 2025-11-06T00:45:37.3670016 + + + + + fdc3d9eb-3543-414f-8636-99053ad83898 + + true + thumbprint of the solution signature + 1033 + + + + fdc3d9eb-3543-414f-8636-99053ad83898 + + true + thumbprint of the solution signature + 1033 + + + + + + f16d49a2-393e-4fe5-834e-4b0e4ceb4aa8 + + true + Thumbprint + 1033 + + + + f16d49a2-393e-4fe5-834e-4b0e4ceb4aa8 + + true + Thumbprint + 1033 + + + solution + + + + false + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + true + true + true + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + false + false + true + + thumbprint + 2025-12-23T18:07:34.8600064 + + false + canmodifyrequirementlevelsettings + None + + Thumbprint + + + StringType + + 9.1.0.0 + false + 0 + + Text + Auto + 65 + + + Text + + + false + 0 + 0 + + + c7f1c81a-18f5-40af-a1c1-afebf1005382 + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 14 + 1900-01-01T00:00:00 + + + + + 7339a245-e0a8-4e88-bf32-137a867664ac + + true + The unique name of this solution + 1033 + + + 935db2e7-ed1b-4bad-a6a1-2d9a032f7f2b + + true + Det entydige navn for denne løsning + 1030 + + + + 7339a245-e0a8-4e88-bf32-137a867664ac + + true + The unique name of this solution + 1033 + + + + + + 09af35e9-50b8-48fc-aaa4-6f7692809775 + + true + Name + 1033 + + + ec42d36a-fc2f-4cbe-aa0d-c95aedc28241 + + true + Navn + 1030 + + + + 09af35e9-50b8-48fc-aaa4-6f7692809775 + + true + Name + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + true + true + true + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + false + true + + uniquename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + UniqueName + + + StringType + + 5.0.0.0 + false + 0 + + Text + Auto + 65 + + + Text + + + false + 0 + 130 + + + b7a52c26-6ff3-40b5-b44e-0224cd2755d1 + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + false + + 44 + 1900-01-01T00:00:00 + + + + + 03271427-47c6-4e8b-8ff0-f93e4eee332a + + true + Date and time when the solution was updated. + 1033 + + + 72061e25-51bd-4a0a-b84e-f1bcf4e8d23c + + true + Dato og klokkeslæt for opdatering af løsningen. + 1030 + + + + 03271427-47c6-4e8b-8ff0-f93e4eee332a + + true + Date and time when the solution was updated. + 1033 + + + + + + ad6c3c9c-d5fc-46e3-a982-e66c37064cd0 + + true + Updated On + 1033 + + + cf8b89be-2b1c-4003-b083-c77b3f43ed5a + + true + Opdateret den + 1030 + + + + ad6c3c9c-d5fc-46e3-a982-e66c37064cd0 + + true + Updated On + 1033 + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + updatedon + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + UpdatedOn + + + DateTimeType + + 9.0.0.0 + false + 0 + + DateAndTime + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + + + + 2b1d1c52-134c-ade2-c08c-6bd4effc97c7 + + + Memo + false + false + false + + false + canmodifyadditionalsettings + false + + 10001 + 2025-11-06T00:45:37.3369984 + + + + + 51014af1-a536-072b-bbcf-b8081ce2491f + + true + Contains component info for the solution upgrade operation + 1033 + + + + 51014af1-a536-072b-bbcf-b8081ce2491f + + true + Contains component info for the solution upgrade operation + 1033 + + + + + + + solution + + + + false + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + upgradeinfo + 2025-12-23T18:07:34.8130048 + + false + canmodifyrequirementlevelsettings + None + + UpgradeInfo + + + MemoType + + 9.1.0.0 + false + + + TextArea + Auto + 1073741823 + + TextArea + + false + + + 8eaec995-d351-42f8-ae47-89e4743482ce + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 23 + 1900-01-01T00:00:00 + + + + + b3f6ab86-44a4-4d98-a396-82f94712c663 + + true + Solution version, used to identify a solution for upgrades and hotfixes. + 1033 + + + 4f0ed422-c7d9-4a7b-ad0d-a789157a3adf + + true + Løsningsversion - bruges til at identificere en løsning til opgraderinger og hotfix. + 1030 + + + + b3f6ab86-44a4-4d98-a396-82f94712c663 + + true + Solution version, used to identify a solution for upgrades and hotfixes. + 1033 + + + + + + 16a99b3a-920b-4071-a90e-186f3f7b6392 + + true + Version + 1033 + + + 6010966b-a3e6-4091-adde-5df6ab894e8a + + true + Version + 1030 + + + + 16a99b3a-920b-4071-a90e-186f3f7b6392 + + true + Version + 1033 + + + solution + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + true + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + true + true + true + true + true + true + + version + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + Version + + + StringType + + 5.0.0.0 + false + 0 + + VersionNumber + Auto + 256 + + + VersionNumber + + + false + 0 + 512 + + + 29805ba4-41a8-11dd-9bde-0019b9312238 + + + BigInt + false + false + false + + false + canmodifyadditionalsettings + false + + 1 + 1900-01-01T00:00:00 + + + + + + + + + + solution + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + versionnumber + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + VersionNumber + + + BigIntType + + 5.0.0.0 + false + + + 9223372036854775807 + -9223372036854775808 + + + false + false + false + + false + canbeincustomentityassociation + false + + + false + canbeinmanytomany + false + + + false + canbeprimaryentityinrelationship + false + + + false + canberelatedentityinrelationship + false + + true + + true + canchangetrackingbeenabled + true + + + false + cancreateattributes + false + + + false + cancreatecharts + false + + + false + cancreateforms + false + + + false + cancreateviews + false + + + false + canenablesynctoexternalsearchindex + false + + + true + canmodifyadditionalsettings + true + + false + true + Local + 1900-01-01T00:00:00 + + + false + + + + a4f94019-6c08-4591-9578-4f520f707a40 + + true + A solution which contains CRM customizations. + 1033 + + + 87fe15ad-f1bb-4108-92f7-7cb8218d3590 + + true + En løsning, der indeholder CRM-tilpasninger. + 1030 + + + + a4f94019-6c08-4591-9578-4f520f707a40 + + true + A solution which contains CRM customizations. + 1033 + + + + + + cc01efe6-6819-41a9-b2b5-c94f7d2a03c5 + + true + Solutions + 1033 + + + ae2bfd7c-9c2d-40fb-89e3-de330f7ff51c + + true + Løsninger + 1030 + + + + cc01efe6-6819-41a9-b2b5-c94f7d2a03c5 + + true + Solutions + 1033 + + + + + + 6f3c50dd-7019-4810-b008-da363198eaaf + + true + Solution + 1033 + + + 8ee6b538-ac27-4a70-a0a1-22b1b14ad8d2 + + true + Løsning + 1030 + + + + 6f3c50dd-7019-4810-b008-da363198eaaf + + true + Solution + 1033 + + + false + + false + false + false + false + + + + + false + false + false + false + + true + canmodifyauditsettings + false + + true + false + false + + false + canmodifyconnectionsettings + false + + false + + false + iscustomizable + true + + false + false + + false + canmodifyduplicatedetectionsettings + false + + false + false + false + false + false + false + false + + false + canmodifymailmergesettings + false + + true + + false + ismappable + false + + false + false + + false + canmodifymobileclientreadonly + false + + true + + false + isrenameable + false + + false + false + false + false + false + false + + false + canmodifyqueuesettings + false + + + false + canmodifymobilevisibility + false + + + false + canmodifymobileclientvisibility + false + + solution + + + 23925f91-aaba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + package_solution + None + 9.0.0.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + + + true + + true + + + 00000000-0000-0000-0000-000000000000 + + packageid + package + package_solution + + DoNotDisplay + Details + + + + + + true + + true + + + 00000000-0000-0000-0000-000000000000 + + solutionid + solution + package_solution + package_solution + + + + + 38d0d634-23a1-4ec3-8ede-7fe2d5bf97b1 + + false + + false + iscustomizable + false + + true + true + publisher_solution + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Restrict + NoCascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + publisherid + publisher + publisher_solution + publisherid + solution + publisherid + + 0 + + + dd874335-3204-4cbf-beba-b2dcec54fb2c + + false + + false + iscustomizable + false + + true + true + lk_solutionbase_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_solutionbase_createdonbehalfby + createdonbehalfby + solution + createdonbehalfby + + 0 + + + b751ff85-e53b-4497-af66-17825148c8f8 + + false + + false + iscustomizable + false + + true + false + solution_configuration_webresource + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + webresourceid + webresource + solution_configuration_webresource + configurationpageid + solution + configurationpageid + + 0 + + + 1eda0589-4273-4db6-a86e-ac2cce2aeacb + + false + + false + iscustomizable + false + + true + true + solution_parent_solution + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Restrict + NoCascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + solutionid + solution + solution_parent_solution + parentsolutionid + solution + parentsolutionid + + 0 + + + 7164a1ac-d8f2-423f-9557-0dbf2bd4f0aa + + false + + false + iscustomizable + false + + true + true + lk_solutionbase_modifiedonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_solutionbase_modifiedonbehalfby + modifiedonbehalfby + solution + modifiedonbehalfby + + 0 + + + 23cb25d4-9186-4a94-8199-819c1c01a942 + + false + + false + iscustomizable + false + + true + false + organization_solution + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_solution + organizationid + solution + organizationid + + 0 + + + 09db11ea-7e9b-11dd-94cd-00188b01dce6 + + false + + false + iscustomizable + false + + true + true + lk_solution_createdby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_solution_createdby + createdby + solution + createdby + + 0 + + + 09db11ed-7e9b-11dd-94cd-00188b01dce6 + + false + + false + iscustomizable + false + + true + true + lk_solution_modifiedby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_solution_modifiedby + modifiedby + solution + modifiedby + + 0 + + + 4cc3e4fd-e5a3-44f1-b591-2ed63ded18b6 + + false + + false + iscustomizable + false + + true + false + fileattachment_solution_fileid + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + fileattachmentid + fileattachment + solution_fileid + fileid + solution + fileid + + 0 + + + 2025-11-06T01:58:33.2370048 + 7100 + + + 4a282509-8cb9-4b02-b553-af0179a44512 + + false + + false + iscustomizable + false + + true + true + solution_fieldsecurityprofile + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + solutionid + solution + solution_fieldsecurityprofile + solutionid + fieldsecurityprofile + solution_fieldsecurityprofile + + 0 + + + 506e7861-7c3d-4cdb-a9f6-8ef8303262d9 + + false + + false + iscustomizable + false + + true + false + solution_roleprivileges + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + solutionid + solution + solution_roleprivileges + solutionid + roleprivileges + solutionid + + 0 + + + cfe66967-408e-46e2-941e-8177c782ce39 + + false + + false + iscustomizable + true + + true + true + Solution_SyncErrors + Append + 8.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Cascade + Cascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + solutionid + solution + Solution_SyncErrors + regardingobjectid + syncerror + regardingobjectid_solution_syncerror + + 1 + + + 62506f71-d6f3-4477-889e-c5d292effe82 + + false + + false + iscustomizable + false + + true + false + userentityinstancedata_solution + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + solutionid + solution + userentityinstancedata_solution + objectid + userentityinstancedata + objectid_solution + + 0 + + + 1eda0589-4273-4db6-a86e-ac2cce2aeacb + + false + + false + iscustomizable + false + + true + true + solution_parent_solution + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Restrict + NoCascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + solutionid + solution + solution_parent_solution + parentsolutionid + solution + parentsolutionid + + 0 + + + 4751608e-38ed-11de-9d3f-8000600fe800 + + false + + false + iscustomizable + false + + true + false + solution_base_dependencynode + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Cascade + NoCascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + solutionid + solution + solution_base_dependencynode + basesolutionid + dependencynode + basesolutionid + + 0 + + + 47516094-38ed-11de-9d3f-8000600fe800 + + false + + false + iscustomizable + false + + true + false + solution_top_dependencynode + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + RemoveLink + NoCascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + solutionid + solution + solution_top_dependencynode + topsolutionid + dependencynode + topsolutionid + + 0 + + + 156fcc9c-44e5-40c6-80a0-dbe24e42d502 + + false + + false + iscustomizable + false + + true + false + solution_privilege + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + solutionid + solution + solution_privilege + solutionid + privilege + solution_privilege + + 0 + + + 7b50a8a5-6af5-4b29-8b55-1a4b235c1109 + + false + + false + iscustomizable + true + + true + false + FileAttachment_Solution + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + solutionid + solution + regardingobjectid_fileattachment_solution + objectid + fileattachment + FileAttachment_Solution + + 0 + + + 3f4e10c2-c82c-437b-8864-9c9d520496b9 + + false + + false + iscustomizable + false + + true + false + solution_fieldpermission + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + solutionid + solution + solution_fieldpermission + solutionid + fieldpermission + solution_fieldpermission + + 0 + + + b1f0bee7-a9ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + user_settings_preferred_solution + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + solutionid + solution + user_settings_preferred_solution + preferredsolution + usersettings + preferredsolution + + 0 + + + 91de8de9-18ad-4505-8b80-d8ce9dec387a + + false + + false + iscustomizable + false + + true + true + solution_role + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + solutionid + solution + solution_role + solutionid + role + solution_role + + 0 + + + 4806d7ef-850b-4c19-aef6-270b51492bb6 + + false + + false + iscustomizable + false + + true + true + solution_solutioncomponent + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Cascade + NoCascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + solutionid + solution + solution_solutioncomponent + solutionid + solutioncomponent + solutionid + + 0 + + + 7a7af2fb-94d6-4e23-9484-944fc70438f8 + + false + + false + iscustomizable + false + + true + false + FK_CanvasApp_Solution + None + 9.0.2.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + solutionid + solution + FK_CanvasApp_Solution + solutionid + canvasapp + FK_CanvasApp_Solution + + 0 + + + + 8 + OrganizationOwned + + solutionid + + solutionid + + friendlyname + + + false + false + false + true + false + false + false + prvCreateSolution + 14dd992d-2858-4547-91e9-139ca92d3932 + Create + + + false + false + false + true + false + false + false + prvReadSolution + b64e92c8-5d2a-4052-a026-1b73eff9cebf + Read + + + false + false + false + true + false + false + false + prvWriteSolution + bfab24a8-3987-40ec-9828-8cfa938ee756 + Write + + + false + false + false + true + false + false + false + prvDeleteSolution + 9ef73297-f404-4630-ad16-7340265c6d08 + Delete + + + false + false + false + true + false + false + false + prvAppendSolution + ccea7ff5-5e26-4aed-94a4-fcc2d9733f3a + Append + + + false + false + false + true + false + false + false + prvAppendToSolution + a264eaae-0c71-4370-99d9-4986b33bab60 + AppendTo + + + + FilteredSolution + Solution + + + false + Standard + false + 5.0.0.0 + + + false + canchangehierarchicalrelationship + false + + + false + Solutions + + + true + + solutions + 0 + solutions + false + + true + canmodifymobileclientoffline + false + + false + false + + false + false + + + + solutioncomponent + + 357a748c-78ec-40a6-9694-35af375a1c6b + + 0 + + + ceeef3db-a6be-4cdc-9898-af84db1181f1 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 2 + 1900-01-01T00:00:00 + + + + + fb46c222-79b5-4df9-a857-d9f8291543b1 + + true + The object type code of the component. + 1033 + + + 60946a26-cbd2-4262-8971-5aa41a757c8f + + true + Objekttypekoden for komponenten. + 1030 + + + + fb46c222-79b5-4df9-a857-d9f8291543b1 + + true + The object type code of the component. + 1033 + + + + + + 7a8edf11-5736-4eeb-8b9b-2e0f374088bf + + true + Object Type Code + 1033 + + + 394c6940-5f11-4f8c-b738-e7d1eebeda1d + + true + Objekttypekode + 1030 + + + + 7a8edf11-5736-4eeb-8b9b-2e0f374088bf + + true + Object Type Code + 1033 + + + solutioncomponent + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + componenttype + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + ComponentType + + + PicklistType + + 5.0.0.0 + false + 0 + + + + 10d12bb7-9759-4f24-a100-6f145ca4607c + + + + + 3250e1f4-b9bb-11de-844f-00155da18b00 + + true + All of the possible component types for solutions. + 1033 + + + 9f75a6da-592a-43f9-ba98-374a051c5fe2 + + true + Alle de mulige komponenttyper for løsninger. + 1030 + + + + 3250e1f4-b9bb-11de-844f-00155da18b00 + + true + All of the possible component types for solutions. + 1033 + + + + + + 3250e1f3-b9bb-11de-844f-00155da18b00 + + true + Component Type + 1033 + + + 501f9977-ed07-46c3-a183-2737e526d456 + + true + Komponenttype + 1030 + + + + 3250e1f3-b9bb-11de-844f-00155da18b00 + + true + Component Type + 1033 + + + + false + + false + iscustomizable + false + + true + true + componenttype + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + 3250e1f6-b9bb-11de-844f-00155da18b00 + + true + Entity + 1033 + + + fe72ef59-ace9-4cae-a297-2795fb61c3c5 + + true + Objekt + 1030 + + + + 3250e1f6-b9bb-11de-844f-00155da18b00 + + true + Entity + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + 3250e1f8-b9bb-11de-844f-00155da18b00 + + true + Attribute + 1033 + + + 55615991-abca-46a3-a140-139f1d26413f + + true + Attribut + 1030 + + + + 3250e1f8-b9bb-11de-844f-00155da18b00 + + true + Attribute + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 3250e1fa-b9bb-11de-844f-00155da18b00 + + true + Relationship + 1033 + + + c9ece387-8ca0-4f62-acbb-e3693f4beaec + + true + Relation + 1030 + + + + 3250e1fa-b9bb-11de-844f-00155da18b00 + + true + Relationship + 1033 + + + + 3 + + + + + + + + + + + + false + true + + + + 3250e1fc-b9bb-11de-844f-00155da18b00 + + true + Attribute Picklist Value + 1033 + + + 8e3cd8e3-5a68-4dc2-a077-cb9d38cb8392 + + true + Værdi på valgliste med attributter + 1030 + + + + 3250e1fc-b9bb-11de-844f-00155da18b00 + + true + Attribute Picklist Value + 1033 + + + + 4 + + + + + + + + + + + + false + true + + + + 3250e1fe-b9bb-11de-844f-00155da18b00 + + true + Attribute Lookup Value + 1033 + + + 714ffbd8-e3eb-41f5-a17a-3004edbf956c + + true + Opslagsværdi for attribut + 1030 + + + + 3250e1fe-b9bb-11de-844f-00155da18b00 + + true + Attribute Lookup Value + 1033 + + + + 5 + + + + + + + + + + + + false + true + + + + 3250e200-b9bb-11de-844f-00155da18b00 + + true + View Attribute + 1033 + + + 73849f39-3f89-4c9b-b37b-1b950b63e6be + + true + Vis attribut + 1030 + + + + 3250e200-b9bb-11de-844f-00155da18b00 + + true + View Attribute + 1033 + + + + 6 + + + + + + + + + + + + false + true + + + + 3250e202-b9bb-11de-844f-00155da18b00 + + true + Localized Label + 1033 + + + 21be73c4-2497-4f2f-9797-d283e120a9ca + + true + Lokaliseret etiket + 1030 + + + + 3250e202-b9bb-11de-844f-00155da18b00 + + true + Localized Label + 1033 + + + + 7 + + + + + + + + + + + + false + true + + + + 3250e204-b9bb-11de-844f-00155da18b00 + + true + Relationship Extra Condition + 1033 + + + ff2d0745-7437-4260-8b5a-c6aac37d1628 + + true + Ekstra betingelse i relation + 1030 + + + + 3250e204-b9bb-11de-844f-00155da18b00 + + true + Relationship Extra Condition + 1033 + + + + 8 + + + + + + + + + + + + false + true + + + + 3250e206-b9bb-11de-844f-00155da18b00 + + true + Option Set + 1033 + + + 34a2b6fd-4336-48f2-ac72-29f9ab03a634 + + true + Grupperet indstilling + 1030 + + + + 3250e206-b9bb-11de-844f-00155da18b00 + + true + Option Set + 1033 + + + + 9 + + + + + + + + + + + + false + true + + + + 3250e208-b9bb-11de-844f-00155da18b00 + + true + Entity Relationship + 1033 + + + c1965ed6-2f4a-40ad-b9e8-635002b9f01d + + true + Objektrelation + 1030 + + + + 3250e208-b9bb-11de-844f-00155da18b00 + + true + Entity Relationship + 1033 + + + + 10 + + + + + + + + + + + + false + true + + + + 3250e20a-b9bb-11de-844f-00155da18b00 + + true + Entity Relationship Role + 1033 + + + be80b00f-f107-49e5-920e-e09328a50b56 + + true + Rolle i objektrelation + 1030 + + + + 3250e20a-b9bb-11de-844f-00155da18b00 + + true + Entity Relationship Role + 1033 + + + + 11 + + + + + + + + + + + + false + true + + + + 3250e20c-b9bb-11de-844f-00155da18b00 + + true + Entity Relationship Relationships + 1033 + + + 3dd44a68-27ba-4fd2-ad55-d697227d1984 + + true + Relationer i objektrelation + 1030 + + + + 3250e20c-b9bb-11de-844f-00155da18b00 + + true + Entity Relationship Relationships + 1033 + + + + 12 + + + + + + + + + + + + false + true + + + + b66c9941-227d-11df-8577-00155da18b00 + + true + Managed Property + 1033 + + + 789c5bb1-8f6c-4aeb-858d-ae898680bb3b + + true + Administreret egenskab + 1030 + + + + b66c9941-227d-11df-8577-00155da18b00 + + true + Managed Property + 1033 + + + + 13 + + + + + + + + + + + + false + true + + + + 44b455a2-680b-44a3-98e6-af05d7fac1b2 + + true + Entity Key + 1033 + + + 6c346370-cb82-45ea-a4fa-0ff096e0bd7c + + true + Objektnøgle + 1030 + + + + 44b455a2-680b-44a3-98e6-af05d7fac1b2 + + true + Entity Key + 1033 + + + + 14 + + + + + + + + + + + + false + true + + + + 223f03be-0e3f-4f76-b6ff-0ff1264afa58 + + true + Privilege + 1033 + + + 25547ca7-6775-468e-9d84-144e136d7440 + + true + Rettighed + 1030 + + + + 223f03be-0e3f-4f76-b6ff-0ff1264afa58 + + true + Privilege + 1033 + + + + 16 + + + + + + + + + + + + false + true + + + + 30d7f58d-55ab-4eb8-8b19-a576555921bd + + true + PrivilegeObjectTypeCode + 1033 + + + dc598bed-733c-40d4-b2e3-eaae4579aff7 + + true + PrivilegeObjectTypeCode + 1030 + + + + 30d7f58d-55ab-4eb8-8b19-a576555921bd + + true + PrivilegeObjectTypeCode + 1033 + + + + 17 + + + + + + + + + + + + false + true + + + + 35dbde9c-b9bd-11de-844f-00155da18b00 + + true + Role + 1033 + + + d281e93a-af94-45b4-81aa-b63b97b92414 + + true + Rolle + 1030 + + + + 35dbde9c-b9bd-11de-844f-00155da18b00 + + true + Role + 1033 + + + + 20 + + + + + + + + + + + + false + true + + + + 35dbde9e-b9bd-11de-844f-00155da18b00 + + true + Role Privilege + 1033 + + + fcf32711-1167-4924-b0d0-c95d1d44fb94 + + true + Rollerettighed + 1030 + + + + 35dbde9e-b9bd-11de-844f-00155da18b00 + + true + Role Privilege + 1033 + + + + 21 + + + + + + + + + + + + false + true + + + + 35dbdea0-b9bd-11de-844f-00155da18b00 + + true + Display String + 1033 + + + 3b43f0fe-9a21-4b2c-a487-503ef211b739 + + true + Visningsstreng + 1030 + + + + 35dbdea0-b9bd-11de-844f-00155da18b00 + + true + Display String + 1033 + + + + 22 + + + + + + + + + + + + false + true + + + + 35dbdea2-b9bd-11de-844f-00155da18b00 + + true + Display String Map + 1033 + + + 29f0f956-9d11-4a19-92a9-361c65e75989 + + true + Visningsstrengtilknytning + 1030 + + + + 35dbdea2-b9bd-11de-844f-00155da18b00 + + true + Display String Map + 1033 + + + + 23 + + + + + + + + + + + + false + true + + + + 35dbdea4-b9bd-11de-844f-00155da18b00 + + true + Form + 1033 + + + 2288adcc-1e1d-453e-b5e1-6dcc5c26a7eb + + true + Formular + 1030 + + + + 35dbdea4-b9bd-11de-844f-00155da18b00 + + true + Form + 1033 + + + + 24 + + + + + + + + + + + + false + true + + + + 35dbdea6-b9bd-11de-844f-00155da18b00 + + true + Organization + 1033 + + + ea054f55-30b6-4aac-9926-d66c71998d92 + + true + Organisation + 1030 + + + + 35dbdea6-b9bd-11de-844f-00155da18b00 + + true + Organization + 1033 + + + + 25 + + + + + + + + + + + + false + true + + + + 35dbdea8-b9bd-11de-844f-00155da18b00 + + true + Saved Query + 1033 + + + e2adda6d-07d6-4642-aa74-90c598df9a65 + + true + Gemt forespørgsel + 1030 + + + + 35dbdea8-b9bd-11de-844f-00155da18b00 + + true + Saved Query + 1033 + + + + 26 + + + + + + + + + + + + false + true + + + + 35dbdeae-b9bd-11de-844f-00155da18b00 + + true + Workflow + 1033 + + + 4830f9e8-457a-43da-868f-a3793e6c0d97 + + true + Arbejdsproces + 1030 + + + + 35dbdeae-b9bd-11de-844f-00155da18b00 + + true + Workflow + 1033 + + + + 29 + + + + + + + + + + + + false + true + + + + 2d2fa8a6-df9c-436b-89c1-cb9a79a94a1d + + true + Report + 1033 + + + d834ba5f-1b49-46a6-bf2e-2097927d6dab + + true + Rapport + 1030 + + + + 2d2fa8a6-df9c-436b-89c1-cb9a79a94a1d + + true + Report + 1033 + + + + 31 + + + + + + + + + + + + false + true + + + + e48fd8ee-6621-40bd-a9a1-a1e00544643e + + true + Report Entity + 1033 + + + f109aaf3-72f3-4ccd-9ab7-985c97a5be53 + + true + Rapportobjekt + 1030 + + + + e48fd8ee-6621-40bd-a9a1-a1e00544643e + + true + Report Entity + 1033 + + + + 32 + + + + + + + + + + + + false + true + + + + 91a7a3f9-d7a6-479b-b520-48e02f7319f9 + + true + Report Category + 1033 + + + 09feed14-9a0f-4373-9e2e-2580ca87f79c + + true + Rapportkategori + 1030 + + + + 91a7a3f9-d7a6-479b-b520-48e02f7319f9 + + true + Report Category + 1033 + + + + 33 + + + + + + + + + + + + false + true + + + + 270c9f8b-4f74-4bce-a7ab-ce3baa4e6093 + + true + Report Visibility + 1033 + + + 650a2e4e-7d47-4d82-967d-ed3efea31c65 + + true + Rapportsynlighed + 1030 + + + + 270c9f8b-4f74-4bce-a7ab-ce3baa4e6093 + + true + Report Visibility + 1033 + + + + 34 + + + + + + + + + + + + false + true + + + + f0e8d73c-b474-4c8d-9ae0-df0aea227d2e + + true + Attachment + 1033 + + + ab962989-70f9-4196-9b78-80704eae0370 + + true + Vedhæftet fil + 1030 + + + + f0e8d73c-b474-4c8d-9ae0-df0aea227d2e + + true + Attachment + 1033 + + + + 35 + + + + + + + + + + + + false + true + + + + 35dbdeb2-b9bd-11de-844f-00155da18b00 + + true + Email Template + 1033 + + + 96734669-465e-4489-a670-64bbba76c94a + + true + E-mail-skabelon + 1030 + + + + 35dbdeb2-b9bd-11de-844f-00155da18b00 + + true + Email Template + 1033 + + + + 36 + + + + + + + + + + + + false + true + + + + 35dbdeb4-b9bd-11de-844f-00155da18b00 + + true + Contract Template + 1033 + + + e1ad718a-a5bf-4322-8402-9471d98168d7 + + true + Kontraktskabelon + 1030 + + + + 35dbdeb4-b9bd-11de-844f-00155da18b00 + + true + Contract Template + 1033 + + + + 37 + + + + + + + + + + + + false + true + + + + 35dbdeb6-b9bd-11de-844f-00155da18b00 + + true + KB Article Template + 1033 + + + 7b929693-574c-4cb0-8370-f7715c11fa90 + + true + Skabelon til KnowledgeBase-artikel + 1030 + + + + 35dbdeb6-b9bd-11de-844f-00155da18b00 + + true + KB Article Template + 1033 + + + + 38 + + + + + + + + + + + + false + true + + + + 35dbdeb8-b9bd-11de-844f-00155da18b00 + + true + Mail Merge Template + 1033 + + + ceddb5ea-7f3d-4ae6-be1c-38adeea03cbd + + true + Skabelon til brevfletning + 1030 + + + + 35dbdeb8-b9bd-11de-844f-00155da18b00 + + true + Mail Merge Template + 1033 + + + + 39 + + + + + + + + + + + + false + true + + + + 35dbdeba-b9bd-11de-844f-00155da18b00 + + true + Duplicate Rule + 1033 + + + 8ffa522f-4c35-4345-90bd-9670f3063c9b + + true + Duplikeret regel + 1030 + + + + 35dbdeba-b9bd-11de-844f-00155da18b00 + + true + Duplicate Rule + 1033 + + + + 44 + + + + + + + + + + + + false + true + + + + 35dbdebc-b9bd-11de-844f-00155da18b00 + + true + Duplicate Rule Condition + 1033 + + + b74f7cd8-50cc-40f6-9f1d-3ed1be08f93c + + true + Dubletregeltilstand + 1030 + + + + 35dbdebc-b9bd-11de-844f-00155da18b00 + + true + Duplicate Rule Condition + 1033 + + + + 45 + + + + + + + + + + + + false + true + + + + 35dbdebe-b9bd-11de-844f-00155da18b00 + + true + Entity Map + 1033 + + + 9f89bbb7-12b8-46c5-ab8c-7afc88822a4b + + true + Objekttilknytning + 1030 + + + + 35dbdebe-b9bd-11de-844f-00155da18b00 + + true + Entity Map + 1033 + + + + 46 + + + + + + + + + + + + false + true + + + + 35dbdec0-b9bd-11de-844f-00155da18b00 + + true + Attribute Map + 1033 + + + d25dbd8a-b046-47b8-aaab-38922783eefc + + true + Attributtilknytning + 1030 + + + + 35dbdec0-b9bd-11de-844f-00155da18b00 + + true + Attribute Map + 1033 + + + + 47 + + + + + + + + + + + + false + true + + + + 35dbdec2-b9bd-11de-844f-00155da18b00 + + true + Ribbon Command + 1033 + + + e7b9e5e9-bf7d-43f3-bbed-0b9f4a5d5f22 + + true + Kommando på bånd + 1030 + + + + 35dbdec2-b9bd-11de-844f-00155da18b00 + + true + Ribbon Command + 1033 + + + + 48 + + + + + + + + + + + + false + true + + + + 35dbdec4-b9bd-11de-844f-00155da18b00 + + true + Ribbon Context Group + 1033 + + + e1a03d3d-8c6c-4343-ab69-43e44030a2b8 + + true + Genvejsmenu til gruppe på bånd + 1030 + + + + 35dbdec4-b9bd-11de-844f-00155da18b00 + + true + Ribbon Context Group + 1033 + + + + 49 + + + + + + + + + + + + false + true + + + + 35dbdec6-b9bd-11de-844f-00155da18b00 + + true + Ribbon Customization + 1033 + + + 21f2b89c-e834-49e9-b1bf-bf72796e17b1 + + true + Tilpasning af båndet + 1030 + + + + 35dbdec6-b9bd-11de-844f-00155da18b00 + + true + Ribbon Customization + 1033 + + + + 50 + + + + + + + + + + + + false + true + + + + 35dbdec8-b9bd-11de-844f-00155da18b00 + + true + Ribbon Rule + 1033 + + + 392b0442-f1d0-43cd-9b32-1aaa082e3a4d + + true + Båndregel + 1030 + + + + 35dbdec8-b9bd-11de-844f-00155da18b00 + + true + Ribbon Rule + 1033 + + + + 52 + + + + + + + + + + + + false + true + + + + 35dbdeca-b9bd-11de-844f-00155da18b00 + + true + Ribbon Tab To Command Map + 1033 + + + 7123f030-87a6-4b0e-9eb3-1bc6a496a8ae + + true + Tilknytning mellem fane på båndet og kommando + 1030 + + + + 35dbdeca-b9bd-11de-844f-00155da18b00 + + true + Ribbon Tab To Command Map + 1033 + + + + 53 + + + + + + + + + + + + false + true + + + + 35dbdecc-b9bd-11de-844f-00155da18b00 + + true + Ribbon Diff + 1033 + + + 32a1984f-e0d7-49c1-8623-4ecbcf27fa8e + + true + Difference på bånd + 1030 + + + + 35dbdecc-b9bd-11de-844f-00155da18b00 + + true + Ribbon Diff + 1033 + + + + 55 + + + + + + + + + + + + false + true + + + + e4261e0c-b9bd-11de-844f-00155da18b00 + + true + Saved Query Visualization + 1033 + + + 37683582-0d17-49ee-b2c6-a883fccc1bc8 + + true + Visualisering af forespørgsel blev gemt + 1030 + + + + e4261e0c-b9bd-11de-844f-00155da18b00 + + true + Saved Query Visualization + 1033 + + + + 59 + + + + + + + + + + + + false + true + + + + e4261e0e-b9bd-11de-844f-00155da18b00 + + true + System Form + 1033 + + + e29a885e-70a0-4e57-b71b-ae6d4e2bbf95 + + true + Systemformular + 1030 + + + + e4261e0e-b9bd-11de-844f-00155da18b00 + + true + System Form + 1033 + + + + 60 + + + + + + + + + + + + false + true + + + + e4261e10-b9bd-11de-844f-00155da18b00 + + true + Web Resource + 1033 + + + 2558e188-d2f1-4fc4-bcd4-8a6dae6413bd + + true + Webressource + 1030 + + + + e4261e10-b9bd-11de-844f-00155da18b00 + + true + Web Resource + 1033 + + + + 61 + + + + + + + + + + + + false + true + + + + e4261e12-b9bd-11de-844f-00155da18b00 + + true + Site Map + 1033 + + + 004ecd08-a085-4093-aba4-209440491a2d + + true + Oversigt over websted + 1030 + + + + e4261e12-b9bd-11de-844f-00155da18b00 + + true + Site Map + 1033 + + + + 62 + + + + + + + + + + + + false + true + + + + e4261e14-b9bd-11de-844f-00155da18b00 + + true + Connection Role + 1033 + + + 8af2a10f-7e4e-4535-ad38-330323c60881 + + true + Forbindelsesrolle + 1030 + + + + e4261e14-b9bd-11de-844f-00155da18b00 + + true + Connection Role + 1033 + + + + 63 + + + + + + + + + + + + false + true + + + + 0d4bd12a-5149-49b2-925f-d09ce20c4be8 + + true + Complex Control + 1033 + + + 3babdd2f-6d5e-4d4f-9868-b9d5cedff35f + + true + Komplekst kontrolelement + 1030 + + + + 0d4bd12a-5149-49b2-925f-d09ce20c4be8 + + true + Complex Control + 1033 + + + + 64 + + + + + + + + + + + + false + true + + + + 9d15b865-2d55-11df-838b-0019b9279bfb + + true + Field Security Profile + 1033 + + + 550cdfd3-3b45-491a-97fb-bcc4acef11fb + + true + Profil for feltsikkerhed + 1030 + + + + 9d15b865-2d55-11df-838b-0019b9279bfb + + true + Field Security Profile + 1033 + + + + 70 + + + + + + + + + + + + false + true + + + + af8018e1-2d55-11df-838b-0019b9279bfb + + true + Field Permission + 1033 + + + a9205f4c-a02a-473d-ad85-79fcfad4ab56 + + true + Feltrettighed + 1030 + + + + af8018e1-2d55-11df-838b-0019b9279bfb + + true + Field Permission + 1033 + + + + 71 + + + + + + + + + + + + false + true + + + + bda86701-56d0-48d3-8328-7891c3f3984f + + true + Plugin Type + 1033 + + + 4bd335bf-46a3-44ff-8ddb-7b229b67c54a + + true + Type af plug-in + 1030 + + + + bda86701-56d0-48d3-8328-7891c3f3984f + + true + Plugin Type + 1033 + + + + 90 + + + + + + + + + + + + false + true + + + + bda86711-56d0-48d3-8328-7891c3f3984f + + true + Plugin Assembly + 1033 + + + 609c5670-2988-4a54-9d74-74e5df1bf34e + + true + Plug-in-assembly + 1030 + + + + bda86711-56d0-48d3-8328-7891c3f3984f + + true + Plugin Assembly + 1033 + + + + 91 + + + + + + + + + + + + false + true + + + + bda86721-56d0-48d3-8328-7891c3f3984f + + true + SDK Message Processing Step + 1033 + + + b19ae986-efd8-4052-81fb-b954b2785948 + + true + Behandlingstrin for SDK-meddelelse + 1030 + + + + bda86721-56d0-48d3-8328-7891c3f3984f + + true + SDK Message Processing Step + 1033 + + + + 92 + + + + + + + + + + + + false + true + + + + bda86731-56d0-48d3-8328-7891c3f3984f + + true + SDK Message Processing Step Image + 1033 + + + e45102e8-f993-4346-901b-2fe40a35a7ac + + true + Behandlingstrinsbillede for SDK-meddelelse + 1030 + + + + bda86731-56d0-48d3-8328-7891c3f3984f + + true + SDK Message Processing Step Image + 1033 + + + + 93 + + + + + + + + + + + + false + true + + + + bda86751-56d0-48d3-8328-7891c3f3984f + + true + Service Endpoint + 1033 + + + 53b9d86b-2d66-4c9a-8894-8f3589fe05bd + + true + Slutpunkt for tjeneste + 1030 + + + + bda86751-56d0-48d3-8328-7891c3f3984f + + true + Service Endpoint + 1033 + + + + 95 + + + + + + + + + + + + false + true + + + + c7d53761-14ad-4e06-8a90-73d7cc57bde9 + + true + Routing Rule + 1033 + + + 43301a2a-dbe3-415e-814e-ba40f6dd26df + + true + Ruteregel + 1030 + + + + c7d53761-14ad-4e06-8a90-73d7cc57bde9 + + true + Routing Rule + 1033 + + + + 150 + + + + + + + + + + + + false + true + + + + 7397d0fd-fa77-40ab-989a-c1d8593f6264 + + true + Routing Rule Item + 1033 + + + 90086ea8-9293-40d5-a890-210996693fab + + true + Ruteregelelement + 1030 + + + + 7397d0fd-fa77-40ab-989a-c1d8593f6264 + + true + Routing Rule Item + 1033 + + + + 151 + + + + + + + + + + + + false + true + + + + 2a368df3-91be-4ea7-9de4-c8882819c31c + + true + SLA + 1033 + + + d25a06f5-4a55-41f1-9498-e930fd4716e6 + + true + SLA + 1030 + + + + 2a368df3-91be-4ea7-9de4-c8882819c31c + + true + SLA + 1033 + + + + 152 + + + + + + + + + + + + false + true + + + + e917239c-0bb9-437d-8d51-3457c11dec55 + + true + SLA Item + 1033 + + + bac09a04-ded7-443a-8db3-a22f8ec17216 + + true + SLA-element + 1030 + + + + e917239c-0bb9-437d-8d51-3457c11dec55 + + true + SLA Item + 1033 + + + + 153 + + + + + + + + + + + + false + true + + + + 5e4fc65e-6512-418a-ad35-34102609a6f2 + + true + Convert Rule + 1033 + + + 4cea389b-cf0b-4a7b-b08b-7a9f6cd61939 + + true + Konverteringsregel + 1030 + + + + 5e4fc65e-6512-418a-ad35-34102609a6f2 + + true + Convert Rule + 1033 + + + + 154 + + + + + + + + + + + + false + true + + + + 0cfb2ee8-e1d5-4c51-b058-3044804a7c98 + + true + Convert Rule Item + 1033 + + + 7ec2f1fb-0944-436d-8135-bf28b71e1976 + + true + Konverteringsregelelement + 1030 + + + + 0cfb2ee8-e1d5-4c51-b058-3044804a7c98 + + true + Convert Rule Item + 1033 + + + + 155 + + + + + + + + + + + + false + true + + + + 2286e0fd-9a69-4668-9ca1-fb18a8826ceb + + true + Hierarchy Rule + 1033 + + + 5c2709d2-21ad-4541-9087-e0cc9f77a235 + + true + Hierarkiregel + 1030 + + + + 2286e0fd-9a69-4668-9ca1-fb18a8826ceb + + true + Hierarchy Rule + 1033 + + + + 65 + + + + + + + + + + + + false + true + + + + 9c99d6bb-3790-47b0-950c-014b747d12a9 + + true + Mobile Offline Profile + 1033 + + + 00436c9c-d151-4e0c-86b6-48545234c71e + + true + Mobile Offline-profil + 1030 + + + + 9c99d6bb-3790-47b0-950c-014b747d12a9 + + true + Mobile Offline Profile + 1033 + + + + 161 + + + + + + + + + + + + false + true + + + + a0d3a0b9-ee17-4be1-86f1-e7b5ebbe1a7a + + true + Mobile Offline Profile Item + 1033 + + + ca1ce0f0-07ad-459a-bb00-f6a80d40b1aa + + true + Mobile Offline-profilelement + 1030 + + + + a0d3a0b9-ee17-4be1-86f1-e7b5ebbe1a7a + + true + Mobile Offline Profile Item + 1033 + + + + 162 + + + + + + + + + + + + false + true + + + + d606c762-0741-4f34-b2b1-818f5b6128b7 + + true + Similarity Rule + 1033 + + + b1eb4c2f-1ccf-42af-9320-6b3d04c18508 + + true + Lighedsregel + 1030 + + + + d606c762-0741-4f34-b2b1-818f5b6128b7 + + true + Similarity Rule + 1033 + + + + 165 + + + + + + + + + + + + false + true + + + + 631ced83-509a-49c4-99b4-8f3ffc55d3c2 + + true + Custom Control + 1033 + + + 2ed52491-1c28-4656-bedd-454d771f9894 + + true + Brugerdefineret kontrolelement + 1030 + + + + 631ced83-509a-49c4-99b4-8f3ffc55d3c2 + + true + Custom Control + 1033 + + + + 66 + + + + + + + + + + + + false + true + + + + ec71a702-a778-4074-b883-3dae457283a7 + + true + Custom Control Default Config + 1033 + + + 5626e407-9409-49bc-a9ec-2e5d73504f00 + + true + Standardkonfiguration for brugerdefineret kontrolelement + 1030 + + + + ec71a702-a778-4074-b883-3dae457283a7 + + true + Custom Control Default Config + 1033 + + + + 68 + + + + + + + + + + + + false + true + + + + a5f448d5-eada-4970-8c13-ede8b219ee2e + + true + Data Source Mapping + 1033 + + + 90eb0735-28ba-4c55-828e-e5cefc304a0f + + true + Tilknytning af datakilde + 1030 + + + + a5f448d5-eada-4970-8c13-ede8b219ee2e + + true + Data Source Mapping + 1033 + + + + 166 + + + + + + + + + + + + false + true + + + + 1325e625-8828-4ffb-9051-0564fc17286a + + true + SDKMessage + 1033 + + + bc3a7841-0450-4770-b87d-b04c83fad233 + + true + SDKMessage + 1030 + + + + 1325e625-8828-4ffb-9051-0564fc17286a + + true + SDKMessage + 1033 + + + + 201 + + + + + + + + + + + + false + true + + + + 653e864d-912c-42e1-9323-927a95fd78ce + + true + SDKMessageFilter + 1033 + + + 3ef77621-5b46-4741-9a69-4ef0b5876559 + + true + SDKMessageFilter + 1030 + + + + 653e864d-912c-42e1-9323-927a95fd78ce + + true + SDKMessageFilter + 1033 + + + + 202 + + + + + + + + + + + + false + true + + + + f3ba0616-fadc-4eca-ba00-281ff81f1ce2 + + true + SdkMessagePair + 1033 + + + 60426e5f-0e6b-4e9c-ab63-612172705013 + + true + SdkMessagePair + 1030 + + + + f3ba0616-fadc-4eca-ba00-281ff81f1ce2 + + true + SdkMessagePair + 1033 + + + + 203 + + + + + + + + + + + + false + true + + + + d62f2300-1dbe-4580-aa3f-f7e888b4f139 + + true + SdkMessageRequest + 1033 + + + 5e8b1b8f-0735-415d-ad82-d134bcfddb6c + + true + SdkMessageRequest + 1030 + + + + d62f2300-1dbe-4580-aa3f-f7e888b4f139 + + true + SdkMessageRequest + 1033 + + + + 204 + + + + + + + + + + + + false + true + + + + d57c7e80-58f1-47f1-94ff-3626baf79966 + + true + SdkMessageRequestField + 1033 + + + e89ae203-51cf-48a4-ba20-dace5d633425 + + true + SdkMessageRequestField + 1030 + + + + d57c7e80-58f1-47f1-94ff-3626baf79966 + + true + SdkMessageRequestField + 1033 + + + + 205 + + + + + + + + + + + + false + true + + + + c6c6f188-bf75-4300-939b-1130b7c69917 + + true + SdkMessageResponse + 1033 + + + bb874c1a-cf23-49c0-b0b9-350ee707d44c + + true + SdkMessageResponse + 1030 + + + + c6c6f188-bf75-4300-939b-1130b7c69917 + + true + SdkMessageResponse + 1033 + + + + 206 + + + + + + + + + + + + false + true + + + + 442e93ae-098b-478c-8104-5e295d3af482 + + true + SdkMessageResponseField + 1033 + + + f60e7181-7d6b-4a78-9e31-d1bbae050586 + + true + SdkMessageResponseField + 1030 + + + + 442e93ae-098b-478c-8104-5e295d3af482 + + true + SdkMessageResponseField + 1033 + + + + 207 + + + + + + + + + + + + false + true + + + + f830a047-67f3-457d-85e1-a9d7805e8c75 + + true + WebWizard + 1033 + + + c88b35e7-6808-4d35-8322-f9291e862373 + + true + WebWizard + 1030 + + + + f830a047-67f3-457d-85e1-a9d7805e8c75 + + true + WebWizard + 1033 + + + + 210 + + + + + + + + + + + + false + true + + + + a61eef9c-5117-42f9-b74c-ed2160034963 + + true + Index + 1033 + + + 4105ce0a-58fa-4ff9-9aeb-7969b2c0d5b2 + + true + Indeks + 1030 + + + + a61eef9c-5117-42f9-b74c-ed2160034963 + + true + Index + 1033 + + + + 18 + + + + + + + + + + + + false + true + + + + eb593ac5-ebf3-4966-a57e-159610980deb + + true + Import Map + 1033 + + + ccf1adf1-4edb-4d58-8c21-214d03ddf7fc + + true + Importer tilknytning + 1030 + + + + eb593ac5-ebf3-4966-a57e-159610980deb + + true + Import Map + 1033 + + + + 208 + + + + + + + + + + + + false + true + + + + 905fd089-2e64-4ec8-b673-8b8a6e4017e4 + + true + Canvas App + 1033 + + + 8d436e17-d959-4212-8530-f00d9fb1a4a1 + + true + Lærred-app + 1030 + + + + 905fd089-2e64-4ec8-b673-8b8a6e4017e4 + + true + Canvas App + 1033 + + + + 300 + + + + + + + + + + + + false + true + + + + fe6c5ab8-afbf-4035-b314-3bd3b326c84a + + true + Connector + 1033 + + + 0e5eb4a9-92cf-4e2c-b811-fcca7721768e + + true + Connector + 1030 + + + + fe6c5ab8-afbf-4035-b314-3bd3b326c84a + + true + Connector + 1033 + + + + 371 + + + + + + + + + + + + false + true + + + + 1b801d8e-ff15-4970-b046-8d116621a990 + + true + Connector + 1033 + + + afba9ecc-4f77-49e1-af32-cd3dd3181173 + + true + Connector + 1030 + + + + 1b801d8e-ff15-4970-b046-8d116621a990 + + true + Connector + 1033 + + + + 372 + + + + + + + + + + + + false + true + + + + 9c28d347-aa84-4213-beac-f5b51896c404 + + true + Environment Variable Definition + 1033 + + + 1806fe85-af4a-43a1-9142-f82979576c89 + + true + Definition af miljøvariabel + 1030 + + + + 9c28d347-aa84-4213-beac-f5b51896c404 + + true + Environment Variable Definition + 1033 + + + + 380 + + + + + + + + + + + + false + true + + + + b2c46bc9-c529-4f38-bf70-26cf91785202 + + true + Environment Variable Value + 1033 + + + 1066f318-c9b1-4b2f-b53b-b0f82d19f989 + + true + Værdi for miljøvariabel + 1030 + + + + b2c46bc9-c529-4f38-bf70-26cf91785202 + + true + Environment Variable Value + 1033 + + + + 381 + + + + + + + + + + + + false + true + + + + 4232109e-df1d-4d7d-ae0d-2a1a08add409 + + true + AI Project Type + 1033 + + + 7040fa9b-179d-4aea-b3c0-acc51d41a7c2 + + true + AI-projekttype + 1030 + + + + 4232109e-df1d-4d7d-ae0d-2a1a08add409 + + true + AI Project Type + 1033 + + + + 400 + + + + + + + + + + + + false + true + + + + 38358320-4c5c-4a00-90da-2ba6f151641b + + true + AI Project + 1033 + + + dc5d0dc6-7915-4ea2-b789-d84e585d54cb + + true + AI-projekt + 1030 + + + + 38358320-4c5c-4a00-90da-2ba6f151641b + + true + AI Project + 1033 + + + + 401 + + + + + + + + + + + + false + true + + + + 1b655b86-48c8-4924-9449-ea68bca515cc + + true + AI Configuration + 1033 + + + 5dc96c46-c703-4775-9aad-8d34195f3fb2 + + true + AI-konfiguration + 1030 + + + + 1b655b86-48c8-4924-9449-ea68bca515cc + + true + AI Configuration + 1033 + + + + 402 + + + + + + + + + + + + false + true + + + + f2fe6a02-5c54-4417-817e-a69781951729 + + true + Entity Analytics Configuration + 1033 + + + 471eb7e1-ff83-41a4-a864-cb4e19723605 + + true + Konfiguration af objektanalyse + 1030 + + + + f2fe6a02-5c54-4417-817e-a69781951729 + + true + Entity Analytics Configuration + 1033 + + + + 430 + + + + + + + + + + + + false + true + + + + 02812233-6e28-4e72-9be0-8d1ba3e4f71e + + true + Attribute Image Configuration + 1033 + + + a328000c-5190-4142-80d6-506516bb4887 + + true + Konfiguration af attributbillede + 1030 + + + + 02812233-6e28-4e72-9be0-8d1ba3e4f71e + + true + Attribute Image Configuration + 1033 + + + + 431 + + + + + + + + + + + + false + true + + + + 1ac70d4c-91e2-47b1-8244-8e547447594f + + true + Entity Image Configuration + 1033 + + + 8dc52ee6-d60d-4250-bad8-c1a79995cdb8 + + true + Konfiguration af objektbillede + 1030 + + + + 1ac70d4c-91e2-47b1-8244-8e547447594f + + true + Entity Image Configuration + 1033 + + + + 432 + + + + + + + + 0 + + + + + 5fffeae6-bd0d-11de-844f-00155da18b00 + + componenttype + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 12 + 1900-01-01T00:00:00 + + + + + + + + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + componenttypename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ComponentTypeName + + + VirtualType + + 5.0.0.0 + true + + + + + 0a2cd3b3-3a59-4f7b-a345-eb6863843414 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 10 + 1900-01-01T00:00:00 + + + + + f258fb7b-0a83-41ae-a8f9-bf6d46681a55 + + true + Unique identifier of the user who created the solution + 1033 + + + fa9577b5-05a3-4028-9fc5-19419074c8eb + + true + Entydigt id for den bruger, der oprettede løsningen + 1030 + + + + f258fb7b-0a83-41ae-a8f9-bf6d46681a55 + + true + Unique identifier of the user who created the solution + 1033 + + + + + + 143ec53f-f275-45c6-831a-aec0b0e3db46 + + true + Created By + 1033 + + + 160b8d7a-c894-4b22-ad4d-56c8c0a3a5c0 + + true + Oprettet af + 1030 + + + + 143ec53f-f275-45c6-831a-aec0b0e3db46 + + true + Created By + 1033 + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + createdby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + d5d257c7-47ca-492e-9768-a67012398bf9 + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + true + + 9 + 1900-01-01T00:00:00 + + + + + 829e7618-e13d-4397-a893-55668ec5543f + + true + Date and time when the solution was created. + 1033 + + + b1589241-df02-46c9-9b0e-b35dd12011ca + + true + Dato og klokkeslæt for oprettelse af løsningen. + 1030 + + + + 829e7618-e13d-4397-a893-55668ec5543f + + true + Date and time when the solution was created. + 1033 + + + + + + 78a03ba5-24d7-4fd0-b646-f995a9cde0de + + true + Created On + 1033 + + + cdbbbb2a-a9fd-410b-b84c-b61ae0b8201c + + true + Oprettet + 1030 + + + + 78a03ba5-24d7-4fd0-b646-f995a9cde0de + + true + Created On + 1033 + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + createdon + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedOn + + + DateTimeType + + 5.0.0.0 + false + 0 + + DateAndTime + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + + + + 67fbe065-ca1d-40eb-a45e-59d54a7a40ff + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 17 + 1900-01-01T00:00:00 + + + + + fb965883-7d8f-4701-ade9-8c82858b9378 + + true + Unique identifier of the delegate user who created the solution. + 1033 + + + 1160d1e3-8a86-4163-b336-f4720a1156a0 + + true + Entydigt id for den stedfortræderbruger, der oprettede løsningen. + 1030 + + + + fb965883-7d8f-4701-ade9-8c82858b9378 + + true + Unique identifier of the delegate user who created the solution. + 1033 + + + + + + b85fc22a-9977-48cd-a186-54985e969b28 + + true + Created By (Delegate) + 1033 + + + f318fdc4-c18f-4a41-bc54-7936e3f00594 + + true + Oprettet af (stedfortræder) + 1030 + + + + b85fc22a-9977-48cd-a186-54985e969b28 + + true + Created By (Delegate) + 1033 + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + createdonbehalfby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedOnBehalfBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + 5061a4c8-c7f8-413a-ae08-96cd30e2ae35 + + createdonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 19 + 1900-01-01T00:00:00 + + + + + + + + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + createdonbehalfbyname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedOnBehalfByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + bc8b3b31-3caf-4e21-89d2-0c86a2830f41 + + createdonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 20 + 1900-01-01T00:00:00 + + + + + + + + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + createdonbehalfbyyominame + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CreatedOnBehalfByYomiName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + createdonbehalfbyname + + Text + + + false + 0 + 320 + + + 0bf7a8e9-4d08-4854-b238-28277e536cd3 + + + Boolean + false + false + false + + false + canmodifyadditionalsettings + true + + 4 + 1900-01-01T00:00:00 + + + + + 5b1905f9-11db-4272-827d-7c97271c2958 + + true + Indicates whether this component is metadata or data. + 1033 + + + e5aa5f29-1aa2-4060-9a8b-2af507be70db + + true + Angiver, om komponenten er metadata eller data. + 1030 + + + + 5b1905f9-11db-4272-827d-7c97271c2958 + + true + Indicates whether this component is metadata or data. + 1033 + + + + + + 45c8e3e6-9c79-4bbc-b8b5-0e84b99a5deb + + true + Is this component metadata + 1033 + + + 0d0fa41e-94c2-4a64-b59d-f0a07be3ede9 + + true + Er dette komponentmetadata? + 1030 + + + + 45c8e3e6-9c79-4bbc-b8b5-0e84b99a5deb + + true + Is this component metadata + 1033 + + + solutioncomponent + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + ismetadata + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + IsMetadata + + + BooleanType + + 5.0.0.0 + false + 0 + + true + + 580c3ab3-843c-4a25-873a-c302ebe33966 + + + + + 48b9a719-bd69-4691-a85e-ffac1f5c4e16 + + true + Indicates whether this component is metadata or data. + 1033 + + + b8fe18ec-5c50-4e6d-a12f-285de245c23d + + true + Angiver, om komponenten er metadata eller data. + 1030 + + + + 48b9a719-bd69-4691-a85e-ffac1f5c4e16 + + true + Indicates whether this component is metadata or data. + 1033 + + + + + + 3b4214b0-94e8-4f33-9c58-1c86409026e6 + + true + Is this component metadata + 1033 + + + ea7a320c-5436-4a05-88e1-84bbf5523fb2 + + true + Er dette komponentmetadata? + 1030 + + + + 3b4214b0-94e8-4f33-9c58-1c86409026e6 + + true + Is this component metadata + 1033 + + + + false + + false + iscustomizable + false + + false + true + solutioncomponent_ismetadata + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 5301eb72-06ea-4ad9-9a2d-0d3f1bd46e43 + + true + Data + 1033 + + + 7206f5e7-4c8c-4e1c-8524-bbe68c34fe3e + + true + Data + 1030 + + + + 5301eb72-06ea-4ad9-9a2d-0d3f1bd46e43 + + true + Data + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 919368f3-7dfb-48de-ba86-0a8d0492a4e3 + + true + Metadata + 1033 + + + e35e4895-e886-46c5-8523-57b3302cbe53 + + true + Metadata + 1030 + + + + 919368f3-7dfb-48de-ba86-0a8d0492a4e3 + + true + Metadata + 1033 + + + + 1 + + + + + 0 + + + 902f4370-4622-4f87-a1c2-92692755eec9 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 6 + 1900-01-01T00:00:00 + + + + + 04bf1912-2a47-49cd-b8a7-ea8fb7fee93f + + true + Unique identifier of the user who last modified the solution. + 1033 + + + 2946d9eb-23c4-4a66-be2d-7ea1ed89e658 + + true + Entydigt id for den bruger, der senest ændrede løsningen. + 1030 + + + + 04bf1912-2a47-49cd-b8a7-ea8fb7fee93f + + true + Unique identifier of the user who last modified the solution. + 1033 + + + + + + d4f2a120-74b9-4815-9ae2-42d5824a588b + + true + Modified By + 1033 + + + 60f8c582-bda7-477a-b20f-4444008a8b8d + + true + Ændret af + 1030 + + + + d4f2a120-74b9-4815-9ae2-42d5824a588b + + true + Modified By + 1033 + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + modifiedby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + 851ca47c-20e3-4ff6-82ab-da7ccf213cd1 + + + DateTime + false + false + false + + false + canmodifyadditionalsettings + true + + 8 + 1900-01-01T00:00:00 + + + + + 78715e4c-f5ef-4ee3-8744-857ca1c5e2ec + + true + Date and time when the solution was last modified. + 1033 + + + 0a233e96-e6b4-4de5-aac8-c63133e61515 + + true + Dato og klokkeslæt for den seneste ændring af løsningen. + 1030 + + + + 78715e4c-f5ef-4ee3-8744-857ca1c5e2ec + + true + Date and time when the solution was last modified. + 1033 + + + + + + f1dd1b12-0ffc-4c4b-aace-e0dd1b0a7c6f + + true + Modified On + 1033 + + + b38f05ca-d54d-4c5a-becd-22a2a3c8709a + + true + Ændret + 1030 + + + + f1dd1b12-0ffc-4c4b-aace-e0dd1b0a7c6f + + true + Modified On + 1033 + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + modifiedon + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOn + + + DateTimeType + + 5.0.0.0 + false + 0 + + DateAndTime + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + + + + 4325a54b-eeaa-4255-816a-6090944aa078 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 13 + 1900-01-01T00:00:00 + + + + + b27c314d-09fa-4228-b704-1960ef3f42a7 + + true + Unique identifier of the delegate user who modified the solution. + 1033 + + + 57635ec8-c379-4de2-bbcf-be2c01003c49 + + true + Entydigt id for den stedfortræderbruger, der ændrede løsningen. + 1030 + + + + b27c314d-09fa-4228-b704-1960ef3f42a7 + + true + Unique identifier of the delegate user who modified the solution. + 1033 + + + + + + b5d337ca-a1d1-4aae-8e1e-0f9abb7b8788 + + true + Modified By (Delegate) + 1033 + + + ab401446-3a3c-4632-be87-a293644e1ce7 + + true + Ændret af (stedfortræder) + 1030 + + + + b5d337ca-a1d1-4aae-8e1e-0f9abb7b8788 + + true + Modified By (Delegate) + 1033 + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + modifiedonbehalfby + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOnBehalfBy + + + LookupType + + 5.0.0.0 + false + + + None + + systemuser + + + + 26e480fc-5d5d-4550-b03e-a20e60a710c2 + + modifiedonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 15 + 1900-01-01T00:00:00 + + + + + + + + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modifiedonbehalfbyname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOnBehalfByName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + 538f333c-de7a-4f4f-8e38-4288cf69ea60 + + modifiedonbehalfby + String + false + false + false + + false + canmodifyadditionalsettings + true + + 16 + 1900-01-01T00:00:00 + + + + + + + + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + modifiedonbehalfbyyominame + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ModifiedOnBehalfByYomiName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + modifiedonbehalfbyname + + Text + + + false + 0 + 320 + + + eeb32821-0443-4fc0-b97e-b96c232306bf + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 5 + 1900-01-01T00:00:00 + + + + + b1bc74ca-2e86-4519-a96c-38e676437660 + + true + Unique identifier of the object with which the component is associated. + 1033 + + + fe329a1a-4d68-4d58-8656-8978c98aa882 + + true + Entydigt id for det objekt, som komponenten er tilknyttet. + 1030 + + + + b1bc74ca-2e86-4519-a96c-38e676437660 + + true + Unique identifier of the object with which the component is associated. + 1033 + + + + + + 52fa460f-97e0-492f-b8df-d816c56e7a67 + + true + Regarding + 1033 + + + 2760c69f-6c80-441e-89e8-7c13783d813e + + true + Angående + 1030 + + + + 52fa460f-97e0-492f-b8df-d816c56e7a67 + + true + Regarding + 1033 + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + objectid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ObjectId + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + a9a8594c-dab3-4f3a-9c19-6338009fc1a4 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 21 + 1900-01-01T00:00:00 + + + + + 834dbd4a-c7b8-4e25-acd4-f3d9840edd91 + + true + Indicates the include behavior of the root component. + 1033 + + + ad41bb33-b4d6-479b-a0ec-fae7188bada9 + + true + Angiver rodkomponentens inkluderingsfunktionsmåde. + 1030 + + + + 834dbd4a-c7b8-4e25-acd4-f3d9840edd91 + + true + Indicates the include behavior of the root component. + 1033 + + + + + + 635652a2-2674-44cb-bbde-57b26161425c + + true + Root Component Behavior + 1033 + + + 0865fafe-489a-427d-9ca7-3b006f83329a + + true + Rodkomponentens funktionsmåde + 1030 + + + + 635652a2-2674-44cb-bbde-57b26161425c + + true + Root Component Behavior + 1033 + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + rootcomponentbehavior + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + RootComponentBehavior + + + PicklistType + + 8.0.0.0 + false + 0 + + -1 + + 05ba40ed-66eb-4ad2-a634-42abe691b77a + + + + + 5601abf1-ae6e-4c47-9643-f0d9dd562345 + + true + Indicates the include behavior of the root component. + 1033 + + + 8cdff100-ed4f-41df-a336-53e12854b1fc + + true + Angiver rodkomponentens inkluderingsfunktionsmåde. + 1030 + + + + 5601abf1-ae6e-4c47-9643-f0d9dd562345 + + true + Indicates the include behavior of the root component. + 1033 + + + + + + 5cb89482-ed73-4ea4-ba9d-1193ed93358b + + true + Include Behavior + 1033 + + + 4946df8a-3d3b-4d9c-a9c2-c74746220781 + + true + Inkluder funktionsmåde + 1030 + + + + 5cb89482-ed73-4ea4-ba9d-1193ed93358b + + true + Include Behavior + 1033 + + + + false + + false + iscustomizable + false + + false + true + solutioncomponent_rootcomponentbehavior + Picklist + 8.0.0.0 + + + + + + + + + + + false + true + + + + b670769e-93a4-45a1-8fd1-ce707cda6c4f + + true + Include Subcomponents + 1033 + + + 981867b0-0d02-46ae-a12e-fc98b9bb022f + + true + Inkluder underkomponenter + 1030 + + + + b670769e-93a4-45a1-8fd1-ce707cda6c4f + + true + Include Subcomponents + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + fba7c61c-9304-4fa6-9b83-8356973ff028 + + true + Do not include subcomponents + 1033 + + + 1ee3ff8f-a0a5-4646-a820-7bcaae915ddf + + true + Inkluder ikke underkomponenter + 1030 + + + + fba7c61c-9304-4fa6-9b83-8356973ff028 + + true + Do not include subcomponents + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + 52b81c01-0f3a-43ba-895a-b9210a298aa6 + + true + Include As Shell Only + 1033 + + + 151f7030-376a-4fb3-b527-18dace8ae79a + + true + Inkluder kun som skal + 1030 + + + + 52b81c01-0f3a-43ba-895a-b9210a298aa6 + + true + Include As Shell Only + 1033 + + + + 2 + + + + + + + + 0 + + + + + 39aae989-ef63-4215-9453-c63a61badb21 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 22 + 1900-01-01T00:00:00 + + + + + d503f340-3016-4815-b7a0-d75a6efea73c + + true + The parent ID of the subcomponent, which will be a root + 1033 + + + 17fc9906-0be4-48d7-9964-5122ccced7aa + + true + Overordnet id for den underkomponent, som vil være en rod + 1030 + + + + d503f340-3016-4815-b7a0-d75a6efea73c + + true + The parent ID of the subcomponent, which will be a root + 1033 + + + + + + d4cc3861-bba2-4afa-b538-ff449fcbd842 + + true + Root Solution Component ID + 1033 + + + 623832d7-d70d-4c3d-9ab8-6bf8e5b71218 + + true + Id for rodløsningskomponent + 1030 + + + + d4cc3861-bba2-4afa-b538-ff449fcbd842 + + true + Root Solution Component ID + 1033 + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + rootsolutioncomponentid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + RootSolutionComponentId + + + UniqueidentifierType + + 8.0.0.0 + false + + + + + 4a087014-30df-4316-8ef6-2e85c4a50798 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 1 + 1900-01-01T00:00:00 + + + + + a6b008b3-0b47-41bb-937b-0aa1ed590646 + + true + Unique identifier of the solution component. + 1033 + + + f783a91c-fb61-422c-988c-c56dbde665da + + true + Entydigt id for løsningskomponenten. + 1030 + + + + a6b008b3-0b47-41bb-937b-0aa1ed590646 + + true + Unique identifier of the solution component. + 1033 + + + + + + a916e8b3-9cc4-4100-8e1a-0c7b4d0fc016 + + true + Solution Component Identifier + 1033 + + + 6d8e0b45-b98b-4367-adbb-5c2548458abf + + true + Id for løsningskomponent + 1030 + + + + a916e8b3-9cc4-4100-8e1a-0c7b4d0fc016 + + true + Solution Component Identifier + 1033 + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + true + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + solutioncomponentid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + SolutionComponentId + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + 254e7c39-2d56-4c74-8a22-7efd16259ecc + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 3 + 1900-01-01T00:00:00 + + + + + c332260a-43e2-4951-a20a-ef07ddc74006 + + true + Unique identifier of the solution. + 1033 + + + bf2d1b08-50d4-469f-b27d-92a89ecadf79 + + true + Entydigt id for løsningen. + 1030 + + + + c332260a-43e2-4951-a20a-ef07ddc74006 + + true + Unique identifier of the solution. + 1033 + + + + + + 08811244-cb9f-45dd-855c-c10042450db0 + + true + Solution + 1033 + + + 5b540df8-c8c9-4739-a354-737861768c0d + + true + Løsning + 1030 + + + + 08811244-cb9f-45dd-855c-c10042450db0 + + true + Solution + 1033 + + + solutioncomponent + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + true + + false + true + true + true + false + true + + solutionid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SolutionId + + + LookupType + + 5.0.0.0 + false + + + None + + solution + + + + 8b9e0162-258a-41b1-ba27-00ce8ff8e4e0 + + solutionid + String + false + false + false + + false + canmodifyadditionalsettings + true + + 11 + 1900-01-01T00:00:00 + + + + + + + + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + solutionidname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + SolutionIdName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 256 + + + Text + + + false + 0 + 512 + + + 29805ba3-41a8-11dd-9bde-0019b9312238 + + + BigInt + false + false + false + + false + canmodifyadditionalsettings + true + + 7 + 1900-01-01T00:00:00 + + + + + + + + + + solutioncomponent + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + versionnumber + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + VersionNumber + + + BigIntType + + 5.0.0.0 + false + + + 9223372036854775807 + -9223372036854775808 + + + false + false + false + + false + canbeincustomentityassociation + false + + + false + canbeinmanytomany + false + + + false + canbeprimaryentityinrelationship + false + + + false + canberelatedentityinrelationship + false + + true + + false + canchangetrackingbeenabled + false + + + false + cancreateattributes + false + + + false + cancreatecharts + false + + + false + cancreateforms + false + + + false + cancreateviews + false + + + false + canenablesynctoexternalsearchindex + false + + + true + canmodifyadditionalsettings + false + + false + false + Local + 1900-01-01T00:00:00 + + + false + + + + 807ce328-1d61-4e28-86bc-b93599d4f0f2 + + true + A component of a CRM solution. + 1033 + + + 74653945-11d2-4afb-adc0-a1078362ebcb + + true + En komponent i en CRM-løsning. + 1030 + + + + 807ce328-1d61-4e28-86bc-b93599d4f0f2 + + true + A component of a CRM solution. + 1033 + + + + + + a125d91d-abd9-42f9-9ad3-8385536bdd2e + + true + Solution Components + 1033 + + + 60c519e1-9cee-4e76-a816-6505531751cb + + true + Løsningskomponenter + 1030 + + + + a125d91d-abd9-42f9-9ad3-8385536bdd2e + + true + Solution Components + 1033 + + + + + + 19e9b518-819c-46e7-b17c-061c200ae31d + + true + Solution Component + 1033 + + + 9784808a-deb2-4444-8141-cadd7d3c400c + + true + Løsningskomponent + 1030 + + + + 19e9b518-819c-46e7-b17c-061c200ae31d + + true + Solution Component + 1033 + + + false + + false + false + false + false + + + + + false + false + false + false + + false + canmodifyauditsettings + false + + true + false + false + + false + canmodifyconnectionsettings + false + + false + + false + iscustomizable + false + + false + false + + false + canmodifyduplicatedetectionsettings + false + + false + false + false + false + false + false + false + + false + canmodifymailmergesettings + false + + true + + false + ismappable + false + + false + false + + false + canmodifymobileclientreadonly + false + + true + + false + isrenameable + false + + false + false + false + false + false + false + + false + canmodifyqueuesettings + false + + + false + canmodifymobilevisibility + false + + + false + canmodifymobileclientvisibility + false + + solutioncomponent + + + + 71b32923-ef3d-40b2-b88c-4e7bf3d46248 + + false + + false + iscustomizable + false + + true + true + solutioncomponent_parent_solutioncomponent + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Cascade + NoCascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + solutioncomponentid + solutioncomponent + solutioncomponent_parent_solutioncomponent + rootsolutioncomponentid + solutioncomponent + rootsolutioncomponentid_solutioncomponent + + 0 + + + 8d9edfc6-0ae5-43a8-b9b9-36555fba5f17 + + false + + false + iscustomizable + false + + true + true + lk_solutioncomponentbase_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_solutioncomponentbase_createdonbehalfby + createdonbehalfby + solutioncomponent + createdonbehalfby + + 0 + + + 2749fcdd-997a-453c-95af-49f958325e52 + + false + + false + iscustomizable + false + + true + true + lk_solutioncomponentbase_modifiedonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_solutioncomponentbase_modifiedonbehalfby + modifiedonbehalfby + solutioncomponent + modifiedonbehalfby + + 0 + + + 4806d7ef-850b-4c19-aef6-270b51492bb6 + + false + + false + iscustomizable + false + + true + true + solution_solutioncomponent + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Cascade + NoCascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + solutionid + solution + solution_solutioncomponent + solutionid + solutioncomponent + solutionid + + 0 + + + 1900-01-01T00:00:00 + 7103 + + + 71b32923-ef3d-40b2-b88c-4e7bf3d46248 + + false + + false + iscustomizable + false + + true + true + solutioncomponent_parent_solutioncomponent + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Cascade + NoCascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + solutioncomponentid + solutioncomponent + solutioncomponent_parent_solutioncomponent + rootsolutioncomponentid + solutioncomponent + rootsolutioncomponentid_solutioncomponent + + 0 + + + 307d66c1-8f75-4267-8553-d51e8ee94954 + + false + + false + iscustomizable + false + + true + false + userentityinstancedata_solutioncomponent + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + solutioncomponentid + solutioncomponent + userentityinstancedata_solutioncomponent + objectid + userentityinstancedata + objectid_solutioncomponent + + 0 + + + + 8 + None + + solutioncomponentid + + solutioncomponentid + + + + + false + false + false + true + false + false + false + prvCreateSolution + 14dd992d-2858-4547-91e9-139ca92d3932 + Create + + + false + false + false + true + false + false + false + prvReadSolution + b64e92c8-5d2a-4052-a026-1b73eff9cebf + Read + + + false + false + false + true + false + false + false + prvWriteSolution + bfab24a8-3987-40ec-9828-8cfa938ee756 + Write + + + false + false + false + true + false + false + false + prvDeleteSolution + 9ef73297-f404-4630-ad16-7340265c6d08 + Delete + + + false + false + false + true + false + false + false + prvAppendSolution + ccea7ff5-5e26-4aed-94a4-fcc2d9733f3a + Append + + + false + false + false + true + false + false + false + prvAppendToSolution + a264eaae-0c71-4370-99d9-4986b33bab60 + AppendTo + + + + FilteredSolutionComponent + SolutionComponent + + + false + Standard + false + 5.0.0.0 + + + false + canchangehierarchicalrelationship + false + + + false + SolutionComponents + + + true + + solutioncomponentss + 0 + solutioncomponents + false + + true + canmodifymobileclientoffline + false + + false + false + + false + false + + + + systemuser + + 60696d5d-4d78-4712-b4e0-6cbef3df4906 + + 0 + + + aad86649-236c-48a3-95ef-de93c679cae0 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 113 + 1900-01-01T00:00:00 + + + + + aad86649-236c-48a3-95ef-de93c679cae1 + + true + Type of user. + 1033 + + + 8b0e724b-3800-4d33-a0db-dac40af10694 + + true + Brugertype. + 1030 + + + + aad86649-236c-48a3-95ef-de93c679cae1 + + true + Type of user. + 1033 + + + + + + aad86649-236c-48a3-95ef-de93c679cae8 + + true + Access Mode + 1033 + + + e81b42f8-4b03-483e-9a36-427617097046 + + true + Adgangstilstand + 1030 + + + + aad86649-236c-48a3-95ef-de93c679cae8 + + true + Access Mode + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + true + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + accessmode + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + AccessMode + + + PicklistType + + 5.0.0.0 + false + 0 + + 0 + + ca538ac5-66da-4b2c-90be-63f398e406c3 + + + + + d8447b22-ea2e-4bb2-ad93-72d54dab179d + + true + Type of user. + 1033 + + + 8838e158-8f89-4d93-ac65-b11e83446819 + + true + Brugertype. + 1030 + + + + d8447b22-ea2e-4bb2-ad93-72d54dab179d + + true + Type of user. + 1033 + + + + + + 9d7dcca7-c926-470e-821c-0c3a0e74b00f + + true + Access Mode + 1033 + + + 78506e71-4d5b-4942-87d2-f7f7b566e6fc + + true + Adgangstilstand + 1030 + + + + 9d7dcca7-c926-470e-821c-0c3a0e74b00f + + true + Access Mode + 1033 + + + + false + + false + iscustomizable + false + + false + true + systemuser_accessmode + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + aad86649-236c-48a3-95ef-de93c679cae3 + + true + Read-Write + 1033 + + + 8cffeb18-762f-4f4d-a385-4ac2d0ccbf49 + + true + Læse-skrive + 1030 + + + + aad86649-236c-48a3-95ef-de93c679cae3 + + true + Read-Write + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + aad86649-236c-48a3-95ef-de93c679cae5 + + true + Administrative + 1033 + + + d4c5b72a-5fa3-4e23-8bc6-409157151cf7 + + true + Administrativ + 1030 + + + + aad86649-236c-48a3-95ef-de93c679cae5 + + true + Administrative + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + aad86649-236c-48a3-95ef-de93c679cae7 + + true + Read + 1033 + + + 049c8544-439d-437e-a712-c22565e2052f + + true + Læse + 1030 + + + + aad86649-236c-48a3-95ef-de93c679cae7 + + true + Read + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + dd6ae700-9b9a-4771-981a-8707e9d66942 + + true + Support User + 1033 + + + 6b5905b9-6707-4213-9530-f143db2fc662 + + true + Supportbruger + 1030 + + + + dd6ae700-9b9a-4771-981a-8707e9d66942 + + true + Support User + 1033 + + + + 3 + + + + + + + + + + + + false + true + + + + d3861744-d0d7-4287-beae-0576e25a9da1 + + true + Non-interactive + 1033 + + + f2339348-4071-4d3a-b004-82cdc34967a0 + + true + Ikke-interaktiv + 1030 + + + + d3861744-d0d7-4287-beae-0576e25a9da1 + + true + Non-interactive + 1033 + + + + 4 + + + + + + + + + + + + false + true + + + + 4ab8ceee-3b26-4b66-a14f-1ed66c858054 + + true + Delegated Admin + 1033 + + + 8bd3bf3b-75c8-45b3-a069-7b89777c6821 + + true + Stedfortræderadministrator + 1030 + + + + 4ab8ceee-3b26-4b66-a14f-1ed66c858054 + + true + Delegated Admin + 1033 + + + + 5 + + + + + + + + 0 + + + + + abd86649-236c-48a3-95ef-de93c679cae0 + + accessmode + Virtual + false + false + false + + false + canmodifyadditionalsettings + false + + 119 + 1900-01-01T00:00:00 + + + + + + + + + + systemuser + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + accessmodename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + AccessModeName + + + VirtualType + + 5.0.0.0 + true + + + + + b04c35ca-4588-4c35-b6fa-68996cd47b39 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + false + + 102 + 1900-01-01T00:00:00 + + + + + 75cfe1dc-2241-db11-898a-0007e9e17ebd + + true + Active Directory object GUID for the system user. + 1033 + + + b4dc5ea8-2fac-4f35-a9ff-5fcd911245ed + + true + Active Directory-objekt-GUID for systembrugeren. + 1030 + + + + 75cfe1dc-2241-db11-898a-0007e9e17ebd + + true + Active Directory object GUID for the system user. + 1033 + + + + + + f788c8c3-7ff3-4ccc-8b7f-6b9db8d95898 + + true + Active Directory Guid + 1033 + + + eff50feb-0146-4a4c-a9bb-223d93634736 + + true + Guid for Active Directory + 1030 + + + + f788c8c3-7ff3-4ccc-8b7f-6b9db8d95898 + + true + Active Directory Guid + 1033 + + + systemuser + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + false + false + false + + activedirectoryguid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ActiveDirectoryGuid + + + UniqueidentifierType + + 5.0.0.0 + false + + + + + 4bba3cfe-f922-42ab-8751-fa4a137d6dec + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + false + + 41 + 1900-01-01T00:00:00 + + + + + 24abc7f4-2241-db11-898a-0007e9e17ebd + + true + Unique identifier for address 1. + 1033 + + + cee17bda-dcfb-4cef-8a4b-8f1e11393190 + + true + Entydigt id for adresse 1. + 1030 + + + + 24abc7f4-2241-db11-898a-0007e9e17ebd + + true + Unique identifier for address 1. + 1033 + + + + + + 23abc7f4-2241-db11-898a-0007e9e17ebd + + true + Address 1: ID + 1033 + + + fd29d858-cc88-4a1c-806d-c24c4a947980 + + true + Adresse 1: Id + 1030 + + + + 23abc7f4-2241-db11-898a-0007e9e17ebd + + true + Address 1: ID + 1033 + + + systemuser + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + true + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + address1_addressid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address1_AddressId + + + UniqueidentifierType + + 5.0.0.0 + true + + + + + 589b85ed-7b99-42ba-a760-761ec2ac48c7 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + false + + 42 + 1900-01-01T00:00:00 + + + + + a1d7a218-2341-db11-898a-0007e9e17ebd + + true + Type of address for address 1, such as billing, shipping, or primary address. + 1033 + + + 57becd63-e71e-42dd-aa9d-9dcc59f3a330 + + true + Adressetypen for adresse 1, f.eks. faktureringsadresse, forsendelsesadresse eller primær adresse. + 1030 + + + + a1d7a218-2341-db11-898a-0007e9e17ebd + + true + Type of address for address 1, such as billing, shipping, or primary address. + 1033 + + + + + + a0d7a218-2341-db11-898a-0007e9e17ebd + + true + Address 1: Address Type + 1033 + + + dd57bd3a-988f-426e-95d6-62f9a3a4ca58 + + true + Adresse 1: Adressetype + 1030 + + + + a0d7a218-2341-db11-898a-0007e9e17ebd + + true + Address 1: Address Type + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + address1_addresstypecode + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address1_AddressTypeCode + + + PicklistType + + 5.0.0.0 + true + 0 + + 1 + + 21aeabcf-89ea-4aba-88b2-b157262e2899 + + + + + 276a615d-3974-447b-8698-375fe39abd50 + + true + Type of address for address 1, such as billing, shipping, or primary address. + 1033 + + + 611df118-4de8-4e9f-91b8-fb1910fc48fd + + true + Adressetypen for adresse 1, f.eks. faktureringsadresse, forsendelsesadresse eller primær adresse. + 1030 + + + + 276a615d-3974-447b-8698-375fe39abd50 + + true + Type of address for address 1, such as billing, shipping, or primary address. + 1033 + + + + + + 6064183a-e163-4caf-81ec-5af467412c36 + + true + Address 1: Address Type + 1033 + + + a4f3b7b5-6c71-4dc6-85ca-123c4f08eae5 + + true + Adresse 1: Adressetype + 1030 + + + + 6064183a-e163-4caf-81ec-5af467412c36 + + true + Address 1: Address Type + 1033 + + + + false + + false + iscustomizable + true + + false + true + systemuser_address1_addresstypecode + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + a3d7a218-2341-db11-898a-0007e9e17ebd + + true + Default Value + 1033 + + + 96866f58-42e6-42bc-a59b-9152f67c0d1c + + true + Standardværdi + 1030 + + + + a3d7a218-2341-db11-898a-0007e9e17ebd + + true + Default Value + 1033 + + + + 1 + + + + + + + + 0 + + + + + 096685d0-a12f-4275-9d3f-35f35c15c638 + + address1_addresstypecode + Virtual + false + false + false + + false + canmodifyadditionalsettings + false + + 96 + 1900-01-01T00:00:00 + + + + + + + + + + systemuser + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + address1_addresstypecodename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address1_AddressTypeCodeName + + + VirtualType + + 5.0.0.0 + true + + + + + 0ffdc7bf-3d61-4129-86ae-5954b8b969d6 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 47 + 1900-01-01T00:00:00 + + + + + 88dfeed0-2241-db11-898a-0007e9e17ebd + + true + City name for address 1. + 1033 + + + 017ffbc9-063a-42ba-b040-c2c2782f851c + + true + Bynavn i adresse 1. + 1030 + + + + 88dfeed0-2241-db11-898a-0007e9e17ebd + + true + City name for address 1. + 1033 + + + + + + 87dfeed0-2241-db11-898a-0007e9e17ebd + + true + City + 1033 + + + 9c84522e-0e3d-46bc-aa38-c4ba54c189a1 + + true + By + 1030 + + + + 87dfeed0-2241-db11-898a-0007e9e17ebd + + true + City + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address1_city + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_City + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 128 + + + Text + + + false + 0 + 256 + + + 3fd17209-fcdc-4f70-bc24-de550d5f9e2d + + + Memo + false + true + false + + false + canmodifyadditionalsettings + true + + 161 + 1900-01-01T00:00:00 + + + + + 6e427029-2a87-45e6-8851-858dcb86ff16 + + true + Shows the complete primary address. + 1033 + + + a7bc59f7-b799-456f-b8d1-43f6662d3575 + + true + Viser den fulde primære adresse. + 1030 + + + + 6e427029-2a87-45e6-8851-858dcb86ff16 + + true + Shows the complete primary address. + 1033 + + + + + + 722e3c7c-5e5f-45b5-9505-4bf7770f1f97 + + true + Address + 1033 + + + 7ec90622-bfa1-45a8-b2be-f0772b9c1103 + + true + Adresse + 1030 + + + + 722e3c7c-5e5f-45b5-9505-4bf7770f1f97 + + true + Address + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + false + true + true + true + false + true + + address1_composite + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_Composite + + + MemoType + + 6.0.0.0 + true + + + TextArea + Active + 1000 + + TextArea + + false + + + 0d241c8c-366a-4a6d-8d1a-d61082117ae9 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 50 + 1900-01-01T00:00:00 + + + + + 2c53c2fa-2241-db11-898a-0007e9e17ebd + + true + Country/region name in address 1. + 1033 + + + 1654d70a-d142-43a1-baa5-36896787d507 + + true + Lande-/områdenavn i adresse 1. + 1030 + + + + 2c53c2fa-2241-db11-898a-0007e9e17ebd + + true + Country/region name in address 1. + 1033 + + + + + + 2b53c2fa-2241-db11-898a-0007e9e17ebd + + true + Country/Region + 1033 + + + b5c58775-05af-4c72-a555-1fff146cf7ab + + true + Land/område + 1030 + + + + 2b53c2fa-2241-db11-898a-0007e9e17ebd + + true + Country/Region + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address1_country + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_Country + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 128 + + + Text + + + false + 0 + 256 + + + f52b185f-7d02-4200-bb37-5a11a8c6ff33 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 49 + 1900-01-01T00:00:00 + + + + + 559aba00-2341-db11-898a-0007e9e17ebd + + true + County name for address 1. + 1033 + + + af60c848-c58a-4295-bd9a-439b396b20f7 + + true + Region i adresse 1. + 1030 + + + + 559aba00-2341-db11-898a-0007e9e17ebd + + true + County name for address 1. + 1033 + + + + + + 549aba00-2341-db11-898a-0007e9e17ebd + + true + Address 1: County + 1033 + + + ce6f3369-ecba-4a5b-9439-18745cc06dec + + true + Adresse 1: Region + 1030 + + + + 549aba00-2341-db11-898a-0007e9e17ebd + + true + Address 1: County + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address1_county + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_County + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 128 + + + Text + + + false + 0 + 256 + + + 0be7bc5b-d483-47aa-9abd-9bed5ca9d0ed + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 61 + 1900-01-01T00:00:00 + + + + + a64901bf-2241-db11-898a-0007e9e17ebd + + true + Fax number for address 1. + 1033 + + + c625c28d-925b-4a00-8236-8ab3234416a5 + + true + Faxnummer til adresse 1. + 1030 + + + + a64901bf-2241-db11-898a-0007e9e17ebd + + true + Fax number for address 1. + 1033 + + + + + + a54901bf-2241-db11-898a-0007e9e17ebd + + true + Address 1: Fax + 1033 + + + 77477f38-0e1e-4385-bb6a-5bdeabed0c56 + + true + Adresse 1: Fax + 1030 + + + + a54901bf-2241-db11-898a-0007e9e17ebd + + true + Address 1: Fax + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address1_fax + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_Fax + + + StringType + + 5.0.0.0 + true + 0 + + Text + Inactive + 64 + + + Text + + + false + 0 + 128 + + + b55178f8-886e-4fcf-a954-cbb7f5d3c934 + + + Double + true + true + true + + false + canmodifyadditionalsettings + true + + 55 + 1900-01-01T00:00:00 + + + + + e164cfee-2241-db11-898a-0007e9e17ebd + + true + Latitude for address 1. + 1033 + + + 93679b5f-faf8-4fde-8bdc-88d17d969e2e + + true + Breddegrad for adresse 1. + 1030 + + + + e164cfee-2241-db11-898a-0007e9e17ebd + + true + Latitude for address 1. + 1033 + + + + + + e064cfee-2241-db11-898a-0007e9e17ebd + + true + Address 1: Latitude + 1033 + + + 972e352f-d9fc-48f8-bd44-a39bb3304b13 + + true + Adresse 1: Breddegrad + 1030 + + + + e064cfee-2241-db11-898a-0007e9e17ebd + + true + Address 1: Latitude + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address1_latitude + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_Latitude + + + DoubleType + + 5.0.0.0 + true + 0 + + Disabled + 90 + -90 + 5 + + 0 + + + 8717e98d-d9e8-4583-bcb2-3feecef111d1 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 44 + 1900-01-01T00:00:00 + + + + + 1deaaf0c-2341-db11-898a-0007e9e17ebd + + true + First line for entering address 1 information. + 1033 + + + 75966b1c-1f49-4407-a5c7-225c09462a5d + + true + Første linje til angivelse af oplysninger om adresse 1. + 1030 + + + + 1deaaf0c-2341-db11-898a-0007e9e17ebd + + true + First line for entering address 1 information. + 1033 + + + + + + 1ceaaf0c-2341-db11-898a-0007e9e17ebd + + true + Street 1 + 1033 + + + be9cce99-a730-43e9-872e-f92f4ea75b2b + + true + Gade 1 + 1030 + + + + 1ceaaf0c-2341-db11-898a-0007e9e17ebd + + true + Street 1 + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address1_line1 + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_Line1 + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 1024 + + + Text + + + false + 0 + 2048 + + + 5c7680c6-2bbc-4543-bd4a-57fb7421340e + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 45 + 1900-01-01T00:00:00 + + + + + 7c9af6ca-2241-db11-898a-0007e9e17ebd + + true + Second line for entering address 1 information. + 1033 + + + 014a5511-42bf-411f-b3e4-f4732e7822de + + true + Anden linje til angivelse af oplysninger om adresse 1. + 1030 + + + + 7c9af6ca-2241-db11-898a-0007e9e17ebd + + true + Second line for entering address 1 information. + 1033 + + + + + + 7b9af6ca-2241-db11-898a-0007e9e17ebd + + true + Street 2 + 1033 + + + 9a51a262-2610-4359-9c40-fd0429f16122 + + true + Gade 2 + 1030 + + + + 7b9af6ca-2241-db11-898a-0007e9e17ebd + + true + Street 2 + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address1_line2 + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_Line2 + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 1024 + + + Text + + + false + 0 + 2048 + + + ec52703d-e8f6-430a-bba9-285c90a9031a + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 46 + 1900-01-01T00:00:00 + + + + + 7525e7d6-2241-db11-898a-0007e9e17ebd + + true + Third line for entering address 1 information. + 1033 + + + 5d5fa7fe-2de0-451e-9421-0cd9376f2821 + + true + Tredje linje til angivelse af oplysninger om adresse 1. + 1030 + + + + 7525e7d6-2241-db11-898a-0007e9e17ebd + + true + Third line for entering address 1 information. + 1033 + + + + + + 7425e7d6-2241-db11-898a-0007e9e17ebd + + true + Street 3 + 1033 + + + b2c5b847-87cb-468a-ac9c-2794a1c061c4 + + true + Gade 3 + 1030 + + + + 7425e7d6-2241-db11-898a-0007e9e17ebd + + true + Street 3 + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address1_line3 + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_Line3 + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 1024 + + + Text + + + false + 0 + 2048 + + + a5ca9999-6221-47eb-8e45-b41cc7a3d50a + + + Double + true + true + true + + false + canmodifyadditionalsettings + true + + 57 + 1900-01-01T00:00:00 + + + + + 2854c2fa-2241-db11-898a-0007e9e17ebd + + true + Longitude for address 1. + 1033 + + + ceb62943-2f06-4362-ae10-3d75bd628fe8 + + true + Længdegrad for adresse 1. + 1030 + + + + 2854c2fa-2241-db11-898a-0007e9e17ebd + + true + Longitude for address 1. + 1033 + + + + + + 2754c2fa-2241-db11-898a-0007e9e17ebd + + true + Address 1: Longitude + 1033 + + + 6ecf7e9e-4ea8-41a8-94ac-9e0456f65eb4 + + true + Adresse 1: Længdegrad + 1030 + + + + 2754c2fa-2241-db11-898a-0007e9e17ebd + + true + Address 1: Longitude + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address1_longitude + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_Longitude + + + DoubleType + + 5.0.0.0 + true + 0 + + Disabled + 180 + -180 + 5 + + 0 + + + 1e622da5-3412-4075-a13b-5d9d91e8f3cc + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 43 + 1900-01-01T00:00:00 + + + + + fb91aa12-2341-db11-898a-0007e9e17ebd + + true + Name to enter for address 1. + 1033 + + + f59e10dc-a042-43b3-bdff-6d5f669d4b01 + + true + Det navn, der skal angives for adresse 1. + 1030 + + + + fb91aa12-2341-db11-898a-0007e9e17ebd + + true + Name to enter for address 1. + 1033 + + + + + + fa91aa12-2341-db11-898a-0007e9e17ebd + + true + Address 1: Name + 1033 + + + 65b347c8-61be-4d40-9695-fb390eabae99 + + true + Adresse 1: Navn + 1030 + + + + fa91aa12-2341-db11-898a-0007e9e17ebd + + true + Address 1: Name + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address1_name + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_Name + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 100 + + + Text + + + false + 0 + 400 + + + c37114dd-a6bc-4bbb-bebe-bc144a40d007 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 52 + 1900-01-01T00:00:00 + + + + + 6526e7d6-2241-db11-898a-0007e9e17ebd + + true + ZIP Code or postal code for address 1. + 1033 + + + 06b32eb5-b670-402b-a70b-0f0e42af152a + + true + Postnummer i adresse 1. + 1030 + + + + 6526e7d6-2241-db11-898a-0007e9e17ebd + + true + ZIP Code or postal code for address 1. + 1033 + + + + + + 6426e7d6-2241-db11-898a-0007e9e17ebd + + true + ZIP/Postal Code + 1033 + + + 3fd21a06-4f1f-4296-b1f3-f16a77adf0a2 + + true + Postnummer + 1030 + + + + 6426e7d6-2241-db11-898a-0007e9e17ebd + + true + ZIP/Postal Code + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address1_postalcode + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_PostalCode + + + StringType + + 5.0.0.0 + true + 0 + + Text + Inactive + 40 + + + Text + + + false + 0 + 80 + + + 62168bc5-1d95-4911-a9fe-57e0ed633452 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 51 + 1900-01-01T00:00:00 + + + + + 871c9b1e-2341-db11-898a-0007e9e17ebd + + true + Post office box number for address 1. + 1033 + + + b0c173c3-265b-4b6b-9254-101ec850df29 + + true + Postboksnummer i adresse 1. + 1030 + + + + 871c9b1e-2341-db11-898a-0007e9e17ebd + + true + Post office box number for address 1. + 1033 + + + + + + 861c9b1e-2341-db11-898a-0007e9e17ebd + + true + Address 1: Post Office Box + 1033 + + + 62d5d6ee-adb9-4da9-b37b-b3580a4fd6c0 + + true + Adresse 1: Postboksnummer + 1030 + + + + 861c9b1e-2341-db11-898a-0007e9e17ebd + + true + Address 1: Post Office Box + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address1_postofficebox + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_PostOfficeBox + + + StringType + + 5.0.0.0 + true + 0 + + Text + Inactive + 40 + + + Text + + + false + 0 + 80 + + + 433c591f-9039-4390-a67e-e850c22a0d25 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + false + + 58 + 1900-01-01T00:00:00 + + + + + aa99ba00-2341-db11-898a-0007e9e17ebd + + true + Method of shipment for address 1. + 1033 + + + 5be0faa0-e006-4f62-b045-bc4bd90d1595 + + true + Forsendelsesmåde for adresse 1. + 1030 + + + + aa99ba00-2341-db11-898a-0007e9e17ebd + + true + Method of shipment for address 1. + 1033 + + + + + + a999ba00-2341-db11-898a-0007e9e17ebd + + true + Address 1: Shipping Method + 1033 + + + a542954f-ff97-4577-8e35-63a2ba11a9f4 + + true + Adresse 1: Forsendelsesmåde + 1030 + + + + a999ba00-2341-db11-898a-0007e9e17ebd + + true + Address 1: Shipping Method + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + address1_shippingmethodcode + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address1_ShippingMethodCode + + + PicklistType + + 5.0.0.0 + true + 0 + + 1 + + cda38168-bd2d-4dd3-ad58-3ecc23b30164 + + + + + e6d8ab16-2bd8-41e9-b3ad-277f24df4005 + + true + Method of shipment for address 1. + 1033 + + + c707031b-fdd8-4792-b000-9fdfefca967a + + true + Forsendelsesmåde for adresse 1. + 1030 + + + + e6d8ab16-2bd8-41e9-b3ad-277f24df4005 + + true + Method of shipment for address 1. + 1033 + + + + + + 9a42fd84-730f-42e4-b23f-774a89b2de9a + + true + Address 1: Shipping Method + 1033 + + + 579a686c-8e12-4e90-a46d-614295ad0e97 + + true + Adresse 1: Forsendelsesmåde + 1030 + + + + 9a42fd84-730f-42e4-b23f-774a89b2de9a + + true + Address 1: Shipping Method + 1033 + + + + false + + false + iscustomizable + true + + false + true + systemuser_address1_shippingmethodcode + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + - 3250e20a-b9bb-11de-844f-00155da18b00 + ac99ba00-2341-db11-898a-0007e9e17ebd true - Entity Relationship Role + Default Value 1033 + + 89499e76-78a4-4793-8e35-522d8e738944 + + true + Standardværdi + 1030 + - 3250e20a-b9bb-11de-844f-00155da18b00 + ac99ba00-2341-db11-898a-0007e9e17ebd true - Entity Relationship Role + Default Value 1033 - 11 + 1 + + + + + + 0 + + + + + 70e73590-fb43-43d9-9553-c76aa214ad4d + + address1_shippingmethodcode + Virtual + false + false + false + + false + canmodifyadditionalsettings + false + + 98 + 1900-01-01T00:00:00 + + + + + + + + + + systemuser + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + address1_shippingmethodcodename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address1_ShippingMethodCodeName + + + VirtualType + + 5.0.0.0 + true + + + + + 3b3b1902-c4bc-47ba-ae9d-535b30cab606 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 48 + 1900-01-01T00:00:00 + + + + + 081fd7e8-2241-db11-898a-0007e9e17ebd + + true + State or province for address 1. + 1033 + + + bbec0429-54de-46ee-bfd7-b093f39f066d + + true + Område i adresse 1. + 1030 + + + + 081fd7e8-2241-db11-898a-0007e9e17ebd + + true + State or province for address 1. + 1033 + + + + + + 071fd7e8-2241-db11-898a-0007e9e17ebd + + true + State/Province + 1033 + + + a599eabb-fe92-472d-a40c-4c1f30031e41 + + true + Område + 1030 + + + + 071fd7e8-2241-db11-898a-0007e9e17ebd + + true + State/Province + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address1_stateorprovince + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_StateOrProvince + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 128 + + + Text + + + false + 0 + 256 + + + d248114b-4cc8-42cd-a2b0-c0bc7dfe55da + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 56 + 1900-01-01T00:00:00 + + + + + 8799f6ca-2241-db11-898a-0007e9e17ebd + + true + First telephone number associated with address 1. + 1033 + + + bfbc33fb-a703-4d4a-b8ca-5548589933b2 + + true + Første telefonnummer, der er tilknyttet adresse 1. + 1030 + + + + 8799f6ca-2241-db11-898a-0007e9e17ebd + + true + First telephone number associated with address 1. + 1033 + + + + + + 8699f6ca-2241-db11-898a-0007e9e17ebd + + true + Main Phone + 1033 + + + 0cf509ed-b16f-4082-b7d9-71bf1262c82e + + true + Primær telefon + 1030 + + + + 8699f6ca-2241-db11-898a-0007e9e17ebd + + true + Main Phone + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + true + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address1_telephone1 + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_Telephone1 + + + StringType + + 5.0.0.0 + true + 0 + + Text + Inactive + 64 + + + Phone + + + false + 0 + 128 + + + 63e23dae-4b02-4c80-b1e3-e10e6b22d7fb + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 59 + 1900-01-01T00:00:00 + + + + + 431ed7e8-2241-db11-898a-0007e9e17ebd + + true + Second telephone number associated with address 1. + 1033 + + + ef21b88a-cf1f-4fd1-94e9-1be14f95ddc4 + + true + Andet telefonnummer, der er tilknyttet adresse 1. + 1030 + + + + 431ed7e8-2241-db11-898a-0007e9e17ebd + + true + Second telephone number associated with address 1. + 1033 + + + + + + 421ed7e8-2241-db11-898a-0007e9e17ebd + + true + Other Phone + 1033 + + + b3dd3e3f-89e6-49a4-b8a5-d3ee90676e69 + + true + Anden telefon + 1030 + + + + 421ed7e8-2241-db11-898a-0007e9e17ebd + + true + Other Phone + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address1_telephone2 + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_Telephone2 + + + StringType + + 5.0.0.0 + true + 0 + + Text + Inactive + 50 + + + Phone + + + false + 0 + 100 + + + 2caa2a65-8c37-4b7c-8d74-8254af80cf43 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 60 + 1900-01-01T00:00:00 + + + + + d31dd7e8-2241-db11-898a-0007e9e17ebd + + true + Third telephone number associated with address 1. + 1033 + + + ce20441b-2c5e-44c1-9c86-c4882189d5ff + + true + Tredje telefonnummer, der er tilknyttet adresse 1. + 1030 + + + + d31dd7e8-2241-db11-898a-0007e9e17ebd + + true + Third telephone number associated with address 1. + 1033 + + + + + + d21dd7e8-2241-db11-898a-0007e9e17ebd + + true + Pager + 1033 + + + 0cad1abd-b42b-4caf-896e-5d93e4b91618 + + true + Personsøger + 1030 + + + + d21dd7e8-2241-db11-898a-0007e9e17ebd + + true + Pager + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address1_telephone3 + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address1_Telephone3 + + + StringType + + 5.0.0.0 + true + 0 + + Text + Inactive + 50 + + + Phone + + + false + 0 + 100 + + + f6333111-6af3-4a9c-ba85-66503b16aee9 + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 54 + 1900-01-01T00:00:00 + + + + + 081ed7e8-2241-db11-898a-0007e9e17ebd + + true + United Parcel Service (UPS) zone for address 1. + 1033 + + + 394e2984-3401-4fee-8aba-f77e22ce0d2d + + true + UPS-zone (United Parcel Service) for adresse 1. + 1030 + + + + 081ed7e8-2241-db11-898a-0007e9e17ebd + + true + United Parcel Service (UPS) zone for address 1. + 1033 + + + + + + 071ed7e8-2241-db11-898a-0007e9e17ebd + + true + Address 1: UPS Zone + 1033 + + + 24eb47a9-bb3b-482e-987c-cc4dcb8d9438 + + true + Adresse 1: UPS-zone + 1030 + + + + 071ed7e8-2241-db11-898a-0007e9e17ebd + + true + Address 1: UPS Zone + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + address1_upszone + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address1_UPSZone + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 4 + + + Text + + + false + 0 + 8 + + + 9f10054b-2383-4e93-87fb-0b645c768e3b + + + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 53 + 1900-01-01T00:00:00 + + + + + abd6a218-2341-db11-898a-0007e9e17ebd + + true + UTC offset for address 1. This is the difference between local time and standard Coordinated Universal Time. + 1033 + + + 3e01a522-9528-4f0e-972b-da0596429d12 + + true + Forskydning fra GMT for adresse 1. Dette er forskellen mellem lokal tid og GMT-standardtid. + 1030 + + + + abd6a218-2341-db11-898a-0007e9e17ebd + + true + UTC offset for address 1. This is the difference between local time and standard Coordinated Universal Time. + 1033 + + + + + + aad6a218-2341-db11-898a-0007e9e17ebd + + true + Address 1: UTC Offset + 1033 + + + 2919262e-9e86-4242-a0e5-bb357b2903a4 + + true + Adresse 1: Forskydning fra GMT + 1030 + + + + aad6a218-2341-db11-898a-0007e9e17ebd + + true + Address 1: UTC Offset + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + address1_utcoffset + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address1_UTCOffset + + + IntegerType + + 5.0.0.0 + true + 0 + + TimeZone + 1500 + -1500 + + 0 + + + 87d53433-d148-4b33-a130-df8fe6a4ed82 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + false + + 62 + 1900-01-01T00:00:00 + + + + + 4064cfee-2241-db11-898a-0007e9e17ebd + + true + Unique identifier for address 2. + 1033 + + + 22def081-7037-4d48-ba9e-7f8ce747256e + + true + Entydigt id for adresse 2. + 1030 + + + + 4064cfee-2241-db11-898a-0007e9e17ebd + + true + Unique identifier for address 2. + 1033 + + + + + + 3f64cfee-2241-db11-898a-0007e9e17ebd + + true + Address 2: ID + 1033 + + + d8b43e4a-375b-47d0-a251-6e0bc9465cc4 + + true + Adresse 2: Id + 1030 + + + + 3f64cfee-2241-db11-898a-0007e9e17ebd + + true + Address 2: ID + 1033 + + + systemuser + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + true + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + address2_addressid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address2_AddressId + + + UniqueidentifierType + + 5.0.0.0 + true + + + + + 9e050510-1d3e-4f37-bb97-cc748c6d8e3c + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + false + + 63 + 1900-01-01T00:00:00 + + + + + 5ce9af0c-2341-db11-898a-0007e9e17ebd + + true + Type of address for address 2, such as billing, shipping, or primary address. + 1033 + + + a70c4b6f-e31a-4f3b-9a3d-42d50e07cb39 + + true + Adressetypen for adresse 2, f.eks. faktureringsadresse, forsendelsesadresse eller primær adresse. + 1030 + + + + 5ce9af0c-2341-db11-898a-0007e9e17ebd + + true + Type of address for address 2, such as billing, shipping, or primary address. + 1033 + + + + + + 5be9af0c-2341-db11-898a-0007e9e17ebd + + true + Address 2: Address Type + 1033 + + + 7b387a52-f3d8-4346-b301-ed350fab1bf5 + + true + Adresse 2: Adressetype + 1030 + + + + 5be9af0c-2341-db11-898a-0007e9e17ebd + + true + Address 2: Address Type + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + address2_addresstypecode + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address2_AddressTypeCode + + + PicklistType + + 5.0.0.0 + true + 0 + + 1 + + 909d3e38-5ed5-4c9c-a478-03be50231e53 + + + + + 2f275d93-0de6-4597-ae87-206d0bcb9175 + + true + Type of address for address 2, such as billing, shipping, or primary address. + 1033 + + + e38ee47f-b464-457c-86ad-80c6e75dfbc7 + + true + Adressetypen for adresse 2, f.eks. faktureringsadresse, forsendelsesadresse eller primær adresse. + 1030 + + + + 2f275d93-0de6-4597-ae87-206d0bcb9175 + + true + Type of address for address 2, such as billing, shipping, or primary address. + 1033 + + + + + + 881b138d-8bc6-4c2f-b35f-a11004549b00 + + true + Address 2: Address Type + 1033 + + + 78a64f2a-5fb8-4258-8f34-1d36566fe156 + + true + Adresse 2: Adressetype + 1030 + + + + 881b138d-8bc6-4c2f-b35f-a11004549b00 + + true + Address 2: Address Type + 1033 + + + + false + + false + iscustomizable + true + + false + true + systemuser_address2_addresstypecode + Picklist + 5.0.0.0 + @@ -287615,1015 +334404,2189 @@ - 3250e20c-b9bb-11de-844f-00155da18b00 + 5ee9af0c-2341-db11-898a-0007e9e17ebd true - Entity Relationship Relationships + Default Value 1033 + + 1c3138dc-4600-4809-be76-321fba10761b + + true + Standardværdi + 1030 + - 3250e20c-b9bb-11de-844f-00155da18b00 + 5ee9af0c-2341-db11-898a-0007e9e17ebd true - Entity Relationship Relationships + Default Value 1033 - 12 + 1 - - + + + + + + 0 + + + + + 05f1ad5a-2edb-4d30-8d27-16aae1f7f64b + + address2_addresstypecode + Virtual + false + false + false + + false + canmodifyadditionalsettings + false + + 97 + 1900-01-01T00:00:00 + + + + + + + + + + systemuser + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + address2_addresstypecodename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address2_AddressTypeCodeName + + + VirtualType + + 5.0.0.0 + true + + + + + 88ccd6c3-4015-4c81-9529-a7f427ab3785 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 68 + 1900-01-01T00:00:00 + + + + + 7d99ba00-2341-db11-898a-0007e9e17ebd + + true + City name for address 2. + 1033 + + + 24da239f-6136-4c32-b4b8-6c5654260907 + + true + Bynavn i adresse 2. + 1030 + + + + 7d99ba00-2341-db11-898a-0007e9e17ebd + + true + City name for address 2. + 1033 + + + + + + 7c99ba00-2341-db11-898a-0007e9e17ebd + + true + Other City + 1033 + + + 6e6cdfd4-bd65-4809-ae32-0c4e12d3e3c5 + + true + Anden by + 1030 + + + + 7c99ba00-2341-db11-898a-0007e9e17ebd + + true + Other City + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address2_city + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_City + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 128 + + + Text + + + false + 0 + 256 + + + 39fbea48-ec70-4368-a49e-a1b496023939 + + + Memo + false + true + false + + false + canmodifyadditionalsettings + true + + 160 + 1900-01-01T00:00:00 + + + + + 4a8f0364-04a4-4e57-8ac5-6ecd2b88b7d2 + + true + Shows the complete secondary address. + 1033 + + + e5492a03-cd7e-40b1-9bb1-88a677c1bd81 + + true + Viser den fulde sekundære adresse. + 1030 + + + + 4a8f0364-04a4-4e57-8ac5-6ecd2b88b7d2 + + true + Shows the complete secondary address. + 1033 + + + + + + afd2a1cd-4273-4e51-ab0d-53184b8cd543 + + true + Other Address + 1033 + + + e063a6c2-1b5a-47fe-bfbe-223c0a9e1dde + + true + Anden adresse + 1030 + + + + afd2a1cd-4273-4e51-ab0d-53184b8cd543 + + true + Other Address + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + false + true + true + true + false + true + + address2_composite + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_Composite + + + MemoType + + 6.0.0.0 + true + + + TextArea + Active + 1000 + + TextArea + + false + + + 88b054eb-7c13-4ddc-8cb6-b99623f1fcbb + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 71 + 1900-01-01T00:00:00 + + + + + b598ba00-2341-db11-898a-0007e9e17ebd + + true + Country/region name in address 2. + 1033 + + + f21750a3-1ecd-4726-bc20-312d83e72914 + + true + Lande-/områdenavn i adresse 2. + 1030 + + + + b598ba00-2341-db11-898a-0007e9e17ebd + + true + Country/region name in address 2. + 1033 + + + + + + b498ba00-2341-db11-898a-0007e9e17ebd + + true + Other Country/Region + 1033 + + + 4eca8d68-4346-4fb5-ad50-ed667ec73018 + + true + Andet land/område + 1030 + + + + b498ba00-2341-db11-898a-0007e9e17ebd + + true + Other Country/Region + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address2_country + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_Country + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 128 + + + Text + + + false + 0 + 256 + + + 4889f351-7cd4-4b29-852d-68a01a1618de + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 70 + 1900-01-01T00:00:00 + + + + + 1cd8a218-2341-db11-898a-0007e9e17ebd + + true + County name for address 2. + 1033 + + + 35149ade-cf84-4ad9-8f57-c6e8d0216444 + + true + Region i adresse 2. + 1030 + + + + 1cd8a218-2341-db11-898a-0007e9e17ebd + + true + County name for address 2. + 1033 + + + + + + 1bd8a218-2341-db11-898a-0007e9e17ebd + + true + Address 2: County + 1033 + + + 9ca3ddea-36c9-4469-a052-643a85e32b6b + + true + Adresse 2: Region + 1030 + + + + 1bd8a218-2341-db11-898a-0007e9e17ebd + + true + Address 2: County + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address2_county + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_County + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 128 + + + Text + + + false + 0 + 256 + + + 27e83976-9b24-4ae6-bd40-5dbeced56cd1 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 82 + 1900-01-01T00:00:00 + + + + + 2ed8a218-2341-db11-898a-0007e9e17ebd + + true + Fax number for address 2. + 1033 + + + d31dcd6d-e1c3-4960-9f50-3a0f7de33499 + + true + Faxnummer til adresse 2. + 1030 + + + + 2ed8a218-2341-db11-898a-0007e9e17ebd + + true + Fax number for address 2. + 1033 + + + + + + 2dd8a218-2341-db11-898a-0007e9e17ebd + + true + Address 2: Fax + 1033 + + + 9cafccea-b9bb-4dc7-8011-7f7050b34b53 + + true + Adresse 2: Fax + 1030 + + + + 2dd8a218-2341-db11-898a-0007e9e17ebd + + true + Address 2: Fax + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address2_fax + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_Fax + + + StringType + + 5.0.0.0 + true + 0 + + Text + Inactive + 50 + + + Text + + + false + 0 + 100 + + + 988850c3-5ca2-4496-ac63-fcde8f64e007 + + + Double + true + true + true + + false + canmodifyadditionalsettings + true + + 76 + 1900-01-01T00:00:00 + + + + + 68d8a218-2341-db11-898a-0007e9e17ebd + + true + Latitude for address 2. + 1033 + + + 9b4abd6b-c3ae-4ebd-bc2e-a06306fe6801 + + true + Breddegrad for adresse 2. + 1030 + + + + 68d8a218-2341-db11-898a-0007e9e17ebd + + true + Latitude for address 2. + 1033 + + + + + + 67d8a218-2341-db11-898a-0007e9e17ebd + + true + Address 2: Latitude + 1033 + + + 3ecea865-cd41-41b3-b4b1-294e05297f8e + + true + Adresse 2: Breddegrad + 1030 + + + + 67d8a218-2341-db11-898a-0007e9e17ebd + + true + Address 2: Latitude + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address2_latitude + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_Latitude + + + DoubleType + + 5.0.0.0 + true + 0 + + Disabled + 90 + -90 + 5 + + 0 + + + 154006fe-1488-465d-9c56-23c0d26cfa6e + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 65 + 1900-01-01T00:00:00 + + + + + 2df2fbc4-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - b66c9941-227d-11df-8577-00155da18b00 - - true - Managed Property - 1033 - - - - b66c9941-227d-11df-8577-00155da18b00 - - true - Managed Property - 1033 - - - - 13 - - - - + true + First line for entering address 2 information. + 1033 + + + efe27c77-5670-4ae5-a64a-083630b5767e - - - - - - - false - true - - - - 44b455a2-680b-44a3-98e6-af05d7fac1b2 - - true - Entity Key - 1033 - - - - 44b455a2-680b-44a3-98e6-af05d7fac1b2 - - true - Entity Key - 1033 - - - - 14 - - - - + true + Første linje til angivelse af oplysninger om adresse 2. + 1030 + + + + 2df2fbc4-2241-db11-898a-0007e9e17ebd + + true + First line for entering address 2 information. + 1033 + + + + + + 2cf2fbc4-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 223f03be-0e3f-4f76-b6ff-0ff1264afa58 - - true - Privilege - 1033 - - - - 223f03be-0e3f-4f76-b6ff-0ff1264afa58 - - true - Privilege - 1033 - - - - 16 - - - - + true + Other Street 1 + 1033 + + + 64bd125c-f909-4b76-b695-44fd9abfcf06 - - - - - - - false - true - - - - 30d7f58d-55ab-4eb8-8b19-a576555921bd - - true - PrivilegeObjectTypeCode - 1033 - - - - 30d7f58d-55ab-4eb8-8b19-a576555921bd - - true - PrivilegeObjectTypeCode - 1033 - - - - 17 - - - - + true + Anden gade 1 + 1030 + + + + 2cf2fbc4-2241-db11-898a-0007e9e17ebd + + true + Other Street 1 + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address2_line1 + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_Line1 + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 1024 + + + Text + + + false + 0 + 2048 + + + 7b8cac01-81cd-4888-b771-1059f2757567 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 66 + 1900-01-01T00:00:00 + + + + + 6d90aa12-2341-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 35dbde9c-b9bd-11de-844f-00155da18b00 - - true - Role - 1033 - - - - 35dbde9c-b9bd-11de-844f-00155da18b00 - - true - Role - 1033 - - - - 20 - - - - + true + Second line for entering address 2 information. + 1033 + + + a490f744-ed66-4475-9431-6c8cfc035d31 - - - - - - - false - true - - - - 35dbde9e-b9bd-11de-844f-00155da18b00 - - true - Role Privilege - 1033 - - - - 35dbde9e-b9bd-11de-844f-00155da18b00 - - true - Role Privilege - 1033 - - - - 21 - - - - + true + Anden linje til angivelse af oplysninger om adresse 2. + 1030 + + + + 6d90aa12-2341-db11-898a-0007e9e17ebd + + true + Second line for entering address 2 information. + 1033 + + + + + + 6c90aa12-2341-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 35dbdea0-b9bd-11de-844f-00155da18b00 - - true - Display String - 1033 - - - - 35dbdea0-b9bd-11de-844f-00155da18b00 - - true - Display String - 1033 - - - - 22 - - - - + true + Other Street 2 + 1033 + + + 990c9245-7d5b-4e94-9ae5-95b37ae1c3bf - - - - - - - false - true - - - - 35dbdea2-b9bd-11de-844f-00155da18b00 - - true - Display String Map - 1033 - - - - 35dbdea2-b9bd-11de-844f-00155da18b00 - - true - Display String Map - 1033 - - - - 23 - - - - + true + Anden gade 2 + 1030 + + + + 6c90aa12-2341-db11-898a-0007e9e17ebd + + true + Other Street 2 + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address2_line2 + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_Line2 + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 1024 + + + Text + + + false + 0 + 2048 + + + df4c3533-1997-44c5-8836-1bfbfca87bcb + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 67 + 1900-01-01T00:00:00 + + + + + c897ba00-2341-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 35dbdea4-b9bd-11de-844f-00155da18b00 - - true - Form - 1033 - - - - 35dbdea4-b9bd-11de-844f-00155da18b00 - - true - Form - 1033 - - - - 24 - - - - + true + Third line for entering address 2 information. + 1033 + + + d2667b29-9c43-44aa-9ba5-1a3d23eb3f43 - - - - - - - false - true - - - - 35dbdea6-b9bd-11de-844f-00155da18b00 - - true - Organization - 1033 - - - - 35dbdea6-b9bd-11de-844f-00155da18b00 - - true - Organization - 1033 - - - - 25 - - - - + true + Tredje linje til angivelse af oplysninger om adresse 2. + 1030 + + + + c897ba00-2341-db11-898a-0007e9e17ebd + + true + Third line for entering address 2 information. + 1033 + + + + + + c797ba00-2341-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 35dbdea8-b9bd-11de-844f-00155da18b00 - - true - Saved Query - 1033 - - - - 35dbdea8-b9bd-11de-844f-00155da18b00 - - true - Saved Query - 1033 - - - - 26 - - - - + true + Other Street 3 + 1033 + + + 54172a14-7040-4652-8666-cc5be2b3f3f0 - - - - - - - false - true - - - - 35dbdeae-b9bd-11de-844f-00155da18b00 - - true - Workflow - 1033 - - - - 35dbdeae-b9bd-11de-844f-00155da18b00 - - true - Workflow - 1033 - - - - 29 - - - - + true + Anden gade 3 + 1030 + + + + c797ba00-2341-db11-898a-0007e9e17ebd + + true + Other Street 3 + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address2_line3 + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_Line3 + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 1024 + + + Text + + + false + 0 + 2048 + + + 33f45df8-5ff2-44af-bdc7-cce038214151 + + + Double + true + true + true + + false + canmodifyadditionalsettings + true + + 78 + 1900-01-01T00:00:00 + + + + + e551c2fa-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 2d2fa8a6-df9c-436b-89c1-cb9a79a94a1d - - true - Report - 1033 - - - - 2d2fa8a6-df9c-436b-89c1-cb9a79a94a1d - - true - Report - 1033 - - - - 31 - - - - + true + Longitude for address 2. + 1033 + + + d62cebf3-8dc2-4439-ba82-5d65039537ed - - - - - - - false - true - - - - e48fd8ee-6621-40bd-a9a1-a1e00544643e - - true - Report Entity - 1033 - - - - e48fd8ee-6621-40bd-a9a1-a1e00544643e - - true - Report Entity - 1033 - - - - 32 - - - - + true + Længdegrad for adresse 2. + 1030 + + + + e551c2fa-2241-db11-898a-0007e9e17ebd + + true + Longitude for address 2. + 1033 + + + + + + e451c2fa-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 91a7a3f9-d7a6-479b-b520-48e02f7319f9 - - true - Report Category - 1033 - - - - 91a7a3f9-d7a6-479b-b520-48e02f7319f9 - - true - Report Category - 1033 - - - - 33 - - - - + true + Address 2: Longitude + 1033 + + + e271a0cf-c515-431d-af8c-b47cb3e7e29e - - - - - - - false - true - - - - 270c9f8b-4f74-4bce-a7ab-ce3baa4e6093 - - true - Report Visibility - 1033 - - - - 270c9f8b-4f74-4bce-a7ab-ce3baa4e6093 - - true - Report Visibility - 1033 - - - - 34 - - - - + true + Adresse 2: Længdegrad + 1030 + + + + e451c2fa-2241-db11-898a-0007e9e17ebd + + true + Address 2: Longitude + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address2_longitude + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_Longitude + + + DoubleType + + 5.0.0.0 + true + 0 + + Disabled + 180 + -180 + 5 + + 0 + + + 60ab6d63-9d7d-4634-a6e9-351831101229 + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 64 + 1900-01-01T00:00:00 + + + + + c190aa12-2341-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - f0e8d73c-b474-4c8d-9ae0-df0aea227d2e - - true - Attachment - 1033 - - - - f0e8d73c-b474-4c8d-9ae0-df0aea227d2e - - true - Attachment - 1033 - - - - 35 - - - - + true + Name to enter for address 2. + 1033 + + + f773455e-d276-4a13-aec8-991099c0bfcc - - - - - - - false - true - - - - 35dbdeb2-b9bd-11de-844f-00155da18b00 - - true - Email Template - 1033 - - - - 35dbdeb2-b9bd-11de-844f-00155da18b00 - - true - Email Template - 1033 - - - - 36 - - - - + true + Det navn, der skal angives for adresse 2. + 1030 + + + + c190aa12-2341-db11-898a-0007e9e17ebd + + true + Name to enter for address 2. + 1033 + + + + + + c090aa12-2341-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 35dbdeb4-b9bd-11de-844f-00155da18b00 - - true - Contract Template - 1033 - - - - 35dbdeb4-b9bd-11de-844f-00155da18b00 - - true - Contract Template - 1033 - - - - 37 - - - - + true + Address 2: Name + 1033 + + + d55e813a-c507-48b1-a907-f7be84811c16 - - - - - - - false - true - - - - 35dbdeb6-b9bd-11de-844f-00155da18b00 - - true - KB Article Template - 1033 - - - - 35dbdeb6-b9bd-11de-844f-00155da18b00 - - true - KB Article Template - 1033 - - - - 38 - - - - + true + Adresse 2: Navn + 1030 + + + + c090aa12-2341-db11-898a-0007e9e17ebd + + true + Address 2: Name + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address2_name + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_Name + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 100 + + + Text + + + false + 0 + 400 + + + 4bb0a062-9516-43de-8ff1-52b0b74c8397 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 73 + 1900-01-01T00:00:00 + + + + + 89d8dee2-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 35dbdeb8-b9bd-11de-844f-00155da18b00 - - true - Mail Merge Template - 1033 - - - - 35dbdeb8-b9bd-11de-844f-00155da18b00 - - true - Mail Merge Template - 1033 - - - - 39 - - - - + true + ZIP Code or postal code for address 2. + 1033 + + + aff5f550-3a91-4c1e-9e5d-b558d36a7e6b - - - - - - - false - true - - - - 35dbdeba-b9bd-11de-844f-00155da18b00 - - true - Duplicate Rule - 1033 - - - - 35dbdeba-b9bd-11de-844f-00155da18b00 - - true - Duplicate Rule - 1033 - - - - 44 - - - - + true + Postnummer i adresse 2. + 1030 + + + + 89d8dee2-2241-db11-898a-0007e9e17ebd + + true + ZIP Code or postal code for address 2. + 1033 + + + + + + 88d8dee2-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 35dbdebc-b9bd-11de-844f-00155da18b00 - - true - Duplicate Rule Condition - 1033 - - - - 35dbdebc-b9bd-11de-844f-00155da18b00 - - true - Duplicate Rule Condition - 1033 - - - - 45 - - - - + true + Other ZIP/Postal Code + 1033 + + + def5f303-6182-41e0-b5ea-a741bf78b7fc - - - - - - - false - true - - - - 35dbdebe-b9bd-11de-844f-00155da18b00 - - true - Entity Map - 1033 - - - - 35dbdebe-b9bd-11de-844f-00155da18b00 - - true - Entity Map - 1033 - - - - 46 - - - - + true + Andet postnummer + 1030 + + + + 88d8dee2-2241-db11-898a-0007e9e17ebd + + true + Other ZIP/Postal Code + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address2_postalcode + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_PostalCode + + + StringType + + 5.0.0.0 + true + 0 + + Text + Inactive + 40 + + + Text + + + false + 0 + 80 + + + 16095eb8-c5f3-4180-a45b-901f9ddbeaff + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 72 + 1900-01-01T00:00:00 + + + + + 82d7a218-2341-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 35dbdec0-b9bd-11de-844f-00155da18b00 - - true - Attribute Map - 1033 - - - - 35dbdec0-b9bd-11de-844f-00155da18b00 - - true - Attribute Map - 1033 - - - - 47 - - - - + true + Post office box number for address 2. + 1033 + + + 50ef087a-b768-403f-80ac-d0a79f56c2a8 - - - - - - - false - true - - - - 35dbdec2-b9bd-11de-844f-00155da18b00 - - true - Ribbon Command - 1033 - - - - 35dbdec2-b9bd-11de-844f-00155da18b00 - - true - Ribbon Command - 1033 - - - - 48 - - - - + true + Postboksnummer i adresse 2. + 1030 + + + + 82d7a218-2341-db11-898a-0007e9e17ebd + + true + Post office box number for address 2. + 1033 + + + + + + 81d7a218-2341-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 35dbdec4-b9bd-11de-844f-00155da18b00 - - true - Ribbon Context Group - 1033 - - - - 35dbdec4-b9bd-11de-844f-00155da18b00 - - true - Ribbon Context Group - 1033 - - - - 49 - - - - + true + Address 2: Post Office Box + 1033 + + + fa03f4d3-0e9c-4175-9fa3-6256c91357b2 - - - - - - - false - true - - - - 35dbdec6-b9bd-11de-844f-00155da18b00 - - true - Ribbon Customization - 1033 - - - - 35dbdec6-b9bd-11de-844f-00155da18b00 - - true - Ribbon Customization - 1033 - - - - 50 - - - - + true + Adresse 2: Postboksnummer + 1030 + + + + 81d7a218-2341-db11-898a-0007e9e17ebd + + true + Address 2: Post Office Box + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address2_postofficebox + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_PostOfficeBox + + + StringType + + 5.0.0.0 + true + 0 + + Text + Inactive + 40 + + + Text + + + false + 0 + 80 + + + 30ad07bb-37d0-4723-aa92-62f60c05fe7b + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + false + + 79 + 1900-01-01T00:00:00 + + + + + 1726e7d6-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 35dbdec8-b9bd-11de-844f-00155da18b00 - - true - Ribbon Rule - 1033 - - - - 35dbdec8-b9bd-11de-844f-00155da18b00 - - true - Ribbon Rule - 1033 - - - - 52 - - - - + true + Method of shipment for address 2. + 1033 + + + 659e6bd6-986c-45c5-8ea6-d55cee1f61bf - - - - - - - false - true - - - - 35dbdeca-b9bd-11de-844f-00155da18b00 - - true - Ribbon Tab To Command Map - 1033 - - - - 35dbdeca-b9bd-11de-844f-00155da18b00 - - true - Ribbon Tab To Command Map - 1033 - - - - 53 - - + true + Forsendelsesmåde for adresse 2. + 1030 + + + + 1726e7d6-2241-db11-898a-0007e9e17ebd + + true + Method of shipment for address 2. + 1033 + + + + + + 1626e7d6-2241-db11-898a-0007e9e17ebd + + true + Address 2: Shipping Method + 1033 + + + fff39058-3639-4e77-8095-b95b4149745b + + true + Adresse 2: Forsendelsesmåde + 1030 + + + + 1626e7d6-2241-db11-898a-0007e9e17ebd + + true + Address 2: Shipping Method + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + address2_shippingmethodcode + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address2_ShippingMethodCode + + + PicklistType + + 5.0.0.0 + true + 0 + + 1 + + 7021a000-ec06-4ac1-a6ea-c680e1fb6ef7 + + + + + a2078484-c7bb-4495-8544-f769a82dadb1 + + true + Method of shipment for address 2. + 1033 + + + 200dbcb9-db22-4108-8f0a-735d4619680e + + true + Forsendelsesmåde for adresse 2. + 1030 + + + + a2078484-c7bb-4495-8544-f769a82dadb1 + + true + Method of shipment for address 2. + 1033 + + + + + + 3cf3fac4-acc4-48a8-aed5-3ee7ad673bce + + true + Address 2: Shipping Method + 1033 + + + 244d5d40-24ee-409a-897d-c6dce0a4bc9c + + true + Adresse 2: Forsendelsesmåde + 1030 + + + + 3cf3fac4-acc4-48a8-aed5-3ee7ad673bce + + true + Address 2: Shipping Method + 1033 + + + + false + + false + iscustomizable + true + + false + true + systemuser_address2_shippingmethodcode + Picklist + 5.0.0.0 + @@ -288638,520 +336601,1702 @@ - 35dbdecc-b9bd-11de-844f-00155da18b00 + 1926e7d6-2241-db11-898a-0007e9e17ebd true - Ribbon Diff + Default Value 1033 - - - 35dbdecc-b9bd-11de-844f-00155da18b00 - - true - Ribbon Diff - 1033 - - - - 55 - - - - - - - - - - - - false - true - - - e4261e0c-b9bd-11de-844f-00155da18b00 + 4f97eaf4-4b79-4a01-a1a2-1c0d7d0ceda9 true - Saved Query Visualization - 1033 + Standardværdi + 1030 - e4261e0c-b9bd-11de-844f-00155da18b00 + 1926e7d6-2241-db11-898a-0007e9e17ebd true - Saved Query Visualization + Default Value 1033 - 59 + 1 - - + + + + + + 0 + + + + + d4ba4aec-53bd-4bed-8be7-3b5f1668417d + + address2_shippingmethodcode + Virtual + false + false + false + + false + canmodifyadditionalsettings + false + + 95 + 1900-01-01T00:00:00 + + + + + + + + + + systemuser + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + address2_shippingmethodcodename + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address2_ShippingMethodCodeName + + + VirtualType + + 5.0.0.0 + true + + + + + c9392741-152a-46cd-9017-01b1f359e966 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 69 + 1900-01-01T00:00:00 + + + + + c7abc7f4-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - e4261e0e-b9bd-11de-844f-00155da18b00 - - true - System Form - 1033 - - - - e4261e0e-b9bd-11de-844f-00155da18b00 - - true - System Form - 1033 - - - - 60 - - - - + true + State or province for address 2. + 1033 + + + 057894ab-25d0-44ae-aa56-54ce35202cbf - - - - - - - false - true - - - - e4261e10-b9bd-11de-844f-00155da18b00 - - true - Web Resource - 1033 - - - - e4261e10-b9bd-11de-844f-00155da18b00 - - true - Web Resource - 1033 - - - - 61 - - - - + true + Område i adresse 2. + 1030 + + + + c7abc7f4-2241-db11-898a-0007e9e17ebd + + true + State or province for address 2. + 1033 + + + + + + c6abc7f4-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - e4261e12-b9bd-11de-844f-00155da18b00 - - true - Site Map - 1033 - - - - e4261e12-b9bd-11de-844f-00155da18b00 - - true - Site Map - 1033 - - - - 62 - - - - + true + Other State/Province + 1033 + + + f77e3cca-6003-4b44-9568-f2fdf87eddfc - - - - - - - false - true - - - - e4261e14-b9bd-11de-844f-00155da18b00 - - true - Connection Role - 1033 - - - - e4261e14-b9bd-11de-844f-00155da18b00 - - true - Connection Role - 1033 - - - - 63 - - - - + true + Andet område + 1030 + + + + c6abc7f4-2241-db11-898a-0007e9e17ebd + + true + Other State/Province + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + address2_stateorprovince + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_StateOrProvince + + + StringType + + 5.0.0.0 + true + 0 + + Text + Active + 128 + + + Text + + + false + 0 + 256 + + + 97432486-e477-4092-bdaa-e4e0fbb5aa0b + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 77 + 1900-01-01T00:00:00 + + + + + 21e8af0c-2341-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 0d4bd12a-5149-49b2-925f-d09ce20c4be8 - - true - Complex Control - 1033 - - - - 0d4bd12a-5149-49b2-925f-d09ce20c4be8 - - true - Complex Control - 1033 - - - - 64 - - - - + true + First telephone number associated with address 2. + 1033 + + + c5553e33-9c8c-4361-8bf3-d9d08cbb6c27 - - - - - - - false - true - - - - 9d15b865-2d55-11df-838b-0019b9279bfb - - true - Field Security Profile - 1033 - - - - 9d15b865-2d55-11df-838b-0019b9279bfb - - true - Field Security Profile - 1033 - - - - 70 - - - - + true + Første telefonnummer, der er tilknyttet adresse 2. + 1030 + + + + 21e8af0c-2341-db11-898a-0007e9e17ebd + + true + First telephone number associated with address 2. + 1033 + + + + + + 20e8af0c-2341-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - af8018e1-2d55-11df-838b-0019b9279bfb - - true - Field Permission - 1033 - - - - af8018e1-2d55-11df-838b-0019b9279bfb - - true - Field Permission - 1033 - - - - 71 - - - - + true + Address 2: Telephone 1 + 1033 + + + 909aa906-3bb0-4451-95f8-d190ea87e880 - - - - - - - false - true - - - - bda86701-56d0-48d3-8328-7891c3f3984f - - true - Plugin Type - 1033 - - - - bda86701-56d0-48d3-8328-7891c3f3984f - - true - Plugin Type - 1033 - - - - 90 - - - - + true + Adresse 2: Telefon 1 + 1030 + + + + 20e8af0c-2341-db11-898a-0007e9e17ebd + + true + Address 2: Telephone 1 + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address2_telephone1 + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_Telephone1 + + + StringType + + 5.0.0.0 + true + 0 + + Text + Inactive + 50 + + + Phone + + + false + 0 + 100 + + + beda09f2-bcf8-4c7a-895a-b3e9a9c2e485 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 80 + 1900-01-01T00:00:00 + + + + + 229af6ca-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - bda86711-56d0-48d3-8328-7891c3f3984f - - true - Plugin Assembly - 1033 - - - - bda86711-56d0-48d3-8328-7891c3f3984f - - true - Plugin Assembly - 1033 - - - - 91 - - - - + true + Second telephone number associated with address 2. + 1033 + + + c94fbc67-888f-4824-8bca-9a9bd6dd9821 - - - - - - - false - true - - - - bda86721-56d0-48d3-8328-7891c3f3984f - - true - SDK Message Processing Step - 1033 - - - - bda86721-56d0-48d3-8328-7891c3f3984f - - true - SDK Message Processing Step - 1033 - - - - 92 - - - - + true + Andet telefonnummer, der er tilknyttet adresse 2. + 1030 + + + + 229af6ca-2241-db11-898a-0007e9e17ebd + + true + Second telephone number associated with address 2. + 1033 + + + + + + 219af6ca-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - bda86731-56d0-48d3-8328-7891c3f3984f - - true - SDK Message Processing Step Image - 1033 - - - - bda86731-56d0-48d3-8328-7891c3f3984f - - true - SDK Message Processing Step Image - 1033 - - - - 93 - - - - + true + Address 2: Telephone 2 + 1033 + + + df9b6582-f671-41c7-b092-9f2ab09e4774 - - - - - - - false - true - - - - bda86751-56d0-48d3-8328-7891c3f3984f - - true - Service Endpoint - 1033 - - - - bda86751-56d0-48d3-8328-7891c3f3984f - - true - Service Endpoint - 1033 - - - - 95 - - - - + true + Adresse 2: Telefon 2 + 1030 + + + + 219af6ca-2241-db11-898a-0007e9e17ebd + + true + Address 2: Telephone 2 + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address2_telephone2 + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_Telephone2 + + + StringType + + 5.0.0.0 + true + 0 + + Text + Inactive + 50 + + + Phone + + + false + 0 + 100 + + + 3d7a44fd-816e-4c32-a516-edde9a886012 + + + String + true + true + true + + false + canmodifyadditionalsettings + true + + 81 + 1900-01-01T00:00:00 + + + + + feaac7f4-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - c7d53761-14ad-4e06-8a90-73d7cc57bde9 - - true - Routing Rule - 1033 - - - - c7d53761-14ad-4e06-8a90-73d7cc57bde9 - - true - Routing Rule - 1033 - - - - 150 - - - - + true + Third telephone number associated with address 2. + 1033 + + + 2433ebb4-b601-4434-aaf9-9058ccde6a0f + + true + Tredje telefonnummer, der er tilknyttet adresse 2. + 1030 + + + + feaac7f4-2241-db11-898a-0007e9e17ebd + + true + Third telephone number associated with address 2. + 1033 + + + + + + fdaac7f4-2241-db11-898a-0007e9e17ebd + + true + Address 2: Telephone 3 + 1033 + + + b80cb5ad-af63-41f3-aceb-0d5d3055d21f + + true + Adresse 2: Telefon 3 + 1030 + + + + fdaac7f4-2241-db11-898a-0007e9e17ebd + + true + Address 2: Telephone 3 + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + true + true + true + true + true + + address2_telephone3 + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + None + + Address2_Telephone3 + + + StringType + + 5.0.0.0 + true + 0 + + Text + Inactive + 50 + + + Phone + + + false + 0 + 100 + + + 5697807a-a31a-4b7c-8b51-acc284b4cd42 + + + String + false + false + false + + false + canmodifyadditionalsettings + false + + 75 + 1900-01-01T00:00:00 + + + + + a626e7d6-2241-db11-898a-0007e9e17ebd + + true + United Parcel Service (UPS) zone for address 2. + 1033 + + + c4efb212-baa0-40aa-9390-5952b8d9961a + + true + UPS-zone (United Parcel Service) for adresse 2. + 1030 + + + + a626e7d6-2241-db11-898a-0007e9e17ebd + + true + United Parcel Service (UPS) zone for address 2. + 1033 + + + + + + a526e7d6-2241-db11-898a-0007e9e17ebd + + true + Address 2: UPS Zone + 1033 + + + aa79f325-703c-453e-9c51-6d147546d8fd + + true + Adresse 2: UPS-zone + 1030 + + + + a526e7d6-2241-db11-898a-0007e9e17ebd + + true + Address 2: UPS Zone + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + address2_upszone + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address2_UPSZone + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 4 + + + Text + + + false + 0 + 8 + + + 2159eedb-9b87-43ce-b120-d1c4eb89f899 + + + Integer + false + false + false + + false + canmodifyadditionalsettings + false + + 74 + 1900-01-01T00:00:00 + + + + + 2de0eed0-2241-db11-898a-0007e9e17ebd + + true + UTC offset for address 2. This is the difference between local time and standard Coordinated Universal Time. + 1033 + + + f7501432-d648-462d-8909-060e3e10adb1 + + true + Forskydning fra GMT for adresse 2. Dette er forskellen mellem lokal tid og GMT-standardtid. + 1030 + + + + 2de0eed0-2241-db11-898a-0007e9e17ebd + + true + UTC offset for address 2. This is the difference between local time and standard Coordinated Universal Time. + 1033 + + + + + + 2ce0eed0-2241-db11-898a-0007e9e17ebd + + true + Address 2: UTC Offset + 1033 + + + 29632ea2-d328-42fe-9127-5e671d47f229 + + true + Adresse 2: Forskydning fra GMT + 1030 + + + + 2ce0eed0-2241-db11-898a-0007e9e17ebd + + true + Address 2: UTC Offset + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + address2_utcoffset + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + Address2_UTCOffset + + + IntegerType + + 5.0.0.0 + true + 0 + + TimeZone + 1500 + -1500 + + 0 + + + 6fb146b4-88bd-4aa9-956d-24ebf67fb330 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 182 + 1900-01-01T00:00:00 + + + + + 08083661-10ee-41b6-83f0-7b07087c5a3c + + true + The identifier for the application. This is used to access data in another application. + 1033 + + + 21f3b925-ef22-4ebf-affd-6e586b94793d + + true + Id'et for programmet. Dette bruges til at få adgang til data i et andet program. + 1030 + + + + 08083661-10ee-41b6-83f0-7b07087c5a3c + + true + The identifier for the application. This is used to access data in another application. + 1033 + + + + + + a4ceb3ca-b68f-4dcc-9015-37da75f7daf0 + + true + Application ID + 1033 + + + f34cc68d-9a8f-42ed-9002-f042baf6dfc5 + + true + Program-id + 1030 + + + + a4ceb3ca-b68f-4dcc-9015-37da75f7daf0 + + true + Application ID + 1033 + + + systemuser + + + + false + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + true + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + applicationid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ApplicationId + + + UniqueidentifierType + + 8.2.0.0 + false + + + + + ac143140-4bd4-42a3-9a3a-e165338e533f + + + String + false + false + false + + false + canmodifyadditionalsettings + true + + 183 + 1900-01-01T00:00:00 + + + + + 6f038f09-a410-4f23-95bb-f55aa2f4acf6 + + true + The URI used as a unique logical identifier for the external app. This can be used to validate the application. + 1033 + + + f38c5efa-797c-4f58-a06e-4cde53fa697a + + true + Den URI, der blev brugt som et entydigt logisk id for den eksterne app. Dette kan bruges til at validere programmet. + 1030 + + + + 6f038f09-a410-4f23-95bb-f55aa2f4acf6 + + true + The URI used as a unique logical identifier for the external app. This can be used to validate the application. + 1033 + + + + + + 21aebc34-08c0-43e2-801e-537819074c33 + + true + Application ID URI + 1033 + + + 3a4e7bfe-c537-4138-92aa-baf5df4f4c3e + + true + URI for program-id + 1030 + + + + 21aebc34-08c0-43e2-801e-537819074c33 + + true + Application ID URI + 1033 + + + systemuser + + + + false + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + false + true + true + true + false + true + + applicationiduri + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + ApplicationIdUri + + + StringType + + 8.2.0.0 + false + 0 + + Text + Auto + 1024 + + + Text + + + false + 0 + 2048 + + + 2578fcdc-3074-4ec5-b213-1d9f959c91fc + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + true + + 184 + 1900-01-01T00:00:00 + + + + + 3fb0a281-6e61-4d69-8fd0-da24f937e77a + + true + This is the application directory object Id. + 1033 + + + 3f3a32de-7d2f-4f6e-84ae-05aed1f7c77e + + true + Dette er objekt-id'et for programmappen. + 1030 + + + + 3fb0a281-6e61-4d69-8fd0-da24f937e77a + + true + This is the application directory object Id. + 1033 + + + + + + 1a757da0-8fa6-45b5-b7e8-943d797c01ce + + true + Azure AD Object ID + 1033 + + + 02f6a6fa-75d4-48a0-8bb6-44e08930ca21 + + true + Objekt-id for Azure AD + 1030 + + + + 1a757da0-8fa6-45b5-b7e8-943d797c01ce + + true + Azure AD Object ID + 1033 + + + systemuser + + + + false + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + false + true + true + true + false + true + + azureactivedirectoryobjectid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + AzureActiveDirectoryObjectId + + + UniqueidentifierType + + 8.2.0.0 + false + + + + + 06e36238-41a2-11ec-8373-a4ae128009be + + + DateTime + true + true + true + + false + canmodifyadditionalsettings + true + + 10004 + 2025-11-06T02:05:46.5170048 + + + + + 758ab502-dd04-4f4e-a4de-452ff7c74030 + + true + Date and time when the user was set as soft deleted in Azure. + 1033 + + + + 758ab502-dd04-4f4e-a4de-452ff7c74030 + + true + Date and time when the user was set as soft deleted in Azure. + 1033 + + + + + + 93eb58c5-d69a-4eb0-9d97-5e7b82de4a1e + + true + Azure Deleted On + 1033 + + + + 93eb58c5-d69a-4eb0-9d97-5e7b82de4a1e + + true + Azure Deleted On + 1033 + + + systemuser + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + true + + false + true + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + true + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + false + true + true + true + false + true + + azuredeletedon + 2025-11-06T02:05:46.5170048 + + true + canmodifyrequirementlevelsettings + None + + AzureDeletedOn + + + DateTimeType + + 9.2.0.0 + false + 0 + + DateAndTime + Inactive + + 0 + + true + canmodifybehavior + true + + + UserLocal + + + + 06e36233-41a2-11ec-8373-a4ae128009be + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 10002 + 2025-11-06T02:05:46.5030016 + + + + + 2047db4b-9346-4844-8c09-b6e64a83d9fd + + true + Azure state of user + 1033 + + + + 2047db4b-9346-4844-8c09-b6e64a83d9fd + + true + Azure state of user + 1033 + + + + + + cc9c880d-cda8-41f0-a117-59e51235d4f6 + + true + Azure State + 1033 + + + + cc9c880d-cda8-41f0-a117-59e51235d4f6 + + true + Azure State + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + false + true + true + true + true + true + + azurestate + 2025-11-06T02:05:46.5030016 + + false + canmodifyrequirementlevelsettings + SystemRequired + + AzureState + + + PicklistType + + 9.2.0.0 + false + 0 + + 0 + + 9c60d714-b5ba-f011-bbd3-7c1e52365f30 + + + + + 9e60d714-b5ba-f011-bbd3-7c1e52365f30 + + true + Azure state of user. + 1033 + + + + 9e60d714-b5ba-f011-bbd3-7c1e52365f30 + + true + Azure state of user. + 1033 + + + + + + 9d60d714-b5ba-f011-bbd3-7c1e52365f30 + + true + Azure State + 1033 + + + + 9d60d714-b5ba-f011-bbd3-7c1e52365f30 - - - - - - - false - true - - - - 7397d0fd-fa77-40ab-989a-c1d8593f6264 - - true - Routing Rule Item - 1033 - - - - 7397d0fd-fa77-40ab-989a-c1d8593f6264 - - true - Routing Rule Item - 1033 - - - - 151 - - + true + Azure State + 1033 + + + + false + + false + iscustomizable + false + + false + true + systemuser_azurestate + Picklist + 9.2.0.0 + @@ -289166,23 +338311,23 @@ - 2a368df3-91be-4ea7-9de4-c8882819c31c + 9a7c2255-c258-40a6-a56a-2eb1456513b0 true - SLA + Exists 1033 - 2a368df3-91be-4ea7-9de4-c8882819c31c + 9a7c2255-c258-40a6-a56a-2eb1456513b0 true - SLA + Exists 1033 - 152 + 0 @@ -289199,23 +338344,23 @@ - e917239c-0bb9-437d-8d51-3457c11dec55 + 4e1622e7-1422-48e1-8ecb-312386e2e912 true - SLA Item + Soft deleted 1033 - e917239c-0bb9-437d-8d51-3457c11dec55 + 4e1622e7-1422-48e1-8ecb-312386e2e912 true - SLA Item + Soft deleted 1033 - 153 + 1 @@ -289232,124 +338377,700 @@ - 5e4fc65e-6512-418a-ad35-34102609a6f2 + e9d367e6-5320-43b1-9fab-1d1933318ac4 true - Convert Rule + Not found or hard deleted 1033 - 5e4fc65e-6512-418a-ad35-34102609a6f2 + e9d367e6-5320-43b1-9fab-1d1933318ac4 true - Convert Rule + Not found or hard deleted 1033 - 154 + 2 - - + + + + + + 0 + + + + + 3891f691-e017-4aca-9938-541d3ad75dc9 + + azurestate + Virtual + false + false + false + + false + canmodifyadditionalsettings + true + + 10003 + 2025-11-06T02:05:46.5170048 + + + + + + + + + + systemuser + + + + true + canmodifyauditsettings + false + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + false + false + false + true + false + false + + azurestatename + 2025-11-06T02:05:46.5170048 + + true + canmodifyrequirementlevelsettings + None + + azurestateName + + + VirtualType + + 9.2.0.0 + true + + + + + 35015bd2-c0fc-4299-a90b-ed174ca22291 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + true + + 5 + 1900-01-01T00:00:00 + + + + + e8dfeed0-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 0cfb2ee8-e1d5-4c51-b058-3044804a7c98 - - true - Convert Rule Item - 1033 - - - - 0cfb2ee8-e1d5-4c51-b058-3044804a7c98 - - true - Convert Rule Item - 1033 - - - - 155 - - - - + true + Unique identifier of the business unit with which the user is associated. + 1033 + + + e3e0571a-89f2-4686-8348-a58c30d2fa19 - - - - - - - false - true - - - - 2286e0fd-9a69-4668-9ca1-fb18a8826ceb - - true - Hierarchy Rule - 1033 - - - - 2286e0fd-9a69-4668-9ca1-fb18a8826ceb - - true - Hierarchy Rule - 1033 - - - - 65 - - - - + true + Entydigt id for den afdeling, som brugeren er tilknyttet. + 1030 + + + + e8dfeed0-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the business unit with which the user is associated. + 1033 + + + + + + e7dfeed0-2241-db11-898a-0007e9e17ebd - - - - - - - false - true - - - - 9c99d6bb-3790-47b0-950c-014b747d12a9 - - true - Mobile Offline Profile - 1033 - - - - 9c99d6bb-3790-47b0-950c-014b747d12a9 - - true - Mobile Offline Profile - 1033 - - - - 161 - - + true + Business Unit + 1033 + + + 7a041e45-ddca-48be-96a6-ccc1722fadce + + true + Afdeling + 1030 + + + + e7dfeed0-2241-db11-898a-0007e9e17ebd + + true + Business Unit + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + true + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + true + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + businessunitid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + BusinessUnitId + + + LookupType + + 5.0.0.0 + false + + + None + + businessunit + + + + 28073e70-c8ee-4fdf-99fe-e4af55b5cf64 + + businessunitid + String + false + false + false + + false + canmodifyadditionalsettings + false + + 87 + 1900-01-01T00:00:00 + + + + + + + + + + systemuser + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + false + + businessunitidname + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + SystemRequired + + BusinessUnitIdName + + + StringType + + 5.0.0.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 320 + + + b93426bd-0b92-433c-bfd3-d9738d3364f3 + + + Lookup + false + false + false + + false + canmodifyadditionalsettings + false + + 101 + 1900-01-01T00:00:00 + + + + + 8440b506-2341-db11-898a-0007e9e17ebd + + true + Fiscal calendar associated with the user. + 1033 + + + a6661e7c-d1c8-41a1-a743-79222dab2788 + + true + Den regnskabskalender, der er tilknyttet brugeren. + 1030 + + + + 8440b506-2341-db11-898a-0007e9e17ebd + + true + Fiscal calendar associated with the user. + 1033 + + + + + + 8340b506-2341-db11-898a-0007e9e17ebd + + true + Calendar + 1033 + + + 2faae9ab-ef7c-472d-a10f-e8dcad042848 + + true + Kalender + 1030 + + + + 8340b506-2341-db11-898a-0007e9e17ebd + + true + Calendar + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + true + false + false + true + true + true + + calendarid + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + CalendarId + + + LookupType + + 5.0.0.0 + false + + + None + + calendar + + + + 66dd5cca-890f-4420-b8f8-db19ed4fb273 + + + Picklist + false + false + false + + false + canmodifyadditionalsettings + true + + 148 + 1900-01-01T00:00:00 + + + + + a55b4006-016d-4a5d-87c7-b9902469e859 + + true + License type of user. This is used only in the on-premises version of the product. Online licenses are managed through Microsoft 365 Office Portal + 1033 + + + 2ff44199-d458-429b-ac2a-31284822ebff + + true + Den type licens, brugeren har. + 1030 + + + + a55b4006-016d-4a5d-87c7-b9902469e859 + + true + License type of user. This is used only in the on-premises version of the product. Online licenses are managed through Microsoft 365 Office Portal + 1033 + + + + + + 8b50fc86-87c0-438b-abc5-a65747cb810a + + true + License Type + 1033 + + + 11579b89-7faf-49d3-b077-4031ffbed876 + + true + Licenstype + 1030 + + + + 8b50fc86-87c0-438b-abc5-a65747cb810a + + true + License Type + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + true + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + caltype + 2025-11-06T02:05:46.2200064 + + false + canmodifyrequirementlevelsettings + SystemRequired + + CALType + + + PicklistType + + 5.0.0.0 + false + 0 + + 0 + + c5157c5f-9375-446c-8e8b-1659c0c5d54c + + + + + f8789b2b-d0f3-4373-9fd1-4e5b9925c24a + + true + License type of user. This is used only in the on-premises version of the product. Online licenses are managed through Microsoft 365 Office Portal. + 1033 + + + e696b879-a1bd-4286-8937-7d0593efc73c + + true + Den type licens, brugeren har. + 1030 + + + + f8789b2b-d0f3-4373-9fd1-4e5b9925c24a + + true + License type of user. This is used only in the on-premises version of the product. Online licenses are managed through Microsoft 365 Office Portal. + 1033 + + + + + + 6f80afe4-6545-4405-8392-301174509388 + + true + CAL Type + 1033 + + + a80fa4f7-95d3-48bb-9e3e-58813b08cadd + + true + CAL-typer + 1030 + + + + 6f80afe4-6545-4405-8392-301174509388 + + true + CAL Type + 1033 + + + + false + + false + iscustomizable + false + + false + true + systemuser_caltype + Picklist + 5.0.0.0 + @@ -289364,56 +339085,30 @@ - a0d3a0b9-ee17-4be1-86f1-e7b5ebbe1a7a + 29bea609-a46a-43ee-b6ee-f62db24dab3b true - Mobile Offline Profile Item + Professional 1033 - - - a0d3a0b9-ee17-4be1-86f1-e7b5ebbe1a7a - - true - Mobile Offline Profile Item - 1033 - - - - 162 - - - - - - - - - - - - false - true - - - d606c762-0741-4f34-b2b1-818f5b6128b7 + 4751ec58-28f9-4564-a311-0d586b2314ca true - Similarity Rule - 1033 + Professional + 1030 - d606c762-0741-4f34-b2b1-818f5b6128b7 + 29bea609-a46a-43ee-b6ee-f62db24dab3b true - Similarity Rule + Professional 1033 - 165 + 0 @@ -289430,56 +339125,30 @@ - 631ced83-509a-49c4-99b4-8f3ffc55d3c2 + 55794556-eb1a-44a4-bd30-2ccd78b3e1cb true - Custom Control + Administrative 1033 - - - 631ced83-509a-49c4-99b4-8f3ffc55d3c2 - - true - Custom Control - 1033 - - - - 66 - - - - - - - - - - - - false - true - - - ec71a702-a778-4074-b883-3dae457283a7 + 3d1b4bd6-030a-4b8a-9fac-0b900b3bb54a true - Custom Control Default Config - 1033 + Administrativ + 1030 - ec71a702-a778-4074-b883-3dae457283a7 + 55794556-eb1a-44a4-bd30-2ccd78b3e1cb true - Custom Control Default Config + Administrative 1033 - 68 + 1 @@ -289496,56 +339165,30 @@ - a5f448d5-eada-4970-8c13-ede8b219ee2e + 965abba1-e50d-492c-ac84-be6299357d11 true - Data Source Mapping + Basic 1033 - - - a5f448d5-eada-4970-8c13-ede8b219ee2e - - true - Data Source Mapping - 1033 - - - - 166 - - - - - - - - - - - - false - true - - - 1325e625-8828-4ffb-9051-0564fc17286a + ad273257-733c-4696-a168-e08a3b41f52f true - SDKMessage - 1033 + Grundlæggende + 1030 - 1325e625-8828-4ffb-9051-0564fc17286a + 965abba1-e50d-492c-ac84-be6299357d11 true - SDKMessage + Basic 1033 - 201 + 2 @@ -289562,56 +339205,30 @@ - 653e864d-912c-42e1-9323-927a95fd78ce + 4b33d103-57b3-4b16-a420-a258fb762688 true - SDKMessageFilter + Device Professional 1033 - - - 653e864d-912c-42e1-9323-927a95fd78ce - - true - SDKMessageFilter - 1033 - - - - 202 - - - - - - - - - - - - false - true - - - f3ba0616-fadc-4eca-ba00-281ff81f1ce2 + 10daa907-4138-46fb-b889-d70e456d0078 true - SdkMessagePair - 1033 + Enhed Professional + 1030 - f3ba0616-fadc-4eca-ba00-281ff81f1ce2 + 4b33d103-57b3-4b16-a420-a258fb762688 true - SdkMessagePair + Device Professional 1033 - 203 + 3 @@ -289628,56 +339245,30 @@ - d62f2300-1dbe-4580-aa3f-f7e888b4f139 + bc2c55a1-d48c-48c4-acbc-85f6498356c2 true - SdkMessageRequest + Device Basic 1033 - - - d62f2300-1dbe-4580-aa3f-f7e888b4f139 - - true - SdkMessageRequest - 1033 - - - - 204 - - - - - - - - - - - - false - true - - - d57c7e80-58f1-47f1-94ff-3626baf79966 + c8b57773-6300-4bab-8b5b-36aa1bf56ebf true - SdkMessageRequestField - 1033 + Device Basic + 1030 - d57c7e80-58f1-47f1-94ff-3626baf79966 + bc2c55a1-d48c-48c4-acbc-85f6498356c2 true - SdkMessageRequestField + Device Basic 1033 - 205 + 4 @@ -289694,56 +339285,30 @@ - c6c6f188-bf75-4300-939b-1130b7c69917 + c7998cd9-ec62-4333-9596-58ed8a021e7c true - SdkMessageResponse + Essential 1033 - - - c6c6f188-bf75-4300-939b-1130b7c69917 - - true - SdkMessageResponse - 1033 - - - - 206 - - - - - - - - - - - - false - true - - - 442e93ae-098b-478c-8104-5e295d3af482 + b8eae769-a864-4c6d-b232-565a20a62df4 true - SdkMessageResponseField - 1033 + Essential + 1030 - 442e93ae-098b-478c-8104-5e295d3af482 + c7998cd9-ec62-4333-9596-58ed8a021e7c true - SdkMessageResponseField + Essential 1033 - 207 + 5 @@ -289760,56 +339325,30 @@ - f830a047-67f3-457d-85e1-a9d7805e8c75 + a1a32202-77fc-41b5-9711-bc869d57b6f4 true - WebWizard + Device Essential 1033 - - - f830a047-67f3-457d-85e1-a9d7805e8c75 - - true - WebWizard - 1033 - - - - 210 - - - - - - - - - - - - false - true - - - a61eef9c-5117-42f9-b74c-ed2160034963 + 7e5aa99d-b5d1-4b05-a2df-dca56327eaed true - Index - 1033 + Device Essential + 1030 - a61eef9c-5117-42f9-b74c-ed2160034963 + a1a32202-77fc-41b5-9711-bc869d57b6f4 true - Index + Device Essential 1033 - 18 + 6 @@ -289826,56 +339365,30 @@ - eb593ac5-ebf3-4966-a57e-159610980deb + 65679ed3-3e43-4160-b742-d5489b63e035 true - Import Map + Enterprise 1033 - - - eb593ac5-ebf3-4966-a57e-159610980deb - - true - Import Map - 1033 - - - - 208 - - - - - - - - - - - - false - true - - - 45f97a20-93cd-4d9d-9373-badc5121726f + c7a60403-fe1d-44b4-a1ff-a0a80c16053e true - Canvas App - 1033 + Enterprise + 1030 - 45f97a20-93cd-4d9d-9373-badc5121726f + 65679ed3-3e43-4160-b742-d5489b63e035 true - Canvas App + Enterprise 1033 - 300 + 7 @@ -289892,56 +339405,30 @@ - 6174e48e-ff3e-4b1a-a2cd-764c6de5f7be + e4e054c4-3036-4603-8ab2-8fcacba6e827 true - Connector + Device Enterprise 1033 - - - 6174e48e-ff3e-4b1a-a2cd-764c6de5f7be - - true - Connector - 1033 - - - - 371 - - - - - - - - - - - - false - true - - - 11118f8e-5d20-422e-aabc-8259c8b2b201 + 552615a7-37e5-425a-83a4-3c57e92ccd54 true - Connector - 1033 + Enheden Enterprise + 1030 - 11118f8e-5d20-422e-aabc-8259c8b2b201 + e4e054c4-3036-4603-8ab2-8fcacba6e827 true - Connector + Device Enterprise 1033 - 372 + 8 @@ -289958,56 +339445,30 @@ - d62332b2-a2de-495b-99ec-4b55cd633c40 + 10ef3d1b-cde2-499c-bceb-5725abb3446b true - Environment Variable Definition + Sales 1033 - - - d62332b2-a2de-495b-99ec-4b55cd633c40 - - true - Environment Variable Definition - 1033 - - - - 380 - - - - - - - - - - - - false - true - - - 7d297a52-017f-424f-9df0-6ad5ea19befe + 6a81cfe7-cb7d-4ff1-97ba-ecba340bce52 true - Environment Variable Value - 1033 + Salg + 1030 - 7d297a52-017f-424f-9df0-6ad5ea19befe + 10ef3d1b-cde2-499c-bceb-5725abb3446b true - Environment Variable Value + Sales 1033 - 381 + 9 @@ -290024,56 +339485,30 @@ - 1a41e6de-e242-4e69-9c16-29fb4374b1d5 + 5f73e641-a839-4130-a6a3-d7d5f3803f28 true - AI Project Type + Service 1033 - - - 1a41e6de-e242-4e69-9c16-29fb4374b1d5 - - true - AI Project Type - 1033 - - - - 400 - - - - - - - - - - - - false - true - - - b13734e9-b00b-4220-bfa9-7506ab708525 + 5c21de26-8500-4e25-bdf8-09f3b84c2961 true - AI Project - 1033 + Service + 1030 - b13734e9-b00b-4220-bfa9-7506ab708525 + 5f73e641-a839-4130-a6a3-d7d5f3803f28 true - AI Project + Service 1033 - 401 + 10 @@ -290090,56 +339525,30 @@ - 174406b5-3ace-4a56-9577-7233c581d4cc + f53550e2-3f29-45ec-b982-488711928878 true - AI Configuration + Field Service 1033 - - - 174406b5-3ace-4a56-9577-7233c581d4cc - - true - AI Configuration - 1033 - - - - 402 - - - - - - - - - - - - false - true - - - aa86702d-6cc4-4196-9821-6f56400572b9 + 219da3ff-377e-423d-b36a-22ecc3c41980 true - Entity Analytics Configuration - 1033 + Field Service + 1030 - aa86702d-6cc4-4196-9821-6f56400572b9 + f53550e2-3f29-45ec-b982-488711928878 true - Entity Analytics Configuration + Field Service 1033 - 430 + 11 @@ -290156,56 +339565,30 @@ - 52e92361-c366-4d8f-ae85-c042b5d2cbaf + 0e9781de-1c82-4067-955e-d3354762fd86 true - Attribute Image Configuration + Project Service 1033 - - - 52e92361-c366-4d8f-ae85-c042b5d2cbaf - - true - Attribute Image Configuration - 1033 - - - - 431 - - - - - - - - - - - - false - true - - - 92999c72-6cdc-475e-b701-b26b29c6f554 + 91e324dd-3508-45e1-8c0f-8b3f38d57696 true - Entity Image Configuration - 1033 + Project Service + 1030 - 92999c72-6cdc-475e-b701-b26b29c6f554 + 0e9781de-1c82-4067-955e-d3354762fd86 true - Entity Image Configuration + Project Service 1033 - 432 + 12 @@ -290218,9 +339601,9 @@ - 5fffeae6-bd0d-11de-844f-00155da18b00 + 20732a90-51fa-4715-b458-1c47eab335de - componenttype + caltype Virtual false false @@ -290228,9 +339611,9 @@ false canmodifyadditionalsettings - true + false - 12 + 149 1900-01-01T00:00:00 @@ -290241,7 +339624,7 @@ - solutioncomponent + systemuser @@ -290291,14 +339674,14 @@ false false - componenttypename + caltypename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ComponentTypeName + CALTypeName VirtualType @@ -290309,7 +339692,7 @@ - 0a2cd3b3-3a59-4f7b-a345-eb6863843414 + 81f443f8-f55b-4030-af24-75613658cf9d Lookup @@ -290321,300 +339704,60 @@ canmodifyadditionalsettings true - 10 + 31 1900-01-01T00:00:00 - f258fb7b-0a83-41ae-a8f9-bf6d46681a55 - - true - Unique identifier of the user who created the solution - 1033 - - - - f258fb7b-0a83-41ae-a8f9-bf6d46681a55 - - true - Unique identifier of the user who created the solution - 1033 - - - - - - 143ec53f-f275-45c6-831a-aec0b0e3db46 + 329af6ca-2241-db11-898a-0007e9e17ebd true - Created By + Unique identifier of the user who created the user. 1033 - - - 143ec53f-f275-45c6-831a-aec0b0e3db46 - - true - Created By - 1033 - - - solutioncomponent - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - createdby - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - CreatedBy - - - LookupType - - 5.0.0.0 - false - - - None - - systemuser - - - - d5d257c7-47ca-492e-9768-a67012398bf9 - - - DateTime - false - false - false - - false - canmodifyadditionalsettings - true - - 9 - 1900-01-01T00:00:00 - - - - 829e7618-e13d-4397-a893-55668ec5543f + 824a1a5d-6ab4-4a2d-a5e0-a6651e6b8969 true - Date and time when the solution was created. - 1033 + Entydigt id for den bruger, der oprettede brugeren. + 1030 - 829e7618-e13d-4397-a893-55668ec5543f + 329af6ca-2241-db11-898a-0007e9e17ebd true - Date and time when the solution was created. + Unique identifier of the user who created the user. 1033 - 78a03ba5-24d7-4fd0-b646-f995a9cde0de - - true - Created On - 1033 - - - - 78a03ba5-24d7-4fd0-b646-f995a9cde0de - - true - Created On - 1033 - - - solutioncomponent - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - createdon - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - CreatedOn - - - DateTimeType - - 5.0.0.0 - false - 0 - - DateAndTime - Inactive - - 0 - - false - canmodifybehavior - false - - - UserLocal - - - - 67fbe065-ca1d-40eb-a45e-59d54a7a40ff - - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 17 - 1900-01-01T00:00:00 - - - - - fb965883-7d8f-4701-ade9-8c82858b9378 + 319af6ca-2241-db11-898a-0007e9e17ebd true - Unique identifier of the delegate user who created the solution. + Created By 1033 - - - fb965883-7d8f-4701-ade9-8c82858b9378 - - true - Unique identifier of the delegate user who created the solution. - 1033 - - - - - b85fc22a-9977-48cd-a186-54985e969b28 + 55c28d50-44f6-4b70-82cb-75ef22785236 true - Created By (Delegate) - 1033 + Oprettet af + 1030 - b85fc22a-9977-48cd-a186-54985e969b28 + 319af6ca-2241-db11-898a-0007e9e17ebd true - Created By (Delegate) + Created By 1033 - solutioncomponent + systemuser @@ -290626,7 +339769,7 @@ false iscustomizable - false + true false false @@ -290641,7 +339784,7 @@ false isrenameable - false + true false false @@ -290653,7 +339796,7 @@ false - false + true canmodifysearchsettings true @@ -290664,14 +339807,14 @@ false true - createdonbehalfby + createdby 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - CreatedOnBehalfBy + CreatedBy LookupType @@ -290686,9 +339829,9 @@ - 5061a4c8-c7f8-413a-ae08-96cd30e2ae35 + 77beb2fd-e667-4149-bb37-88c825203b69 - createdonbehalfby + createdby String false false @@ -290696,9 +339839,9 @@ false canmodifyadditionalsettings - true + false - 19 + 83 1900-01-01T00:00:00 @@ -290709,7 +339852,7 @@ - solutioncomponent + systemuser @@ -290759,14 +339902,14 @@ false false - createdonbehalfbyname + createdbyname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOnBehalfByName + CreatedByName StringType @@ -290785,12 +339928,12 @@ false 0 - 320 + 513 - bc8b3b31-3caf-4e21-89d2-0c86a2830f41 + 919647b8-9e22-4b06-8765-acf6dec273a3 - createdonbehalfby + createdby String false false @@ -290798,9 +339941,9 @@ false canmodifyadditionalsettings - true + false - 20 + 127 1900-01-01T00:00:00 @@ -290811,7 +339954,7 @@ - solutioncomponent + systemuser @@ -290861,14 +340004,14 @@ false false - createdonbehalfbyyominame + createdbyyominame 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOnBehalfByYomiName + CreatedByYomiName StringType @@ -290880,20 +340023,20 @@ Text Auto 100 - createdonbehalfbyname + createdbyname Text false 0 - 320 + 513 - - 0bf7a8e9-4d08-4854-b238-28277e536cd3 + + fe896b07-f735-4979-9411-9a1b9584bead - Boolean + DateTime false false false @@ -290902,409 +340045,60 @@ canmodifyadditionalsettings true - 4 + 26 1900-01-01T00:00:00 - 5b1905f9-11db-4272-827d-7c97271c2958 - - true - Indicates whether this component is metadata or data. - 1033 - - - - 5b1905f9-11db-4272-827d-7c97271c2958 - - true - Indicates whether this component is metadata or data. - 1033 - - - - - - 45c8e3e6-9c79-4bbc-b8b5-0e84b99a5deb + 404901bf-2241-db11-898a-0007e9e17ebd true - Is this component metadata + Date and time when the user was created. 1033 - - - 45c8e3e6-9c79-4bbc-b8b5-0e84b99a5deb - - true - Is this component metadata - 1033 - - - solutioncomponent - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - ismetadata - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - IsMetadata - - - BooleanType - - 5.0.0.0 - false - 0 - - true - - 580c3ab3-843c-4a25-873a-c302ebe33966 - - - - - 48b9a719-bd69-4691-a85e-ffac1f5c4e16 - - true - Indicates whether this component is metadata or data. - 1033 - - - - 48b9a719-bd69-4691-a85e-ffac1f5c4e16 - - true - Indicates whether this component is metadata or data. - 1033 - - - - - - 3b4214b0-94e8-4f33-9c58-1c86409026e6 - - true - Is this component metadata - 1033 - - - - 3b4214b0-94e8-4f33-9c58-1c86409026e6 - - true - Is this component metadata - 1033 - - - - false - - false - iscustomizable - false - - false - true - solutioncomponent_ismetadata - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 5301eb72-06ea-4ad9-9a2d-0d3f1bd46e43 - - true - Data - 1033 - - - - 5301eb72-06ea-4ad9-9a2d-0d3f1bd46e43 - - true - Data - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 919368f3-7dfb-48de-ba86-0a8d0492a4e3 - - true - Metadata - 1033 - - - - 919368f3-7dfb-48de-ba86-0a8d0492a4e3 - - true - Metadata - 1033 - - - - 1 - - - - - 0 - - - 902f4370-4622-4f87-a1c2-92692755eec9 - - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 6 - 1900-01-01T00:00:00 - - - - 04bf1912-2a47-49cd-b8a7-ea8fb7fee93f + 6071f762-6a21-4ded-8b91-ea1fcd9a18b8 true - Unique identifier of the user who last modified the solution. - 1033 + Dato og klokkeslæt for oprettelse af brugeren. + 1030 - 04bf1912-2a47-49cd-b8a7-ea8fb7fee93f + 404901bf-2241-db11-898a-0007e9e17ebd true - Unique identifier of the user who last modified the solution. + Date and time when the user was created. 1033 - d4f2a120-74b9-4815-9ae2-42d5824a588b - - true - Modified By - 1033 - - - - d4f2a120-74b9-4815-9ae2-42d5824a588b - - true - Modified By - 1033 - - - solutioncomponent - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - modifiedby - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ModifiedBy - - - LookupType - - 5.0.0.0 - false - - - None - - systemuser - - - - 851ca47c-20e3-4ff6-82ab-da7ccf213cd1 - - - DateTime - false - false - false - - false - canmodifyadditionalsettings - true - - 8 - 1900-01-01T00:00:00 - - - - - 78715e4c-f5ef-4ee3-8744-857ca1c5e2ec + 3f4901bf-2241-db11-898a-0007e9e17ebd true - Date and time when the solution was last modified. + Created On 1033 - - - 78715e4c-f5ef-4ee3-8744-857ca1c5e2ec - - true - Date and time when the solution was last modified. - 1033 - - - - - f1dd1b12-0ffc-4c4b-aace-e0dd1b0a7c6f + 5a4b2823-0c84-431d-ad5c-3d92a134b407 true - Modified On - 1033 + Oprettet + 1030 - f1dd1b12-0ffc-4c4b-aace-e0dd1b0a7c6f + 3f4901bf-2241-db11-898a-0007e9e17ebd true - Modified On + Created On 1033 - solutioncomponent + systemuser @@ -291316,10 +340110,10 @@ false iscustomizable - false + true false - false + true true canmodifyglobalfiltersettings @@ -291331,10 +340125,10 @@ false isrenameable - false + true false - false + true false false @@ -291343,25 +340137,25 @@ false - false + true canmodifysearchsettings - false + true false - false - false + true + true true false true - modifiedon + createdon 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - ModifiedOn + CreatedOn DateTimeType @@ -291384,7 +340178,7 @@ - 4325a54b-eeaa-4255-816a-6090944aa078 + a8dd80af-54b2-46a4-a88f-8c1f616af298 Lookup @@ -291396,46 +340190,60 @@ canmodifyadditionalsettings true - 13 + 133 1900-01-01T00:00:00 - b27c314d-09fa-4228-b704-1960ef3f42a7 + 4a39a849-51f6-408f-9880-e9caa87c4cdf true - Unique identifier of the delegate user who modified the solution. + Unique identifier of the delegate user who created the systemuser. 1033 + + b2f3188d-7512-4eda-a11b-8c6e0f57933d + + true + Entydigt id for den stedfortræderbruger, der oprettede systembrugeren. + 1030 + - b27c314d-09fa-4228-b704-1960ef3f42a7 + 4a39a849-51f6-408f-9880-e9caa87c4cdf true - Unique identifier of the delegate user who modified the solution. + Unique identifier of the delegate user who created the systemuser. 1033 - b5d337ca-a1d1-4aae-8e1e-0f9abb7b8788 + 6b2fe069-d2d9-4fdb-8b60-28e335ece715 true - Modified By (Delegate) + Created By (Delegate) 1033 + + 048c0bab-dbb5-41b4-b734-c9ec5146fa1a + + true + Oprettet af (stedfortræder) + 1030 + - b5d337ca-a1d1-4aae-8e1e-0f9abb7b8788 + 6b2fe069-d2d9-4fdb-8b60-28e335ece715 true - Modified By (Delegate) + Created By (Delegate) 1033 - solutioncomponent + systemuser @@ -291447,7 +340255,7 @@ false iscustomizable - false + true false false @@ -291462,7 +340270,7 @@ false isrenameable - false + true false false @@ -291474,7 +340282,7 @@ false - false + true canmodifysearchsettings true @@ -291485,14 +340293,14 @@ false true - modifiedonbehalfby + createdonbehalfby 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - ModifiedOnBehalfBy + CreatedOnBehalfBy LookupType @@ -291507,9 +340315,9 @@ - 26e480fc-5d5d-4550-b03e-a20e60a710c2 + 1f52614c-144b-4f18-95d8-1c9c16d2d917 - modifiedonbehalfby + createdonbehalfby String false false @@ -291517,9 +340325,9 @@ false canmodifyadditionalsettings - true + false - 15 + 141 1900-01-01T00:00:00 @@ -291530,7 +340338,7 @@ - solutioncomponent + systemuser @@ -291580,14 +340388,14 @@ false false - modifiedonbehalfbyname + createdonbehalfbyname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ModifiedOnBehalfByName + CreatedOnBehalfByName StringType @@ -291606,12 +340414,12 @@ false 0 - 320 + 513 - 538f333c-de7a-4f4f-8e38-4288cf69ea60 + e6e65ae4-4d5d-4bf9-9819-5f329fb54046 - modifiedonbehalfby + createdonbehalfby String false false @@ -291619,9 +340427,9 @@ false canmodifyadditionalsettings - true + false - 16 + 142 1900-01-01T00:00:00 @@ -291632,7 +340440,7 @@ - solutioncomponent + systemuser @@ -291682,14 +340490,14 @@ false false - modifiedonbehalfbyyominame + createdonbehalfbyyominame 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ModifiedOnBehalfByYomiName + CreatedOnBehalfByYomiName StringType @@ -291701,80 +340509,94 @@ Text Auto 100 - modifiedonbehalfbyname + createdonbehalfbyname Text false 0 - 320 + 513 - - eeb32821-0443-4fc0-b97e-b96c232306bf + + f8a1adb1-7050-4d03-ac8a-757bc97655c1 - Uniqueidentifier + Boolean false false false false canmodifyadditionalsettings - true + false - 5 + 131 1900-01-01T00:00:00 - b1bc74ca-2e86-4519-a96c-38e676437660 + 8e4fa9d9-e34c-41f0-a210-0417937907a2 true - Unique identifier of the object with which the component is associated. + Indicates if default outlook filters have been populated. 1033 + + 8e72b256-13af-49f6-bd49-8b594eea989c + + true + Angiver, om standardfiltrene i Outlook er blevet udfyldt. + 1030 + - b1bc74ca-2e86-4519-a96c-38e676437660 + 8e4fa9d9-e34c-41f0-a210-0417937907a2 true - Unique identifier of the object with which the component is associated. + Indicates if default outlook filters have been populated. 1033 - 52fa460f-97e0-492f-b8df-d816c56e7a67 + 230df6a5-17c4-426a-a4b9-3f6a1c01357f true - Regarding + Default Filters Populated 1033 + + 3dbdd883-601f-4390-bcb2-64f313df2f9f + + true + Standardfiltre er udfyldt + 1030 + - 52fa460f-97e0-492f-b8df-d816c56e7a67 + 230df6a5-17c4-426a-a4b9-3f6a1c01357f true - Regarding + Default Filters Populated 1033 - solutioncomponent + systemuser - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -291805,35 +340627,163 @@ canmodifysearchsettings false - true + false false false true - true + false true - objectid + defaultfilterspopulated 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - ObjectId + DefaultFiltersPopulated - UniqueidentifierType + BooleanType 5.0.0.0 false - + 0 + false + + b48fa5ed-d721-418c-8569-88497f700ec7 + + + + + 68a96b17-dde1-466c-8bdd-ff9c11945ba2 + + true + Indicates if default outlook filters have been populated. + 1033 + + + a05dbd5f-9e33-41a0-8e61-a1563af871b3 + + true + Angiver, om standardfiltrene i Outlook er blevet udfyldt. + 1030 + + + + 68a96b17-dde1-466c-8bdd-ff9c11945ba2 + + true + Indicates if default outlook filters have been populated. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + systemuser_defaultfilterspopulated + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + ce122eaa-8ed1-4f14-be1d-a7bd6741a53d + + true + No + 1033 + + + bb975a1c-c43d-4bb8-ac68-1ecabc8cd4a6 + + true + Nej + 1030 + + + + ce122eaa-8ed1-4f14-be1d-a7bd6741a53d + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 182d9533-d958-4f36-8829-e908b6713093 + + true + Yes + 1033 + + + a914a450-b3cc-4da6-b35c-05d150b09274 + + true + Ja + 1030 + + + + 182d9533-d958-4f36-8829-e908b6713093 + + true + Yes + 1033 + + + + 1 + + + + + 0 - - a9a8594c-dab3-4f3a-9c19-6338009fc1a4 + + 7d315d9b-6eb3-46bc-9d72-9e22adf97c9a - Picklist + Lookup false false false @@ -291842,50 +340792,64 @@ canmodifyadditionalsettings true - 21 + 155 1900-01-01T00:00:00 - 834dbd4a-c7b8-4e25-acd4-f3d9840edd91 + 9ac4b011-8b7c-e011-b3dc-00155d7b4422 true - Indicates the include behavior of the root component. + Select the mailbox associated with this user. 1033 + + 9560ff20-2c7d-4b65-9c00-7edf874c89b1 + + true + Vælg den postkasse, der er tilknyttet denne bruger. + 1030 + - 834dbd4a-c7b8-4e25-acd4-f3d9840edd91 + 9ac4b011-8b7c-e011-b3dc-00155d7b4422 true - Indicates the include behavior of the root component. + Select the mailbox associated with this user. 1033 - 635652a2-2674-44cb-bbde-57b26161425c + 99c4b011-8b7c-e011-b3dc-00155d7b4422 true - Root Component Behavior + Mailbox 1033 + + 92e795f1-b872-4c88-9c5f-9a00337e2d6b + + true + Postkasse + 1030 + - 635652a2-2674-44cb-bbde-57b26161425c + 99c4b011-8b7c-e011-b3dc-00155d7b4422 true - Root Component Behavior + Mailbox 1033 - solutioncomponent + systemuser - false + true canmodifyauditsettings false @@ -291893,7 +340857,7 @@ false iscustomizable - false + true false false @@ -291908,7 +340872,7 @@ false isrenameable - false + true false false @@ -291920,199 +340884,43 @@ false - false + true canmodifysearchsettings - false + true false - false - false + true + true true false true - rootcomponentbehavior + defaultmailbox 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - RootComponentBehavior + DefaultMailbox - PicklistType + LookupType - 8.0.0.0 + 6.0.0.0 false - 0 + - -1 - - 05ba40ed-66eb-4ad2-a634-42abe691b77a - - - - - 5601abf1-ae6e-4c47-9643-f0d9dd562345 - - true - Indicates the include behavior of the root component. - 1033 - - - - 5601abf1-ae6e-4c47-9643-f0d9dd562345 - - true - Indicates the include behavior of the root component. - 1033 - - - - - - 5cb89482-ed73-4ea4-ba9d-1193ed93358b - - true - Include Behavior - 1033 - - - - 5cb89482-ed73-4ea4-ba9d-1193ed93358b - - true - Include Behavior - 1033 - - - - false - - false - iscustomizable - false - - false - true - solutioncomponent_rootcomponentbehavior - Picklist - 8.0.0.0 - - - - - - - - - - - false - true - - - - b670769e-93a4-45a1-8fd1-ce707cda6c4f - - true - Include Subcomponents - 1033 - - - - b670769e-93a4-45a1-8fd1-ce707cda6c4f - - true - Include Subcomponents - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - fba7c61c-9304-4fa6-9b83-8356973ff028 - - true - Do not include subcomponents - 1033 - - - - fba7c61c-9304-4fa6-9b83-8356973ff028 - - true - Do not include subcomponents - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - 52b81c01-0f3a-43ba-895a-b9210a298aa6 - - true - Include As Shell Only - 1033 - - - - 52b81c01-0f3a-43ba-895a-b9210a298aa6 - - true - Include As Shell Only - 1033 - - - - 2 - - - - - - - - 0 - - + None + + mailbox + - - 39aae989-ef63-4215-9453-c63a61badb21 + + fb6cefce-0edf-4a4e-815e-3911fb639fb3 - - Uniqueidentifier + defaultmailbox + String false false false @@ -292121,46 +340929,18 @@ canmodifyadditionalsettings true - 22 + 153 1900-01-01T00:00:00 - - - d503f340-3016-4815-b7a0-d75a6efea73c - - true - The parent ID of the subcomponent, which will be a root - 1033 - - - - d503f340-3016-4815-b7a0-d75a6efea73c - - true - The parent ID of the subcomponent, which will be a root - 1033 - + + - - - d4cc3861-bba2-4afa-b538-ff449fcbd842 - - true - Root Solution Component ID - 1033 - - - - d4cc3861-bba2-4afa-b538-ff449fcbd842 - - true - Root Solution Component ID - 1033 - + + - solutioncomponent + systemuser @@ -292172,7 +340952,7 @@ false iscustomizable - false + true false false @@ -292187,7 +340967,7 @@ false isrenameable - false + true false false @@ -292199,7 +340979,7 @@ false - false + true canmodifysearchsettings false @@ -292208,82 +340988,107 @@ false true false - true + false - rootsolutioncomponentid + defaultmailboxname 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - RootSolutionComponentId + DefaultMailboxName - UniqueidentifierType + StringType - 8.0.0.0 - false - + 6.0.0.0 + true + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 200 - - 4a087014-30df-4316-8ef6-2e85c4a50798 + + 9352718f-0103-435c-829d-126e5f2ce566 - Uniqueidentifier + String false false false false canmodifyadditionalsettings - true + false - 1 + 181 1900-01-01T00:00:00 - a6b008b3-0b47-41bb-937b-0aa1ed590646 + 43c24605-9fc2-46b9-934c-cfa097c59603 true - Unique identifier of the solution component. + Type a default folder name for the user's OneDrive For Business location. 1033 + + 141cc99c-7080-41c3-bd39-a101ac52b475 + + true + Angiv et standardmappenavn for brugerens placering af OneDrive for Business. + 1030 + - a6b008b3-0b47-41bb-937b-0aa1ed590646 + 43c24605-9fc2-46b9-934c-cfa097c59603 true - Unique identifier of the solution component. + Type a default folder name for the user's OneDrive For Business location. 1033 - a916e8b3-9cc4-4100-8e1a-0c7b4d0fc016 + 8f097513-8cce-47bc-ab47-d2693c48c15a true - Solution Component Identifier + Default OneDrive for Business Folder Name 1033 + + c7434a7f-b856-4389-bd8e-014c680e2feb + + true + Standard mappenavn for OneDrive for Business + 1030 + - a916e8b3-9cc4-4100-8e1a-0c7b4d0fc016 + 8f097513-8cce-47bc-ab47-d2693c48c15a true - Solution Component Identifier + Default OneDrive for Business Folder Name 1033 - solutioncomponent + systemuser - false + true canmodifyauditsettings false @@ -292301,7 +341106,7 @@ false true - true + false false false @@ -292320,37 +341125,48 @@ false canmodifysearchsettings - false + true false - false - false + true + true true false true - solutioncomponentid - 1900-01-01T00:00:00 + defaultodbfoldername + 2025-11-06T00:19:20.5270016 false canmodifyrequirementlevelsettings SystemRequired - SolutionComponentId + DefaultOdbFolderName - UniqueidentifierType + StringType - 5.0.0.0 + 8.0.0.0 false - + 0 + Text + Active + 200 + + + Text + + + false + 0 + 400 - - 254e7c39-2d56-4c74-8a22-7efd16259ecc + + 4f491248-6853-4428-98b7-e0446d6b7a01 - Lookup + Picklist false false false @@ -292359,46 +341175,46 @@ canmodifyadditionalsettings true - 3 - 1900-01-01T00:00:00 + 10000 + 2025-11-06T02:05:46.44 - c332260a-43e2-4951-a20a-ef07ddc74006 + a7b2aaef-c3d9-4753-a067-0d6493027097 true - Unique identifier of the solution. + User delete state 1033 - c332260a-43e2-4951-a20a-ef07ddc74006 + a7b2aaef-c3d9-4753-a067-0d6493027097 true - Unique identifier of the solution. + User delete state 1033 - 08811244-cb9f-45dd-855c-c10042450db0 + fccdbb53-a93b-4d38-abc0-edb2861ec705 true - Solution + Deleted State 1033 - 08811244-cb9f-45dd-855c-c10042450db0 + fccdbb53-a93b-4d38-abc0-edb2861ec705 true - Solution + Deleted State 1033 - solutioncomponent + systemuser @@ -292410,7 +341226,7 @@ false iscustomizable - false + true false false @@ -292425,7 +341241,7 @@ false isrenameable - false + true false false @@ -292437,43 +341253,166 @@ false - false + true canmodifysearchsettings true - true + false true true true - true + false true - solutionid - 1900-01-01T00:00:00 + deletedstate + 2025-11-06T02:05:46.44 false canmodifyrequirementlevelsettings - None + SystemRequired - SolutionId + DeletedState - LookupType + PicklistType - 5.0.0.0 + 9.2.0.0 false - - - None - - solution - + 0 + + 0 + + 9960d714-b5ba-f011-bbd3-7c1e52365f30 + + + + + 9b60d714-b5ba-f011-bbd3-7c1e52365f30 + + true + User delete state. + 1033 + + + + 9b60d714-b5ba-f011-bbd3-7c1e52365f30 + + true + User delete state. + 1033 + + + + + + 9a60d714-b5ba-f011-bbd3-7c1e52365f30 + + true + Delete State + 1033 + + + + 9a60d714-b5ba-f011-bbd3-7c1e52365f30 + + true + Delete State + 1033 + + + + false + + false + iscustomizable + false + + false + true + systemuser_deletestate + Picklist + 9.2.0.0 + + + + + + + + + + + false + true + + + + 17e42f30-ecbc-417c-b1b2-b251d3da2fdb + + true + Not deleted + 1033 + + + + 17e42f30-ecbc-417c-b1b2-b251d3da2fdb + + true + Not deleted + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 862ede6f-ddb7-4a96-a37f-518a14df36d0 + + true + Soft deleted + 1033 + + + + 862ede6f-ddb7-4a96-a37f-518a14df36d0 + + true + Soft deleted + 1033 + + + + 1 + + + + + + + + 0 + + - - 8b9e0162-258a-41b1-ba27-00ce8ff8e4e0 + + 52516c49-2467-447e-a0e9-52b3ee920fa3 - solutionid - String + deletedstate + Virtual false false false @@ -292482,8 +341421,8 @@ canmodifyadditionalsettings true - 11 - 1900-01-01T00:00:00 + 10001 + 2025-11-06T02:05:46.4870016 @@ -292493,11 +341432,11 @@ - solutioncomponent + systemuser - false + true canmodifyauditsettings false @@ -292505,7 +341444,7 @@ false iscustomizable - false + true false false @@ -292520,7 +341459,7 @@ false isrenameable - false + true false false @@ -292532,7 +341471,7 @@ false - false + true canmodifysearchsettings false @@ -292543,71 +341482,102 @@ false false - solutionidname - 1900-01-01T00:00:00 + deletedstatename + 2025-11-06T02:05:46.4870016 - false + true canmodifyrequirementlevelsettings None - SolutionIdName + deletedstateName - StringType + VirtualType - 5.0.0.0 + 9.2.0.0 true - 0 - - Text - Auto - 256 - - - Text - - - false - 0 - 512 + + - - 29805ba3-41a8-11dd-9bde-0019b9312238 + + 2c2887f8-339b-4ca8-b526-181654ec10a4 - BigInt + String false false false false canmodifyadditionalsettings - true + false - 7 + 28 1900-01-01T00:00:00 - - + + + c563cfee-2241-db11-898a-0007e9e17ebd + + true + Reason for disabling the user. + 1033 + + + ca376108-fcd3-4f0c-bc37-25c0e3f89582 + + true + Årsag til deaktivering af brugeren. + 1030 + + + + c563cfee-2241-db11-898a-0007e9e17ebd + + true + Reason for disabling the user. + 1033 + - - + + + c463cfee-2241-db11-898a-0007e9e17ebd + + true + Disabled Reason + 1033 + + + 345eaf9a-4a69-4dd7-8e03-cf878d4f27ed + + true + Årsag til deaktivering + 1030 + + + + c463cfee-2241-db11-898a-0007e9e17ebd + + true + Disabled Reason + 1033 + - solutioncomponent + systemuser - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -292645,747 +341615,97 @@ false true - versionnumber + disabledreason 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - VersionNumber + DisabledReason - BigIntType + StringType 5.0.0.0 false - + 0 - 9223372036854775807 - -9223372036854775808 + Text + Auto + 500 + + + Text + + + false + 0 + 1000 - - false - false - false - - false - canbeincustomentityassociation - false - - - false - canbeinmanytomany - false - - - false - canbeprimaryentityinrelationship - false - - - false - canberelatedentityinrelationship - false - - true - - false - canchangetrackingbeenabled - false - - - false - cancreateattributes - false - - - false - cancreatecharts - false - - - false - cancreateforms - false - - - false - cancreateviews - false - - - false - canenablesynctoexternalsearchindex - false - - - true - canmodifyadditionalsettings - false - - false - false - Local - 1900-01-01T00:00:00 - - - false - - - - 807ce328-1d61-4e28-86bc-b93599d4f0f2 - - true - A component of a CRM solution. - 1033 - - - - 807ce328-1d61-4e28-86bc-b93599d4f0f2 - - true - A component of a CRM solution. - 1033 - - - - - - a125d91d-abd9-42f9-9ad3-8385536bdd2e - - true - Solution Components - 1033 - - - - a125d91d-abd9-42f9-9ad3-8385536bdd2e - - true - Solution Components - 1033 - - - - - - 19e9b518-819c-46e7-b17c-061c200ae31d - - true - Solution Component - 1033 - - - - 19e9b518-819c-46e7-b17c-061c200ae31d - - true - Solution Component - 1033 - - - false - - false - false - false - false - - - - - false - false - false - false - - false - canmodifyauditsettings - false - - true - false - false - - false - canmodifyconnectionsettings - false - - false - - false - iscustomizable - false - - false - false - - false - canmodifyduplicatedetectionsettings - false - - false - false - false - false - false - false - false - - false - canmodifymailmergesettings - false - - true - - false - ismappable - false - - false - false - - false - canmodifymobileclientreadonly - false - - true - - false - isrenameable - false - - false - false - false - false - false - false - - false - canmodifyqueuesettings - false - - - false - canmodifymobilevisibility - false - - - false - canmodifymobileclientvisibility - false - - solutioncomponent - - - - 2749fcdd-997a-453c-95af-49f958325e52 - - false - - false - iscustomizable - false - - true - true - lk_solutioncomponentbase_modifiedonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_solutioncomponentbase_modifiedonbehalfby - modifiedonbehalfby - solutioncomponent - modifiedonbehalfby - - 0 - - - 8d9edfc6-0ae5-43a8-b9b9-36555fba5f17 - - false - - false - iscustomizable - false - - true - true - lk_solutioncomponentbase_createdonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_solutioncomponentbase_createdonbehalfby - createdonbehalfby - solutioncomponent - createdonbehalfby - - 0 - - - 4806d7ef-850b-4c19-aef6-270b51492bb6 - - false - - false - iscustomizable - false - - true - true - solution_solutioncomponent - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - Cascade - Cascade - NoCascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - solutionid - solution - solution_solutioncomponent - solutionid - solutioncomponent - solutionid - - 0 - - - 71b32923-ef3d-40b2-b88c-4e7bf3d46248 - - false - - false - iscustomizable - false - - true - true - solutioncomponent_parent_solutioncomponent - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - Cascade - Cascade - NoCascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - solutioncomponentid - solutioncomponent - solutioncomponent_parent_solutioncomponent - rootsolutioncomponentid - solutioncomponent - rootsolutioncomponentid_solutioncomponent - - 0 - - - 1900-01-01T00:00:00 - 7103 - - - 307d66c1-8f75-4267-8553-d51e8ee94954 - - false - - false - iscustomizable - false - - true - false - userentityinstancedata_solutioncomponent - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - solutioncomponentid - solutioncomponent - userentityinstancedata_solutioncomponent - objectid - userentityinstancedata - objectid_solutioncomponent - - 0 - - - 71b32923-ef3d-40b2-b88c-4e7bf3d46248 - - false - - false - iscustomizable - false - - true - true - solutioncomponent_parent_solutioncomponent - None - 8.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - Cascade - Cascade - NoCascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - solutioncomponentid - solutioncomponent - solutioncomponent_parent_solutioncomponent - rootsolutioncomponentid - solutioncomponent - rootsolutioncomponentid_solutioncomponent - - 0 - - - - 8 - None - - solutioncomponentid - - solutioncomponentid - - - - - false - false - false - true - false - false - false - prvCreateSolution - 14dd992d-2858-4547-91e9-139ca92d3932 - Create - - - false - false - false - true - false - false - false - prvReadSolution - b64e92c8-5d2a-4052-a026-1b73eff9cebf - Read - - - false - false - false - true - false - false - false - prvWriteSolution - bfab24a8-3987-40ec-9828-8cfa938ee756 - Write - - - false - false - false - true - false - false - false - prvDeleteSolution - 9ef73297-f404-4630-ad16-7340265c6d08 - Delete - - - false - false - false - true - false - false - false - prvAppendSolution - ccea7ff5-5e26-4aed-94a4-fcc2d9733f3a - Append - - - false - false - false - true - false - false - false - prvAppendToSolution - a264eaae-0c71-4370-99d9-4986b33bab60 - AppendTo - - - - FilteredSolutionComponent - SolutionComponent - - - false - Standard - false - 5.0.0.0 - - - false - canchangehierarchicalrelationship - false - - - false - SolutionComponents - - - true - - solutioncomponentss - 0 - solutioncomponents - false - - true - canmodifymobileclientoffline - false - - false - false - - false - false - - - - systemuser - - 60696d5d-4d78-4712-b4e0-6cbef3df4906 - - 0 - - - aad86649-236c-48a3-95ef-de93c679cae0 + + 31338df8-9d44-4561-9f43-b5e4528b52c3 - Picklist + Boolean false false false false canmodifyadditionalsettings - true + false - 113 + 100 1900-01-01T00:00:00 - aad86649-236c-48a3-95ef-de93c679cae1 + 411c9b1e-2341-db11-898a-0007e9e17ebd true - Type of user. + Whether to display the user in service views. 1033 + + 8da92093-35db-424d-b021-0313f404790b + + true + Angiver, om brugeren skal vises i servicevisninger. + 1030 + - aad86649-236c-48a3-95ef-de93c679cae1 + 411c9b1e-2341-db11-898a-0007e9e17ebd true - Type of user. + Whether to display the user in service views. 1033 - aad86649-236c-48a3-95ef-de93c679cae8 + 401c9b1e-2341-db11-898a-0007e9e17ebd true - Access Mode + Display in Service Views 1033 + + bd59a5ac-b01b-47e1-bf3f-c0b1be18378c + + true + Vis i servicevisninger + 1030 + - aad86649-236c-48a3-95ef-de93c679cae8 + 401c9b1e-2341-db11-898a-0007e9e17ebd true - Access Mode + Display in Service Views 1033 @@ -293404,7 +341724,7 @@ true false - true + false true canmodifyglobalfiltersettings @@ -293416,7 +341736,7 @@ false isrenameable - true + false false false @@ -293428,70 +341748,84 @@ false - true + false canmodifysearchsettings - true + false true - true - true + false + false true true true - accessmode + displayinserviceviews 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - AccessMode + DisplayInServiceViews - PicklistType + BooleanType 5.0.0.0 false 0 - 0 + false - ca538ac5-66da-4b2c-90be-63f398e406c3 + 8df1fb85-5380-4e6e-b600-3a8e5186debb - d8447b22-ea2e-4bb2-ad93-72d54dab179d + ec112ac3-2b2a-449d-9787-02a9af2cb85c true - Type of user. + Whether to display the user in service views. 1033 + + 5f5e797a-6fde-4f80-ad6a-76ed83a7567d + + true + Angiver, om brugeren skal vises i servicevisninger. + 1030 + - d8447b22-ea2e-4bb2-ad93-72d54dab179d + ec112ac3-2b2a-449d-9787-02a9af2cb85c true - Type of user. + Whether to display the user in service views. 1033 - 9d7dcca7-c926-470e-821c-0c3a0e74b00f + b1f72e1f-6493-446b-96d0-0f041fd14d7e true - Access Mode + Display in Service Views 1033 + + 3ba18d05-b604-4d04-8e4f-3baf33252c30 + + true + Vis i servicevisninger + 1030 + - 9d7dcca7-c926-470e-821c-0c3a0e74b00f + b1f72e1f-6493-446b-96d0-0f041fd14d7e true - Access Mode + Display in Service Views 1033 @@ -293500,317 +341834,102 @@ false iscustomizable - false + true false true - systemuser_accessmode - Picklist + systemuser_displayinserviceviews + Boolean 5.0.0.0 - - - - - - - - - - - false - true - - - - aad86649-236c-48a3-95ef-de93c679cae3 - - true - Read-Write - 1033 - - - - aad86649-236c-48a3-95ef-de93c679cae3 - - true - Read-Write - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - aad86649-236c-48a3-95ef-de93c679cae5 - - true - Administrative - 1033 - - - - aad86649-236c-48a3-95ef-de93c679cae5 - - true - Administrative - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - aad86649-236c-48a3-95ef-de93c679cae7 - - true - Read - 1033 - - - - aad86649-236c-48a3-95ef-de93c679cae7 - - true - Read - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - dd6ae700-9b9a-4771-981a-8707e9d66942 - - true - Support User - 1033 - - - - dd6ae700-9b9a-4771-981a-8707e9d66942 - - true - Support User - 1033 - - - - 3 - - - - - - - - - - - - false - true - - - - d3861744-d0d7-4287-beae-0576e25a9da1 - - true - Non-interactive - 1033 - - - - d3861744-d0d7-4287-beae-0576e25a9da1 + + + + + + + + + + false + true + + + + 431c9b1e-2341-db11-898a-0007e9e17ebd - true - Non-interactive - 1033 - - - - 4 - - - - - - - - - - - - false - true - - - - 4ab8ceee-3b26-4b66-a14f-1ed66c858054 - - true - Delegated Admin - 1033 - - - - 4ab8ceee-3b26-4b66-a14f-1ed66c858054 + true + No + 1033 + + + b25062f9-617d-41f6-9513-e213e837b81c - true - Delegated Admin - 1033 - - - - 5 - - - - - - - - 0 - - - - - abd86649-236c-48a3-95ef-de93c679cae0 - - accessmode - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 119 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - accessmodename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - AccessModeName - - - VirtualType - - 5.0.0.0 - true - - + true + Nej + 1030 + + + + 431c9b1e-2341-db11-898a-0007e9e17ebd + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 451c9b1e-2341-db11-898a-0007e9e17ebd + + true + Yes + 1033 + + + cf658679-ea42-47e3-899f-a34d569cdbf6 + + true + Ja + 1030 + + + + 451c9b1e-2341-db11-898a-0007e9e17ebd + + true + Yes + 1033 + + + + 1 + + + + + 0 - b04c35ca-4588-4c35-b6fa-68996cd47b39 + 668c1ac8-e82d-4d55-ae5d-257758b4cf2e - - Uniqueidentifier + displayinserviceviews + Virtual false false false @@ -293819,44 +341938,16 @@ canmodifyadditionalsettings false - 102 + 108 1900-01-01T00:00:00 - - - 75cfe1dc-2241-db11-898a-0007e9e17ebd - - true - Active Directory object GUID for the system user. - 1033 - - - - 75cfe1dc-2241-db11-898a-0007e9e17ebd - - true - Active Directory object GUID for the system user. - 1033 - + + - - - f788c8c3-7ff3-4ccc-8b7f-6b9db8d95898 - - true - Active Directory Guid - 1033 - - - - f788c8c3-7ff3-4ccc-8b7f-6b9db8d95898 - - true - Active Directory Guid - 1033 - + + systemuser @@ -293904,76 +341995,90 @@ false false false - false + true false false - activedirectoryguid + displayinserviceviewsname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - ActiveDirectoryGuid + DisplayInServiceViewsName - UniqueidentifierType + VirtualType 5.0.0.0 - false + true - - 4bba3cfe-f922-42ab-8751-fa4a137d6dec + + c755a6f7-d7a3-4bb1-b9aa-3a60f6d9082a - Uniqueidentifier + String false false false false canmodifyadditionalsettings - false + true - 41 + 24 1900-01-01T00:00:00 - 24abc7f4-2241-db11-898a-0007e9e17ebd + d790aa12-2341-db11-898a-0007e9e17ebd true - Unique identifier for address 1. + Active Directory domain of which the user is a member. 1033 + + b7c00b25-e039-4ee2-ad2c-24a5b24f928d + + true + Det Active Directory-domæne, som brugeren er medlem af. + 1030 + - 24abc7f4-2241-db11-898a-0007e9e17ebd + d790aa12-2341-db11-898a-0007e9e17ebd true - Unique identifier for address 1. + Active Directory domain of which the user is a member. 1033 - 23abc7f4-2241-db11-898a-0007e9e17ebd + d690aa12-2341-db11-898a-0007e9e17ebd true - Address 1: ID + User Name 1033 + + f0278d79-665e-4fa9-a9d9-d227cd1d3386 + + true + Brugernavn + 1030 + - 23abc7f4-2241-db11-898a-0007e9e17ebd + d690aa12-2341-db11-898a-0007e9e17ebd true - Address 1: ID + User Name 1033 @@ -293981,15 +342086,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -293999,12 +342104,12 @@ false true - true + false false false isrenameable - false + true false false @@ -294016,36 +342121,47 @@ false - false + true canmodifysearchsettings - false + true true - false - false + true + true true true true - address1_addressid + domainname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - Address1_AddressId + DomainName - UniqueidentifierType + StringType 5.0.0.0 - true - + false + 0 + Text + Auto + 1024 + + + Text + + + false + 0 + 2048 - 589b85ed-7b99-42ba-a760-761ec2ac48c7 + bc27039a-6544-48fd-ae75-23da93fb963b Picklist @@ -294055,44 +342171,58 @@ false canmodifyadditionalsettings - false + true - 42 + 143 1900-01-01T00:00:00 - a1d7a218-2341-db11-898a-0007e9e17ebd + cac7274d-aa1f-4c49-91f3-c052bf81aa5c true - Type of address for address 1, such as billing, shipping, or primary address. + Shows the status of the primary email address. 1033 + + 1e651820-45fe-4c1d-89a2-d93e29fed28b + + true + Viser statussen for den primære e-mail-adresse. + 1030 + - a1d7a218-2341-db11-898a-0007e9e17ebd + cac7274d-aa1f-4c49-91f3-c052bf81aa5c true - Type of address for address 1, such as billing, shipping, or primary address. + Shows the status of the primary email address. 1033 - a0d7a218-2341-db11-898a-0007e9e17ebd + 86af2b62-33f2-4748-af08-60fbaaa97fdf true - Address 1: Address Type + Primary Email Status 1033 + + 1cbc452b-d04e-4182-90f9-e000b3e9399f + + true + Status for primær e-mail-adresse + 1030 + - a0d7a218-2341-db11-898a-0007e9e17ebd + 86af2b62-33f2-4748-af08-60fbaaa97fdf true - Address 1: Address Type + Primary Email Status 1033 @@ -294123,7 +342253,7 @@ false isrenameable - false + true false false @@ -294135,70 +342265,84 @@ false - false + true canmodifysearchsettings - false + true - true - false - false + false + true + true true true true - address1_addresstypecode + emailrouteraccessapproval 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - Address1_AddressTypeCode + EmailRouterAccessApproval PicklistType 5.0.0.0 - true + false 0 - 1 + 0 - 21aeabcf-89ea-4aba-88b2-b157262e2899 + 9b3912dc-d7cb-4af7-919c-18428fa61a1b - 276a615d-3974-447b-8698-375fe39abd50 + c4c1339a-2c8f-4030-9fd8-6b82d5ccce16 true - Type of address for address 1, such as billing, shipping, or primary address. + Indicates the approval options for server-side synchronization or Email Router access. 1033 + + fc67d205-2fc1-4f66-a356-4c37b1d6d1ef + + true + Angiver godkendelsesindstillingerne for synkronisering på serversiden eller adgang til E-mail Router. + 1030 + - 276a615d-3974-447b-8698-375fe39abd50 + c4c1339a-2c8f-4030-9fd8-6b82d5ccce16 true - Type of address for address 1, such as billing, shipping, or primary address. + Indicates the approval options for server-side synchronization or Email Router access. 1033 - 6064183a-e163-4caf-81ec-5af467412c36 + 3eb57a71-5c8d-40b5-bafa-3a9fa81e27ba true - Address 1: Address Type + Shows whether the email address is approved for each mailbox for processing email through server-side synchronization or the Email Router. 1033 + + 6fb1b143-cd99-4ffd-88f2-96dbbd7ff87a + + true + Viser, om e-mail-adressen er godkendt for hver postkasse til behandling af mail via synkronisering på serversiden eller E-mail Router. + 1030 + - 6064183a-e163-4caf-81ec-5af467412c36 + 3eb57a71-5c8d-40b5-bafa-3a9fa81e27ba true - Address 1: Address Type + Shows whether the email address is approved for each mailbox for processing email through server-side synchronization or the Email Router. 1033 @@ -294207,11 +342351,11 @@ false iscustomizable - true + false false true - systemuser_address1_addresstypecode + systemuser_emailrouteraccessapproval Picklist 5.0.0.0 @@ -294229,18 +342373,65 @@ - a3d7a218-2341-db11-898a-0007e9e17ebd + cfee0f53-4996-4127-8391-d0ad99e3c0f7 true - Default Value + Empty 1033 + + b1037abb-677d-4d99-9dca-28a52ca28a79 + + true + Tom + 1030 + - a3d7a218-2341-db11-898a-0007e9e17ebd + cfee0f53-4996-4127-8391-d0ad99e3c0f7 true - Default Value + Empty + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 3b61f5a1-508c-4df7-99c3-f4deb8c6575a + + true + Approved + 1033 + + + 914b2ffe-dcfe-4d7d-96ee-7f05f241a7af + + true + Godkendt + 1030 + + + + 3b61f5a1-508c-4df7-99c3-f4deb8c6575a + + true + Approved 1033 @@ -294248,6 +342439,86 @@ 1 + + + + + + + + + + false + true + + + + 8e94d92e-a921-49db-b37a-283e95f6c84d + + true + Pending Approval + 1033 + + + 579a68af-854a-4694-9a1e-6e27293dd58d + + true + Afventer godkendelse + 1030 + + + + 8e94d92e-a921-49db-b37a-283e95f6c84d + + true + Pending Approval + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 5fb37369-bf1b-41b3-8b09-a009a1d5e495 + + true + Rejected + 1033 + + + 0d5d7650-dcaf-4869-ae72-8c1ee1819b7a + + true + Afvist + 1030 + + + + 5fb37369-bf1b-41b3-8b09-a009a1d5e495 + + true + Rejected + 1033 + + + + 3 + + @@ -294258,9 +342529,9 @@ - 096685d0-a12f-4275-9d3f-35f35c15c638 + 4ed86966-18a2-4c24-8876-f76bdf9a9535 - address1_addresstypecode + emailrouteraccessapproval Virtual false false @@ -294270,7 +342541,7 @@ canmodifyadditionalsettings false - 96 + 144 1900-01-01T00:00:00 @@ -294331,14 +342602,14 @@ false false - address1_addresstypecodename + emailrouteraccessapprovalname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Address1_AddressTypeCodeName + EmailRouterAccessApprovalName VirtualType @@ -294349,54 +342620,68 @@ - 0ffdc7bf-3d61-4129-86ae-5954b8b969d6 + 8afc8108-1b39-4e02-aa03-6e55a7c3b7ef String - true - true - true + false + false + false false canmodifyadditionalsettings true - 47 + 32 1900-01-01T00:00:00 - 88dfeed0-2241-db11-898a-0007e9e17ebd + 7f1ed7e8-2241-db11-898a-0007e9e17ebd true - City name for address 1. + Employee identifier for the user. 1033 + + 47c5cdd3-2c39-4bc5-a871-564f3dcc892f + + true + Brugerens medarbejder-id. + 1030 + - 88dfeed0-2241-db11-898a-0007e9e17ebd + 7f1ed7e8-2241-db11-898a-0007e9e17ebd true - City name for address 1. + Employee identifier for the user. 1033 - 87dfeed0-2241-db11-898a-0007e9e17ebd + 7e1ed7e8-2241-db11-898a-0007e9e17ebd true - City + Employee 1033 + + 45b3ad76-8a71-405b-8742-2fe16913e535 + + true + Medarbejder + 1030 + - 87dfeed0-2241-db11-898a-0007e9e17ebd + 7e1ed7e8-2241-db11-898a-0007e9e17ebd true - City + Employee 1033 @@ -294450,25 +342735,25 @@ true true - address1_city + employeeid 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - Address1_City + EmployeeId StringType 5.0.0.0 - true + false 0 Text - Active - 128 + Auto + 100 Text @@ -294476,57 +342761,71 @@ false 0 - 256 + 200 - - 3fd17209-fcdc-4f70-bc24-de550d5f9e2d + + f8b8490a-830b-4bd4-8b79-532461f48f6d - - Memo + entityimageid + Virtual false - true + false false false canmodifyadditionalsettings - true + false - 161 + 158 1900-01-01T00:00:00 - 6e427029-2a87-45e6-8851-858dcb86ff16 + a1baf164-f532-4986-9d7e-4837ef0b6bc0 true - Shows the complete primary address. + Shows the default image for the record. 1033 + + 17df3c5c-8300-4a9a-b4b5-05c3da53ace6 + + true + Viser postens standardbillede. + 1030 + - 6e427029-2a87-45e6-8851-858dcb86ff16 + a1baf164-f532-4986-9d7e-4837ef0b6bc0 true - Shows the complete primary address. + Shows the default image for the record. 1033 - 722e3c7c-5e5f-45b5-9505-4bf7770f1f97 + e4407a7b-0bc7-4833-a64a-fe1a4dec3523 true - Address + Entity Image 1033 + + 3aaef153-4809-42ac-a3f2-0b0f261eb49a + + true + Objektbillede + 1030 + - 722e3c7c-5e5f-45b5-9505-4bf7770f1f97 + e4407a7b-0bc7-4833-a64a-fe1a4dec3523 true - Address + Entity Image 1033 @@ -294536,7 +342835,7 @@ true canmodifyauditsettings - true + false false @@ -294569,106 +342868,76 @@ false - true + false canmodifysearchsettings - true + false - false - true - true + true + false + false true - false + true true - address1_composite + entityimage 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - Address1_Composite + EntityImage - - MemoType + + ImageType 6.0.0.0 true - TextArea - Active - 1000 - - TextArea - - false + false + true + 144 + 10240 + 144 - - 0d241c8c-366a-4a6d-8d1a-d61082117ae9 + + c624dd04-573d-409a-8d96-c479d85a99d6 - - String - true - true - true + entityimageid + BigInt + false + false + false false canmodifyadditionalsettings - true + false - 50 + 164 1900-01-01T00:00:00 - - - 2c53c2fa-2241-db11-898a-0007e9e17ebd - - true - Country/region name in address 1. - 1033 - - - - 2c53c2fa-2241-db11-898a-0007e9e17ebd - - true - Country/region name in address 1. - 1033 - + + - - - 2b53c2fa-2241-db11-898a-0007e9e17ebd - - true - Country/Region - 1033 - - - - 2b53c2fa-2241-db11-898a-0007e9e17ebd - - true - Country/Region - 1033 - + + systemuser - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -294683,7 +342952,7 @@ false isrenameable - true + false false false @@ -294695,102 +342964,65 @@ false - true + false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true + false true - address1_country + entityimage_timestamp 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - Address1_Country + EntityImage_Timestamp - StringType + BigIntType - 5.0.0.0 + 6.0.0.0 true - 0 + - Text - Active - 128 - - - Text - - - false - 0 - 256 + 9223372036854775807 + -9223372036854775808 - f52b185f-7d02-4200-bb37-5a11a8c6ff33 + 6f321e36-c242-4d35-84c8-9d3605ec16b9 - + entityimageid String - true - true - true + false + false + false false canmodifyadditionalsettings - true + false - 49 + 159 1900-01-01T00:00:00 - - - 559aba00-2341-db11-898a-0007e9e17ebd - - true - County name for address 1. - 1033 - - - - 559aba00-2341-db11-898a-0007e9e17ebd - - true - County name for address 1. - 1033 - + + - - - 549aba00-2341-db11-898a-0007e9e17ebd - - true - Address 1: County - 1033 - - - - 549aba00-2341-db11-898a-0007e9e17ebd - - true - Address 1: County - 1033 - + + systemuser - true + false canmodifyauditsettings true @@ -294798,7 +343030,7 @@ false iscustomizable - true + false false false @@ -294813,10 +343045,10 @@ false isrenameable - true + false false - false + true false false @@ -294825,94 +343057,108 @@ false - true + false canmodifysearchsettings false - true - true - true + false + false + false true - true + false true - address1_county + entityimage_url 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - Address1_County + EntityImage_URL StringType - 5.0.0.0 + 6.0.0.0 true 0 - Text - Active - 128 + Url + Disabled + 200 - Text + Url false 0 - 256 + 400 - - 0be7bc5b-d483-47aa-9abd-9bed5ca9d0ed + + 532d0282-e5a1-412d-9a35-ed208b99a54d - String - true - true - true + Uniqueidentifier + false + false + false false canmodifyadditionalsettings - true + false - 61 + 157 1900-01-01T00:00:00 - a64901bf-2241-db11-898a-0007e9e17ebd + 07c9c052-def8-4a50-a342-d5f8d024abcc true - Fax number for address 1. + For internal use only. 1033 + + cbc2c404-a08d-4a89-bd30-d0804c03966b + + true + Kun til intern brug. + 1030 + - a64901bf-2241-db11-898a-0007e9e17ebd + 07c9c052-def8-4a50-a342-d5f8d024abcc true - Fax number for address 1. + For internal use only. 1033 - a54901bf-2241-db11-898a-0007e9e17ebd + 7b9ab27f-eb7c-45f2-8cc6-3d84068f77cc true - Address 1: Fax + Entity Image Id 1033 + + 32efe38a-dde5-4816-b21a-5f3180f2e2d7 + + true + Id for objektbillede + 1030 + - a54901bf-2241-db11-898a-0007e9e17ebd + 7b9ab27f-eb7c-45f2-8cc6-3d84068f77cc true - Address 1: Fax + Entity Image Id 1033 @@ -294920,7 +343166,7 @@ - true + false canmodifyauditsettings true @@ -294928,7 +343174,7 @@ false iscustomizable - true + false false false @@ -294943,7 +343189,7 @@ false isrenameable - true + false false false @@ -294955,94 +343201,97 @@ false - true + false canmodifysearchsettings false - true - true - true + false + false + false true - true + false true - address1_fax + entityimageid 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - Address1_Fax + EntityImageId - StringType + UniqueidentifierType - 5.0.0.0 - true - 0 + 6.0.0.0 + false + - Text - Inactive - 64 - - - Text - - - false - 0 - 128 - - b55178f8-886e-4fcf-a954-cbb7f5d3c934 + + ba5543fe-02a0-4e6d-81de-2b1bf0ce0e54 - Double - true - true - true + Decimal + false + false + false false canmodifyadditionalsettings true - 55 + 147 1900-01-01T00:00:00 - e164cfee-2241-db11-898a-0007e9e17ebd + c851009c-b2b0-42d6-88b2-64c9dda0b469 true - Latitude for address 1. + Exchange rate for the currency associated with the systemuser with respect to the base currency. 1033 + + 2e1e86da-e821-4166-ac64-489eaef9304e + + true + Valutakurs for den valuta, der er tilknyttet systembrugeren, i forhold til grundvalutaen. + 1030 + - e164cfee-2241-db11-898a-0007e9e17ebd + c851009c-b2b0-42d6-88b2-64c9dda0b469 true - Latitude for address 1. + Exchange rate for the currency associated with the systemuser with respect to the base currency. 1033 - e064cfee-2241-db11-898a-0007e9e17ebd + 0f56db44-6b1a-4f86-b5eb-c33eb5e6964c true - Address 1: Latitude + Exchange Rate 1033 + + 4ee5a794-63aa-410c-b164-ad965302d4fa + + true + Valutakurs + 1030 + - e064cfee-2241-db11-898a-0007e9e17ebd + 0f56db44-6b1a-4f86-b5eb-c33eb5e6964c true - Address 1: Latitude + Exchange Rate 1033 @@ -295087,87 +343336,101 @@ true canmodifysearchsettings - false + true - true + false true true true - true + false true - address1_latitude + exchangerate 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - Address1_Latitude + ExchangeRate - DoubleType + DecimalType 5.0.0.0 - true + false 0 Disabled - 90 - -90 - 5 + 100000000000 + 0.000000000001 + 12 0 - 8717e98d-d9e8-4583-bcb2-3feecef111d1 + 1226c79e-0a50-4b9b-9c15-3f428e1ab151 String - true - true - true + false + false + false false canmodifyadditionalsettings true - 44 + 7 1900-01-01T00:00:00 - 1deaaf0c-2341-db11-898a-0007e9e17ebd + a4e9af0c-2341-db11-898a-0007e9e17ebd true - First line for entering address 1 information. + First name of the user. 1033 + + df37f3c7-1179-4d6e-ac8a-15e65f1a9755 + + true + Brugerens fornavn. + 1030 + - 1deaaf0c-2341-db11-898a-0007e9e17ebd + a4e9af0c-2341-db11-898a-0007e9e17ebd true - First line for entering address 1 information. + First name of the user. 1033 - 1ceaaf0c-2341-db11-898a-0007e9e17ebd + a3e9af0c-2341-db11-898a-0007e9e17ebd true - Street 1 + First Name 1033 + + 0c8dcca2-7ab9-4aef-87f7-093eefbe2bc8 + + true + Fornavn + 1030 + - 1ceaaf0c-2341-db11-898a-0007e9e17ebd + a3e9af0c-2341-db11-898a-0007e9e17ebd true - Street 1 + First Name 1033 @@ -295202,7 +343465,7 @@ false false - false + true false true @@ -295221,25 +343484,25 @@ true true - address1_line1 - 1900-01-01T00:00:00 + firstname + 2025-11-06T00:19:21.9929984 true canmodifyrequirementlevelsettings - None + ApplicationRequired - Address1_Line1 + FirstName StringType 5.0.0.0 - true + false 0 Text Active - 1024 + 256 Text @@ -295247,57 +343510,71 @@ false 0 - 2048 + 512 - 5c7680c6-2bbc-4543-bd4a-57fb7421340e + ffde4a75-024b-4f2a-8df8-90b91dc4d825 String - true - true - true + false + false + false false canmodifyadditionalsettings true - 45 + 12 1900-01-01T00:00:00 - 7c9af6ca-2241-db11-898a-0007e9e17ebd + bf90aa12-2341-db11-898a-0007e9e17ebd true - Second line for entering address 1 information. + Full name of the user. 1033 + + db1df639-8ba0-4d15-b3f3-52b4dace7633 + + true + Brugerens fulde navn. + 1030 + - 7c9af6ca-2241-db11-898a-0007e9e17ebd + bf90aa12-2341-db11-898a-0007e9e17ebd true - Second line for entering address 1 information. + Full name of the user. 1033 - 7b9af6ca-2241-db11-898a-0007e9e17ebd + be90aa12-2341-db11-898a-0007e9e17ebd true - Street 2 + Full Name 1033 + + 09f83d01-24a6-4a91-8b31-191126567f85 + + true + Fulde navn + 1030 + - 7b9af6ca-2241-db11-898a-0007e9e17ebd + be90aa12-2341-db11-898a-0007e9e17ebd true - Street 2 + Full Name 1033 @@ -295324,15 +343601,15 @@ true false - false + true false isrenameable true false - false - false + true + true false true @@ -295344,32 +343621,32 @@ canmodifysearchsettings true - true + false true true true - true + false true - address1_line2 + fullname 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - Address1_Line2 + FullName StringType 5.0.0.0 - true + false 0 Text Active - 1024 + 200 Text @@ -295377,57 +343654,71 @@ false 0 - 2048 + 513 - ec52703d-e8f6-430a-bba9-285c90a9031a + 5bb0e556-34d4-48d5-8965-cde916cc62d5 String - true - true - true + false + false + false false canmodifyadditionalsettings - true + false - 46 + 35 1900-01-01T00:00:00 - 7525e7d6-2241-db11-898a-0007e9e17ebd + d499f6ca-2241-db11-898a-0007e9e17ebd true - Third line for entering address 1 information. + Government identifier for the user. 1033 + + 88517621-f4ce-43bb-9c8e-702115a95493 + + true + Brugerens cpr.nr. + 1030 + - 7525e7d6-2241-db11-898a-0007e9e17ebd + d499f6ca-2241-db11-898a-0007e9e17ebd true - Third line for entering address 1 information. + Government identifier for the user. 1033 - 7425e7d6-2241-db11-898a-0007e9e17ebd + d399f6ca-2241-db11-898a-0007e9e17ebd true - Street 3 + Government 1033 + + 021acfe6-3382-4f87-8612-5a5176cf9abb + + true + Statslig + 1030 + - 7425e7d6-2241-db11-898a-0007e9e17ebd + d399f6ca-2241-db11-898a-0007e9e17ebd true - Street 3 + Government 1033 @@ -295458,7 +343749,7 @@ false isrenameable - true + false false false @@ -295470,36 +343761,36 @@ false - true + false canmodifysearchsettings - true + false true - true - true + false + false true true true - address1_line3 + governmentid 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - Address1_Line3 + GovernmentId StringType 5.0.0.0 - true + false 0 Text - Active - 1024 + Auto + 100 Text @@ -295507,13 +343798,13 @@ false 0 - 2048 + 200 - - a5ca9999-6221-47eb-8e45-b41cc7a3d50a + + e452d9a0-c4d3-4f37-a9f9-d810fa3962f0 - Double + String true true true @@ -295522,167 +343813,56 @@ canmodifyadditionalsettings true - 57 + 19 1900-01-01T00:00:00 - 2854c2fa-2241-db11-898a-0007e9e17ebd + 6440b506-2341-db11-898a-0007e9e17ebd true - Longitude for address 1. + Home phone number for the user. 1033 - - - 2854c2fa-2241-db11-898a-0007e9e17ebd - - true - Longitude for address 1. - 1033 - - - - - 2754c2fa-2241-db11-898a-0007e9e17ebd + 2b72dd95-ccfc-4be1-a0df-025ba572f8b9 true - Address 1: Longitude - 1033 + Brugerens private telefonnummer. + 1030 - 2754c2fa-2241-db11-898a-0007e9e17ebd + 6440b506-2341-db11-898a-0007e9e17ebd true - Address 1: Longitude + Home phone number for the user. 1033 - - systemuser - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - true - true - true - true - true - true - - address1_longitude - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - Address1_Longitude - - - DoubleType - - 5.0.0.0 - true - 0 - - Disabled - 180 - -180 - 5 - - 0 - - - 1e622da5-3412-4075-a13b-5d9d91e8f3cc - - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 43 - 1900-01-01T00:00:00 - - + + - fb91aa12-2341-db11-898a-0007e9e17ebd + 6340b506-2341-db11-898a-0007e9e17ebd true - Name to enter for address 1. + Home Phone 1033 - - - fb91aa12-2341-db11-898a-0007e9e17ebd - - true - Name to enter for address 1. - 1033 - - - - - fa91aa12-2341-db11-898a-0007e9e17ebd + ad21c325-9357-4f22-87a0-3a0053b7b7de true - Address 1: Name - 1033 + Telefon (privat) + 1030 - fa91aa12-2341-db11-898a-0007e9e17ebd + 6340b506-2341-db11-898a-0007e9e17ebd true - Address 1: Name + Home Phone 1033 @@ -295727,7 +343907,7 @@ true canmodifysearchsettings - false + true true true @@ -295736,83 +343916,97 @@ true true - address1_name + homephone 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - Address1_Name + HomePhone StringType 5.0.0.0 - true + false 0 Text - Active - 100 + Inactive + 50 - Text + Phone false 0 - 400 + 100 - - c37114dd-a6bc-4bbb-bebe-bc144a40d007 + + b48017f3-f211-4160-8d0f-25a62de2cdeb - String - true - true - true + Integer + false + false + false false canmodifyadditionalsettings true - 52 + 185 1900-01-01T00:00:00 - 6526e7d6-2241-db11-898a-0007e9e17ebd + d212cec8-74d5-421c-b6d4-59797f93822a true - ZIP Code or postal code for address 1. + For internal use only. 1033 + + d281ef4d-7179-4dff-84fc-ad2860267260 + + true + Kun til intern brug. + 1030 + - 6526e7d6-2241-db11-898a-0007e9e17ebd + d212cec8-74d5-421c-b6d4-59797f93822a true - ZIP Code or postal code for address 1. + For internal use only. 1033 - 6426e7d6-2241-db11-898a-0007e9e17ebd + 66563f34-b62c-4cb2-b9ac-14074bc6f54a true - ZIP/Postal Code + Unique user identity id 1033 + + e24885e6-f119-4c92-a4f0-1b17ba5fd39a + + true + Entydigt brugeridentitets-id + 1030 + - 6426e7d6-2241-db11-898a-0007e9e17ebd + 66563f34-b62c-4cb2-b9ac-14074bc6f54a true - ZIP/Postal Code + Unique user identity id 1033 @@ -295820,15 +344014,15 @@ - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -295843,7 +344037,7 @@ false isrenameable - true + false false false @@ -295855,94 +344049,102 @@ false - true + false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true + false true - address1_postalcode + identityid 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - Address1_PostalCode + IdentityId - StringType + IntegerType - 5.0.0.0 - true + 9.0.0.0 + false 0 - Text - Inactive - 40 - - - Text - + None + 2147483647 + -2147483648 - false 0 - 80 - - 62168bc5-1d95-4911-a9fe-57e0ed633452 + + ad06e4f2-24b3-4153-b916-2b116ed1e736 - String - true - true - true + Integer + false + false + false false canmodifyadditionalsettings true - 51 + 112 1900-01-01T00:00:00 - 871c9b1e-2341-db11-898a-0007e9e17ebd + aff716a1-ea83-4b86-949c-53db17ae3e8e true - Post office box number for address 1. + Unique identifier of the data import or data migration that created this record. 1033 + + 7b747eab-51f3-439f-bc68-7d64632bf7fa + + true + Entydigt id for den dataimport eller dataoverførsel, der oprettede denne post. + 1030 + - 871c9b1e-2341-db11-898a-0007e9e17ebd + aff716a1-ea83-4b86-949c-53db17ae3e8e true - Post office box number for address 1. + Unique identifier of the data import or data migration that created this record. 1033 - 861c9b1e-2341-db11-898a-0007e9e17ebd + b32811cf-9bef-4547-a36a-5ea3103420e7 true - Address 1: Post Office Box + Import Sequence Number 1033 + + 734290b0-a525-4d0e-bef1-aa8b48a66ed2 + + true + Importsekvensnummer + 1030 + - 861c9b1e-2341-db11-898a-0007e9e17ebd + b32811cf-9bef-4547-a36a-5ea3103420e7 true - Address 1: Post Office Box + Import Sequence Number 1033 @@ -295987,45 +344189,39 @@ true canmodifysearchsettings - false + true true - true - true + false + false true - true + false true - address1_postofficebox + importsequencenumber 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - Address1_PostOfficeBox + ImportSequenceNumber - StringType + IntegerType 5.0.0.0 - true + false 0 - Text - Inactive - 40 - - - Text - + None + 2147483647 + -2147483648 - false 0 - 80 - 433c591f-9039-4390-a67e-e850c22a0d25 + 940d6224-8610-448a-9e7a-b41a5dd6a1ed Picklist @@ -296035,44 +344231,58 @@ false canmodifyadditionalsettings - false + true - 58 + 110 1900-01-01T00:00:00 - aa99ba00-2341-db11-898a-0007e9e17ebd + 40e0eed0-2241-db11-898a-0007e9e17ebd true - Method of shipment for address 1. + Incoming email delivery method for the user. 1033 + + 22b09468-b0de-4546-a10c-aff394a31373 + + true + Leveringsmetode for indgående e-mail for brugeren. + 1030 + - aa99ba00-2341-db11-898a-0007e9e17ebd + 40e0eed0-2241-db11-898a-0007e9e17ebd true - Method of shipment for address 1. + Incoming email delivery method for the user. 1033 - a999ba00-2341-db11-898a-0007e9e17ebd + 3fe0eed0-2241-db11-898a-0007e9e17ebd true - Address 1: Shipping Method + Incoming Email Delivery Method 1033 + + 3eb5dd1b-9d56-4cb6-928b-48c17cf59170 + + true + Leveringsmetode for indgående e-mail + 1030 + - a999ba00-2341-db11-898a-0007e9e17ebd + 3fe0eed0-2241-db11-898a-0007e9e17ebd true - Address 1: Shipping Method + Incoming Email Delivery Method 1033 @@ -296103,7 +344313,7 @@ false isrenameable - false + true false false @@ -296115,70 +344325,84 @@ false - false + true canmodifysearchsettings - false + true true - false - false + true + true true true true - address1_shippingmethodcode + incomingemaildeliverymethod 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - Address1_ShippingMethodCode + IncomingEmailDeliveryMethod PicklistType 5.0.0.0 - true + false 0 1 - cda38168-bd2d-4dd3-ad58-3ecc23b30164 + a7ca9be8-c2af-42b1-af90-dcdc8bb13f50 - e6d8ab16-2bd8-41e9-b3ad-277f24df4005 + 7c1e3b63-748f-4ad2-b408-7b006116e1ab true - Method of shipment for address 1. + Incoming email delivery method for the user. 1033 + + da28467e-0db4-4dc0-b189-bcec55d4279f + + true + Leveringsmetode for indgående e-mail for brugeren. + 1030 + - e6d8ab16-2bd8-41e9-b3ad-277f24df4005 + 7c1e3b63-748f-4ad2-b408-7b006116e1ab true - Method of shipment for address 1. + Incoming email delivery method for the user. 1033 - 9a42fd84-730f-42e4-b23f-774a89b2de9a + 5941caeb-275f-479f-a04c-1dca215ec0f4 true - Address 1: Shipping Method + Incoming Email Delivery Method 1033 + + a4cf04a2-c7bb-4ceb-8984-9ad88a80c054 + + true + Leveringsmetode for indgående e-mail + 1030 + - 9a42fd84-730f-42e4-b23f-774a89b2de9a + 5941caeb-275f-479f-a04c-1dca215ec0f4 true - Address 1: Shipping Method + Incoming Email Delivery Method 1033 @@ -296187,11 +344411,11 @@ false iscustomizable - true + false false true - systemuser_address1_shippingmethodcode + systemuser_incomingemaildeliverymethod Picklist 5.0.0.0 @@ -296209,18 +344433,65 @@ - ac99ba00-2341-db11-898a-0007e9e17ebd + 42e0eed0-2241-db11-898a-0007e9e17ebd true - Default Value + None 1033 + + 982fbe78-da6d-4432-a104-fe6a342cc697 + + true + Ingen + 1030 + - ac99ba00-2341-db11-898a-0007e9e17ebd + 42e0eed0-2241-db11-898a-0007e9e17ebd true - Default Value + None + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 46e0eed0-2241-db11-898a-0007e9e17ebd + + true + Microsoft Dynamics 365 for Outlook + 1033 + + + 4fc8f606-05f3-42fa-9f76-4304b5facfb8 + + true + Microsoft Dynamics 365 til Outlook + 1030 + + + + 46e0eed0-2241-db11-898a-0007e9e17ebd + + true + Microsoft Dynamics 365 for Outlook 1033 @@ -296228,6 +344499,86 @@ 1 + + + + + + + + + + false + true + + + + 48e0eed0-2241-db11-898a-0007e9e17ebd + + true + Server-Side Synchronization or Email Router + 1033 + + + 21dba372-5aa0-4381-a358-0ee1eb14b67b + + true + Synkronisering på serversiden eller E-mail Router + 1030 + + + + 48e0eed0-2241-db11-898a-0007e9e17ebd + + true + Server-Side Synchronization or Email Router + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 44e0eed0-2241-db11-898a-0007e9e17ebd + + true + Forward Mailbox + 1033 + + + 44d8ce07-73dd-49f8-b7b7-ccd38ad4e4d5 + + true + Postkasse til videresendelse + 1030 + + + + 44e0eed0-2241-db11-898a-0007e9e17ebd + + true + Forward Mailbox + 1033 + + + + 3 + + @@ -296238,9 +344589,9 @@ - 70e73590-fb43-43d9-9553-c76aa214ad4d + 88e5ff20-6fa5-4c8b-aa8f-67554e6211fb - address1_shippingmethodcode + incomingemaildeliverymethod Virtual false false @@ -296250,7 +344601,7 @@ canmodifyadditionalsettings false - 98 + 120 1900-01-01T00:00:00 @@ -296311,14 +344662,14 @@ false false - address1_shippingmethodcodename + incomingemaildeliverymethodname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Address1_ShippingMethodCodeName + IncomingEmailDeliveryMethodName VirtualType @@ -296329,184 +344680,68 @@ - 3b3b1902-c4bc-47ba-ae9d-535b30cab606 + 67a52814-b08f-4fa0-91c7-9c5fd72fdef4 String - true - true - true + false + false + false false canmodifyadditionalsettings true - 48 + 15 1900-01-01T00:00:00 - 081fd7e8-2241-db11-898a-0007e9e17ebd + 4b98ba00-2341-db11-898a-0007e9e17ebd true - State or province for address 1. + Internal email address for the user. 1033 - - - 081fd7e8-2241-db11-898a-0007e9e17ebd - - true - State or province for address 1. - 1033 - - - - - 071fd7e8-2241-db11-898a-0007e9e17ebd + 41418efe-5511-4040-9a07-f32ed1ab98d0 true - State/Province - 1033 + Brugerens interne e-mail-adresse. + 1030 - 071fd7e8-2241-db11-898a-0007e9e17ebd + 4b98ba00-2341-db11-898a-0007e9e17ebd true - State/Province + Internal email address for the user. 1033 - - systemuser - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - address1_stateorprovince - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - Address1_StateOrProvince - - - StringType - - 5.0.0.0 - true - 0 - - Text - Active - 128 - - - Text - - - false - 0 - 256 - - - d248114b-4cc8-42cd-a2b0-c0bc7dfe55da - - - String - true - true - true - - false - canmodifyadditionalsettings - true - - 56 - 1900-01-01T00:00:00 - - + + - 8799f6ca-2241-db11-898a-0007e9e17ebd + 4a98ba00-2341-db11-898a-0007e9e17ebd true - First telephone number associated with address 1. + Primary Email 1033 - - - 8799f6ca-2241-db11-898a-0007e9e17ebd - - true - First telephone number associated with address 1. - 1033 - - - - - 8699f6ca-2241-db11-898a-0007e9e17ebd + eacad212-1e51-4d2d-bb0d-7645ad2bc137 true - Main Phone - 1033 + Primær e-mail + 1030 - 8699f6ca-2241-db11-898a-0007e9e17ebd + 4a98ba00-2341-db11-898a-0007e9e17ebd true - Main Phone + Primary Email 1033 @@ -296541,7 +344776,7 @@ false true - false + true false true @@ -296560,83 +344795,97 @@ true true - address1_telephone1 - 1900-01-01T00:00:00 + internalemailaddress + 2025-11-06T10:08:47.6 true canmodifyrequirementlevelsettings - None + SystemRequired - Address1_Telephone1 + InternalEMailAddress StringType 5.0.0.0 - true + false 0 - Text + Email Inactive - 64 + 100 - Phone + Email false 0 - 128 + 200 - - 63e23dae-4b02-4c80-b1e3-e10e6b22d7fb + + c7858372-ee7e-4182-b0d1-844e10829906 - String - true - true - true + Picklist + false + false + false false canmodifyadditionalsettings true - 59 + 114 1900-01-01T00:00:00 - 431ed7e8-2241-db11-898a-0007e9e17ebd + f256cba0-2273-4b34-b958-c1817de0b062 true - Second telephone number associated with address 1. + User invitation status. 1033 + + 37f5a989-2300-45a3-93f7-a096e6c7952d + + true + Status for brugerinvitation. + 1030 + - 431ed7e8-2241-db11-898a-0007e9e17ebd + f256cba0-2273-4b34-b958-c1817de0b062 true - Second telephone number associated with address 1. + User invitation status. 1033 - 421ed7e8-2241-db11-898a-0007e9e17ebd + a0641b1d-d5a6-453d-a2da-0a3dab50f482 true - Other Phone + Invitation Status 1033 + + ff763215-b6a8-460a-9fbb-fd4f4a57f310 + + true + Status for invitation + 1030 + - 421ed7e8-2241-db11-898a-0007e9e17ebd + a0641b1d-d5a6-453d-a2da-0a3dab50f482 true - Other Phone + Invitation Status 1033 @@ -296690,99 +344939,415 @@ true true - address1_telephone2 + invitestatuscode 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings - None + ApplicationRequired - Address1_Telephone2 + InviteStatusCode - StringType + PicklistType 5.0.0.0 - true + false 0 - Text - Inactive - 50 - - - Phone - + 0 + + f92e62ea-8fad-49eb-b2ee-a7e8946608bb + + + + + 472448ad-a04d-48e9-8caf-5ceb713dcdbe + + true + User invitation status. + 1033 + + + 1664c935-507c-4583-9fc9-ec03a772cda5 + + true + Status for brugerinvitation. + 1030 + + + + 472448ad-a04d-48e9-8caf-5ceb713dcdbe + + true + User invitation status. + 1033 + + + + + + e91d79b5-7e0e-4d92-97d8-1b20782bb41b + + true + Invitation Status + 1033 + + + fe5c708e-cd2a-4b7a-96fc-a0da79585278 + + true + Status for invitation + 1030 + + + + e91d79b5-7e0e-4d92-97d8-1b20782bb41b + + true + Invitation Status + 1033 + + + + false + + false + iscustomizable + false + + false + true + systemuser_invitestatuscode + Picklist + 5.0.0.0 + + + + + + + + + + + false + true + + + + d0819345-6d0b-4224-b681-e65f7e01468c + + true + Invitation Not Sent + 1033 + + + 886367f9-02ba-46f8-92c8-2245ab66a4bb + + true + Invitation er ikke sendt + 1030 + + + + d0819345-6d0b-4224-b681-e65f7e01468c + + true + Invitation Not Sent + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 1601bd3f-5d15-4d21-8915-703555919316 + + true + Invited + 1033 + + + 42442e7d-c022-47fb-a575-d0feb5dacf2d + + true + Inviteret + 1030 + + + + 1601bd3f-5d15-4d21-8915-703555919316 + + true + Invited + 1033 + + + + 1 + + + + + + + + + + + + false + true + + + + e795b35b-77fa-4a65-a0f3-12247b5b745a + + true + Invitation Near Expired + 1033 + + + 163dcdcf-e4aa-42d2-8391-a579e87b2772 + + true + Invitationen er næsten udløbet + 1030 + + + + e795b35b-77fa-4a65-a0f3-12247b5b745a + + true + Invitation Near Expired + 1033 + + + + 2 + + + + + + + + + + + + false + true + + + + 2bed408b-7b8c-4eb8-a434-e2d7a3b287ff + + true + Invitation Expired + 1033 + + + 5759cd31-2ab1-4611-a068-b52fb1772886 + + true + Invitationen er udløbet + 1030 + + + + 2bed408b-7b8c-4eb8-a434-e2d7a3b287ff + + true + Invitation Expired + 1033 + + + + 3 + + + + + + + + + + + + false + true + + + + d2785148-eadc-4507-8203-bb968277283d + + true + Invitation Accepted + 1033 + + + dcb4617e-db69-48d4-8b1a-c24f0340caf3 + + true + Invitationen er accepteret + 1030 + + + + d2785148-eadc-4507-8203-bb968277283d + + true + Invitation Accepted + 1033 + + + + 4 + + + + + + + + + + + + false + true + + + + 3dc2e68d-bfb0-4f5a-adcc-53d5ed529388 + + true + Invitation Rejected + 1033 + + + 2db5d13a-7430-41f5-b33d-9dd8bcc98f4e + + true + Invitationen er afvist + 1030 + + + + 3dc2e68d-bfb0-4f5a-adcc-53d5ed529388 + + true + Invitation Rejected + 1033 + + + + 5 + + + + + + + + + + + + false + true + + + + 07520140-d422-4ad0-a606-b4bdd86e06c5 + + true + Invitation Revoked + 1033 + + + 915c205d-cf2f-48db-becd-37aa7d7d681b + + true + Invitationen er tilbagekaldt + 1030 + + + + 07520140-d422-4ad0-a606-b4bdd86e06c5 + + true + Invitation Revoked + 1033 + + + + 6 + + + + + + - false 0 - 100 + + - - 2caa2a65-8c37-4b7c-8d74-8254af80cf43 + + 9e2249e4-5a84-48bf-a11e-3bd6bdec20e6 - - String - true - true - true + invitestatuscode + Virtual + false + false + false false canmodifyadditionalsettings - true + false - 60 + 122 1900-01-01T00:00:00 - - - d31dd7e8-2241-db11-898a-0007e9e17ebd - - true - Third telephone number associated with address 1. - 1033 - - - - d31dd7e8-2241-db11-898a-0007e9e17ebd - - true - Third telephone number associated with address 1. - 1033 - + + - - - d21dd7e8-2241-db11-898a-0007e9e17ebd - - true - Pager - 1033 - - - - d21dd7e8-2241-db11-898a-0007e9e17ebd - - true - Pager - 1033 - + + systemuser - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -296797,7 +345362,7 @@ false isrenameable - true + false false false @@ -296809,50 +345374,39 @@ false - true + false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true - true + false + false - address1_telephone3 + invitestatuscodename 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - Address1_Telephone3 + InviteStatusCodeName - StringType + VirtualType 5.0.0.0 true - 0 + - Text - Inactive - 50 - - - Phone - - - false - 0 - 100 - - f6333111-6af3-4a9c-ba85-66503b16aee9 + + 6f246cb8-c8dd-456b-8709-51d0749a4d0b - String + Boolean false false false @@ -296861,42 +345415,56 @@ canmodifyadditionalsettings false - 54 + 115 1900-01-01T00:00:00 - 081ed7e8-2241-db11-898a-0007e9e17ebd + 33acbdd3-a0dd-408d-a0cc-7b96ffb05feb true - United Parcel Service (UPS) zone for address 1. + Information about whether the user is an AD user. 1033 + + 9e9f4a1e-6a63-410b-a9d8-53b802d08c5a + + true + Oplysninger, der angiver, om brugeren er en AD-bruger. + 1030 + - 081ed7e8-2241-db11-898a-0007e9e17ebd + 33acbdd3-a0dd-408d-a0cc-7b96ffb05feb true - United Parcel Service (UPS) zone for address 1. + Information about whether the user is an AD user. 1033 - 071ed7e8-2241-db11-898a-0007e9e17ebd + 9b4ed1b4-72e6-4894-86fe-d3bed66b097e true - Address 1: UPS Zone + Is Active Directory User 1033 + + 26ed4ef3-687d-40d1-a0df-3be17ae9a04d + + true + Er Active Directory-bruger + 1030 + - 071ed7e8-2241-db11-898a-0007e9e17ebd + 9b4ed1b4-72e6-4894-86fe-d3bed66b097e true - Address 1: UPS Zone + Is Active Directory User 1033 @@ -296943,90 +345511,207 @@ canmodifysearchsettings false - true + false false false - true - true - true + false + false + false - address1_upszone + isactivedirectoryuser 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - None + SystemRequired - Address1_UPSZone + IsActiveDirectoryUser - StringType + BooleanType 5.0.0.0 - true + false 0 - Text - Auto - 4 - - - Text - + true + + 77673532-0c93-4f72-a125-48fce00ab49a + + + + + 8dd0ce53-de9c-4582-9dbe-78a57cd177b4 + + true + Information about whether the user is an AD user. + 1033 + + + d06c4dd9-0396-4c37-a693-2a870183e63c + + true + Oplysninger, der angiver, om brugeren er en AD-bruger. + 1030 + + + + 8dd0ce53-de9c-4582-9dbe-78a57cd177b4 + + true + Information about whether the user is an AD user. + 1033 + + + + + + + + false + + false + iscustomizable + true + + false + true + systemuser_isactivedirectoryuser + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 2b25b0cb-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + 59cccb8d-d0c2-4909-8d13-184c893a91cb + + true + Nej + 1030 + + + + 2b25b0cb-e780-db11-9b85-00137299e160 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 2d25b0cb-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + 38da103c-be9a-4765-aca6-4de64542ffdb + + true + Ja + 1030 + + + + 2d25b0cb-e780-db11-9b85-00137299e160 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 8 - - 9f10054b-2383-4e93-87fb-0b645c768e3b + + b03a1088-0cfd-47df-977e-7365ca06ff33 - Integer - false - false - false + Boolean + true + true + true false canmodifyadditionalsettings - false + true - 53 - 1900-01-01T00:00:00 + 10009 + 2025-11-06T05:56:00.96 - abd6a218-2341-db11-898a-0007e9e17ebd + e2ede1eb-c7ca-4578-8b9f-f339fd752646 true - UTC offset for address 1. This is the difference between local time and standard Coordinated Universal Time. + Bypasses the selected user from IP firewall restriction 1033 - abd6a218-2341-db11-898a-0007e9e17ebd + e2ede1eb-c7ca-4578-8b9f-f339fd752646 true - UTC offset for address 1. This is the difference between local time and standard Coordinated Universal Time. + Bypasses the selected user from IP firewall restriction 1033 - aad6a218-2341-db11-898a-0007e9e17ebd + 76a5bdc2-7b76-4d55-8a65-ef0dd0755db1 true - Address 1: UTC Offset + To bypass IP firewall restriction on the user 1033 - aad6a218-2341-db11-898a-0007e9e17ebd + 76a5bdc2-7b76-4d55-8a65-ef0dd0755db1 true - Address 1: UTC Offset + To bypass IP firewall restriction on the user 1033 @@ -297062,7 +345747,7 @@ false false false - false + true true canmodifyissortablesettings @@ -297080,93 +345765,181 @@ true true - address1_utcoffset - 1900-01-01T00:00:00 + isallowedbyipfirewall + 2025-11-06T05:56:00.96 false canmodifyrequirementlevelsettings None - Address1_UTCOffset + IsAllowedByIpFirewall - IntegerType + BooleanType - 5.0.0.0 - true + 9.2.0.158 + false 0 - - TimeZone - 1500 - -1500 - + + false + + f2d27344-d5ba-f011-bbd3-7c1e52365f30 + + + + + f4d27344-d5ba-f011-bbd3-7c1e52365f30 + + true + Indicates if the user needs to be bypassed by Ip firewall rule + 1033 + + + + f4d27344-d5ba-f011-bbd3-7c1e52365f30 + + true + Indicates if the user needs to be bypassed by Ip firewall rule + 1033 + + + + + + f3d27344-d5ba-f011-bbd3-7c1e52365f30 + + true + Is user bypassed by ip firewall + 1033 + + + + f3d27344-d5ba-f011-bbd3-7c1e52365f30 + + true + Is user bypassed by ip firewall + 1033 + + + + true + + false + iscustomizable + false + + false + true + systemuser_isallowedbyipfirewall + Boolean + 9.2.0.158 + + + + + + + + + + false + true + + + + 2c8d0ff1-8035-4acd-955f-6c88ca82ddb9 + + true + No + 1033 + + + + 2c8d0ff1-8035-4acd-955f-6c88ca82ddb9 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + b1440eaa-badd-4638-872a-8abbe8e39592 + + true + Yes + 1033 + + + + b1440eaa-badd-4638-872a-8abbe8e39592 + + true + Yes + 1033 + + + + 1 + + + + 0 - 87d53433-d148-4b33-a130-df8fe6a4ed82 + 7da99ddf-c478-41e2-a1b7-c839f799be65 - - Uniqueidentifier + isallowedbyipfirewall + Virtual false false false - false + true canmodifyadditionalsettings - false + true - 62 - 1900-01-01T00:00:00 + 10010 + 2025-11-06T05:56:00.9929984 - - - 4064cfee-2241-db11-898a-0007e9e17ebd - - true - Unique identifier for address 2. - 1033 - - - - 4064cfee-2241-db11-898a-0007e9e17ebd - - true - Unique identifier for address 2. - 1033 - + + - - - 3f64cfee-2241-db11-898a-0007e9e17ebd - - true - Address 2: ID - 1033 - - - - 3f64cfee-2241-db11-898a-0007e9e17ebd - - true - Address 2: ID - 1033 - + + systemuser - false + true canmodifyauditsettings false false - false + true iscustomizable - false + true false false @@ -297175,13 +345948,13 @@ canmodifyglobalfiltersettings false - true - true + false + false false - false + true isrenameable - false + true false false @@ -297193,83 +345966,97 @@ false - false + true canmodifysearchsettings false - true + false false false true - true - true + false + false - address2_addressid - 1900-01-01T00:00:00 + isallowedbyipfirewallname + 2025-11-06T05:56:00.9929984 - false + true canmodifyrequirementlevelsettings None - Address2_AddressId + isallowedbyipfirewallName - UniqueidentifierType + VirtualType - 5.0.0.0 + 9.2.0.158 true - + - - 9e050510-1d3e-4f37-bb97-cc748c6d8e3c + + 4fcd5b70-d4b3-4111-bbf1-ef3b80fb04c7 - Picklist + Boolean false false false false canmodifyadditionalsettings - false + true - 63 + 34 1900-01-01T00:00:00 - 5ce9af0c-2341-db11-898a-0007e9e17ebd + c9aac7f4-2241-db11-898a-0007e9e17ebd true - Type of address for address 2, such as billing, shipping, or primary address. + Information about whether the user is enabled. 1033 + + cd639214-c9e2-4782-a93d-6555e647cc19 + + true + Angiver, om brugeren er aktiveret. + 1030 + - 5ce9af0c-2341-db11-898a-0007e9e17ebd + c9aac7f4-2241-db11-898a-0007e9e17ebd true - Type of address for address 2, such as billing, shipping, or primary address. + Information about whether the user is enabled. 1033 - 5be9af0c-2341-db11-898a-0007e9e17ebd + c8aac7f4-2241-db11-898a-0007e9e17ebd true - Address 2: Address Type + Status 1033 + + 17c23e45-eae7-4246-958f-599d16cdb466 + + true + Status + 1030 + - 5be9af0c-2341-db11-898a-0007e9e17ebd + c8aac7f4-2241-db11-898a-0007e9e17ebd true - Address 2: Address Type + Status 1033 @@ -297288,7 +346075,7 @@ true false - false + true true canmodifyglobalfiltersettings @@ -297300,7 +346087,7 @@ false isrenameable - false + true false false @@ -297312,70 +346099,84 @@ false - false + true canmodifysearchsettings - false + true - true - false + false + true false true true true - address2_addresstypecode - 1900-01-01T00:00:00 + isdisabled + 2025-11-06T00:19:21.1830016 - false + true canmodifyrequirementlevelsettings None - Address2_AddressTypeCode + IsDisabled - PicklistType + BooleanType 5.0.0.0 - true + false 0 - 1 + false - 909d3e38-5ed5-4c9c-a478-03be50231e53 + c8431634-445b-44a1-be65-d7d83adb3904 - 2f275d93-0de6-4597-ae87-206d0bcb9175 + 5d8fe729-efa3-42f7-8848-cc3762db2487 true - Type of address for address 2, such as billing, shipping, or primary address. + Information about whether the user is enabled. 1033 + + f190a99b-15e0-465c-9eee-27d420851fb6 + + true + Angiver, om brugeren er aktiveret. + 1030 + - 2f275d93-0de6-4597-ae87-206d0bcb9175 + 5d8fe729-efa3-42f7-8848-cc3762db2487 true - Type of address for address 2, such as billing, shipping, or primary address. + Information about whether the user is enabled. 1033 - 881b138d-8bc6-4c2f-b35f-a11004549b00 + 58e9e2fe-dd2f-45cb-b8e5-25c37c464049 true - Address 2: Address Type + Status 1033 + + a2a39797-c747-4a16-8b8f-e28ed6a9d34d + + true + Status + 1030 + - 881b138d-8bc6-4c2f-b35f-a11004549b00 + 58e9e2fe-dd2f-45cb-b8e5-25c37c464049 true - Address 2: Address Type + Status 1033 @@ -297388,56 +346189,97 @@ false true - systemuser_address2_addresstypecode - Picklist + systemuser_isdisabled + Boolean 5.0.0.0 - - - - - - - - - - - false - true - - - - 5ee9af0c-2341-db11-898a-0007e9e17ebd - - true - Default Value - 1033 - - - - 5ee9af0c-2341-db11-898a-0007e9e17ebd + + + + + + + + + + false + true + + + + cbaac7f4-2241-db11-898a-0007e9e17ebd - true - Default Value - 1033 - - - - 1 - - - - + true + Enabled + 1033 + + + 620eefbd-a911-4c47-81b2-d25ef525d100 + + true + Aktiveret + 1030 + + + + cbaac7f4-2241-db11-898a-0007e9e17ebd + + true + Enabled + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + cdaac7f4-2241-db11-898a-0007e9e17ebd + + true + Disabled + 1033 + + + a70ac5b4-7d73-466a-aa58-77ec6f3100bc + + true + Deaktiveret + 1030 + + + + cdaac7f4-2241-db11-898a-0007e9e17ebd + + true + Disabled + 1033 + + + + 1 + + - 0 - - - 05f1ad5a-2edb-4d30-8d27-16aae1f7f64b + 4ba8a4ee-af1c-406e-a936-cbb6289fb12f - address2_addresstypecode + isdisabled Virtual false false @@ -297447,7 +346289,7 @@ canmodifyadditionalsettings false - 97 + 91 1900-01-01T00:00:00 @@ -297508,14 +346350,14 @@ false false - address2_addresstypecodename + isdisabledname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Address2_AddressTypeCodeName + IsDisabledName VirtualType @@ -297525,55 +346367,69 @@ - - 88ccd6c3-4015-4c81-9529-a7f427ab3785 + + 46d69d37-3fcd-4bd5-be6e-32cc7c3f63bb - String - true - true - true + Boolean + false + false + false false canmodifyadditionalsettings true - 68 + 165 1900-01-01T00:00:00 - 7d99ba00-2341-db11-898a-0007e9e17ebd + 0a7d3416-5c92-48d5-a038-0508165f7295 true - City name for address 2. + Shows the status of approval of the email address by O365 Admin. 1033 + + 3d9008fd-2251-4f69-8ae9-7f583ce0a426 + + true + Viser status for O365-administratorens godkendelse af e-mail-adressen. + 1030 + - 7d99ba00-2341-db11-898a-0007e9e17ebd + 0a7d3416-5c92-48d5-a038-0508165f7295 true - City name for address 2. + Shows the status of approval of the email address by O365 Admin. 1033 - 7c99ba00-2341-db11-898a-0007e9e17ebd + bf080bc7-8c08-4b3f-81f0-29d46e05d414 true - Other City + Email Address O365 Admin Approval Status 1033 + + 55e072c5-de8e-45ec-bffc-836909581799 + + true + Status for O365-administrators godkendelse af e-mail-adresse + 1030 + - 7c99ba00-2341-db11-898a-0007e9e17ebd + bf080bc7-8c08-4b3f-81f0-29d46e05d414 true - Other City + Email Address O365 Admin Approval Status 1033 @@ -297618,218 +346474,223 @@ true canmodifysearchsettings - true + false - true - true - true + false + false + false true - true + false true - address2_city + isemailaddressapprovedbyo365admin 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings - None + SystemRequired - Address2_City + IsEmailAddressApprovedByO365Admin - StringType + BooleanType - 5.0.0.0 - true + 6.0.0.0 + false 0 - Text - Active - 128 - - - Text - + false + + 34870ae7-88e6-45b0-b2bf-fb112ef31707 + + + + + + + + + 3b567543-5ffc-440d-acce-97568820b183 + + true + Is Mailbox approved by O365 Admin + 1033 + + + 9d46d021-43ff-48f2-a2b1-ce3a9b13cbd6 + + true + Er postkassen godkendt af O365-administrator? + 1030 + + + + 3b567543-5ffc-440d-acce-97568820b183 + + true + Is Mailbox approved by O365 Admin + 1033 + + + + false + + false + iscustomizable + false + + false + true + systemuser_isemailaddressapprovedbyo365admin + Boolean + 6.0.0.0 + + + + + + + + + + false + true + + + + e4e47d6c-fbef-4f77-b059-6861dc5550a9 + + true + No + 1033 + + + e4a1303e-5ba8-4fab-8f82-ea82984798fc + + true + Nej + 1030 + + + + e4e47d6c-fbef-4f77-b059-6861dc5550a9 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 03ad87bd-6adf-4a7e-9353-487c49fb5a5e + + true + Yes + 1033 + + + 2950b633-4b98-4d44-b6cf-5d54bd51ca0a + + true + Ja + 1030 + + + + 03ad87bd-6adf-4a7e-9353-487c49fb5a5e + + true + Yes + 1033 + + + + 1 + + + - false 0 - 256 - - 39fbea48-ec70-4368-a49e-a1b496023939 + + 4e31f174-9216-4a53-bf93-f0bce1fd33ad - Memo + Boolean false - true + false false false canmodifyadditionalsettings true - 160 + 130 1900-01-01T00:00:00 - 4a8f0364-04a4-4e57-8ac5-6ecd2b88b7d2 + 17e93bc1-081e-4f13-b538-9a91ed7d47b6 true - Shows the complete secondary address. + Check if user is an integration user. 1033 - - - 4a8f0364-04a4-4e57-8ac5-6ecd2b88b7d2 - - true - Shows the complete secondary address. - 1033 - - - - - afd2a1cd-4273-4e51-ab0d-53184b8cd543 + 22e3004d-58c6-49a5-8591-e22dfad2cdb1 true - Other Address - 1033 + Kontrollér, om brugeren er en integrationsbruger. + 1030 - afd2a1cd-4273-4e51-ab0d-53184b8cd543 + 17e93bc1-081e-4f13-b538-9a91ed7d47b6 true - Other Address + Check if user is an integration user. 1033 - - systemuser - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - false - true - true - true - false - true - - address2_composite - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - Address2_Composite - - - MemoType - - 6.0.0.0 - true - - - TextArea - Active - 1000 - - TextArea - - false - - - 88b054eb-7c13-4ddc-8cb6-b99623f1fcbb - - - String - true - true - true - - false - canmodifyadditionalsettings - true - - 71 - 1900-01-01T00:00:00 - - + + - b598ba00-2341-db11-898a-0007e9e17ebd + f46ee310-ac03-406b-a949-f76037f8e326 true - Country/region name in address 2. + Integration user mode 1033 - - - b598ba00-2341-db11-898a-0007e9e17ebd - - true - Country/region name in address 2. - 1033 - - - - - b498ba00-2341-db11-898a-0007e9e17ebd + ea12dada-7646-4fdd-a81e-8620930fa825 true - Other Country/Region - 1033 + Integrationsbrugertilstand + 1030 - b498ba00-2341-db11-898a-0007e9e17ebd + f46ee310-ac03-406b-a949-f76037f8e326 true - Other Country/Region + Integration user mode 1033 @@ -297878,104 +346739,214 @@ true true - true + false true true true - address2_country + isintegrationuser 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - Address2_Country + IsIntegrationUser - StringType + BooleanType 5.0.0.0 - true + false 0 - Text - Active - 128 - - - Text - + false + + e92a3809-e4f8-49f5-b0ef-9aa9e0fd3312 + + + + + d698cef9-80c3-402c-8195-bc0e195c34a9 + + true + Check if user is an integration user. + 1033 + + + 5d243b73-0b61-4df8-ac13-fea312640a1c + + true + Kontrollér, om brugeren er en integrationsbruger. + 1030 + + + + d698cef9-80c3-402c-8195-bc0e195c34a9 + + true + Check if user is an integration user. + 1033 + + + + + + 12c70153-0d54-451f-96eb-ddb0c9cee4f4 + + true + Integration user mode + 1033 + + + 09a58f51-63be-4845-b64e-4d60dff1ac14 + + true + Integrationsbrugertilstand + 1030 + + + + 12c70153-0d54-451f-96eb-ddb0c9cee4f4 + + true + Integration user mode + 1033 + + + + false + + false + iscustomizable + true + + false + true + systemuser_isintegrationuser + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 778d9448-d40f-4636-88d0-1a1ea144c592 + + true + No + 1033 + + + ff9cacc1-a47e-43e6-927f-81c614976e9a + + true + Nej + 1030 + + + + 778d9448-d40f-4636-88d0-1a1ea144c592 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 70fab568-4dc7-441e-bc85-f0bd51532321 + + true + Yes + 1033 + + + f01715f8-93d4-467b-839d-c57614298f6c + + true + Ja + 1030 + + + + 70fab568-4dc7-441e-bc85-f0bd51532321 + + true + Yes + 1033 + + + + 1 + + + - false 0 - 256 - - 4889f351-7cd4-4b29-852d-68a01a1618de + + 5c9e8a1f-9133-44e8-beda-2a0e8d40c19e - - String - true - true - true + isintegrationuser + Virtual + false + false + false false canmodifyadditionalsettings - true + false - 70 + 132 1900-01-01T00:00:00 - - - 1cd8a218-2341-db11-898a-0007e9e17ebd - - true - County name for address 2. - 1033 - - - - 1cd8a218-2341-db11-898a-0007e9e17ebd - - true - County name for address 2. - 1033 - + + - - - 1bd8a218-2341-db11-898a-0007e9e17ebd - - true - Address 2: County - 1033 - - - - 1bd8a218-2341-db11-898a-0007e9e17ebd - - true - Address 2: County - 1033 - + + systemuser - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -297990,7 +346961,7 @@ false isrenameable - true + false false false @@ -298002,224 +346973,97 @@ false - true + false canmodifysearchsettings false - true - true - true + false + false + false true - true - true + false + false - address2_county + isintegrationusername 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - Address2_County + IsIntegrationUserName - StringType + VirtualType 5.0.0.0 true - 0 + - Text - Active - 128 - - - Text - - - false - 0 - 256 - - 27e83976-9b24-4ae6-bd40-5dbeced56cd1 + + 745e0195-d907-4a06-8d65-37347791aab2 - String - true - true - true + Boolean + false + false + false false canmodifyadditionalsettings - true + false - 82 + 150 1900-01-01T00:00:00 - 2ed8a218-2341-db11-898a-0007e9e17ebd + b0e86184-0004-4e66-adc3-978a2e0bcd23 true - Fax number for address 2. + Information about whether the user is licensed. 1033 - - - 2ed8a218-2341-db11-898a-0007e9e17ebd - - true - Fax number for address 2. - 1033 - - - - - 2dd8a218-2341-db11-898a-0007e9e17ebd + cea9b87e-e906-4e80-bce7-de79273eca82 true - Address 2: Fax - 1033 + Angiver, om brugeren har licens. + 1030 - 2dd8a218-2341-db11-898a-0007e9e17ebd + b0e86184-0004-4e66-adc3-978a2e0bcd23 true - Address 2: Fax + Information about whether the user is licensed. 1033 - - systemuser - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - true - true - true - true - true - true - - address2_fax - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - Address2_Fax - - - StringType - - 5.0.0.0 - true - 0 - - Text - Inactive - 50 - - - Text - - - false - 0 - 100 - - - 988850c3-5ca2-4496-ac63-fcde8f64e007 - - - Double - true - true - true - - false - canmodifyadditionalsettings - true - - 76 - 1900-01-01T00:00:00 - - + + - 68d8a218-2341-db11-898a-0007e9e17ebd + df1de8fa-6cc0-4775-a692-f0f24f9857db true - Latitude for address 2. + User Licensed 1033 - - - 68d8a218-2341-db11-898a-0007e9e17ebd - - true - Latitude for address 2. - 1033 - - - - - 67d8a218-2341-db11-898a-0007e9e17ebd + 61ee47f4-cc7d-4041-844e-edb7504ffb89 true - Address 2: Latitude - 1033 + Brugerlicens + 1030 - 67d8a218-2341-db11-898a-0007e9e17ebd + df1de8fa-6cc0-4775-a692-f0f24f9857db true - Address 2: Latitude + User Licensed 1033 @@ -298229,13 +347073,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -298250,7 +347094,7 @@ false isrenameable - true + false false false @@ -298262,9 +347106,9 @@ false - true + false canmodifysearchsettings - false + true true true @@ -298273,94 +347117,188 @@ true true - address2_latitude - 1900-01-01T00:00:00 + islicensed + 2025-11-06T00:19:22.6329984 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - Address2_Latitude + IsLicensed - DoubleType + BooleanType 5.0.0.0 - true + false 0 - Disabled - 90 - -90 - 5 + false + + af09fcbe-e4c9-42c0-a101-9585bb351482 + + + + + 10c32efe-dd66-46b4-bd52-348739cb023c + + true + Information about whether the user is licensed or not. + 1033 + + + 5b64548c-75ec-4526-b68f-e81500a92f31 + + true + Angiver, om brugeren har licens eller ej. + 1030 + + + + 10c32efe-dd66-46b4-bd52-348739cb023c + + true + Information about whether the user is licensed or not. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + systemuser_isuserlicensed + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + b12f4588-d692-4d79-a1cf-0b0196588f3b + + true + No + 1033 + + + a562d704-fd89-4b3e-931f-99b7badb6945 + + true + Nej + 1030 + + + + b12f4588-d692-4d79-a1cf-0b0196588f3b + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + cd74abd8-1be7-439a-8cd7-c9873e2ecc1a + + true + Yes + 1033 + + + e6edb4d6-00e2-485f-8b23-f63df7cae948 + + true + Ja + 1030 + + + + cd74abd8-1be7-439a-8cd7-c9873e2ecc1a + + true + Yes + 1033 + + + + 1 + + + 0 - - 154006fe-1488-465d-9c56-23c0d26cfa6e + + d496509a-b276-48e3-9f53-9787ca8c7036 - - String - true - true - true + islicensed + Virtual + false + false + false false canmodifyadditionalsettings - true + false - 65 - 1900-01-01T00:00:00 + 188 + 2025-11-06T00:19:24.0429952 - - - 2df2fbc4-2241-db11-898a-0007e9e17ebd - - true - First line for entering address 2 information. - 1033 - - - - 2df2fbc4-2241-db11-898a-0007e9e17ebd - - true - First line for entering address 2 information. - 1033 - + + - - - 2cf2fbc4-2241-db11-898a-0007e9e17ebd - - true - Other Street 1 - 1033 - - - - 2cf2fbc4-2241-db11-898a-0007e9e17ebd - - true - Other Street 1 - 1033 - + + systemuser - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -298375,7 +347313,7 @@ false isrenameable - true + false false false @@ -298387,224 +347325,97 @@ false - true + false canmodifysearchsettings - true + false - true - true - true + false + false + false true - true - true + false + false - address2_line1 - 1900-01-01T00:00:00 + islicensedname + 2025-11-06T00:19:24.0429952 - true + false canmodifyrequirementlevelsettings None - Address2_Line1 + IsLicensedName - StringType + VirtualType - 5.0.0.0 + 9.1.0.0 true - 0 + - Text - Active - 1024 - - - Text - - - false - 0 - 2048 - - 7b8cac01-81cd-4888-b771-1059f2757567 + + e3b21027-f02b-49bf-8715-c6edf55ee4a8 - String - true - true - true + Boolean + false + false + false false canmodifyadditionalsettings - true + false - 66 + 151 1900-01-01T00:00:00 - 6d90aa12-2341-db11-898a-0007e9e17ebd + bc687ab4-b9da-4f91-aaf0-846f7b404c6b true - Second line for entering address 2 information. + Information about whether the user is synced with the directory. 1033 - - - 6d90aa12-2341-db11-898a-0007e9e17ebd - - true - Second line for entering address 2 information. - 1033 - - - - - 6c90aa12-2341-db11-898a-0007e9e17ebd + 0229b3e8-7e37-4b2f-bfc1-eb216d1c49aa true - Other Street 2 - 1033 + Oplysninger om, hvorvidt brugeren og mappen er synkroniseret. + 1030 - 6c90aa12-2341-db11-898a-0007e9e17ebd + bc687ab4-b9da-4f91-aaf0-846f7b404c6b true - Other Street 2 + Information about whether the user is synced with the directory. 1033 - - systemuser - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - address2_line2 - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - Address2_Line2 - - - StringType - - 5.0.0.0 - true - 0 - - Text - Active - 1024 - - - Text - - - false - 0 - 2048 - - - df4c3533-1997-44c5-8836-1bfbfca87bcb - - - String - true - true - true - - false - canmodifyadditionalsettings - true - - 67 - 1900-01-01T00:00:00 - - + + - c897ba00-2341-db11-898a-0007e9e17ebd + 7833fe14-9941-4209-b07a-1076c066d162 true - Third line for entering address 2 information. + User Synced 1033 - - - c897ba00-2341-db11-898a-0007e9e17ebd - - true - Third line for entering address 2 information. - 1033 - - - - - c797ba00-2341-db11-898a-0007e9e17ebd + fe97bc9d-02ca-439e-a950-3ac40a8970ec true - Other Street 3 - 1033 + Bruger synkroniseret + 1030 - c797ba00-2341-db11-898a-0007e9e17ebd + 7833fe14-9941-4209-b07a-1076c066d162 true - Other Street 3 + User Synced 1033 @@ -298614,13 +347425,13 @@ true canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -298635,7 +347446,7 @@ false isrenameable - true + false false false @@ -298647,50 +347458,167 @@ false - true + false canmodifysearchsettings - true + false true - true - true + false + false true true true - address2_line3 + issyncwithdirectory 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - Address2_Line3 + IsSyncWithDirectory - StringType + BooleanType 5.0.0.0 - true + false 0 - Text - Active - 1024 - - - Text - + false + + 119dee71-8387-48f6-b25d-6b4d0eb3544a + + + + + 26f18381-c127-4895-a3a4-aaed476d9002 + + true + Information about whether the user is synced or not. + 1033 + + + fdee77b6-ea46-4a2f-b1a9-5c0d4ad60580 + + true + Oplysninger om, hvorvidt brugeren er synkroniseret eller ej. + 1030 + + + + 26f18381-c127-4895-a3a4-aaed476d9002 + + true + Information about whether the user is synced or not. + 1033 + + + + + + + + false + + false + iscustomizable + false + + false + true + systemuser_isusersynced + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + e1e0be1e-10cd-4d6d-94c5-34ebe60dfc88 + + true + No + 1033 + + + 064adfe0-f512-4688-9872-c2c8fca9ec2a + + true + Nej + 1030 + + + + e1e0be1e-10cd-4d6d-94c5-34ebe60dfc88 + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + b91c863b-2627-4608-90ea-4bcaa07ee7ea + + true + Yes + 1033 + + + 3d53e1d0-98fb-46ce-a50c-faf916f905b9 + + true + Ja + 1030 + + + + b91c863b-2627-4608-90ea-4bcaa07ee7ea + + true + Yes + 1033 + + + + 1 + + + - false 0 - 2048 - - 33f45df8-5ff2-44af-bdc7-cce038214151 + + 33517a2e-5b4d-41d0-93e6-64aeaf03c8b8 - Double + String true true true @@ -298699,42 +347627,56 @@ canmodifyadditionalsettings true - 78 + 16 1900-01-01T00:00:00 - e551c2fa-2241-db11-898a-0007e9e17ebd + 1ae0eed0-2241-db11-898a-0007e9e17ebd true - Longitude for address 2. + Job title of the user. 1033 + + 00c689b9-5e44-47ff-a006-3263e40c8a02 + + true + Brugerens stillingsbetegnelse. + 1030 + - e551c2fa-2241-db11-898a-0007e9e17ebd + 1ae0eed0-2241-db11-898a-0007e9e17ebd true - Longitude for address 2. + Job title of the user. 1033 - e451c2fa-2241-db11-898a-0007e9e17ebd + 19e0eed0-2241-db11-898a-0007e9e17ebd true - Address 2: Longitude + Job Title 1033 + + fa4ef28a-bcb7-4de5-8399-b400880e979e + + true + Stilling + 1030 + - e451c2fa-2241-db11-898a-0007e9e17ebd + 19e0eed0-2241-db11-898a-0007e9e17ebd true - Address 2: Longitude + Job Title 1033 @@ -298788,31 +347730,36 @@ true true - address2_longitude + jobtitle 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - Address2_Longitude + JobTitle - DoubleType + StringType 5.0.0.0 - true + false 0 - Disabled - 180 - -180 - 5 + Text + Auto + 100 + + + Text + + false 0 + 200 - 60ab6d63-9d7d-4634-a6e9-351831101229 + 89029e2f-234d-44df-98d7-b80bd06b02d7 String @@ -298824,42 +347771,56 @@ canmodifyadditionalsettings true - 64 + 10 1900-01-01T00:00:00 - c190aa12-2341-db11-898a-0007e9e17ebd + 3799ba00-2341-db11-898a-0007e9e17ebd true - Name to enter for address 2. + Last name of the user. 1033 + + 9a4b3f17-2d5e-4cd1-bcbc-55b2b902aebb + + true + Brugerens efternavn. + 1030 + - c190aa12-2341-db11-898a-0007e9e17ebd + 3799ba00-2341-db11-898a-0007e9e17ebd true - Name to enter for address 2. + Last name of the user. 1033 - c090aa12-2341-db11-898a-0007e9e17ebd + 3699ba00-2341-db11-898a-0007e9e17ebd true - Address 2: Name + Last Name 1033 + + fcebe3c8-278d-4198-82b3-3900dde5a381 + + true + Efternavn + 1030 + - c090aa12-2341-db11-898a-0007e9e17ebd + 3699ba00-2341-db11-898a-0007e9e17ebd true - Address 2: Name + Last Name 1033 @@ -298894,7 +347855,7 @@ false false - false + true false true @@ -298904,7 +347865,7 @@ true canmodifysearchsettings - false + true true true @@ -298913,25 +347874,25 @@ true true - address2_name - 1900-01-01T00:00:00 + lastname + 2025-11-06T02:05:46.3469952 true canmodifyrequirementlevelsettings - None + ApplicationRequired - Address2_Name + LastName StringType 5.0.0.0 - true + false 0 Text Active - 100 + 256 Text @@ -298939,57 +347900,71 @@ false 0 - 400 + 256 - - 4bb0a062-9516-43de-8ff1-52b0b74c8397 + + 87a3294a-78d5-4a9a-912e-a712dadfc5d1 - String - true - true - true + DateTime + false + false + false false canmodifyadditionalsettings true - 73 - 1900-01-01T00:00:00 + 186 + 2025-11-06T00:19:20.3369984 - 89d8dee2-2241-db11-898a-0007e9e17ebd + 9206f79b-462c-4b25-90f5-13a82dc0521e true - ZIP Code or postal code for address 2. + Time stamp of the latest update for the user 1033 + + 865ada0b-1d62-4c07-831b-2838169d9d82 + + true + Tidsstempel for den seneste opdatering til brugeren + 1030 + - 89d8dee2-2241-db11-898a-0007e9e17ebd + 9206f79b-462c-4b25-90f5-13a82dc0521e true - ZIP Code or postal code for address 2. + Time stamp of the latest update for the user 1033 - 88d8dee2-2241-db11-898a-0007e9e17ebd + eb9f23dc-902e-46d8-a095-d6c99b393e62 true - Other ZIP/Postal Code + Latest User Update Time 1033 + + 58bf1d0f-4d56-4897-b3ca-b15a2125fe11 + + true + Seneste opdateringstidspunkt for bruger + 1030 + - 88d8dee2-2241-db11-898a-0007e9e17ebd + eb9f23dc-902e-46d8-a095-d6c99b393e62 true - Other ZIP/Postal Code + Latest User Update Time 1033 @@ -299005,7 +347980,7 @@ false iscustomizable - true + false false false @@ -299034,92 +348009,107 @@ true canmodifysearchsettings - true + false - true - true - true - true - true - true + false + false + false + false + false + false - address2_postalcode - 1900-01-01T00:00:00 + latestupdatetime + 2025-11-06T00:19:20.3369984 true canmodifyrequirementlevelsettings None - Address2_PostalCode + LatestUpdateTime - StringType + DateTimeType - 5.0.0.0 - true + 9.0.0.0 + false 0 - Text + DateAndTime Inactive - 40 - - - Text - - false 0 - 80 + + false + canmodifybehavior + false + + + UserLocal + - 16095eb8-c5f3-4180-a45b-901f9ddbeaff + 62ffea8c-fc5d-4a6b-a660-0e9695fde74f String - true - true - true + false + false + false false canmodifyadditionalsettings true - 72 + 9 1900-01-01T00:00:00 - 82d7a218-2341-db11-898a-0007e9e17ebd + 8baac7f4-2241-db11-898a-0007e9e17ebd true - Post office box number for address 2. + Middle name of the user. 1033 + + 14485882-fdf6-4def-b044-f895b2c5d6e3 + + true + Brugerens mellemnavn. + 1030 + - 82d7a218-2341-db11-898a-0007e9e17ebd + 8baac7f4-2241-db11-898a-0007e9e17ebd true - Post office box number for address 2. + Middle name of the user. 1033 - 81d7a218-2341-db11-898a-0007e9e17ebd + 8aaac7f4-2241-db11-898a-0007e9e17ebd true - Address 2: Post Office Box + Middle Name 1033 + + 46175e00-3d25-4c93-a49a-5d67b359eb12 + + true + Mellemnavn + 1030 + - 81d7a218-2341-db11-898a-0007e9e17ebd + 8aaac7f4-2241-db11-898a-0007e9e17ebd true - Address 2: Post Office Box + Middle Name 1033 @@ -299164,7 +348154,7 @@ true canmodifysearchsettings - false + true true true @@ -299173,25 +348163,25 @@ true true - address2_postofficebox + middlename 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - Address2_PostOfficeBox + MiddleName StringType 5.0.0.0 - true + false 0 Text - Inactive - 40 + Active + 50 Text @@ -299199,57 +348189,71 @@ false 0 - 80 + 100 - - 30ad07bb-37d0-4723-aa92-62f60c05fe7b + + bf56392e-41f3-4545-986d-d4d55b94cb88 - Picklist - false - false - false + String + true + true + true false canmodifyadditionalsettings - false + true - 79 + 17 1900-01-01T00:00:00 - 1726e7d6-2241-db11-898a-0007e9e17ebd + 09cee1dc-2241-db11-898a-0007e9e17ebd true - Method of shipment for address 2. + Mobile alert email address for the user. 1033 + + d4cab1ba-3872-42bb-b34e-fad973a7da6c + + true + Brugerens e-mail-adresse til mobile beskeder. + 1030 + - 1726e7d6-2241-db11-898a-0007e9e17ebd + 09cee1dc-2241-db11-898a-0007e9e17ebd true - Method of shipment for address 2. + Mobile alert email address for the user. 1033 - 1626e7d6-2241-db11-898a-0007e9e17ebd + 08cee1dc-2241-db11-898a-0007e9e17ebd true - Address 2: Shipping Method + Mobile Alert Email 1033 + + b4d6222b-2f18-4254-bc1b-0bb839fb1388 + + true + Mobil besked-e-mail + 1030 + - 1626e7d6-2241-db11-898a-0007e9e17ebd + 08cee1dc-2241-db11-898a-0007e9e17ebd true - Address 2: Shipping Method + Mobile Alert Email 1033 @@ -299280,7 +348284,7 @@ false isrenameable - false + true false false @@ -299292,268 +348296,108 @@ false - false + true canmodifysearchsettings - false + true true - false - false + true + true true true true - address2_shippingmethodcode + mobilealertemail 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - Address2_ShippingMethodCode + MobileAlertEMail - PicklistType + StringType 5.0.0.0 - true + false 0 - 1 - - 7021a000-ec06-4ac1-a6ea-c680e1fb6ef7 - - - - - a2078484-c7bb-4495-8544-f769a82dadb1 - - true - Method of shipment for address 2. - 1033 - - - - a2078484-c7bb-4495-8544-f769a82dadb1 - - true - Method of shipment for address 2. - 1033 - - - - - - 3cf3fac4-acc4-48a8-aed5-3ee7ad673bce - - true - Address 2: Shipping Method - 1033 - - - - 3cf3fac4-acc4-48a8-aed5-3ee7ad673bce - - true - Address 2: Shipping Method - 1033 - - - - false - - false - iscustomizable - true - - false - true - systemuser_address2_shippingmethodcode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 1926e7d6-2241-db11-898a-0007e9e17ebd - - true - Default Value - 1033 - - - - 1926e7d6-2241-db11-898a-0007e9e17ebd - - true - Default Value - 1033 - - - - 1 - - - - - - + Email + Inactive + 100 + + + Email + + false 0 - - + 200 - - d4ba4aec-53bd-4bed-8be7-3b5f1668417d + + 082ffd5d-99c5-432e-8180-ce5f5809170f - address2_shippingmethodcode - Virtual + + Lookup false false false - - false - canmodifyadditionalsettings - false - - 95 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - address2_shippingmethodcodename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - Address2_ShippingMethodCodeName - - - VirtualType - - 5.0.0.0 - true - - - - - c9392741-152a-46cd-9017-01b1f359e966 - - - String - true - true - true false canmodifyadditionalsettings true - 69 + 174 1900-01-01T00:00:00 - c7abc7f4-2241-db11-898a-0007e9e17ebd + 07824f9d-4a51-4900-a39e-5c8d5feb8d07 true - State or province for address 2. + Items contained with a particular SystemUser. 1033 + + fbbb28c8-b66b-4165-bc74-105f47c46551 + + true + Elementer for en bestemt systembruger. + 1030 + - c7abc7f4-2241-db11-898a-0007e9e17ebd + 07824f9d-4a51-4900-a39e-5c8d5feb8d07 true - State or province for address 2. + Items contained with a particular SystemUser. 1033 - c6abc7f4-2241-db11-898a-0007e9e17ebd + 26dfece2-1538-4525-b497-4156ec791c6c true - Other State/Province + Mobile Offline Profile 1033 + + b4e8c9d6-0eb3-4b1d-a86f-791db5a45831 + + true + Mobile Offline-profil + 1030 + - c6abc7f4-2241-db11-898a-0007e9e17ebd + 26dfece2-1538-4525-b497-4156ec791c6c true - Other State/Province + Mobile Offline Profile 1033 @@ -299569,7 +348413,7 @@ false iscustomizable - true + false false false @@ -299584,7 +348428,7 @@ false isrenameable - true + false false false @@ -299598,94 +348442,59 @@ true canmodifysearchsettings - true + false true - true + false true true true true - address2_stateorprovince + mobileofflineprofileid 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - Address2_StateOrProvince + MobileOfflineProfileId - StringType + LookupType - 5.0.0.0 - true - 0 + 8.0.0.0 + false + - Text - Active - 128 - - - Text - - - false - 0 - 256 + None + + mobileofflineprofile + - 97432486-e477-4092-bdaa-e4e0fbb5aa0b + be56dc1e-f779-4f7f-861a-359bebc8defe - + mobileofflineprofileid String - true - true - true + false + false + false false canmodifyadditionalsettings true - 77 + 175 1900-01-01T00:00:00 - - - 21e8af0c-2341-db11-898a-0007e9e17ebd - - true - First telephone number associated with address 2. - 1033 - - - - 21e8af0c-2341-db11-898a-0007e9e17ebd - - true - First telephone number associated with address 2. - 1033 - + + - - - 20e8af0c-2341-db11-898a-0007e9e17ebd - - true - Address 2: Telephone 1 - 1033 - - - - 20e8af0c-2341-db11-898a-0007e9e17ebd - - true - Address 2: Telephone 1 - 1033 - + + systemuser @@ -299699,7 +348508,7 @@ false iscustomizable - true + false false false @@ -299714,7 +348523,7 @@ false isrenameable - true + false false false @@ -299731,42 +348540,42 @@ false true - true - true + false + false true true - true + false - address2_telephone1 + mobileofflineprofileidname 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - Address2_Telephone1 + MobileOfflineProfileIdName StringType - 5.0.0.0 + 8.0.0.0 true 0 Text - Inactive - 50 + Auto + 100 - Phone + Text false 0 - 100 + 200 - beda09f2-bcf8-4c7a-895a-b3e9a9c2e485 + 6b307158-6c06-46e7-82e4-addce8aba8f1 String @@ -299778,42 +348587,56 @@ canmodifyadditionalsettings true - 80 + 20 1900-01-01T00:00:00 - 229af6ca-2241-db11-898a-0007e9e17ebd + 92d6a218-2341-db11-898a-0007e9e17ebd true - Second telephone number associated with address 2. + Mobile phone number for the user. 1033 + + bd5e988b-c8ab-4007-8f48-0f66ce33210a + + true + Brugerens mobilnummer. + 1030 + - 229af6ca-2241-db11-898a-0007e9e17ebd + 92d6a218-2341-db11-898a-0007e9e17ebd true - Second telephone number associated with address 2. + Mobile phone number for the user. 1033 - 219af6ca-2241-db11-898a-0007e9e17ebd + 91d6a218-2341-db11-898a-0007e9e17ebd true - Address 2: Telephone 2 + Mobile Phone 1033 + + 63f3f325-b714-4ad4-94c7-625dc2fd9ceb + + true + Mobiltelefon + 1030 + - 219af6ca-2241-db11-898a-0007e9e17ebd + 91d6a218-2341-db11-898a-0007e9e17ebd true - Address 2: Telephone 2 + Mobile Phone 1033 @@ -299858,7 +348681,7 @@ true canmodifysearchsettings - false + true true true @@ -299867,25 +348690,25 @@ true true - address2_telephone2 + mobilephone 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - Address2_Telephone2 + MobilePhone StringType 5.0.0.0 - true + false 0 Text Inactive - 50 + 64 Phone @@ -299893,57 +348716,71 @@ false 0 - 100 + 128 - - 3d7a44fd-816e-4c32-a516-edde9a886012 + + bf721e7f-a2cc-4652-af09-a350ed1213e1 - String - true - true - true + Lookup + false + false + false false canmodifyadditionalsettings true - 81 + 33 1900-01-01T00:00:00 - feaac7f4-2241-db11-898a-0007e9e17ebd + 96e8af0c-2341-db11-898a-0007e9e17ebd true - Third telephone number associated with address 2. + Unique identifier of the user who last modified the user. 1033 + + 6acc88d7-2757-4b53-97ef-1ea69fc00219 + + true + Entydigt id for den bruger, der sidst ændrede brugeren. + 1030 + - feaac7f4-2241-db11-898a-0007e9e17ebd + 96e8af0c-2341-db11-898a-0007e9e17ebd true - Third telephone number associated with address 2. + Unique identifier of the user who last modified the user. 1033 - fdaac7f4-2241-db11-898a-0007e9e17ebd + 95e8af0c-2341-db11-898a-0007e9e17ebd true - Address 2: Telephone 3 + Modified By 1033 + + a104ed67-79dc-4551-a8fc-81e4656ac6c3 + + true + Ændret af + 1030 + - fdaac7f4-2241-db11-898a-0007e9e17ebd + 95e8af0c-2341-db11-898a-0007e9e17ebd true - Address 2: Telephone 3 + Modified By 1033 @@ -299951,9 +348788,9 @@ - true + false canmodifyauditsettings - true + false false @@ -299988,47 +348825,40 @@ true canmodifysearchsettings - false + true - true + false true true true - true + false true - address2_telephone3 + modifiedby 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - Address2_Telephone3 + ModifiedBy - StringType + LookupType 5.0.0.0 - true - 0 + false + - Text - Inactive - 50 - - - Phone - - - false - 0 - 100 + None + + systemuser + - 5697807a-a31a-4b7c-8b51-acc284b4cd42 + b3ca4204-d054-4f36-b70b-bcfac17be161 - + modifiedby String false false @@ -300038,58 +348868,30 @@ canmodifyadditionalsettings false - 75 + 85 1900-01-01T00:00:00 - - - a626e7d6-2241-db11-898a-0007e9e17ebd - - true - United Parcel Service (UPS) zone for address 2. - 1033 - - - - a626e7d6-2241-db11-898a-0007e9e17ebd - - true - United Parcel Service (UPS) zone for address 2. - 1033 - + + - - - a526e7d6-2241-db11-898a-0007e9e17ebd - - true - Address 2: UPS Zone - 1033 - - - - a526e7d6-2241-db11-898a-0007e9e17ebd - - true - Address 2: UPS Zone - 1033 - + + systemuser - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -300120,21 +348922,21 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - address2_upszone + modifiedbyname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Address2_UPSZone + ModifiedByName StringType @@ -300145,7 +348947,7 @@ Text Auto - 4 + 100 Text @@ -300153,13 +348955,13 @@ false 0 - 8 + 513 - - 2159eedb-9b87-43ce-b120-d1c4eb89f899 + + dd14a38c-6c4a-4780-91fa-cc9144f4b227 - - Integer + modifiedby + String false false false @@ -300168,58 +348970,30 @@ canmodifyadditionalsettings false - 74 + 125 1900-01-01T00:00:00 - - - 2de0eed0-2241-db11-898a-0007e9e17ebd - - true - UTC offset for address 2. This is the difference between local time and standard Coordinated Universal Time. - 1033 - - - - 2de0eed0-2241-db11-898a-0007e9e17ebd - - true - UTC offset for address 2. This is the difference between local time and standard Coordinated Universal Time. - 1033 - + + - - - 2ce0eed0-2241-db11-898a-0007e9e17ebd - - true - Address 2: UTC Offset - 1033 - - - - 2ce0eed0-2241-db11-898a-0007e9e17ebd - - true - Address 2: UTC Offset - 1033 - + + systemuser - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -300250,40 +349024,46 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - address2_utcoffset + modifiedbyyominame 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - Address2_UTCOffset + ModifiedByYomiName - IntegerType + StringType 5.0.0.0 true 0 - TimeZone - 1500 - -1500 + Text + Auto + 100 + modifiedbyname + + Text + + false 0 + 513 - - 6fb146b4-88bd-4aa9-956d-24ebf67fb330 + + 2b80cb77-5cc5-4564-b661-867336bdbb29 - Uniqueidentifier + DateTime false false false @@ -300292,42 +349072,56 @@ canmodifyadditionalsettings true - 182 + 29 1900-01-01T00:00:00 - 08083661-10ee-41b6-83f0-7b07087c5a3c + a190aa12-2341-db11-898a-0007e9e17ebd true - The identifier for the application. This is used to access data in another application. + Date and time when the user was last modified. 1033 + + 845c4a71-d244-4a6d-9c27-5c7e8792cfaf + + true + Dato og klokkeslæt for den seneste ændring af brugeren. + 1030 + - 08083661-10ee-41b6-83f0-7b07087c5a3c + a190aa12-2341-db11-898a-0007e9e17ebd true - The identifier for the application. This is used to access data in another application. + Date and time when the user was last modified. 1033 - a4ceb3ca-b68f-4dcc-9015-37da75f7daf0 + a090aa12-2341-db11-898a-0007e9e17ebd true - Application ID + Modified On 1033 + + 4d46fccd-a188-47a0-be52-95a360b2ad2f + + true + Ændret + 1030 + - a4ceb3ca-b68f-4dcc-9015-37da75f7daf0 + a090aa12-2341-db11-898a-0007e9e17ebd true - Application ID + Modified On 1033 @@ -300337,7 +349131,7 @@ false canmodifyauditsettings - true + false false @@ -300346,7 +349140,7 @@ true false - false + true true canmodifyglobalfiltersettings @@ -300360,8 +349154,8 @@ isrenameable true - true - false + false + true false false @@ -300374,35 +349168,47 @@ canmodifysearchsettings true - true + false true true true - true + false true - applicationid + modifiedon 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - ApplicationId + ModifiedOn - UniqueidentifierType + DateTimeType - 8.2.0.0 + 5.0.0.0 false - + 0 + DateAndTime + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + - - ac143140-4bd4-42a3-9a3a-e165338e533f + + 08c19146-71d8-4da9-8f04-c749dff9bb69 - String + Lookup false false false @@ -300411,42 +349217,56 @@ canmodifyadditionalsettings true - 183 + 137 1900-01-01T00:00:00 - 6f038f09-a410-4f23-95bb-f55aa2f4acf6 + b06c14e8-039a-4d4a-8f47-991950b5dac8 true - The URI used as a unique logical identifier for the external app. This can be used to validate the application. + Unique identifier of the delegate user who last modified the systemuser. 1033 + + 4c5bf756-b645-402b-9cab-9543272a0e79 + + true + Entydigt id for den stedfortræderbruger, der senest ændrede systembrugeren. + 1030 + - 6f038f09-a410-4f23-95bb-f55aa2f4acf6 + b06c14e8-039a-4d4a-8f47-991950b5dac8 true - The URI used as a unique logical identifier for the external app. This can be used to validate the application. + Unique identifier of the delegate user who last modified the systemuser. 1033 - 21aebc34-08c0-43e2-801e-537819074c33 + f106516b-d13a-4592-a2da-c291327190c3 true - Application ID URI + Modified By (Delegate) 1033 + + fd5fe3f0-58c2-4d55-8138-9ee5a72ed9b6 + + true + Ændret af (stedfortræder) + 1030 + - 21aebc34-08c0-43e2-801e-537819074c33 + f106516b-d13a-4592-a2da-c291327190c3 true - Application ID URI + Modified By (Delegate) 1033 @@ -300456,7 +349276,7 @@ false canmodifyauditsettings - true + false false @@ -300500,85 +349320,50 @@ false true - applicationiduri + modifiedonbehalfby 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - ApplicationIdUri + ModifiedOnBehalfBy - StringType + LookupType - 8.2.0.0 + 5.0.0.0 false - 0 + - Text - Auto - 1024 - - - Text - - - false - 0 - 2048 + None + + systemuser + - - 2578fcdc-3074-4ec5-b213-1d9f959c91fc + + 72f20d7f-54bd-4bff-a1be-e5fd07e23acc - - Uniqueidentifier + modifiedonbehalfby + String false false false false canmodifyadditionalsettings - true + false - 184 + 139 1900-01-01T00:00:00 - - - 3fb0a281-6e61-4d69-8fd0-da24f937e77a - - true - This is the application directory object Id. - 1033 - - - - 3fb0a281-6e61-4d69-8fd0-da24f937e77a - - true - This is the application directory object Id. - 1033 - + + - - - 1a757da0-8fa6-45b5-b7e8-943d797c01ce - - true - Azure AD Object ID - 1033 - - - - 1a757da0-8fa6-45b5-b7e8-943d797c01ce - - true - Azure AD Object ID - 1033 - + + systemuser @@ -300586,7 +349371,7 @@ false canmodifyauditsettings - true + false false @@ -300607,7 +349392,7 @@ false isrenameable - true + false false false @@ -300619,85 +349404,68 @@ false - true + false canmodifysearchsettings - true + false false - true - true + false + false true false - true + false - azureactivedirectoryobjectid + modifiedonbehalfbyname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - AzureActiveDirectoryObjectId + ModifiedOnBehalfByName - UniqueidentifierType + StringType - 8.2.0.0 - false - + 5.0.0.0 + true + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 513 - - 06e36238-41a2-11ec-8373-a4ae128009be + + d9e22f68-57ed-49fa-b2a9-9fdc85e506b5 - - DateTime - true - true - true + modifiedonbehalfby + String + false + false + false false canmodifyadditionalsettings - true + false - 10004 - 2025-11-06T02:05:46.5170048 + 140 + 1900-01-01T00:00:00 - - - 758ab502-dd04-4f4e-a4de-452ff7c74030 - - true - Date and time when the user was set as soft deleted in Azure. - 1033 - - - - 758ab502-dd04-4f4e-a4de-452ff7c74030 - - true - Date and time when the user was set as soft deleted in Azure. - 1033 - + + - - - 93eb58c5-d69a-4eb0-9d97-5e7b82de4a1e - - true - Azure Deleted On - 1033 - - - - 93eb58c5-d69a-4eb0-9d97-5e7b82de4a1e - - true - Azure Deleted On - 1033 - + + systemuser @@ -300711,10 +349479,10 @@ false iscustomizable - true + false false - true + false true canmodifyglobalfiltersettings @@ -300726,10 +349494,10 @@ false isrenameable - true + false false - true + false false false @@ -300738,95 +349506,108 @@ false - true + false canmodifysearchsettings - true + false false - true - true + false + false true false - true + false - azuredeletedon - 2025-11-06T02:05:46.5170048 + modifiedonbehalfbyyominame + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - AzureDeletedOn + ModifiedOnBehalfByYomiName - DateTimeType + StringType - 9.2.0.0 - false + 5.0.0.0 + true 0 - - DateAndTime - Inactive - + + Text + Auto + 100 + modifiedonbehalfbyname + + Text + + + false 0 - - true - canmodifybehavior - true - - - UserLocal - + 513 - - 06e36233-41a2-11ec-8373-a4ae128009be + + 75bffba4-9be4-4159-9a42-a0a0663de034 - Picklist - false - false - false + String + true + true + true false canmodifyadditionalsettings true - 10002 - 2025-11-06T02:05:46.5030016 + 13 + 1900-01-01T00:00:00 - 2047db4b-9346-4844-8c09-b6e64a83d9fd + 3b90aa12-2341-db11-898a-0007e9e17ebd true - Azure state of user + Nickname of the user. 1033 + + db8dfbfd-6f0e-489f-99ad-da0aac84f818 + + true + Brugerens kælenavn. + 1030 + - 2047db4b-9346-4844-8c09-b6e64a83d9fd + 3b90aa12-2341-db11-898a-0007e9e17ebd true - Azure state of user + Nickname of the user. 1033 - cc9c880d-cda8-41f0-a117-59e51235d4f6 + 3a90aa12-2341-db11-898a-0007e9e17ebd true - Azure State + Nickname 1033 + + 4fc15a52-7772-4c8c-916f-8d92382f2616 + + true + Kaldenavn + 1030 + - cc9c880d-cda8-41f0-a117-59e51235d4f6 + 3a90aa12-2341-db11-898a-0007e9e17ebd true - Azure State + Nickname 1033 @@ -300873,286 +349654,46 @@ canmodifysearchsettings true - false + true true true true true true - azurestate - 2025-11-06T02:05:46.5030016 + nickname + 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - AzureState + NickName - PicklistType + StringType - 9.2.0.0 + 5.0.0.0 false 0 - - 0 - - 9c60d714-b5ba-f011-bbd3-7c1e52365f30 - - - - - 9e60d714-b5ba-f011-bbd3-7c1e52365f30 - - true - Azure state of user. - 1033 - - - - 9e60d714-b5ba-f011-bbd3-7c1e52365f30 - - true - Azure state of user. - 1033 - - - - - - 9d60d714-b5ba-f011-bbd3-7c1e52365f30 - - true - Azure State - 1033 - - - - 9d60d714-b5ba-f011-bbd3-7c1e52365f30 - - true - Azure State - 1033 - - - - false - - false - iscustomizable - false - - false - true - systemuser_azurestate - Picklist - 9.2.0.0 - - - - - - - - - - - false - true - - - - 9a7c2255-c258-40a6-a56a-2eb1456513b0 - - true - Exists - 1033 - - - - 9a7c2255-c258-40a6-a56a-2eb1456513b0 - - true - Exists - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 4e1622e7-1422-48e1-8ecb-312386e2e912 - - true - Soft deleted - 1033 - - - - 4e1622e7-1422-48e1-8ecb-312386e2e912 - - true - Soft deleted - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - e9d367e6-5320-43b1-9fab-1d1933318ac4 - - true - Not found or hard deleted - 1033 - - - - e9d367e6-5320-43b1-9fab-1d1933318ac4 - - true - Not found or hard deleted - 1033 - - - - 2 - - - - - - - + + Text + Auto + 50 + + + Text + + + false 0 - - + 100 - 3891f691-e017-4aca-9938-541d3ad75dc9 - - azurestate - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 10003 - 2025-11-06T02:05:46.5170048 - - - - - - - - - - systemuser - - - - true - canmodifyauditsettings - false - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - azurestatename - 2025-11-06T02:05:46.5170048 - - true - canmodifyrequirementlevelsettings - None - - azurestateName - - - VirtualType - - 9.2.0.0 - true - - - - - 35015bd2-c0fc-4299-a90b-ed174ca22291 + fd1f7f4f-ebfc-4635-8955-a3f9cfde2e73 - Lookup + Uniqueidentifier false false false @@ -301161,42 +349702,56 @@ canmodifyadditionalsettings true - 5 + 4 1900-01-01T00:00:00 - e8dfeed0-2241-db11-898a-0007e9e17ebd + 2153c2fa-2241-db11-898a-0007e9e17ebd true - Unique identifier of the business unit with which the user is associated. + Unique identifier of the organization associated with the user. 1033 + + 8a4bbaec-05b1-4561-9a96-9007b9b103f3 + + true + Entydigt id for den organisation, der er tilknyttet brugeren. + 1030 + - e8dfeed0-2241-db11-898a-0007e9e17ebd + 2153c2fa-2241-db11-898a-0007e9e17ebd true - Unique identifier of the business unit with which the user is associated. + Unique identifier of the organization associated with the user. 1033 - e7dfeed0-2241-db11-898a-0007e9e17ebd + 2053c2fa-2241-db11-898a-0007e9e17ebd true - Business Unit + Organization 1033 + + ba9fc515-c11e-453a-aeda-a84620407bdf + + true + Organisation + 1030 + - e7dfeed0-2241-db11-898a-0007e9e17ebd + 2053c2fa-2241-db11-898a-0007e9e17ebd true - Business Unit + Organization 1033 @@ -301204,9 +349759,9 @@ - true + false canmodifyauditsettings - true + false false @@ -301215,7 +349770,7 @@ true false - true + false true canmodifyglobalfiltersettings @@ -301230,7 +349785,7 @@ true false - true + false false false @@ -301241,40 +349796,36 @@ true canmodifysearchsettings - true + false - true + false true true true - true + false true - businessunitid + organizationid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - BusinessUnitId + OrganizationId - LookupType + UniqueidentifierType 5.0.0.0 false - None - - businessunit - - 28073e70-c8ee-4fdf-99fe-e4af55b5cf64 + 6080262a-f6bb-440d-ab60-a1807a383974 - businessunitid + organizationid String false false @@ -301284,7 +349835,7 @@ canmodifyadditionalsettings false - 87 + 89 1900-01-01T00:00:00 @@ -301345,14 +349896,14 @@ false false - businessunitidname + organizationidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - BusinessUnitIdName + OrganizationIdName StringType @@ -301373,178 +349924,69 @@ 0 320 - - b93426bd-0b92-433c-bfd3-d9738d3364f3 + + c8d1b5bd-d028-4cc5-a487-697bc89c54aa - Lookup + Picklist false false false false canmodifyadditionalsettings - false + true - 101 + 111 1900-01-01T00:00:00 - 8440b506-2341-db11-898a-0007e9e17ebd + dd25e7d6-2241-db11-898a-0007e9e17ebd true - Fiscal calendar associated with the user. + Outgoing email delivery method for the user. 1033 - - - 8440b506-2341-db11-898a-0007e9e17ebd - - true - Fiscal calendar associated with the user. - 1033 - - - - - 8340b506-2341-db11-898a-0007e9e17ebd + 6abc1c57-29a9-45ad-8bf7-82df12a2f062 true - Calendar - 1033 + Leveringsmetode for udgående e-mail for brugeren. + 1030 - 8340b506-2341-db11-898a-0007e9e17ebd + dd25e7d6-2241-db11-898a-0007e9e17ebd true - Calendar + Outgoing email delivery method for the user. 1033 - - systemuser - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - calendarid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - CalendarId - - - LookupType - - 5.0.0.0 - false - - - None - - calendar - - - - 66dd5cca-890f-4420-b8f8-db19ed4fb273 - - - Picklist - false - false - false - - false - canmodifyadditionalsettings - true - - 148 - 1900-01-01T00:00:00 - - + + - a55b4006-016d-4a5d-87c7-b9902469e859 + dc25e7d6-2241-db11-898a-0007e9e17ebd true - License type of user. This is used only in the on-premises version of the product. Online licenses are managed through Microsoft 365 Office Portal + Outgoing Email Delivery Method 1033 - - - a55b4006-016d-4a5d-87c7-b9902469e859 - - true - License type of user. This is used only in the on-premises version of the product. Online licenses are managed through Microsoft 365 Office Portal - 1033 - - - - - 8b50fc86-87c0-438b-abc5-a65747cb810a + 72731c71-e2ee-4090-949e-bc2953d35da6 true - License Type - 1033 + Leveringsmetode for udgående e-mail + 1030 - 8b50fc86-87c0-438b-abc5-a65747cb810a + dc25e7d6-2241-db11-898a-0007e9e17ebd true - License Type + Outgoing Email Delivery Method 1033 @@ -301598,14 +350040,14 @@ true true - caltype - 2025-11-06T02:05:46.2200064 + outgoingemaildeliverymethod + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings SystemRequired - CALType + OutgoingEmailDeliveryMethod PicklistType @@ -301614,323 +350056,73 @@ false 0 - 0 + 1 - c5157c5f-9375-446c-8e8b-1659c0c5d54c + 7bd32f60-d135-4251-a399-2998b47290fd - f8789b2b-d0f3-4373-9fd1-4e5b9925c24a + 67b05631-0aa1-4150-87bd-5814f509f428 true - License type of user. This is used only in the on-premises version of the product. Online licenses are managed through Microsoft 365 Office Portal. + Outgoing email delivery method for the user. 1033 + + 7df29fc3-4ed7-4751-8c28-8dd0b28f5894 + + true + Leveringsmetode for udgående e-mail for brugeren. + 1030 + - f8789b2b-d0f3-4373-9fd1-4e5b9925c24a + 67b05631-0aa1-4150-87bd-5814f509f428 true - License type of user. This is used only in the on-premises version of the product. Online licenses are managed through Microsoft 365 Office Portal. + Outgoing email delivery method for the user. 1033 - 6f80afe4-6545-4405-8392-301174509388 + 35f6c3d4-1f89-4511-9a15-e6a7c4353c5a true - CAL Type + Outgoing Email Delivery Method 1033 + + c9d8606b-6245-4892-bf7d-56705b1934dc + + true + Leveringsmetode for udgående e-mail + 1030 + - 6f80afe4-6545-4405-8392-301174509388 - - true - CAL Type - 1033 - - - - false - - false - iscustomizable - false - - false - true - systemuser_caltype - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - 29bea609-a46a-43ee-b6ee-f62db24dab3b - - true - Professional - 1033 - - - - 29bea609-a46a-43ee-b6ee-f62db24dab3b - - true - Professional - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 55794556-eb1a-44a4-bd30-2ccd78b3e1cb - - true - Administrative - 1033 - - - - 55794556-eb1a-44a4-bd30-2ccd78b3e1cb - - true - Administrative - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - 965abba1-e50d-492c-ac84-be6299357d11 - - true - Basic - 1033 - - - - 965abba1-e50d-492c-ac84-be6299357d11 - - true - Basic - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 4b33d103-57b3-4b16-a420-a258fb762688 - - true - Device Professional - 1033 - - - - 4b33d103-57b3-4b16-a420-a258fb762688 - - true - Device Professional - 1033 - - - - 3 - - - - - - - - - - - - false - true - - - - bc2c55a1-d48c-48c4-acbc-85f6498356c2 - - true - Device Basic - 1033 - - - - bc2c55a1-d48c-48c4-acbc-85f6498356c2 - - true - Device Basic - 1033 - - - - 4 - - - - - - - - - - - - false - true - - - - c7998cd9-ec62-4333-9596-58ed8a021e7c - - true - Essential - 1033 - - - - c7998cd9-ec62-4333-9596-58ed8a021e7c - - true - Essential - 1033 - - - - 5 - - - - - - - - - - - - false - true - - - - a1a32202-77fc-41b5-9711-bc869d57b6f4 - - true - Device Essential - 1033 - - - - a1a32202-77fc-41b5-9711-bc869d57b6f4 - - true - Device Essential - 1033 - - - - 6 - - - - - - - - - - - - false - true - - - - 65679ed3-3e43-4160-b742-d5489b63e035 - - true - Enterprise - 1033 - - - - 65679ed3-3e43-4160-b742-d5489b63e035 - - true - Enterprise - 1033 - - - - 7 - - + 35f6c3d4-1f89-4511-9a15-e6a7c4353c5a + + true + Outgoing Email Delivery Method + 1033 + + + + false + + false + iscustomizable + false + + false + true + systemuser_outgoingemaildeliverymethod + Picklist + 5.0.0.0 + @@ -301945,56 +350137,30 @@ - e4e054c4-3036-4603-8ab2-8fcacba6e827 + df25e7d6-2241-db11-898a-0007e9e17ebd true - Device Enterprise + None 1033 - - - e4e054c4-3036-4603-8ab2-8fcacba6e827 - - true - Device Enterprise - 1033 - - - - 8 - - - - - - - - - - - - false - true - - - 10ef3d1b-cde2-499c-bceb-5725abb3446b + 66d25985-3d59-441d-a5ab-8ef6dcb7740e true - Sales - 1033 + Ingen + 1030 - 10ef3d1b-cde2-499c-bceb-5725abb3446b + df25e7d6-2241-db11-898a-0007e9e17ebd true - Sales + None 1033 - 9 + 0 @@ -302011,56 +350177,30 @@ - 5f73e641-a839-4130-a6a3-d7d5f3803f28 + e125e7d6-2241-db11-898a-0007e9e17ebd true - Service + Microsoft Dynamics 365 for Outlook 1033 - - - 5f73e641-a839-4130-a6a3-d7d5f3803f28 - - true - Service - 1033 - - - - 10 - - - - - - - - - - - - false - true - - - f53550e2-3f29-45ec-b982-488711928878 + f8fb21bf-4fda-44d8-bc9b-b6f3b4450b79 true - Field Service - 1033 + Microsoft Dynamics 365 til Outlook + 1030 - f53550e2-3f29-45ec-b982-488711928878 + e125e7d6-2241-db11-898a-0007e9e17ebd true - Field Service + Microsoft Dynamics 365 for Outlook 1033 - 11 + 1 @@ -302077,23 +350217,30 @@ - 0e9781de-1c82-4067-955e-d3354762fd86 + e325e7d6-2241-db11-898a-0007e9e17ebd true - Project Service + Server-Side Synchronization or Email Router 1033 + + 055922c3-3e67-40aa-8564-9b7cb0d8cc94 + + true + Synkronisering på serversiden eller E-mail Router + 1030 + - 0e9781de-1c82-4067-955e-d3354762fd86 + e325e7d6-2241-db11-898a-0007e9e17ebd true - Project Service + Server-Side Synchronization or Email Router 1033 - 12 + 2 @@ -302106,9 +350253,9 @@ - 20732a90-51fa-4715-b458-1c47eab335de + 774ea61c-2e60-4bf1-a2dc-c383a04a1e30 - caltype + outgoingemaildeliverymethod Virtual false false @@ -302118,7 +350265,7 @@ canmodifyadditionalsettings false - 149 + 121 1900-01-01T00:00:00 @@ -302179,14 +350326,14 @@ false false - caltypename + outgoingemaildeliverymethodname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CALTypeName + OutgoingEmailDeliveryMethodName VirtualType @@ -302196,11 +350343,11 @@ - - 81f443f8-f55b-4030-af24-75613658cf9d + + 643d1a57-9b14-422e-8398-c652eb052f73 - Lookup + DateTime false false false @@ -302209,42 +350356,56 @@ canmodifyadditionalsettings true - 31 + 116 1900-01-01T00:00:00 - 329af6ca-2241-db11-898a-0007e9e17ebd + 43f233e4-de54-4e5e-9103-93497a991cfb true - Unique identifier of the user who created the user. + Date and time that the record was migrated. 1033 + + f165a4ce-6b5a-47e8-89e4-cc82ed949c51 + + true + Dato og klokkeslæt for overførsel af posten. + 1030 + - 329af6ca-2241-db11-898a-0007e9e17ebd + 43f233e4-de54-4e5e-9103-93497a991cfb true - Unique identifier of the user who created the user. + Date and time that the record was migrated. 1033 - 319af6ca-2241-db11-898a-0007e9e17ebd + c37d26e5-56e0-448f-89d6-d638e441c54d true - Created By + Record Created On 1033 + + fb4e434c-f6c3-49ae-82e2-9215ac1f0a09 + + true + Posten blev oprettet den + 1030 + - 319af6ca-2241-db11-898a-0007e9e17ebd + c37d26e5-56e0-448f-89d6-d638e441c54d true - Created By + Record Created On 1033 @@ -302252,9 +350413,9 @@ - false + true canmodifyauditsettings - false + true false @@ -302291,71 +350452,121 @@ canmodifysearchsettings true - false - true + true + false true true false true - createdby + overriddencreatedon 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - CreatedBy + OverriddenCreatedOn - LookupType + DateTimeType 5.0.0.0 false - + 0 - None - - systemuser - + DateOnly + Inactive + + 0 + + false + canmodifybehavior + false + + + UserLocal + - - 77beb2fd-e667-4149-bb37-88c825203b69 + + 613340d6-2d52-4b72-b94b-bbfbe059328f - createdby - String + + Lookup false false false false canmodifyadditionalsettings - false + true - 83 + 6 1900-01-01T00:00:00 - - + + + 7b52c2fa-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the manager of the user. + 1033 + + + 2b6a56a5-be7f-48e2-88b4-6e038e496d3f + + true + Entydigt id for brugerens leder. + 1030 + + + + 7b52c2fa-2241-db11-898a-0007e9e17ebd + + true + Unique identifier of the manager of the user. + 1033 + - - + + + 7a52c2fa-2241-db11-898a-0007e9e17ebd + + true + Manager + 1033 + + + 108e1181-3343-44b2-86df-db4b1ffc0760 + + true + Leder + 1030 + + + + 7a52c2fa-2241-db11-898a-0007e9e17ebd + + true + Manager + 1033 + systemuser - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -302370,7 +350581,7 @@ false isrenameable - false + true false false @@ -302382,49 +350593,42 @@ false - false + true canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - createdbyname + parentsystemuserid 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - CreatedByName + ParentSystemUserId - StringType + LookupType 5.0.0.0 - true - 0 + false + - Text - Auto - 100 - - - Text - - - false - 0 - 513 + None + + systemuser + - 919647b8-9e22-4b06-8765-acf6dec273a3 + d6549e0c-8a35-420f-be97-66b9f99e07ba - createdby + parentsystemuserid String false false @@ -302434,7 +350638,7 @@ canmodifyadditionalsettings false - 127 + 37 1900-01-01T00:00:00 @@ -302495,14 +350699,14 @@ false false - createdbyyominame + parentsystemuseridname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedByYomiName + ParentSystemUserIdName StringType @@ -302514,7 +350718,7 @@ Text Auto 100 - createdbyname + Text @@ -302523,57 +350727,29 @@ 0 513 - - fe896b07-f735-4979-9411-9a1b9584bead + + e5b6104b-733b-4bd4-a01d-7da150c03487 - - DateTime + parentsystemuserid + String false false false false canmodifyadditionalsettings - true + false - 26 + 123 1900-01-01T00:00:00 - - - 404901bf-2241-db11-898a-0007e9e17ebd - - true - Date and time when the user was created. - 1033 - - - - 404901bf-2241-db11-898a-0007e9e17ebd - - true - Date and time when the user was created. - 1033 - + + - - - 3f4901bf-2241-db11-898a-0007e9e17ebd - - true - Created On - 1033 - - - - 3f4901bf-2241-db11-898a-0007e9e17ebd - - true - Created On - 1033 - + + systemuser @@ -302587,10 +350763,10 @@ false iscustomizable - true + false false - true + false true canmodifyglobalfiltersettings @@ -302602,10 +350778,10 @@ false isrenameable - true + false false - true + false false false @@ -302614,95 +350790,108 @@ false - true + false canmodifysearchsettings - true + false false - true - true + false + false true false - true + false - createdon + parentsystemuseridyominame 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - CreatedOn + ParentSystemUserIdYomiName - DateTimeType + StringType 5.0.0.0 - false + true 0 - DateAndTime - Inactive + Text + Auto + 100 + parentsystemuseridname + + Text + + false 0 - - false - canmodifybehavior - false - - - UserLocal - + 513 - - a8dd80af-54b2-46a4-a88f-8c1f616af298 + + 185ab2d7-4943-4809-87f1-59db62647948 - Lookup + Integer false false false false canmodifyadditionalsettings - true + false - 133 + 27 1900-01-01T00:00:00 - 4a39a849-51f6-408f-9880-e9caa87c4cdf + d251c2fa-2241-db11-898a-0007e9e17ebd true - Unique identifier of the delegate user who created the systemuser. + For internal use only. 1033 + + 4fff7369-31d4-4cd6-837f-4c1a434bdebd + + true + Kun til intern brug. + 1030 + - 4a39a849-51f6-408f-9880-e9caa87c4cdf + d251c2fa-2241-db11-898a-0007e9e17ebd true - Unique identifier of the delegate user who created the systemuser. + For internal use only. 1033 - 6b2fe069-d2d9-4fdb-8b60-28e335ece715 + d151c2fa-2241-db11-898a-0007e9e17ebd true - Created By (Delegate) + Passport Hi 1033 + + b78fe771-cefd-4be5-a452-c0317362e762 + + true + Passport Høj + 1030 + - 6b2fe069-d2d9-4fdb-8b60-28e335ece715 + d151c2fa-2241-db11-898a-0007e9e17ebd true - Created By (Delegate) + Passport Hi 1033 @@ -302733,7 +350922,7 @@ false isrenameable - true + false false false @@ -302745,43 +350934,44 @@ false - true + false canmodifysearchsettings - true + false - false - true - true + true + false + false true - false + true true - createdonbehalfby + passporthi 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - CreatedOnBehalfBy + PassportHi - LookupType + IntegerType 5.0.0.0 false - + 0 None - - systemuser - + 1000000000 + 0 + + 0 - - 1f52614c-144b-4f18-95d8-1c9c16d2d917 + + b2d2c142-deb5-4a86-bf52-4bc4b750f4d0 - createdonbehalfby - String + + Integer false false false @@ -302790,16 +350980,58 @@ canmodifyadditionalsettings false - 141 + 25 1900-01-01T00:00:00 - - + + + 061ed7e8-2241-db11-898a-0007e9e17ebd + + true + For internal use only. + 1033 + + + 662be931-99bc-4df0-a350-ab2e446bd877 + + true + Kun til intern brug. + 1030 + + + + 061ed7e8-2241-db11-898a-0007e9e17ebd + + true + For internal use only. + 1033 + - - + + + 051ed7e8-2241-db11-898a-0007e9e17ebd + + true + Passport Lo + 1033 + + + 126c6a20-8050-45c3-8cca-3d12ecaf1c8b + + true + Passport Lav + 1030 + + + + 051ed7e8-2241-db11-898a-0007e9e17ebd + + true + Passport Lo + 1033 + systemuser @@ -302813,7 +351045,7 @@ false iscustomizable - false + true false false @@ -302844,78 +351076,114 @@ canmodifysearchsettings false - false + true false false true - false - false + true + true - createdonbehalfbyname + passportlo 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - CreatedOnBehalfByName + PassportLo - StringType + IntegerType 5.0.0.0 - true + false 0 - Text - Auto - 100 - - - Text - + None + 1000000000 + 0 - false 0 - 513 - e6e65ae4-4d5d-4bf9-9819-5f329fb54046 + 7e118801-6843-4a97-9436-09af63a1259c - createdonbehalfby + String - false - false - false + true + true + true false canmodifyadditionalsettings - false + true - 142 + 11 1900-01-01T00:00:00 - - + + + 3baac7f4-2241-db11-898a-0007e9e17ebd + + true + Personal email address of the user. + 1033 + + + a52a6cde-24a5-479b-8483-15af88d5e983 + + true + Brugerens personlige e-mail-adresse. + 1030 + + + + 3baac7f4-2241-db11-898a-0007e9e17ebd + + true + Personal email address of the user. + 1033 + - - + + + 3aaac7f4-2241-db11-898a-0007e9e17ebd + + true + Email 2 + 1033 + + + a69b1a78-f46b-4641-a102-abf297043628 + + true + Mail 2 + 1030 + + + + 3aaac7f4-2241-db11-898a-0007e9e17ebd + + true + Email 2 + 1033 + systemuser - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -302930,7 +351198,7 @@ false isrenameable - false + true false false @@ -302942,94 +351210,108 @@ false - false + true canmodifysearchsettings - false + true - false - false - false + true + true + true true - false - false + true + true - createdonbehalfbyyominame + personalemailaddress 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - CreatedOnBehalfByYomiName + PersonalEMailAddress StringType 5.0.0.0 - true + false 0 - Text - Auto + Email + Inactive 100 - createdonbehalfbyname + - Text + Email false 0 - 513 + 200 - - f8a1adb1-7050-4d03-ac8a-757bc97655c1 + + a5373c3b-f80c-4cf5-8862-7c664186b4a9 - Boolean + String false false false false canmodifyadditionalsettings - false + true - 131 + 23 1900-01-01T00:00:00 - 8e4fa9d9-e34c-41f0-a210-0417937907a2 + 99d8a218-2341-db11-898a-0007e9e17ebd true - Indicates if default outlook filters have been populated. + URL for the Website on which a photo of the user is located. 1033 + + 84d795b1-d001-47dd-b9a2-c2d6e6147681 + + true + URL-adresse til det websted, hvor der findes et billede af brugeren. + 1030 + - 8e4fa9d9-e34c-41f0-a210-0417937907a2 + 99d8a218-2341-db11-898a-0007e9e17ebd true - Indicates if default outlook filters have been populated. + URL for the Website on which a photo of the user is located. 1033 - 230df6a5-17c4-426a-a4b9-3f6a1c01357f + 98d8a218-2341-db11-898a-0007e9e17ebd true - Default Filters Populated + Photo URL 1033 + + 23909aaa-89a8-4d97-8ae2-bde5469bec60 + + true + URL-adresse på billede + 1030 + - 230df6a5-17c4-426a-a4b9-3f6a1c01357f + 98d8a218-2341-db11-898a-0007e9e17ebd true - Default Filters Populated + Photo URL 1033 @@ -303060,7 +351342,7 @@ false isrenameable - false + true false false @@ -303072,143 +351354,47 @@ false - false + true canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - defaultfilterspopulated + photourl 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - DefaultFiltersPopulated + PhotoUrl - BooleanType + StringType 5.0.0.0 false 0 - false - - b48fa5ed-d721-418c-8569-88497f700ec7 - - - - - 68a96b17-dde1-466c-8bdd-ff9c11945ba2 - - true - Indicates if default outlook filters have been populated. - 1033 - - - - 68a96b17-dde1-466c-8bdd-ff9c11945ba2 - - true - Indicates if default outlook filters have been populated. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - systemuser_defaultfilterspopulated - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - ce122eaa-8ed1-4f14-be1d-a7bd6741a53d - - true - No - 1033 - - - - ce122eaa-8ed1-4f14-be1d-a7bd6741a53d - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 182d9533-d958-4f36-8829-e908b6713093 - - true - Yes - 1033 - - - - 182d9533-d958-4f36-8829-e908b6713093 - - true - Yes - 1033 - - - - 1 - - - + Url + Inactive + 200 + + + Url + + false 0 + 400 - 7d315d9b-6eb3-46bc-9d72-9e22adf97c9a + 507ae834-9bd7-4c3e-8770-bdcde5fb2c3c Lookup @@ -303220,42 +351406,56 @@ canmodifyadditionalsettings true - 155 + 170 1900-01-01T00:00:00 - 9ac4b011-8b7c-e011-b3dc-00155d7b4422 + 8b3c35cf-13ae-e311-80c2-00155d9dac1a true - Select the mailbox associated with this user. + User's position in hierarchical security model. 1033 + + c6bbf25f-314a-4f85-b8b6-155cb901319c + + true + Brugers placering i den hierarkiske sikkerhedsmodel. + 1030 + - 9ac4b011-8b7c-e011-b3dc-00155d7b4422 + 8b3c35cf-13ae-e311-80c2-00155d9dac1a true - Select the mailbox associated with this user. + User's position in hierarchical security model. 1033 - 99c4b011-8b7c-e011-b3dc-00155d7b4422 + 8a3c35cf-13ae-e311-80c2-00155d9dac1a true - Mailbox + Position 1033 + + 2d779e42-a166-4210-a980-c44c94f7158a + + true + Placering + 1030 + - 99c4b011-8b7c-e011-b3dc-00155d7b4422 + 8a3c35cf-13ae-e311-80c2-00155d9dac1a true - Mailbox + Position 1033 @@ -303289,7 +351489,7 @@ true false - false + true false false @@ -303302,38 +351502,38 @@ canmodifysearchsettings true - false + true true true true - false + true true - defaultmailbox + positionid 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - DefaultMailbox + PositionId LookupType - 6.0.0.0 + 7.0.0.0 false None - mailbox + position - fb6cefce-0edf-4a4e-815e-3911fb639fb3 + 9d1a98cb-23df-4e38-b395-641360e1b3f4 - defaultmailbox + positionid String false false @@ -303343,7 +351543,7 @@ canmodifyadditionalsettings true - 153 + 171 1900-01-01T00:00:00 @@ -303404,19 +351604,19 @@ false false - defaultmailboxname + positionidname 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - DefaultMailboxName + PositionIdName StringType - 6.0.0.0 + 7.0.0.0 true 0 @@ -303432,185 +351632,69 @@ 0 200 - - 9352718f-0103-435c-829d-126e5f2ce566 + + 60c847c8-37c6-402f-85bf-49e36651f443 - String + Picklist false false false false canmodifyadditionalsettings - false + true - 181 + 22 1900-01-01T00:00:00 - 43c24605-9fc2-46b9-934c-cfa097c59603 + cf52c2fa-2241-db11-898a-0007e9e17ebd true - Type a default folder name for the user's OneDrive For Business location. + Preferred address for the user. 1033 - - - 43c24605-9fc2-46b9-934c-cfa097c59603 - - true - Type a default folder name for the user's OneDrive For Business location. - 1033 - - - - - 8f097513-8cce-47bc-ab47-d2693c48c15a + a87dc7a4-e93a-41ee-98d1-13f16c801eed true - Default OneDrive for Business Folder Name - 1033 + Brugerens foretrukne adresse. + 1030 - 8f097513-8cce-47bc-ab47-d2693c48c15a + cf52c2fa-2241-db11-898a-0007e9e17ebd true - Default OneDrive for Business Folder Name + Preferred address for the user. 1033 - - systemuser - - - - true - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - true - - false - true - true - true - false - true - - defaultodbfoldername - 2025-11-06T00:19:20.5270016 - - false - canmodifyrequirementlevelsettings - SystemRequired - - DefaultOdbFolderName - - - StringType - - 8.0.0.0 - false - 0 - - Text - Active - 200 - - - Text - - - false - 0 - 400 - - - 4f491248-6853-4428-98b7-e0446d6b7a01 - - - Picklist - false - false - false - - false - canmodifyadditionalsettings - true - - 10000 - 2025-11-06T02:05:46.44 - - + + - a7b2aaef-c3d9-4753-a067-0d6493027097 + ce52c2fa-2241-db11-898a-0007e9e17ebd true - User delete state + Preferred Address 1033 - - - a7b2aaef-c3d9-4753-a067-0d6493027097 - - true - User delete state - 1033 - - - - - fccdbb53-a93b-4d38-abc0-edb2861ec705 + 9185365f-3e65-4caf-a66c-10c5e1fea6c8 true - Deleted State - 1033 + Foretrukket adresse + 1030 - fccdbb53-a93b-4d38-abc0-edb2861ec705 + ce52c2fa-2241-db11-898a-0007e9e17ebd true - Deleted State + Preferred Address 1033 @@ -303657,66 +351741,80 @@ canmodifysearchsettings true - false + true true true true - false + true true - deletedstate - 2025-11-06T02:05:46.44 + preferredaddresscode + 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - DeletedState + PreferredAddressCode PicklistType - 9.2.0.0 + 5.0.0.0 false 0 - - 0 + + 1 - 9960d714-b5ba-f011-bbd3-7c1e52365f30 + 83526c8e-633c-4c75-ac6b-7e5f3bd308e1 - 9b60d714-b5ba-f011-bbd3-7c1e52365f30 + f8c1b0d4-2f52-41d7-9d5b-cc2ba84a67e4 true - User delete state. + Preferred address for the user. 1033 + + f22d1a96-4340-40ce-a050-d96044862a64 + + true + Brugerens foretrukne adresse. + 1030 + - 9b60d714-b5ba-f011-bbd3-7c1e52365f30 + f8c1b0d4-2f52-41d7-9d5b-cc2ba84a67e4 true - User delete state. + Preferred address for the user. 1033 - 9a60d714-b5ba-f011-bbd3-7c1e52365f30 + 09498c19-102b-4f8f-ad15-4653244f6e99 true - Delete State + Preferred Address 1033 + + 69279223-1212-4278-a785-71312b5455cf + + true + Foretrukket adresse + 1030 + - 9a60d714-b5ba-f011-bbd3-7c1e52365f30 + 09498c19-102b-4f8f-ad15-4653244f6e99 true - Delete State + Preferred Address 1033 @@ -303725,13 +351823,13 @@ false iscustomizable - false + true false true - systemuser_deletestate + systemuser_preferredaddresscode Picklist - 9.2.0.0 + 5.0.0.0 @@ -303747,23 +351845,30 @@ - 17e42f30-ecbc-417c-b1b2-b251d3da2fdb + d152c2fa-2241-db11-898a-0007e9e17ebd true - Not deleted + Mailing Address 1033 + + f38bb977-b409-450f-ac4d-824cd9f496d0 + + true + Postadresse + 1030 + - 17e42f30-ecbc-417c-b1b2-b251d3da2fdb + d152c2fa-2241-db11-898a-0007e9e17ebd true - Not deleted + Mailing Address 1033 - 0 + 1 @@ -303780,38 +351885,45 @@ - 862ede6f-ddb7-4a96-a37f-518a14df36d0 + d352c2fa-2241-db11-898a-0007e9e17ebd true - Soft deleted + Other Address 1033 + + 86431e51-6732-4fbf-ad54-ae4e61a2afa2 + + true + Anden adresse + 1030 + - 862ede6f-ddb7-4a96-a37f-518a14df36d0 + d352c2fa-2241-db11-898a-0007e9e17ebd true - Soft deleted + Other Address 1033 - 1 + 2 - + 0 - 52516c49-2467-447e-a0e9-52b3ee920fa3 + f135f3a6-2b27-432a-8fb9-9f5cbc7d0f94 - deletedstate + preferredaddresscode Virtual false false @@ -303819,10 +351931,10 @@ false canmodifyadditionalsettings - true + false - 10001 - 2025-11-06T02:05:46.4870016 + 94 + 1900-01-01T00:00:00 @@ -303836,7 +351948,7 @@ - true + false canmodifyauditsettings false @@ -303844,7 +351956,7 @@ false iscustomizable - true + false false false @@ -303859,7 +351971,7 @@ false isrenameable - true + false false false @@ -303871,7 +351983,7 @@ false - true + false canmodifysearchsettings false @@ -303882,202 +351994,86 @@ false false - deletedstatename - 2025-11-06T02:05:46.4870016 + preferredaddresscodename + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - deletedstateName + PreferredAddressCodeName VirtualType - 9.2.0.0 + 5.0.0.0 true - + - - 2c2887f8-339b-4ca8-b526-181654ec10a4 + + 49d04ed6-eec5-44ae-8db2-4427cfe775f9 - String + Picklist false false false false canmodifyadditionalsettings - false + true - 28 + 18 1900-01-01T00:00:00 - c563cfee-2241-db11-898a-0007e9e17ebd + d6cde1dc-2241-db11-898a-0007e9e17ebd true - Reason for disabling the user. + Preferred email address for the user. 1033 - - - c563cfee-2241-db11-898a-0007e9e17ebd - - true - Reason for disabling the user. - 1033 - - - - - c463cfee-2241-db11-898a-0007e9e17ebd + 53f6f673-6f10-43ca-b77a-752af7a4bbca true - Disabled Reason - 1033 + Brugerens foretrukne e-mail-adresse. + 1030 - c463cfee-2241-db11-898a-0007e9e17ebd + d6cde1dc-2241-db11-898a-0007e9e17ebd true - Disabled Reason + Preferred email address for the user. 1033 - - systemuser - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - true - - disabledreason - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - DisabledReason - - - StringType - - 5.0.0.0 - false - 0 - - Text - Auto - 500 - - - Text - - - false - 0 - 1000 - - - 31338df8-9d44-4561-9f43-b5e4528b52c3 - - - Boolean - false - false - false - - false - canmodifyadditionalsettings - false - - 100 - 1900-01-01T00:00:00 - - + + - 411c9b1e-2341-db11-898a-0007e9e17ebd + d5cde1dc-2241-db11-898a-0007e9e17ebd true - Whether to display the user in service views. + Preferred Email 1033 - - - 411c9b1e-2341-db11-898a-0007e9e17ebd - - true - Whether to display the user in service views. - 1033 - - - - - 401c9b1e-2341-db11-898a-0007e9e17ebd + 31bdefba-29ea-4f06-8828-a2c72288c721 true - Display in Service Views - 1033 + Foretrukken e-mail-adresse + 1030 - 401c9b1e-2341-db11-898a-0007e9e17ebd + d5cde1dc-2241-db11-898a-0007e9e17ebd true - Display in Service Views + Preferred Email 1033 @@ -304108,7 +352104,7 @@ false isrenameable - false + true false false @@ -304120,70 +352116,84 @@ false - false + true canmodifysearchsettings false true - false - false + true + true true true true - displayinserviceviews + preferredemailcode 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - DisplayInServiceViews + PreferredEmailCode - BooleanType + PicklistType 5.0.0.0 false 0 - false + 1 - 8df1fb85-5380-4e6e-b600-3a8e5186debb + 2f081a96-9ecd-42f9-aa54-ee527905462f - ec112ac3-2b2a-449d-9787-02a9af2cb85c + efc838d0-f1dd-4d7c-a68b-efc0a0d45d50 true - Whether to display the user in service views. + Preferred email address for the user. 1033 + + 86925afa-cf70-4768-a2b2-41cfc7775712 + + true + Brugerens foretrukne e-mail-adresse. + 1030 + - ec112ac3-2b2a-449d-9787-02a9af2cb85c + efc838d0-f1dd-4d7c-a68b-efc0a0d45d50 true - Whether to display the user in service views. + Preferred email address for the user. 1033 - b1f72e1f-6493-446b-96d0-0f041fd14d7e + 031fe914-7900-4549-ba4a-0f191a0fec8b true - Display in Service Views + Preferred Email 1033 + + 947e5a94-6a79-4ea7-91e9-a16aa2349ceb + + true + Foretrukken e-mail-adresse + 1030 + - b1f72e1f-6493-446b-96d0-0f041fd14d7e + 031fe914-7900-4549-ba4a-0f191a0fec8b true - Display in Service Views + Preferred Email 1033 @@ -304196,83 +352206,63 @@ false true - systemuser_displayinserviceviews - Boolean + systemuser_preferredemailcode + Picklist 5.0.0.0 - - - - - - - - - - false - true - - - - 431c9b1e-2341-db11-898a-0007e9e17ebd - - true - No - 1033 - - - - 431c9b1e-2341-db11-898a-0007e9e17ebd - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 451c9b1e-2341-db11-898a-0007e9e17ebd + + + + + + + + + + + false + true + + + + d8cde1dc-2241-db11-898a-0007e9e17ebd + + true + Default Value + 1033 + + + 2ff95bec-0114-4a95-866c-ef872236cc97 + + true + Standardværdi + 1030 + + + + d8cde1dc-2241-db11-898a-0007e9e17ebd - true - Yes - 1033 - - - - 451c9b1e-2341-db11-898a-0007e9e17ebd - - true - Yes - 1033 - - - - 1 - - + true + Default Value + 1033 + + + + 1 + + + + + 0 + + - 668c1ac8-e82d-4d55-ae5d-257758b4cf2e + c3a410e8-ec73-4d91-b818-211f4d11ff72 - displayinserviceviews + preferredemailcode Virtual false false @@ -304282,7 +352272,7 @@ canmodifyadditionalsettings false - 108 + 93 1900-01-01T00:00:00 @@ -304343,14 +352333,14 @@ false false - displayinserviceviewsname + preferredemailcodename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - DisplayInServiceViewsName + PreferredEmailCodeName VirtualType @@ -304360,11 +352350,11 @@ - - c755a6f7-d7a3-4bb1-b9aa-3a60f6d9082a + + 240041b6-b89e-40f1-9429-2bff562a0280 - String + Picklist false false false @@ -304373,172 +352363,56 @@ canmodifyadditionalsettings true - 24 + 21 1900-01-01T00:00:00 - d790aa12-2341-db11-898a-0007e9e17ebd + f452c2fa-2241-db11-898a-0007e9e17ebd true - Active Directory domain of which the user is a member. + Preferred phone number for the user. 1033 - - - d790aa12-2341-db11-898a-0007e9e17ebd - - true - Active Directory domain of which the user is a member. - 1033 - - - - - d690aa12-2341-db11-898a-0007e9e17ebd + b2190516-7504-432d-a6b2-f43a754a4296 true - User Name - 1033 + Brugerens foretrukne telefonnummer. + 1030 - d690aa12-2341-db11-898a-0007e9e17ebd + f452c2fa-2241-db11-898a-0007e9e17ebd true - User Name + Preferred phone number for the user. 1033 - - systemuser - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - domainname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - DomainName - - - StringType - - 5.0.0.0 - false - 0 - - Text - Auto - 1024 - - - Text - - - false - 0 - 2048 - - - bc27039a-6544-48fd-ae75-23da93fb963b - - - Picklist - false - false - false - - false - canmodifyadditionalsettings - true - - 143 - 1900-01-01T00:00:00 - - + + - cac7274d-aa1f-4c49-91f3-c052bf81aa5c + f352c2fa-2241-db11-898a-0007e9e17ebd true - Shows the status of the primary email address. + Preferred Phone 1033 - - - cac7274d-aa1f-4c49-91f3-c052bf81aa5c - - true - Shows the status of the primary email address. - 1033 - - - - - 86af2b62-33f2-4748-af08-60fbaaa97fdf + b0c5e44e-dcf0-42b0-b0db-803ab703b17f true - Primary Email Status - 1033 + Foretrukket telefon + 1030 - 86af2b62-33f2-4748-af08-60fbaaa97fdf + f352c2fa-2241-db11-898a-0007e9e17ebd true - Primary Email Status + Preferred Phone 1033 @@ -304585,21 +352459,21 @@ canmodifysearchsettings true - false + true true true true true true - emailrouteraccessapproval + preferredphonecode 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - EmailRouterAccessApproval + PreferredPhoneCode PicklistType @@ -304608,43 +352482,57 @@ false 0 - 0 + 1 - 9b3912dc-d7cb-4af7-919c-18428fa61a1b + c6620dd8-087a-4747-b9e1-103bcbe0af7c - c4c1339a-2c8f-4030-9fd8-6b82d5ccce16 + 2b72e73e-5725-456d-a667-0d2f21cb4d2f true - Indicates the approval options for server-side synchronization or Email Router access. + Preferred phone number for the user. 1033 + + f231aa71-2c76-458d-baf5-ed42109af0a0 + + true + Brugerens foretrukne telefonnummer. + 1030 + - c4c1339a-2c8f-4030-9fd8-6b82d5ccce16 + 2b72e73e-5725-456d-a667-0d2f21cb4d2f true - Indicates the approval options for server-side synchronization or Email Router access. + Preferred phone number for the user. 1033 - 3eb57a71-5c8d-40b5-bafa-3a9fa81e27ba + 6bfede0e-6b40-4718-b609-e630ccd18257 true - Shows whether the email address is approved for each mailbox for processing email through server-side synchronization or the Email Router. + Preferred Phone 1033 + + 24799ed0-2f58-4fd5-9c2d-40bdedd446ec + + true + Foretrukket telefon + 1030 + - 3eb57a71-5c8d-40b5-bafa-3a9fa81e27ba + 6bfede0e-6b40-4718-b609-e630ccd18257 true - Shows whether the email address is approved for each mailbox for processing email through server-side synchronization or the Email Router. + Preferred Phone 1033 @@ -304653,11 +352541,11 @@ false iscustomizable - false + true false true - systemuser_emailrouteraccessapproval + systemuser_preferredphonecode Picklist 5.0.0.0 @@ -304675,23 +352563,30 @@ - cfee0f53-4996-4127-8391-d0ad99e3c0f7 + f652c2fa-2241-db11-898a-0007e9e17ebd true - Empty + Main Phone 1033 + + 41db7fee-ce01-4f91-be6a-b6829742e49e + + true + Primær telefon + 1030 + - cfee0f53-4996-4127-8391-d0ad99e3c0f7 + f652c2fa-2241-db11-898a-0007e9e17ebd true - Empty + Main Phone 1033 - 0 + 1 @@ -304708,23 +352603,30 @@ - 3b61f5a1-508c-4df7-99c3-f4deb8c6575a + f852c2fa-2241-db11-898a-0007e9e17ebd true - Approved + Other Phone 1033 + + f3edd35e-af87-467a-a41f-c227208b4353 + + true + Anden telefon + 1030 + - 3b61f5a1-508c-4df7-99c3-f4deb8c6575a + f852c2fa-2241-db11-898a-0007e9e17ebd true - Approved + Other Phone 1033 - 1 + 2 @@ -304741,23 +352643,30 @@ - 8e94d92e-a921-49db-b37a-283e95f6c84d + fa52c2fa-2241-db11-898a-0007e9e17ebd true - Pending Approval + Home Phone 1033 + + 22241e3e-5b38-4d3e-aeec-8d14a5ea65c0 + + true + Telefon (privat) + 1030 + - 8e94d92e-a921-49db-b37a-283e95f6c84d + fa52c2fa-2241-db11-898a-0007e9e17ebd true - Pending Approval + Home Phone 1033 - 2 + 3 @@ -304774,23 +352683,30 @@ - 5fb37369-bf1b-41b3-8b09-a009a1d5e495 + fc52c2fa-2241-db11-898a-0007e9e17ebd true - Rejected + Mobile Phone 1033 + + 627f1bc6-732f-4cb4-a2a1-f2a58c75b47c + + true + Mobiltelefon + 1030 + - 5fb37369-bf1b-41b3-8b09-a009a1d5e495 + fc52c2fa-2241-db11-898a-0007e9e17ebd true - Rejected + Mobile Phone 1033 - 3 + 4 @@ -304803,230 +352719,9 @@ - 4ed86966-18a2-4c24-8876-f76bdf9a9535 - - emailrouteraccessapproval - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 144 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false - - false - iscustomizable - false - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - emailrouteraccessapprovalname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - EmailRouterAccessApprovalName - - - VirtualType - - 5.0.0.0 - true - - - - - 8afc8108-1b39-4e02-aa03-6e55a7c3b7ef - - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 32 - 1900-01-01T00:00:00 - - - - - 7f1ed7e8-2241-db11-898a-0007e9e17ebd - - true - Employee identifier for the user. - 1033 - - - - 7f1ed7e8-2241-db11-898a-0007e9e17ebd - - true - Employee identifier for the user. - 1033 - - - - - - 7e1ed7e8-2241-db11-898a-0007e9e17ebd - - true - Employee - 1033 - - - - 7e1ed7e8-2241-db11-898a-0007e9e17ebd - - true - Employee - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - employeeid - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - EmployeeId - - - StringType - - 5.0.0.0 - false - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 200 - - - f8b8490a-830b-4bd4-8b79-532461f48f6d + 960ab995-8e9a-4f62-bcf7-b8b6d588b253 - entityimageid + preferredphonecode Virtual false false @@ -305036,131 +352731,7 @@ canmodifyadditionalsettings false - 158 - 1900-01-01T00:00:00 - - - - - a1baf164-f532-4986-9d7e-4837ef0b6bc0 - - true - Shows the default image for the record. - 1033 - - - - a1baf164-f532-4986-9d7e-4837ef0b6bc0 - - true - Shows the default image for the record. - 1033 - - - - - - e4407a7b-0bc7-4833-a64a-fe1a4dec3523 - - true - Entity Image - 1033 - - - - e4407a7b-0bc7-4833-a64a-fe1a4dec3523 - - true - Entity Image - 1033 - - - systemuser - - - - true - canmodifyauditsettings - false - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - entityimage - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - EntityImage - - - ImageType - - 6.0.0.0 - true - - - false - true - 144 - 10240 - 144 - - - c624dd04-573d-409a-8d96-c479d85a99d6 - - entityimageid - BigInt - false - false - false - - false - canmodifyadditionalsettings - false - - 164 + 92 1900-01-01T00:00:00 @@ -305219,32 +352790,30 @@ false true false - true + false - entityimage_timestamp + preferredphonecodename 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - EntityImage_Timestamp + PreferredPhoneCodeName - BigIntType + VirtualType - 6.0.0.0 + 5.0.0.0 true - 9223372036854775807 - -9223372036854775808 - - 6f321e36-c242-4d35-84c8-9d3605ec16b9 + + 0dc2a79a-8320-4f0a-b14d-388b84561b83 - entityimageid - String + + Uniqueidentifier false false false @@ -305253,22 +352822,64 @@ canmodifyadditionalsettings false - 159 + 162 1900-01-01T00:00:00 - - + + + 471e0e2c-3326-4460-a6c6-df9b30496022 + + true + Shows the ID of the process. + 1033 + + + 6d1c523b-cfdb-417d-a054-b6f8ee40e5a5 + + true + Viser processens id. + 1030 + + + + 471e0e2c-3326-4460-a6c6-df9b30496022 + + true + Shows the ID of the process. + 1033 + - - + + + 97063860-6baa-4705-b538-20be009181f7 + + true + Process + 1033 + + + 96303676-afe8-4dbf-87b6-fcd2fa8850aa + + true + Proces + 1030 + + + + 97063860-6baa-4705-b538-20be009181f7 + + true + Process + 1033 + systemuser - false + true canmodifyauditsettings true @@ -305294,7 +352905,7 @@ false false - true + false false false @@ -305307,46 +352918,35 @@ canmodifysearchsettings false - false + true false - false + true true - false + true true - entityimage_url + processid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - EntityImage_URL + ProcessId - StringType + UniqueidentifierType 6.0.0.0 - true - 0 + false + - Url - Disabled - 200 - - - Url - - - false - 0 - 400 - - 532d0282-e5a1-412d-9a35-ed208b99a54d + + 49a8fdac-86ae-4ed5-86ad-ba353d1615b5 - Uniqueidentifier + Lookup false false false @@ -305355,42 +352955,56 @@ canmodifyadditionalsettings false - 157 + 135 1900-01-01T00:00:00 - 07c9c052-def8-4a50-a342-d5f8d024abcc + 7007674c-8167-4717-87d4-6bbf786f4e9b true - For internal use only. + Unique identifier of the default queue for the user. 1033 + + 81307b4d-e533-40ad-ad48-bf8d8bcfd1f0 + + true + Entydigt id for standardkøen for brugeren. + 1030 + - 07c9c052-def8-4a50-a342-d5f8d024abcc + 7007674c-8167-4717-87d4-6bbf786f4e9b true - For internal use only. + Unique identifier of the default queue for the user. 1033 - 7b9ab27f-eb7c-45f2-8cc6-3d84068f77cc + 406597e3-0b12-435b-b614-e5b3deafb53c true - Entity Image Id + Default Queue 1033 + + 421e28af-047d-473e-b6b2-65593d068e34 + + true + Standardkø + 1030 + - 7b9ab27f-eb7c-45f2-8cc6-3d84068f77cc + 406597e3-0b12-435b-b614-e5b3deafb53c true - Entity Image Id + Default Queue 1033 @@ -305398,7 +353012,7 @@ - false + true canmodifyauditsettings true @@ -305406,7 +353020,7 @@ false iscustomizable - false + true false false @@ -305437,95 +353051,71 @@ canmodifysearchsettings false - false + true false false true - false + true true - entityimageid + queueid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - EntityImageId + QueueId - UniqueidentifierType + LookupType - 6.0.0.0 + 5.0.0.0 false + None + + queue + - - ba5543fe-02a0-4e6d-81de-2b1bf0ce0e54 + + d09914b9-5860-4b96-9159-a5887a258aee - - Decimal + queueid + String false false false false canmodifyadditionalsettings - true + false - 147 + 136 1900-01-01T00:00:00 - - - c851009c-b2b0-42d6-88b2-64c9dda0b469 - - true - Exchange rate for the currency associated with the systemuser with respect to the base currency. - 1033 - - - - c851009c-b2b0-42d6-88b2-64c9dda0b469 - - true - Exchange rate for the currency associated with the systemuser with respect to the base currency. - 1033 - + + - - - 0f56db44-6b1a-4f86-b5eb-c33eb5e6964c - - true - Exchange Rate - 1033 - - - - 0f56db44-6b1a-4f86-b5eb-c33eb5e6964c - - true - Exchange Rate - 1033 - + + systemuser - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -305540,7 +353130,7 @@ false isrenameable - true + false false false @@ -305552,42 +353142,47 @@ false - true + false canmodifysearchsettings - true + false false - true - true + false + false true false - true + false - exchangerate + queueidname 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - ExchangeRate + QueueIdName - DecimalType + StringType 5.0.0.0 - false + true 0 - Disabled - 100000000000 - 0.000000000001 - 12 + Text + Auto + 400 + + + Text + + false 0 + 400 - 1226c79e-0a50-4b9b-9c15-3f428e1ab151 + 818ccceb-5039-4ad9-b08d-5f85a7f9171c String @@ -305599,42 +353194,56 @@ canmodifyadditionalsettings true - 7 + 8 1900-01-01T00:00:00 - a4e9af0c-2341-db11-898a-0007e9e17ebd + 459af6ca-2241-db11-898a-0007e9e17ebd true - First name of the user. + Salutation for correspondence with the user. 1033 + + 4b759f94-e5d9-4140-b978-5db707301210 + + true + Titulering, der skal bruges i korrespondance til brugeren. + 1030 + - a4e9af0c-2341-db11-898a-0007e9e17ebd + 459af6ca-2241-db11-898a-0007e9e17ebd true - First name of the user. + Salutation for correspondence with the user. 1033 - a3e9af0c-2341-db11-898a-0007e9e17ebd + 449af6ca-2241-db11-898a-0007e9e17ebd true - First Name + Salutation 1033 + + f400e4c7-2380-4efa-99c4-6d0568d5e6d6 + + true + Titel + 1030 + - a3e9af0c-2341-db11-898a-0007e9e17ebd + 449af6ca-2241-db11-898a-0007e9e17ebd true - First Name + Salutation 1033 @@ -305669,7 +353278,7 @@ false false - true + false false true @@ -305688,14 +353297,14 @@ true true - firstname - 2025-11-06T00:19:21.9929984 + salutation + 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings - ApplicationRequired + None - FirstName + Salutation StringType @@ -305705,8 +353314,8 @@ 0 Text - Active - 256 + Auto + 20 Text @@ -305714,13 +353323,13 @@ false 0 - 512 + 40 - - ffde4a75-024b-4f2a-8df8-90b91dc4d825 + + 595b418e-1857-43be-9a87-e8fb4df02ec1 - String + Boolean false false false @@ -305729,42 +353338,56 @@ canmodifyadditionalsettings true - 12 + 103 1900-01-01T00:00:00 - bf90aa12-2341-db11-898a-0007e9e17ebd + ff97ba00-2341-db11-898a-0007e9e17ebd true - Full name of the user. + Check if user is a setup user. 1033 + + 0ae18d64-49c1-4b77-a3cc-4c8761f7d780 + + true + Kontrollér, om brugeren er en installationsbruger. + 1030 + - bf90aa12-2341-db11-898a-0007e9e17ebd + ff97ba00-2341-db11-898a-0007e9e17ebd true - Full name of the user. + Check if user is a setup user. 1033 - be90aa12-2341-db11-898a-0007e9e17ebd + fe97ba00-2341-db11-898a-0007e9e17ebd true - Full Name + Restricted Access Mode 1033 + + adf49bd9-8a55-4697-ba2f-3efadc7dc76f + + true + Tilstand med begrænset adgang + 1030 + - be90aa12-2341-db11-898a-0007e9e17ebd + fe97ba00-2341-db11-898a-0007e9e17ebd true - Full Name + Restricted Access Mode 1033 @@ -305791,15 +353414,15 @@ true false - true + false false isrenameable true - false - true - true + false + false + false false true @@ -305811,46 +353434,184 @@ canmodifysearchsettings true - false + true true true true - false + true true - fullname + setupuser 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - None + SystemRequired - FullName + SetupUser - StringType + BooleanType 5.0.0.0 false 0 - Text - Active - 200 - - - Text - + false + + 6484cb11-1360-4ecb-a7f8-7cb21950e766 + + + + + d9ffb5af-4a41-48c8-95f6-7c76a4d3ce6b + + true + Check if user is a setup user. + 1033 + + + 12951db8-916a-423f-b705-a9ffbe438f05 + + true + Kontrollér, om brugeren er en installationsbruger. + 1030 + + + + d9ffb5af-4a41-48c8-95f6-7c76a4d3ce6b + + true + Check if user is a setup user. + 1033 + + + + + + 1582ed90-1a95-4882-9a7e-27bb3ddbc855 + + true + Restricted Access Mode + 1033 + + + 4872d209-5e61-4887-9f97-19fbfca71295 + + true + Tilstand med begrænset adgang + 1030 + + + + 1582ed90-1a95-4882-9a7e-27bb3ddbc855 + + true + Restricted Access Mode + 1033 + + + + false + + false + iscustomizable + true + + false + true + systemuser_setupuser + Boolean + 5.0.0.0 + + + + + + + + + + false + true + + + + 0198ba00-2341-db11-898a-0007e9e17ebd + + true + No + 1033 + + + ea838215-411a-4ea1-b619-f8cf49d902b6 + + true + Nej + 1030 + + + + 0198ba00-2341-db11-898a-0007e9e17ebd + + true + No + 1033 + + + + 0 + + + + + + + + + + + + false + true + + + + 0398ba00-2341-db11-898a-0007e9e17ebd + + true + Yes + 1033 + + + 6a39cc0f-8f05-4ce0-a33d-08104c9909cc + + true + Ja + 1030 + + + + 0398ba00-2341-db11-898a-0007e9e17ebd + + true + Yes + 1033 + + + + 1 + + + - false 0 - 513 - - 5bb0e556-34d4-48d5-8965-cde916cc62d5 + + 2260151f-7129-45ad-977d-5f4b4d2e9c21 - - String + setupuser + Virtual false false false @@ -305859,58 +353620,30 @@ canmodifyadditionalsettings false - 35 + 107 1900-01-01T00:00:00 - - - d499f6ca-2241-db11-898a-0007e9e17ebd - - true - Government identifier for the user. - 1033 - - - - d499f6ca-2241-db11-898a-0007e9e17ebd - - true - Government identifier for the user. - 1033 - + + - - - d399f6ca-2241-db11-898a-0007e9e17ebd - - true - Government - 1033 - - - - d399f6ca-2241-db11-898a-0007e9e17ebd - - true - Government - 1033 - + + systemuser - true + false canmodifyauditsettings - true + false false false iscustomizable - true + false false false @@ -305941,90 +353674,93 @@ canmodifysearchsettings false - true + false false false true - true - true + false + false - governmentid + setupusername 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - GovernmentId + SetupUserName - StringType + VirtualType 5.0.0.0 - false - 0 + true + - Text - Auto - 100 - - - Text - - - false - 0 - 200 - e452d9a0-c4d3-4f37-a9f9-d810fa3962f0 + 4cfdc3df-aa2a-4929-844d-ac6c7f9233aa String true - true + false true false canmodifyadditionalsettings true - 19 + 173 1900-01-01T00:00:00 - 6440b506-2341-db11-898a-0007e9e17ebd + 24c2fba6-108d-409a-b641-3b75ace98313 true - Home phone number for the user. + SharePoint Work Email Address 1033 + + 85269dab-286f-41ce-8cc2-eb579f2d3aa3 + + true + SharePoint-mailadresse (arbejde) + 1030 + - 6440b506-2341-db11-898a-0007e9e17ebd + 24c2fba6-108d-409a-b641-3b75ace98313 true - Home phone number for the user. + SharePoint Work Email Address 1033 - 6340b506-2341-db11-898a-0007e9e17ebd + 16455f16-aefa-4208-858f-66a95ec133f3 true - Home Phone + SharePoint Email Address 1033 + + 6b03f685-b23a-41c3-b851-7000d41b9ce9 + + true + SharePoint-mailadresse + 1030 + - 6340b506-2341-db11-898a-0007e9e17ebd + 16455f16-aefa-4208-858f-66a95ec133f3 true - Home Phone + SharePoint Email Address 1033 @@ -306060,7 +353796,7 @@ false false false - false + true true canmodifyissortablesettings @@ -306078,83 +353814,97 @@ true true - homephone + sharepointemailaddress 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - HomePhone + SharePointEmailAddress StringType - 5.0.0.0 + 7.1.0.0 false 0 Text - Inactive - 50 + Active + 1024 - Phone + Text false 0 - 100 + 2048 - - b48017f3-f211-4160-8d0f-25a62de2cdeb + + c019d180-d983-47ff-a47f-36bbc7bb6241 - Integer - false - false - false + String + true + true + true false canmodifyadditionalsettings true - 185 + 99 1900-01-01T00:00:00 - d212cec8-74d5-421c-b6d4-59797f93822a + e9e9af0c-2341-db11-898a-0007e9e17ebd true - For internal use only. + Skill set of the user. 1033 + + 66c8bf4b-4744-4c0e-b8af-6f1341a4ca87 + + true + Brugerens færdigheder. + 1030 + - d212cec8-74d5-421c-b6d4-59797f93822a + e9e9af0c-2341-db11-898a-0007e9e17ebd true - For internal use only. + Skill set of the user. 1033 - 66563f34-b62c-4cb2-b9ac-14074bc6f54a + e8e9af0c-2341-db11-898a-0007e9e17ebd true - Unique user identity id + Skills 1033 + + 0dec7777-60b3-4cde-8491-af16e512e6cb + + true + Færdigheder + 1030 + - 66563f34-b62c-4cb2-b9ac-14074bc6f54a + e8e9af0c-2341-db11-898a-0007e9e17ebd true - Unique user identity id + Skills 1033 @@ -306162,15 +353912,15 @@ - false + true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -306185,7 +353935,7 @@ false isrenameable - false + true false false @@ -306197,88 +353947,108 @@ false - false + true canmodifysearchsettings - false + true - false - false - false + true + true + true true - false + true true - identityid + skills 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - IdentityId + Skills - IntegerType + StringType - 9.0.0.0 + 5.0.0.0 false 0 - None - 2147483647 - -2147483648 + Text + Auto + 100 + + + Text + + false 0 + 200 - - ad06e4f2-24b3-4153-b916-2b116ed1e736 + + 00fc0784-550d-48c6-a069-fd7be4e931f1 - Integer + Uniqueidentifier false false false false canmodifyadditionalsettings - true + false - 112 + 163 1900-01-01T00:00:00 - aff716a1-ea83-4b86-949c-53db17ae3e8e + d1cfe664-0433-4bd1-9f05-92b82fdcf16f true - Unique identifier of the data import or data migration that created this record. + Shows the ID of the stage. 1033 + + e83338c5-1294-402f-a5f4-ac5a7e7678ed + + true + Viser fasens id. + 1030 + - aff716a1-ea83-4b86-949c-53db17ae3e8e + d1cfe664-0433-4bd1-9f05-92b82fdcf16f true - Unique identifier of the data import or data migration that created this record. + Shows the ID of the stage. 1033 - b32811cf-9bef-4547-a36a-5ea3103420e7 + cfec4cdf-8d79-4523-9b13-5bf03e3d882e true - Import Sequence Number + (Deprecated) Process Stage 1033 + + 6a507828-d30a-40f4-a515-0ea1e40bb74c + + true + (Udfaset) Navn på procesfase + 1030 + - b32811cf-9bef-4547-a36a-5ea3103420e7 + cfec4cdf-8d79-4523-9b13-5bf03e3d882e true - Import Sequence Number + (Deprecated) Process Stage 1033 @@ -306294,7 +354064,7 @@ false iscustomizable - true + false false false @@ -306309,7 +354079,7 @@ false isrenameable - true + false false false @@ -306321,41 +354091,36 @@ false - true + false canmodifysearchsettings - true + false true false - false + true true - false + true true - importsequencenumber + stageid 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings None - ImportSequenceNumber + StageId - IntegerType + UniqueidentifierType - 5.0.0.0 + 6.0.0.0 false - 0 + - None - 2147483647 - -2147483648 - - 0 - 940d6224-8610-448a-9e7a-b41a5dd6a1ed + 7bd36edd-9323-4b93-9351-e4c96ae37495 Picklist @@ -306367,42 +354132,42 @@ canmodifyadditionalsettings true - 110 - 1900-01-01T00:00:00 + 10005 + 2025-11-06T02:05:46.5500032 - 40e0eed0-2241-db11-898a-0007e9e17ebd + 620c3093-6f3c-4612-a7d0-a6d6336f8734 true - Incoming email delivery method for the user. + The type of user 1033 - 40e0eed0-2241-db11-898a-0007e9e17ebd + 620c3093-6f3c-4612-a7d0-a6d6336f8734 true - Incoming email delivery method for the user. + The type of user 1033 - 3fe0eed0-2241-db11-898a-0007e9e17ebd + 3598c75f-f8a0-4127-be82-04a9c33f9d79 true - Incoming Email Delivery Method + System Managed User Type 1033 - 3fe0eed0-2241-db11-898a-0007e9e17ebd + 3598c75f-f8a0-4127-be82-04a9c33f9d79 true - Incoming Email Delivery Method + System Managed User Type 1033 @@ -306418,7 +354183,7 @@ false iscustomizable - true + false false false @@ -306433,7 +354198,7 @@ false isrenameable - true + false false false @@ -306456,59 +354221,59 @@ true true - incomingemaildeliverymethod - 1900-01-01T00:00:00 + systemmanagedusertype + 2025-12-14T02:01:15.4669952 false canmodifyrequirementlevelsettings - SystemRequired + ApplicationRequired - IncomingEmailDeliveryMethod + SystemManagedUserType PicklistType - 5.0.0.0 + 9.2.0.0 false 0 - 1 + 0 - a7ca9be8-c2af-42b1-af90-dcdc8bb13f50 + 95facf1a-b5ba-f011-bbd3-7c1e52365f30 - 7c1e3b63-748f-4ad2-b408-7b006116e1ab + 97facf1a-b5ba-f011-bbd3-7c1e52365f30 true - Incoming email delivery method for the user. + The type of user 1033 - 7c1e3b63-748f-4ad2-b408-7b006116e1ab + 97facf1a-b5ba-f011-bbd3-7c1e52365f30 true - Incoming email delivery method for the user. + The type of user 1033 - 5941caeb-275f-479f-a04c-1dca215ec0f4 + 96facf1a-b5ba-f011-bbd3-7c1e52365f30 true - Incoming Email Delivery Method + System Managed User Type 1033 - 5941caeb-275f-479f-a04c-1dca215ec0f4 + 96facf1a-b5ba-f011-bbd3-7c1e52365f30 true - Incoming Email Delivery Method + System Managed User Type 1033 @@ -306521,9 +354286,9 @@ false true - systemuser_incomingemaildeliverymethod + systemuser_systemmanagedusertype Picklist - 5.0.0.0 + 9.2.0.0 @@ -306539,18 +354304,18 @@ - 42e0eed0-2241-db11-898a-0007e9e17ebd + 35811c85-511e-4cfe-9731-c5c622af9376 true - None + Entra User 1033 - 42e0eed0-2241-db11-898a-0007e9e17ebd + 35811c85-511e-4cfe-9731-c5c622af9376 true - None + Entra User 1033 @@ -306572,18 +354337,18 @@ - 46e0eed0-2241-db11-898a-0007e9e17ebd + d85f8251-a77d-487f-a0b7-eda09606a91e true - Microsoft Dynamics 365 for Outlook + C2 User 1033 - 46e0eed0-2241-db11-898a-0007e9e17ebd + d85f8251-a77d-487f-a0b7-eda09606a91e true - Microsoft Dynamics 365 for Outlook + C2 User 1033 @@ -306605,18 +354370,18 @@ - 48e0eed0-2241-db11-898a-0007e9e17ebd + 6212f06f-ab82-4ad2-a385-a32818d53bcf true - Server-Side Synchronization or Email Router + Impersonable Stub User 1033 - 48e0eed0-2241-db11-898a-0007e9e17ebd + 6212f06f-ab82-4ad2-a385-a32818d53bcf true - Server-Side Synchronization or Email Router + Impersonable Stub User 1033 @@ -306638,18 +354403,18 @@ - 44e0eed0-2241-db11-898a-0007e9e17ebd + 11f36dc5-95a3-4502-97e3-a3c42ca3be8a true - Forward Mailbox + Agentic User 1033 - 44e0eed0-2241-db11-898a-0007e9e17ebd + 11f36dc5-95a3-4502-97e3-a3c42ca3be8a true - Forward Mailbox + Agentic User 1033 @@ -306661,15 +354426,15 @@ - + 0 - 88e5ff20-6fa5-4c8b-aa8f-67554e6211fb + af97607e-6a66-4dae-a32c-0620aa066150 - incomingemaildeliverymethod + systemmanagedusertype Virtual false false @@ -306677,10 +354442,10 @@ false canmodifyadditionalsettings - false + true - 120 - 1900-01-01T00:00:00 + 10006 + 2025-11-06T02:05:46.5629952 @@ -306694,7 +354459,7 @@ - false + true canmodifyauditsettings false @@ -306702,7 +354467,7 @@ false iscustomizable - false + true false false @@ -306717,7 +354482,7 @@ false isrenameable - false + true false false @@ -306729,7 +354494,7 @@ false - false + true canmodifysearchsettings false @@ -306740,28 +354505,28 @@ false false - incomingemaildeliverymethodname - 1900-01-01T00:00:00 + systemmanagedusertypename + 2025-11-06T02:05:46.5629952 - false + true canmodifyrequirementlevelsettings None - IncomingEmailDeliveryMethodName + systemmanagedusertypeName VirtualType - 5.0.0.0 + 9.2.0.0 true - + - - 67a52814-b08f-4fa0-91c7-9c5fd72fdef4 + + 43a9104f-dcf4-4c37-bef3-8526355eb330 - String + Uniqueidentifier false false false @@ -306770,42 +354535,56 @@ canmodifyadditionalsettings true - 15 + 1 1900-01-01T00:00:00 - 4b98ba00-2341-db11-898a-0007e9e17ebd + 83aac7f4-2241-db11-898a-0007e9e17ebd true - Internal email address for the user. + Unique identifier for the user. 1033 + + 82542bcf-0d75-413d-90be-bfe3e614748a + + true + Entydigt id for brugeren. + 1030 + - 4b98ba00-2341-db11-898a-0007e9e17ebd + 83aac7f4-2241-db11-898a-0007e9e17ebd true - Internal email address for the user. + Unique identifier for the user. 1033 - 4a98ba00-2341-db11-898a-0007e9e17ebd + 82aac7f4-2241-db11-898a-0007e9e17ebd true - Primary Email + User 1033 + + e98cd4b9-11e4-456c-b72f-bc08e42282cb + + true + Bruger + 1030 + - 4a98ba00-2341-db11-898a-0007e9e17ebd + 82aac7f4-2241-db11-898a-0007e9e17ebd true - Primary Email + User 1033 @@ -306813,9 +354592,9 @@ - true + false canmodifyauditsettings - true + false false @@ -306824,14 +354603,14 @@ true false - false + true true canmodifyglobalfiltersettings false true - false + true false false @@ -306840,7 +354619,7 @@ false true - true + false false true @@ -306853,45 +354632,34 @@ true true - true - true + false + false true - true + false true - internalemailaddress - 2025-11-06T10:08:47.6 + systemuserid + 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings SystemRequired - InternalEMailAddress + SystemUserId - StringType + UniqueidentifierType 5.0.0.0 false - 0 + - Email - Inactive - 100 - - - Email - - - false - 0 - 200 - - c7858372-ee7e-4182-b0d1-844e10829906 + + a8c8b0b6-c9be-4e0f-9b77-5f2c7385f741 - Picklist + Lookup false false false @@ -306900,42 +354668,56 @@ canmodifyadditionalsettings true - 114 - 1900-01-01T00:00:00 + 10007 + 2025-11-06T04:05:07.8700032 - f256cba0-2273-4b34-b958-c1817de0b062 + a154aa94-1602-4b49-a221-ff6904fdee63 true - User invitation status. + Unique identifier of the territory to which the user is assigned. 1033 + + b5edb95c-1b11-4ccc-901b-c08e9817e698 + + true + Entydigt id for det distrikt, brugeren er tildelt. + 1030 + - f256cba0-2273-4b34-b958-c1817de0b062 + a154aa94-1602-4b49-a221-ff6904fdee63 true - User invitation status. + Unique identifier of the territory to which the user is assigned. 1033 - a0641b1d-d5a6-453d-a2da-0a3dab50f482 + 5caff69c-d1ed-4bf2-b17a-29d25bb11f6d true - Invitation Status + Territory 1033 + + cfa98280-1828-4aaa-9239-dd324c5d99c4 + + true + Distrikt + 1030 + - a0641b1d-d5a6-453d-a2da-0a3dab50f482 + 5caff69c-d1ed-4bf2-b17a-29d25bb11f6d true - Invitation Status + Territory 1033 @@ -306989,330 +354771,42 @@ true true - invitestatuscode - 1900-01-01T00:00:00 + territoryid + 2025-11-06T04:05:49.84 true canmodifyrequirementlevelsettings - ApplicationRequired + None - InviteStatusCode + TerritoryId - PicklistType + LookupType 5.0.0.0 false - 0 - - 0 - - f92e62ea-8fad-49eb-b2ee-a7e8946608bb - - - - - 472448ad-a04d-48e9-8caf-5ceb713dcdbe - - true - User invitation status. - 1033 - - - - 472448ad-a04d-48e9-8caf-5ceb713dcdbe - - true - User invitation status. - 1033 - - - - - - e91d79b5-7e0e-4d92-97d8-1b20782bb41b - - true - Invitation Status - 1033 - - - - e91d79b5-7e0e-4d92-97d8-1b20782bb41b - - true - Invitation Status - 1033 - - - - false - - false - iscustomizable - false - - false - true - systemuser_invitestatuscode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - d0819345-6d0b-4224-b681-e65f7e01468c - - true - Invitation Not Sent - 1033 - - - - d0819345-6d0b-4224-b681-e65f7e01468c - - true - Invitation Not Sent - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 1601bd3f-5d15-4d21-8915-703555919316 - - true - Invited - 1033 - - - - 1601bd3f-5d15-4d21-8915-703555919316 - - true - Invited - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - e795b35b-77fa-4a65-a0f3-12247b5b745a - - true - Invitation Near Expired - 1033 - - - - e795b35b-77fa-4a65-a0f3-12247b5b745a - - true - Invitation Near Expired - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 2bed408b-7b8c-4eb8-a434-e2d7a3b287ff - - true - Invitation Expired - 1033 - - - - 2bed408b-7b8c-4eb8-a434-e2d7a3b287ff - - true - Invitation Expired - 1033 - - - - 3 - - - - - - - - - - - - false - true - - - - d2785148-eadc-4507-8203-bb968277283d - - true - Invitation Accepted - 1033 - - - - d2785148-eadc-4507-8203-bb968277283d - - true - Invitation Accepted - 1033 - - - - 4 - - - - - - - - - - - - false - true - - - - 3dc2e68d-bfb0-4f5a-adcc-53d5ed529388 - - true - Invitation Rejected - 1033 - - - - 3dc2e68d-bfb0-4f5a-adcc-53d5ed529388 - - true - Invitation Rejected - 1033 - - - - 5 - - - - - - - - - - - - false - true - - - - 07520140-d422-4ad0-a606-b4bdd86e06c5 - - true - Invitation Revoked - 1033 - - - - 07520140-d422-4ad0-a606-b4bdd86e06c5 - - true - Invitation Revoked - 1033 - - - - 6 - - - - - - - - 0 - - + + + None + + territory + - - 9e2249e4-5a84-48bf-a11e-3bd6bdec20e6 + + 303c108e-3633-4a31-97e5-82d588259c64 - invitestatuscode - Virtual + territoryid + String false false false - false + true canmodifyadditionalsettings false - 122 - 1900-01-01T00:00:00 + 10008 + 2025-11-06T04:05:49.9170048 @@ -307332,7 +354826,7 @@ false - false + true iscustomizable false @@ -307343,11 +354837,11 @@ canmodifyglobalfiltersettings false - true + false false false - false + true isrenameable false @@ -307372,28 +354866,39 @@ false false - invitestatuscodename - 1900-01-01T00:00:00 + territoryidname + 2025-11-06T04:05:49.9170048 false canmodifyrequirementlevelsettings - None + SystemRequired - InviteStatusCodeName + TerritoryIdName - VirtualType + StringType 5.0.0.0 true - - + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 400 - - 6f246cb8-c8dd-456b-8709-51d0749a4d0b + + 0a1aae43-d2d8-49c9-8d66-75b4b0eb4e51 - Boolean + Integer false false false @@ -307402,42 +354907,56 @@ canmodifyadditionalsettings false - 115 + 118 1900-01-01T00:00:00 - 33acbdd3-a0dd-408d-a0cc-7b96ffb05feb + 8fa80a03-2753-455c-8787-1fae6f1cfc16 true - Information about whether the user is an AD user. + For internal use only. 1033 + + 8d221955-d038-4564-9ec1-d8315a2e3815 + + true + Kun til intern brug. + 1030 + - 33acbdd3-a0dd-408d-a0cc-7b96ffb05feb + 8fa80a03-2753-455c-8787-1fae6f1cfc16 true - Information about whether the user is an AD user. + For internal use only. 1033 - 9b4ed1b4-72e6-4894-86fe-d3bed66b097e + 6dd0ab2f-7c1c-4a63-90f3-641ea1b3a72f true - Is Active Directory User + Time Zone Rule Version Number 1033 + + c207c684-ab23-4577-972f-3e4a1140a58b + + true + Versionsnummeret for tidszonereglen + 1030 + - 9b4ed1b4-72e6-4894-86fe-d3bed66b097e + 6dd0ab2f-7c1c-4a63-90f3-641ea1b3a72f true - Is Active Directory User + Time Zone Rule Version Number 1033 @@ -307445,9 +354964,9 @@ - true + false canmodifyauditsettings - true + false false @@ -307484,142 +355003,40 @@ canmodifysearchsettings false - false + true false false - false - false - false + true + true + true - isactivedirectoryuser + timezoneruleversionnumber 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsActiveDirectoryUser + TimeZoneRuleVersionNumber - BooleanType + IntegerType 5.0.0.0 false 0 - true - - 77673532-0c93-4f72-a125-48fce00ab49a - - - - - 8dd0ce53-de9c-4582-9dbe-78a57cd177b4 - - true - Information about whether the user is an AD user. - 1033 - - - - 8dd0ce53-de9c-4582-9dbe-78a57cd177b4 - - true - Information about whether the user is an AD user. - 1033 - - - - - - - - false - - false - iscustomizable - true - - false - true - systemuser_isactivedirectoryuser - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 2b25b0cb-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 2b25b0cb-e780-db11-9b85-00137299e160 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 2d25b0cb-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 2d25b0cb-e780-db11-9b85-00137299e160 - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + -1 0 - - b03a1088-0cfd-47df-977e-7365ca06ff33 + + 736f77f1-d1e2-4374-9dee-63dea26dee6a - Boolean + String true true true @@ -307628,42 +355045,56 @@ canmodifyadditionalsettings true - 10009 - 2025-11-06T05:56:00.96 + 14 + 1900-01-01T00:00:00 - e2ede1eb-c7ca-4578-8b9f-f339fd752646 + 3ecfe1dc-2241-db11-898a-0007e9e17ebd true - Bypasses the selected user from IP firewall restriction + Title of the user. 1033 + + 8c2d694b-eaea-480d-a85a-4e0238cd1582 + + true + Brugerens titel. + 1030 + - e2ede1eb-c7ca-4578-8b9f-f339fd752646 + 3ecfe1dc-2241-db11-898a-0007e9e17ebd true - Bypasses the selected user from IP firewall restriction + Title of the user. 1033 - 76a5bdc2-7b76-4d55-8a65-ef0dd0755db1 + 3dcfe1dc-2241-db11-898a-0007e9e17ebd true - To bypass IP firewall restriction on the user + Title 1033 + + a0971148-06b0-410f-82d9-bf18d51db4ac + + true + Titel + 1030 + - 76a5bdc2-7b76-4d55-8a65-ef0dd0755db1 + 3dcfe1dc-2241-db11-898a-0007e9e17ebd true - To bypass IP firewall restriction on the user + Title 1033 @@ -307694,263 +355125,62 @@ false isrenameable - false + true false - false + true false - true + false true canmodifyissortablesettings false - false + true canmodifysearchsettings - false + true true - false - false + true + true true true true - isallowedbyipfirewall - 2025-11-06T05:56:00.96 + title + 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings None - IsAllowedByIpFirewall + Title - BooleanType + StringType - 9.2.0.158 + 5.0.0.0 false 0 - - false - - f2d27344-d5ba-f011-bbd3-7c1e52365f30 - - - - - f4d27344-d5ba-f011-bbd3-7c1e52365f30 - - true - Indicates if the user needs to be bypassed by Ip firewall rule - 1033 - - - - f4d27344-d5ba-f011-bbd3-7c1e52365f30 - - true - Indicates if the user needs to be bypassed by Ip firewall rule - 1033 - - - - - - f3d27344-d5ba-f011-bbd3-7c1e52365f30 - - true - Is user bypassed by ip firewall - 1033 - - - - f3d27344-d5ba-f011-bbd3-7c1e52365f30 - - true - Is user bypassed by ip firewall - 1033 - - - - true - - false - iscustomizable - false - - false - true - systemuser_isallowedbyipfirewall - Boolean - 9.2.0.158 - - - - - - - - - - false - true - - - - 2c8d0ff1-8035-4acd-955f-6c88ca82ddb9 - - true - No - 1033 - - - - 2c8d0ff1-8035-4acd-955f-6c88ca82ddb9 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - b1440eaa-badd-4638-872a-8abbe8e39592 - - true - Yes - 1033 - - - - b1440eaa-badd-4638-872a-8abbe8e39592 - - true - Yes - 1033 - - - - 1 - - - - + + Text + Auto + 128 + + + Text + + + false 0 + 256 - - 7da99ddf-c478-41e2-a1b7-c839f799be65 - - isallowedbyipfirewall - Virtual - false - false - false - - true - canmodifyadditionalsettings - true - - 10010 - 2025-11-06T05:56:00.9929984 - - - - - - - - - - systemuser - - - - true - canmodifyauditsettings - false - - false - - true - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - false - false - false - - true - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - isallowedbyipfirewallname - 2025-11-06T05:56:00.9929984 - - true - canmodifyrequirementlevelsettings - None - - isallowedbyipfirewallName - - - VirtualType - - 9.2.0.158 - true - - - - - 4fcd5b70-d4b3-4111-bbf1-ef3b80fb04c7 + + a91c91bb-8215-4020-bd20-d07c041ce52c - Boolean + Lookup false false false @@ -307959,42 +355189,56 @@ canmodifyadditionalsettings true - 34 + 145 1900-01-01T00:00:00 - c9aac7f4-2241-db11-898a-0007e9e17ebd + f31e7bf6-1b56-441b-822c-8cca6090de34 true - Information about whether the user is enabled. + Unique identifier of the currency associated with the systemuser. 1033 + + 8ca0a5f2-18b5-4d7e-ba23-22d1528fd60d + + true + Entydigt id for den valuta, der er tilknyttet systembrugeren. + 1030 + - c9aac7f4-2241-db11-898a-0007e9e17ebd + f31e7bf6-1b56-441b-822c-8cca6090de34 true - Information about whether the user is enabled. + Unique identifier of the currency associated with the systemuser. 1033 - c8aac7f4-2241-db11-898a-0007e9e17ebd + 24a0bf8d-5c54-4f2c-8f40-0b857b78ac1c true - Status + Currency 1033 + + c5be7df3-71b6-4935-9249-2e6d17569b9c + + true + Valuta + 1030 + - c8aac7f4-2241-db11-898a-0007e9e17ebd + 24a0bf8d-5c54-4f2c-8f40-0b857b78ac1c true - Status + Currency 1033 @@ -308013,7 +355257,7 @@ true false - true + false true canmodifyglobalfiltersettings @@ -308041,156 +355285,39 @@ canmodifysearchsettings true - false + true true - false + true true true true - isdisabled - 2025-11-06T00:19:21.1830016 + transactioncurrencyid + 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - IsDisabled + TransactionCurrencyId - BooleanType + LookupType 5.0.0.0 false - 0 + - false - - c8431634-445b-44a1-be65-d7d83adb3904 - - - - - 5d8fe729-efa3-42f7-8848-cc3762db2487 - - true - Information about whether the user is enabled. - 1033 - - - - 5d8fe729-efa3-42f7-8848-cc3762db2487 - - true - Information about whether the user is enabled. - 1033 - - - - - - 58e9e2fe-dd2f-45cb-b8e5-25c37c464049 - - true - Status - 1033 - - - - 58e9e2fe-dd2f-45cb-b8e5-25c37c464049 - - true - Status - 1033 - - - - false - - false - iscustomizable - true - - false - true - systemuser_isdisabled - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - cbaac7f4-2241-db11-898a-0007e9e17ebd - - true - Enabled - 1033 - - - - cbaac7f4-2241-db11-898a-0007e9e17ebd - - true - Enabled - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - cdaac7f4-2241-db11-898a-0007e9e17ebd - - true - Disabled - 1033 - - - - cdaac7f4-2241-db11-898a-0007e9e17ebd - - true - Disabled - 1033 - - - - 1 - - - - - 0 + None + + transactioncurrency + - - 4ba8a4ee-af1c-406e-a936-cbb6289fb12f + + 5fda6603-b40e-4c03-add0-4e2a61af621c - isdisabled - Virtual + transactioncurrencyid + String false false false @@ -308199,7 +355326,7 @@ canmodifyadditionalsettings false - 91 + 146 1900-01-01T00:00:00 @@ -308260,72 +355387,97 @@ false false - isdisabledname + transactioncurrencyidname 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IsDisabledName + TransactionCurrencyIdName - VirtualType + StringType 5.0.0.0 true - + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 200 - - 46d69d37-3fcd-4bd5-be6e-32cc7c3f63bb + + bc712427-1489-4001-8b1c-9052a3eda413 - Boolean + String false false false false canmodifyadditionalsettings - true + false - 165 + 172 1900-01-01T00:00:00 - 0a7d3416-5c92-48d5-a038-0508165f7295 + 1fb8dee8-d689-4602-855a-afc52216b3ae true - Shows the status of approval of the email address by O365 Admin. + For internal use only. 1033 + + c5ed660b-1122-49cd-a08f-d75fa607e576 + + true + Kun til intern brug. + 1030 + - 0a7d3416-5c92-48d5-a038-0508165f7295 + 1fb8dee8-d689-4602-855a-afc52216b3ae true - Shows the status of approval of the email address by O365 Admin. + For internal use only. 1033 - bf080bc7-8c08-4b3f-81f0-29d46e05d414 + 7343feab-4937-4453-bd97-307ad054b5b9 true - Email Address O365 Admin Approval Status + (Deprecated) Traversed Path 1033 + + f7fa1510-1420-4a8f-bf1c-ce31333fcf7f + + true + (Udfaset) Gennemløbet sti + 1030 + - bf080bc7-8c08-4b3f-81f0-29d46e05d414 + 7343feab-4937-4453-bd97-307ad054b5b9 true - Email Address O365 Admin Approval Status + (Deprecated) Traversed Path 1033 @@ -308356,7 +355508,7 @@ false isrenameable - true + false false false @@ -308368,146 +355520,50 @@ false - true + false canmodifysearchsettings false - false + true false false true - false + true true - isemailaddressapprovedbyo365admin + traversedpath 1900-01-01T00:00:00 - true + false canmodifyrequirementlevelsettings - SystemRequired + None - IsEmailAddressApprovedByO365Admin + TraversedPath - BooleanType + StringType - 6.0.0.0 + 7.0.0.0 false 0 - false - - 34870ae7-88e6-45b0-b2bf-fb112ef31707 - - - - - - - - - 3b567543-5ffc-440d-acce-97568820b183 - - true - Is Mailbox approved by O365 Admin - 1033 - - - - 3b567543-5ffc-440d-acce-97568820b183 - - true - Is Mailbox approved by O365 Admin - 1033 - - - - false - - false - iscustomizable - false - - false - true - systemuser_isemailaddressapprovedbyo365admin - Boolean - 6.0.0.0 - - - - - - - - - - false - true - - - - e4e47d6c-fbef-4f77-b059-6861dc5550a9 - - true - No - 1033 - - - - e4e47d6c-fbef-4f77-b059-6861dc5550a9 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 03ad87bd-6adf-4a7e-9353-487c49fb5a5e - - true - Yes - 1033 - - - - 03ad87bd-6adf-4a7e-9353-487c49fb5a5e - - true - Yes - 1033 - - - - 1 - - - + Text + Auto + 1250 + + + Text + + false 0 + 2500 - - 4e31f174-9216-4a53-bf93-f0bce1fd33ad + + f8862b64-6827-400e-b5ce-bae76288f0ba - Boolean + Integer false false false @@ -308516,256 +355572,196 @@ canmodifyadditionalsettings true - 130 + 156 1900-01-01T00:00:00 - 17e93bc1-081e-4f13-b538-9a91ed7d47b6 + 1960cf56-7ae3-4e72-afc3-0eb8d30dd81a true - Check if user is an integration user. + Shows the type of user license. 1033 - - - 17e93bc1-081e-4f13-b538-9a91ed7d47b6 - - true - Check if user is an integration user. - 1033 - - - - - f46ee310-ac03-406b-a949-f76037f8e326 + 79186363-b567-4cf9-a9c6-66e49e1e76ea true - Integration user mode - 1033 + Viser brugerlicenstypen. + 1030 - - - f46ee310-ac03-406b-a949-f76037f8e326 - - true - Integration user mode - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - true - false - true - true - true - - isintegrationuser - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - IsIntegrationUser - - - BooleanType - - 5.0.0.0 - false - 0 - - false - - e92a3809-e4f8-49f5-b0ef-9aa9e0fd3312 - - - - - d698cef9-80c3-402c-8195-bc0e195c34a9 - - true - Check if user is an integration user. - 1033 - - - - d698cef9-80c3-402c-8195-bc0e195c34a9 - - true - Check if user is an integration user. - 1033 - - - - - - 12c70153-0d54-451f-96eb-ddb0c9cee4f4 - - true - Integration user mode - 1033 - - - - 12c70153-0d54-451f-96eb-ddb0c9cee4f4 - - true - Integration user mode - 1033 - - - - false - - false - iscustomizable - true - - false - true - systemuser_isintegrationuser - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 778d9448-d40f-4636-88d0-1a1ea144c592 - - true - No - 1033 - - - - 778d9448-d40f-4636-88d0-1a1ea144c592 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 70fab568-4dc7-441e-bc85-f0bd51532321 - - true - Yes - 1033 - - - - 70fab568-4dc7-441e-bc85-f0bd51532321 - - true - Yes - 1033 - - - - 1 - - - + + + 1960cf56-7ae3-4e72-afc3-0eb8d30dd81a + + true + Shows the type of user license. + 1033 + + + + + + 3c06e461-bef9-4987-aa2f-b9a445adc161 + + true + User License Type + 1033 + + + 5fdf933b-5c37-476c-9375-77eeb3aea5ef + + true + Brugerlicenstype + 1030 + + + + 3c06e461-bef9-4987-aa2f-b9a445adc161 + + true + User License Type + 1033 + + + systemuser + + + + true + canmodifyauditsettings + true + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false + false + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + false + + true + false + false + true + true + true + + userlicensetype + 1900-01-01T00:00:00 + + true + canmodifyrequirementlevelsettings + SystemRequired + + UserLicenseType + + + IntegerType + + 6.0.0.0 + false + 0 + + None + 2147483647 + -2147483648 0 - - 5c9e8a1f-9133-44e8-beda-2a0e8d40c19e + + 736d24ca-a67b-40b4-a0ff-514ac3c23664 - isintegrationuser - Virtual + + String false false false false canmodifyadditionalsettings - false + true - 132 - 1900-01-01T00:00:00 + 187 + 2025-11-06T00:19:22.8070016 - - + + + 8c20ad95-8132-4a3a-b05b-39feaa890c1d + + true + User PUID User Identifiable Information + 1033 + + + 2aba0331-e89f-4af3-9668-717144b78a81 + + true + PUID-brugeroplysninger + 1030 + + + + 8c20ad95-8132-4a3a-b05b-39feaa890c1d + + true + User PUID User Identifiable Information + 1033 + - - + + + d17e9414-34b7-43d9-af9e-597153773953 + + true + User PUID + 1033 + + + 335aaf93-afdf-47b0-8990-0b1b06098320 + + true + Brugers PUID + 1030 + + + + d17e9414-34b7-43d9-af9e-597153773953 + + true + User PUID + 1033 + systemuser @@ -308773,7 +355769,7 @@ false canmodifyauditsettings - false + true false @@ -308794,7 +355790,7 @@ false isrenameable - false + true false false @@ -308806,7 +355802,7 @@ false - false + true canmodifysearchsettings false @@ -308815,30 +355811,41 @@ false true false - false + true - isintegrationusername - 1900-01-01T00:00:00 + userpuid + 2025-11-06T00:19:22.8070016 false canmodifyrequirementlevelsettings None - IsIntegrationUserName + UserPuid - VirtualType + StringType - 5.0.0.0 - true - + 9.0.0.0 + false + 0 + Text + Auto + 100 + + + Text + + + false + 0 + 256 - - 745e0195-d907-4a06-8d65-37347791aab2 + + a601dfc7-1157-4ada-8ee2-3c52ab8a063c - Boolean + Integer false false false @@ -308847,42 +355854,56 @@ canmodifyadditionalsettings false - 150 + 117 1900-01-01T00:00:00 - b0e86184-0004-4e66-adc3-978a2e0bcd23 + 82910651-72c6-4560-bfab-9b8ee7ee9d8f true - Information about whether the user is licensed. + Time zone code that was in use when the record was created. 1033 + + 0335e559-89bc-45ae-ab7d-f7c8484f9160 + + true + Den tidszonekode, der var i brug ved oprettelse af posten. + 1030 + - b0e86184-0004-4e66-adc3-978a2e0bcd23 + 82910651-72c6-4560-bfab-9b8ee7ee9d8f true - Information about whether the user is licensed. + Time zone code that was in use when the record was created. 1033 - df1de8fa-6cc0-4775-a692-f0f24f9857db + 73b9ebad-5fe5-4df4-99e6-02a18c5899dc true - User Licensed + UTC Conversion Time Zone Code 1033 + + 5cfc0e15-7bd0-4a21-b841-438e3dad3b58 + + true + Tidszonekode til UTC-konvertering + 1030 + - df1de8fa-6cc0-4775-a692-f0f24f9857db + 73b9ebad-5fe5-4df4-99e6-02a18c5899dc true - User Licensed + UTC Conversion Time Zone Code 1033 @@ -308890,7 +355911,7 @@ - true + false canmodifyauditsettings false @@ -308898,7 +355919,7 @@ false iscustomizable - false + true false false @@ -308927,144 +355948,42 @@ false canmodifysearchsettings - true + false true - true - true + false + false true true true - islicensed - 2025-11-06T00:19:22.6329984 + utcconversiontimezonecode + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings - SystemRequired + None - IsLicensed + UTCConversionTimeZoneCode - BooleanType + IntegerType 5.0.0.0 false 0 - false - - af09fcbe-e4c9-42c0-a101-9585bb351482 - - - - - 10c32efe-dd66-46b4-bd52-348739cb023c - - true - Information about whether the user is licensed or not. - 1033 - - - - 10c32efe-dd66-46b4-bd52-348739cb023c - - true - Information about whether the user is licensed or not. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - systemuser_isuserlicensed - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - b12f4588-d692-4d79-a1cf-0b0196588f3b - - true - No - 1033 - - - - b12f4588-d692-4d79-a1cf-0b0196588f3b - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - cd74abd8-1be7-439a-8cd7-c9873e2ecc1a - - true - Yes - 1033 - - - - cd74abd8-1be7-439a-8cd7-c9873e2ecc1a - - true - Yes - 1033 - - - - 1 - - - + None + 2147483647 + -1 0 - - d496509a-b276-48e3-9f53-9787ca8c7036 + + 4eacb87c-4b9a-4ec0-bc4b-b4cdf940fec5 - islicensed - Virtual + + BigInt false false false @@ -309073,16 +355992,58 @@ canmodifyadditionalsettings false - 188 - 2025-11-06T00:19:24.0429952 + 36 + 1900-01-01T00:00:00 - - + + + e995effa-75d2-40d5-8433-714df9fd2986 + + true + Version number of the user. + 1033 + + + 28248165-2241-4510-ad60-c26ee7792ddb + + true + Versionsnummeret for brugeren. + 1030 + + + + e995effa-75d2-40d5-8433-714df9fd2986 + + true + Version number of the user. + 1033 + - - + + + 39c10ba2-8185-475e-94fc-b1bd9209e644 + + true + Version number + 1033 + + + b9ab286b-3ab9-44c7-87e9-630c6cc72b7e + + true + Versionsnummer + 1030 + + + + 39c10ba2-8185-475e-94fc-b1bd9209e644 + + true + Version number + 1033 + systemuser @@ -309114,7 +356075,7 @@ false false - false + true false false @@ -309132,74 +356093,90 @@ false true false - false + true - islicensedname - 2025-11-06T00:19:24.0429952 + versionnumber + 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - IsLicensedName + VersionNumber - VirtualType + BigIntType - 9.1.0.0 - true + 5.0.0.0 + false + 9223372036854775807 + -9223372036854775808 - - e3b21027-f02b-49bf-8715-c6edf55ee4a8 + + 8c8e97a1-d3ee-4463-a3dd-27b783bfbb08 - Boolean + String false false false false canmodifyadditionalsettings - false + true - 151 + 109 1900-01-01T00:00:00 - bc687ab4-b9da-4f91-aaf0-846f7b404c6b + d858efb8-f2d7-40ba-98a9-ff1c7b364450 true - Information about whether the user is synced with the directory. + Windows Live ID 1033 + + 72014101-4ba8-4531-8b43-6fad4f32833f + + true + Windows Live ID + 1030 + - bc687ab4-b9da-4f91-aaf0-846f7b404c6b + d858efb8-f2d7-40ba-98a9-ff1c7b364450 true - Information about whether the user is synced with the directory. + Windows Live ID 1033 - 7833fe14-9941-4209-b07a-1076c066d162 + d958efb8-f2d7-40ba-98a9-ff1c7b364450 true - User Synced + Windows Live ID 1033 + + ab784eba-102c-46ef-a6f5-0392aff50361 + + true + Windows Live ID + 1030 + - 7833fe14-9941-4209-b07a-1076c066d162 + d958efb8-f2d7-40ba-98a9-ff1c7b364450 true - User Synced + Windows Live ID 1033 @@ -309209,13 +356186,13 @@ true canmodifyauditsettings - false + true false false iscustomizable - false + true false false @@ -309230,7 +356207,7 @@ false isrenameable - false + true false false @@ -309242,190 +356219,108 @@ false - false + true canmodifysearchsettings - false + true true - false - false + true + true true true true - issyncwithdirectory + windowsliveid 1900-01-01T00:00:00 - false + true canmodifyrequirementlevelsettings - SystemRequired + None - IsSyncWithDirectory + WindowsLiveID - BooleanType + StringType 5.0.0.0 false 0 - false - - 119dee71-8387-48f6-b25d-6b4d0eb3544a - - - - - 26f18381-c127-4895-a3a4-aaed476d9002 - - true - Information about whether the user is synced or not. - 1033 - - - - 26f18381-c127-4895-a3a4-aaed476d9002 - - true - Information about whether the user is synced or not. - 1033 - - - - - - - - false - - false - iscustomizable - false - - false - true - systemuser_isusersynced - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - e1e0be1e-10cd-4d6d-94c5-34ebe60dfc88 - - true - No - 1033 - - - - e1e0be1e-10cd-4d6d-94c5-34ebe60dfc88 - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - b91c863b-2627-4608-90ea-4bcaa07ee7ea - - true - Yes - 1033 - - - - b91c863b-2627-4608-90ea-4bcaa07ee7ea - - true - Yes - 1033 - - - - 1 - - - + Email + Inactive + 1024 + + + Email + + false 0 + 2048 - 33517a2e-5b4d-41d0-93e6-64aeaf03c8b8 + afdbdfed-bc30-4559-a527-c48a045d2e49 String - true - true - true + false + false + false false canmodifyadditionalsettings true - 16 + 152 1900-01-01T00:00:00 - 1ae0eed0-2241-db11-898a-0007e9e17ebd + 1e1c0197-a659-4744-8f5a-6820078c5166 true - Job title of the user. + User's Yammer login email address 1033 + + cb584fb7-c0d6-410b-a105-6d882a767851 + + true + Brugerens login-mailadresse til Yammer. + 1030 + - 1ae0eed0-2241-db11-898a-0007e9e17ebd + 1e1c0197-a659-4744-8f5a-6820078c5166 true - Job title of the user. + User's Yammer login email address 1033 - 19e0eed0-2241-db11-898a-0007e9e17ebd + 36e9cebb-c0ff-4d79-901b-8c2b69a12adf true - Job Title + Yammer Email 1033 + + b53ecbe6-a46b-423d-bff0-deb3f3255867 + + true + Yammer-mail + 1030 + - 19e0eed0-2241-db11-898a-0007e9e17ebd + 36e9cebb-c0ff-4d79-901b-8c2b69a12adf true - Job Title + Yammer Email 1033 @@ -309470,7 +356365,7 @@ true canmodifysearchsettings - false + true true true @@ -309479,14 +356374,14 @@ true true - jobtitle + yammeremailaddress 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - JobTitle + YammerEmailAddress StringType @@ -309495,12 +356390,12 @@ false 0 - Text - Auto - 100 + Email + Inactive + 200 - Text + Email false @@ -309508,7 +356403,7 @@ 200 - 89029e2f-234d-44df-98d7-b80bd06b02d7 + e1bdb747-1774-4480-9556-4628657e74e8 String @@ -309520,42 +356415,56 @@ canmodifyadditionalsettings true - 10 + 154 1900-01-01T00:00:00 - 3799ba00-2341-db11-898a-0007e9e17ebd + cb5e5f76-3c67-4e2d-bf60-94a3d6c08b1b true - Last name of the user. + User's Yammer ID 1033 + + b82f8f86-91a0-4305-a86c-1d3104cfa3f0 + + true + Brugerens Yammer-id + 1030 + - 3799ba00-2341-db11-898a-0007e9e17ebd + cb5e5f76-3c67-4e2d-bf60-94a3d6c08b1b true - Last name of the user. + User's Yammer ID 1033 - 3699ba00-2341-db11-898a-0007e9e17ebd + f04e3ef9-51ef-47d4-aa70-e354e1fd163e true - Last Name + Yammer User ID 1033 + + 825eaaf3-a790-4ca4-8358-1c4ea668b684 + + true + Yammer-bruger-id + 1030 + - 3699ba00-2341-db11-898a-0007e9e17ebd + f04e3ef9-51ef-47d4-aa70-e354e1fd163e true - Last Name + Yammer User ID 1033 @@ -309590,7 +356499,7 @@ false false - true + false false true @@ -309609,14 +356518,14 @@ true true - lastname - 2025-11-06T02:05:46.3469952 + yammeruserid + 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings - ApplicationRequired + None - LastName + YammerUserId StringType @@ -309626,8 +356535,8 @@ 0 Text - Active - 256 + Inactive + 128 Text @@ -309635,13 +356544,13 @@ false 0 - 256 + 128 - - 87a3294a-78d5-4a9a-912e-a712dadfc5d1 + + 7d7ab563-dc11-46ed-9976-8a22802b2b3d - DateTime + String false false false @@ -309650,42 +356559,56 @@ canmodifyadditionalsettings true - 186 - 2025-11-06T00:19:20.3369984 + 129 + 1900-01-01T00:00:00 - bbbc815d-3b27-4f3d-ba8a-41fa378b5f7c + 794f7b37-2341-db11-898a-0007e9e17ebd true - Time stamp of the latest update for the user + Pronunciation of the first name of the user, written in phonetic hiragana or katakana characters. 1033 + + 7538828f-f197-441e-9020-bc5108f1a2d3 + + true + Udtale af brugerens fornavn, skrevet i fonetiske hiragana- eller katakana-tegn. + 1030 + - bbbc815d-3b27-4f3d-ba8a-41fa378b5f7c + 794f7b37-2341-db11-898a-0007e9e17ebd true - Time stamp of the latest update for the user + Pronunciation of the first name of the user, written in phonetic hiragana or katakana characters. 1033 - 6f6fc3f6-eed8-40c3-987b-d706a55052f7 + 784f7b37-2341-db11-898a-0007e9e17ebd true - Latest User Update Time + Yomi First Name 1033 + + c57acda0-21b7-45de-9783-54f93a8dd8a8 + + true + Yomi-fornavn + 1030 + - 6f6fc3f6-eed8-40c3-987b-d706a55052f7 + 784f7b37-2341-db11-898a-0007e9e17ebd true - Latest User Update Time + Yomi First Name 1033 @@ -309701,7 +356624,7 @@ false iscustomizable - false + true false false @@ -309730,46 +356653,45 @@ true canmodifysearchsettings - false + true - false - false - false - false - false - false + true + true + true + true + true + true - latestupdatetime - 2025-11-06T00:19:20.3369984 + yomifirstname + 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - LatestUpdateTime + YomiFirstName - DateTimeType + StringType - 9.0.0.0 + 5.0.0.0 false 0 - DateAndTime - Inactive + PhoneticGuide + Active + 64 + firstname + + PhoneticGuide + + false 0 - - false - canmodifybehavior - false - - - UserLocal - + 256 - 62ffea8c-fc5d-4a6b-a660-0e9695fde74f + 6f1cdfe6-8762-46cc-b01e-9ae668b30eff String @@ -309781,42 +356703,56 @@ canmodifyadditionalsettings true - 9 + 124 1900-01-01T00:00:00 - 8baac7f4-2241-db11-898a-0007e9e17ebd + 804f7b37-2341-db11-898a-0007e9e17ebd true - Middle name of the user. + Pronunciation of the full name of the user, written in phonetic hiragana or katakana characters. 1033 + + a78a34d2-823a-47a7-a4ae-3d6e02ffd68e + + true + Udtale af brugerens fulde navn, skrevet i fonetiske hiragana- eller katakana-tegn. + 1030 + - 8baac7f4-2241-db11-898a-0007e9e17ebd + 804f7b37-2341-db11-898a-0007e9e17ebd true - Middle name of the user. + Pronunciation of the full name of the user, written in phonetic hiragana or katakana characters. 1033 - 8aaac7f4-2241-db11-898a-0007e9e17ebd + 7f4f7b37-2341-db11-898a-0007e9e17ebd true - Middle Name + Yomi Full Name 1033 + + 7d26f5a7-5a91-49dd-afe3-78ced2610e2a + + true + Yomi – Fulde navn + 1030 + - 8aaac7f4-2241-db11-898a-0007e9e17ebd + 7f4f7b37-2341-db11-898a-0007e9e17ebd true - Middle Name + Yomi Full Name 1033 @@ -309863,21 +356799,21 @@ canmodifysearchsettings true - true + false true true true - true + false true - middlename + yomifullname 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - MiddleName + YomiFullName StringType @@ -309886,67 +356822,81 @@ false 0 - Text + PhoneticGuide Active - 50 - + 200 + fullname - Text + PhoneticGuide false 0 - 100 + 513 - bf56392e-41f3-4545-986d-d4d55b94cb88 + abef440f-5f26-42f7-85b8-c4310028cc02 String - true - true - true + false + false + false false canmodifyadditionalsettings true - 17 + 126 1900-01-01T00:00:00 - 09cee1dc-2241-db11-898a-0007e9e17ebd + 5695733d-2341-db11-898a-0007e9e17ebd true - Mobile alert email address for the user. + Pronunciation of the last name of the user, written in phonetic hiragana or katakana characters. 1033 + + 04082817-6eb5-4414-869b-1cf9ed85fc94 + + true + Udtale af brugerens efternavn, skrevet i fonetiske hiragana- eller katakana-tegn. + 1030 + - 09cee1dc-2241-db11-898a-0007e9e17ebd + 5695733d-2341-db11-898a-0007e9e17ebd true - Mobile alert email address for the user. + Pronunciation of the last name of the user, written in phonetic hiragana or katakana characters. 1033 - 08cee1dc-2241-db11-898a-0007e9e17ebd + 5595733d-2341-db11-898a-0007e9e17ebd true - Mobile Alert Email + Yomi Last Name 1033 + + a08acf64-9d77-44ff-9618-b7ade485ec91 + + true + Yomi-efternavn + 1030 + - 08cee1dc-2241-db11-898a-0007e9e17ebd + 5595733d-2341-db11-898a-0007e9e17ebd true - Mobile Alert Email + Yomi Last Name 1033 @@ -310000,14 +356950,14 @@ true true - mobilealertemail + yomilastname 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - MobileAlertEMail + YomiLastName StringType @@ -310016,23 +356966,23 @@ false 0 - Email - Inactive - 100 - + PhoneticGuide + Active + 64 + lastname - Email + PhoneticGuide false 0 - 200 + 256 - - 082ffd5d-99c5-432e-8180-ce5f5809170f + + 276d6728-d365-4342-b71b-5d049038cbf7 - Lookup + String false false false @@ -310041,42 +356991,56 @@ canmodifyadditionalsettings true - 174 + 128 1900-01-01T00:00:00 - 07824f9d-4a51-4900-a39e-5c8d5feb8d07 + 4795733d-2341-db11-898a-0007e9e17ebd true - Items contained with a particular SystemUser. + Pronunciation of the middle name of the user, written in phonetic hiragana or katakana characters. 1033 + + bbb1e5c0-ba52-467b-b31e-569a2113453e + + true + Udtale af brugerens mellemnavn, skrevet i fonetiske hiragana- eller katakana-tegn. + 1030 + - 07824f9d-4a51-4900-a39e-5c8d5feb8d07 + 4795733d-2341-db11-898a-0007e9e17ebd true - Items contained with a particular SystemUser. + Pronunciation of the middle name of the user, written in phonetic hiragana or katakana characters. 1033 - 26dfece2-1538-4525-b497-4156ec791c6c + 4695733d-2341-db11-898a-0007e9e17ebd true - Mobile Offline Profile + Yomi Middle Name 1033 + + fb90c41e-c4e3-4b1c-becd-551d022b9b19 + + true + Yomi-mellemnavn + 1030 + - 26dfece2-1538-4525-b497-4156ec791c6c + 4695733d-2341-db11-898a-0007e9e17ebd true - Mobile Offline Profile + Yomi Middle Name 1033 @@ -310092,7 +357056,7 @@ false iscustomizable - false + true false false @@ -310107,7 +357071,7 @@ false isrenameable - false + true false false @@ -310121,8190 +357085,9555 @@ true canmodifysearchsettings - false + true true - false + true true true true true - mobileofflineprofileid + yomimiddlename 1900-01-01T00:00:00 true canmodifyrequirementlevelsettings None - MobileOfflineProfileId + YomiMiddleName - LookupType + StringType - 8.0.0.0 + 5.0.0.0 false - + 0 - None - - mobileofflineprofile - + PhoneticGuide + Active + 50 + middlename + + PhoneticGuide + + + false + 0 + 100 - - be56dc1e-f779-4f7f-861a-359bebc8defe + + false + false + false + + false + canbeincustomentityassociation + true + + + false + canbeinmanytomany + true + + + false + canbeprimaryentityinrelationship + true + + + false + canberelatedentityinrelationship + true + + true + + false + canchangetrackingbeenabled + false + + + false + cancreateattributes + true + + + false + cancreatecharts + true + + + false + cancreateforms + true + + + false + cancreateviews + true + + + true + canenablesynctoexternalsearchindex + true + + + true + canmodifyadditionalsettings + true + + true + true + Local + 1900-01-01T00:00:00 + + + false + + + + 809609b3-2241-db11-898a-0007e9e17ebd + + true + Person with access to the Microsoft CRM system and who owns objects in the Microsoft CRM database. + 1033 + + + 125145ba-b8bd-4507-b401-40a4ac048886 + + true + En person, der har adgang til Microsoft CRM, og som ejer objekter i Microsoft CRM-databasen. + 1030 + + + + 809609b3-2241-db11-898a-0007e9e17ebd - mobileofflineprofileid - String - false - false - false - + true + Person with access to the Microsoft CRM system and who owns objects in the Microsoft CRM database. + 1033 + + + + + + 829609b3-2241-db11-898a-0007e9e17ebd + + true + Users + 1033 + + + c944ee90-1c53-4b72-ad46-e752e4ededd0 + + true + Brugere + 1030 + + + + 829609b3-2241-db11-898a-0007e9e17ebd + + true + Users + 1033 + + + + + + 819609b3-2241-db11-898a-0007e9e17ebd + + true + User + 1033 + + + a705c8ed-bc11-40f9-a915-cd286e4fe7e3 + + true + Bruger + 1030 + + + + 819609b3-2241-db11-898a-0007e9e17ebd + + true + User + 1033 + + + false + + false + true + false + false + + + + + true + false + true + false + + true + canmodifyauditsettings + false + + true + true + false + + true + canmodifyconnectionsettings + true + + false + + false + iscustomizable + true + + false + false + + true + canmodifyduplicatedetectionsettings + false + + true + false + true + false + false + false + false + + true + canmodifymailmergesettings + false + + true + + false + ismappable + true + + false + false + + false + canmodifymobileclientreadonly + false + + true + + false + isrenameable + true + + false + false + false + false + false + true + + true + canmodifyqueuesettings + false + + + true + canmodifymobilevisibility + true + + + false + canmodifymobileclientvisibility + true + + systemuser + + + 28b0c6d9-bbac-4c3c-9b8c-36ff610038cb + + false + false - canmodifyadditionalsettings + iscustomizable + false + + true + true + systemuserprofiles_association + None + 5.0.0.0 + ManyToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + systemuserid + systemuser + systemuserprofiles_association + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + fieldsecurityprofileid + fieldsecurityprofile + systemuserprofiles_association + systemuserprofiles + + + 9b3f7254-439a-4553-9b20-f825c7e551dc + + false + + false + iscustomizable + false + + true + true + systemusersyncmappingprofiles_association + None + 7.0.0.0 + ManyToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + systemuserid + systemuser + systemusersyncmappingprofiles_association + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + syncattributemappingprofileid + syncattributemappingprofile + systemusersyncmappingprofiles_association + systemusersyncmappingprofiles + + + 8b366d6e-d389-11db-9246-00123f3a1b51 + + false + + false + iscustomizable + false + + true + true + systemuserroles_association + None + 5.0.0.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + systemuserid + systemuser + systemuserroles_association + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + roleid + role + systemuserroles_association + systemuserroles + + + 8b366d73-d389-11db-9246-00123f3a1b51 + + false + + false + iscustomizable + false + + true + true + teammembership_association + None + 5.0.0.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + teamid + team + teammembership_association + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + systemuserid + systemuser + teammembership_association + teammembership + + + be152c46-5933-4435-9e7f-b26761c114a0 + + false + + false + iscustomizable + false + + true + true + queuemembership_association + None + 6.1.0.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + queueid + queue + queuemembership_association + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + systemuserid + systemuser + queuemembership_association + queuemembership + + + 28e98351-bcba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + msdyn_flow_actionapprovalmodelrelationship_systemuser + None + 2.0.0.15 + ManyToManyRelationship + + DoNotDisplay + Details + + + + d7c9d785-f0db-4224-a3e1-974445837756 + + true + + 1033 + + + + d7c9d785-f0db-4224-a3e1-974445837756 + + true + + 1033 + + + + true + + true + + + 00000000-0000-0000-0000-000000000000 + + msdyn_flow_actionapprovalmodelid + msdyn_flow_actionapprovalmodel + msdyn_flow_actionapprovalmodelrelationship_systemuser + + DoNotDisplay + Details + + + + fdce76d8-ad5b-49ed-a87b-33085702861b + + true + + 1033 + + + + fdce76d8-ad5b-49ed-a87b-33085702861b + + true + + 1033 + + + + true + + true + + + 00000000-0000-0000-0000-000000000000 + + systemuserid + systemuser + msdyn_flow_actionapprovalmodelrelationship_systemuser + msdyn_flow_actionapprovalmodel_systemuser + + + f00f7f57-bcba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + false + msdyn_flow_awaitallactionmodelrelationship_user + None + 2.0.0.16 + ManyToManyRelationship + + DoNotDisplay + Details + + + + 9a8a38b1-9321-4f1a-890e-a173791a5c51 + + true + + 1033 + + + + 9a8a38b1-9321-4f1a-890e-a173791a5c51 + + true + + 1033 + + + + true + + true + + + 00000000-0000-0000-0000-000000000000 + + msdyn_flow_awaitallactionapprovalmodelid + msdyn_flow_awaitallactionapprovalmodel + msdyn_flow_awaitallactionmodelrelationship_user + + DoNotDisplay + Details + + + + 4adeab03-9c1d-4097-b0f6-583181cfc6f5 + + true + + 1033 + + + + 4adeab03-9c1d-4097-b0f6-583181cfc6f5 + + true + + 1033 + + + + true + + true + + + 00000000-0000-0000-0000-000000000000 + + systemuserid + systemuser + msdyn_flow_awaitallactionmodelrelationship_user + msdyn_flow_awaitallactionapprovalmodel_user + + + 79107f57-bcba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + msdyn_flow_awaitallmodelrelationship_systemuser + None + 2.0.0.5 + ManyToManyRelationship + + DoNotDisplay + Details + + + + bff114fa-7603-444b-9b86-8c793cc9a68f + + true + + 1033 + + + + bff114fa-7603-444b-9b86-8c793cc9a68f + + true + + 1033 + + + + true + + true + + + 00000000-0000-0000-0000-000000000000 + + msdyn_flow_awaitallapprovalmodelid + msdyn_flow_awaitallapprovalmodel + msdyn_flow_awaitallmodelrelationship_systemuser + + DoNotDisplay + Details + + + + 1decf2b7-d6ca-42d1-8e33-c3f6dae87e2b + + true + + 1033 + + + + 1decf2b7-d6ca-42d1-8e33-c3f6dae87e2b + + true + + 1033 + + + + true + + true + + + 00000000-0000-0000-0000-000000000000 + + systemuserid + systemuser + msdyn_flow_awaitallmodelrelationship_systemuser + msdyn_flow_awaitallmodel_systemuser + + + a4107f57-bcba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + msdyn_flow_basicapprovalmodelrelationship_systemuser + None + 2.0.0.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + 1e81991b-5ea9-43af-a476-e35b522b8c3a + + true + + 1033 + + + + 1e81991b-5ea9-43af-a476-e35b522b8c3a + + true + + 1033 + + + + true + + true + + + 00000000-0000-0000-0000-000000000000 + + msdyn_flow_basicapprovalmodelid + msdyn_flow_basicapprovalmodel + msdyn_flow_basicapprovalmodelrelationship_systemuser + + DoNotDisplay + Details + + + + 4f757147-7a42-493e-9adc-eb21ca52cd82 + + true + + 1033 + + + + 4f757147-7a42-493e-9adc-eb21ca52cd82 + + true + + 1033 + + + + true + + true + + + 00000000-0000-0000-0000-000000000000 + + systemuserid + systemuser + msdyn_flow_basicapprovalmodelrelationship_systemuser + msdyn_flow_basicapprovalmodel_systemuser + + + d6b5d27c-f2ba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + powerpagecomponent_webrole_systemuser + None + 1.0.0.0 + ManyToManyRelationship + + DoNotDisplay + Details + + + + 8c4e9a0b-3d45-4939-b4a2-60db33fce437 + + true + + 1033 + + + + 8c4e9a0b-3d45-4939-b4a2-60db33fce437 + + true + + 1033 + + + 20000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + powerpagecomponentid + powerpagecomponent + powerpagecomponent_webrole_systemuser + + UseLabel + Details + + + + d412b8fd-9af4-4dcb-9337-4344878f7c64 + + true + + 1033 + + + + d412b8fd-9af4-4dcb-9337-4344878f7c64 + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + systemuserid + systemuser + powerpagecomponent_webrole_systemuser + powerpagecomponent_webrole_systemuser + + + + + 9dc4b011-8b7c-e011-b3dc-00155d7b4422 + + false + + false + iscustomizable + false + + true + true + systemuser_defaultmailbox_mailbox + Append + 6.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + mailboxid + mailbox + systemuser_defaultmailbox_mailbox + defaultmailbox + systemuser + defaultmailbox + + 1 + + + d77f7a29-d076-42eb-85fb-cf79b82f1c7a + + false + + false + iscustomizable true - - 175 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - true - canmodifyauditsettings + + true + true + MobileOfflineProfile_SystemUser + ParentChild + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + mobileofflineprofileid + mobileofflineprofile + MobileOfflineProfile_SystemUser + mobileofflineprofileid + systemuser + mobileofflineprofileid + + 2 + + + 759b5d4c-e2c4-4880-8399-f3ccc80c21cf + + false + + false + iscustomizable true - - false + + true + true + lk_systemuser_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_systemuser_createdonbehalfby + createdonbehalfby + systemuser + createdonbehalfby + + 0 + + + 93f6d977-76be-40e7-8fa8-3577301573d4 + + false + + false + iscustomizable + true + + true + true + lk_systemuser_modifiedonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_systemuser_modifiedonbehalfby + modifiedonbehalfby + systemuser + modifiedonbehalfby + + 0 + + + fe99de80-d999-4419-a094-37918ee9a7ac + + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - true - false - false - true - true - false - - mobileofflineprofileidname - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - MobileOfflineProfileIdName - - - StringType - - 8.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 200 - - - 6b307158-6c06-46e7-82e4-addce8aba8f1 + true + TransactionCurrency_SystemUser + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + transactioncurrencyid + transactioncurrency + TransactionCurrency_SystemUser + transactioncurrencyid + systemuser + transactioncurrencyid + + 0 + + + 953a0299-fe0f-42cf-9ab0-4b3885620120 - - String - true - true - true - - false - canmodifyadditionalsettings - true - - 20 - 1900-01-01T00:00:00 - - - - - 92d6a218-2341-db11-898a-0007e9e17ebd - - true - Mobile phone number for the user. - 1033 - - - - 92d6a218-2341-db11-898a-0007e9e17ebd - - true - Mobile phone number for the user. - 1033 - - - - - - 91d6a218-2341-db11-898a-0007e9e17ebd - - true - Mobile Phone - 1033 - - - - 91d6a218-2341-db11-898a-0007e9e17ebd - - true - Mobile Phone - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - mobilephone - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - MobilePhone - - - StringType - + true + lk_systemuserbase_modifiedby + None 5.0.0.0 - false - 0 - - Text - Inactive - 64 - - - Phone - - - false - 0 - 128 - - - bf721e7f-a2cc-4652-af09-a350ed1213e1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_systemuserbase_modifiedby + modifiedby + systemuser + modifiedby + + 0 + + + 1945baa4-3e2d-4502-a850-c2d383c77209 - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 33 - 1900-01-01T00:00:00 - - - - - 96e8af0c-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who last modified the user. - 1033 - - - - 96e8af0c-2341-db11-898a-0007e9e17ebd - - true - Unique identifier of the user who last modified the user. - 1033 - - - - - - 95e8af0c-2341-db11-898a-0007e9e17ebd - - true - Modified By - 1033 - - - - 95e8af0c-2341-db11-898a-0007e9e17ebd - - true - Modified By - 1033 - - - systemuser - - - + false + false - canmodifyauditsettings + iscustomizable false - - false + + true + false + lk_systemuser_entityimage + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + imagedescriptorid + imagedescriptor + lk_systemuser_entityimage + entityimageid + systemuser + entityimageid_imagedescriptor + + 0 + + + 89c4efa5-341e-42d5-ac34-e759aa182065 + + false false iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - false - true - true - true - false - true - - modifiedby - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - ModifiedBy - - - LookupType - + true + business_unit_system_users + None 5.0.0.0 - false - - - None - - systemuser - - - - b3ca4204-d054-4f36-b70b-bcfac17be161 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_system_users + businessunitid + systemuser + businessunitid + + 0 + + + 481e0cb7-ffd4-4958-81ae-5908fa499a74 - modifiedby - String - false - false - false - - false - canmodifyadditionalsettings - false - - 85 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - modifiedbyname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ModifiedByName - - - StringType - + true + calendar_system_users + Append 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 513 - - - dd14a38c-6c4a-4780-91fa-cc9144f4b227 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + calendarid + calendar + calendar_system_users + calendarid + systemuser + calendarid + + 1 + + + 7ec0afc0-aa56-47c5-ae55-d1cecaf4852f - modifiedby - String - false - false - false - - false - canmodifyadditionalsettings - false - - 125 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - modifiedbyyominame - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ModifiedByYomiName - - - StringType - + false + queue_system_user + Append 5.0.0.0 - true - 0 - - Text - Auto - 100 - modifiedbyname - - Text - - - false - 0 - 513 - - - 2b80cb77-5cc5-4564-b661-867336bdbb29 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + queueid + queue + queue_system_user + queueid + systemuser + queueid + + 1 + + + 8e3c35cf-13ae-e311-80c2-00155d9dac1a - - DateTime - false - false - false - - false - canmodifyadditionalsettings - true - - 29 - 1900-01-01T00:00:00 - - - - - a190aa12-2341-db11-898a-0007e9e17ebd - - true - Date and time when the user was last modified. - 1033 - - - - a190aa12-2341-db11-898a-0007e9e17ebd - - true - Date and time when the user was last modified. - 1033 - - - - - - a090aa12-2341-db11-898a-0007e9e17ebd - - true - Modified On - 1033 - - - - a090aa12-2341-db11-898a-0007e9e17ebd - - true - Modified On - 1033 - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable true - false - true - - true - canmodifyglobalfiltersettings - false - true - false - false - + true + position_users + Append + 7.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + positionid + position + position_users + positionid + systemuser + positionid + + 1 + + + cf63b2de-c5ba-f011-bbd3-7c1e52365f30 + + false + false - isrenameable - true - - false - true - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings + iscustomizable true - - false - true - true - true - false - true - - modifiedon - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - ModifiedOn - - - DateTimeType - + + true + true + territory_system_users + Append 5.0.0.0 - false - 0 - - DateAndTime - Inactive - - 0 - - false - canmodifybehavior - false - - - UserLocal - - - - 08c19146-71d8-4da9-8f04-c749dff9bb69 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + territoryid + territory + territory_system_users + territoryid + systemuser + territoryid + + 1 + + + 6a2646e8-854e-4daf-96b3-35e04baa05bb - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 137 - 1900-01-01T00:00:00 - - - - - b06c14e8-039a-4d4a-8f47-991950b5dac8 - - true - Unique identifier of the delegate user who last modified the systemuser. - 1033 - - - - b06c14e8-039a-4d4a-8f47-991950b5dac8 - - true - Unique identifier of the delegate user who last modified the systemuser. - 1033 - - - - - - f106516b-d13a-4592-a2da-c291327190c3 - - true - Modified By (Delegate) - 1033 - - - - f106516b-d13a-4592-a2da-c291327190c3 - - true - Modified By (Delegate) - 1033 - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - + true + lk_systemuserbase_createdby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_systemuserbase_createdby + createdby + systemuser + createdby + + 0 + + + af5d32e9-bffd-4f9e-a21e-c50f8501a7ea + + false + false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings + iscustomizable true - - false - true - true - true - false - true - - modifiedonbehalfby - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfBy - - - LookupType - + + true + true + user_parent_user + None 5.0.0.0 - false - - - None - - systemuser - - - - 72f20d7f-54bd-4bff-a1be-e5fd07e23acc + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + true + false + systemuserid + systemuser + user_parent_user + parentsystemuserid + systemuser + parentsystemuserid + + 0 + + + 093a2af2-7fa4-4568-aa18-526502f115e1 - modifiedonbehalfby - String - false - false - false - - false - canmodifyadditionalsettings - false - - 139 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - + false + organization_system_users + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_system_users + organizationid + systemuser + organizationid_organization + + 0 + + + 8c0827f3-f987-4da7-a85e-baba30281926 + + false + false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings + iscustomizable false - - + + true + true + processstage_systemusers + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + processstageid + processstage + processstage_systemusers + stageid + systemuser + stageid_processstage + + 0 + + + 2026-04-10T03:48:23.3869952 + 8 + + + cb480000-f4ba-f011-bbd3-7c1e52365f30 + + true + false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - modifiedonbehalfbyname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfByName - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 513 - - - d9e22f68-57ed-49fa-b2a9-9fdc85e506b5 + + true + true + mspp_systemuser_mspp_adplacement_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + efe750b3-0630-4688-9585-e94b6036e5c8 + + true + + 1033 + + + 16ffeac6-709b-4a43-8e99-73c5a690cb47 + + true + + 1030 + + + + efe750b3-0630-4688-9585-e94b6036e5c8 + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_adplacement_createdby + mspp_createdby + mspp_adplacement + mspp_createdby + + 1 + + + d4480000-f4ba-f011-bbd3-7c1e52365f30 - modifiedonbehalfby - String - false - false - false - + true + false - canmodifyadditionalsettings + iscustomizable false - - 140 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - + + true + true + mspp_systemuser_mspp_adplacement_modifiedby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 9ed3e77a-fd0e-4c62-aa27-20da8a1c61d1 + + true + + 1033 + + + 3073df6c-5928-47dd-b1fc-fa925eaa26bf + + true + + 1030 + + + + 9ed3e77a-fd0e-4c62-aa27-20da8a1c61d1 + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_adplacement_modifiedby + mspp_modifiedby + mspp_adplacement + mspp_modifiedby + + 1 + + + dc480000-f4ba-f011-bbd3-7c1e52365f30 + + true + false - canmodifyauditsettings + iscustomizable false - - false + + true + true + mspp_systemuser_mspp_columnpermission_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 0d0d3f2a-7df6-41e5-b4fb-bbbc7f95cfae + + true + + 1033 + + + 9f66137c-f409-4bae-8785-adfd4148292b + + true + + 1030 + + + + 0d0d3f2a-7df6-41e5-b4fb-bbbc7f95cfae + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_columnpermission_createdby + mspp_createdby + mspp_columnpermission + mspp_createdby + + 1 + + + e5480000-f4ba-f011-bbd3-7c1e52365f30 + + true false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - + true + mspp_systemuser_mspp_columnpermission_modifiedby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 010521a4-76c6-4c77-8be7-4df03082dc66 + + true + + 1033 + + + 0f8ddfda-7060-4ec8-9119-19d55fc7572d + + true + + 1030 + + + + 010521a4-76c6-4c77-8be7-4df03082dc66 + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_columnpermission_modifiedby + mspp_modifiedby + mspp_columnpermission + mspp_modifiedby + + 1 + + + ed480000-f4ba-f011-bbd3-7c1e52365f30 + + true + false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings + iscustomizable false - - + + true + true + mspp_systemuser_mspp_columnpermissionprofile_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 0ac27016-614f-4d00-b42d-b4e98ea0b976 + + true + + 1033 + + + 800387e4-ea7e-4d9b-a197-57afc0a18760 + + true + + 1030 + + + + 0ac27016-614f-4d00-b42d-b4e98ea0b976 + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_columnpermissionprofile_createdby + mspp_createdby + mspp_columnpermissionprofile + mspp_createdby + + 1 + + + f6480000-f4ba-f011-bbd3-7c1e52365f30 + + true + false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - modifiedonbehalfbyyominame - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ModifiedOnBehalfByYomiName - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 100 - modifiedonbehalfbyname - - Text - - - false - 0 - 513 - - - 75bffba4-9be4-4159-9a42-a0a0663de034 + + true + true + mspp_systemuser_mspp_columnpermissionprofile_modifiedby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 39d5aee5-0fc2-4480-98a5-9109ad40918e + + true + + 1033 + + + 9009af18-09f6-45f6-88e3-3ca04ab73cd0 + + true + + 1030 + + + + 39d5aee5-0fc2-4480-98a5-9109ad40918e + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_columnpermissionprofile_modifiedby + mspp_modifiedby + mspp_columnpermissionprofile + mspp_modifiedby + + 1 + + + fe480000-f4ba-f011-bbd3-7c1e52365f30 - - String - true - true - true - + true + false - canmodifyadditionalsettings - true - - 13 - 1900-01-01T00:00:00 - - - - - 3b90aa12-2341-db11-898a-0007e9e17ebd - - true - Nickname of the user. - 1033 - - - - 3b90aa12-2341-db11-898a-0007e9e17ebd - - true - Nickname of the user. - 1033 - - - - - - 3a90aa12-2341-db11-898a-0007e9e17ebd + iscustomizable + false + + true + true + mspp_systemuser_mspp_contentsnippet_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 5cd15e01-5985-4315-a4ca-04fb8f683e25 + + true + + 1033 + + + 59427dc4-ce6c-4965-a1fa-287447e00070 + + true + + 1030 + + + + 5cd15e01-5985-4315-a4ca-04fb8f683e25 - true - Nickname - 1033 - - - - 3a90aa12-2341-db11-898a-0007e9e17ebd - - true - Nickname - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_contentsnippet_createdby + mspp_createdby + mspp_contentsnippet + mspp_createdby + + 1 + + + 07490000-f4ba-f011-bbd3-7c1e52365f30 + + true false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - nickname - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - NickName - - - StringType - - 5.0.0.0 - false - 0 - - Text - Auto - 50 - - - Text - - - false - 0 - 100 - - - fd1f7f4f-ebfc-4635-8955-a3f9cfde2e73 - - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 4 - 1900-01-01T00:00:00 - - - - - 2153c2fa-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the organization associated with the user. - 1033 - - - - 2153c2fa-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the organization associated with the user. - 1033 - - - - - - 2053c2fa-2241-db11-898a-0007e9e17ebd + true + mspp_systemuser_mspp_contentsnippet_modifiedby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 056c1228-1f28-4744-b8ca-e5c15632c00b + + true + + 1033 + + + 844fb2cf-23cb-4fee-bdc7-132ee292a894 + + true + + 1030 + + + + 056c1228-1f28-4744-b8ca-e5c15632c00b - true - Organization - 1033 - - - - 2053c2fa-2241-db11-898a-0007e9e17ebd - - true - Organization - 1033 - - - systemuser - - - - false - canmodifyauditsettings - false - - false + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_contentsnippet_modifiedby + mspp_modifiedby + mspp_contentsnippet + mspp_modifiedby + + 1 + + + 0f490000-f4ba-f011-bbd3-7c1e52365f30 + + true false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - true - true - true - false - true - - organizationid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - OrganizationId - - - UniqueidentifierType - - 5.0.0.0 - false - - - - - 6080262a-f6bb-440d-ab60-a1807a383974 + true + mspp_systemuser_mspp_entityform_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + c9e107c0-7981-4534-9622-9c41569ebbea + + true + + 1033 + + + 403283ce-d13b-4b02-aa22-5736b9a3f5d3 + + true + + 1030 + + + + c9e107c0-7981-4534-9622-9c41569ebbea + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_entityform_createdby + mspp_createdby + mspp_entityform + mspp_createdby + + 1 + + + 18490000-f4ba-f011-bbd3-7c1e52365f30 - organizationid - String - false - false - false - - false - canmodifyadditionalsettings - false - - 89 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + true false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - organizationidname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - OrganizationIdName - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 320 - - - c8d1b5bd-d028-4cc5-a487-697bc89c54aa - - - Picklist - false - false - false - - false - canmodifyadditionalsettings - true - - 111 - 1900-01-01T00:00:00 - - - - - dd25e7d6-2241-db11-898a-0007e9e17ebd - - true - Outgoing email delivery method for the user. - 1033 - - - - dd25e7d6-2241-db11-898a-0007e9e17ebd - - true - Outgoing email delivery method for the user. - 1033 - - - - - - dc25e7d6-2241-db11-898a-0007e9e17ebd + true + mspp_systemuser_mspp_entityform_modifiedby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 8a03ad0c-c213-4d03-860d-f652abb805b7 + + true + + 1033 + + + 866fc4cb-cb5a-41e5-9154-5cdcfa97a1a1 + + true + + 1030 + + + + 8a03ad0c-c213-4d03-860d-f652abb805b7 - true - Outgoing Email Delivery Method - 1033 - - - - dc25e7d6-2241-db11-898a-0007e9e17ebd - - true - Outgoing Email Delivery Method - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_entityform_modifiedby + mspp_modifiedby + mspp_entityform + mspp_modifiedby + + 1 + + + 20490000-f4ba-f011-bbd3-7c1e52365f30 + + true false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - outgoingemaildeliverymethod - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - OutgoingEmailDeliveryMethod - - - PicklistType - - 5.0.0.0 - false - 0 - - 1 - - 7bd32f60-d135-4251-a399-2998b47290fd - - + true + mspp_systemuser_mspp_entityformmetadata_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + - 67b05631-0aa1-4150-87bd-5814f509f428 + 501d3cf4-3271-40d0-9914-f17584d28d47 true - Outgoing email delivery method for the user. + 1033 + + 2b418f8e-c4a7-48ba-b405-7c7adc71fc67 + + true + + 1030 + - 67b05631-0aa1-4150-87bd-5814f509f428 + 501d3cf4-3271-40d0-9914-f17584d28d47 true - Outgoing email delivery method for the user. + 1033 - - + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_entityformmetadata_createdby + mspp_createdby + mspp_entityformmetadata + mspp_createdby + + 1 + + + 29490000-f4ba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + mspp_systemuser_mspp_entityformmetadata_modifiedby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + - 35f6c3d4-1f89-4511-9a15-e6a7c4353c5a + 8b19ef19-151b-453f-87ae-33a57546773f true - Outgoing Email Delivery Method + 1033 + + bc2bb3de-fcef-435c-b080-7816af3ebdf0 + + true + + 1030 + - 35f6c3d4-1f89-4511-9a15-e6a7c4353c5a + 8b19ef19-151b-453f-87ae-33a57546773f true - Outgoing Email Delivery Method + 1033 - - - false - - false - iscustomizable - false - - false - true - systemuser_outgoingemaildeliverymethod - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - df25e7d6-2241-db11-898a-0007e9e17ebd - - true - None - 1033 - - - - df25e7d6-2241-db11-898a-0007e9e17ebd - - true - None - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - e125e7d6-2241-db11-898a-0007e9e17ebd - - true - Microsoft Dynamics 365 for Outlook - 1033 - - - - e125e7d6-2241-db11-898a-0007e9e17ebd - - true - Microsoft Dynamics 365 for Outlook - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - e325e7d6-2241-db11-898a-0007e9e17ebd - - true - Server-Side Synchronization or Email Router - 1033 - - - - e325e7d6-2241-db11-898a-0007e9e17ebd - - true - Server-Side Synchronization or Email Router - 1033 - - - - 2 - - - - - - - - 0 - - - - - 774ea61c-2e60-4bf1-a2dc-c383a04a1e30 + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_entityformmetadata_modifiedby + mspp_modifiedby + mspp_entityformmetadata + mspp_modifiedby + + 1 + + + 31490000-f4ba-f011-bbd3-7c1e52365f30 - outgoingemaildeliverymethod - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 121 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - + true + false - canmodifyauditsettings + iscustomizable false - - false + + true + true + mspp_systemuser_mspp_entitylist_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 1059bf83-ef32-4db7-9676-878a9e371419 + + true + + 1033 + + + c98a133e-9ed8-4cc6-9b79-ab0c5c4f3ea4 + + true + + 1030 + + + + 1059bf83-ef32-4db7-9676-878a9e371419 + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_entitylist_createdby + mspp_createdby + mspp_entitylist + mspp_createdby + + 1 + + + 3a490000-f4ba-f011-bbd3-7c1e52365f30 + + true false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - + true + mspp_systemuser_mspp_entitylist_modifiedby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + ada8d8c8-5528-467d-9ddf-0ba505b8916c + + true + + 1033 + + + e507c2a5-19f0-4d36-8476-63a6cc24a0ce + + true + + 1030 + + + + ada8d8c8-5528-467d-9ddf-0ba505b8916c + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_entitylist_modifiedby + mspp_modifiedby + mspp_entitylist + mspp_modifiedby + + 1 + + + 74b14c00-2b5d-4c8a-bb8f-a7309e535e77 + + false + false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings + iscustomizable false - - + + true + false + lk_importfilebase_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_importfilebase_createdonbehalfby + createdonbehalfby + importfile + createdonbehalfby + + 0 + + + 882a7c00-65af-485a-8105-4c8f52d8ac0c + + false + false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - outgoingemaildeliverymethodname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - OutgoingEmailDeliveryMethodName - - - VirtualType - + + true + false + lk_lookupmapping_createdby + None 5.0.0.0 - true - - - - - 643d1a57-9b14-422e-8398-c652eb052f73 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_lookupmapping_createdby + createdby + lookupmapping + createdby + + 0 + + + 92b8a900-0846-497c-b933-66ebb85f221f - - DateTime - false - false - false - - false - canmodifyadditionalsettings - true - - 116 - 1900-01-01T00:00:00 - - - - - 43f233e4-de54-4e5e-9103-93497a991cfb - - true - Date and time that the record was migrated. - 1033 - - - - 43f233e4-de54-4e5e-9103-93497a991cfb - - true - Date and time that the record was migrated. - 1033 - - - - - - c37d26e5-56e0-448f-89d6-d638e441c54d - - true - Record Created On - 1033 - - - - c37d26e5-56e0-448f-89d6-d638e441c54d - - true - Record Created On - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - false - true - true - false - true - - overriddencreatedon - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - OverriddenCreatedOn - - - DateTimeType - + true + lk_contactbase_createdby + None 5.0.0.0 - false - 0 - - DateOnly - Inactive - - 0 - - false - canmodifybehavior - false - - - UserLocal - - - - 613340d6-2d52-4b72-b94b-bbfbe059328f + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_contactbase_createdby + createdby + contact + createdby + + 0 + + + 3163fd00-60aa-11e0-834f-1cc1de634cfe - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 6 - 1900-01-01T00:00:00 - - - - - 7b52c2fa-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the manager of the user. - 1033 - - - - 7b52c2fa-2241-db11-898a-0007e9e17ebd - - true - Unique identifier of the manager of the user. - 1033 - - - - - - 7a52c2fa-2241-db11-898a-0007e9e17ebd - - true - Manager - 1033 - - - - 7a52c2fa-2241-db11-898a-0007e9e17ebd - - true - Manager - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - true - - false - false - false - false - + false + systemuser_PostRoles + None + 5.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + systemuser_PostRoles + regardingobjectid + postrole + regardingobjectid_systemuser + + 0 + + + ac7dd601-0e2f-f111-88b5-7c1e5287d1d8 + + false + true - canmodifyissortablesettings + iscustomizable false - - + + false + true + lk_agentconversationmessagefile_createdby + None + 1.0.0.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_agentconversationmessagefile_createdby + createdby + agentconversationmessagefile + createdby + + 0 + + + b27dd601-0e2f-f111-88b5-7c1e5287d1d8 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - parentsystemuserid - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - ParentSystemUserId - - - LookupType - - 5.0.0.0 - false - - - None - - systemuser - - - - d6549e0c-8a35-420f-be97-66b9f99e07ba + + false + true + lk_agentconversationmessagefile_createdonbehalfby + None + 1.0.0.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_agentconversationmessagefile_createdonbehalfby + createdonbehalfby + agentconversationmessagefile + createdonbehalfby + + 0 + + + b87dd601-0e2f-f111-88b5-7c1e5287d1d8 - parentsystemuserid - String - false - false - false - - false - canmodifyadditionalsettings - false - - 37 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false - false + true iscustomizable false - false - false - + false + true + lk_agentconversationmessagefile_modifiedby + None + 1.0.0.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_agentconversationmessagefile_modifiedby + modifiedby + agentconversationmessagefile + modifiedby + + 0 + + + be7dd601-0e2f-f111-88b5-7c1e5287d1d8 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - + iscustomizable + true + + false + true + lk_agentconversationmessagefile_modifiedonbehalfby + None + 1.0.0.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_agentconversationmessagefile_modifiedonbehalfby + modifiedonbehalfby + agentconversationmessagefile + modifiedonbehalfby + + 0 + + + d07dd601-0e2f-f111-88b5-7c1e5287d1d8 + + false + true - canmodifyissortablesettings + iscustomizable false - - + + false + true + user_agentconversationmessagefile + None + 1.0.0.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_agentconversationmessagefile + owninguser + agentconversationmessagefile + owninguser + + 0 + + + d74ee201-7487-4481-b493-214b45c3b2eb + + false + false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - parentsystemuseridname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ParentSystemUserIdName - - - StringType - + + true + false + lk_bulkdeleteoperationbase_modifiedby + None 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 513 - - - e5b6104b-733b-4bd4-a01d-7da150c03487 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_bulkdeleteoperationbase_modifiedby + modifiedby + bulkdeleteoperation + modifiedby + + 0 + + + b913f801-cbba-f011-bbd3-7c1e52365f30 - parentsystemuserid - String - false - false - false - - false - canmodifyadditionalsettings - false - - 123 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false + + true + iscustomizable + true + + false + true + lk_msdyn_kalanguagesetting_createdby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kalanguagesetting_createdby + createdby + msdyn_kalanguagesetting + createdby + + 0 + + + bf13f801-cbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_msdyn_kalanguagesetting_createdonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kalanguagesetting_createdonbehalfby + createdonbehalfby + msdyn_kalanguagesetting + createdonbehalfby + + 0 + + + c513f801-cbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_msdyn_kalanguagesetting_modifiedby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kalanguagesetting_modifiedby + modifiedby + msdyn_kalanguagesetting + modifiedby + + 0 + + + cb13f801-cbba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - parentsystemuseridyominame - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ParentSystemUserIdYomiName - - - StringType - - 5.0.0.0 - true - 0 - - Text - Auto - 100 - parentsystemuseridname - - Text - - - false - 0 - 513 - - - 185ab2d7-4943-4809-87f1-59db62647948 + false + true + lk_msdyn_kalanguagesetting_modifiedonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kalanguagesetting_modifiedonbehalfby + modifiedonbehalfby + msdyn_kalanguagesetting + modifiedonbehalfby + + 0 + + + de13f801-cbba-f011-bbd3-7c1e52365f30 - - Integer - false - false - false - - false - canmodifyadditionalsettings - false - - 27 - 1900-01-01T00:00:00 - - - - - d251c2fa-2241-db11-898a-0007e9e17ebd - - true - For internal use only. - 1033 - - - - d251c2fa-2241-db11-898a-0007e9e17ebd - - true - For internal use only. - 1033 - - - - - - d151c2fa-2241-db11-898a-0007e9e17ebd - - true - Passport Hi - 1033 - - - - d151c2fa-2241-db11-898a-0007e9e17ebd - - true - Passport Hi - 1033 - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - passporthi - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - PassportHi - - - IntegerType - - 5.0.0.0 - false - 0 - - None - 1000000000 - 0 - - 0 - - - b2d2c142-deb5-4a86-bf52-4bc4b750f4d0 + false + true + user_msdyn_kalanguagesetting + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_msdyn_kalanguagesetting + owninguser + msdyn_kalanguagesetting + owninguser + + 0 + + + e514f801-cbba-f011-bbd3-7c1e52365f30 - - Integer - false - false - false - - false - canmodifyadditionalsettings - false - - 25 - 1900-01-01T00:00:00 - - - - - 061ed7e8-2241-db11-898a-0007e9e17ebd - - true - For internal use only. - 1033 - - - - 061ed7e8-2241-db11-898a-0007e9e17ebd - - true - For internal use only. - 1033 - - - - - - 051ed7e8-2241-db11-898a-0007e9e17ebd - - true - Passport Lo - 1033 - - - - 051ed7e8-2241-db11-898a-0007e9e17ebd - - true - Passport Lo - 1033 - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - passportlo - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - PassportLo - - - IntegerType - - 5.0.0.0 - false - 0 - - None - 1000000000 - 0 - - 0 - - - 7e118801-6843-4a97-9436-09af63a1259c + false + true + lk_msdyn_kbattachment_createdby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kbattachment_createdby + createdby + msdyn_kbattachment + createdby + + 0 + + + eb14f801-cbba-f011-bbd3-7c1e52365f30 - - String - true - true - true - - false - canmodifyadditionalsettings - true - - 11 - 1900-01-01T00:00:00 - - - - - 3baac7f4-2241-db11-898a-0007e9e17ebd - - true - Personal email address of the user. - 1033 - - - - 3baac7f4-2241-db11-898a-0007e9e17ebd - - true - Personal email address of the user. - 1033 - - - - - - 3aaac7f4-2241-db11-898a-0007e9e17ebd - - true - Email 2 - 1033 - - - - 3aaac7f4-2241-db11-898a-0007e9e17ebd - - true - Email 2 - 1033 - - - systemuser - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + lk_msdyn_kbattachment_createdonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kbattachment_createdonbehalfby + createdonbehalfby + msdyn_kbattachment + createdonbehalfby + + 0 + + + f314f801-cbba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - + false + true + lk_msdyn_kbattachment_modifiedby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kbattachment_modifiedby + modifiedby + msdyn_kbattachment + modifiedby + + 0 + + + fc14f801-cbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable + iscustomizable true - - false - false - false - false - - true - canmodifyissortablesettings - false - - + + false + true + lk_msdyn_kbattachment_modifiedonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kbattachment_modifiedonbehalfby + modifiedonbehalfby + msdyn_kbattachment + modifiedonbehalfby + + 0 + + + 1115f801-cbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - personalemailaddress - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - PersonalEMailAddress - - - StringType - - 5.0.0.0 - false - 0 - - Email - Inactive - 100 - - - Email - - - false - 0 - 200 - - - a5373c3b-f80c-4cf5-8862-7c664186b4a9 + + false + true + user_msdyn_kbattachment + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_msdyn_kbattachment + owninguser + msdyn_kbattachment + owninguser + + 0 + + + a215f801-cbba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 23 - 1900-01-01T00:00:00 - - - - - 99d8a218-2341-db11-898a-0007e9e17ebd - - true - URL for the Website on which a photo of the user is located. - 1033 - - - - 99d8a218-2341-db11-898a-0007e9e17ebd - - true - URL for the Website on which a photo of the user is located. - 1033 - - - - - - 98d8a218-2341-db11-898a-0007e9e17ebd - - true - Photo URL - 1033 - - - - 98d8a218-2341-db11-898a-0007e9e17ebd - - true - Photo URL - 1033 - - - systemuser - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + lk_msdyn_kmpersonalizationsetting_createdby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kmpersonalizationsetting_createdby + createdby + msdyn_kmpersonalizationsetting + createdby + + 0 + + + a815f801-cbba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - + false + true + lk_msdyn_kmpersonalizationsetting_createdonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kmpersonalizationsetting_createdonbehalfby + createdonbehalfby + msdyn_kmpersonalizationsetting + createdonbehalfby + + 0 + + + af15f801-cbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable + iscustomizable true - - false - false - false - false - - true - canmodifyissortablesettings - false - - + + false + true + lk_msdyn_kmpersonalizationsetting_modifiedby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kmpersonalizationsetting_modifiedby + modifiedby + msdyn_kmpersonalizationsetting + modifiedby + + 0 + + + b515f801-cbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - photourl - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - PhotoUrl - - - StringType - - 5.0.0.0 - false - 0 - - Url - Inactive - 200 - - - Url - - - false - 0 - 400 - - - 507ae834-9bd7-4c3e-8770-bdcde5fb2c3c + + false + true + lk_msdyn_kmpersonalizationsetting_modifiedonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kmpersonalizationsetting_modifiedonbehalfby + modifiedonbehalfby + msdyn_kmpersonalizationsetting + modifiedonbehalfby + + 0 + + + 7316f801-cbba-f011-bbd3-7c1e52365f30 - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 170 - 1900-01-01T00:00:00 - - - - - 8b3c35cf-13ae-e311-80c2-00155d9dac1a - - true - User's position in hierarchical security model. - 1033 - - - - 8b3c35cf-13ae-e311-80c2-00155d9dac1a - - true - User's position in hierarchical security model. - 1033 - - - - - - 8a3c35cf-13ae-e311-80c2-00155d9dac1a - - true - Position - 1033 - - - - 8a3c35cf-13ae-e311-80c2-00155d9dac1a - - true - Position - 1033 - - - systemuser - - - - true - canmodifyauditsettings - false - - false + false - false + true iscustomizable true - false - false - + false + true + lk_msdyn_knowledgearticletemplate_createdby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_knowledgearticletemplate_createdby + createdby + msdyn_knowledgearticletemplate + createdby + + 0 + + + 7916f801-cbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable + iscustomizable true - - false - true - false - false - - true - canmodifyissortablesettings - false - - + + false + true + lk_msdyn_knowledgearticletemplate_createdonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_knowledgearticletemplate_createdonbehalfby + createdonbehalfby + msdyn_knowledgearticletemplate + createdonbehalfby + + 0 + + + 7f16f801-cbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - positionid - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - PositionId - - - LookupType - - 7.0.0.0 - false - - - None - - position - - - - 9d1a98cb-23df-4e38-b395-641360e1b3f4 + + false + true + lk_msdyn_knowledgearticletemplate_modifiedby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_knowledgearticletemplate_modifiedby + modifiedby + msdyn_knowledgearticletemplate + modifiedby + + 0 + + + 8516f801-cbba-f011-bbd3-7c1e52365f30 - positionid - String - false - false - false - - false - canmodifyadditionalsettings - true - - 171 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false - false + true iscustomizable true - false - false - + false + true + lk_msdyn_knowledgearticletemplate_modifiedonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_knowledgearticletemplate_modifiedonbehalfby + modifiedonbehalfby + msdyn_knowledgearticletemplate + modifiedonbehalfby + + 0 + + + 9716f801-cbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable + iscustomizable true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - positionidname - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - PositionIdName - - - StringType - - 7.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 200 - - - 60c847c8-37c6-402f-85bf-49e36651f443 + + false + true + user_msdyn_knowledgearticletemplate + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_msdyn_knowledgearticletemplate + owninguser + msdyn_knowledgearticletemplate + owninguser + + 0 + + + 2217f801-cbba-f011-bbd3-7c1e52365f30 - - Picklist - false - false - false - - false - canmodifyadditionalsettings - true - - 22 - 1900-01-01T00:00:00 - - - - - cf52c2fa-2241-db11-898a-0007e9e17ebd - - true - Preferred address for the user. - 1033 - - - - cf52c2fa-2241-db11-898a-0007e9e17ebd - - true - Preferred address for the user. - 1033 - - - - - - ce52c2fa-2241-db11-898a-0007e9e17ebd - - true - Preferred Address - 1033 - - - - ce52c2fa-2241-db11-898a-0007e9e17ebd - - true - Preferred Address - 1033 - - - systemuser - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + lk_msdyn_knowledgepersonalfilter_createdby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_knowledgepersonalfilter_createdby + createdby + msdyn_knowledgepersonalfilter + createdby + + 0 + + + 2817f801-cbba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - + false + true + lk_msdyn_knowledgepersonalfilter_createdonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_knowledgepersonalfilter_createdonbehalfby + createdonbehalfby + msdyn_knowledgepersonalfilter + createdonbehalfby + + 0 + + + 2e17f801-cbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable + iscustomizable true - - false - false - false - false - + + false + true + lk_msdyn_knowledgepersonalfilter_modifiedby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_knowledgepersonalfilter_modifiedby + modifiedby + msdyn_knowledgepersonalfilter + modifiedby + + 0 + + + 3417f801-cbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - + iscustomizable + true + + false + true + lk_msdyn_knowledgepersonalfilter_modifiedonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_knowledgepersonalfilter_modifiedonbehalfby + modifiedonbehalfby + msdyn_knowledgepersonalfilter + modifiedonbehalfby + + 0 + + + 4617f801-cbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - preferredaddresscode - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - PreferredAddressCode - - - PicklistType - - 5.0.0.0 - false - 0 - - 1 - - 83526c8e-633c-4c75-ac6b-7e5f3bd308e1 - - - - - f8c1b0d4-2f52-41d7-9d5b-cc2ba84a67e4 - - true - Preferred address for the user. - 1033 - - - - f8c1b0d4-2f52-41d7-9d5b-cc2ba84a67e4 - - true - Preferred address for the user. - 1033 - - - - - - 09498c19-102b-4f8f-ad15-4653244f6e99 - - true - Preferred Address - 1033 - - - - 09498c19-102b-4f8f-ad15-4653244f6e99 - - true - Preferred Address - 1033 - - - - false - - false - iscustomizable - true - - false - true - systemuser_preferredaddresscode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - d152c2fa-2241-db11-898a-0007e9e17ebd - - true - Mailing Address - 1033 - - - - d152c2fa-2241-db11-898a-0007e9e17ebd - - true - Mailing Address - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - d352c2fa-2241-db11-898a-0007e9e17ebd - - true - Other Address - 1033 - - - - d352c2fa-2241-db11-898a-0007e9e17ebd - - true - Other Address - 1033 - - - - 2 - - - - - - - - 0 - - - - - f135f3a6-2b27-432a-8fb9-9f5cbc7d0f94 + + false + true + user_msdyn_knowledgepersonalfilter + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_msdyn_knowledgepersonalfilter + owninguser + msdyn_knowledgepersonalfilter + owninguser + + 0 + + + f317f801-cbba-f011-bbd3-7c1e52365f30 - preferredaddresscode - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 94 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false - false + true iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - preferredaddresscodename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - PreferredAddressCodeName - - - VirtualType - - 5.0.0.0 - true - - - - - 49d04ed6-eec5-44ae-8db2-4427cfe775f9 + false + true + lk_msdyn_knowledgesearchfilter_createdby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_knowledgesearchfilter_createdby + createdby + msdyn_knowledgesearchfilter + createdby + + 0 + + + f917f801-cbba-f011-bbd3-7c1e52365f30 - - Picklist - false - false - false - - false - canmodifyadditionalsettings - true - - 18 - 1900-01-01T00:00:00 - - - - - d6cde1dc-2241-db11-898a-0007e9e17ebd - - true - Preferred email address for the user. - 1033 - - - - d6cde1dc-2241-db11-898a-0007e9e17ebd - - true - Preferred email address for the user. - 1033 - - - - - - d5cde1dc-2241-db11-898a-0007e9e17ebd - - true - Preferred Email - 1033 - - - - d5cde1dc-2241-db11-898a-0007e9e17ebd - - true - Preferred Email - 1033 - - - systemuser - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + lk_msdyn_knowledgesearchfilter_createdonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_knowledgesearchfilter_createdonbehalfby + createdonbehalfby + msdyn_knowledgesearchfilter + createdonbehalfby + + 0 + + + ff17f801-cbba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - + false + true + lk_msdyn_knowledgesearchfilter_modifiedby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_knowledgesearchfilter_modifiedby + modifiedby + msdyn_knowledgesearchfilter + modifiedby + + 0 + + + 0518f801-cbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable + iscustomizable true - - false - false - false - false - - true - canmodifyissortablesettings - false - - + + false + true + lk_msdyn_knowledgesearchfilter_modifiedonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_knowledgesearchfilter_modifiedonbehalfby + modifiedonbehalfby + msdyn_knowledgesearchfilter + modifiedonbehalfby + + 0 + + + 1718f801-cbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings - false - - true - true - true - true - true - true - - preferredemailcode - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - PreferredEmailCode - - - PicklistType - - 5.0.0.0 - false - 0 - - 1 - - 2f081a96-9ecd-42f9-aa54-ee527905462f - - - - - efc838d0-f1dd-4d7c-a68b-efc0a0d45d50 - - true - Preferred email address for the user. - 1033 - - - - efc838d0-f1dd-4d7c-a68b-efc0a0d45d50 - - true - Preferred email address for the user. - 1033 - - - - - - 031fe914-7900-4549-ba4a-0f191a0fec8b - - true - Preferred Email - 1033 - - - - 031fe914-7900-4549-ba4a-0f191a0fec8b - - true - Preferred Email - 1033 - - - - false - - false - iscustomizable - true - - false - true - systemuser_preferredemailcode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - d8cde1dc-2241-db11-898a-0007e9e17ebd - - true - Default Value - 1033 - - - - d8cde1dc-2241-db11-898a-0007e9e17ebd - - true - Default Value - 1033 - - - - 1 - - - - - - - - 0 - - - - - c3a410e8-ec73-4d91-b818-211f4d11ff72 + iscustomizable + true + + false + true + user_msdyn_knowledgesearchfilter + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_msdyn_knowledgesearchfilter + owninguser + msdyn_knowledgesearchfilter + owninguser + + 0 + + + b19e0e02-7e9e-11dd-94cd-00188b01dce6 - preferredemailcode - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 93 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - + true + lk_publisher_createdby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_publisher_createdby + createdby + publisher + createdby + + 0 + + + 13e2da02-f0ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - preferredemailcodename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - PreferredEmailCodeName - - - VirtualType - - 5.0.0.0 - true - - - - - 240041b6-b89e-40f1-9429-2bff562a0280 + + false + true + lk_powerbidataset_createdby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbidataset_createdby + createdby + powerbidataset + createdby + + 0 + + + 19e2da02-f0ba-f011-bbd3-7c1e52365f30 - - Picklist - false - false - false - - false - canmodifyadditionalsettings - true - - 21 - 1900-01-01T00:00:00 - - - - - f452c2fa-2241-db11-898a-0007e9e17ebd - - true - Preferred phone number for the user. - 1033 - - - - f452c2fa-2241-db11-898a-0007e9e17ebd - - true - Preferred phone number for the user. - 1033 - - - - - - f352c2fa-2241-db11-898a-0007e9e17ebd - - true - Preferred Phone - 1033 - - - - f352c2fa-2241-db11-898a-0007e9e17ebd - - true - Preferred Phone - 1033 - - - systemuser - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + lk_powerbidataset_createdonbehalfby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbidataset_createdonbehalfby + createdonbehalfby + powerbidataset + createdonbehalfby + + 0 + + + 1fe2da02-f0ba-f011-bbd3-7c1e52365f30 + + false - false + true + iscustomizable + false + + false + true + lk_powerbidataset_modifiedby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbidataset_modifiedby + modifiedby + powerbidataset + modifiedby + + 0 + + + 25e2da02-f0ba-f011-bbd3-7c1e52365f30 + + false + + true iscustomizable true - false - false - + false + true + lk_powerbidataset_modifiedonbehalfby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbidataset_modifiedonbehalfby + modifiedonbehalfby + powerbidataset + modifiedonbehalfby + + 0 + + + 37e2da02-f0ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings + iscustomizable false - - true - false - false - - false - isrenameable - true - - false - false - false - false - + + false + true + user_powerbidataset + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_powerbidataset + owninguser + powerbidataset + owninguser + + 0 + + + f1e2da02-f0ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings + iscustomizable false - - + + false + true + lk_powerbidatasetapdx_createdby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbidatasetapdx_createdby + createdby + powerbidatasetapdx + createdby + + 0 + + + f7e2da02-f0ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - preferredphonecode - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - PreferredPhoneCode - - - PicklistType - - 5.0.0.0 - false - 0 - - 1 - - c6620dd8-087a-4747-b9e1-103bcbe0af7c - - - - - 2b72e73e-5725-456d-a667-0d2f21cb4d2f - - true - Preferred phone number for the user. - 1033 - - - - 2b72e73e-5725-456d-a667-0d2f21cb4d2f - - true - Preferred phone number for the user. - 1033 - - - - - - 6bfede0e-6b40-4718-b609-e630ccd18257 - - true - Preferred Phone - 1033 - - - - 6bfede0e-6b40-4718-b609-e630ccd18257 - - true - Preferred Phone - 1033 - - - - false - - false - iscustomizable - true - - false - true - systemuser_preferredphonecode - Picklist - 5.0.0.0 - - - - - - - - - - - false - true - - - - f652c2fa-2241-db11-898a-0007e9e17ebd - - true - Main Phone - 1033 - - - - f652c2fa-2241-db11-898a-0007e9e17ebd - - true - Main Phone - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - f852c2fa-2241-db11-898a-0007e9e17ebd - - true - Other Phone - 1033 - - - - f852c2fa-2241-db11-898a-0007e9e17ebd - - true - Other Phone - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - fa52c2fa-2241-db11-898a-0007e9e17ebd - - true - Home Phone - 1033 - - - - fa52c2fa-2241-db11-898a-0007e9e17ebd - - true - Home Phone - 1033 - - - - 3 - - - - - - - - - - - - false - true - - - - fc52c2fa-2241-db11-898a-0007e9e17ebd - - true - Mobile Phone - 1033 - - - - fc52c2fa-2241-db11-898a-0007e9e17ebd - - true - Mobile Phone - 1033 - - - - 4 - - - - - - - - 0 - - - - - 960ab995-8e9a-4f62-bcf7-b8b6d588b253 + + false + true + lk_powerbidatasetapdx_createdonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbidatasetapdx_createdonbehalfby + createdonbehalfby + powerbidatasetapdx + createdonbehalfby + + 0 + + + fde2da02-f0ba-f011-bbd3-7c1e52365f30 - preferredphonecode - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 92 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false - false + true iscustomizable false - false - false - + false + true + lk_powerbidatasetapdx_modifiedby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbidatasetapdx_modifiedby + modifiedby + powerbidatasetapdx + modifiedby + + 0 + + + 03e3da02-f0ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - + iscustomizable + true + + false + true + lk_powerbidatasetapdx_modifiedonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbidatasetapdx_modifiedonbehalfby + modifiedonbehalfby + powerbidatasetapdx + modifiedonbehalfby + + 0 + + + 15e3da02-f0ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - preferredphonecodename - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - PreferredPhoneCodeName - - - VirtualType - - 5.0.0.0 - true - - - - - 0dc2a79a-8320-4f0a-b14d-388b84561b83 + + false + true + user_powerbidatasetapdx + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_powerbidatasetapdx + owninguser + powerbidatasetapdx + owninguser + + 0 + + + e7e3da02-f0ba-f011-bbd3-7c1e52365f30 - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings + false + + true + iscustomizable false - - 162 - 1900-01-01T00:00:00 - - - - - 471e0e2c-3326-4460-a6c6-df9b30496022 - - true - Shows the ID of the process. - 1033 - - - - 471e0e2c-3326-4460-a6c6-df9b30496022 - - true - Shows the ID of the process. - 1033 - - - - - - 97063860-6baa-4705-b538-20be009181f7 - - true - Process - 1033 - - - - 97063860-6baa-4705-b538-20be009181f7 - - true - Process - 1033 - - - systemuser - - - + + false + true + lk_powerbimashupparameter_createdby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbimashupparameter_createdby + createdby + powerbimashupparameter + createdby + + 0 + + + ede3da02-f0ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + lk_powerbimashupparameter_createdonbehalfby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbimashupparameter_createdonbehalfby + createdonbehalfby + powerbimashupparameter + createdonbehalfby + + 0 + + + f3e3da02-f0ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable false - false - false - + false + true + lk_powerbimashupparameter_modifiedby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbimashupparameter_modifiedby + modifiedby + powerbimashupparameter + modifiedby + + 0 + + + f9e3da02-f0ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - + iscustomizable + true + + false + true + lk_powerbimashupparameter_modifiedonbehalfby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbimashupparameter_modifiedonbehalfby + modifiedonbehalfby + powerbimashupparameter + modifiedonbehalfby + + 0 + + + 0be4da02-f0ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable false - - true - false - true - true - true - true - - processid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - ProcessId - - - UniqueidentifierType - - 6.0.0.0 - false - - - - - 49a8fdac-86ae-4ed5-86ad-ba353d1615b5 + + false + true + user_powerbimashupparameter + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_powerbimashupparameter + owninguser + powerbimashupparameter + owninguser + + 0 + + + fcc91f03-5f23-451f-a229-1fadd004445d - - Lookup - false - false - false - + false + false - canmodifyadditionalsettings + iscustomizable false - - 135 - 1900-01-01T00:00:00 - - - - - 7007674c-8167-4717-87d4-6bbf786f4e9b - - true - Unique identifier of the default queue for the user. - 1033 - - - - 7007674c-8167-4717-87d4-6bbf786f4e9b - - true - Unique identifier of the default queue for the user. - 1033 - - - - - - 406597e3-0b12-435b-b614-e5b3deafb53c - - true - Default Queue - 1033 - - - - 406597e3-0b12-435b-b614-e5b3deafb53c - - true - Default Queue - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + + true + false + lk_timezonedefinition_modifiedby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_timezonedefinition_modifiedby + modifiedby + timezonedefinition + modifiedby + + 0 + + + 2afbf203-4584-4bb3-8c9a-4846fe3e9b73 + + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - queueid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - QueueId - - - LookupType - + true + lk_recurrencerulebase_modifiedonbehalfby + None 5.0.0.0 - false - - - None - - queue - - - - d09914b9-5860-4b96-9159-a5887a258aee + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_recurrencerulebase_modifiedonbehalfby + modifiedonbehalfby + recurrencerule + modifiedonbehalfby + + 0 + + + faea0b04-ee96-4b5c-9ec3-0e2eb1507786 - queueid - String - false - false - false - - false - canmodifyadditionalsettings - false - - 136 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - queueidname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - QueueIdName - - - StringType - + false + lk_timezonerule_createdby + None 5.0.0.0 - true - 0 - - Text - Auto - 400 - - - Text - - - false - 0 - 400 - - - 818ccceb-5039-4ad9-b08d-5f85a7f9171c + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_timezonerule_createdby + createdby + timezonerule + createdby + + 0 + + + f18a2604-1823-e611-80d5-00155d211d02 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 8 - 1900-01-01T00:00:00 - - - - - 459af6ca-2241-db11-898a-0007e9e17ebd - - true - Salutation for correspondence with the user. - 1033 - - - - 459af6ca-2241-db11-898a-0007e9e17ebd - - true - Salutation for correspondence with the user. - 1033 - - - - - - 449af6ca-2241-db11-898a-0007e9e17ebd - - true - Salutation - 1033 - - - - 449af6ca-2241-db11-898a-0007e9e17ebd - - true - Salutation - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - + true + lk_interactionforemail_createdby + None + 8.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_new_interactionforemail_createdby + createdby + interactionforemail + createdbyname + + 0 + + + f78a2604-1823-e611-80d5-00155d211d02 + + false + false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - salutation - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - Salutation - - - StringType - - 5.0.0.0 - false - 0 - - Text - Auto - 20 - - - Text - - - false - 0 - 40 - - - 595b418e-1857-43be-9a87-e8fb4df02ec1 + + true + true + lk_interactionforemail_createdonbehalfby + None + 8.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_new_interactionforemail_createdonbehalfby + createdonbehalfby + interactionforemail + createdonbehalfbyname + + 0 + + + fd8a2604-1823-e611-80d5-00155d211d02 - - Boolean - false - false - false - + false + false - canmodifyadditionalsettings - true - - 103 - 1900-01-01T00:00:00 - - - - - ff97ba00-2341-db11-898a-0007e9e17ebd - - true - Check if user is a setup user. - 1033 - - - - ff97ba00-2341-db11-898a-0007e9e17ebd - - true - Check if user is a setup user. - 1033 - - - - - - fe97ba00-2341-db11-898a-0007e9e17ebd - - true - Restricted Access Mode - 1033 - - - - fe97ba00-2341-db11-898a-0007e9e17ebd - - true - Restricted Access Mode - 1033 - - - systemuser - - - - true - canmodifyauditsettings + iscustomizable true - - false + + true + true + lk_interactionforemail_modifiedby + None + 8.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_new_interactionforemail_modifiedby + modifiedby + interactionforemail + modifiedbyname + + 0 + + + 038b2604-1823-e611-80d5-00155d211d02 + + false false iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - + true + lk_interactionforemail_modifiedonbehalfby + None + 8.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_new_interactionforemail_modifiedonbehalfby + modifiedonbehalfby + interactionforemail + modifiedonbehalfbyname + + 0 + + + 158b2604-1823-e611-80d5-00155d211d02 + + false + false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - setupuser - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - SetupUser - - - BooleanType - - 5.0.0.0 - false - 0 - - false - - 6484cb11-1360-4ecb-a7f8-7cb21950e766 - - - - - d9ffb5af-4a41-48c8-95f6-7c76a4d3ce6b - - true - Check if user is a setup user. - 1033 - - - - d9ffb5af-4a41-48c8-95f6-7c76a4d3ce6b - - true - Check if user is a setup user. - 1033 - - - - - - 1582ed90-1a95-4882-9a7e-27bb3ddbc855 - - true - Restricted Access Mode - 1033 - - - - 1582ed90-1a95-4882-9a7e-27bb3ddbc855 - - true - Restricted Access Mode - 1033 - - - - false - - false - iscustomizable - true - - false - true - systemuser_setupuser - Boolean - 5.0.0.0 - - - - - - - - - - false - true - - - - 0198ba00-2341-db11-898a-0007e9e17ebd - - true - No - 1033 - - - - 0198ba00-2341-db11-898a-0007e9e17ebd - - true - No - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - 0398ba00-2341-db11-898a-0007e9e17ebd - - true - Yes - 1033 - - - - 0398ba00-2341-db11-898a-0007e9e17ebd - - true - Yes - 1033 - - - - 1 - - - - - 0 - - - 2260151f-7129-45ad-977d-5f4b4d2e9c21 + + true + true + user_interactionforemail + None + 8.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_new_interactionforemail + owninguser + interactionforemail + owninguser + + 0 + + + 58ef9204-1fef-4070-8bb1-326bea43c7db - setupuser - Virtual - false - false - false - - false - canmodifyadditionalsettings - false - - 107 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - setupusername - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - SetupUserName - - - VirtualType - + true + webresource_modifiedby + None 5.0.0.0 - true - - - - - 4cfdc3df-aa2a-4929-844d-ac6c7f9233aa + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + webresource_modifiedby + modifiedby + webresource + modifiedby + + 0 + + + 3cbba604-75d4-4b62-a53b-6cb961cdc51b - - String - true - false - true - - false - canmodifyadditionalsettings - true - - 173 - 1900-01-01T00:00:00 - - - - - 24c2fba6-108d-409a-b641-3b75ace98313 - - true - SharePoint Work Email Address - 1033 - - - - 24c2fba6-108d-409a-b641-3b75ace98313 - - true - SharePoint Work Email Address - 1033 - - - - - - 16455f16-aefa-4208-858f-66a95ec133f3 - - true - SharePoint Email Address - 1033 - - - - 16455f16-aefa-4208-858f-66a95ec133f3 - - true - SharePoint Email Address - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - true - - false - false - false - true - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - sharepointemailaddress - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - SharePointEmailAddress - - - StringType - - 7.1.0.0 - false - 0 - - Text - Active - 1024 - - - Text - - - false - 0 - 2048 - - - c019d180-d983-47ff-a47f-36bbc7bb6241 + true + queue_primary_user + Append + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + queue_primary_user + primaryuserid + queue + primaryuserid + + 1 + + + db5edc04-bbba-f011-bbd3-7c1e52365f30 - - String - true - true - true - - false - canmodifyadditionalsettings - true - - 99 - 1900-01-01T00:00:00 - - - - - e9e9af0c-2341-db11-898a-0007e9e17ebd - - true - Skill set of the user. - 1033 - - - - e9e9af0c-2341-db11-898a-0007e9e17ebd - - true - Skill set of the user. - 1033 - - - - - - e8e9af0c-2341-db11-898a-0007e9e17ebd - - true - Skills - 1033 - - - - e8e9af0c-2341-db11-898a-0007e9e17ebd - - true - Skills - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - + false + true + lk_tag_createdby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_tag_createdby + createdby + tag + createdby + + 0 + + + e15edc04-bbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - skills - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - Skills - - - StringType - - 5.0.0.0 - false - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 200 - - - 00fc0784-550d-48c6-a069-fd7be4e931f1 + + false + true + lk_tag_createdonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_tag_createdonbehalfby + createdonbehalfby + tag + createdonbehalfby + + 0 + + + e75edc04-bbba-f011-bbd3-7c1e52365f30 - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - false - - 163 - 1900-01-01T00:00:00 - - - - - d1cfe664-0433-4bd1-9f05-92b82fdcf16f - - true - Shows the ID of the stage. - 1033 - - - - d1cfe664-0433-4bd1-9f05-92b82fdcf16f - - true - Shows the ID of the stage. - 1033 - - - - - - cfec4cdf-8d79-4523-9b13-5bf03e3d882e - - true - (Deprecated) Process Stage - 1033 - - - - cfec4cdf-8d79-4523-9b13-5bf03e3d882e - - true - (Deprecated) Process Stage - 1033 - - - systemuser - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + lk_tag_modifiedby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_tag_modifiedby + modifiedby + tag + modifiedby + + 0 + + + ed5edc04-bbba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - true - true - true - true - - stageid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - StageId - - - UniqueidentifierType - - 6.0.0.0 - false - - - - - 7bd36edd-9323-4b93-9351-e4c96ae37495 + false + true + lk_tag_modifiedonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_tag_modifiedonbehalfby + modifiedonbehalfby + tag + modifiedonbehalfby + + 0 + + + ff5edc04-bbba-f011-bbd3-7c1e52365f30 - - Picklist - false - false - false - - false - canmodifyadditionalsettings - true - - 10005 - 2025-11-06T02:05:46.5500032 - - - - - 620c3093-6f3c-4612-a7d0-a6d6336f8734 - - true - The type of user - 1033 - - - - 620c3093-6f3c-4612-a7d0-a6d6336f8734 - - true - The type of user - 1033 - - - - - - 3598c75f-f8a0-4127-be82-04a9c33f9d79 - - true - System Managed User Type - 1033 - - - - 3598c75f-f8a0-4127-be82-04a9c33f9d79 - - true - System Managed User Type - 1033 - - - systemuser - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + user_tag + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_tag + owninguser + tag + owninguser + + 0 + + + 6d60dc04-bbba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - + false + true + lk_taggedflowsession_createdby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_taggedflowsession_createdby + createdby + taggedflowsession + createdby + + 0 + + + 7360dc04-bbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - systemmanagedusertype - 2025-12-14T02:01:15.4669952 - - false - canmodifyrequirementlevelsettings - ApplicationRequired - - SystemManagedUserType - - - PicklistType - - 9.2.0.0 - false - 0 - - 0 - - 95facf1a-b5ba-f011-bbd3-7c1e52365f30 - - - - - 97facf1a-b5ba-f011-bbd3-7c1e52365f30 - - true - The type of user - 1033 - - - - 97facf1a-b5ba-f011-bbd3-7c1e52365f30 - - true - The type of user - 1033 - - - - - - 96facf1a-b5ba-f011-bbd3-7c1e52365f30 - - true - System Managed User Type - 1033 - - - - 96facf1a-b5ba-f011-bbd3-7c1e52365f30 - - true - System Managed User Type - 1033 - - - - false - - false - iscustomizable - false - - false - true - systemuser_systemmanagedusertype - Picklist - 9.2.0.0 - - - - - - - - - - - false - true - - - - 35811c85-511e-4cfe-9731-c5c622af9376 - - true - Entra User - 1033 - - - - 35811c85-511e-4cfe-9731-c5c622af9376 - - true - Entra User - 1033 - - - - 0 - - - - - - - - - - - - false - true - - - - d85f8251-a77d-487f-a0b7-eda09606a91e - - true - C2 User - 1033 - - - - d85f8251-a77d-487f-a0b7-eda09606a91e - - true - C2 User - 1033 - - - - 1 - - - - - - - - - - - - false - true - - - - 6212f06f-ab82-4ad2-a385-a32818d53bcf - - true - Impersonable Stub User - 1033 - - - - 6212f06f-ab82-4ad2-a385-a32818d53bcf - - true - Impersonable Stub User - 1033 - - - - 2 - - - - - - - - - - - - false - true - - - - 11f36dc5-95a3-4502-97e3-a3c42ca3be8a - - true - Agentic User - 1033 - - - - 11f36dc5-95a3-4502-97e3-a3c42ca3be8a - - true - Agentic User - 1033 - - - - 3 - - - - - - - - 0 - - - - - af97607e-6a66-4dae-a32c-0620aa066150 + + false + true + lk_taggedflowsession_createdonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_taggedflowsession_createdonbehalfby + createdonbehalfby + taggedflowsession + createdonbehalfby + + 0 + + + 7960dc04-bbba-f011-bbd3-7c1e52365f30 - systemmanagedusertype - Virtual - false - false - false - - false - canmodifyadditionalsettings - true - - 10006 - 2025-11-06T02:05:46.5629952 - - - - - - - - - - systemuser - - - - true - canmodifyauditsettings - false - - false + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - false - - systemmanagedusertypename - 2025-11-06T02:05:46.5629952 - - true - canmodifyrequirementlevelsettings - None - - systemmanagedusertypeName - - - VirtualType - - 9.2.0.0 - true - - - - - 43a9104f-dcf4-4c37-bef3-8526355eb330 + false + true + lk_taggedflowsession_modifiedby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_taggedflowsession_modifiedby + modifiedby + taggedflowsession + modifiedby + + 0 + + + 7f60dc04-bbba-f011-bbd3-7c1e52365f30 - - Uniqueidentifier - false - false - false - - false - canmodifyadditionalsettings - true - - 1 - 1900-01-01T00:00:00 - - - - - 83aac7f4-2241-db11-898a-0007e9e17ebd - - true - Unique identifier for the user. - 1033 - - - - 83aac7f4-2241-db11-898a-0007e9e17ebd - - true - Unique identifier for the user. - 1033 - - - - - - 82aac7f4-2241-db11-898a-0007e9e17ebd - - true - User - 1033 - - - - 82aac7f4-2241-db11-898a-0007e9e17ebd - - true - User - 1033 - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false - false + true iscustomizable true - false - true - - true - canmodifyglobalfiltersettings - false - - true - true - false - - false - isrenameable - true - - false - true - false - false - - true - canmodifyissortablesettings - false - - + false + true + lk_taggedflowsession_modifiedonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_taggedflowsession_modifiedonbehalfby + modifiedonbehalfby + taggedflowsession + modifiedonbehalfby + + 0 + + + 9160dc04-bbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - false - false - true - false - true - - systemuserid - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - SystemRequired - - SystemUserId - - - UniqueidentifierType - - 5.0.0.0 - false - - - - - a8c8b0b6-c9be-4e0f-9b77-5f2c7385f741 + + false + true + user_taggedflowsession + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_taggedflowsession + owninguser + taggedflowsession + owninguser + + 0 + + + 3762dc04-bbba-f011-bbd3-7c1e52365f30 - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 10007 - 2025-11-06T04:05:07.8700032 - - - - - a154aa94-1602-4b49-a221-ff6904fdee63 - - true - Unique identifier of the territory to which the user is assigned. - 1033 - - - - a154aa94-1602-4b49-a221-ff6904fdee63 - - true - Unique identifier of the territory to which the user is assigned. - 1033 - - - - - - 5caff69c-d1ed-4bf2-b17a-29d25bb11f6d - - true - Territory - 1033 - - - - 5caff69c-d1ed-4bf2-b17a-29d25bb11f6d - - true - Territory - 1033 - - - systemuser - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + lk_taggedprocess_createdby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_taggedprocess_createdby + createdby + taggedprocess + createdby + + 0 + + + 3d62dc04-bbba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - + false + true + lk_taggedprocess_createdonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_taggedprocess_createdonbehalfby + createdonbehalfby + taggedprocess + createdonbehalfby + + 0 + + + 4362dc04-bbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable + iscustomizable true - - false - false - false - false - - true - canmodifyissortablesettings - false - - + + false + true + lk_taggedprocess_modifiedby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_taggedprocess_modifiedby + modifiedby + taggedprocess + modifiedby + + 0 + + + 4962dc04-bbba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - territoryid - 2025-11-06T04:05:49.84 - - true - canmodifyrequirementlevelsettings - None - - TerritoryId - - - LookupType - - 5.0.0.0 - false - - - None - - territory - - - - 303c108e-3633-4a31-97e5-82d588259c64 + + false + true + lk_taggedprocess_modifiedonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_taggedprocess_modifiedonbehalfby + modifiedonbehalfby + taggedprocess + modifiedonbehalfby + + 0 + + + 5b62dc04-bbba-f011-bbd3-7c1e52365f30 - territoryid - String - false - false - false - - true - canmodifyadditionalsettings - false - - 10008 - 2025-11-06T04:05:49.9170048 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false true iscustomizable - false + true - false - false - - true - canmodifyglobalfiltersettings - false - false - false - false - - true - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - + true + user_taggedprocess + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_taggedprocess + owninguser + taggedprocess + owninguser + + 0 + + + 45950405-9f05-4d21-8220-0808b0a6ad78 + + false + false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - false - - territoryidname - 2025-11-06T04:05:49.9170048 - - false - canmodifyrequirementlevelsettings - SystemRequired - - TerritoryIdName - - - StringType - + + true + false + lk_duplicaterule_createdonbehalfby + None 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 400 - - - 0a1aae43-d2d8-49c9-8d66-75b4b0eb4e51 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_duplicaterule_createdonbehalfby + createdonbehalfby + duplicaterule + createdonbehalfby + + 0 + + + 9f097b05-3c4d-450c-adde-b62cd681353b - - Integer - false - false - false - - false - canmodifyadditionalsettings - false - - 118 - 1900-01-01T00:00:00 - - - - - 8fa80a03-2753-455c-8787-1fae6f1cfc16 - - true - For internal use only. - 1033 - - - - 8fa80a03-2753-455c-8787-1fae6f1cfc16 - - true - For internal use only. - 1033 - - - - - - 6dd0ab2f-7c1c-4a63-90f3-641ea1b3a72f - - true - Time Zone Rule Version Number - 1033 - - - - 6dd0ab2f-7c1c-4a63-90f3-641ea1b3a72f - - true - Time Zone Rule Version Number - 1033 - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - timezoneruleversionnumber - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - TimeZoneRuleVersionNumber - - - IntegerType - + false + lk_recurrencerule_modifiedby + None 5.0.0.0 - false - 0 - - None - 2147483647 - -1 - - 0 - - - 736f77f1-d1e2-4374-9dee-63dea26dee6a + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_recurrencerule_modifiedby + modifiedby + recurrencerule + modifiedby + + 0 + + + aef32e06-da2a-4d14-a82b-587c6ca346aa - - String - true - true - true - - false - canmodifyadditionalsettings - true - - 14 - 1900-01-01T00:00:00 - - - - - 3ecfe1dc-2241-db11-898a-0007e9e17ebd - - true - Title of the user. - 1033 - - - - 3ecfe1dc-2241-db11-898a-0007e9e17ebd - - true - Title of the user. - 1033 - - - - - - 3dcfe1dc-2241-db11-898a-0007e9e17ebd - - true - Title - 1033 - - - - 3dcfe1dc-2241-db11-898a-0007e9e17ebd - - true - Title - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - true - - false - true - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - title - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - Title - - - StringType - + true + annotation_owning_user + None 5.0.0.0 - false - 0 - - Text - Auto - 128 - - - Text - - - false - 0 - 256 - - - a91c91bb-8215-4020-bd20-d07c041ce52c + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + annotation_owning_user + owninguser + annotation + owninguser + + 0 + + + d5e03606-22ea-4abc-8af0-8266df8e0c44 - - Lookup - false - false - false - - false - canmodifyadditionalsettings - true - - 145 - 1900-01-01T00:00:00 - - - - - f31e7bf6-1b56-441b-822c-8cca6090de34 - - true - Unique identifier of the currency associated with the systemuser. - 1033 - - - - f31e7bf6-1b56-441b-822c-8cca6090de34 - - true - Unique identifier of the currency associated with the systemuser. - 1033 - - - - - - 24a0bf8d-5c54-4f2c-8f40-0b857b78ac1c - - true - Currency - 1033 - - - - 24a0bf8d-5c54-4f2c-8f40-0b857b78ac1c - - true - Currency - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + false false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - transactioncurrencyid - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - TransactionCurrencyId - - - LookupType - + false + lk_pluginassembly_createdonbehalfby + None 5.0.0.0 - false - - - None - - transactioncurrency - - - - 5fda6603-b40e-4c03-add0-4e2a61af621c + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_pluginassembly_createdonbehalfby + createdonbehalfby + pluginassembly + createdonbehalfby + + 0 + + + a2074306-5950-458c-a99e-5b6a122b6e27 - transactioncurrencyid - String - false - false - false - - false - canmodifyadditionalsettings - false - - 146 - 1900-01-01T00:00:00 - - - - - - - - - - systemuser - - - - false - canmodifyauditsettings - false - - false + false false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - false - false - false - true - false - false - - transactioncurrencyidname - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - TransactionCurrencyIdName - - - StringType - + true + createdby_relationship_role + None 5.0.0.0 - true - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 200 - - - bc712427-1489-4001-8b1c-9052a3eda413 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + createdby_relationship_role + createdby + relationshiprole + createdby + + 0 + + + 69754806-f4ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - + true + false - canmodifyadditionalsettings + iscustomizable false - - 172 - 1900-01-01T00:00:00 - - - - - 1fb8dee8-d689-4602-855a-afc52216b3ae - - true - For internal use only. - 1033 - - - - 1fb8dee8-d689-4602-855a-afc52216b3ae - - true - For internal use only. - 1033 - - - - - - 7343feab-4937-4453-bd97-307ad054b5b9 + + true + true + mspp_systemuser_mspp_entitypermission_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 75216ceb-8b11-4d05-82e9-8900688005cb + + true + + 1033 + + + c37e3d13-2944-4647-aaf0-704d4a62d77a + + true + + 1030 + + + + 75216ceb-8b11-4d05-82e9-8900688005cb - true - (Deprecated) Traversed Path - 1033 - - - - 7343feab-4937-4453-bd97-307ad054b5b9 - - true - (Deprecated) Traversed Path - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_entitypermission_createdby + mspp_createdby + mspp_entitypermission + mspp_createdby + + 1 + + + 72754806-f4ba-f011-bbd3-7c1e52365f30 + + true false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - traversedpath - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - TraversedPath - - - StringType - - 7.0.0.0 - false - 0 - - Text - Auto - 1250 - - - Text - - - false - 0 - 2500 - - - f8862b64-6827-400e-b5ce-bae76288f0ba - - - Integer - false - false - false - - false - canmodifyadditionalsettings - true - - 156 - 1900-01-01T00:00:00 - - - - - 1960cf56-7ae3-4e72-afc3-0eb8d30dd81a - - true - Shows the type of user license. - 1033 - - - - 1960cf56-7ae3-4e72-afc3-0eb8d30dd81a - - true - Shows the type of user license. - 1033 - - - - - - 3c06e461-bef9-4987-aa2f-b9a445adc161 + true + mspp_systemuser_mspp_entitypermission_modifiedby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + e8e3ab43-45f2-4f37-bcad-aeebc50a079d + + true + + 1033 + + + e3012702-a2eb-4c3b-b520-948c985af9c4 + + true + + 1030 + + + + e8e3ab43-45f2-4f37-bcad-aeebc50a079d - true - User License Type - 1033 - - - - 3c06e461-bef9-4987-aa2f-b9a445adc161 - - true - User License Type - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_entitypermission_modifiedby + mspp_modifiedby + mspp_entitypermission + mspp_modifiedby + + 1 + + + 7a754806-f4ba-f011-bbd3-7c1e52365f30 + + true false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - true - false - false - true - true - true - - userlicensetype - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - SystemRequired - - UserLicenseType - - - IntegerType - - 6.0.0.0 - false - 0 - - None - 2147483647 - -2147483648 - - 0 - - - 736d24ca-a67b-40b4-a0ff-514ac3c23664 + true + mspp_systemuser_mspp_pagetemplate_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 11179046-8a2d-43d0-a627-e375db8f4c5b + + true + + 1033 + + + 383478a4-4ebe-4d2a-9a2c-3cf97e187ea8 + + true + + 1030 + + + + 11179046-8a2d-43d0-a627-e375db8f4c5b + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_pagetemplate_createdby + mspp_createdby + mspp_pagetemplate + mspp_createdby + + 1 + + + 83754806-f4ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - + true + false - canmodifyadditionalsettings - true - - 187 - 2025-11-06T00:19:22.8070016 - - - - - 87decc53-7fa9-4ba2-98d8-7814d30c341a - - true - User PUID User Identifiable Information - 1033 - - - - 87decc53-7fa9-4ba2-98d8-7814d30c341a - - true - User PUID User Identifiable Information - 1033 - - - - - - bdc41235-6646-4fc8-bf68-aa153f05e73a + iscustomizable + false + + true + true + mspp_systemuser_mspp_pagetemplate_modifiedby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 6214faa9-ed73-4f10-bf71-1d1bc04c06ef + + true + + 1033 + + + d680bddb-923d-494a-a79c-eed18a42cb0b + + true + + 1030 + + + + 6214faa9-ed73-4f10-bf71-1d1bc04c06ef - true - User PUID - 1033 - - - - bdc41235-6646-4fc8-bf68-aa153f05e73a - - true - User PUID - 1033 - - - systemuser - - - - false - canmodifyauditsettings - true - - false + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_pagetemplate_modifiedby + mspp_modifiedby + mspp_pagetemplate + mspp_modifiedby + + 1 + + + 8b754806-f4ba-f011-bbd3-7c1e52365f30 + + true false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - false - - false - false - false - true - false - true - - userpuid - 2025-11-06T00:19:22.8070016 - - false - canmodifyrequirementlevelsettings - None - - UserPuid - - - StringType - - 9.0.0.0 - false - 0 - - Text - Auto - 100 - - - Text - - - false - 0 - 256 - - - a601dfc7-1157-4ada-8ee2-3c52ab8a063c + true + mspp_systemuser_mspp_pollplacement_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 9d289855-ab76-432d-b5a7-64c064f7301b + + true + + 1033 + + + 73399e8c-2da0-4413-ac9f-0452dcf82f0d + + true + + 1030 + + + + 9d289855-ab76-432d-b5a7-64c064f7301b + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_pollplacement_createdby + mspp_createdby + mspp_pollplacement + mspp_createdby + + 1 + + + 94754806-f4ba-f011-bbd3-7c1e52365f30 - - Integer - false - false - false - + true + false - canmodifyadditionalsettings + iscustomizable false - - 117 - 1900-01-01T00:00:00 - - - - - 82910651-72c6-4560-bfab-9b8ee7ee9d8f - - true - Time zone code that was in use when the record was created. - 1033 - - - - 82910651-72c6-4560-bfab-9b8ee7ee9d8f - - true - Time zone code that was in use when the record was created. - 1033 - - - - - - 73b9ebad-5fe5-4df4-99e6-02a18c5899dc + + true + true + mspp_systemuser_mspp_pollplacement_modifiedby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 7dd0388f-1da8-4d9c-a8ad-77ec59bd8ecb + + true + + 1033 + + + 55aff471-5ece-4142-a937-8942e24803d6 + + true + + 1030 + + + + 7dd0388f-1da8-4d9c-a8ad-77ec59bd8ecb - true - UTC Conversion Time Zone Code - 1033 - - - - 73b9ebad-5fe5-4df4-99e6-02a18c5899dc - - true - UTC Conversion Time Zone Code - 1033 - - - systemuser - - - - false - canmodifyauditsettings - false - - false + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_pollplacement_modifiedby + mspp_modifiedby + mspp_pollplacement + mspp_modifiedby + + 1 + + + 9c754806-f4ba-f011-bbd3-7c1e52365f30 + + true false iscustomizable - true - - false - false - - true - canmodifyglobalfiltersettings false - + true - false - false - - false - isrenameable - false - - false - false - false - false - - true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings - false - - true - false - false - true - true - true - - utcconversiontimezonecode - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - UTCConversionTimeZoneCode - - - IntegerType - - 5.0.0.0 - false - 0 - - None - 2147483647 - -1 - - 0 - - - 4eacb87c-4b9a-4ec0-bc4b-b4cdf940fec5 + true + mspp_systemuser_mspp_publishingstate_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 17468061-9c5a-40b6-b526-e6c2d0b24074 + + true + + 1033 + + + 451a3812-2024-4c5b-ba8f-697974f54e8d + + true + + 1030 + + + + 17468061-9c5a-40b6-b526-e6c2d0b24074 + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_publishingstate_createdby + mspp_createdby + mspp_publishingstate + mspp_createdby + + 1 + + + a5754806-f4ba-f011-bbd3-7c1e52365f30 - - BigInt - false - false - false - + true + false - canmodifyadditionalsettings + iscustomizable false - - 36 - 1900-01-01T00:00:00 - - - - - e995effa-75d2-40d5-8433-714df9fd2986 - - true - Version number of the user. - 1033 - - - - e995effa-75d2-40d5-8433-714df9fd2986 - - true - Version number of the user. - 1033 - - - - - - 39c10ba2-8185-475e-94fc-b1bd9209e644 + + true + true + mspp_systemuser_mspp_publishingstate_modifiedby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 45241228-90c2-4756-95da-7fff22896934 + + true + + 1033 + + + 842eba40-b7fe-494c-82ff-ead7cc4d4386 + + true + + 1030 + + + + 45241228-90c2-4756-95da-7fff22896934 - true - Version number - 1033 - - - - 39c10ba2-8185-475e-94fc-b1bd9209e644 - - true - Version number - 1033 - - - systemuser - - - - false - canmodifyauditsettings - false - - false + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_publishingstate_modifiedby + mspp_modifiedby + mspp_publishingstate + mspp_modifiedby + + 1 + + + ad754806-f4ba-f011-bbd3-7c1e52365f30 + + true false iscustomizable false - false - false - - true - canmodifyglobalfiltersettings - false - true - false - false - - false - isrenameable - false - - false - true - false - false - + true + mspp_systemuser_mspp_publishingstatetransitionrule_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 5789565c-2359-4b55-93eb-c409ca1d211a + + true + + 1033 + + + 0268678d-a614-4b36-93ba-b72bb3b57c85 + + true + + 1030 + + + + 5789565c-2359-4b55-93eb-c409ca1d211a + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_publishingstatetransitionrule_createdby + mspp_createdby + mspp_publishingstatetransitionrule + mspp_createdby + + 1 + + + 84aca606-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings - false - - - false - canmodifysearchsettings + iscustomizable false - - false - false - false - true - false - true - - versionnumber - 1900-01-01T00:00:00 - - false - canmodifyrequirementlevelsettings - None - - VersionNumber - - - BigIntType - - 5.0.0.0 - false - - - 9223372036854775807 - -9223372036854775808 - - - 8c8e97a1-d3ee-4463-a3dd-27b783bfbb08 + + false + true + lk_appelement_createdby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appelement_createdby + createdby + appelement + createdby + + 0 + + + 8aaca606-b7ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 109 - 1900-01-01T00:00:00 - - - - - d858efb8-f2d7-40ba-98a9-ff1c7b364450 - - true - Windows Live ID - 1033 - - - - d858efb8-f2d7-40ba-98a9-ff1c7b364450 - - true - Windows Live ID - 1033 - - - - - - d958efb8-f2d7-40ba-98a9-ff1c7b364450 - - true - Windows Live ID - 1033 - - - - d958efb8-f2d7-40ba-98a9-ff1c7b364450 - - true - Windows Live ID - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - + false + true + lk_appelement_createdonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appelement_createdonbehalfby + createdonbehalfby + appelement + createdonbehalfby + + 0 + + + 90aca606-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings + iscustomizable false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - windowsliveid - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - WindowsLiveID - - - StringType - - 5.0.0.0 - false - 0 - - Email - Inactive - 1024 - - - Email - - - false - 0 - 2048 - - - afdbdfed-bc30-4559-a527-c48a045d2e49 + + false + true + lk_appelement_modifiedby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appelement_modifiedby + modifiedby + appelement + modifiedby + + 0 + + + 96aca606-b7ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 152 - 1900-01-01T00:00:00 - - - - - 1e1c0197-a659-4744-8f5a-6820078c5166 - - true - User's Yammer login email address - 1033 - - - - 1e1c0197-a659-4744-8f5a-6820078c5166 - - true - User's Yammer login email address - 1033 - - - - - - 36e9cebb-c0ff-4d79-901b-8c2b69a12adf - - true - Yammer Email - 1033 - - - - 36e9cebb-c0ff-4d79-901b-8c2b69a12adf - - true - Yammer Email - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - + false + true + lk_appelement_modifiedonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appelement_modifiedonbehalfby + modifiedonbehalfby + appelement + modifiedonbehalfby + + 0 + + + 36ada606-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings + iscustomizable false - - - true - canmodifysearchsettings - true - - true - true - true - true - true - true - - yammeremailaddress - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - YammerEmailAddress - - - StringType - - 5.0.0.0 - false - 0 - - Email - Inactive - 200 - - - Email - - - false - 0 - 200 - - - e1bdb747-1774-4480-9556-4628657e74e8 + + false + true + lk_appmodulecomponentedge_createdby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appmodulecomponentedge_createdby + createdby + appmodulecomponentedge + createdby + + 0 + + + 3cada606-b7ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 154 - 1900-01-01T00:00:00 - - - - - cb5e5f76-3c67-4e2d-bf60-94a3d6c08b1b - - true - User's Yammer ID - 1033 - - - - cb5e5f76-3c67-4e2d-bf60-94a3d6c08b1b - - true - User's Yammer ID - 1033 - - - - - - f04e3ef9-51ef-47d4-aa70-e354e1fd163e - - true - Yammer User ID - 1033 - - - - f04e3ef9-51ef-47d4-aa70-e354e1fd163e - - true - Yammer User ID - 1033 - - - systemuser - - - - true - canmodifyauditsettings - true - - false + false - false + true iscustomizable true - false - false - + false + true + lk_appmodulecomponentedge_createdonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appmodulecomponentedge_createdonbehalfby + createdonbehalfby + appmodulecomponentedge + createdonbehalfby + + 0 + + + 42ada606-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings + iscustomizable false - - true - false - false - - false - isrenameable + + false + true + lk_appmodulecomponentedge_modifiedby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appmodulecomponentedge_modifiedby + modifiedby + appmodulecomponentedge + modifiedby + + 0 + + + 48ada606-b7ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable true - - false - false - false - false - + + false + true + lk_appmodulecomponentedge_modifiedonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appmodulecomponentedge_modifiedonbehalfby + modifiedonbehalfby + appmodulecomponentedge + modifiedonbehalfby + + 0 + + + daada606-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings + iscustomizable false - - + + false + true + lk_appmodulecomponentnode_createdby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appmodulecomponentnode_createdby + createdby + appmodulecomponentnode + createdby + + 0 + + + e0ada606-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - yammeruserid - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - YammerUserId - - - StringType - - 5.0.0.0 - false - 0 - - Text - Inactive - 128 - - - Text - - - false - 0 - 128 - - - 7d7ab563-dc11-46ed-9976-8a22802b2b3d + + false + true + lk_appmodulecomponentnode_createdonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appmodulecomponentnode_createdonbehalfby + createdonbehalfby + appmodulecomponentnode + createdonbehalfby + + 0 + + + e6ada606-b7ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 129 - 1900-01-01T00:00:00 - - - - - 794f7b37-2341-db11-898a-0007e9e17ebd - - true - Pronunciation of the first name of the user, written in phonetic hiragana or katakana characters. - 1033 - - - - 794f7b37-2341-db11-898a-0007e9e17ebd - - true - Pronunciation of the first name of the user, written in phonetic hiragana or katakana characters. - 1033 - - - - - - 784f7b37-2341-db11-898a-0007e9e17ebd - - true - Yomi First Name - 1033 - - - - 784f7b37-2341-db11-898a-0007e9e17ebd - - true - Yomi First Name - 1033 - - - systemuser - - - + false + true - canmodifyauditsettings - true - - false + iscustomizable + false + + false + true + lk_appmodulecomponentnode_modifiedby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appmodulecomponentnode_modifiedby + modifiedby + appmodulecomponentnode + modifiedby + + 0 + + + ecada606-b7ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - + false + true + lk_appmodulecomponentnode_modifiedonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appmodulecomponentnode_modifiedonbehalfby + modifiedonbehalfby + appmodulecomponentnode + modifiedonbehalfby + + 0 + + + 79aea606-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings + iscustomizable false - - true - false - false - - false - isrenameable + + false + true + lk_appsetting_createdby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appsetting_createdby + createdby + appsetting + createdby + + 0 + + + 7faea606-b7ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable true - - false - false - false - false - + + false + true + lk_appsetting_createdonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appsetting_createdonbehalfby + createdonbehalfby + appsetting + createdonbehalfby + + 0 + + + 85aea606-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyissortablesettings + iscustomizable false - - + + false + true + lk_appsetting_modifiedby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appsetting_modifiedby + modifiedby + appsetting + modifiedby + + 0 + + + 8baea606-b7ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - yomifirstname - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - YomiFirstName - - - StringType - - 5.0.0.0 - false - 0 - - PhoneticGuide - Active - 64 - firstname - - PhoneticGuide - - - false - 0 - 256 - - - 6f1cdfe6-8762-46cc-b01e-9ae668b30eff + + false + true + lk_appsetting_modifiedonbehalfby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_appsetting_modifiedonbehalfby + modifiedonbehalfby + appsetting + modifiedonbehalfby + + 0 + + + e3f8c306-b8ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 124 - 1900-01-01T00:00:00 - - - - - 804f7b37-2341-db11-898a-0007e9e17ebd - - true - Pronunciation of the full name of the user, written in phonetic hiragana or katakana characters. - 1033 - - - - 804f7b37-2341-db11-898a-0007e9e17ebd - - true - Pronunciation of the full name of the user, written in phonetic hiragana or katakana characters. - 1033 - - - - - - 7f4f7b37-2341-db11-898a-0007e9e17ebd - - true - Yomi Full Name - 1033 - - - - 7f4f7b37-2341-db11-898a-0007e9e17ebd - - true - Yomi Full Name - 1033 - - - systemuser - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + lk_serviceplan_createdby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_serviceplan_createdby + createdby + serviceplan + createdby + + 0 + + + e9f8c306-b8ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - - true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable - true - - false - false - false - false - - true - canmodifyissortablesettings - false - - - true - canmodifysearchsettings - true - - false - true - true - true - false - true - - yomifullname - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - YomiFullName - - - StringType - - 5.0.0.0 - false - 0 - - PhoneticGuide - Active - 200 - fullname - - PhoneticGuide - - - false - 0 - 513 - - - abef440f-5f26-42f7-85b8-c4310028cc02 + false + true + lk_serviceplan_createdonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_serviceplan_createdonbehalfby + createdonbehalfby + serviceplan + createdonbehalfby + + 0 + + + eff8c306-b8ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 126 - 1900-01-01T00:00:00 - - - - - 5695733d-2341-db11-898a-0007e9e17ebd - - true - Pronunciation of the last name of the user, written in phonetic hiragana or katakana characters. - 1033 - - - - 5695733d-2341-db11-898a-0007e9e17ebd - - true - Pronunciation of the last name of the user, written in phonetic hiragana or katakana characters. - 1033 - - - - - - 5595733d-2341-db11-898a-0007e9e17ebd - - true - Yomi Last Name - 1033 - - - - 5595733d-2341-db11-898a-0007e9e17ebd - - true - Yomi Last Name - 1033 - - - systemuser - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + lk_serviceplan_modifiedby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_serviceplan_modifiedby + modifiedby + serviceplan + modifiedby + + 0 + + + f5f8c306-b8ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - + false + true + lk_serviceplan_modifiedonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_serviceplan_modifiedonbehalfby + modifiedonbehalfby + serviceplan + modifiedonbehalfby + + 0 + + + 71f9c306-b8ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable + iscustomizable true - - false - false - false - false - - true - canmodifyissortablesettings - false - - + + false + true + lk_serviceplanmapping_createdby + None + 2.4.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_serviceplanmapping_createdby + createdby + serviceplanmapping + createdby + + 0 + + + 77f9c306-b8ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - yomilastname - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - YomiLastName - - - StringType - - 5.0.0.0 - false - 0 - - PhoneticGuide - Active - 64 - lastname - - PhoneticGuide - - - false - 0 - 256 - - - 276d6728-d365-4342-b71b-5d049038cbf7 + + false + true + lk_serviceplanmapping_createdonbehalfby + None + 2.4.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_serviceplanmapping_createdonbehalfby + createdonbehalfby + serviceplanmapping + createdonbehalfby + + 0 + + + 7df9c306-b8ba-f011-bbd3-7c1e52365f30 - - String - false - false - false - - false - canmodifyadditionalsettings - true - - 128 - 1900-01-01T00:00:00 - - - - - 4795733d-2341-db11-898a-0007e9e17ebd - - true - Pronunciation of the middle name of the user, written in phonetic hiragana or katakana characters. - 1033 - - - - 4795733d-2341-db11-898a-0007e9e17ebd - - true - Pronunciation of the middle name of the user, written in phonetic hiragana or katakana characters. - 1033 - - - - - - 4695733d-2341-db11-898a-0007e9e17ebd - - true - Yomi Middle Name - 1033 - - - - 4695733d-2341-db11-898a-0007e9e17ebd - - true - Yomi Middle Name - 1033 - - - systemuser - - - + false + true - canmodifyauditsettings + iscustomizable true - - false + + false + true + lk_serviceplanmapping_modifiedby + None + 2.4.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_serviceplanmapping_modifiedby + modifiedby + serviceplanmapping + modifiedby + + 0 + + + 83f9c306-b8ba-f011-bbd3-7c1e52365f30 + + false - false + true iscustomizable true - false - false - + false + true + lk_serviceplanmapping_modifiedonbehalfby + None + 2.4.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_serviceplanmapping_modifiedonbehalfby + modifiedonbehalfby + serviceplanmapping + modifiedonbehalfby + + 0 + + + f4f9c306-b8ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifyglobalfiltersettings - false - - true - false - false - - false - isrenameable + iscustomizable true - - false - false - false - false - - true - canmodifyissortablesettings - false - - + + false + true + lk_serviceplancustomcontrol_createdby + None + 9.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_serviceplancustomcontrol_createdby + createdby + serviceplancustomcontrol + createdby + + 0 + + + faf9c306-b8ba-f011-bbd3-7c1e52365f30 + + false + true - canmodifysearchsettings + iscustomizable true - - true - true - true - true - true - true - - yomimiddlename - 1900-01-01T00:00:00 - - true - canmodifyrequirementlevelsettings - None - - YomiMiddleName - - - StringType - - 5.0.0.0 - false - 0 - - PhoneticGuide - Active - 50 - middlename - - PhoneticGuide - - - false - 0 - 100 - - - false - false - false - - false - canbeincustomentityassociation - true - - - false - canbeinmanytomany - true - - - false - canbeprimaryentityinrelationship - true - - - false - canberelatedentityinrelationship - true - - true - - false - canchangetrackingbeenabled - false - - - false - cancreateattributes - true - - - false - cancreatecharts - true - - - false - cancreateforms - true - - - false - cancreateviews - true - - - true - canenablesynctoexternalsearchindex - true - - - true - canmodifyadditionalsettings - true - - true - true - Local - 1900-01-01T00:00:00 - - - false - - - - 809609b3-2241-db11-898a-0007e9e17ebd - - true - Person with access to the Microsoft CRM system and who owns objects in the Microsoft CRM database. - 1033 - - - - 809609b3-2241-db11-898a-0007e9e17ebd - - true - Person with access to the Microsoft CRM system and who owns objects in the Microsoft CRM database. - 1033 - - - - - - 829609b3-2241-db11-898a-0007e9e17ebd - - true - Users - 1033 - - - - 829609b3-2241-db11-898a-0007e9e17ebd - - true - Users - 1033 - - - - - - 819609b3-2241-db11-898a-0007e9e17ebd - - true - User - 1033 - - - - 819609b3-2241-db11-898a-0007e9e17ebd - - true - User - 1033 - - - false - - false - true - false - false - - - - - true - false - true - false - - true - canmodifyauditsettings - false - - true - true - false - - true - canmodifyconnectionsettings - true - - false - - false - iscustomizable - true - - false - false - - true - canmodifyduplicatedetectionsettings - false - - true - false - true - false - false - false - false - - true - canmodifymailmergesettings - false - - true - - false - ismappable - true - - false - false - - false - canmodifymobileclientreadonly - false - - true - - false - isrenameable - true - - false - false - false - false - false - true - - true - canmodifyqueuesettings - false - - - true - canmodifymobilevisibility - true - - - false - canmodifymobileclientvisibility - true - - systemuser - - - 28b0c6d9-bbac-4c3c-9b8c-36ff610038cb + + false + true + lk_serviceplancustomcontrol_createdonbehalfby + None + 9.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_serviceplancustomcontrol_createdonbehalfby + createdonbehalfby + serviceplancustomcontrol + createdonbehalfby + + 0 + + + 00fac306-b8ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - systemuserprofiles_association + lk_serviceplancustomcontrol_modifiedby None - 5.0.0.0 - ManyToManyRelationship - - UseCollectionName + 9.2.0.0 + OneToManyRelationship + + DoNotDisplay Details @@ -318317,12 +366646,48 @@ 00000000-0000-0000-0000-000000000000 - - systemuserid - systemuser - systemuserprofiles_association - - UseCollectionName + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_serviceplancustomcontrol_modifiedby + modifiedby + serviceplancustomcontrol + modifiedby + + 0 + + + 06fac306-b8ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_serviceplancustomcontrol_modifiedonbehalfby + None + 9.2.0.0 + OneToManyRelationship + + DoNotDisplay Details @@ -318335,29 +366700,48 @@ 00000000-0000-0000-0000-000000000000 - - fieldsecurityprofileid - fieldsecurityprofile - systemuserprofiles_association - systemuserprofiles - - - 9b3f7254-439a-4553-9b20-f825c7e551dc + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_serviceplancustomcontrol_modifiedonbehalfby + modifiedonbehalfby + serviceplancustomcontrol + modifiedonbehalfby + + 0 + + + 2194ca06-62f9-401b-a9ee-bf893a9ce3bf false false iscustomizable - false + true true true - systemusersyncmappingprofiles_association + lk_slabase_modifiedonbehalfby None - 7.0.0.0 - ManyToManyRelationship - - UseCollectionName + 6.1.0.0 + OneToManyRelationship + + DoNotDisplay Details @@ -318370,12 +366754,48 @@ 00000000-0000-0000-0000-000000000000 - - systemuserid - systemuser - systemusersyncmappingprofiles_association - - UseCollectionName + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_slabase_modifiedonbehalfby + modifiedonbehalfby + sla + modifiedonbehalfby + + 0 + + + 19911307-aa3c-42b1-a64b-84776e2bef24 + + false + + false + iscustomizable + true + + true + true + lk_fax_modifiedonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay Details @@ -318388,28 +366808,47 @@ 00000000-0000-0000-0000-000000000000 - - syncattributemappingprofileid - syncattributemappingprofile - systemusersyncmappingprofiles_association - systemusersyncmappingprofiles - - - 8b366d6e-d389-11db-9246-00123f3a1b51 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_fax_modifiedonbehalfby + modifiedonbehalfby + fax + modifiedonbehalfby_fax + + 0 + + + 325e7d07-17ed-43ff-a762-1c076e54898e false false iscustomizable - false + true true true - systemuserroles_association + lk_processtriggerbase_modifiedby None - 5.0.0.0 - ManyToManyRelationship - + 6.0.0.0 + OneToManyRelationship + DoNotDisplay Details @@ -318423,11 +366862,47 @@ 00000000-0000-0000-0000-000000000000 - - systemuserid - systemuser - systemuserroles_association - + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_processtriggerbase_modifiedby + modifiedby + processtrigger + modifiedby + + 0 + + + f6039107-652a-47a0-86f4-af14fb8b283e + + false + + false + iscustomizable + false + + true + false + lk_annualfiscalcalendar_createdby + None + 5.0.0.0 + OneToManyRelationship + DoNotDisplay Details @@ -318441,14 +366916,33 @@ 00000000-0000-0000-0000-000000000000 - - roleid - role - systemuserroles_association - systemuserroles - - - 8b366d73-d389-11db-9246-00123f3a1b51 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_annualfiscalcalendar_createdby + createdby + annualfiscalcalendar + createdby + + 0 + + + f6bbfc07-cd8b-4cf6-b59f-c5b50374d78a false @@ -318457,12 +366951,12 @@ false true - true - teammembership_association + false + ImportFile_SystemUser None 5.0.0.0 - ManyToManyRelationship - + OneToManyRelationship + DoNotDisplay Details @@ -318476,11 +366970,47 @@ 00000000-0000-0000-0000-000000000000 - - teamid - team - teammembership_association - + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + ImportFile_SystemUser + recordsownerid + importfile + recordsownerid_systemuser + + 0 + + + 05870708-4562-4cc3-a311-538433c6b811 + + false + + false + iscustomizable + false + + true + false + lk_savedqueryvisualizationbase_createdby + None + 5.0.0.0 + OneToManyRelationship + DoNotDisplay Details @@ -318494,14 +367024,33 @@ 00000000-0000-0000-0000-000000000000 - - systemuserid - systemuser - teammembership_association - teammembership - - - be152c46-5933-4435-9e7f-b26761c114a0 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_savedqueryvisualizationbase_createdby + createdby + savedqueryvisualization + createdby + + 0 + + + 2ca93508-931f-4467-81a5-bb854fe29543 false @@ -318511,11 +367060,11 @@ true true - queuemembership_association + lk_processsession_startedby None - 6.1.0.0 - ManyToManyRelationship - + 5.0.0.0 + OneToManyRelationship + DoNotDisplay Details @@ -318529,11 +367078,47 @@ 00000000-0000-0000-0000-000000000000 - - queueid - queue - queuemembership_association - + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_processsession_startedby + startedby + processsession + startedby + + 0 + + + b5b0aa08-798a-4246-96a8-dfd9a1085c08 + + false + + false + iscustomizable + true + + true + true + lk_mobileofflineprofileitemassociation_createdonbehalfby + None + 8.0.0.0 + OneToManyRelationship + DoNotDisplay Details @@ -318547,421 +367132,627 @@ 00000000-0000-0000-0000-000000000000 - - systemuserid - systemuser - queuemembership_association - queuemembership - - - 28e98351-bcba-f011-bbd3-7c1e52365f30 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_mobileofflineprofileitemassociation_createdonbehalfby + createdonbehalfby + mobileofflineprofileitemassociation + createdonbehalfby + + 0 + + + 5d79b208-c5ba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true + false true - msdyn_flow_actionapprovalmodelrelationship_systemuser + lk_msdyn_copilotinteractions_createdby None - 2.0.0.15 - ManyToManyRelationship - + 2.0.0.100 + OneToManyRelationship + DoNotDisplay Details - - - d7c9d785-f0db-4224-a3e1-974445837756 - - true - - 1033 - - - - d7c9d785-f0db-4224-a3e1-974445837756 - - true - - 1033 - + + true - true + false 00000000-0000-0000-0000-000000000000 - - msdyn_flow_actionapprovalmodelid - msdyn_flow_actionapprovalmodel - msdyn_flow_actionapprovalmodelrelationship_systemuser - + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_copilotinteractions_createdby + createdby + msdyn_copilotinteractions + createdby + + 0 + + + 6379b208-c5ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_msdyn_copilotinteractions_createdonbehalfby + None + 2.0.0.100 + OneToManyRelationship + DoNotDisplay Details - - - fdce76d8-ad5b-49ed-a87b-33085702861b - - true - - 1033 - - - - fdce76d8-ad5b-49ed-a87b-33085702861b - - true - - 1033 - + + true - true + false 00000000-0000-0000-0000-000000000000 - - systemuserid - systemuser - msdyn_flow_actionapprovalmodelrelationship_systemuser - msdyn_flow_actionapprovalmodel_systemuser - - - f00f7f57-bcba-f011-bbd3-7c1e52365f30 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_copilotinteractions_createdonbehalfby + createdonbehalfby + msdyn_copilotinteractions + createdonbehalfby + + 0 + + + 6979b208-c5ba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true - false - msdyn_flow_awaitallactionmodelrelationship_user + false + true + lk_msdyn_copilotinteractions_modifiedby None - 2.0.0.16 - ManyToManyRelationship - + 2.0.0.100 + OneToManyRelationship + DoNotDisplay Details - - - 9a8a38b1-9321-4f1a-890e-a173791a5c51 - - true - - 1033 - - - - 9a8a38b1-9321-4f1a-890e-a173791a5c51 - - true - - 1033 - + + true - true + false 00000000-0000-0000-0000-000000000000 - - msdyn_flow_awaitallactionapprovalmodelid - msdyn_flow_awaitallactionapprovalmodel - msdyn_flow_awaitallactionmodelrelationship_user - + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_copilotinteractions_modifiedby + modifiedby + msdyn_copilotinteractions + modifiedby + + 0 + + + 6f79b208-c5ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_msdyn_copilotinteractions_modifiedonbehalfby + None + 2.0.0.100 + OneToManyRelationship + DoNotDisplay Details - - - 4adeab03-9c1d-4097-b0f6-583181cfc6f5 - - true - - 1033 - - - - 4adeab03-9c1d-4097-b0f6-583181cfc6f5 - - true - - 1033 - + + true - true + false 00000000-0000-0000-0000-000000000000 - - systemuserid - systemuser - msdyn_flow_awaitallactionmodelrelationship_user - msdyn_flow_awaitallactionapprovalmodel_user - - - 79107f57-bcba-f011-bbd3-7c1e52365f30 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_copilotinteractions_modifiedonbehalfby + modifiedonbehalfby + msdyn_copilotinteractions + modifiedonbehalfby + + 0 + + + 8179b208-c5ba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true + false true - msdyn_flow_awaitallmodelrelationship_systemuser + user_msdyn_copilotinteractions None - 2.0.0.5 - ManyToManyRelationship - + 2.0.0.100 + OneToManyRelationship + DoNotDisplay Details - - - bff114fa-7603-444b-9b86-8c793cc9a68f - - true - - 1033 - - - - bff114fa-7603-444b-9b86-8c793cc9a68f - - true - - 1033 - + + true - true + false 00000000-0000-0000-0000-000000000000 - - msdyn_flow_awaitallapprovalmodelid - msdyn_flow_awaitallapprovalmodel - msdyn_flow_awaitallmodelrelationship_systemuser - + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_msdyn_copilotinteractions + owninguser + msdyn_copilotinteractions + owninguser + + 0 + + + b2871609-f0ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + lk_powerbireport_createdby + None + 1.0.0.0 + OneToManyRelationship + DoNotDisplay Details - - - 1decf2b7-d6ca-42d1-8e33-c3f6dae87e2b - - true - - 1033 - - - - 1decf2b7-d6ca-42d1-8e33-c3f6dae87e2b - - true - - 1033 - + + true - true + false 00000000-0000-0000-0000-000000000000 - - systemuserid - systemuser - msdyn_flow_awaitallmodelrelationship_systemuser - msdyn_flow_awaitallmodel_systemuser - - - a4107f57-bcba-f011-bbd3-7c1e52365f30 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbireport_createdby + createdby + powerbireport + createdby + + 0 + + + b8871609-f0ba-f011-bbd3-7c1e52365f30 - true + false - false + true + iscustomizable + true + + false + true + lk_powerbireport_createdonbehalfby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbireport_createdonbehalfby + createdonbehalfby + powerbireport + createdonbehalfby + + 0 + + + be871609-f0ba-f011-bbd3-7c1e52365f30 + + false + + true iscustomizable false - true + false true - msdyn_flow_basicapprovalmodelrelationship_systemuser + lk_powerbireport_modifiedby None - 2.0.0.0 - ManyToManyRelationship - + 1.0.0.0 + OneToManyRelationship + DoNotDisplay Details - - - 1e81991b-5ea9-43af-a476-e35b522b8c3a - - true - - 1033 - - - - 1e81991b-5ea9-43af-a476-e35b522b8c3a - - true - - 1033 - + + true - true + false 00000000-0000-0000-0000-000000000000 - - msdyn_flow_basicapprovalmodelid - msdyn_flow_basicapprovalmodel - msdyn_flow_basicapprovalmodelrelationship_systemuser - + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbireport_modifiedby + modifiedby + powerbireport + modifiedby + + 0 + + + c4871609-f0ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_powerbireport_modifiedonbehalfby + None + 1.0.0.0 + OneToManyRelationship + DoNotDisplay Details - - - 4f757147-7a42-493e-9adc-eb21ca52cd82 - - true - - 1033 - - - - 4f757147-7a42-493e-9adc-eb21ca52cd82 - - true - - 1033 - + + true - true + false 00000000-0000-0000-0000-000000000000 - - systemuserid - systemuser - msdyn_flow_basicapprovalmodelrelationship_systemuser - msdyn_flow_basicapprovalmodel_systemuser - - - d6b5d27c-f2ba-f011-bbd3-7c1e52365f30 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerbireport_modifiedonbehalfby + modifiedonbehalfby + powerbireport + modifiedonbehalfby + + 0 + + + d6871609-f0ba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true + false true - powerpagecomponent_webrole_systemuser + user_powerbireport None 1.0.0.0 - ManyToManyRelationship - + OneToManyRelationship + DoNotDisplay Details - - - 8c4e9a0b-3d45-4939-b4a2-60db33fce437 - - true - - 1033 - - - - 8c4e9a0b-3d45-4939-b4a2-60db33fce437 - - true - - 1033 - + + - 20000 + true - true + false 00000000-0000-0000-0000-000000000000 - - powerpagecomponentid - powerpagecomponent - powerpagecomponent_webrole_systemuser - - UseLabel + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_powerbireport + owninguser + powerbireport + owninguser + + 0 + + + d1194109-f813-df11-a16e-00155d7aa40d + + false + + false + iscustomizable + false + + true + true + lk_goalrollupquery_createdby + None + 5.0.0.0 + OneToManyRelationship + + UseCollectionName Details - - - d412b8fd-9af4-4dcb-9337-4344878f7c64 - - true - - 1033 - - - - d412b8fd-9af4-4dcb-9337-4344878f7c64 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 - - systemuserid - systemuser - powerpagecomponent_webrole_systemuser - powerpagecomponent_webrole_systemuser - - - + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_goalrollupquery_createdby + createdby + goalrollupquery + createdby + + 0 + - 9dc4b011-8b7c-e011-b3dc-00155d7b4422 + d5194109-f813-df11-a16e-00155d7aa40d false @@ -318971,9 +367762,9 @@ true true - systemuser_defaultmailbox_mailbox - Append - 6.0.0.0 + lk_goalrollupquery_createdonbehalfby + None + 5.0.0.0 OneToManyRelationship UseCollectionName @@ -318993,7 +367784,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -319005,29 +367796,29 @@ false false - mailboxid - mailbox - systemuser_defaultmailbox_mailbox - defaultmailbox - systemuser - defaultmailbox + systemuserid + systemuser + lk_goalrollupquery_createdonbehalfby + createdonbehalfby + goalrollupquery + createdonbehalfby - 1 + 0 - 8e3c35cf-13ae-e311-80c2-00155d9dac1a + d9194109-f813-df11-a16e-00155d7aa40d false false iscustomizable - true + false true true - position_users - Append - 7.0.0.0 + lk_goalrollupquery_modifiedby + None + 5.0.0.0 OneToManyRelationship UseCollectionName @@ -319036,10 +367827,10 @@ - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -319047,7 +367838,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -319059,17 +367850,17 @@ false false - positionid - position - position_users - positionid - systemuser - positionid + systemuserid + systemuser + lk_goalrollupquery_modifiedby + modifiedby + goalrollupquery + modifiedby - 1 + 0 - 481e0cb7-ffd4-4958-81ae-5908fa499a74 + dd194109-f813-df11-a16e-00155d7aa40d false @@ -319079,12 +367870,12 @@ true true - calendar_system_users - Append + lk_goalrollupquery_modifiedonbehalfby + None 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -319101,7 +367892,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -319113,27 +367904,27 @@ false false - calendarid - calendar - calendar_system_users - calendarid - systemuser - calendarid + systemuserid + systemuser + lk_goalrollupquery_modifiedonbehalfby + modifiedonbehalfby + goalrollupquery + modifiedonbehalfby - 1 + 0 - 89c4efa5-341e-42d5-ac34-e759aa182065 + 25826e09-5f20-409c-950c-fdda6c8898fe false false iscustomizable - true + false true - true - business_unit_system_users + false + lk_wizardaccessprivilege_modifiedby None 5.0.0.0 OneToManyRelationship @@ -319155,7 +367946,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -319167,29 +367958,29 @@ false false - businessunitid - businessunit - business_unit_system_users - businessunitid - systemuser - businessunitid + systemuserid + systemuser + lk_wizardaccessprivilege_modifiedby + modifiedby + wizardaccessprivilege + modifiedby 0 - d77f7a29-d076-42eb-85fb-cf79b82f1c7a + a80f7609-c177-4ce7-967a-b937d7789e99 false false iscustomizable - true + false true - true - MobileOfflineProfile_SystemUser - ParentChild - 8.0.0.0 + false + createdby_sdkmessagerequestfield + None + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -319221,17 +368012,17 @@ false false - mobileofflineprofileid - mobileofflineprofile - MobileOfflineProfile_SystemUser - mobileofflineprofileid - systemuser - mobileofflineprofileid + systemuserid + systemuser + createdby_sdkmessagerequestfield + createdby + sdkmessagerequestfield + createdby - 2 + 0 - fe99de80-d999-4419-a094-37918ee9a7ac + d993ce09-1236-40ec-adad-777999584728 false @@ -319241,9 +368032,9 @@ true true - TransactionCurrency_SystemUser + lk_socialinsightsconfiguration_createdby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -319263,7 +368054,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -319275,27 +368066,27 @@ false false - transactioncurrencyid - transactioncurrency - TransactionCurrency_SystemUser - transactioncurrencyid - systemuser - transactioncurrencyid + systemuserid + systemuser + lk_socialinsightsconfiguration_createdby + createdby + socialinsightsconfiguration + createdby 0 - af5d32e9-bffd-4f9e-a21e-c50f8501a7ea + 87caea09-cd4c-43b3-8c60-15d4ee959b4d false false iscustomizable - true + false true - true - user_parent_user + false + lk_timezonelocalizedname_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -319327,31 +368118,31 @@ - true + false false systemuserid systemuser - user_parent_user - parentsystemuserid - systemuser - parentsystemuserid + lk_timezonelocalizedname_createdonbehalfby + createdonbehalfby + timezonelocalizedname + createdonbehalfby 0 - 1945baa4-3e2d-4502-a850-c2d383c77209 + 4a63ee09-0049-43fb-8bf4-263d6215a90c false false iscustomizable - false + true true - false - lk_systemuser_entityimage + true + lk_queueitembase_modifiedby None - 6.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -319383,17 +368174,17 @@ false false - imagedescriptorid - imagedescriptor - lk_systemuser_entityimage - entityimageid - systemuser - entityimageid_imagedescriptor + systemuserid + systemuser + lk_queueitembase_modifiedby + modifiedby + queueitem + modifiedby 0 - 093a2af2-7fa4-4568-aa18-526502f115e1 + 6f432a0a-df1f-4a9b-8aa4-a16b645c3fdb false @@ -319403,7 +368194,7 @@ true false - organization_system_users + lk_integrationstatus_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -319437,29 +368228,29 @@ false false - organizationid - organization - organization_system_users - organizationid - systemuser - organizationid_organization + systemuserid + systemuser + lk_integrationstatus_createdonbehalfby + createdonbehalfby + integrationstatus + createdonbehalfby 0 - 953a0299-fe0f-42cf-9ab0-4b3885620120 + d954320a-c2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_systemuserbase_modifiedby + lk_governanceconfiguration_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -319493,27 +368284,27 @@ false systemuserid systemuser - lk_systemuserbase_modifiedby - modifiedby - systemuser - modifiedby + lk_governanceconfiguration_createdby + createdby + governanceconfiguration + createdby 0 - 7ec0afc0-aa56-47c5-ae55-d1cecaf4852f + df54320a-c2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true - false - queue_system_user - Append - 5.0.0.0 + false + true + lk_governanceconfiguration_createdonbehalfby + None + 1.0 OneToManyRelationship DoNotDisplay @@ -319533,7 +368324,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -319545,29 +368336,29 @@ false false - queueid - queue - queue_system_user - queueid - systemuser - queueid + systemuserid + systemuser + lk_governanceconfiguration_createdonbehalfby + createdonbehalfby + governanceconfiguration + createdonbehalfby - 1 + 0 - 93f6d977-76be-40e7-8fa8-3577301573d4 + e654320a-c2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_systemuser_modifiedonbehalfby + lk_governanceconfiguration_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -319601,27 +368392,27 @@ false systemuserid systemuser - lk_systemuser_modifiedonbehalfby - modifiedonbehalfby - systemuser - modifiedonbehalfby + lk_governanceconfiguration_modifiedby + modifiedby + governanceconfiguration + modifiedby 0 - 8c0827f3-f987-4da7-a85e-baba30281926 + ec54320a-c2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - processstage_systemusers + lk_governanceconfiguration_modifiedonbehalfby None - 6.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -319653,29 +368444,29 @@ false false - processstageid - processstage - processstage_systemusers - stageid - systemuser - stageid_processstage + systemuserid + systemuser + lk_governanceconfiguration_modifiedonbehalfby + modifiedonbehalfby + governanceconfiguration + modifiedonbehalfby 0 - 6a2646e8-854e-4daf-96b3-35e04baa05bb + fe54320a-c2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_systemuserbase_createdby + user_governanceconfiguration None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -319709,25 +368500,25 @@ false systemuserid systemuser - lk_systemuserbase_createdby - createdby - systemuser - createdby + user_governanceconfiguration + owninguser + governanceconfiguration + owninguser 0 - 759b5d4c-e2c4-4880-8399-f3ccc80c21cf + 6d255e0a-b3fd-4557-a3c6-1acf25ca6727 false false iscustomizable - true + false true - true - lk_systemuser_createdonbehalfby + false + modifiedby_sdkmessageprocessingstepimage None 5.0.0.0 OneToManyRelationship @@ -319763,26 +368554,26 @@ false systemuserid systemuser - lk_systemuser_createdonbehalfby - createdonbehalfby - systemuser - createdonbehalfby + modifiedby_sdkmessageprocessingstepimage + modifiedby + sdkmessageprocessingstepimage + modifiedby 0 - cf63b2de-c5ba-f011-bbd3-7c1e52365f30 + 6bc2630a-725c-4c6c-ad1c-e3b149bc404e false false iscustomizable - true + false true - true - territory_system_users - Append + false + lk_picklistmapping_modifiedonbehalfby + None 5.0.0.0 OneToManyRelationship @@ -319803,7 +368594,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -319815,36 +368606,32 @@ false false - territoryid - territory - territory_system_users - territoryid - systemuser - territoryid + systemuserid + systemuser + lk_picklistmapping_modifiedonbehalfby + modifiedonbehalfby + picklistmapping + modifiedonbehalfby - 1 + 0 - - 2025-11-06T08:30:56.9570048 - 8 - - 7583c5c8-2c21-4a9e-8d60-bb5cb0a35f63 + 2c006c0a-b322-4def-8608-6b2d25386c9c false false iscustomizable - true + false true - true - lk_appmodule_modifiedby + false + createdby_expanderevent None - 8.2.0.0 + 9.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -319875,15 +368662,15 @@ false systemuserid systemuser - systemuser_appmodule_modifiedby - modifiedby - appmodule - appmodule_modifiedby + createdby_expanderevent + createdby + expanderevent + createdby 0 - 2ba6ddad-2d8a-11df-8176-00137299e1c2 + bd67740a-9731-43ac-a452-da22874aa794 false @@ -319893,8 +368680,8 @@ true false - systemuser_principalobjectattributeaccess_principalid - Append + lk_transformationparametermapping_createdby + None 5.0.0.0 OneToManyRelationship @@ -319929,30 +368716,30 @@ false systemuserid systemuser - systemuser_principalobjectattributeaccess_principalid - principalid - principalobjectattributeaccess - principalid_systemuser + lk_transformationparametermapping_createdby + createdby + transformationparametermapping + createdby - 1 + 0 - 8e35a50f-d2a8-e011-91da-00155d1dd929 + 3814990a-e026-43c8-bde9-f78d6a78e90b false false iscustomizable - false + true true true - user_exchangesyncidmapping + lk_ribbonrule_modifiedby None - 6.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -319983,30 +368770,30 @@ false systemuserid systemuser - user_exchangesyncidmapping - owninguser - exchangesyncidmapping - owninguser + lk_ribbonrule_modifiedby + modifiedby + ribbonrule + modifiedby 0 - e2d0cfe8-ca52-e411-80c6-00155d206d09 + df83b50a-ceba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_theme_createdby + lk_emailaddressconfiguration_createdby None - 7.1.0.0 + 9.2.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320037,30 +368824,30 @@ false systemuserid systemuser - lk_theme_createdby + lk_emailaddressconfiguration_createdby createdby - theme + emailaddressconfiguration createdby 0 - e8d0cfe8-ca52-e411-80c6-00155d206d09 + e583b50a-ceba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_theme_createdonbehalfby + lk_emailaddressconfiguration_createdonbehalfby None - 7.1.0.0 + 9.2.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320091,30 +368878,30 @@ false systemuserid systemuser - lk_theme_createdonbehalfby + lk_emailaddressconfiguration_createdonbehalfby createdonbehalfby - theme + emailaddressconfiguration createdonbehalfby 0 - eed0cfe8-ca52-e411-80c6-00155d206d09 + eb83b50a-ceba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_theme_modifiedby + lk_emailaddressconfiguration_modifiedby None - 7.1.0.0 + 9.2.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320145,30 +368932,30 @@ false systemuserid systemuser - lk_theme_modifiedby + lk_emailaddressconfiguration_modifiedby modifiedby - theme + emailaddressconfiguration modifiedby 0 - f4d0cfe8-ca52-e411-80c6-00155d206d09 + f183b50a-ceba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_theme_modifiedonbehalfby + lk_emailaddressconfiguration_modifiedonbehalfby None - 7.1.0.0 + 9.2.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320199,30 +368986,30 @@ false systemuserid systemuser - lk_theme_modifiedonbehalfby + lk_emailaddressconfiguration_modifiedonbehalfby modifiedonbehalfby - theme + emailaddressconfiguration modifiedonbehalfby 0 - 7a39ddaa-2555-e411-80cf-00155d211b05 + 2fd6270b-abba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_usermapping_createdby + lk_featurecontrolsetting_createdby None - 7.1.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320253,30 +369040,30 @@ false systemuserid systemuser - lk_usermapping_createdby + lk_featurecontrolsetting_createdby createdby - usermapping + featurecontrolsetting createdby 0 - 8039ddaa-2555-e411-80cf-00155d211b05 + 36d6270b-abba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_usermapping_createdonbehalfby + lk_featurecontrolsetting_createdonbehalfby None - 7.1.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320307,30 +369094,30 @@ false systemuserid systemuser - lk_usermapping_createdonbehalfby + lk_featurecontrolsetting_createdonbehalfby createdonbehalfby - usermapping + featurecontrolsetting createdonbehalfby 0 - 8639ddaa-2555-e411-80cf-00155d211b05 + 3dd6270b-abba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_usermapping_modifiedby + lk_featurecontrolsetting_modifiedby None - 7.1.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320361,30 +369148,30 @@ false systemuserid systemuser - lk_usermapping_modifiedby + lk_featurecontrolsetting_modifiedby modifiedby - usermapping + featurecontrolsetting modifiedby 0 - 8c39ddaa-2555-e411-80cf-00155d211b05 + 44d6270b-abba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_usermapping_modifiedonbehalfby + lk_featurecontrolsetting_modifiedonbehalfby None - 7.1.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320415,30 +369202,30 @@ false systemuserid systemuser - lk_usermapping_modifiedonbehalfby + lk_featurecontrolsetting_modifiedonbehalfby modifiedonbehalfby - usermapping + featurecontrolsetting modifiedonbehalfby 0 - f18a2604-1823-e611-80d5-00155d211d02 + 58d6270b-abba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_interactionforemail_createdby + user_featurecontrolsetting None - 8.2.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320469,30 +369256,30 @@ false systemuserid systemuser - lk_new_interactionforemail_createdby - createdby - interactionforemail - createdbyname + user_featurecontrolsetting + owninguser + featurecontrolsetting + owninguser 0 - f78a2604-1823-e611-80d5-00155d211d02 + cebe380b-69cd-43cc-9e88-09981e4ba975 false false iscustomizable - true + false true - true - lk_interactionforemail_createdonbehalfby + false + lk_lookupmapping_modifiedby None - 8.2.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320523,30 +369310,30 @@ false systemuserid systemuser - lk_new_interactionforemail_createdonbehalfby - createdonbehalfby - interactionforemail - createdonbehalfbyname + lk_lookupmapping_modifiedby + modifiedby + lookupmapping + modifiedby 0 - fd8a2604-1823-e611-80d5-00155d211d02 + 00105f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_interactionforemail_modifiedby + lk_workflowmetadata_createdby None - 8.2.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320577,30 +369364,30 @@ false systemuserid systemuser - lk_new_interactionforemail_modifiedby - modifiedby - interactionforemail - modifiedbyname + lk_workflowmetadata_createdby + createdby + workflowmetadata + createdby 0 - 038b2604-1823-e611-80d5-00155d211d02 + 06105f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_interactionforemail_modifiedonbehalfby + lk_workflowmetadata_createdonbehalfby None - 8.2.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320631,30 +369418,30 @@ false systemuserid systemuser - lk_new_interactionforemail_modifiedonbehalfby - modifiedonbehalfby - interactionforemail - modifiedonbehalfbyname + lk_workflowmetadata_createdonbehalfby + createdonbehalfby + workflowmetadata + createdonbehalfby 0 - 158b2604-1823-e611-80d5-00155d211d02 + 0c105f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_interactionforemail + lk_workflowmetadata_modifiedby None - 8.2.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320685,30 +369472,30 @@ false systemuserid systemuser - user_new_interactionforemail - owninguser - interactionforemail - owninguser + lk_workflowmetadata_modifiedby + modifiedby + workflowmetadata + modifiedby 0 - 88d90632-a200-e511-80d2-00155d217c03 + 12105f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_knowledgearticle_createdby + lk_workflowmetadata_modifiedonbehalfby None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320739,30 +369526,30 @@ false systemuserid systemuser - lk_knowledgearticle_createdby - createdby - knowledgearticle - createdby + lk_workflowmetadata_modifiedonbehalfby + modifiedonbehalfby + workflowmetadata + modifiedonbehalfby 0 - 8ed90632-a200-e511-80d2-00155d217c03 + 24105f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_knowledgearticle_createdonbehalfby + user_workflowmetadata None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320793,30 +369580,30 @@ false systemuserid systemuser - lk_knowledgearticle_createdonbehalfby - createdonbehalfby - knowledgearticle - createdonbehalfby + user_workflowmetadata + owninguser + workflowmetadata + owninguser 0 - 94d90632-a200-e511-80d2-00155d217c03 + 1a125f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_knowledgearticle_modifiedby + lk_workqueue_createdby None - 8.0.0.0 + 1.5.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320847,30 +369634,30 @@ false systemuserid systemuser - lk_knowledgearticle_modifiedby - modifiedby - knowledgearticle - modifiedby + lk_workqueue_createdby + createdby + workqueue + createdby 0 - 9ad90632-a200-e511-80d2-00155d217c03 + 2c125f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_knowledgearticle_modifiedonbehalfby + lk_workqueue_createdonbehalfby None - 8.0.0.0 + 1.5.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320901,30 +369688,30 @@ false systemuserid systemuser - lk_knowledgearticle_modifiedonbehalfby - modifiedonbehalfby - knowledgearticle - modifiedonbehalfby + lk_workqueue_createdonbehalfby + createdonbehalfby + workqueue + createdonbehalfby 0 - acd90632-a200-e511-80d2-00155d217c03 + 3e125f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_knowledgearticle + lk_workqueue_modifiedby None - 8.0.0.0 + 1.5.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -320955,27 +369742,27 @@ false systemuserid systemuser - user_knowledgearticle - owninguser - knowledgearticle - owninguser + lk_workqueue_modifiedby + modifiedby + workqueue + modifiedby 0 - 797d39dc-0130-df11-a226-00155d2a9006 + 53125f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_sharepointsite + lk_workqueue_modifiedonbehalfby None - 5.0.0.0 + 1.5.0.0 OneToManyRelationship DoNotDisplay @@ -321009,27 +369796,27 @@ false systemuserid systemuser - user_sharepointsite - owninguser - sharepointsite - owninguser + lk_workqueue_modifiedonbehalfby + modifiedonbehalfby + workqueue + modifiedonbehalfby 0 - b2e7b0b6-2d37-df11-8c67-00155d2a9007 + 70125f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_sharepointdocumentlocation + user_workqueue None - 5.0.0.0 + 1.5.0.0 OneToManyRelationship DoNotDisplay @@ -321063,30 +369850,30 @@ false systemuserid systemuser - user_sharepointdocumentlocation + user_workqueue owninguser - sharepointdocumentlocation + workqueue owninguser 0 - 07a57a17-b5fc-e611-80d4-00155d42b26e + c5145f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_suggestioncardtemplate_createdby + lk_workqueueitem_createdby None - 9.0.0.0 + 1.5.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -321117,30 +369904,30 @@ false systemuserid systemuser - lk_suggestioncardtemplate_createdby + lk_workqueueitem_createdby createdby - suggestioncardtemplate + workqueueitem createdby 0 - 0da57a17-b5fc-e611-80d4-00155d42b26e + cb145f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_suggestioncardtemplate_createdonbehalfby + lk_workqueueitem_createdonbehalfby None - 9.0.0.0 + 1.5.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -321171,30 +369958,30 @@ false systemuserid systemuser - lk_suggestioncardtemplate_createdonbehalfby + lk_workqueueitem_createdonbehalfby createdonbehalfby - suggestioncardtemplate + workqueueitem createdonbehalfby 0 - 13a57a17-b5fc-e611-80d4-00155d42b26e + d3145f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_suggestioncardtemplate_modifiedby + lk_workqueueitem_modifiedby None - 9.0.0.0 + 1.5.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -321225,30 +370012,30 @@ false systemuserid systemuser - lk_suggestioncardtemplate_modifiedby + lk_workqueueitem_modifiedby modifiedby - suggestioncardtemplate + workqueueitem modifiedby 0 - 19a57a17-b5fc-e611-80d4-00155d42b26e + d9145f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_suggestioncardtemplate_modifiedonbehalfby + lk_workqueueitem_modifiedonbehalfby None - 9.0.0.0 + 1.5.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -321279,30 +370066,30 @@ false systemuserid systemuser - lk_suggestioncardtemplate_modifiedonbehalfby + lk_workqueueitem_modifiedonbehalfby modifiedonbehalfby - suggestioncardtemplate + workqueueitem modifiedonbehalfby 0 - f523b4bd-f013-df11-a16e-00155d7aa40d + fc145f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_goal_createdby + user_workqueueitem None - 5.0.0.0 + 1.5.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -321333,30 +370120,30 @@ false systemuserid systemuser - lk_goal_createdby - createdby - goal - createdby + user_workqueueitem + owninguser + workqueueitem + owninguser 0 - f923b4bd-f013-df11-a16e-00155d7aa40d + 17f2900b-246b-4934-a4c3-cf4b66621001 false false iscustomizable - true + false true true - lk_goal_createdonbehalfby + lk_importjobbase_modifiedby None 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -321387,30 +370174,30 @@ false systemuserid systemuser - lk_goal_createdonbehalfby - createdonbehalfby - goal - createdonbehalfby + lk_importjobbase_modifiedby + modifiedby + importjob + modifiedby 0 - fd23b4bd-f013-df11-a16e-00155d7aa40d + c42f0e0c-767c-4571-b57e-832db27f1e21 false false iscustomizable - true + false true true - lk_goal_modifiedby + lk_workflowlog_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -321441,39 +370228,60 @@ false systemuserid systemuser - lk_goal_modifiedby - modifiedby - goal - modifiedby + lk_workflowlog_modifiedonbehalfby + modifiedonbehalfby + workflowlog + modifiedonbehalfby 0 - 0124b4bd-f013-df11-a16e-00155d7aa40d + 24cb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true true - lk_goal_modifiedonbehalfby - None - 5.0.0.0 + mspp_systemuser_mspp_publishingstatetransitionrule_modifiedby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 17e1f298-fa84-4e7c-aa59-5885fbd2eec7 + + true + + 1033 + + + f8e9bab7-a3f0-45d0-8529-7bb83e1a3a82 + + true + + 1030 + + + + 17e1f298-fa84-4e7c-aa59-5885fbd2eec7 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -321495,39 +370303,60 @@ false systemuserid systemuser - lk_goal_modifiedonbehalfby - modifiedonbehalfby - goal - modifiedonbehalfby + mspp_systemuser_mspp_publishingstatetransitionrule_modifiedby + mspp_modifiedby + mspp_publishingstatetransitionrule + mspp_modifiedby - 0 + 1 - 1124b4bd-f013-df11-a16e-00155d7aa40d + 2ccb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true true - user_goal - None - 5.0.0.0 + mspp_systemuser_mspp_redirect_createdby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 403d9b16-caee-4d03-91f7-dd28c8e20985 + + true + + 1033 + + + 9507be03-c1f1-4e12-9a37-bada307a6c62 + + true + + 1030 + + + + 403d9b16-caee-4d03-91f7-dd28c8e20985 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -321549,36 +370378,57 @@ false systemuserid systemuser - user_goal - owninguser - goal - owninguser + mspp_systemuser_mspp_redirect_createdby + mspp_createdby + mspp_redirect + mspp_createdby - 0 + 1 - 6af2d9d3-f113-df11-a16e-00155d7aa40d + 35cb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true true - user_goal_goalowner + mspp_systemuser_mspp_redirect_modifiedby Append - 5.0.0.0 + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + a4b5d0a0-7afe-453d-98d6-f814d82109c7 + + true + + 1033 + + + 38ba0885-ede8-4b46-a88c-390bfaa7937b + + true + + 1030 + + + + a4b5d0a0-7afe-453d-98d6-f814d82109c7 + + true + + 1033 + - 100 + 10000 true true @@ -321603,17 +370453,17 @@ false systemuserid systemuser - user_goal_goalowner - goalownerid - goal - goalownerid_systemuser + mspp_systemuser_mspp_redirect_modifiedby + mspp_modifiedby + mspp_redirect + mspp_modifiedby 1 - 2ea984a0-f513-df11-a16e-00155d7aa40d + 3dcb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -321621,21 +370471,42 @@ true true - lk_metric_createdby - None - 5.0.0.0 + mspp_systemuser_mspp_shortcut_createdby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 04e59ae4-8750-4afc-846f-85342ce53f88 + + true + + 1033 + + + 81a1a619-c2b7-4268-b74c-1fc43ab10739 + + true + + 1030 + + + + 04e59ae4-8750-4afc-846f-85342ce53f88 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -321657,17 +370528,17 @@ false systemuserid systemuser - lk_metric_createdby - createdby - metric - createdby + mspp_systemuser_mspp_shortcut_createdby + mspp_createdby + mspp_shortcut + mspp_createdby - 0 + 1 - 32a984a0-f513-df11-a16e-00155d7aa40d + 46cb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -321675,21 +370546,42 @@ true true - lk_metric_createdonbehalfby - None - 5.0.0.0 + mspp_systemuser_mspp_shortcut_modifiedby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 71ab5302-4071-4b4d-a03e-f701b7d4fe13 + + true + + 1033 + + + 7b76bf82-1aed-4594-a438-b0853ab97c5e + + true + + 1030 + + + + 71ab5302-4071-4b4d-a03e-f701b7d4fe13 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -321711,17 +370603,17 @@ false systemuserid systemuser - lk_metric_createdonbehalfby - createdonbehalfby - metric - createdonbehalfby + mspp_systemuser_mspp_shortcut_modifiedby + mspp_modifiedby + mspp_shortcut + mspp_modifiedby - 0 + 1 - 36a984a0-f513-df11-a16e-00155d7aa40d + 4ecb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -321729,21 +370621,42 @@ true true - lk_metric_modifiedby - None - 5.0.0.0 + mspp_systemuser_mspp_sitemarker_createdby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + fc20bcbb-fd02-47e3-b524-220698759fb5 + + true + + 1033 + + + fb7084fd-8baa-411f-838b-60144b40058f + + true + + 1030 + + + + fc20bcbb-fd02-47e3-b524-220698759fb5 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -321765,17 +370678,17 @@ false systemuserid systemuser - lk_metric_modifiedby - modifiedby - metric - modifiedby + mspp_systemuser_mspp_sitemarker_createdby + mspp_createdby + mspp_sitemarker + mspp_createdby - 0 + 1 - 3aa984a0-f513-df11-a16e-00155d7aa40d + 57cb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -321783,21 +370696,42 @@ true true - lk_metric_modifiedonbehalfby - None - 5.0.0.0 + mspp_systemuser_mspp_sitemarker_modifiedby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 40c07cc8-90e9-498f-98b7-79068744ad62 + + true + + 1033 + + + e8306f49-d42a-4f86-8f6d-6fa4adef6dd4 + + true + + 1030 + + + + 40c07cc8-90e9-498f-98b7-79068744ad62 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -321819,17 +370753,17 @@ false systemuserid systemuser - lk_metric_modifiedonbehalfby - modifiedonbehalfby - metric - modifiedonbehalfby + mspp_systemuser_mspp_sitemarker_modifiedby + mspp_modifiedby + mspp_sitemarker + mspp_modifiedby - 0 + 1 - 070986de-f513-df11-a16e-00155d7aa40d + 5fcb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -321837,21 +370771,42 @@ true true - lk_rollupfield_createdby - None - 5.0.0.0 + mspp_systemuser_mspp_sitesetting_createdby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 827a0c61-1b53-4919-b3f6-e3c65be958ee + + true + + 1033 + + + 2610af8b-b7f4-4f38-a10f-2ffaea7f664f + + true + + 1030 + + + + 827a0c61-1b53-4919-b3f6-e3c65be958ee + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -321873,17 +370828,17 @@ false systemuserid systemuser - lk_rollupfield_createdby - createdby - rollupfield - createdby + mspp_systemuser_mspp_sitesetting_createdby + mspp_createdby + mspp_sitesetting + mspp_createdby - 0 + 1 - 0b0986de-f513-df11-a16e-00155d7aa40d + 68cb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -321891,21 +370846,42 @@ true true - lk_rollupfield_createdonbehalfby - None - 5.0.0.0 + mspp_systemuser_mspp_sitesetting_modifiedby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 9320430d-9aed-4774-9db6-4d51cfac9242 + + true + + 1033 + + + 362be4d2-c773-4afc-89fd-0090e727db32 + + true + + 1030 + + + + 9320430d-9aed-4774-9db6-4d51cfac9242 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -321927,17 +370903,17 @@ false systemuserid systemuser - lk_rollupfield_createdonbehalfby - createdonbehalfby - rollupfield - createdonbehalfby + mspp_systemuser_mspp_sitesetting_modifiedby + mspp_modifiedby + mspp_sitesetting + mspp_modifiedby - 0 + 1 - 0f0986de-f513-df11-a16e-00155d7aa40d + 70cb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -321945,21 +370921,42 @@ true true - lk_rollupfield_modifiedby - None - 5.0.0.0 + mspp_systemuser_mspp_webfile_createdby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 8ba56bbd-4044-4cea-87a8-e46a9c531722 + + true + + 1033 + + + b4ca3677-f418-4347-9cf2-6a527e6bcc45 + + true + + 1030 + + + + 8ba56bbd-4044-4cea-87a8-e46a9c531722 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -321981,17 +370978,17 @@ false systemuserid systemuser - lk_rollupfield_modifiedby - modifiedby - rollupfield - modifiedby + mspp_systemuser_mspp_webfile_createdby + mspp_createdby + mspp_webfile + mspp_createdby - 0 + 1 - 130986de-f513-df11-a16e-00155d7aa40d + 79cb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -321999,21 +370996,42 @@ true true - lk_rollupfield_modifiedonbehalfby - None - 5.0.0.0 + mspp_systemuser_mspp_webfile_modifiedby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + cd2af0b8-23a7-4432-a50c-f493faedf05e + + true + + 1033 + + + 03d158b8-4a7b-4daa-a6ce-b81e6f6d98c7 + + true + + 1030 + + + + cd2af0b8-23a7-4432-a50c-f493faedf05e + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -322035,17 +371053,17 @@ false systemuserid systemuser - lk_rollupfield_modifiedonbehalfby - modifiedonbehalfby - rollupfield - modifiedonbehalfby + mspp_systemuser_mspp_webfile_modifiedby + mspp_modifiedby + mspp_webfile + mspp_modifiedby - 0 + 1 - d1194109-f813-df11-a16e-00155d7aa40d + 81cb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -322053,21 +371071,42 @@ true true - lk_goalrollupquery_createdby - None - 5.0.0.0 + mspp_systemuser_mspp_webform_createdby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + f5197941-4d33-4b8c-a92e-b7ec740220ff + + true + + 1033 + + + 59851ad6-b57b-4c50-a011-89e169bbd75a + + true + + 1030 + + + + f5197941-4d33-4b8c-a92e-b7ec740220ff + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -322089,17 +371128,17 @@ false systemuserid systemuser - lk_goalrollupquery_createdby - createdby - goalrollupquery - createdby + mspp_systemuser_mspp_webform_createdby + mspp_createdby + mspp_webform + mspp_createdby - 0 + 1 - d5194109-f813-df11-a16e-00155d7aa40d + 8acb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -322107,21 +371146,42 @@ true true - lk_goalrollupquery_createdonbehalfby - None - 5.0.0.0 + mspp_systemuser_mspp_webform_modifiedby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + b421a53f-4b74-4c7d-9409-e605dfea9b6f + + true + + 1033 + + + e1167a44-4a0a-43cd-beef-81cb94cd25fd + + true + + 1030 + + + + b421a53f-4b74-4c7d-9409-e605dfea9b6f + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -322143,17 +371203,17 @@ false systemuserid systemuser - lk_goalrollupquery_createdonbehalfby - createdonbehalfby - goalrollupquery - createdonbehalfby + mspp_systemuser_mspp_webform_modifiedby + mspp_modifiedby + mspp_webform + mspp_modifiedby - 0 + 1 - d9194109-f813-df11-a16e-00155d7aa40d + 92cb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -322161,21 +371221,42 @@ true true - lk_goalrollupquery_modifiedby - None - 5.0.0.0 + mspp_systemuser_mspp_webformmetadata_createdby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 4444ae5c-397b-461b-91ae-9f1741e1328c + + true + + 1033 + + + 34373bba-419a-472f-b0a4-387631fee1fb + + true + + 1030 + + + + 4444ae5c-397b-461b-91ae-9f1741e1328c + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -322197,17 +371278,17 @@ false systemuserid systemuser - lk_goalrollupquery_modifiedby - modifiedby - goalrollupquery - modifiedby + mspp_systemuser_mspp_webformmetadata_createdby + mspp_createdby + mspp_webformmetadata + mspp_createdby - 0 + 1 - dd194109-f813-df11-a16e-00155d7aa40d + 9bcb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -322215,21 +371296,42 @@ true true - lk_goalrollupquery_modifiedonbehalfby - None - 5.0.0.0 + mspp_systemuser_mspp_webformmetadata_modifiedby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 9c910c23-63a0-4be4-8c63-c8afcfb55d5e + + true + + 1033 + + + 33537898-1b71-429a-bf22-321ca382a22c + + true + + 1030 + + + + 9c910c23-63a0-4be4-8c63-c8afcfb55d5e + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -322251,39 +371353,60 @@ false systemuserid systemuser - lk_goalrollupquery_modifiedonbehalfby - modifiedonbehalfby - goalrollupquery - modifiedonbehalfby + mspp_systemuser_mspp_webformmetadata_modifiedby + mspp_modifiedby + mspp_webformmetadata + mspp_modifiedby - 0 + 1 - 9736705f-e268-e011-90ca-00155d7b441f + a3cb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true true - lk_emailserverprofile_createdonbehalfby - None - 6.0.0.0 + mspp_systemuser_mspp_webformstep_createdby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + 7be3d784-a087-43fb-a732-7de9c4fb8551 + + true + + 1033 + + + 735f9cb4-a442-4761-b8be-a9c7d62ee62d + + true + + 1030 + + + + 7be3d784-a087-43fb-a732-7de9c4fb8551 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -322305,39 +371428,285 @@ false systemuserid systemuser - lk_emailserverprofile_createdonbehalfby - createdonbehalfby - emailserverprofile - createdonbehalfby + mspp_systemuser_mspp_webformstep_createdby + mspp_createdby + mspp_webformstep + mspp_createdby - 0 + 1 - a336705f-e268-e011-90ca-00155d7b441f + accb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true true - lk_emailserverprofile_modifiedonbehalfby - None - 6.0.0.0 + mspp_systemuser_mspp_webformstep_modifiedby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 2327f36c-0286-45f1-b376-96ac4e7f0ca1 + + true + + 1033 + + + 6770667a-1f76-4e5f-a3df-0f17e49c9d32 + + true + + 1030 + + + + 2327f36c-0286-45f1-b376-96ac4e7f0ca1 + + true + + 1033 + - + 10000 true - false + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_webformstep_modifiedby + mspp_modifiedby + mspp_webformstep + mspp_modifiedby + + 1 + + + b4cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + mspp_systemuser_mspp_weblink_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 6753138b-a9f4-4c08-9f2d-d9f71ce48c0c + + true + + 1033 + + + cd69dc57-b144-41b2-be1a-78b1cdc7f0f6 + + true + + 1030 + + + + 6753138b-a9f4-4c08-9f2d-d9f71ce48c0c + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_weblink_createdby + mspp_createdby + mspp_weblink + mspp_createdby + + 1 + + + bdcb4c0c-f4ba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + mspp_systemuser_mspp_weblink_modifiedby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + bbe64c30-6e7e-4a9c-98b4-90dee8704bb6 + + true + + 1033 + + + bf18b15e-dc30-447b-8b79-efae93f622da + + true + + 1030 + + + + bbe64c30-6e7e-4a9c-98b4-90dee8704bb6 + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + mspp_systemuser_mspp_weblink_modifiedby + mspp_modifiedby + mspp_weblink + mspp_modifiedby + + 1 + + + c5cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + mspp_systemuser_mspp_weblinkset_createdby + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + bff1c4cd-0350-47c6-ae8a-c7a875e6995b + + true + + 1033 + + + 5090190c-69eb-47f7-86e3-f9243269c0c5 + + true + + 1030 + + + + bff1c4cd-0350-47c6-ae8a-c7a875e6995b + + true + + 1033 + + + 10000 + true + + true 00000000-0000-0000-0000-000000000000 @@ -322359,39 +371728,60 @@ false systemuserid systemuser - lk_emailserverprofile_modifiedonbehalfby - modifiedonbehalfby - emailserverprofile - modifiedonbehalfby + mspp_systemuser_mspp_weblinkset_createdby + mspp_createdby + mspp_weblinkset + mspp_createdby - 0 + 1 - be903251-887c-e011-b3dc-00155d7b4422 + cecb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true true - lk_mailbox_createdby - None - 6.0.0.0 + mspp_systemuser_mspp_weblinkset_modifiedby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + ca73a121-f0c6-4c29-96bb-0cee993c6a2a + + true + + 1033 + + + 212642ca-7fe6-4a71-8d2d-ecc9f9639843 + + true + + 1030 + + + + ca73a121-f0c6-4c29-96bb-0cee993c6a2a + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -322413,39 +371803,60 @@ false systemuserid systemuser - lk_mailbox_createdby - createdby - mailbox - createdby + mspp_systemuser_mspp_weblinkset_modifiedby + mspp_modifiedby + mspp_weblinkset + mspp_modifiedby - 0 + 1 - c4903251-887c-e011-b3dc-00155d7b4422 + d6cb4c0c-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true true - lk_mailbox_createdonbehalfby - None - 6.0.0.0 + mspp_systemuser_mspp_webpage_createdby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 1ff46900-b5e2-432c-9f91-51fca3692e38 + + true + + 1033 + + + d192e92b-41e8-460a-bf8b-059641df52d3 + + true + + 1030 + + + + 1ff46900-b5e2-432c-9f91-51fca3692e38 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -322467,15 +371878,15 @@ false systemuserid systemuser - lk_mailbox_createdonbehalfby - createdonbehalfby - mailbox - createdonbehalfby + mspp_systemuser_mspp_webpage_createdby + mspp_createdby + mspp_webpage + mspp_createdby - 0 + 1 - ca903251-887c-e011-b3dc-00155d7b4422 + 40d8790c-496b-442b-9179-87b6aa9a7128 false @@ -322485,9 +371896,9 @@ true true - lk_mailbox_modifiedby + lk_appconfig_createdonbehalfby None - 6.0.0.0 + 9.0.0.0 OneToManyRelationship UseCollectionName @@ -322521,30 +371932,30 @@ false systemuserid systemuser - lk_mailbox_modifiedby - modifiedby - mailbox - modifiedby + systemuser_appconfig_createdonbehalfby + createdonbehalfby + appconfig + appconfig_createdonbehalfby 0 - d0903251-887c-e011-b3dc-00155d7b4422 + adf4140d-574f-471c-bb37-dde0fd143438 false false iscustomizable - true + false true true - lk_mailbox_modifiedonbehalfby + workflow_modifiedonbehalfby None - 6.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -322575,15 +371986,15 @@ false systemuserid systemuser - lk_mailbox_modifiedonbehalfby + workflow_modifiedonbehalfby modifiedonbehalfby - mailbox + workflow modifiedonbehalfby 0 - e2903251-887c-e011-b3dc-00155d7b4422 + 2d781b0d-7b5a-4340-a4b3-72a917a67060 false @@ -322592,10 +372003,10 @@ true true - true - user_mailbox + false + lk_businessunit_modifiedonbehalfby None - 6.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -322629,30 +372040,30 @@ false systemuserid systemuser - user_mailbox - owninguser - mailbox - owninguser + lk_businessunit_modifiedonbehalfby + modifiedonbehalfby + businessunit + modifiedonbehalfby 0 - 44f9635a-b055-e011-a288-00155d9d3c05 + 28aa610d-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_post_modifiedonbehalfby + lk_appusersetting_createdby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -322683,30 +372094,30 @@ false systemuserid systemuser - lk_post_modifiedonbehalfby - modifiedonbehalfby - post - modifiedonbehalfby + lk_appusersetting_createdby + createdby + appusersetting + createdby 0 - a63e4643-13ae-e311-80c2-00155d9dac1a + 2eaa610d-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_position_createdby + lk_appusersetting_createdonbehalfby None - 7.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -322737,30 +372148,30 @@ false systemuserid systemuser - lk_position_createdby - createdby - position - createdby + lk_appusersetting_createdonbehalfby + createdonbehalfby + appusersetting + createdonbehalfby 0 - ac3e4643-13ae-e311-80c2-00155d9dac1a + 34aa610d-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_position_createdonbehalfby + lk_appusersetting_modifiedby None - 7.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -322791,30 +372202,30 @@ false systemuserid systemuser - lk_position_createdonbehalfby - createdonbehalfby - position - createdonbehalfby + lk_appusersetting_modifiedby + modifiedby + appusersetting + modifiedby 0 - b23e4643-13ae-e311-80c2-00155d9dac1a + 3aaa610d-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_position_modifiedby + lk_appusersetting_modifiedonbehalfby None - 7.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -322845,30 +372256,30 @@ false systemuserid systemuser - lk_position_modifiedby - modifiedby - position - modifiedby + lk_appusersetting_modifiedonbehalfby + modifiedonbehalfby + appusersetting + modifiedonbehalfby 0 - b83e4643-13ae-e311-80c2-00155d9dac1a + c2aa610d-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_position_modifiedonbehalfby + lk_organizationsetting_createdby None - 7.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -322899,27 +372310,27 @@ false systemuserid systemuser - lk_position_modifiedonbehalfby - modifiedonbehalfby - position - modifiedonbehalfby + lk_organizationsetting_createdby + createdby + organizationsetting + createdby 0 - 4c4cb7f7-aa33-e611-80d5-00155dcf0c03 + c8aa610d-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_cardtype_createdby + lk_organizationsetting_createdonbehalfby None - 8.2.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -322953,27 +372364,27 @@ false systemuserid systemuser - lk_cardtype_createdby - createdby - cardtype - createdby + lk_organizationsetting_createdonbehalfby + createdonbehalfby + organizationsetting + createdonbehalfby 0 - 524cb7f7-aa33-e611-80d5-00155dcf0c03 + ceaa610d-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_cardtype_createdonbehalfby + lk_organizationsetting_modifiedby None - 8.2.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -323007,27 +372418,27 @@ false systemuserid systemuser - lk_cardtype_createdonbehalfby - createdonbehalfby - cardtype - createdonbehalfby + lk_organizationsetting_modifiedby + modifiedby + organizationsetting + modifiedby 0 - 584cb7f7-aa33-e611-80d5-00155dcf0c03 + d4aa610d-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_cardtype_modifiedby + lk_organizationsetting_modifiedonbehalfby None - 8.2.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -323061,27 +372472,27 @@ false systemuserid systemuser - lk_cardtype_modifiedby - modifiedby - cardtype - modifiedby + lk_organizationsetting_modifiedonbehalfby + modifiedonbehalfby + organizationsetting + modifiedonbehalfby 0 - 5e4cb7f7-aa33-e611-80d5-00155dcf0c03 + 9aab610d-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_cardtype_modifiedonbehalfby + lk_settingdefinition_createdby None - 8.2.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -323115,30 +372526,30 @@ false systemuserid systemuser - lk_cardtype_modifiedonbehalfby - modifiedonbehalfby - cardtype - modifiedonbehalfby + lk_settingdefinition_createdby + createdby + settingdefinition + createdby 0 - c16731cb-2cee-e411-80d9-00155dcf6500 + a0ab610d-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_channelaccessprofile_createdby + lk_settingdefinition_createdonbehalfby None - 8.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -323169,30 +372580,30 @@ false systemuserid systemuser - channelaccessprofile_createdby - createdby - channelaccessprofile - channelaccessprofile_createdby + lk_settingdefinition_createdonbehalfby + createdonbehalfby + settingdefinition + createdonbehalfby 0 - c76731cb-2cee-e411-80d9-00155dcf6500 + a6ab610d-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_channelaccessprofile_createdonbehalfby + lk_settingdefinition_modifiedby None - 8.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -323223,30 +372634,30 @@ false systemuserid systemuser - channelaccessprofile_createdonbehalfby - createdonbehalfby - channelaccessprofile - channelaccessprofile_createdonbehalfby + lk_settingdefinition_modifiedby + modifiedby + settingdefinition + modifiedby 0 - cd6731cb-2cee-e411-80d9-00155dcf6500 + acab610d-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_channelaccessprofile_modifiedby + lk_settingdefinition_modifiedonbehalfby None - 8.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -323277,17 +372688,17 @@ false systemuserid systemuser - channelaccessprofile_modifiedby - modifiedby - channelaccessprofile - channelaccessprofile_modifiedby + lk_settingdefinition_modifiedonbehalfby + modifiedonbehalfby + settingdefinition + modifiedonbehalfby 0 - d36731cb-2cee-e411-80d9-00155dcf6500 + 48ac610d-b7ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -323295,9 +372706,9 @@ true true - lk_channelaccessprofile_modifiedonbehalfby - None - 8.0.0.0 + systemuser_appusersetting_userId + Append + 1.0.0.0 OneToManyRelationship UseCollectionName @@ -323306,6 +372717,60 @@ + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + systemuser_appusersetting_userId + userid + appusersetting + UserId + + 1 + + + f6ad860d-cba8-4638-bba5-7f6ab279baac + + false + + false + iscustomizable + false + + true + true + lk_userformbase_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + true @@ -323331,30 +372796,30 @@ false systemuserid systemuser - channelaccessprofile_modifiedonbehalfby - modifiedonbehalfby - channelaccessprofile - channelaccessprofile_modifiedonbehalfby + lk_userformbase_createdonbehalfby + createdonbehalfby + userform + createdonbehalfby 0 - e56731cb-2cee-e411-80d9-00155dcf6500 + 0f10d20d-1b68-40bd-a4e9-2b825cfce12d false false iscustomizable - true + false true true - user_channelaccessprofile + lk_reportentity_modifiedonbehalfby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -323385,30 +372850,30 @@ false systemuserid systemuser - user_channelaccessprofile - owninguser - channelaccessprofile - user_channelaccessprofile + lk_reportentity_modifiedonbehalfby + modifiedonbehalfby + reportentity + modifiedonbehalfby 0 - a3215dac-2fee-e411-80d9-00155dcf6500 + 41d6760e-b7aa-4d4c-92f4-19e27fb84010 false false iscustomizable - true + false true - true - lk_externalparty_createdby + false + lk_entitymap_createdonbehalfby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -323439,30 +372904,30 @@ false systemuserid systemuser - systemuser_externalparty_createdby - createdby - externalparty - externalparty_createdby + lk_entitymap_createdonbehalfby + createdonbehalfby + entitymap + createdonbehalfby 0 - a9215dac-2fee-e411-80d9-00155dcf6500 + db7c780e-3dd9-46cd-af80-d30d20a90637 false false iscustomizable - true + false true - true - lk_externalparty_createdonbehalfby + false + user_userqueryvisualizations None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -323493,30 +372958,30 @@ false systemuserid systemuser - systemuser_externalparty_createdonbehalfby - createdonbehalfby - externalparty - externalparty_createdonbehalfby + user_userqueryvisualizations + owninguser + userqueryvisualization + owninguser 0 - af215dac-2fee-e411-80d9-00155dcf6500 + 2778840e-9c04-463f-96cb-6783aef6fe23 false false iscustomizable - true + false true - true - lk_externalparty_modifiedby + false + lk_timezonelocalizedname_modifiedonbehalfby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -323547,15 +373012,15 @@ false systemuserid systemuser - systemuser_externalparty_modifiedby - modifiedby - externalparty - externalparty_modifiedby + lk_timezonelocalizedname_modifiedonbehalfby + modifiedonbehalfby + timezonelocalizedname + modifiedonbehalfby 0 - b5215dac-2fee-e411-80d9-00155dcf6500 + bce2970e-20c4-4687-8903-d46b621f8bc0 false @@ -323565,12 +373030,12 @@ true true - lk_externalparty_modifiedonbehalfby + user_task None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -323601,15 +373066,15 @@ false systemuserid systemuser - systemuser_externalparty_modifiedonbehalfby - modifiedonbehalfby - externalparty - externalparty_modifiedonbehalfby + user_task + owninguser + task + owninguser_task 0 - c7215dac-2fee-e411-80d9-00155dcf6500 + b10bb90e-5f11-4e27-a5f2-f6d357e1e7b4 false @@ -323619,9 +373084,9 @@ true true - user_externalparty + lk_mailboxtrackingfolder_modifiedby None - 8.0.0.0 + 7.1.0.0 OneToManyRelationship UseCollectionName @@ -323655,27 +373120,27 @@ false systemuserid systemuser - systemuser_user_externalparty - owninguser - externalparty - user_externalparty + lk_mailboxtrackingfolder_modifiedby + modifiedby + mailboxtrackingfolder + modifiedby 0 - 09db11ea-7e9b-11dd-94cd-00188b01dce6 + dd211a0f-d8ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_solution_createdby + lk_msdyn_mobileapp_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -323709,27 +373174,27 @@ false systemuserid systemuser - lk_solution_createdby + lk_msdyn_mobileapp_createdby createdby - solution + msdyn_mobileapp createdby 0 - 09db11ed-7e9b-11dd-94cd-00188b01dce6 + e3211a0f-d8ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_solution_modifiedby + lk_msdyn_mobileapp_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -323763,27 +373228,27 @@ false systemuserid systemuser - lk_solution_modifiedby - modifiedby - solution - modifiedby + lk_msdyn_mobileapp_createdonbehalfby + createdonbehalfby + msdyn_mobileapp + createdonbehalfby 0 - b19e0e02-7e9e-11dd-94cd-00188b01dce6 + e9211a0f-d8ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_publisher_createdby + lk_msdyn_mobileapp_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -323817,27 +373282,27 @@ false systemuserid systemuser - lk_publisher_createdby - createdby - publisher - createdby + lk_msdyn_mobileapp_modifiedby + modifiedby + msdyn_mobileapp + modifiedby 0 - b80c1264-7e9f-11dd-94cd-00188b01dce6 + ef211a0f-d8ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_publisher_modifiedby + lk_msdyn_mobileapp_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -323871,30 +373336,30 @@ false systemuserid systemuser - lk_publisher_modifiedby - modifiedby - publisher - modifiedby + lk_msdyn_mobileapp_modifiedonbehalfby + modifiedonbehalfby + msdyn_mobileapp + modifiedonbehalfby 0 - 92e04b88-2ee3-e411-a1ed-00219b3e91e8 + 01221a0f-d8ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_officegraphdocument_createdonbehalfby + user_msdyn_mobileapp None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -323925,15 +373390,15 @@ false systemuserid systemuser - lk_officegraphdocument_createdonbehalfby - createdonbehalfby - officegraphdocument - createdonbehalfby + user_msdyn_mobileapp + owninguser + msdyn_mobileapp + owninguser 0 - 9ee04b88-2ee3-e411-a1ed-00219b3e91e8 + 331b3d0f-3074-4179-b7d9-16c0022ddacc false @@ -323943,12 +373408,12 @@ true true - lk_officegraphdocument_modifiedonbehalfby + createdby_connection None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -323979,15 +373444,15 @@ false systemuserid systemuser - lk_officegraphdocument_modifiedonbehalfby - modifiedonbehalfby - officegraphdocument - modifiedonbehalfby + createdby_connection + createdby + connection + createdby 0 - 75d6d050-ebf2-e411-93a4-00219b3e9ee9 + a80b690f-d99e-4a2e-9799-12b8b50825e3 false @@ -323997,9 +373462,9 @@ true true - lk_similarityrule_createdonbehalfby + lk_SiteMap_modifiedonbehalfby None - 8.0.0.0 + 9.0.0.0 OneToManyRelationship UseCollectionName @@ -324033,27 +373498,27 @@ false systemuserid systemuser - lk_similarityrule_createdonbehalfby - createdonbehalfby - similarityrule - createdonbehalfby + systemuser_SiteMap_modifiedonbehalfby + modifiedonbehalfby + sitemap + SiteMap_modifiedonbehalfby 0 - 81d6d050-ebf2-e411-93a4-00219b3e9ee9 + 8e35a50f-d2a8-e011-91da-00155d1dd929 false false iscustomizable - true + false true true - lk_similarityrule_modifiedonbehalfby + user_exchangesyncidmapping None - 8.0.0.0 + 6.0.0.0 OneToManyRelationship UseCollectionName @@ -324087,15 +373552,15 @@ false systemuserid systemuser - lk_similarityrule_modifiedonbehalfby - modifiedonbehalfby - similarityrule - modifiedonbehalfby + user_exchangesyncidmapping + owninguser + exchangesyncidmapping + owninguser 0 - cbf738ed-cbf7-e411-93a4-00219b3e9ee9 + ef345810-0e20-429f-85a0-7c47dcc52280 false @@ -324105,9 +373570,9 @@ true true - lk_profilerule_createdby + lk_feedback_modifiedonbehalfby None - 8.0.0.0 + 8.1.0.0 OneToManyRelationship UseCollectionName @@ -324141,30 +373606,30 @@ false systemuserid systemuser - lk_profilerule_createdby - createdby - channelaccessprofilerule - profileruleid4 + lk_feedback_modifiedonbehalfby + modifiedonbehalfby + feedback + ModifiedOnBehalfBy 0 - d1f738ed-cbf7-e411-93a4-00219b3e9ee9 + 0eb3a110-3c1e-48d2-87d8-c19a8c8ca192 false false iscustomizable - true + false true - true - lk_profilerule_createdonbehalfby + false + lk_usersettings_createdonbehalfby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324195,30 +373660,30 @@ false systemuserid systemuser - lk_profilerule_createdonbehalfby + lk_usersettings_createdonbehalfby createdonbehalfby - channelaccessprofilerule - profileruleid3 + usersettings + createdonbehalfby 0 - d7f738ed-cbf7-e411-93a4-00219b3e9ee9 + 7bcdca10-f0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_profilerule_modifiedby + lk_powerbireportapdx_createdby None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324249,30 +373714,30 @@ false systemuserid systemuser - lk_profilerule_modifiedby - modifiedby - channelaccessprofilerule - profileruleid2 + lk_powerbireportapdx_createdby + createdby + powerbireportapdx + createdby 0 - ddf738ed-cbf7-e411-93a4-00219b3e9ee9 + 81cdca10-f0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_profilerule_modifiedonbehalfby + lk_powerbireportapdx_createdonbehalfby None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324303,30 +373768,30 @@ false systemuserid systemuser - lk_profilerule_modifiedonbehalfby - modifiedonbehalfby - channelaccessprofilerule - channelaccessprofileruleid_systemuser + lk_powerbireportapdx_createdonbehalfby + createdonbehalfby + powerbireportapdx + createdonbehalfby 0 - eff738ed-cbf7-e411-93a4-00219b3e9ee9 + 87cdca10-f0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - user_profilerule + lk_powerbireportapdx_modifiedby None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324357,30 +373822,30 @@ false systemuserid systemuser - user_profilerule - owninguser - channelaccessprofilerule - userid + lk_powerbireportapdx_modifiedby + modifiedby + powerbireportapdx + modifiedby 0 - cf5a4feb-77f8-e411-93a4-00219b3e9ee9 + 8dcdca10-f0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_profileruleitem_createdby + lk_powerbireportapdx_modifiedonbehalfby None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324411,30 +373876,30 @@ false systemuserid systemuser - lk_profileruleitem_createdby - createdby - channelaccessprofileruleitem - lk_profileruleitemid3 + lk_powerbireportapdx_modifiedonbehalfby + modifiedonbehalfby + powerbireportapdx + modifiedonbehalfby 0 - d55a4feb-77f8-e411-93a4-00219b3e9ee9 + 9fcdca10-f0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_profileruleitem_createdonbehalfby + user_powerbireportapdx None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324465,30 +373930,30 @@ false systemuserid systemuser - lk_profileruleitem_createdonbehalfby - createdonbehalfby - channelaccessprofileruleitem - lk_profileruleitemid2 + user_powerbireportapdx + owninguser + powerbireportapdx + owninguser 0 - db5a4feb-77f8-e411-93a4-00219b3e9ee9 + 9174e010-c802-4a43-b594-33bd043f10c2 false false iscustomizable - true + false true - true - lk_profileruleitem_modifiedby + false + lk_userquery_modifiedby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324519,30 +373984,30 @@ false systemuserid systemuser - lk_profileruleitem_modifiedby + lk_userquery_modifiedby modifiedby - channelaccessprofileruleitem - lk_profileruleitemid1 + userquery + modifiedby 0 - e15a4feb-77f8-e411-93a4-00219b3e9ee9 + 09fefb10-d8d3-4053-a3e3-0c20dad9917e false false iscustomizable - true + false true - true - lk_profileruleitem_modifiedonbehalfby + false + lk_integrationstatus_createdby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324573,30 +374038,30 @@ false systemuserid systemuser - lk_profileruleitem_modifiedonbehalfby - modifiedonbehalfby - channelaccessprofileruleitem - lk_profileruleitemid + lk_integrationstatus_createdby + createdby + integrationstatus + createdby 0 - 9c347f74-a8d4-e511-8a95-00219b619656 + 70165811-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_delveactionhub_createdby + lk_desktopflowbinary_createdby None - 8.1.0.0 + 1.3.8.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324627,30 +374092,30 @@ false systemuserid systemuser - lk_delveactionhub_createdby + lk_desktopflowbinary_createdby createdby - delveactionhub - createdbyname + desktopflowbinary + createdby 0 - a2347f74-a8d4-e511-8a95-00219b619656 + 76165811-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_delveactionhub_createdonbehalfby + lk_desktopflowbinary_createdonbehalfby None - 8.1.0.0 + 1.3.8.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324681,30 +374146,30 @@ false systemuserid systemuser - lk_delveactionhub_createdonbehalfby + lk_desktopflowbinary_createdonbehalfby createdonbehalfby - delveactionhub - createdonbehalfbyname + desktopflowbinary + createdonbehalfby 0 - a8347f74-a8d4-e511-8a95-00219b619656 + 7c165811-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_delveactionhub_modifiedby + lk_desktopflowbinary_modifiedby None - 8.1.0.0 + 1.3.8.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324735,30 +374200,30 @@ false systemuserid systemuser - lk_delveactionhub_modifiedby + lk_desktopflowbinary_modifiedby modifiedby - delveactionhub - modifiedbyname + desktopflowbinary + modifiedby 0 - ae347f74-a8d4-e511-8a95-00219b619656 + 82165811-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_delveactionhub_modifiedonbehalfby + lk_desktopflowbinary_modifiedonbehalfby None - 8.1.0.0 + 1.3.8.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324789,30 +374254,30 @@ false systemuserid systemuser - lk_delveactionhub_modifiedonbehalfby + lk_desktopflowbinary_modifiedonbehalfby modifiedonbehalfby - delveactionhub - modifiedonbehalfbyname + desktopflowbinary + modifiedonbehalfby 0 - 0706a747-f7cb-e511-8e7e-00219b619656 + 94165811-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_recommendeddocument_createdby + user_desktopflowbinary None - 8.1.0.0 + 1.3.8.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324843,30 +374308,30 @@ false systemuserid systemuser - lk_recommendeddocument_createdby - createdby - recommendeddocument - createdbyname + user_desktopflowbinary + owninguser + desktopflowbinary + owninguser 0 - 0d06a747-f7cb-e511-8e7e-00219b619656 + 85185811-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_recommendeddocument_createdonbehalfby + lk_flowsession_createdby None - 8.1.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324897,30 +374362,30 @@ false systemuserid systemuser - lk_recommendeddocument_createdonbehalfby - createdonbehalfby - recommendeddocument - createdonbehalfbyname + lk_flowsession_createdby + createdby + flowsession + createdby 0 - 1306a747-f7cb-e511-8e7e-00219b619656 + 8b185811-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_recommendeddocument_modifiedby + lk_flowsession_createdonbehalfby None - 8.1.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -324951,30 +374416,30 @@ false systemuserid systemuser - lk_recommendeddocument_modifiedby - modifiedby - recommendeddocument - modifiedbyname + lk_flowsession_createdonbehalfby + createdonbehalfby + flowsession + createdonbehalfby 0 - 1906a747-f7cb-e511-8e7e-00219b619656 + 91185811-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_recommendeddocument_modifiedonbehalfby + lk_flowsession_modifiedby None - 8.1.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -325005,30 +374470,30 @@ false systemuserid systemuser - lk_recommendeddocument_modifiedonbehalfby - modifiedonbehalfby - recommendeddocument - modifiedonbehalfbyname + lk_flowsession_modifiedby + modifiedby + flowsession + modifiedby 0 - 65da6b9d-8419-e411-8e13-0024e8412450 + 97185811-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_KnowledgeBaseRecord_createdby + lk_flowsession_modifiedonbehalfby None - 7.1.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -325059,30 +374524,30 @@ false systemuserid systemuser - lk_KnowledgeBaseRecord_createdby - createdby - knowledgebaserecord - createdby + lk_flowsession_modifiedonbehalfby + modifiedonbehalfby + flowsession + modifiedonbehalfby 0 - 6bda6b9d-8419-e411-8e13-0024e8412450 + a9185811-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_KnowledgeBaseRecord_createdonbehalfby + user_flowsession None - 7.1.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -325113,15 +374578,15 @@ false systemuserid systemuser - lk_KnowledgeBaseRecord_createdonbehalfby - createdonbehalfby - knowledgebaserecord - createdonbehalfby + user_flowsession + owninguser + flowsession + owninguser 0 - 71da6b9d-8419-e411-8e13-0024e8412450 + 3a225811-be07-4803-95ab-66c43373f0a2 false @@ -325131,9 +374596,9 @@ true true - lk_KnowledgeBaseRecord_modifiedby + lk_feedback_modifiedby None - 7.1.0.0 + 8.1.0.0 OneToManyRelationship UseCollectionName @@ -325167,30 +374632,30 @@ false systemuserid systemuser - lk_KnowledgeBaseRecord_modifiedby + lk_feedback_modifiedby modifiedby - knowledgebaserecord + feedback modifiedby 0 - 77da6b9d-8419-e411-8e13-0024e8412450 + be5ca011-bdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_KnowledgeBaseRecord_modifiedonbehalfby + lk_connectioninstance_createdby None - 7.1.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -325221,30 +374686,30 @@ false systemuserid systemuser - lk_KnowledgeBaseRecord_modifiedonbehalfby - modifiedonbehalfby - knowledgebaserecord - modifiedonbehalfby + lk_connectioninstance_createdby + createdby + connectioninstance + createdby 0 - fb96fc79-febc-4845-aa13-a7364bfa8e02 + c45ca011-bdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_externalpartyitem_createdonbehalfby + lk_connectioninstance_createdonbehalfby None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -325275,27 +374740,27 @@ false systemuserid systemuser - lk_externalpartyitem_createdonbehalfby + lk_connectioninstance_createdonbehalfby createdonbehalfby - externalpartyitem + connectioninstance createdonbehalfby 0 - cebe380b-69cd-43cc-9e88-09981e4ba975 + ca5ca011-bdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_lookupmapping_modifiedby + false + true + lk_connectioninstance_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -325329,27 +374794,27 @@ false systemuserid systemuser - lk_lookupmapping_modifiedby + lk_connectioninstance_modifiedby modifiedby - lookupmapping + connectioninstance modifiedby 0 - 2bb0ae3a-e27e-41e6-9b4b-863214c77504 + d05ca011-bdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_relationshiprole_createdonbehalfby + lk_connectioninstance_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -325383,27 +374848,27 @@ false systemuserid systemuser - lk_relationshiprole_createdonbehalfby - createdonbehalfby - relationshiprole - createdonbehalfby + lk_connectioninstance_modifiedonbehalfby + modifiedonbehalfby + connectioninstance + modifiedonbehalfby 0 - 0eb3a110-3c1e-48d2-87d8-c19a8c8ca192 + e25ca011-bdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_usersettings_createdonbehalfby + false + true + user_connectioninstance None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -325437,15 +374902,15 @@ false systemuserid systemuser - lk_usersettings_createdonbehalfby - createdonbehalfby - usersettings - createdonbehalfby + user_connectioninstance + owninguser + connectioninstance + owninguser 0 - f62a7c83-de3e-490b-94bf-f1e84dd58dcf + 6d29db11-ec88-431b-af0c-17be42a41f2f false @@ -325454,8 +374919,8 @@ false true - true - lk_kbarticletemplatebase_modifiedby + false + lk_importdatabase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -325491,15 +374956,15 @@ false systemuserid systemuser - lk_kbarticletemplatebase_modifiedby + lk_importdatabase_modifiedby modifiedby - kbarticletemplate + importdata modifiedby 0 - d7b301c4-2a41-4bfe-9955-7f3f30dd8f41 + 1af1f111-08d1-4967-a7ee-d842e8c52c82 false @@ -325509,12 +374974,12 @@ true true - lk_fax_modifiedby + lk_appconfigmaster_modifiedonbehalfby None - 5.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -325545,17 +375010,17 @@ false systemuserid systemuser - lk_fax_modifiedby - modifiedby - fax - modifiedby_fax + systemuser_appconfigmaster_modifiedonbehalfby + modifiedonbehalfby + appconfigmaster + appconfigmaster_modifiedonbehalfby 0 - f3390434-747d-40f6-8c01-fc440e05c0cc + 42674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -325563,21 +375028,42 @@ true true - lk_processsession_completedby - None - 5.0.0.0 + mspp_systemuser_mspp_webpage_modifiedby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + 1a856d01-b2f3-4a3c-8756-1673e35e3ff1 + + true + + 1033 + + + ff6bb0bf-646a-4461-92a7-e349f0e3b17d + + true + + 1030 + + + + 1a856d01-b2f3-4a3c-8756-1673e35e3ff1 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -325599,39 +375085,60 @@ false systemuserid systemuser - lk_processsession_completedby - completedby - processsession - completedby + mspp_systemuser_mspp_webpage_modifiedby + mspp_modifiedby + mspp_webpage + mspp_modifiedby - 0 + 1 - 7fb6b1b4-2293-4c6f-8ff5-bab0dcc31216 + 4a674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable false true - false - modifiedby_sdkmessageprocessingstepsecureconfig - None - 5.0.0.0 + true + mspp_systemuser_mspp_webpageaccesscontrolrule_createdby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + c14874e5-3c59-44aa-8324-2d84c9aca1d6 + + true + + 1033 + + + c40cc7ef-4336-4f66-bc2d-03a0e3714ce3 + + true + + 1030 + + + + c14874e5-3c59-44aa-8324-2d84c9aca1d6 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -325653,39 +375160,60 @@ false systemuserid systemuser - modifiedby_sdkmessageprocessingstepsecureconfig - modifiedby - sdkmessageprocessingstepsecureconfig - modifiedby + mspp_systemuser_mspp_webpageaccesscontrolrule_createdby + mspp_createdby + mspp_webpageaccesscontrolrule + mspp_createdby - 0 + 1 - 9c2f4151-f56e-4a6a-a36f-2991f4d4fc51 + 53674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true - false - lk_businessunit_createdonbehalfby - None - 5.0.0.0 + true + mspp_systemuser_mspp_webpageaccesscontrolrule_modifiedby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + 2b7950b7-d220-4ad0-b3e6-272e7d9dd141 + + true + + 1033 + + + 81167195-d224-4585-8c49-45a3c6684de0 + + true + + 1030 + + + + 2b7950b7-d220-4ad0-b3e6-272e7d9dd141 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -325707,39 +375235,60 @@ false systemuserid systemuser - lk_businessunit_createdonbehalfby - createdonbehalfby - businessunit - createdonbehalfby + mspp_systemuser_mspp_webpageaccesscontrolrule_modifiedby + mspp_modifiedby + mspp_webpageaccesscontrolrule + mspp_modifiedby - 0 + 1 - 45950405-9f05-4d21-8220-0808b0a6ad78 + 5b674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable false true - false - lk_duplicaterule_createdonbehalfby - None - 5.0.0.0 + true + mspp_systemuser_mspp_webrole_createdby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + 6daa58db-96dd-49c9-b549-c43cd8b4d76a + + true + + 1033 + + + 593441bf-1a4e-409b-9bd0-7318dbd0ae41 + + true + + 1030 + + + + 6daa58db-96dd-49c9-b549-c43cd8b4d76a + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -325761,39 +375310,60 @@ false systemuserid systemuser - lk_duplicaterule_createdonbehalfby - createdonbehalfby - duplicaterule - createdonbehalfby + mspp_systemuser_mspp_webrole_createdby + mspp_createdby + mspp_webrole + mspp_createdby - 0 + 1 - 1499f5e8-fa35-4427-89dd-40a810b9790c + 64674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable false true - false - lk_sdkmessagepair_createdonbehalfby - None - 5.0.0.0 + true + mspp_systemuser_mspp_webrole_modifiedby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + 1f19e813-48f5-4052-bbe0-7c4a61576447 + + true + + 1033 + + + e45e3944-2f17-4054-ae82-8c73a1056bfe + + true + + 1030 + + + + 1f19e813-48f5-4052-bbe0-7c4a61576447 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -325815,39 +375385,60 @@ false systemuserid systemuser - lk_sdkmessagepair_createdonbehalfby - createdonbehalfby - sdkmessagepair - createdonbehalfby + mspp_systemuser_mspp_webrole_modifiedby + mspp_modifiedby + mspp_webrole + mspp_modifiedby - 0 + 1 - 4a5dfcf9-b625-47f8-9aae-fe942d099e1e + 6c674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable false true - false - lk_sdkmessage_modifiedonbehalfby - None - 5.0.0.0 + true + mspp_systemuser_mspp_website_createdby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + 41256b2c-7031-4e09-831e-3e0029d526b3 + + true + + 1033 + + + 1ef8376a-f29f-4ef5-b76c-9fc86b79eb24 + + true + + 1030 + + + + 41256b2c-7031-4e09-831e-3e0029d526b3 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -325869,39 +375460,60 @@ false systemuserid systemuser - lk_sdkmessage_modifiedonbehalfby - modifiedonbehalfby - sdkmessage - modifiedonbehalfby + mspp_systemuser_mspp_website_createdby + mspp_createdby + mspp_website + mspp_createdby - 0 + 1 - 6d853efb-a919-4eda-8519-8f7491dc6d83 + 75674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true true - lk_translationprocess_modifiedonbehalfby - None - 8.2.0.0 + mspp_systemuser_mspp_website_modifiedby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + 6b4ef3b8-8076-4b3a-bc71-78e424df8141 + + true + + 1033 + + + cf15ed93-e8f3-4401-8b5b-2d75fad7ba52 + + true + + 1030 + + + + 6b4ef3b8-8076-4b3a-bc71-78e424df8141 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -325923,17 +375535,17 @@ false systemuserid systemuser - lk_translationprocess_modifiedonbehalfby - modifiedonbehalfby - translationprocess - modifiedonbehalfbyname + mspp_systemuser_mspp_website_modifiedby + mspp_modifiedby + mspp_website + mspp_modifiedby - 0 + 1 - 24479a25-4f57-4321-a2b1-9818f2881ec1 + 7d674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -325941,21 +375553,42 @@ true true - lk_actioncardbase_createdonbehalfby - None - 8.2.0.0 + mspp_systemuser_mspp_websiteaccess_createdby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + a91672d9-aeeb-4692-94be-6d80f0d9c8d1 + + true + + 1033 + + + 22a6c5cc-6706-4b7d-9069-e0e5bb8549bb + + true + + 1030 + + + + a91672d9-aeeb-4692-94be-6d80f0d9c8d1 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -325977,39 +375610,60 @@ false systemuserid systemuser - lk_actioncardbase_createdonbehalfby - createdonbehalfby - actioncard - createdonbehalfby + mspp_systemuser_mspp_websiteaccess_createdby + mspp_createdby + mspp_websiteaccess + mspp_createdby - 0 + 1 - b1b980a3-5013-44a3-a35d-a9c4318af6af + 86674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable false true - false - lk_sdkmessagefilter_createdonbehalfby - None - 5.0.0.0 + true + mspp_systemuser_mspp_websiteaccess_modifiedby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + d3fee299-bd2c-412c-bebc-48e804af5d6c + + true + + 1033 + + + 0665398a-5bd7-4ba8-9298-51e1ed3e3647 + + true + + 1030 + + + + d3fee299-bd2c-412c-bebc-48e804af5d6c + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -326031,39 +375685,60 @@ false systemuserid systemuser - lk_sdkmessagefilter_createdonbehalfby - createdonbehalfby - sdkmessagefilter - createdonbehalfby + mspp_systemuser_mspp_websiteaccess_modifiedby + mspp_modifiedby + mspp_websiteaccess + mspp_modifiedby - 0 + 1 - 2194ca06-62f9-401b-a9ee-bf893a9ce3bf + 8e674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true true - lk_slabase_modifiedonbehalfby - None - 6.1.0.0 + mspp_systemuser_mspp_websitelanguage_createdby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + 88e94634-84e1-4ee6-8598-56185731f587 + + true + + 1033 + + + a7ef135c-7bc0-463e-9086-2dcea680cb03 + + true + + 1030 + + + + 88e94634-84e1-4ee6-8598-56185731f587 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -326085,39 +375760,60 @@ false systemuserid systemuser - lk_slabase_modifiedonbehalfby - modifiedonbehalfby - sla - modifiedonbehalfby + mspp_systemuser_mspp_websitelanguage_createdby + mspp_createdby + mspp_websitelanguage + mspp_createdby - 0 + 1 - 3a225811-be07-4803-95ab-66c43373f0a2 + 97674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true true - lk_feedback_modifiedby - None - 8.1.0.0 + mspp_systemuser_mspp_websitelanguage_modifiedby + Append + 1.0.0.0 OneToManyRelationship UseCollectionName Details - - + + + 84db91e0-c5fa-41f2-98a5-717c26b6d587 + + true + + 1033 + + + b3e9e2c2-f40b-4b20-9f7b-c6d0bc8c956a + + true + + 1030 + + + + 84db91e0-c5fa-41f2-98a5-717c26b6d587 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -326139,39 +375835,60 @@ false systemuserid systemuser - lk_feedback_modifiedby - modifiedby - feedback - modifiedby + mspp_systemuser_mspp_websitelanguage_modifiedby + mspp_modifiedby + mspp_websitelanguage + mspp_modifiedby - 0 + 1 - 08287fb0-4d8a-4aa7-859c-4b9914723df2 + 9f674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable false true - false - lk_userfiscalcalendar_modifiedby - None - 5.0.0.0 + true + mspp_systemuser_mspp_webtemplate_createdby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + ea7bfd05-d46b-44b6-a25b-c8803d99a6cd + + true + + 1033 + + + 229d569c-d332-48f2-856e-bfa3bf22fde6 + + true + + 1030 + + + + ea7bfd05-d46b-44b6-a25b-c8803d99a6cd + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -326193,17 +375910,17 @@ false systemuserid systemuser - lk_userfiscalcalendar_modifiedby - modifiedby - userfiscalcalendar - modifiedby + mspp_systemuser_mspp_webtemplate_createdby + mspp_createdby + mspp_webtemplate + mspp_createdby - 0 + 1 - 72f8fb8b-5f25-4854-86eb-5100b27c4e26 + a8674c12-f4ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -326211,21 +375928,42 @@ true true - lk_templatebase_modifiedby - None - 5.0.0.0 + mspp_systemuser_mspp_webtemplate_modifiedby + Append + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + 80235a69-6a9d-4dba-8f5c-ef6d916b6d3a + + true + + 1033 + + + 55690e6b-cf12-4db4-a9ce-11c52d81788e + + true + + 1030 + + + + 80235a69-6a9d-4dba-8f5c-ef6d916b6d3a + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -326247,27 +375985,27 @@ false systemuserid systemuser - lk_templatebase_modifiedby - modifiedby - template - modifiedby + mspp_systemuser_mspp_webtemplate_modifiedby + mspp_modifiedby + mspp_webtemplate + mspp_modifiedby - 0 + 1 - 8adcadcf-439d-4a58-a6fe-85ba1831fa8a + 5953b312-aca6-4546-b00d-c9c166b378ff false false iscustomizable - false + true true - false - lk_webwizard_createdonbehalfby + true + user_socialactivity None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -326301,15 +376039,15 @@ false systemuserid systemuser - lk_webwizard_createdonbehalfby - createdonbehalfby - webwizard - createdonbehalfby + user_socialactivity + owninguser + socialactivity + owninguser_socialactivity 0 - 0cc6f36c-fed6-48d3-87d4-d2bcd9a6a167 + 0cb3df12-ee01-400c-91e1-fead0a865326 false @@ -326318,8 +376056,8 @@ false true - false - createdby_relationship_role_map + true + lk_kbarticlecommentbase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -326355,15 +376093,15 @@ false systemuserid systemuser - createdby_relationship_role_map - createdby - relationshiprolemap - createdby + lk_kbarticlecommentbase_modifiedby + modifiedby + kbarticlecomment + modifiedby 0 - 34058934-64d8-4515-a31e-739ce157bc08 + 52299113-7928-4b1e-9618-3fc0da39870f false @@ -326373,12 +376111,12 @@ true false - lk_azureserviceconnection_modifiedonbehalfby + lk_plugintype_createdonbehalfby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -326409,15 +376147,15 @@ false systemuserid systemuser - lk_azureserviceconnection_modifiedonbehalfby - modifiedonbehalfby - azureserviceconnection - modifiedonbehalfby + lk_plugintype_createdonbehalfby + createdonbehalfby + plugintype + createdonbehalfby 0 - 24f3a7c7-2f67-4186-92da-cb388d2c0f6b + 507dbd13-79ed-4ad7-8225-11eaa7731d89 false @@ -326427,7 +376165,7 @@ true true - lk_kbarticletemplate_modifiedonbehalfby + lk_activitypointer_createdby None 5.0.0.0 OneToManyRelationship @@ -326463,27 +376201,27 @@ false systemuserid systemuser - lk_kbarticletemplate_modifiedonbehalfby - modifiedonbehalfby - kbarticletemplate - modifiedonbehalfby + lk_activitypointer_createdby + createdby + activitypointer + createdby 0 - 2ee24c27-6b4b-4fc9-b2d3-13226899ae20 + e8a46c14-2de0-f011-840b-0022489ebb55 false - false + true iscustomizable true - true + false true - lk_slakpiinstancebase_createdby + lk_ctx_pyramid_createdby None - 7.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -326517,27 +376255,27 @@ false systemuserid systemuser - lk_slakpiinstancebase_createdby + lk_ctx_pyramid_createdby createdby - slakpiinstance + ctx_pyramid createdby 0 - 8fb5a53b-ce5e-4ac7-915a-9391011eb1d8 + eea46c14-2de0-f011-840b-0022489ebb55 false - false + true iscustomizable - false + true - true + false true - lk_convertruleitembase_createdby + lk_ctx_pyramid_createdonbehalfby None - 6.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -326571,27 +376309,27 @@ false systemuserid systemuser - lk_convertruleitembase_createdby - createdby - convertruleitem - createdby + lk_ctx_pyramid_createdonbehalfby + createdonbehalfby + ctx_pyramid + createdonbehalfby 0 - 93be8933-27f6-4915-82dc-385ddb81491d + f4a46c14-2de0-f011-840b-0022489ebb55 false - false + true iscustomizable true - true + false true - lk_ChannelProperty_modifiedby + lk_ctx_pyramid_modifiedby None - 7.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -326625,27 +376363,27 @@ false systemuserid systemuser - lk_ChannelProperty_modifiedby + lk_ctx_pyramid_modifiedby modifiedby - channelproperty + ctx_pyramid modifiedby 0 - 0b901fd8-73be-42ac-8e9f-37e6fa910a64 + faa46c14-2de0-f011-840b-0022489ebb55 false - false + true iscustomizable - false + true - true - false - lk_ACIViewMapper_createdby + false + true + lk_ctx_pyramid_modifiedonbehalfby None - 8.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -326679,81 +376417,27 @@ false systemuserid systemuser - lk_ACIViewMapper_createdby - createdby - aciviewmapper - createdby - - 0 - - - 35643674-d498-4baa-8d8e-398cfa314ddd - - false - - false - iscustomizable - false - - true - false - lk_azureserviceconnection_createdonbehalfby - None - 8.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_azureserviceconnection_createdonbehalfby - createdonbehalfby - azureserviceconnection - createdonbehalfby + lk_ctx_pyramid_modifiedonbehalfby + modifiedonbehalfby + ctx_pyramid + modifiedonbehalfby 0 - 0d091360-0557-4bee-8432-cdbd26c75c02 + 0ca56c14-2de0-f011-840b-0022489ebb55 false - false + true iscustomizable true - true + false true - lk_ChannelPropertyGroup_modifiedonbehalfby + user_ctx_pyramid None - 7.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -326787,27 +376471,27 @@ false systemuserid systemuser - lk_ChannelPropertyGroup_modifiedonbehalfby - modifiedonbehalfby - channelpropertygroup - modifiedonbehalfby + user_ctx_pyramid + owninguser + ctx_pyramid + owninguser 0 - 430366fe-a501-451d-bee0-57cd2c714ee3 + 7d37c314-9c84-438d-9794-70ab8c961a68 false false iscustomizable - false + true true - false - lk_userqueryvisualization_modifiedby + true + socialProfile_owning_user None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -326841,15 +376525,15 @@ false systemuserid systemuser - lk_userqueryvisualization_modifiedby - modifiedby - userqueryvisualization - modifiedby + socialProfile_owning_user + owninguser + socialprofile + owninguser 0 - 2e22475c-3cc5-4944-b7be-44f841ee95f4 + 785dd714-b5ba-f011-bbd3-7c1e52365f30 false @@ -326859,9 +376543,9 @@ true true - lk_recurringappointmentmaster_createdonbehalfby + lk_entityrecordfilter_createdby None - 5.0.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -326895,15 +376579,15 @@ false systemuserid systemuser - lk_recurringappointmentmaster_createdonbehalfby - createdonbehalfby - recurringappointmentmaster - createdonbehalfby_recurringappointmentmaster + lk_entityrecordfilter_createdby + createdby + entityrecordfilter + createdby 0 - 3e4166fc-1ad2-4c49-8dc2-203c03b32a41 + 7e5dd714-b5ba-f011-bbd3-7c1e52365f30 false @@ -326913,9 +376597,9 @@ true true - lk_businessprocessflowinstancebase_createdonbehalfby + lk_entityrecordfilter_createdonbehalfby None - 8.2.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -326949,27 +376633,27 @@ false systemuserid systemuser - lk_businessprocessflowinstancebase_createdonbehalfby + lk_entityrecordfilter_createdonbehalfby createdonbehalfby - businessprocessflowinstance + entityrecordfilter createdonbehalfby 0 - 57c689e2-7131-44ef-aea8-9cf8624a38ab + 845dd714-b5ba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true - false - lk_lookupmapping_createdonbehalfby + true + lk_entityrecordfilter_modifiedby None - 5.0.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -327003,15 +376687,15 @@ false systemuserid systemuser - lk_lookupmapping_createdonbehalfby - createdonbehalfby - lookupmapping - createdonbehalfby + lk_entityrecordfilter_modifiedby + modifiedby + entityrecordfilter + modifiedby 0 - d33f8f52-1793-4ca5-8863-edd491b45d7d + 8a5dd714-b5ba-f011-bbd3-7c1e52365f30 false @@ -327021,9 +376705,9 @@ true true - lk_MobileOfflineProfileItem_createdby + lk_entityrecordfilter_modifiedonbehalfby None - 8.0.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -327057,27 +376741,27 @@ false systemuserid systemuser - lk_MobileOfflineProfileItem_createdby - createdby - mobileofflineprofileitem - createdby + lk_entityrecordfilter_modifiedonbehalfby + modifiedonbehalfby + entityrecordfilter + modifiedonbehalfby 0 - 62a2fa78-d3bb-4031-8688-f1370cde5e23 + 965ed714-b5ba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true - false - lk_sdkmessageresponsefield_createdonbehalfby + true + lk_privilegesremovalsetting_createdby None - 5.0.0.0 + 1.69.0.0 OneToManyRelationship DoNotDisplay @@ -327111,27 +376795,27 @@ false systemuserid systemuser - lk_sdkmessageresponsefield_createdonbehalfby - createdonbehalfby - sdkmessageresponsefield - createdonbehalfby + lk_privilegesremovalsetting_createdby + createdby + privilegesremovalsetting + createdby 0 - 71fc3f38-7785-4256-92dc-b04cec3cc077 + 9c5ed714-b5ba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true - false - lk_userfiscalcalendar_createdonbehalfby + true + lk_privilegesremovalsetting_createdonbehalfby None - 5.0.0.0 + 1.69.0.0 OneToManyRelationship DoNotDisplay @@ -327165,15 +376849,15 @@ false systemuserid systemuser - lk_userfiscalcalendar_createdonbehalfby + lk_privilegesremovalsetting_createdonbehalfby createdonbehalfby - userfiscalcalendar + privilegesremovalsetting createdonbehalfby 0 - a2e1797e-7543-42ee-9ee0-dd08e8e02465 + a65ed714-b5ba-f011-bbd3-7c1e52365f30 false @@ -327183,9 +376867,9 @@ true true - lk_recurringappointmentmaster_modifiedby + lk_privilegesremovalsetting_modifiedby None - 5.0.0.0 + 1.69.0.0 OneToManyRelationship DoNotDisplay @@ -327219,15 +376903,15 @@ false systemuserid systemuser - lk_recurringappointmentmaster_modifiedby + lk_privilegesremovalsetting_modifiedby modifiedby - recurringappointmentmaster - modifiedby_recurringappointmentmaster + privilegesremovalsetting + modifiedby 0 - 136cd753-d703-492d-a134-4fc19107c55a + ac5ed714-b5ba-f011-bbd3-7c1e52365f30 false @@ -327237,9 +376921,9 @@ true true - lk_fax_createdby + lk_privilegesremovalsetting_modifiedonbehalfby None - 5.0.0.0 + 1.69.0.0 OneToManyRelationship DoNotDisplay @@ -327273,81 +376957,27 @@ false systemuserid systemuser - lk_fax_createdby - createdby - fax - createdby_fax + lk_privilegesremovalsetting_modifiedonbehalfby + modifiedonbehalfby + privilegesremovalsetting + modifiedonbehalfby 0 - 3e3f5585-c073-419b-be7b-ae67aac30a57 + 895fd714-b5ba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true true - lk_ConvertRule_createdonbehalfby - None - 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_ConvertRule_createdonbehalfby - createdonbehalfby - convertrule - createdonbehalfby - - 0 - - - 4555edea-40b5-4237-8a0d-334439f9b458 - - false - - false - iscustomizable - false - - true - false - lk_internaladdressbase_createdby + lk_recordfilter_createdby None - 5.0.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -327381,15 +377011,15 @@ false systemuserid systemuser - lk_internaladdressbase_createdby + lk_recordfilter_createdby createdby - internaladdress + recordfilter createdby 0 - bcff7bf0-90f5-4932-9a66-2c348e12fbb8 + 8f5fd714-b5ba-f011-bbd3-7c1e52365f30 false @@ -327399,9 +377029,9 @@ true true - lk_letter_modifiedonbehalfby + lk_recordfilter_createdonbehalfby None - 5.0.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -327435,27 +377065,27 @@ false systemuserid systemuser - lk_letter_modifiedonbehalfby - modifiedonbehalfby - letter - modifiedonbehalfby_letter + lk_recordfilter_createdonbehalfby + createdonbehalfby + recordfilter + createdonbehalfby 0 - 7b19249c-460b-4894-9899-8c9656ebc713 + 955fd714-b5ba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true - false - lk_transformationmapping_createdby + true + lk_recordfilter_modifiedby None - 5.0.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -327489,27 +377119,27 @@ false systemuserid systemuser - lk_transformationmapping_createdby - createdby - transformationmapping - createdby + lk_recordfilter_modifiedby + modifiedby + recordfilter + modifiedby 0 - 2d58b57a-d664-44c7-81c7-f7c9b2b65b0a + 9b5fd714-b5ba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true - false - lk_entitymap_modifiedonbehalfby + true + lk_recordfilter_modifiedonbehalfby None - 5.0.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -327543,15 +377173,15 @@ false systemuserid systemuser - lk_entitymap_modifiedonbehalfby + lk_recordfilter_modifiedonbehalfby modifiedonbehalfby - entitymap + recordfilter modifiedonbehalfby 0 - d87bccde-bbc3-4ce8-9bf3-326c895371b8 + 3d931116-eb52-40e1-aebf-84c15f984d9f false @@ -327561,12 +377191,12 @@ true true - lk_reportcategorybase_createdby + lk_feedback_createdonbehalfby None - 5.0.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -327597,25 +377227,25 @@ false systemuserid systemuser - lk_reportcategorybase_createdby - createdby - reportcategory - createdby + lk_feedback_createdonbehalfby + createdonbehalfby + feedback + createdonbehalfby 0 - 18bd829a-ea4d-464b-884a-f2be12b6dfa8 + fc291316-be3b-485b-b2b0-55871c32a94d false false iscustomizable - true + false true true - lk_letter_createdby + systemuser_internal_addresses None 5.0.0.0 OneToManyRelationship @@ -327637,7 +377267,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -327651,30 +377281,30 @@ false systemuserid systemuser - lk_letter_createdby - createdby - letter - createdby_letter + systemuser_internal_addresses + parentid + internaladdress + parentid_systemuser 0 - 0f60da44-51f5-4151-ba07-b5cde962e31a + 67436116-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_customcontrolresource_modifiedby + lk_indexedtrait_createdby None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -327705,30 +377335,30 @@ false systemuserid systemuser - lk_customcontrolresource_modifiedby - modifiedby - customcontrolresource - modifiedby + lk_indexedtrait_createdby + createdby + indexedtrait + createdby 0 - acb28e5f-99ae-4b90-a2cd-ff3fec54d959 + 6d436116-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_expiredprocess_createdonbehalfby + lk_indexedtrait_createdonbehalfby None - 8.2.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -327759,81 +377389,27 @@ false systemuserid systemuser - lk_expiredprocess_createdonbehalfby + lk_indexedtrait_createdonbehalfby createdonbehalfby - expiredprocess - createdonbehalfbyname - - 0 - - - d75a97d4-096e-4bce-9d4e-ec8c2c6c2988 - - false - - false - iscustomizable - false - - true - false - actioncardusersettings_owning_user - None - 8.2.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - actioncardusersettings_owning_user - owninguser - actioncardusersettings - owninguser + indexedtrait + createdonbehalfby 0 - c3612c65-30cf-4573-aea3-5338817be333 + 73436116-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - createdby_customer_relationship + lk_indexedtrait_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -327867,27 +377443,27 @@ false systemuserid systemuser - createdby_customer_relationship - createdby - customerrelationship - createdby + lk_indexedtrait_modifiedby + modifiedby + indexedtrait + modifiedby 0 - 3708c635-783a-4577-a8ee-57442bf007e3 + 79436116-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_reportentity_createdonbehalfby + lk_indexedtrait_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -327921,27 +377497,27 @@ false systemuserid systemuser - lk_reportentity_createdonbehalfby - createdonbehalfby - reportentity - createdonbehalfby + lk_indexedtrait_modifiedonbehalfby + modifiedonbehalfby + indexedtrait + modifiedonbehalfby 0 - 559bb41e-19ad-469e-8ab7-a8870caebc38 + 8b436116-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_routingrule_createdby + user_indexedtrait None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -327975,27 +377551,27 @@ false systemuserid systemuser - lk_routingrule_createdby - createdby - routingrule - createdby + user_indexedtrait + owninguser + indexedtrait + owninguser 0 - c10c82fa-113e-4f6e-a2ed-dd2e32004c88 + 5ae09116-daba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - workflow_dependency_createdby + lk_deleteditemreference_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -328029,30 +377605,30 @@ false systemuserid systemuser - workflow_dependency_createdby + lk_deleteditemreference_createdby createdby - workflowdependency + deleteditemreference createdby 0 - 5e185885-3922-431f-b17f-1a3ce755f30f + 60e09116-daba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_appmodulecomponent_modifiedby + lk_deleteditemreference_createdonbehalfby None - 8.2.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -328083,27 +377659,27 @@ false systemuserid systemuser - appmodulecomponent_modifiedby - modifiedby - appmodulecomponent - appmodulecomponent_modifiedby + lk_deleteditemreference_createdonbehalfby + createdonbehalfby + deleteditemreference + createdonbehalfby 0 - 795dcdd5-c08c-4f7e-b78d-1d27a91a4156 + 66e09116-daba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_calendar_modifiedby + lk_deleteditemreference_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -328137,27 +377713,27 @@ false systemuserid systemuser - lk_calendar_modifiedby + lk_deleteditemreference_modifiedby modifiedby - calendar + deleteditemreference modifiedby 0 - 97c468a8-e7ab-4f94-99bd-4325619f1b6b + 6ce09116-daba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_RoutingRuleItem_createdby + lk_deleteditemreference_modifiedonbehalfby None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -328191,27 +377767,27 @@ false systemuserid systemuser - lk_RoutingRuleItem_createdby - createdby - routingruleitem - createdby + lk_deleteditemreference_modifiedonbehalfby + modifiedonbehalfby + deleteditemreference + modifiedonbehalfby 0 - 174b65a3-9b3b-4729-8ea2-f06c97bdc2ab + f7e09116-daba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - SystemUser_DuplicateRules + false + true + lk_recyclebinconfig_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -328245,27 +377821,27 @@ false systemuserid systemuser - SystemUser_DuplicateRules - owninguser - duplicaterule - owninguser + lk_recyclebinconfig_createdby + createdby + recyclebinconfig + createdby 0 - 52299113-7928-4b1e-9618-3fc0da39870f + fde09116-daba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_plugintype_createdonbehalfby + false + true + lk_recyclebinconfig_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -328299,27 +377875,27 @@ false systemuserid systemuser - lk_plugintype_createdonbehalfby + lk_recyclebinconfig_createdonbehalfby createdonbehalfby - plugintype + recyclebinconfig createdonbehalfby 0 - d958b898-b644-4ac6-937c-b2f79493f7e0 + 03e19116-daba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_integrationstatus_modifiedonbehalfby + false + true + lk_recyclebinconfig_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -328353,27 +377929,27 @@ false systemuserid systemuser - lk_integrationstatus_modifiedonbehalfby - modifiedonbehalfby - integrationstatus - modifiedonbehalfby + lk_recyclebinconfig_modifiedby + modifiedby + recyclebinconfig + modifiedby 0 - 2bde9a7f-5083-4509-9b22-7dc2e44789ca + 09e19116-daba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_routingrule_modifiedby + lk_recyclebinconfig_modifiedonbehalfby None - 6.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -328407,27 +377983,27 @@ false systemuserid systemuser - lk_routingrule_modifiedby - modifiedby - routingrule - modifiedby + lk_recyclebinconfig_modifiedonbehalfby + modifiedonbehalfby + recyclebinconfig + modifiedonbehalfby 0 - 768b734e-42a0-4a52-8a49-3e5d0e366293 + ebad9416-6ad3-4b65-9211-ca0b74aafa32 false false iscustomizable - true + false true true - lk_mobileofflineprofileitem_createdonbehalfby + lk_businessunitnewsarticle_modifiedonbehalfby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -328461,27 +378037,27 @@ false systemuserid systemuser - lk_mobileofflineprofileitem_createdonbehalfby - createdonbehalfby - mobileofflineprofileitem - createdonbehalfby + lk_businessunitnewsarticle_modifiedonbehalfby + modifiedonbehalfby + businessunitnewsarticle + modifiedonbehalfby 0 - 46ba8cef-af55-41e0-9d70-5189522451e9 + a9081817-92cc-46c3-ab1d-61819eb2d819 false false iscustomizable - true + false true true - lk_fax_createdonbehalfby + lk_routingrule_modifiedonbehalfby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -328515,25 +378091,25 @@ false systemuserid systemuser - lk_fax_createdonbehalfby - createdonbehalfby - fax - createdonbehalfby_fax + lk_routingrule_modifiedonbehalfby + modifiedonbehalfby + routingrule + modifiedonbehalfby 0 - fcc91f03-5f23-451f-a229-1fadd004445d + 38434917-d6b5-4c6d-a992-97ebbc656e36 false false iscustomizable - false + true true - false - lk_timezonedefinition_modifiedby + true + lk_queueitem_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -328569,30 +378145,30 @@ false systemuserid systemuser - lk_timezonedefinition_modifiedby - modifiedby - timezonedefinition - modifiedby + lk_queueitem_modifiedonbehalfby + modifiedonbehalfby + queueitem + modifiedonbehalfby 0 - 6d9ad861-57db-4f04-801d-6651abcd50c2 + 07a57a17-b5fc-e611-80d4-00155d42b26e false false iscustomizable - false + true true true - lk_reportvisibilitybase_modifiedby + lk_suggestioncardtemplate_createdby None - 5.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -328623,30 +378199,30 @@ false systemuserid systemuser - lk_reportvisibilitybase_modifiedby - modifiedby - reportvisibility - modifiedby + lk_suggestioncardtemplate_createdby + createdby + suggestioncardtemplate + createdby 0 - 1e1a059b-d005-410a-8b12-558e3a757955 + 0da57a17-b5fc-e611-80d4-00155d42b26e false false iscustomizable - false + true true - false - lk_columnmapping_createdby + true + lk_suggestioncardtemplate_createdonbehalfby None - 5.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -328677,15 +378253,15 @@ false systemuserid systemuser - lk_columnmapping_createdby - createdby - columnmapping - createdby + lk_suggestioncardtemplate_createdonbehalfby + createdonbehalfby + suggestioncardtemplate + createdonbehalfby 0 - 902bca6f-b4a7-4bf6-924f-bd6990388f5b + 13a57a17-b5fc-e611-80d4-00155d42b26e false @@ -328695,12 +378271,12 @@ true true - lk_reportcategorybase_modifiedby + lk_suggestioncardtemplate_modifiedby None - 5.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -328731,15 +378307,15 @@ false systemuserid systemuser - lk_reportcategorybase_modifiedby + lk_suggestioncardtemplate_modifiedby modifiedby - reportcategory + suggestioncardtemplate modifiedby 0 - 480fba7c-106a-4f6f-9656-64fa09538fc6 + 19a57a17-b5fc-e611-80d4-00155d42b26e false @@ -328749,12 +378325,12 @@ true true - lk_sharepointsitebase_createdonbehalfby + lk_suggestioncardtemplate_modifiedonbehalfby None - 5.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -328785,15 +378361,15 @@ false systemuserid systemuser - lk_sharepointsitebase_createdonbehalfby - createdonbehalfby - sharepointsite - createdonbehalfby + lk_suggestioncardtemplate_modifiedonbehalfby + modifiedonbehalfby + suggestioncardtemplate + modifiedonbehalfby 0 - cb03bf55-4fa9-4d34-a340-8566204544e8 + 36840a18-ac7a-46f8-a52e-f494202028c6 false @@ -328802,8 +378378,8 @@ false true - true - lk_workflowlog_modifiedby + false + lk_importbase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -328839,27 +378415,27 @@ false systemuserid systemuser - lk_workflowlog_modifiedby + lk_importbase_modifiedby modifiedby - workflowlog + import modifiedby 0 - afe85972-a3b0-49d0-9bed-b41f2dc4721b + 5b653318-0d2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable - false + true - true - false - lk_syncerrorbase_createdonbehalfby + false + true + lk_uxagentcomponent_createdby None - 8.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -328893,27 +378469,135 @@ false systemuserid systemuser - lk_syncerrorbase_createdonbehalfby + lk_uxagentcomponent_createdby + createdby + uxagentcomponent + createdby + + 0 + + + 61653318-0d2f-f111-88b5-7c1e5287d1d8 + + false + + true + iscustomizable + true + + false + true + lk_uxagentcomponent_createdonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_uxagentcomponent_createdonbehalfby createdonbehalfby - syncerror + uxagentcomponent createdonbehalfby 0 - b84faff0-ae76-44f1-95ca-ebfe66d1cd2f + 67653318-0d2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable - false + true - true - false - lk_bulkdeleteoperation_modifiedonbehalfby + false + true + lk_uxagentcomponent_modifiedby None - 5.0.0.0 + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_uxagentcomponent_modifiedby + modifiedby + uxagentcomponent + modifiedby + + 0 + + + 6d653318-0d2f-f111-88b5-7c1e5287d1d8 + + false + + true + iscustomizable + true + + false + true + lk_uxagentcomponent_modifiedonbehalfby + None + 1.0 OneToManyRelationship DoNotDisplay @@ -328947,27 +378631,27 @@ false systemuserid systemuser - lk_bulkdeleteoperation_modifiedonbehalfby + lk_uxagentcomponent_modifiedonbehalfby modifiedonbehalfby - bulkdeleteoperation + uxagentcomponent modifiedonbehalfby 0 - 0d1fb230-925e-4bc4-b394-1a5dfceeeb48 + 7f653318-0d2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable - false + true - true + false true - lk_serviceendpointbase_createdonbehalfby + user_uxagentcomponent None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -329001,15 +378685,15 @@ false systemuserid systemuser - lk_serviceendpointbase_createdonbehalfby - createdonbehalfby - serviceendpoint - createdonbehalfby + user_uxagentcomponent + owninguser + uxagentcomponent + owninguser 0 - 8d9edfc6-0ae5-43a8-b9b9-36555fba5f17 + 74e74718-35a4-439a-bea6-b7d686770b38 false @@ -329019,9 +378703,9 @@ true true - lk_solutioncomponentbase_createdonbehalfby + lk_actioncardbase_createdby None - 5.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -329055,27 +378739,27 @@ false systemuserid systemuser - lk_solutioncomponentbase_createdonbehalfby - createdonbehalfby - solutioncomponent - createdonbehalfby + lk_actioncardbase_createdby + createdby + actioncard + createdby 0 - 8b542b51-81bb-4598-9025-9d6914188959 + 84806818-b775-4eff-bb0e-370a1fc6bbd9 false false iscustomizable - false + true true - false - lk_plugintype_modifiedonbehalfby + true + lk_translationprocess_modifiedby None - 5.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -329109,15 +378793,15 @@ false systemuserid systemuser - lk_plugintype_modifiedonbehalfby - modifiedonbehalfby - plugintype - modifiedonbehalfby + lk_translationprocess_modifiedby + modifiedby + translationprocess + modifiedbyname 0 - 6ef27883-ceb0-4ba4-be28-51d54b16976f + 91f2d618-23c9-416c-8e33-5c09cf220581 false @@ -329126,10 +378810,10 @@ false true - false - lk_lookupmapping_modifiedonbehalfby + true + lk_routingruleitem_modifiedonbehalfby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -329163,25 +378847,25 @@ false systemuserid systemuser - lk_lookupmapping_modifiedonbehalfby + lk_routingruleitem_modifiedonbehalfby modifiedonbehalfby - lookupmapping + routingruleitem modifiedonbehalfby 0 - c2e6662c-e8ae-4efe-af55-ca125268e8ec + d628e318-439a-4f07-813a-72f848be8c16 false false iscustomizable - true + false true - true - lk_phonecall_modifiedby + false + lk_userfiscalcalendar_createdby None 5.0.0.0 OneToManyRelationship @@ -329217,27 +378901,27 @@ false systemuserid systemuser - lk_phonecall_modifiedby - modifiedby - phonecall - modifiedby_phonecall + lk_userfiscalcalendar_createdby + createdby + userfiscalcalendar + createdby 0 - 72d0a3ff-46bb-42d6-839a-7ce30f54ef1d + 47b80419-7b4b-f111-bec6-70a8a57b90dc false - false + true iscustomizable true - true + false true - lk_slabase_modifiedby + lk_msdyn_rtestructuredtemplateconfig_createdby None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -329271,27 +378955,27 @@ false systemuserid systemuser - lk_slabase_modifiedby - modifiedby - sla - modifiedby + lk_msdyn_rtestructuredtemplateconfig_createdby + createdby + msdyn_rtestructuredtemplateconfig + createdby 0 - 4a2bae3b-f5d1-43b1-817d-28715b434b65 + 4db80419-7b4b-f111-bec6-70a8a57b90dc false - false + true iscustomizable true - true + false true - lk_untrackedemail_createdby + lk_msdyn_rtestructuredtemplateconfig_createdonbehalfby None - 8.2.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -329325,27 +379009,27 @@ false systemuserid systemuser - lk_untrackedemail_createdby - createdby - untrackedemail - createdby_untrackedemail + lk_msdyn_rtestructuredtemplateconfig_createdonbehalfby + createdonbehalfby + msdyn_rtestructuredtemplateconfig + createdonbehalfby 0 - c42f0e0c-767c-4571-b57e-832db27f1e21 + 53b80419-7b4b-f111-bec6-70a8a57b90dc false - false + true iscustomizable - false + true - true + false true - lk_workflowlog_modifiedonbehalfby + lk_msdyn_rtestructuredtemplateconfig_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -329379,27 +379063,27 @@ false systemuserid systemuser - lk_workflowlog_modifiedonbehalfby - modifiedonbehalfby - workflowlog - modifiedonbehalfby + lk_msdyn_rtestructuredtemplateconfig_modifiedby + modifiedby + msdyn_rtestructuredtemplateconfig + modifiedby 0 - 74b14c00-2b5d-4c8a-bb8f-a7309e535e77 + 59b80419-7b4b-f111-bec6-70a8a57b90dc false - false + true iscustomizable - false + true - true - false - lk_importfilebase_createdonbehalfby + false + true + lk_msdyn_rtestructuredtemplateconfig_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -329433,27 +379117,27 @@ false systemuserid systemuser - lk_importfilebase_createdonbehalfby - createdonbehalfby - importfile - createdonbehalfby + lk_msdyn_rtestructuredtemplateconfig_modifiedonbehalfby + modifiedonbehalfby + msdyn_rtestructuredtemplateconfig + modifiedonbehalfby 0 - a47b9ba1-b011-4861-ba8c-04cc4a77e131 + 6bb80419-7b4b-f111-bec6-70a8a57b90dc false - false + true iscustomizable - false + true - true + false true - lk_fieldsecurityprofile_createdonbehalfby + user_msdyn_rtestructuredtemplateconfig None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -329487,15 +379171,15 @@ false systemuserid systemuser - lk_fieldsecurityprofile_createdonbehalfby - createdonbehalfby - fieldsecurityprofile - createdonbehalfby + user_msdyn_rtestructuredtemplateconfig + owninguser + msdyn_rtestructuredtemplateconfig + owninguser 0 - b5e0f849-6721-4786-a9b4-f973aaf8ace0 + d3034a19-f56b-49f1-91f5-9b6cc9e7f5b8 false @@ -329504,13 +379188,13 @@ false true - false - lk_importmapbase_createdby + true + lk_customcontrol_createdonbehalfby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -329541,15 +379225,15 @@ false systemuserid systemuser - lk_importmapbase_createdby - createdby - importmap - createdby + lk_customcontrol_createdonbehalfby + createdonbehalfby + customcontrol + createdonbehalfby 0 - a2074306-5950-458c-a99e-5b6a122b6e27 + a62e6e19-555a-4057-8729-62b953b85c8a false @@ -329559,9 +379243,9 @@ true true - createdby_relationship_role + lk_actioncardbase_modifiedonbehalfby None - 5.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -329595,15 +379279,15 @@ false systemuserid systemuser - createdby_relationship_role - createdby - relationshiprole - createdby + lk_actioncardbase_modifiedonbehalfby + modifiedonbehalfby + actioncard + modifiedonbehalfby 0 - 1c85f76b-6311-11e0-834f-1cc1de634cfe + 39897219-5bca-424b-9251-f408751af91f false @@ -329612,13 +379296,13 @@ false true - true - lk_PostFollow_createdby + false + OwnerMapping_SystemUser None 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -329649,15 +379333,15 @@ false systemuserid systemuser - lk_PostFollow_createdby - createdby - postfollow - createdby + OwnerMapping_SystemUser + targetsystemuserid + ownermapping + targetsystemuserid 0 - 4e5b6fd0-6567-11e0-834f-1cc1de634cfe + bb549019-c920-4eb7-8133-ea84f746ebc3 false @@ -329666,13 +379350,13 @@ false true - true - systemuser_PostFollows + false + createdby_sdkmessagerequest None 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -329703,27 +379387,27 @@ false systemuserid systemuser - systemuser_PostFollows - regardingobjectid - postfollow - regardingobjectid_systemuser + createdby_sdkmessagerequest + createdby + sdkmessagerequest + createdby 0 - a9c47cb1-657d-11e0-834f-1cc1de634cfe + 2bfbcf1a-b5ba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true - false - systemuser_PostRegardings - None - 5.0.0.0 + true + user_userauthztracker + Append + 9.1.0.0 OneToManyRelationship UseCollectionName @@ -329732,7 +379416,7 @@ - + 10000 true false @@ -329743,7 +379427,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -329757,30 +379441,30 @@ false systemuserid systemuser - systemuser_PostRegardings - regardingobjectid - postregarding - regardingobjectid_systemuser + user_userauthztracker + systemuserid + systemuserauthorizationchangetracker + systemuserid_userauthztracker - 0 + 1 - 3163fd00-60aa-11e0-834f-1cc1de634cfe + 3718e21a-ee3b-4c33-a0f6-25d9599e1871 false false iscustomizable - false + true true - false - systemuser_PostRoles + true + lk_mobileofflineprofileitemassociation_modifiedby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -329811,15 +379495,15 @@ false systemuserid systemuser - systemuser_PostRoles - regardingobjectid - postrole - regardingobjectid_systemuser + lk_mobileofflineprofileitemassocaition_modifiedby + modifiedby + mobileofflineprofileitemassociation + modifiedby 0 - 32f9635a-b055-e011-a288-00155d9d3c05 + 5227f21a-1487-4599-ae3e-4feba593a961 false @@ -329828,13 +379512,13 @@ false true - true - lk_post_createdby + false + lk_DisplayStringbase_createdby None 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -329865,15 +379549,15 @@ false systemuserid systemuser - lk_post_createdby + lk_DisplayStringbase_createdby createdby - post + displaystring createdby 0 - 38f9635a-b055-e011-a288-00155d9d3c05 + fab1a81b-ea4b-4577-b6a6-a690c321e9d5 false @@ -329883,12 +379567,12 @@ true true - lk_post_createdonbehalfby + lk_socialinsightsconfiguration_modifiedonbehalfby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -329919,15 +379603,15 @@ false systemuserid systemuser - lk_post_createdonbehalfby - createdonbehalfby - post - createdonbehalfby + lk_socialinsightsconfiguration_modifiedonbehalfby + modifiedonbehalfby + socialinsightsconfiguration + modifiedonbehalfby 0 - 3ef9635a-b055-e011-a288-00155d9d3c05 + 9295f91b-06b5-4c1a-9be5-7b051f28d50e false @@ -329936,13 +379620,13 @@ false true - true - lk_post_modifiedby + false + lk_userapplicationmetadata_modifiedby None - 5.0.0.0 + 6.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -329973,30 +379657,30 @@ false systemuserid systemuser - lk_post_modifiedby + lk_userapplicationmetadata_modifiedby modifiedby - post + userapplicationmetadata modifiedby 0 - d7f510dc-7931-11e0-a0f5-1cc1de634cfe + a482b31c-f9cc-4989-a087-6800cc438f39 false false iscustomizable - false + true true - false - lk_postcomment_createdby + true + lk_socialinsightsconfiguration_modifiedby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -330027,30 +379711,30 @@ false systemuserid systemuser - lk_postcomment_createdby - createdby - postcomment - createdby + lk_socialinsightsconfiguration_modifiedby + modifiedby + socialinsightsconfiguration + modifiedby 0 - ec209eda-7f48-11e0-a0f5-1cc1de634cfe + b5fab61c-cfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - user_owner_postfollows + lk_virtualentitymetadata_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -330081,30 +379765,30 @@ false systemuserid systemuser - user_owner_postfollows - owninguser - postfollow - owninguser + lk_virtualentitymetadata_createdby + createdby + virtualentitymetadata + createdby 0 - 4438bd66-785f-11e0-a0f5-1cc1de634cfe + bbfab61c-cfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_postfollow_createdonbehalfby + lk_virtualentitymetadata_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -330135,30 +379819,30 @@ false systemuserid systemuser - lk_postfollow_createdonbehalfby + lk_virtualentitymetadata_createdonbehalfby createdonbehalfby - postfollow + virtualentitymetadata createdonbehalfby 0 - d55e8c28-7860-11e0-a0f5-1cc1de634cfe + c1fab61c-cfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_postcomment_createdonbehalfby + false + true + lk_virtualentitymetadata_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -330189,30 +379873,30 @@ false systemuserid systemuser - lk_postcomment_createdonbehalfby - createdonbehalfby - postcomment - createdonbehalfby + lk_virtualentitymetadata_modifiedby + modifiedby + virtualentitymetadata + modifiedby 0 - 23d93dd9-7863-11e0-a0f5-1cc1de634cfe + c7fab61c-cfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_postlike_createdonbehalfby + lk_virtualentitymetadata_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -330243,30 +379927,30 @@ false systemuserid systemuser - lk_postlike_createdonbehalfby - createdonbehalfby - postlike - createdonbehalfby + lk_virtualentitymetadata_modifiedonbehalfby + modifiedonbehalfby + virtualentitymetadata + modifiedonbehalfby 0 - 944a6577-777c-11e0-a0f5-1cc1de634cfe + 3499b91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_postlike_createdby + lk_processorregistration_createdby None - 5.0.0.0 + 1.0.0.3 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -330297,27 +379981,27 @@ false systemuserid systemuser - lk_postlike_createdby + lk_processorregistration_createdby createdby - postlike + processorregistration createdby 0 - 38434917-d6b5-4c6d-a992-97ebbc656e36 + 3a99b91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_queueitem_modifiedonbehalfby + lk_processorregistration_createdonbehalfby None - 5.0.0.0 + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -330351,27 +380035,27 @@ false systemuserid systemuser - lk_queueitem_modifiedonbehalfby - modifiedonbehalfby - queueitem - modifiedonbehalfby + lk_processorregistration_createdonbehalfby + createdonbehalfby + processorregistration + createdonbehalfby 0 - 5953b312-aca6-4546-b00d-c9c166b378ff + 4099b91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_socialactivity + lk_processorregistration_modifiedby None - 6.1.0.0 + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -330405,27 +380089,81 @@ false systemuserid systemuser - user_socialactivity - owninguser - socialactivity - owninguser_socialactivity + lk_processorregistration_modifiedby + modifiedby + processorregistration + modifiedby 0 - f78254f0-a4c5-4b94-8993-a2de4c935fea + 4699b91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_translationprocess_createdonbehalfby + lk_processorregistration_modifiedonbehalfby None - 8.2.0.0 + 1.0.0.3 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_processorregistration_modifiedonbehalfby + modifiedonbehalfby + processorregistration + modifiedonbehalfby + + 0 + + + 5899b91c-f6ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + user_processorregistration + None + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -330459,27 +380197,27 @@ false systemuserid systemuser - lk_translationprocess_createdonbehalfby - createdonbehalfby - translationprocess - createdonbehalfbyname + user_processorregistration + owninguser + processorregistration + owninguser 0 - 93ca5bee-c468-4ef2-90ec-ce19436a5dc2 + 129ab91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_sdkmessageprocessingstepsecureconfig_modifiedonbehalfby + false + true + lk_signal_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -330513,81 +380251,27 @@ false systemuserid systemuser - lk_sdkmessageprocessingstepsecureconfig_modifiedonbehalfby - modifiedonbehalfby - sdkmessageprocessingstepsecureconfig - modifiedonbehalfby + lk_signal_createdby + createdby + signal + createdby 0 - ef345810-0e20-429f-85a0-7c47dcc52280 + 189ab91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_feedback_modifiedonbehalfby - None - 8.1.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_feedback_modifiedonbehalfby - modifiedonbehalfby - feedback - ModifiedOnBehalfBy - - 0 - - - 4a39c8f8-3beb-46d2-8f00-92dfa97a8db8 - - false - - false - iscustomizable - false - - true - false - lk_applicationfile_createdonbehalfby + lk_signal_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -330621,27 +380305,27 @@ false systemuserid systemuser - lk_applicationfile_createdonbehalfby + lk_signal_createdonbehalfby createdonbehalfby - applicationfile + signal createdonbehalfby 0 - 8067a343-e3f8-47eb-adfd-20fab9b020e4 + 1e9ab91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_workflowlog_createdonbehalfby + lk_signal_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -330675,27 +380359,27 @@ false systemuserid systemuser - lk_workflowlog_createdonbehalfby - createdonbehalfby - workflowlog - createdonbehalfby + lk_signal_modifiedby + modifiedby + signal + modifiedby 0 - 15d0a81e-467c-4cf4-a3c0-146b821b6bd9 + 259ab91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_role_createdonbehalfby + lk_signal_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -330729,27 +380413,27 @@ false systemuserid systemuser - lk_role_createdonbehalfby - createdonbehalfby - role - createdonbehalfby + lk_signal_modifiedonbehalfby + modifiedonbehalfby + signal + modifiedonbehalfby 0 - abd54ad9-63ee-4817-89b0-f9f566c04d54 + 379ab91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_transactioncurrency_modifiedonbehalfby + user_signal None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -330783,27 +380467,27 @@ false systemuserid systemuser - lk_transactioncurrency_modifiedonbehalfby - modifiedonbehalfby - transactioncurrency - modifiedonbehalfby + user_signal + owninguser + signal + owninguser 0 - 0f8590ea-8b46-466e-b83a-2642d396b3cb + 9d9ab91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_rolebase_modifiedby + lk_signalregistration_createdby None - 5.0.0.0 + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -330837,30 +380521,30 @@ false systemuserid systemuser - lk_rolebase_modifiedby - modifiedby - role - modifiedby + lk_signalregistration_createdby + createdby + signalregistration + createdby 0 - 70500f38-b9a3-4c9a-84bd-bc66cfebc420 + a49ab91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_navigationsetting_createdby + lk_signalregistration_createdonbehalfby None - 9.0.0.0 + 1.0.0.3 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -330891,27 +380575,27 @@ false systemuserid systemuser - systemuser_navigationsetting_createdby - createdby - navigationsetting - navigationsetting_createdby + lk_signalregistration_createdonbehalfby + createdonbehalfby + signalregistration + createdonbehalfby 0 - 62756db7-3435-4e38-be42-631fa3aee9bd + aa9ab91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_subject_modifiedonbehalfby + lk_signalregistration_modifiedby None - 5.0.0.0 + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -330945,27 +380629,27 @@ false systemuserid systemuser - lk_subject_modifiedonbehalfby - modifiedonbehalfby - subject - modifiedonbehalfby + lk_signalregistration_modifiedby + modifiedby + signalregistration + modifiedby 0 - e2e45aec-7492-4a5d-aa99-2533567642eb + b19ab91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_duplicaterule_modifiedonbehalfby + false + true + lk_signalregistration_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -330999,27 +380683,27 @@ false systemuserid systemuser - lk_duplicaterule_modifiedonbehalfby + lk_signalregistration_modifiedonbehalfby modifiedonbehalfby - duplicaterule + signalregistration modifiedonbehalfby 0 - 99e08986-2a02-4802-973c-e4243e834d8c + c39ab91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_task_modifiedonbehalfby + user_signalregistration None - 5.0.0.0 + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -331053,15 +380737,15 @@ false systemuserid systemuser - lk_task_modifiedonbehalfby - modifiedonbehalfby - task - modifiedonbehalfby_task + user_signalregistration + owninguser + signalregistration + owninguser 0 - ea601858-3f94-4a9f-986b-6012fb2a38ab + 52a3651d-1707-443b-8add-6d024be3b544 false @@ -331071,7 +380755,7 @@ true true - lk_subjectbase_modifiedby + lk_importjobbase_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -331107,15 +380791,15 @@ false systemuserid systemuser - lk_subjectbase_modifiedby - modifiedby - subject - modifiedby + lk_importjobbase_modifiedonbehalfby + modifiedonbehalfby + importjob + modifiedonbehalfby 0 - 4d6f36eb-8f6e-4554-968d-50c1346e0876 + 67fd6e1d-1576-40f9-821a-a0b852171aac false @@ -331125,12 +380809,12 @@ true true - lk_relationshiprole_modifiedonbehalfby + lk_convertrule_createdby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -331161,27 +380845,27 @@ false systemuserid systemuser - lk_relationshiprole_modifiedonbehalfby - modifiedonbehalfby - relationshiprole - modifiedonbehalfby + lk_convertrule_createdby + createdby + convertrule + createdby 0 - b10bb90e-5f11-4e27-a5f2-f6d357e1e7b4 + 408f891d-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_mailboxtrackingfolder_modifiedby + flowmachinegroup_PasswordChangedBy None - 7.1.0.0 + 1.3.8.0 OneToManyRelationship UseCollectionName @@ -331190,7 +380874,7 @@ - + 10000 true false @@ -331201,7 +380885,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -331215,36 +380899,36 @@ false systemuserid systemuser - lk_mailboxtrackingfolder_modifiedby - modifiedby - mailboxtrackingfolder - modifiedby + flowmachinegroup_PasswordChangedBy + passwordchangedby + flowmachinegroup + PasswordChangedBy 0 - ce1b7435-85dc-45ca-85e8-53ddcf65576a + 488f891d-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_sdkmessageresponsefield_modifiedonbehalfby + false + true + flowmachinegroup_RotationStartedBy None - 5.0.0.0 + 1.3.8.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true false @@ -331255,7 +380939,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -331269,25 +380953,25 @@ false systemuserid systemuser - lk_sdkmessageresponsefield_modifiedonbehalfby - modifiedonbehalfby - sdkmessageresponsefield - modifiedonbehalfby + flowmachinegroup_RotationStartedBy + rotationstartedby + flowmachinegroup + RotationStartedBy 0 - 0d6591e1-b479-4df6-b405-6890fa95fd56 + 2074fc1d-84a2-48ac-a47c-fcf1d249a052 false false iscustomizable - false + true true - false - modifiedby_sdkmessageresponse + true + lk_accountbase_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -331323,15 +381007,15 @@ false systemuserid systemuser - modifiedby_sdkmessageresponse - modifiedby - sdkmessageresponse - modifiedby + lk_accountbase_modifiedonbehalfby + modifiedonbehalfby + account + modifiedonbehalfby 0 - 94dbb921-33e2-4cb4-a445-5655b1b33560 + 44091b1e-b70e-432b-ad13-3481315da20a false @@ -331340,10 +381024,10 @@ false true - false - impersonatinguserid_sdkmessageprocessingstep + true + lk_socialinsightsconfiguration_createdonbehalfby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -331377,25 +381061,25 @@ false systemuserid systemuser - impersonatinguserid_sdkmessageprocessingstep - impersonatinguserid - sdkmessageprocessingstep - impersonatinguserid + lk_socialinsightsconfiguration_createdonbehalfby + createdonbehalfby + socialinsightsconfiguration + createdonbehalfby 0 - 754355ac-362a-4644-b8d8-0ca9b7f76382 + c491631e-cb92-4932-9cf0-cb3b55358c24 false false iscustomizable - true + false true - true - lk_kbarticle_createdonbehalfby + false + lk_organizationbase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -331431,15 +381115,15 @@ false systemuserid systemuser - lk_kbarticle_createdonbehalfby - createdonbehalfby - kbarticle - createdonbehalfby + lk_organizationbase_modifiedby + modifiedby + organization + modifiedby 0 - 98a844c4-6621-461e-bdce-10a33e01def8 + 15d0a81e-467c-4cf4-a3c0-146b821b6bd9 false @@ -331449,7 +381133,7 @@ true true - lk_calendar_createdonbehalfby + lk_role_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -331485,15 +381169,15 @@ false systemuserid systemuser - lk_calendar_createdonbehalfby + lk_role_createdonbehalfby createdonbehalfby - calendar + role createdonbehalfby 0 - 33c78994-2e02-4f2c-9f5d-b95416c6578d + 559bb41e-19ad-469e-8ab7-a8870caebc38 false @@ -331503,9 +381187,9 @@ true true - lk_businessunitnewsarticlebase_modifiedby + lk_routingrule_createdby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -331539,15 +381223,15 @@ false systemuserid systemuser - lk_businessunitnewsarticlebase_modifiedby - modifiedby - businessunitnewsarticle - modifiedby + lk_routingrule_createdby + createdby + routingrule + createdby 0 - 2c006c0a-b322-4def-8608-6b2d25386c9c + 17270d1f-905e-4f62-afbf-066fc60ba4bf false @@ -331556,13 +381240,13 @@ false true - false - createdby_expanderevent + true + SystemUser_ExternalPartyItems None - 9.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -331571,7 +381255,7 @@ true - false + true 00000000-0000-0000-0000-000000000000 @@ -331579,7 +381263,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -331593,15 +381277,15 @@ false systemuserid systemuser - createdby_expanderevent - createdby - expanderevent - createdby + SystemUser_ExternalPartyItems + regardingobjectid + externalpartyitem + regardingobjectid_systemuser 0 - 4117c6b9-8fe5-4945-8c06-4f6791e2d554 + 328e2d1f-4611-42b0-bcb3-20fc974f2968 false @@ -331610,8 +381294,8 @@ false true - false - lk_internaladdress_createdonbehalfby + true + lk_userqueryvisualizationbase_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -331647,30 +381331,30 @@ false systemuserid systemuser - lk_internaladdress_createdonbehalfby + lk_userqueryvisualizationbase_createdonbehalfby createdonbehalfby - internaladdress + userqueryvisualization createdonbehalfby 0 - 5bb23639-318f-4368-ace0-0f154b4ebaf1 + a182611f-e096-4b2c-ad0a-1a864d18cd09 false false iscustomizable - false + true true - false - userentityinstancedata_systemuser + true + lk_callbackregistration_createdonbehalfby None - 5.0.0.0 + 9.0.2.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -331701,25 +381385,25 @@ false systemuserid systemuser - userentityinstancedata_systemuser - objectid - userentityinstancedata - objectid_systemuser + systemuser_callbackregistration_createdonbehalfby + createdonbehalfby + callbackregistration + callbackregistration_createdonbehalfby 0 - db7c780e-3dd9-46cd-af80-d30d20a90637 + b7e3811f-babd-4f3e-84e9-ae0df94d5ea3 false false iscustomizable - false + true true - false - user_userqueryvisualizations + true + lk_teambase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -331755,69 +381439,15 @@ false systemuserid systemuser - user_userqueryvisualizations - owninguser - userqueryvisualization - owninguser - - 0 - - - 5d565348-e7bb-4f83-9443-593a1591256e - - false - - false - iscustomizable - false - - true - false - lk_tracelog_createdonbehalfby - None - 6.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_tracelog_createdonbehalfby - createdonbehalfby - tracelog - createdonbehalfby + lk_teambase_modifiedby + modifiedby + team + modifiedby 0 - 20f58afc-2af5-4a78-ab3f-361f09a96ce1 + ea7a8e1f-1b82-4de7-8b56-d8d862720633 false @@ -331827,7 +381457,7 @@ true true - lk_queueitembase_workerid + lk_queuebase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -331863,81 +381493,27 @@ false systemuserid systemuser - lk_queueitembase_workerid - workerid - queueitem - workerid_systemuser + lk_queuebase_modifiedby + modifiedby + queue + modifiedby 0 - 0b429ed2-c08a-41d5-a212-68784205b2c4 + 9290b11f-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - modifiedonbehalfby_attributemap - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - modifiedonbehalfby_attributemap - modifiedonbehalfby - attributemap - modifiedonbehalfby - - 0 - - - 29a9d27f-89b2-4266-b9ab-c45d57ec4c18 - - false - - false - iscustomizable - true - - true + false true - lk_mobileofflineprofileitem_modifiedby + lk_msdyn_aibfeedbackloop_createdby None - 8.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -331971,27 +381547,27 @@ false systemuserid systemuser - lk_mobileofflineprofileitem_modifiedby - modifiedby - mobileofflineprofileitem - modifiedby + lk_msdyn_aibfeedbackloop_createdby + createdby + msdyn_aibfeedbackloop + createdby 0 - 1252d1f8-1f71-44ad-89ae-a280e9578335 + 9890b11f-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_customeraddressbase_modifiedby + lk_msdyn_aibfeedbackloop_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -332025,27 +381601,27 @@ false systemuserid systemuser - lk_customeraddressbase_modifiedby - modifiedby - customeraddress - modifiedby + lk_msdyn_aibfeedbackloop_createdonbehalfby + createdonbehalfby + msdyn_aibfeedbackloop + createdonbehalfby 0 - 8b0d3135-26b2-4811-870d-9376860e6b8c + 9e90b11f-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_activitypointer_modifiedby + lk_msdyn_aibfeedbackloop_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -332079,27 +381655,27 @@ false systemuserid systemuser - lk_activitypointer_modifiedby + lk_msdyn_aibfeedbackloop_modifiedby modifiedby - activitypointer + msdyn_aibfeedbackloop modifiedby 0 - c1d6f984-49e5-4541-b7da-429c374043ff + a490b11f-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_customeraddressbase_createdby + lk_msdyn_aibfeedbackloop_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -332133,27 +381709,27 @@ false systemuserid systemuser - lk_customeraddressbase_createdby - createdby - customeraddress - createdby + lk_msdyn_aibfeedbackloop_modifiedonbehalfby + modifiedonbehalfby + msdyn_aibfeedbackloop + modifiedonbehalfby 0 - 7a2ea667-43ba-4048-8c8a-6725706b7d45 + b690b11f-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - createdby_sdkmessageresponse + false + true + user_msdyn_aibfeedbackloop None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -332187,15 +381763,15 @@ false systemuserid systemuser - createdby_sdkmessageresponse - createdby - sdkmessageresponse - createdby + user_msdyn_aibfeedbackloop + owninguser + msdyn_aibfeedbackloop + owninguser 0 - b5ab1722-e4d7-4fab-9403-cdc6ca282beb + b8ed0320-4ed3-4053-b4e5-094ea795e8b9 false @@ -332205,9 +381781,9 @@ true false - lk_syncerrorbase_modifiedonbehalfby + lk_monthlyfiscalcalendar_modifiedonbehalfby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -332241,15 +381817,15 @@ false systemuserid systemuser - lk_syncerrorbase_modifiedonbehalfby + lk_monthlyfiscalcalendar_modifiedonbehalfby modifiedonbehalfby - syncerror + monthlyfiscalcalendar modifiedonbehalfby 0 - 450d11f7-74b1-40fa-a1fb-522f1c2fe12c + b3c71d20-4346-44d9-877b-efa259c4d705 false @@ -332259,7 +381835,7 @@ true false - SystemUser_BulkDeleteFailures + lk_sdkmessagefilter_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -332295,15 +381871,15 @@ false systemuserid systemuser - SystemUser_BulkDeleteFailures - regardingobjectid - bulkdeletefailure - regardingobjectid_systemuser + lk_sdkmessagefilter_modifiedonbehalfby + modifiedonbehalfby + sdkmessagefilter + modifiedonbehalfby 0 - b7e3811f-babd-4f3e-84e9-ae0df94d5ea3 + 02640d21-fd4b-4ee2-9c2b-df19e0fa839d false @@ -332313,9 +381889,9 @@ true true - lk_teambase_modifiedby + lk_slaitembase_modifiedby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -332349,15 +381925,15 @@ false systemuserid systemuser - lk_teambase_modifiedby + lk_slaitembase_modifiedby modifiedby - team + slaitem modifiedby 0 - 14231bcc-6197-4bce-8ccb-e3594c18e4bb + 20dc2221-854d-4ffc-8d2c-2ca7c6a1dfe4 false @@ -332366,62 +381942,8 @@ false true - true - workflow_createdby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - workflow_createdby - createdby - workflow - createdby - - 0 - - - 8286d8ca-2ef7-4e37-8985-aa992258b5bd - - false - - false - iscustomizable - true - - true - true - lk_queue_modifiedonbehalfby + false + lk_timezonerule_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -332457,25 +381979,25 @@ false systemuserid systemuser - lk_queue_modifiedonbehalfby - modifiedonbehalfby - queue - modifiedonbehalfby + lk_timezonerule_createdonbehalfby + createdonbehalfby + timezonerule + createdonbehalfby 0 - 988acff6-d8c0-4b52-8eec-155c04fce9c9 + 12c79e21-b9da-4489-9139-aa4f287243f7 false false iscustomizable - true + false true true - lk_customeraddress_modifiedonbehalfby + lk_annotationbase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -332511,15 +382033,15 @@ false systemuserid systemuser - lk_customeraddress_modifiedonbehalfby - modifiedonbehalfby - customeraddress - modifiedonbehalfby + lk_annotationbase_modifiedby + modifiedby + annotation + modifiedby 0 - b5b24ac4-6da6-4250-afa3-ff818a57beed + 94dbb921-33e2-4cb4-a445-5655b1b33560 false @@ -332528,8 +382050,8 @@ false true - true - workflow_dependency_createdonbehalfby + false + impersonatinguserid_sdkmessageprocessingstep None 5.0.0.0 OneToManyRelationship @@ -332565,15 +382087,15 @@ false systemuserid systemuser - workflow_dependency_createdonbehalfby - createdonbehalfby - workflowdependency - createdonbehalfby + impersonatinguserid_sdkmessageprocessingstep + impersonatinguserid + sdkmessageprocessingstep + impersonatinguserid 0 - 8057c0b9-c3f3-45f3-9f29-517551f5392f + b5ab1722-e4d7-4fab-9403-cdc6ca282beb false @@ -332582,10 +382104,10 @@ false true - true - lk_syncattributemappingprofile_createdonbehalfby + false + lk_syncerrorbase_modifiedonbehalfby None - 7.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -332619,27 +382141,27 @@ false systemuserid systemuser - lk_syncattributemappingprofile_createdonbehalfby - createdonbehalfby - syncattributemappingprofile - createdonbehalfby + lk_syncerrorbase_modifiedonbehalfby + modifiedonbehalfby + syncerror + modifiedonbehalfby 0 - 110555fd-6f54-4f36-9366-7eac1ab381d0 + 160c7722-e4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - modifiedby_sdkmessagepair + false + true + lk_sharepointmanagedidentity_createdby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -332673,27 +382195,27 @@ false systemuserid systemuser - modifiedby_sdkmessagepair - modifiedby - sdkmessagepair - modifiedby + lk_sharepointmanagedidentity_createdby + createdby + sharepointmanagedidentity + createdby 0 - 08b9849a-6218-4128-b7df-c69d25f6344d + 1c0c7722-e4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_emailsignaturebase_modifiedby + lk_sharepointmanagedidentity_createdonbehalfby None - 8.1.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -332727,27 +382249,27 @@ false systemuserid systemuser - lk_emailsignaturebase_modifiedby - modifiedby - emailsignature - modifiedby + lk_sharepointmanagedidentity_createdonbehalfby + createdonbehalfby + sharepointmanagedidentity + createdonbehalfby 0 - a80c9276-263f-467b-be92-4097ea28acfb + 220c7722-e4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_wizardpage_modifiedonbehalfby + false + true + lk_sharepointmanagedidentity_modifiedby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -332781,27 +382303,27 @@ false systemuserid systemuser - lk_wizardpage_modifiedonbehalfby - modifiedonbehalfby - wizardpage - modifiedonbehalfby + lk_sharepointmanagedidentity_modifiedby + modifiedby + sharepointmanagedidentity + modifiedby 0 - 6ef0b741-eea0-4cf2-8e0c-bbc36dd9ed5f + 280c7722-e4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_syncattributemappingprofile_modifiedby + lk_sharepointmanagedidentity_modifiedonbehalfby None - 7.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -332835,15 +382357,15 @@ false systemuserid systemuser - lk_syncattributemappingprofile_modifiedby - modifiedby - syncattributemappingprofile - modifiedby + lk_sharepointmanagedidentity_modifiedonbehalfby + modifiedonbehalfby + sharepointmanagedidentity + modifiedonbehalfby 0 - b906bdac-aeb2-4a23-af6f-a1c0cf7ba5fc + 51c49322-b2b2-4b61-9822-7b15fe7f1467 false @@ -332853,7 +382375,7 @@ true true - lk_rolebase_createdby + lk_userformbase_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -332889,25 +382411,25 @@ false systemuserid systemuser - lk_rolebase_createdby - createdby - role - createdby + lk_userformbase_modifiedonbehalfby + modifiedonbehalfby + userform + modifiedonbehalfby 0 - b767a6ba-c83c-4658-98f5-30f1b4d20e9c + 18d39822-a68d-47da-8397-fa8d63834326 false false iscustomizable - true + false true - true - lk_reportcategory_modifiedonbehalfby + false + user_userquery None 5.0.0.0 OneToManyRelationship @@ -332943,27 +382465,27 @@ false systemuserid systemuser - lk_reportcategory_modifiedonbehalfby - modifiedonbehalfby - reportcategory - modifiedonbehalfby + user_userquery + owninguser + userquery + owninguser 0 - 2229eb2f-119f-479a-b85f-93ec5b6a70e3 + 340ab922-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_transformationmapping_modifiedby + false + true + lk_trait_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -332997,27 +382519,27 @@ false systemuserid systemuser - lk_transformationmapping_modifiedby - modifiedby - transformationmapping - modifiedby + lk_trait_createdby + createdby + trait + createdby 0 - 850ff99f-c1f9-4a1e-ad54-8ff532431440 + 3a0ab922-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_duplicaterulecondition_modifiedonbehalfby + false + true + lk_trait_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -333051,27 +382573,27 @@ false systemuserid systemuser - lk_duplicaterulecondition_modifiedonbehalfby - modifiedonbehalfby - duplicaterulecondition - modifiedonbehalfby + lk_trait_createdonbehalfby + createdonbehalfby + trait + createdonbehalfby 0 - 0aec662a-84f9-4eb1-b42e-2a7a8c36ef45 + 400ab922-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_userapplicationmetadata_modifiedonbehalfby + false + true + lk_trait_modifiedby None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -333105,27 +382627,27 @@ false systemuserid systemuser - lk_userapplicationmetadata_modifiedonbehalfby - modifiedonbehalfby - userapplicationmetadata - modifiedonbehalfby + lk_trait_modifiedby + modifiedby + trait + modifiedby 0 - 253bbde8-fb68-4a16-98f5-db831ea57b6e + 460ab922-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_picklistmapping_createdby + false + true + lk_trait_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -333159,27 +382681,27 @@ false systemuserid systemuser - lk_picklistmapping_createdby - createdby - picklistmapping - createdby + lk_trait_modifiedonbehalfby + modifiedonbehalfby + trait + modifiedonbehalfby 0 - 4b0da5a4-14c9-4358-8f41-f24906bab556 + 580ab922-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_savedqueryvisualizationbase_modifiedby + false + true + user_trait None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -333213,27 +382735,27 @@ false systemuserid systemuser - lk_savedqueryvisualizationbase_modifiedby - modifiedby - savedqueryvisualization - modifiedby + user_trait + owninguser + trait + owninguser 0 - 75486a39-5b1b-4968-aa79-63feb495dde2 + b40ab922-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_userapplicationmetadata_createdonbehalfby + false + true + lk_traitregistration_createdby None - 6.0.0.0 + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -333267,30 +382789,30 @@ false systemuserid systemuser - lk_userapplicationmetadata_createdonbehalfby - createdonbehalfby - userapplicationmetadata - createdonbehalfby + lk_traitregistration_createdby + createdby + traitregistration + createdby 0 - 9be19293-38f1-4cbf-a192-541bd011cbbb + ba0ab922-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_authorizationserver_modifiedonbehalfby + lk_traitregistration_createdonbehalfby None - 6.0.0.0 + 1.0.0.3 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -333321,27 +382843,27 @@ false systemuserid systemuser - lk_authorizationserver_modifiedonbehalfby - modifiedonbehalfby - authorizationserver - modifiedonbehalfby + lk_traitregistration_createdonbehalfby + createdonbehalfby + traitregistration + createdonbehalfby 0 - 0cb3df12-ee01-400c-91e1-fead0a865326 + c00ab922-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_kbarticlecommentbase_modifiedby + lk_traitregistration_modifiedby None - 5.0.0.0 + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -333375,27 +382897,27 @@ false systemuserid systemuser - lk_kbarticlecommentbase_modifiedby + lk_traitregistration_modifiedby modifiedby - kbarticlecomment + traitregistration modifiedby 0 - 6d29db11-ec88-431b-af0c-17be42a41f2f + c60ab922-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_importdatabase_modifiedby + false + true + lk_traitregistration_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -333429,27 +382951,27 @@ false systemuserid systemuser - lk_importdatabase_modifiedby - modifiedby - importdata - modifiedby + lk_traitregistration_modifiedonbehalfby + modifiedonbehalfby + traitregistration + modifiedonbehalfby 0 - c1b0c7b7-3433-428c-86a2-c9650d56d355 + d80ab922-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_email_modifiedonbehalfby + user_traitregistration None - 5.0.0.0 + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -333483,15 +383005,15 @@ false systemuserid systemuser - lk_email_modifiedonbehalfby - modifiedonbehalfby - email - modifiedonbehalfby_email + user_traitregistration + owninguser + traitregistration + owninguser 0 - 7d41e953-37b0-420e-b792-1e5addca7639 + 67afe622-5f10-4323-ad62-8cf780e9e247 false @@ -333501,9 +383023,9 @@ true false - createdby_entitymap + lk_syncerrorbase_createdby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -333537,15 +383059,15 @@ false systemuserid systemuser - createdby_entitymap + lk_syncerrorbase_createdby createdby - entitymap + syncerror createdby 0 - 703295f4-6603-460d-a2e9-225be7784a34 + fcc02623-5161-4044-9d12-dc6e0589fc31 false @@ -333554,10 +383076,10 @@ false true - false - lk_userapplicationmetadata_createdby - None - 6.0.0.0 + true + SystemUser_Email_EmailSender + Append + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -333591,27 +383113,27 @@ false systemuserid systemuser - lk_userapplicationmetadata_createdby - createdby - userapplicationmetadata - createdby + SystemUser_Email_EmailSender + emailsender + email + emailsender_systemuser - 0 + 1 - fa6e5bdf-2952-4817-a764-92525d59cf60 + a58a7323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_asyncoperation_createdonbehalfby + lk_adx_externalidentity_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -333645,27 +383167,27 @@ false systemuserid systemuser - lk_asyncoperation_createdonbehalfby - createdonbehalfby - asyncoperation - createdonbehalfby + lk_adx_externalidentity_createdby + createdby + adx_externalidentity + createdby 0 - 88d5a028-9cab-4d15-b952-5e945c540307 + ab8a7323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_pluginassembly_modifiedonbehalfby + false + true + lk_adx_externalidentity_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -333699,27 +383221,27 @@ false systemuserid systemuser - lk_pluginassembly_modifiedonbehalfby - modifiedonbehalfby - pluginassembly - modifiedonbehalfby + lk_adx_externalidentity_createdonbehalfby + createdonbehalfby + adx_externalidentity + createdonbehalfby 0 - 0c48b7e2-0faa-4ef1-b408-e650ac92e8cb + b18a7323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_team_createdonbehalfby + lk_adx_externalidentity_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -333753,27 +383275,27 @@ false systemuserid systemuser - lk_team_createdonbehalfby - createdonbehalfby - team - createdonbehalfby + lk_adx_externalidentity_modifiedby + modifiedby + adx_externalidentity + modifiedby 0 - 95bcbae5-c090-4f0a-95c7-390783023cbd + b78a7323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_importdata_createdonbehalfby + false + true + lk_adx_externalidentity_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -333807,27 +383329,27 @@ false systemuserid systemuser - lk_importdata_createdonbehalfby - createdonbehalfby - importdata - createdonbehalfby + lk_adx_externalidentity_modifiedonbehalfby + modifiedonbehalfby + adx_externalidentity + modifiedonbehalfby 0 - 331b3d0f-3074-4179-b7d9-16c0022ddacc + 808c7323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - createdby_connection + lk_adx_invitation_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -333861,27 +383383,27 @@ false systemuserid systemuser - createdby_connection + lk_adx_invitation_createdby createdby - connection + adx_invitation createdby 0 - bb9b2b8c-6c7b-4f16-80a5-ee4a8cb4f0c4 + 868c7323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - workflow_modifiedby + lk_adx_invitation_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -333915,27 +383437,27 @@ false systemuserid systemuser - workflow_modifiedby - modifiedby - workflow - modifiedby + lk_adx_invitation_createdonbehalfby + createdonbehalfby + adx_invitation + createdonbehalfby 0 - 88a1bb7a-667e-4358-8ad8-f309a967f993 + 8c8c7323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_businessunitnewsarticle_createdonbehalfby + lk_adx_invitation_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -333969,27 +383491,27 @@ false systemuserid systemuser - lk_businessunitnewsarticle_createdonbehalfby - createdonbehalfby - businessunitnewsarticle - createdonbehalfby + lk_adx_invitation_modifiedby + modifiedby + adx_invitation + modifiedby 0 - 600269dc-c746-486f-a1db-7318e5c28fd7 + 928c7323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_sdkmessageprocessingstepimage_modifiedonbehalfby + false + true + lk_adx_invitation_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -334023,27 +383545,27 @@ false systemuserid systemuser - lk_sdkmessageprocessingstepimage_modifiedonbehalfby + lk_adx_invitation_modifiedonbehalfby modifiedonbehalfby - sdkmessageprocessingstepimage + adx_invitation modifiedonbehalfby 0 - 93db492c-145d-42f4-b62c-ad0e8a37824b + a48c7323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_processsessionbase_createdonbehalfby + user_adx_invitation None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -334077,30 +383599,30 @@ false systemuserid systemuser - lk_processsessionbase_createdonbehalfby - createdonbehalfby - processsession - createdonbehalfby + user_adx_invitation + owninguser + adx_invitation + owninguser 0 - 247a92e4-7b76-45ce-8fd7-140a2a12668c + 7f907323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_appmodule_modifiedonbehalfby + adx_inviteredemption_systemuser_createdby None - 8.2.0.0 + 1.0.2407.1 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -334131,30 +383653,30 @@ false systemuserid systemuser - systemuser_appmodule_modifiedonbehalfby - modifiedonbehalfby - appmodule - appmodule_modifiedonbehalfby + adx_inviteredemption_systemuser_createdby + createdby + adx_inviteredemption + createdby_adx_inviteredemption 0 - 562bd16a-d903-4c1e-abcd-db12d2085aa5 + 84907323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_customcontroldefaultconfig_modifiedonbehalfby + adx_inviteredemption_systemuser_owninguser None - 8.0.0.0 + 1.0.2407.1 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -334185,30 +383707,30 @@ false systemuserid systemuser - lk_customcontroldefaultconfig_modifiedonbehalfby - modifiedonbehalfby - customcontroldefaultconfig - modifiedonbehalfby + adx_inviteredemption_systemuser_owninguser + owninguser + adx_inviteredemption + owninguser_adx_inviteredemption 0 - 04e51790-1fee-4b5d-834d-24cf46a020b8 + 8a907323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_tracelog_modifiedby + false + true + adx_inviteredemption_systemuser_modifiedonbehalfby None - 6.0.0.0 + 1.0.2407.1 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -334239,27 +383761,27 @@ false systemuserid systemuser - lk_tracelog_modifiedby - modifiedby - tracelog - modifiedby + adx_inviteredemption_systemuser_modifiedonbehalfby + modifiedonbehalfby + adx_inviteredemption + modifiedonbehalfby_adx_inviteredemption 0 - c3956eb2-c191-4941-ab67-fee7ca8a3040 + 8b907323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_appointment + adx_inviteredemption_systemuser_createdonbehalfby None - 5.0.0.0 + 1.0.2407.1 OneToManyRelationship DoNotDisplay @@ -334293,30 +383815,30 @@ false systemuserid systemuser - user_appointment - owninguser - appointment - owninguser_appointment + adx_inviteredemption_systemuser_createdonbehalfby + createdonbehalfby + adx_inviteredemption + createdonbehalfby_adx_inviteredemption 0 - aeb0c8b1-925d-4dfa-b08a-6fb772aa22b8 + 8c907323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_externalpartyitem_modifiedby + adx_inviteredemption_systemuser_modifiedby None - 8.0.0.0 + 1.0.2407.1 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -334347,15 +383869,90 @@ false systemuserid systemuser - lk_externalpartyitem_modifiedby + adx_inviteredemption_systemuser_modifiedby modifiedby - externalpartyitem - lk_externalpartyitem_modifiedby + adx_inviteredemption + modifiedby_adx_inviteredemption 0 - 40d8790c-496b-442b-9179-87b6aa9a7128 + 901b8123-bbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + workqueueitem_processinguser + None + 1.5.15.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 84bcaaa6-4989-43cd-8883-3e2eca570f40 + + false + + 1033 + + + 604e3dbe-5030-47ba-b70d-ddc1d6610127 + + false + + 1030 + + + + 84bcaaa6-4989-43cd-8883-3e2eca570f40 + + false + + 1033 + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + workqueueitem_processinguser + processinguser + workqueueitem + processinguser + + 0 + + + d9a98623-a0e1-489d-92f9-d7fb897ddc37 false @@ -334365,12 +383962,12 @@ true true - lk_appconfig_createdonbehalfby + lk_queue_createdonbehalfby None - 9.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -334401,15 +383998,15 @@ false systemuserid systemuser - systemuser_appconfig_createdonbehalfby + lk_queue_createdonbehalfby createdonbehalfby - appconfig - appconfig_createdonbehalfby + queue + createdonbehalfby 0 - 5dae358b-888e-46c4-b066-84deca1e4ff8 + a6b48e23-fada-4b7f-8655-530bba050765 false @@ -334419,12 +384016,12 @@ true true - lk_appconfiginstance_createdonbehalfby - None - 9.0.0.0 + system_user_accounts + Append + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -334455,15 +384052,15 @@ false systemuserid systemuser - systemuser_appconfiginstance_createdonbehalfby - createdonbehalfby - appconfiginstance - appconfiginstance_createdonbehalfby + system_user_accounts + preferredsystemuserid + account + preferredsystemuserid - 0 + 1 - e75640a4-0171-44f1-bcf7-e47047a1aa08 + a73ac623-5602-4ee3-88fe-1cacb4894e3b false @@ -334473,7 +384070,7 @@ true false - lk_DisplayStringbase_modifiedby + lk_sdkmessagerequest_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -334509,15 +384106,15 @@ false systemuserid systemuser - lk_DisplayStringbase_modifiedby - modifiedby - displaystring - modifiedby + lk_sdkmessagerequest_createdonbehalfby + createdonbehalfby + sdkmessagerequest + createdonbehalfby 0 - 68310d84-c16c-4241-81f6-fe8d6c4a57b9 + 837cfa23-d024-41f4-a479-aca732ff1ffa false @@ -334527,7 +384124,7 @@ true false - lk_importlog_modifiedonbehalfby + createdby_sdkmessageprocessingstepsecureconfig None 5.0.0.0 OneToManyRelationship @@ -334563,30 +384160,30 @@ false systemuserid systemuser - lk_importlog_modifiedonbehalfby - modifiedonbehalfby - importlog - modifiedonbehalfby + createdby_sdkmessageprocessingstepsecureconfig + createdby + sdkmessageprocessingstepsecureconfig + createdby 0 - c367eb40-3514-4ff4-82ae-12a26e8ac949 + 9593fa23-f1ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_navigationsetting_modifiedby + lk_msdyn_fileupload_createdby None - 9.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -334617,27 +384214,27 @@ false systemuserid systemuser - systemuser_navigationsetting_modifiedby - modifiedby - navigationsetting - navigationsetting_modifiedby + lk_msdyn_fileupload_createdby + createdby + msdyn_fileupload + createdby 0 - fcc02623-5161-4044-9d12-dc6e0589fc31 + 9b93fa23-f1ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - SystemUser_Email_EmailSender - Append - 6.1.0.0 + lk_msdyn_fileupload_createdonbehalfby + None + 1.0 OneToManyRelationship DoNotDisplay @@ -334671,27 +384268,27 @@ false systemuserid systemuser - SystemUser_Email_EmailSender - emailsender - email - emailsender_systemuser + lk_msdyn_fileupload_createdonbehalfby + createdonbehalfby + msdyn_fileupload + createdonbehalfby - 1 + 0 - 989584eb-2d52-4f3c-8370-917c7d716e47 + a193fa23-f1ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - modifiedby_sdkmessagerequest + false + true + lk_msdyn_fileupload_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -334725,27 +384322,27 @@ false systemuserid systemuser - modifiedby_sdkmessagerequest + lk_msdyn_fileupload_modifiedby modifiedby - sdkmessagerequest + msdyn_fileupload modifiedby 0 - d9ede736-8903-488b-845b-51315ae6ab42 + a793fa23-f1ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - user_activity + lk_msdyn_fileupload_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -334779,27 +384376,27 @@ false systemuserid systemuser - user_activity - owninguser - activitypointer - owninguser + lk_msdyn_fileupload_modifiedonbehalfby + modifiedonbehalfby + msdyn_fileupload + modifiedonbehalfby 0 - 64a8f94d-5fcc-4611-8e67-78e50c10aefd + b993fa23-f1ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - modifiedby_customer_relationship + user_msdyn_fileupload None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -334833,27 +384430,27 @@ false systemuserid systemuser - modifiedby_customer_relationship - modifiedby - customerrelationship - modifiedby + user_msdyn_fileupload + owninguser + msdyn_fileupload + owninguser 0 - 29247961-a5f6-489e-b9c5-466848d4c1c3 + 5c091424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_ConvertRule_modifiedby + lk_allowedmcpclient_createdby None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -334887,27 +384484,27 @@ false systemuserid systemuser - lk_ConvertRule_modifiedby - modifiedby - convertrule - modifiedby + lk_allowedmcpclient_createdby + createdby + allowedmcpclient + createdby 0 - e9226f5c-bcc8-4965-9db4-2470b579cf23 + 62091424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_monthlyfiscalcalendar_salespersonid - ParentChild - 5.0.0.0 + false + true + lk_allowedmcpclient_createdonbehalfby + None + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -334941,81 +384538,27 @@ false systemuserid systemuser - lk_monthlyfiscalcalendar_salespersonid - salespersonid - monthlyfiscalcalendar - salespersonid + lk_allowedmcpclient_createdonbehalfby + createdonbehalfby + allowedmcpclient + createdonbehalfby - 2 + 0 - 17270d1f-905e-4f62-afbf-066fc60ba4bf + 68091424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - SystemUser_ExternalPartyItems - None - 8.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - true - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - SystemUser_ExternalPartyItems - regardingobjectid - externalpartyitem - regardingobjectid_systemuser - - 0 - - - 2d781b0d-7b5a-4340-a4b3-72a917a67060 - - false - - false - iscustomizable - true - - true - false - lk_businessunit_modifiedonbehalfby + lk_allowedmcpclient_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -335049,27 +384592,27 @@ false systemuserid systemuser - lk_businessunit_modifiedonbehalfby - modifiedonbehalfby - businessunit - modifiedonbehalfby + lk_allowedmcpclient_modifiedby + modifiedby + allowedmcpclient + modifiedby 0 - 82310951-874d-4cdb-885c-dc2c0a02025b + 6e091424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_asyncoperation_modifiedonbehalfby + lk_allowedmcpclient_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -335103,27 +384646,27 @@ false systemuserid systemuser - lk_asyncoperation_modifiedonbehalfby + lk_allowedmcpclient_modifiedonbehalfby modifiedonbehalfby - asyncoperation + allowedmcpclient modifiedonbehalfby 0 - 0a4d1d74-2c4a-44bc-9eb5-bf4eecba3fce + 9e0a1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_teambase_createdby + lk_federatedknowledgecitation_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -335157,27 +384700,27 @@ false systemuserid systemuser - lk_teambase_createdby + lk_federatedknowledgecitation_createdby createdby - team + federatedknowledgecitation createdby 0 - 10bd42d3-95f1-48ff-b1ce-e2a8155f6b65 + a40a1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_emailserverprofile_modifiedby + lk_federatedknowledgecitation_createdonbehalfby None - 6.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -335211,81 +384754,27 @@ false systemuserid systemuser - lk_emailserverprofile_modifiedby - modifiedby - emailserverprofile - modifiedby + lk_federatedknowledgecitation_createdonbehalfby + createdonbehalfby + federatedknowledgecitation + createdonbehalfby 0 - c01dc0b4-e173-430b-aea4-859f30e1d355 + aa0a1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_processtriggerbase_modifiedonbehalfby - None - 6.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_processtriggerbase_modifiedonbehalfby - modifiedonbehalfby - processtrigger - modifiedonbehalfby - - 0 - - - f7b73bf2-2d1c-4d7e-b9af-ad187bd705d5 - - false - - false - iscustomizable - false - - true - false - lk_webwizard_modifiedby + lk_federatedknowledgecitation_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -335319,27 +384808,27 @@ false systemuserid systemuser - lk_webwizard_modifiedby + lk_federatedknowledgecitation_modifiedby modifiedby - webwizard + federatedknowledgecitation modifiedby 0 - 7dfe85ab-7822-432f-bb65-9ad58cc26b34 + b00a1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_mailmergetemplate_modifiedonbehalfby + lk_federatedknowledgecitation_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -335373,27 +384862,27 @@ false systemuserid systemuser - lk_mailmergetemplate_modifiedonbehalfby + lk_federatedknowledgecitation_modifiedonbehalfby modifiedonbehalfby - mailmergetemplate + federatedknowledgecitation modifiedonbehalfby 0 - 27934bcf-ebe9-41d1-8ecc-8c4940650504 + c20a1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_connectionbase_modifiedonbehalfby + user_federatedknowledgecitation None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -335427,27 +384916,27 @@ false systemuserid systemuser - lk_connectionbase_modifiedonbehalfby - modifiedonbehalfby - connection - modifiedonbehalfby + user_federatedknowledgecitation + owninguser + federatedknowledgecitation + owninguser 0 - d20063f2-43a0-48f3-a8ed-fe51ad4f1ddd + 300c1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_queueitem_createdonbehalfby + lk_federatedknowledgeconfiguration_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -335481,27 +384970,27 @@ false systemuserid systemuser - lk_queueitem_createdonbehalfby - createdonbehalfby - queueitem - createdonbehalfby + lk_federatedknowledgeconfiguration_createdby + createdby + federatedknowledgeconfiguration + createdby 0 - 7f3f3c25-8f83-459c-85d6-4f7e7f64a09d + 380c1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_teamtemplate_modifiedonbehalfby + lk_federatedknowledgeconfiguration_createdonbehalfby None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -335535,27 +385024,27 @@ false systemuserid systemuser - lk_teamtemplate_modifiedonbehalfby - modifiedonbehalfby - teamtemplate - modifiedonbehalfby + lk_federatedknowledgeconfiguration_createdonbehalfby + createdonbehalfby + federatedknowledgeconfiguration + createdonbehalfby 0 - 0a69c7a6-b6bb-4ce0-b2ac-8df94ee5f147 + 410c1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_documenttemplatebase_modifiedby + lk_federatedknowledgeconfiguration_modifiedby None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -335589,27 +385078,27 @@ false systemuserid systemuser - lk_documenttemplatebase_modifiedby + lk_federatedknowledgeconfiguration_modifiedby modifiedby - documenttemplate + federatedknowledgeconfiguration modifiedby 0 - 835c1853-4401-4785-9b04-8adc49118384 + 490c1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_transformationparametermapping_createdonbehalfby + false + true + lk_federatedknowledgeconfiguration_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -335643,27 +385132,27 @@ false systemuserid systemuser - lk_transformationparametermapping_createdonbehalfby - createdonbehalfby - transformationparametermapping - createdonbehalfby + lk_federatedknowledgeconfiguration_modifiedonbehalfby + modifiedonbehalfby + federatedknowledgeconfiguration + modifiedonbehalfby 0 - 145c14c7-c931-4c3a-8c59-3bf57b9630a4 + 5f0c1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_sharepointdocumentbase_modifiedonbehalfby + user_federatedknowledgeconfiguration None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -335675,8 +385164,8 @@ true - true - navSPDocuments + false + 00000000-0000-0000-0000-000000000000 @@ -335697,27 +385186,27 @@ false systemuserid systemuser - lk_sharepointdocumentbase_modifiedonbehalfby - modifiedonbehalfby - sharepointdocument - modifiedonbehalfby + user_federatedknowledgeconfiguration + owninguser + federatedknowledgeconfiguration + owninguser 0 - 9a2690e2-73ef-413c-a49a-4ef7f3af748a + 060e1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_relationshiprolemap_createdonbehalfby + false + true + lk_federatedknowledgeentityconfiguration_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -335751,27 +385240,27 @@ false systemuserid systemuser - lk_relationshiprolemap_createdonbehalfby - createdonbehalfby - relationshiprolemap - createdonbehalfby + lk_federatedknowledgeentityconfiguration_createdby + createdby + federatedknowledgeentityconfiguration + createdby 0 - 18d39822-a68d-47da-8397-fa8d63834326 + 0c0e1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - user_userquery + false + true + lk_federatedknowledgeentityconfiguration_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -335805,30 +385294,30 @@ false systemuserid systemuser - user_userquery - owninguser - userquery - owninguser + lk_federatedknowledgeentityconfiguration_createdonbehalfby + createdonbehalfby + federatedknowledgeentityconfiguration + createdonbehalfby 0 - b0eb248f-1a95-4a33-89c6-5a1195ee6faa + 120e1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_appmodule_createdby + lk_federatedknowledgeentityconfiguration_modifiedby None - 8.2.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -335859,27 +385348,27 @@ false systemuserid systemuser - systemuser_appmodule_createdby - createdby - appmodule - appmodule_createdby + lk_federatedknowledgeentityconfiguration_modifiedby + modifiedby + federatedknowledgeentityconfiguration + modifiedby 0 - 8c9a88b9-2a13-484d-bc39-0845d9272b59 + 180e1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_businessprocessflowinstancebase_createdby + lk_federatedknowledgeentityconfiguration_modifiedonbehalfby None - 8.2.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -335913,27 +385402,27 @@ false systemuserid systemuser - lk_businessprocessflowinstancebase_createdby - createdby - businessprocessflowinstance - createdby + lk_federatedknowledgeentityconfiguration_modifiedonbehalfby + modifiedonbehalfby + federatedknowledgeentityconfiguration + modifiedonbehalfby 0 - 707d5f4c-7f4b-4e46-a256-47efcc4b1e48 + 2a0e1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_kbarticlecommentbase_createdby + user_federatedknowledgeentityconfiguration None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -335967,15 +385456,15 @@ false systemuserid systemuser - lk_kbarticlecommentbase_createdby - createdby - kbarticlecomment - createdby + user_federatedknowledgeentityconfiguration + owninguser + federatedknowledgeentityconfiguration + owninguser 0 - fc11f93d-acf6-4ce7-b03c-275d31738259 + 57904a24-373b-4edd-93a6-63479074892b false @@ -335985,12 +385474,12 @@ true true - lk_convertruleitembase_modifiedby + lk_customcontrolresource_createdby None - 6.1.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -336021,25 +385510,25 @@ false systemuserid systemuser - lk_convertruleitembase_modifiedby - modifiedby - convertruleitem - modifiedby + lk_customcontrolresource_createdby + createdby + customcontrolresource + createdby 0 - 4a98a7ca-d8ed-4016-9274-18441a5f976c + 3d78b924-9a9c-4ba2-8650-d7d3ff51eefd false false iscustomizable - false + true true true - workflow_createdonbehalfby + lk_email_createdby None 5.0.0.0 OneToManyRelationship @@ -336075,15 +385564,15 @@ false systemuserid systemuser - workflow_createdonbehalfby - createdonbehalfby - workflow - createdonbehalfby + lk_email_createdby + createdby + email + createdby_email 0 - 9f097b05-3c4d-450c-adde-b62cd681353b + 7f3f3c25-8f83-459c-85d6-4f7e7f64a09d false @@ -336092,10 +385581,10 @@ false true - false - lk_recurrencerule_modifiedby + true + lk_teamtemplate_modifiedonbehalfby None - 5.0.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -336129,30 +385618,30 @@ false systemuserid systemuser - lk_recurrencerule_modifiedby - modifiedby - recurrencerule - modifiedby + lk_teamtemplate_modifiedonbehalfby + modifiedonbehalfby + teamtemplate + modifiedonbehalfby 0 - 6a9e89f7-38c8-45b7-bf92-59bc86a0f83e + a4534125-e6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_category_modifiedonbehalfby + false + true + lk_aiinsightcard_createdby None - 8.1.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -336183,30 +385672,30 @@ false systemuserid systemuser - lk_category_modifiedonbehalfby - modifiedonbehalfby - category - lk_category_modifiedonbehalfby + lk_aiinsightcard_createdby + createdby + aiinsightcard + createdby 0 - 508359a1-a773-4452-97cc-57dc4d89a3ce + aa534125-e6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_appconfig_modifiedby + lk_aiinsightcard_createdonbehalfby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -336237,27 +385726,27 @@ false systemuserid systemuser - systemuser_appconfig_modifiedby - modifiedby - appconfig - appconfig_modifiedby + lk_aiinsightcard_createdonbehalfby + createdonbehalfby + aiinsightcard + createdonbehalfby 0 - dd2aaf8f-4b72-4f66-a3bf-7bc088208e19 + b0534125-e6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_bulkdeleteoperationbase_createdby + false + true + lk_aiinsightcard_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -336291,27 +385780,27 @@ false systemuserid systemuser - lk_bulkdeleteoperationbase_createdby - createdby - bulkdeleteoperation - createdby + lk_aiinsightcard_modifiedby + modifiedby + aiinsightcard + modifiedby 0 - e6ec4ab5-8135-408c-b6f1-5a095cfbdbd4 + b6534125-e6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_asyncoperation_createdby + lk_aiinsightcard_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -336345,27 +385834,27 @@ false systemuserid systemuser - lk_asyncoperation_createdby - createdby - asyncoperation - createdby + lk_aiinsightcard_modifiedonbehalfby + modifiedonbehalfby + aiinsightcard + modifiedonbehalfby 0 - b3c71d20-4346-44d9-877b-efa259c4d705 + c8534125-e6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_sdkmessagefilter_modifiedonbehalfby + false + true + user_aiinsightcard None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -336399,27 +385888,27 @@ false systemuserid systemuser - lk_sdkmessagefilter_modifiedonbehalfby - modifiedonbehalfby - sdkmessagefilter - modifiedonbehalfby + user_aiinsightcard + owninguser + aiinsightcard + owninguser 0 - f9370696-1182-4442-9490-14fbfb537956 + 24479a25-4f57-4321-a2b1-9818f2881ec1 false false iscustomizable - true + false true true - user_recurringappointmentmaster + lk_actioncardbase_createdonbehalfby None - 5.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -336453,15 +385942,15 @@ false systemuserid systemuser - user_recurringappointmentmaster - owninguser - recurringappointmentmaster - owninguser_recurringappointmentmaster + lk_actioncardbase_createdonbehalfby + createdonbehalfby + actioncard + createdonbehalfby 0 - 1d55972f-06be-48a3-9f9a-d811ec9272ca + 3c127b26-4fd7-4916-bf2a-9fbeed338d80 false @@ -336470,13 +385959,13 @@ false true - true - user_customer_relationship + false + lk_advancedsimilarityrule_modifiedby None - 5.0.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -336507,30 +385996,30 @@ false systemuserid systemuser - user_customer_relationship - owninguser - customerrelationship - owninguser + lk_advancedsimilarityrule_modifiedby + modifiedby + advancedsimilarityrule + modifiedby 0 - 6d0fb34b-a4eb-4fc5-96c6-7a12dc8e8026 + 692fc626-e6e1-4d49-9ae9-9ddb54216093 false false iscustomizable - false + true true - false - lk_systemapplicationmetadata_modifiedby + true + lk_appmodulecomponent_createdby None - 6.0.0.0 + 8.2.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -336561,15 +386050,15 @@ false systemuserid systemuser - lk_systemapplicationmetadata_modifiedby - modifiedby - systemapplicationmetadata - modifiedby + appmodulecomponent_createdby + createdby + appmodulecomponent + appmodulecomponent_createdby 0 - 02640d21-fd4b-4ee2-9c2b-df19e0fa839d + 2ee24c27-6b4b-4fc9-b2d3-13226899ae20 false @@ -336579,9 +386068,9 @@ true true - lk_slaitembase_modifiedby + lk_slakpiinstancebase_createdby None - 6.1.0.0 + 7.0.0.0 OneToManyRelationship DoNotDisplay @@ -336615,27 +386104,27 @@ false systemuserid systemuser - lk_slaitembase_modifiedby - modifiedby - slaitem - modifiedby + lk_slakpiinstancebase_createdby + createdby + slakpiinstance + createdby 0 - e5043adb-964d-43e5-aad4-579f456b6647 + 35147b27-566b-43ea-9708-1bac82813c57 false false iscustomizable - false + true true true - lk_publisheraddressbase_modifiedonbehalfby + lk_slabase_createdonbehalfby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -336669,15 +386158,15 @@ false systemuserid systemuser - lk_publisheraddressbase_modifiedonbehalfby - modifiedonbehalfby - publisheraddress - modifiedonbehalfby + lk_slabase_createdonbehalfby + createdonbehalfby + sla + createdonbehalfby 0 - 459cc6c3-68f6-4e2b-9034-77dd30ddcf5e + 57c59c27-f457-49b8-875e-74af4c5e7d42 false @@ -336687,9 +386176,9 @@ true true - lk_documenttemplatebase_createdby + lk_processsession_executedby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -336723,15 +386212,15 @@ false systemuserid systemuser - lk_documenttemplatebase_createdby - createdby - documenttemplate - createdby + lk_processsession_executedby + executedby + processsession + executedby 0 - 6f432a0a-df1f-4a9b-8aa4-a16b645c3fdb + 1375b327-ddd4-49d4-8326-23c09206f7c1 false @@ -336741,7 +386230,7 @@ true false - lk_integrationstatus_createdonbehalfby + lk_DisplayStringbase_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -336777,27 +386266,27 @@ false systemuserid systemuser - lk_integrationstatus_createdonbehalfby - createdonbehalfby - integrationstatus - createdonbehalfby + lk_DisplayStringbase_modifiedonbehalfby + modifiedonbehalfby + displaystring + modifiedonbehalfby 0 - b7762cdc-d055-46f7-ba15-a0c3debdfd23 + 92e51a28-59c0-4192-be56-e8d5b66ab36d false false iscustomizable - false + true true - false - lk_transformationparametermapping_modifiedby + true + lk_sharepointdocumentbase_modifiedby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -336809,8 +386298,8 @@ true - false - + true + navSPDocuments 00000000-0000-0000-0000-000000000000 @@ -336831,15 +386320,15 @@ false systemuserid systemuser - lk_transformationparametermapping_modifiedby + lk_sharepointdocumentbase_modifiedby modifiedby - transformationparametermapping + sharepointdocument modifiedby 0 - b2ffcab8-952b-49a4-a3a0-18694633bf48 + 90a15328-ff10-4417-a29a-338287024c47 false @@ -336849,9 +386338,9 @@ true true - lk_slabase_createdby + lk_ribbonrule_createdby None - 6.1.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -336885,27 +386374,27 @@ false systemuserid systemuser - lk_slabase_createdby + lk_ribbonrule_createdby createdby - sla + ribbonrule createdby 0 - 4ab194d7-092c-4e02-86a3-885b5e8cb8cb + b4be8728-afba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_organizationbase_createdby + false + true + lk_pluginpackage_createdby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -336939,27 +386428,27 @@ false systemuserid systemuser - lk_organizationbase_createdby + lk_pluginpackage_createdby createdby - organization + pluginpackage createdby 0 - 63e25ee5-817d-432c-9930-0f5ed829f440 + babe8728-afba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_report_modifiedonbehalfby + lk_pluginpackage_createdonbehalfby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -336993,27 +386482,27 @@ false systemuserid systemuser - lk_report_modifiedonbehalfby - modifiedonbehalfby - report - modifiedonbehalfby + lk_pluginpackage_createdonbehalfby + createdonbehalfby + pluginpackage + createdonbehalfby 0 - ab1064cf-d830-4477-9f02-52a4dac3adea + c0be8728-afba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_calendarrule_modifiedby + lk_pluginpackage_modifiedby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -337047,27 +386536,27 @@ false systemuserid systemuser - lk_calendarrule_modifiedby + lk_pluginpackage_modifiedby modifiedby - calendarrule + pluginpackage modifiedby 0 - e8a09961-82ce-4963-84d6-49170aecbce6 + c6be8728-afba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_quarterlyfiscalcalendar_modifiedby + false + true + lk_pluginpackage_modifiedonbehalfby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -337101,15 +386590,15 @@ false systemuserid systemuser - lk_quarterlyfiscalcalendar_modifiedby - modifiedby - quarterlyfiscalcalendar - modifiedby + lk_pluginpackage_modifiedonbehalfby + modifiedonbehalfby + pluginpackage + modifiedonbehalfby 0 - 996a8767-d115-4394-9507-2a9662ae0f16 + d55e8c28-7860-11e0-a0f5-1cc1de634cfe false @@ -337119,12 +386608,12 @@ true false - createdby_serviceendpoint + lk_postcomment_createdonbehalfby None 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -337155,15 +386644,15 @@ false systemuserid systemuser - createdby_serviceendpoint - createdby - serviceendpoint - createdby + lk_postcomment_createdonbehalfby + createdonbehalfby + postcomment + createdonbehalfby 0 - a95746d2-2fb5-49d2-9ae1-0d897a3ead12 + 88d5a028-9cab-4d15-b952-5e945c540307 false @@ -337173,12 +386662,12 @@ true false - lk_knowledgesearchmodel_modifiedonbehalfby + lk_pluginassembly_modifiedonbehalfby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -337209,15 +386698,15 @@ false systemuserid systemuser - lk_knowledgesearchmodel_modifiedonbehalfby + lk_pluginassembly_modifiedonbehalfby modifiedonbehalfby - knowledgesearchmodel + pluginassembly modifiedonbehalfby 0 - 4f967b4a-0c0b-4de1-9acb-898cc3de8de7 + 5954ce28-02ed-4a35-a0d4-cec90bce4d06 false @@ -337227,7 +386716,7 @@ true false - lk_duplicaterulecondition_createdonbehalfby + lk_documentindex_createdby None 5.0.0.0 OneToManyRelationship @@ -337263,15 +386752,15 @@ false systemuserid systemuser - lk_duplicaterulecondition_createdonbehalfby - createdonbehalfby - duplicaterulecondition - createdonbehalfby + lk_documentindex_createdby + createdby + documentindex + createdby 0 - 305db567-6605-4d12-9585-4b2f8a842b79 + f4f91a29-b6ac-40a7-8d4a-6e9395cb821c false @@ -337281,9 +386770,9 @@ true true - lk_routingruleitem_createdonbehalfby + lk_importjobbase_createdby None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -337317,15 +386806,15 @@ false systemuserid systemuser - lk_routingruleitem_createdonbehalfby - createdonbehalfby - routingruleitem - createdonbehalfby + lk_importjobbase_createdby + createdby + importjob + createdby 0 - 067996a9-b324-4eed-929e-624422ba0bb1 + 32b72929-67b9-41a0-8e2a-5c324e1165f7 false @@ -337335,7 +386824,7 @@ true false - lk_internaladdress_modifiedonbehalfby + lk_sdkmessagerequestfield_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -337371,15 +386860,15 @@ false systemuserid systemuser - lk_internaladdress_modifiedonbehalfby + lk_sdkmessagerequestfield_modifiedonbehalfby modifiedonbehalfby - internaladdress + sdkmessagerequestfield modifiedonbehalfby 0 - e35b62df-cd7a-4c46-bef3-b6a50107e5db + 61c63629-1e3e-457a-9e1c-d1447e5caa34 false @@ -337389,7 +386878,7 @@ true true - lk_transactioncurrencybase_modifiedby + lk_reportlink_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -337425,27 +386914,27 @@ false systemuserid systemuser - lk_transactioncurrencybase_modifiedby - modifiedby - transactioncurrency - modifiedby + lk_reportlink_createdonbehalfby + createdonbehalfby + reportlink + createdonbehalfby 0 - 5227f21a-1487-4599-ae3e-4feba593a961 + c0e1a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_DisplayStringbase_createdby + false + true + adx_portalcomment_systemuser_createdby None - 5.0.0.0 + 1.0.2407.1 OneToManyRelationship DoNotDisplay @@ -337479,27 +386968,27 @@ false systemuserid systemuser - lk_DisplayStringbase_createdby + adx_portalcomment_systemuser_createdby createdby - displaystring - createdby + adx_portalcomment + createdby_adx_portalcomment 0 - 21b689f5-c208-4be7-9a1d-598361581c98 + c5e1a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_officedocumentbase_createdonbehalfby + adx_portalcomment_systemuser_owninguser None - 7.1.0.0 + 1.0.2407.1 OneToManyRelationship DoNotDisplay @@ -337533,27 +387022,27 @@ false systemuserid systemuser - lk_officedocumentbase_createdonbehalfby - createdonbehalfby - officedocument - createdonbehalfby + adx_portalcomment_systemuser_owninguser + owninguser + adx_portalcomment + owninguser_adx_portalcomment 0 - a163f5c9-b437-4a90-b73a-06309d293efd + cbe1a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_slaitembase_modifiedonbehalfby + adx_portalcomment_systemuser_modifiedonbehalfby None - 6.1.0.0 + 1.0.2407.1 OneToManyRelationship DoNotDisplay @@ -337587,27 +387076,27 @@ false systemuserid systemuser - lk_slaitembase_modifiedonbehalfby + adx_portalcomment_systemuser_modifiedonbehalfby modifiedonbehalfby - slaitem - modifiedonbehalfby + adx_portalcomment + modifiedonbehalfby_adx_portalcomment 0 - aef32e06-da2a-4d14-a82b-587c6ca346aa + cce1a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - annotation_owning_user + adx_portalcomment_systemuser_createdonbehalfby None - 5.0.0.0 + 1.0.2407.1 OneToManyRelationship DoNotDisplay @@ -337641,27 +387130,27 @@ false systemuserid systemuser - annotation_owning_user - owninguser - annotation - owninguser + adx_portalcomment_systemuser_createdonbehalfby + createdonbehalfby + adx_portalcomment + createdonbehalfby_adx_portalcomment 0 - 3133d33c-024a-4717-ad3f-ab82d072890d + cde1a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - system_user_contacts - Append - 5.0.0.0 + adx_portalcomment_systemuser_modifiedby + None + 1.0.2407.1 OneToManyRelationship DoNotDisplay @@ -337695,27 +387184,27 @@ false systemuserid systemuser - system_user_contacts - preferredsystemuserid - contact - preferredsystemuserid + adx_portalcomment_systemuser_modifiedby + modifiedby + adx_portalcomment + modifiedby_adx_portalcomment - 1 + 0 - bd67740a-9731-43ac-a452-da22874aa794 + 0be5a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_transformationparametermapping_createdby + false + true + lk_adx_setting_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -337749,30 +387238,30 @@ false systemuserid systemuser - lk_transformationparametermapping_createdby + lk_adx_setting_createdby createdby - transformationparametermapping + adx_setting createdby 0 - a7e81dd9-aece-4f89-b9fd-5e1729c6813c + 11e5a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - multientitysearch_createdonbehalfby + lk_adx_setting_createdonbehalfby None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -337803,27 +387292,27 @@ false systemuserid systemuser - multientitysearch_createdonbehalfby + lk_adx_setting_createdonbehalfby createdonbehalfby - multientitysearch + adx_setting createdonbehalfby 0 - 3147ac38-bba6-4494-9626-908dc81aa18b + 17e5a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - sup_principalid_systemuser + false + true + lk_adx_setting_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -337857,27 +387346,27 @@ false systemuserid systemuser - sup_principalid_systemuser - systemuserid - systemuserprincipals - systemuserid_systemuser + lk_adx_setting_modifiedby + modifiedby + adx_setting + modifiedby 0 - 0394329a-d99e-4892-b35b-68499e71473f + 1de5a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_phonecall_createdonbehalfby + lk_adx_setting_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -337911,27 +387400,27 @@ false systemuserid systemuser - lk_phonecall_createdonbehalfby - createdonbehalfby - phonecall - createdonbehalfby_phonecall + lk_adx_setting_modifiedonbehalfby + modifiedonbehalfby + adx_setting + modifiedonbehalfby 0 - 4843784c-22a1-4718-9185-67d23ac03c63 + 2fe5a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_email_modifiedby + user_adx_setting None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -337965,81 +387454,27 @@ false systemuserid systemuser - lk_email_modifiedby - modifiedby - email - modifiedby_email + user_adx_setting + owninguser + adx_setting + owninguser 0 - f8e5337a-8ba2-477d-a332-9af19186397b + 6ce6a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_sharepointdocumentbase_createdonbehalfby - None - 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - true - navSPDocuments - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_sharepointdocumentbase_createdonbehalfby - createdonbehalfby - sharepointdocument - createdonbehalfby - - 0 - - - 7204183b-e9d6-4197-98eb-d18c6d2ccdaa - - false - - false - iscustomizable - false - - true - false - lk_wizardpage_modifiedby + lk_adx_webformsession_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -338073,27 +387508,27 @@ false systemuserid systemuser - lk_wizardpage_modifiedby - modifiedby - wizardpage - modifiedby + lk_adx_webformsession_createdby + createdby + adx_webformsession + createdby 0 - 77eaf085-1edc-4bb6-91a4-e85ceccc7e89 + 72e6a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_usersettingsbase_createdby + false + true + lk_adx_webformsession_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -338127,27 +387562,27 @@ false systemuserid systemuser - lk_usersettingsbase_createdby - createdby - usersettings - createdby + lk_adx_webformsession_createdonbehalfby + createdonbehalfby + adx_webformsession + createdonbehalfby 0 - 712bbd7a-3c81-4c51-bc4e-2e6d5c549b0f + 78e6a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_teamtemplate_createdonbehalfby + lk_adx_webformsession_modifiedby None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -338181,30 +387616,30 @@ false systemuserid systemuser - lk_teamtemplate_createdonbehalfby - createdonbehalfby - teamtemplate - createdonbehalfby + lk_adx_webformsession_modifiedby + modifiedby + adx_webformsession + modifiedby 0 - f8da9994-b122-4116-81bc-f2ee47b0b9e9 + 7ee6a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_appmodule_createdonbehalfby + lk_adx_webformsession_modifiedonbehalfby None - 8.2.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -338235,15 +387670,15 @@ false systemuserid systemuser - systemuser_appmodule_createdonbehalfby - createdonbehalfby - appmodule - appmodule_createdonbehalfby + lk_adx_webformsession_modifiedonbehalfby + modifiedonbehalfby + adx_webformsession + modifiedonbehalfby 0 - 0702199e-f456-4d89-8c29-3595863b9318 + cda6002a-5109-4e35-b996-4562ede86515 false @@ -338253,7 +387688,7 @@ true false - lk_importlogbase_createdby + lk_semiannualfiscalcalendar_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -338289,27 +387724,27 @@ false systemuserid systemuser - lk_importlogbase_createdby - createdby - importlog - createdby + lk_semiannualfiscalcalendar_createdonbehalfby + createdonbehalfby + semiannualfiscalcalendar + createdonbehalfby 0 - a604ba85-08e4-4ae6-bf51-841a478d3568 + 2dab3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true - false - lk_sharepointdocumentlocationbase_createdby + false + true + lk_federatedknowledgemetadatarefresh_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -338343,27 +387778,27 @@ false systemuserid systemuser - lk_sharepointdocumentlocationbase_createdby + lk_federatedknowledgemetadatarefresh_createdby createdby - sharepointdocumentlocation + federatedknowledgemetadatarefresh createdby 0 - a482b31c-f9cc-4989-a087-6800cc438f39 + 33ab3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_socialinsightsconfiguration_modifiedby + lk_federatedknowledgemetadatarefresh_createdonbehalfby None - 6.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -338397,27 +387832,27 @@ false systemuserid systemuser - lk_socialinsightsconfiguration_modifiedby - modifiedby - socialinsightsconfiguration - modifiedby + lk_federatedknowledgemetadatarefresh_createdonbehalfby + createdonbehalfby + federatedknowledgemetadatarefresh + createdonbehalfby 0 - 5e98d042-00bb-494a-b231-eadc8d4a94ec + 39ab3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_accounts + lk_federatedknowledgemetadatarefresh_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -338451,30 +387886,30 @@ false systemuserid systemuser - user_accounts - owninguser - account - owninguser + lk_federatedknowledgemetadatarefresh_modifiedby + modifiedby + federatedknowledgemetadatarefresh + modifiedby 0 - c5f88d39-bf17-457b-99ec-750f7f9db050 + 3fab3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_externalpartyitem_modifiedonbehalfby + lk_federatedknowledgemetadatarefresh_modifiedonbehalfby None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -338505,81 +387940,27 @@ false systemuserid systemuser - lk_externalpartyitem_modifiedonbehalfby + lk_federatedknowledgemetadatarefresh_modifiedonbehalfby modifiedonbehalfby - externalpartyitem - lk_externalpartyitem_modifiedonbehalfby + federatedknowledgemetadatarefresh + modifiedonbehalfby 0 - 5ce5f8b2-5fb9-47ae-98f3-bd6ac504dd55 + 51ab3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_reportentitybase_modifiedby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_reportentitybase_modifiedby - modifiedby - reportentity - modifiedby - - 0 - - - 39af169b-2833-44e9-8d63-aec11ba4038c - - false - - false - iscustomizable - false - - true - false - lk_sdkmessagepair_modifiedonbehalfby + user_federatedknowledgemetadatarefresh None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -338613,27 +387994,27 @@ false systemuserid systemuser - lk_sdkmessagepair_modifiedonbehalfby - modifiedonbehalfby - sdkmessagepair - modifiedonbehalfby + user_federatedknowledgemetadatarefresh + owninguser + federatedknowledgemetadatarefresh + owninguser 0 - 212a8cd7-eb4b-45c8-b580-15af4c8824b9 + adac3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - modifiedby_plugintype + false + true + lk_intelligentmemory_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -338667,27 +388048,27 @@ false systemuserid systemuser - modifiedby_plugintype - modifiedby - plugintype - modifiedby + lk_intelligentmemory_createdby + createdby + intelligentmemory + createdby 0 - 8fb6f1b7-b0b9-4513-a563-fc9257137f25 + b3ac3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_importentitymapping_modifiedonbehalfby + false + true + lk_intelligentmemory_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -338721,27 +388102,27 @@ false systemuserid systemuser - lk_importentitymapping_modifiedonbehalfby - modifiedonbehalfby - importentitymapping - modifiedonbehalfby + lk_intelligentmemory_createdonbehalfby + createdonbehalfby + intelligentmemory + createdonbehalfby 0 - be15ef56-8f80-4fd1-9d44-c5eff1e829c7 + c1ac3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_savedquerybase_createdby + lk_intelligentmemory_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -338775,27 +388156,27 @@ false systemuserid systemuser - lk_savedquerybase_createdby - createdby - savedquery - createdby + lk_intelligentmemory_modifiedby + modifiedby + intelligentmemory + modifiedby 0 - b81d702e-d53e-4d12-9acc-3a629131e566 + cbac3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_officedocumentbase_modifiedonbehalfby + lk_intelligentmemory_modifiedonbehalfby None - 7.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -338829,30 +388210,30 @@ false systemuserid systemuser - lk_officedocumentbase_modifiedonbehalfby + lk_intelligentmemory_modifiedonbehalfby modifiedonbehalfby - officedocument + intelligentmemory modifiedonbehalfby 0 - 984b5a90-7f3a-4545-ac24-7616a02a16b9 + e5ac3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_offlinecommanddefinition_createdby + user_intelligentmemory None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -338883,27 +388264,27 @@ false systemuserid systemuser - lk_offlinecommanddefinition_createdby - createdby - offlinecommanddefinition - createdby + user_intelligentmemory + owninguser + intelligentmemory + owninguser 0 - 507dbd13-79ed-4ad7-8225-11eaa7731d89 + 96ad3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_activitypointer_createdby + lk_knowledgefaq_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -338937,27 +388318,27 @@ false systemuserid systemuser - lk_activitypointer_createdby + lk_knowledgefaq_createdby createdby - activitypointer + knowledgefaq createdby 0 - 8a4889d5-45ee-4441-aebe-70348dcad57a + 9ead3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_columnmapping_createdonbehalfby + false + true + lk_knowledgefaq_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -338991,27 +388372,27 @@ false systemuserid systemuser - lk_columnmapping_createdonbehalfby + lk_knowledgefaq_createdonbehalfby createdonbehalfby - columnmapping + knowledgefaq createdonbehalfby 0 - c931a43f-5cb4-4034-a5b1-9d054d6c295a + a7ad3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - modifiedby_relationship_role + lk_knowledgefaq_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -339045,27 +388426,27 @@ false systemuserid systemuser - modifiedby_relationship_role + lk_knowledgefaq_modifiedby modifiedby - relationshiprole + knowledgefaq modifiedby 0 - 6d0d4a61-e846-42ab-a259-018cbc1370f9 + afad3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_mobileofflineprofileitemassociation_modifiedonbehalfby + lk_knowledgefaq_modifiedonbehalfby None - 8.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -339099,27 +388480,27 @@ false systemuserid systemuser - lk_mobileofflineprofileitemassocaition_modifiedonbehalfby + lk_knowledgefaq_modifiedonbehalfby modifiedonbehalfby - mobileofflineprofileitemassociation + knowledgefaq modifiedonbehalfby 0 - 893b41a0-3d1e-471b-9926-78663529daeb + c6ad3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_subject_createdonbehalfby + user_knowledgefaq None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -339153,30 +388534,30 @@ false systemuserid systemuser - lk_subject_createdonbehalfby - createdonbehalfby - subject - createdonbehalfby + user_knowledgefaq + owninguser + knowledgefaq + owninguser 0 - e7f4f93e-fbee-4805-8f70-58aa04f6ab38 + 47af3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_appconfigmaster_createdonbehalfby + lk_msdyn_formmapping_createdby None - 9.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -339207,27 +388588,27 @@ false systemuserid systemuser - systemuser_appconfigmaster_createdonbehalfby - createdonbehalfby - appconfigmaster - appconfigmaster_createdonbehalfby + lk_msdyn_formmapping_createdby + createdby + msdyn_formmapping + createdby 0 - 9d2e7062-5abd-4a78-bd3a-b80e03537900 + 5daf3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_untrackedemail_createdonbehalfby + lk_msdyn_formmapping_createdonbehalfby None - 8.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -339261,27 +388642,27 @@ false systemuserid systemuser - lk_untrackedemail_createdonbehalfby + lk_msdyn_formmapping_createdonbehalfby createdonbehalfby - untrackedemail - createdonbehalfby_untrackedemail + msdyn_formmapping + createdonbehalfby 0 - cd102b78-1fdd-4aaf-973c-c34552899c59 + 73af3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_ChannelProperty_createdby + lk_msdyn_formmapping_modifiedby None - 7.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -339315,27 +388696,27 @@ false systemuserid systemuser - lk_ChannelProperty_createdby - createdby - channelproperty - createdby + lk_msdyn_formmapping_modifiedby + modifiedby + msdyn_formmapping + modifiedby 0 - 93ca4a85-9e31-45ef-9e6f-f390916e37d8 + 87af3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_kbarticle_modifiedonbehalfby + lk_msdyn_formmapping_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -339369,81 +388750,27 @@ false systemuserid systemuser - lk_kbarticle_modifiedonbehalfby + lk_msdyn_formmapping_modifiedonbehalfby modifiedonbehalfby - kbarticle + msdyn_formmapping modifiedonbehalfby 0 - 75ddd735-e961-46df-9c1c-57f065b23c7f - - false - - false - iscustomizable - false - - true - false - modifiedby_entitymap - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - modifiedby_entitymap - modifiedby - entitymap - modifiedby - - 0 - - - 837cfa23-d024-41f4-a479-aca732ff1ffa + a2af3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - createdby_sdkmessageprocessingstepsecureconfig + false + true + user_msdyn_formmapping None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -339477,25 +388804,25 @@ false systemuserid systemuser - createdby_sdkmessageprocessingstepsecureconfig - createdby - sdkmessageprocessingstepsecureconfig - createdby + user_msdyn_formmapping + owninguser + msdyn_formmapping + owninguser 0 - 156ec960-b29f-4663-bf06-ccb6c70387fe + f2dd4e2a-d086-43bc-bab0-361e4eb47eb9 false false iscustomizable - false + true true false - createdby_sdkmessageprocessingstep + lk_sharepointdocumentlocationbase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -339531,30 +388858,30 @@ false systemuserid systemuser - createdby_sdkmessageprocessingstep - createdby - sdkmessageprocessingstep - createdby + lk_sharepointdocumentlocationbase_modifiedby + modifiedby + sharepointdocumentlocation + modifiedby 0 - b828f5c9-9442-455c-ba51-772cfe3ccb03 + 14a6532a-27e9-4bcd-a1e2-94c82a2fdf1e false false iscustomizable - true + false true true - lk_appconfig_modifiedonbehalfby - None - 9.0.0.0 + user_settings + Append + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -339571,7 +388898,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -339585,27 +388912,27 @@ false systemuserid systemuser - systemuser_appconfig_modifiedonbehalfby - modifiedonbehalfby - appconfig - appconfig_modifiedonbehalfby + user_settings + systemuserid + usersettings + systemuserid_systemuser - 0 + 1 - 44384acb-78c7-4062-9f44-b814cc9830e0 + 47cc602a-0d2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable - false + true - true - false - lk_quarterlyfiscalcalendar_salespersonid - ParentChild - 5.0.0.0 + false + true + lk_uxagentcomponentrevision_createdby + None + 1.0 OneToManyRelationship DoNotDisplay @@ -339639,27 +388966,27 @@ false systemuserid systemuser - lk_quarterlyfiscalcalendar_salespersonid - salespersonid - quarterlyfiscalcalendar - salespersonid + lk_uxagentcomponentrevision_createdby + createdby + uxagentcomponentrevision + createdby - 2 + 0 - 55422a5c-6bf9-4f04-bcb1-256a2004f086 + 4dcc602a-0d2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable - false + true - true - false - user_userapplicationmetadata + false + true + lk_uxagentcomponentrevision_createdonbehalfby None - 6.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -339693,27 +389020,27 @@ false systemuserid systemuser - user_userapplicationmetadata - owninguser - userapplicationmetadata - owninguser + lk_uxagentcomponentrevision_createdonbehalfby + createdonbehalfby + uxagentcomponentrevision + createdonbehalfby 0 - 6080bdf6-2dc1-4d09-9206-1ecec97a7ad2 + 53cc602a-0d2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable - false + true - true - false - lk_transformationparametermapping_modifiedonbehalfby + false + true + lk_uxagentcomponentrevision_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -339747,27 +389074,27 @@ false systemuserid systemuser - lk_transformationparametermapping_modifiedonbehalfby - modifiedonbehalfby - transformationparametermapping - modifiedonbehalfby + lk_uxagentcomponentrevision_modifiedby + modifiedby + uxagentcomponentrevision + modifiedby 0 - 2c23cd2a-2f10-4bec-92c5-c2e57b9cd8bd + 59cc602a-0d2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable - false + true - true - false - lk_importentitymapping_createdonbehalfby + false + true + lk_uxagentcomponentrevision_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -339801,36 +389128,36 @@ false systemuserid systemuser - lk_importentitymapping_createdonbehalfby - createdonbehalfby - importentitymapping - createdonbehalfby + lk_uxagentcomponentrevision_modifiedonbehalfby + modifiedonbehalfby + uxagentcomponentrevision + modifiedonbehalfby 0 - 5d3ffbff-2c12-4e9e-9f8a-16e73a2988ba + 6bcc602a-0d2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable - false + true - true + false true - SystemUser_ProcessSessions + user_uxagentcomponentrevision None - 5.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 110 + true false @@ -339855,15 +389182,15 @@ false systemuserid systemuser - SystemUser_ProcessSessions - regardingobjectid - processsession - regardingobjectid_systemuser + user_uxagentcomponentrevision + owninguser + uxagentcomponentrevision + owninguser 0 - c25f5eaf-8f92-4ec9-8ed1-65f310fffdc2 + 0aec662a-84f9-4eb1-b42e-2a7a8c36ef45 false @@ -339872,10 +389199,10 @@ false true - true - lk_templatebase_createdonbehalfby + false + lk_userapplicationmetadata_modifiedonbehalfby None - 5.0.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -339909,15 +389236,15 @@ false systemuserid systemuser - lk_templatebase_createdonbehalfby - createdonbehalfby - template - createdonbehalfby + lk_userapplicationmetadata_modifiedonbehalfby + modifiedonbehalfby + userapplicationmetadata + modifiedonbehalfby 0 - 882a7c00-65af-485a-8105-4c8f52d8ac0c + 2c23cd2a-2f10-4bec-92c5-c2e57b9cd8bd false @@ -339927,7 +389254,7 @@ true false - lk_lookupmapping_createdby + lk_importentitymapping_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -339963,27 +389290,27 @@ false systemuserid systemuser - lk_lookupmapping_createdby - createdby - lookupmapping - createdby + lk_importentitymapping_createdonbehalfby + createdonbehalfby + importentitymapping + createdonbehalfby 0 - ab59f9c2-b9f1-4959-af66-b0b025815cbd + 4e2d8b2b-e6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_mobileofflineprofileitem_modifiedonbehalfby + lk_aiskillconfig_createdby None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -340017,27 +389344,27 @@ false systemuserid systemuser - lk_mobileofflineprofileitem_modifiedonbehalfby - modifiedonbehalfby - mobileofflineprofileitem - modifiedonbehalfby + lk_aiskillconfig_createdby + createdby + aiskillconfig + createdby 0 - d7e0a963-8be2-422b-a3a9-4c8b9f0e2c8b + 542d8b2b-e6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_processsessionbase_modifiedonbehalfby + lk_aiskillconfig_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -340071,27 +389398,27 @@ false systemuserid systemuser - lk_processsessionbase_modifiedonbehalfby - modifiedonbehalfby - processsession - modifiedonbehalfby + lk_aiskillconfig_createdonbehalfby + createdonbehalfby + aiskillconfig + createdonbehalfby 0 - 3ca6eb78-ef90-4784-a92a-5a3aff9f2e5e + 5a2d8b2b-e6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_processsession_createdby + lk_aiskillconfig_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -340125,27 +389452,27 @@ false systemuserid systemuser - lk_processsession_createdby - createdby - processsession - createdby + lk_aiskillconfig_modifiedby + modifiedby + aiskillconfig + modifiedby 0 - 10c133cc-816d-4a08-b821-44f8fdb02c0e + 602d8b2b-e6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_personaldocumenttemplatebase_createdby + lk_aiskillconfig_modifiedonbehalfby None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -340179,27 +389506,27 @@ false systemuserid systemuser - lk_personaldocumenttemplatebase_createdby - createdby - personaldocumenttemplate - createdby + lk_aiskillconfig_modifiedonbehalfby + modifiedonbehalfby + aiskillconfig + modifiedonbehalfby 0 - 357be860-2ad9-446e-bdc1-376254fb7865 + 722d8b2b-e6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_publisherbase_modifiedonbehalfby + user_aiskillconfig None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -340233,27 +389560,27 @@ false systemuserid systemuser - lk_publisherbase_modifiedonbehalfby - modifiedonbehalfby - publisher - modifiedonbehalfby + user_aiskillconfig + owninguser + aiskillconfig + owninguser 0 - 27828cd7-3c21-408d-81fc-d5cd1e78747f + 93db492c-145d-42f4-b62c-ad0e8a37824b false false iscustomizable - true + false true true - lk_MobileOfflineProfile_createdonbehalfby + lk_processsessionbase_createdonbehalfby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -340287,25 +389614,25 @@ false systemuserid systemuser - lk_MobileOfflineProfile_createdonbehalfby + lk_processsessionbase_createdonbehalfby createdonbehalfby - mobileofflineprofile + processsession createdonbehalfby 0 - faea0b04-ee96-4b5c-9ec3-0e2eb1507786 + c2e6662c-e8ae-4efe-af55-ca125268e8ec false false iscustomizable - false + true true - false - lk_timezonerule_createdby + true + lk_phonecall_modifiedby None 5.0.0.0 OneToManyRelationship @@ -340341,15 +389668,15 @@ false systemuserid systemuser - lk_timezonerule_createdby - createdby - timezonerule - createdby + lk_phonecall_modifiedby + modifiedby + phonecall + modifiedby_phonecall 0 - 92b8a900-0846-497c-b933-66ebb85f221f + 7588182d-9363-4907-9cbf-58b54ae9e781 false @@ -340359,9 +389686,9 @@ true true - lk_contactbase_createdby + lk_newprocess_modifiedby None - 5.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -340395,27 +389722,27 @@ false systemuserid systemuser - lk_contactbase_createdby - createdby - contact - createdby + lk_newprocess_modifiedby + modifiedby + newprocess + modifiedbyname 0 - 630fd784-f29d-4d51-81c4-00ad2ea5d0cd + bc1d1c2d-fa56-479d-afd4-03b7ebacf859 false false iscustomizable - true + false true - true - lk_slakpiinstancebase_createdonbehalfby + false + SystemUser_SyncError None - 7.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -340449,15 +389776,15 @@ false systemuserid systemuser - lk_slakpiinstancebase_createdonbehalfby - createdonbehalfby - slakpiinstance - createdonbehalfby + SystemUser_SyncError + owninguser + syncerror + regardingobjectid_systemuser 0 - a868cec8-1cce-4b39-bbe8-f466bf6555a7 + 68b64c2d-2ad5-414c-bab4-a0de28aafa91 false @@ -340467,7 +389794,7 @@ true true - system_user_workflow + lk_savedqueryvisualizationbase_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -340503,15 +389830,15 @@ false systemuserid systemuser - system_user_workflow - owninguser - workflow - owninguser + lk_savedqueryvisualizationbase_modifiedonbehalfby + modifiedonbehalfby + savedqueryvisualization + modifiedonbehalfby 0 - 982f159d-54b3-436d-b119-fde01880a2d5 + bc5a162e-4996-4e9e-bacb-4a8dd6ac79fb false @@ -340520,8 +389847,8 @@ false true - false - lk_duplicaterulebase_createdby + true + lk_subjectbase_createdby None 5.0.0.0 OneToManyRelationship @@ -340557,15 +389884,15 @@ false systemuserid systemuser - lk_duplicaterulebase_createdby + lk_subjectbase_createdby createdby - duplicaterule + subject createdby 0 - 345db276-bc63-4bbf-90dd-b7a11035c07f + 2c941c2e-40be-402e-b77c-e9ed1f880ec0 false @@ -340575,12 +389902,12 @@ true true - lk_appointment_createdonbehalfby + lk_expiredprocess_modifiedonbehalfby None - 5.0.0.0 + 8.2.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -340611,15 +389938,15 @@ false systemuserid systemuser - lk_appointment_createdonbehalfby - createdonbehalfby - appointment - createdonbehalfby_appointment + lk_expiredprocess_modifiedonbehalfby + modifiedonbehalfby + expiredprocess + modifiedonbehalfbyname 0 - b86cf137-c426-49d7-8c56-d5be0013059d + b81d702e-d53e-4d12-9acc-3a629131e566 false @@ -340629,7 +389956,61 @@ true true - lk_authorizationserver_modifiedby + lk_officedocumentbase_modifiedonbehalfby + None + 7.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_officedocumentbase_modifiedonbehalfby + modifiedonbehalfby + officedocument + modifiedonbehalfby + + 0 + + + 5430d62e-ad0d-48e2-8589-0fa07b596c9c + + false + + false + iscustomizable + false + + true + false + lk_tracelog_createdby None 6.0.0.0 OneToManyRelationship @@ -340665,15 +390046,69 @@ false systemuserid systemuser - lk_authorizationserver_modifiedby + lk_tracelog_createdby + createdby + tracelog + createdby + + 0 + + + f7cd3c2f-3204-4491-97f8-e7e9cd8425d8 + + false + + false + iscustomizable + false + + true + false + lk_importmapbase_modifiedby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_importmapbase_modifiedby modifiedby - authorizationserver + importmap modifiedby 0 - b883b830-5b45-4068-973d-422ed4d6a3dd + 82d9622f-d4f3-4706-9248-22f9f397304c false @@ -340682,8 +390117,8 @@ false true - true - createdby_connection_role + false + createdby_plugintypestatistic None 5.0.0.0 OneToManyRelationship @@ -340719,30 +390154,30 @@ false systemuserid systemuser - createdby_connection_role + createdby_plugintypestatistic createdby - connectionrole + plugintypestatistic createdby 0 - d6eb3243-4724-4b83-a2a0-f1efd1643345 + 1d55972f-06be-48a3-9f9a-d811ec9272ca false false iscustomizable - true + false true true - lk_appconfigmaster_modifiedby + user_customer_relationship None - 9.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -340773,27 +390208,27 @@ false systemuserid systemuser - systemuser_appconfigmaster_modifiedby - modifiedby - appconfigmaster - appconfigmaster_modifiedby + user_customer_relationship + owninguser + customerrelationship + owninguser 0 - 7588182d-9363-4907-9cbf-58b54ae9e781 + 313b982f-66b3-4162-82d9-5fdd9d22455c false false iscustomizable - true + false true - true - lk_newprocess_modifiedby + false + lk_systemapplicationmetadata_createdonbehalfby None - 8.2.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -340827,15 +390262,15 @@ false systemuserid systemuser - lk_newprocess_modifiedby - modifiedby - newprocess - modifiedbyname + lk_systemapplicationmetadata_createdonbehalfby + createdonbehalfby + systemapplicationmetadata + createdonbehalfby 0 - 090724e3-06cf-4397-971e-f7a9d455d1bb + dd24b92f-2c53-4794-9b6b-5e5499a2da6f false @@ -340844,8 +390279,8 @@ false true - false - lk_columnmapping_modifiedonbehalfby + true + lk_businessunitnewsarticlebase_createdby None 5.0.0.0 OneToManyRelationship @@ -340881,27 +390316,27 @@ false systemuserid systemuser - lk_columnmapping_modifiedonbehalfby - modifiedonbehalfby - columnmapping - modifiedonbehalfby + lk_businessunitnewsarticlebase_createdby + createdby + businessunitnewsarticle + createdby 0 - fc4363b6-6e0a-49da-b2d2-95db79921b95 + 2229eb2f-119f-479a-b85f-93ec5b6a70e3 false false iscustomizable - true + false true - true - lk_translationprocess_createdby + false + lk_transformationmapping_modifiedby None - 8.2.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -340935,15 +390370,15 @@ false systemuserid systemuser - lk_translationprocess_createdby - createdby - translationprocess - createdbyname + lk_transformationmapping_modifiedby + modifiedby + transformationmapping + modifiedby 0 - f1d59b3b-a735-4c5d-b852-003ce86ad9b6 + 0d1fb230-925e-4bc4-b394-1a5dfceeeb48 false @@ -340952,8 +390387,8 @@ false true - false - lk_monthlyfiscalcalendar_modifiedby + true + lk_serviceendpointbase_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -340989,25 +390424,25 @@ false systemuserid systemuser - lk_monthlyfiscalcalendar_modifiedby - modifiedby - monthlyfiscalcalendar - modifiedby + lk_serviceendpointbase_createdonbehalfby + createdonbehalfby + serviceendpoint + createdonbehalfby 0 - 953a0299-fe0f-42cf-9ab0-4b3885620120 + b883b830-5b45-4068-973d-422ed4d6a3dd false false iscustomizable - true + false true true - lk_systemuserbase_modifiedby + createdby_connection_role None 5.0.0.0 OneToManyRelationship @@ -341043,15 +390478,15 @@ false systemuserid systemuser - lk_systemuserbase_modifiedby - modifiedby - systemuser - modifiedby + createdby_connection_role + createdby + connectionrole + createdby 0 - 1e206666-179c-4c8e-a6c3-fa1d9d532790 + f6015a31-ca29-4e85-a955-92f86ff32247 false @@ -341061,12 +390496,12 @@ true true - lk_expiredprocess_modifiedby + lk_untrackedemail_modifiedby None - 8.2.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -341097,27 +390532,27 @@ false systemuserid systemuser - lk_expiredprocess_modifiedby + lk_untrackedemail_modifiedby modifiedby - expiredprocess - modifiedbyname + untrackedemail + modifiedby_untrackedemail 0 - 2fb001f8-8c74-4d8f-a3fe-f3f60bc0886e + 81dd5e31-987c-40ba-bdce-16e268bafc15 false false iscustomizable - true + false true true - lk_SocialProfile_createdonbehalfby + lk_savedqueryvisualizationbase_createdonbehalfby None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -341151,30 +390586,30 @@ false systemuserid systemuser - lk_SocialProfile_createdonbehalfby + lk_savedqueryvisualizationbase_createdonbehalfby createdonbehalfby - socialprofile + savedqueryvisualization createdonbehalfby 0 - d49b393b-9fd9-4066-a5f1-3cfe62641617 + 88d90632-a200-e511-80d2-00155d217c03 false false iscustomizable - false + true true true - lk_importmap_createdonbehalfby + lk_knowledgearticle_createdby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -341205,15 +390640,15 @@ false systemuserid systemuser - lk_importmap_createdonbehalfby - createdonbehalfby - importmap - createdonbehalfby + lk_knowledgearticle_createdby + createdby + knowledgearticle + createdby 0 - ad780f8e-cff9-4e6d-ba87-0eb174f65ed9 + 8ed90632-a200-e511-80d2-00155d217c03 false @@ -341223,12 +390658,12 @@ true true - modifiedby_connection + lk_knowledgearticle_createdonbehalfby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -341259,30 +390694,30 @@ false systemuserid systemuser - modifiedby_connection - modifiedby - connection - modifiedby + lk_knowledgearticle_createdonbehalfby + createdonbehalfby + knowledgearticle + createdonbehalfby 0 - cae13465-e880-44e1-b7c9-d6a887c9b740 + 94d90632-a200-e511-80d2-00155d217c03 false false iscustomizable - false + true true true - lk_calendarrule_createdonbehalfby + lk_knowledgearticle_modifiedby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -341313,30 +390748,30 @@ false systemuserid systemuser - lk_calendarrule_createdonbehalfby - createdonbehalfby - calendarrule - createdonbehalfby + lk_knowledgearticle_modifiedby + modifiedby + knowledgearticle + modifiedby 0 - 02861173-1335-4886-8699-993a3107f1d7 + 9ad90632-a200-e511-80d2-00155d217c03 false false iscustomizable - false + true true - false - lk_import_createdonbehalfby + true + lk_knowledgearticle_modifiedonbehalfby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -341367,27 +390802,27 @@ false systemuserid systemuser - lk_import_createdonbehalfby - createdonbehalfby - import - createdonbehalfby + lk_knowledgearticle_modifiedonbehalfby + modifiedonbehalfby + knowledgearticle + modifiedonbehalfby 0 - 036bd54e-96ce-450f-ab4c-971f7c8c1ce1 + acd90632-a200-e511-80d2-00155d217c03 false false iscustomizable - false + true true - false - lk_advancedsimilarityrule_createdby + true + user_knowledgearticle None - 8.1.0.0 + 8.0.0.0 OneToManyRelationship UseCollectionName @@ -341421,27 +390856,27 @@ false systemuserid systemuser - lk_advancedsimilarityrule_createdby - createdby - advancedsimilarityrule - createdby + user_knowledgearticle + owninguser + knowledgearticle + owninguser 0 - 66258bbb-a303-4547-af4c-5e3e97f6e085 + 0acf9032-208b-4a12-beb8-f29c5b2e3736 false false iscustomizable - true + false true - true - lk_slaitembase_createdonbehalfby + false + lk_semiannualfiscalcalendar_modifiedby None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -341475,15 +390910,15 @@ false systemuserid systemuser - lk_slaitembase_createdonbehalfby - createdonbehalfby - slaitem - createdonbehalfby + lk_semiannualfiscalcalendar_modifiedby + modifiedby + semiannualfiscalcalendar + modifiedby 0 - 418d9536-47d9-42eb-810f-09aa831d4614 + ee00b932-ba0f-4520-a073-8ee4b6e57402 false @@ -341492,13 +390927,13 @@ false true - true - lk_offlinecommanddefinition_createdonbehalfby + false + lk_isvconfigbase_createdby None - 9.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -341529,15 +390964,15 @@ false systemuserid systemuser - lk_offlinecommanddefinition_createdonbehalfby - createdonbehalfby - offlinecommanddefinition - createdonbehalfby + lk_isvconfigbase_createdby + createdby + isvconfig + createdby 0 - 0f7d69fd-12bc-406f-beed-7f00b53c04b6 + 31e23133-62f5-f011-8406-7ced8d736212 false @@ -341547,12 +390982,12 @@ true true - lk_navigationsetting_createdonbehalfby + lk_anyprivilegeentity_createdby None - 9.0.0.0 + 1.129.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -341583,27 +391018,27 @@ false systemuserid systemuser - systemuser_navigationsetting_createdonbehalfby - createdonbehalfby - navigationsetting - navigationsetting_createdonbehalfby + lk_anyprivilegeentity_createdby + createdby + anyprivilegeentity + createdby 0 - dffaad7a-8faf-43c9-8e99-8feb9d353552 + 3ae23133-62f5-f011-8406-7ced8d736212 false false iscustomizable - false + true true - false - lk_sdkmessagerequestfield_createdonbehalfby + true + lk_anyprivilegeentity_createdonbehalfby None - 5.0.0.0 + 1.129.0.0 OneToManyRelationship DoNotDisplay @@ -341637,27 +391072,27 @@ false systemuserid systemuser - lk_sdkmessagerequestfield_createdonbehalfby + lk_anyprivilegeentity_createdonbehalfby createdonbehalfby - sdkmessagerequestfield + anyprivilegeentity createdonbehalfby 0 - 8349de8c-1fc6-462e-8472-85607f4475fb + 40e23133-62f5-f011-8406-7ced8d736212 false false iscustomizable - false + true true true - lk_savedquery_modifiedonbehalfby + lk_anyprivilegeentity_modifiedby None - 5.0.0.0 + 1.129.0.0 OneToManyRelationship DoNotDisplay @@ -341691,27 +391126,27 @@ false systemuserid systemuser - lk_savedquery_modifiedonbehalfby - modifiedonbehalfby - savedquery - modifiedonbehalfby + lk_anyprivilegeentity_modifiedby + modifiedby + anyprivilegeentity + modifiedby 0 - 2749fcdd-997a-453c-95af-49f958325e52 + 46e23133-62f5-f011-8406-7ced8d736212 false false iscustomizable - false + true true true - lk_solutioncomponentbase_modifiedonbehalfby + lk_anyprivilegeentity_modifiedonbehalfby None - 5.0.0.0 + 1.129.0.0 OneToManyRelationship DoNotDisplay @@ -341745,27 +391180,27 @@ false systemuserid systemuser - lk_solutioncomponentbase_modifiedonbehalfby + lk_anyprivilegeentity_modifiedonbehalfby modifiedonbehalfby - solutioncomponent + anyprivilegeentity modifiedonbehalfby 0 - 8c745a44-acd7-4441-a0a1-82cc9b8823c4 + 93be8933-27f6-4915-82dc-385ddb81491d false false iscustomizable - false + true true true - lk_connectionrolebase_createdonbehalfby + lk_ChannelProperty_modifiedby None - 5.0.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -341799,27 +391234,27 @@ false systemuserid systemuser - lk_connectionrolebase_createdonbehalfby - createdonbehalfby - connectionrole - createdonbehalfby + lk_ChannelProperty_modifiedby + modifiedby + channelproperty + modifiedby 0 - 7599b175-89bf-4935-9f40-9598dd9e8e45 + 0b1dff33-8e8f-4259-aa34-cdf968b9450d false false iscustomizable - false + true true true - lk_syncattributemappingprofile_modifiedonbehalfby + lk_appointment_createdby None - 7.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -341853,15 +391288,15 @@ false systemuserid systemuser - lk_syncattributemappingprofile_modifiedonbehalfby - modifiedonbehalfby - syncattributemappingprofile - modifiedonbehalfby + lk_appointment_createdby + createdby + appointment + createdby_appointment 0 - 74e74718-35a4-439a-bea6-b7d686770b38 + f3390434-747d-40f6-8c01-fc440e05c0cc false @@ -341871,9 +391306,9 @@ true true - lk_actioncardbase_createdby + lk_processsession_completedby None - 8.2.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -341907,27 +391342,27 @@ false systemuserid systemuser - lk_actioncardbase_createdby - createdby - actioncard - createdby + lk_processsession_completedby + completedby + processsession + completedby 0 - 3921d59d-f66d-4dea-a4c1-f71556a995f7 + 32f88634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_sdkmessageprocessingstepsecureconfig_createdonbehalfby + false + true + lk_sourcecontrolbranchconfiguration_createdby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -341961,27 +391396,27 @@ false systemuserid systemuser - lk_sdkmessageprocessingstepsecureconfig_createdonbehalfby - createdonbehalfby - sdkmessageprocessingstepsecureconfig - createdonbehalfby + lk_sourcecontrolbranchconfiguration_createdby + createdby + sourcecontrolbranchconfiguration + createdby 0 - 11401aa1-f89c-4287-bb4c-e8b5260190c3 + 38f88634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_webresourcebase_modifiedonbehalfby + lk_sourcecontrolbranchconfiguration_createdonbehalfby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342015,27 +391450,27 @@ false systemuserid systemuser - lk_webresourcebase_modifiedonbehalfby - modifiedonbehalfby - webresource - modifiedonbehalfby + lk_sourcecontrolbranchconfiguration_createdonbehalfby + createdonbehalfby + sourcecontrolbranchconfiguration + createdonbehalfby 0 - 3d529673-0c95-4614-8ecc-2845a8b98398 + 3ef88634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_integrationstatus_modifiedby + false + true + lk_sourcecontrolbranchconfiguration_modifiedby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342069,27 +391504,27 @@ false systemuserid systemuser - lk_integrationstatus_modifiedby + lk_sourcecontrolbranchconfiguration_modifiedby modifiedby - integrationstatus + sourcecontrolbranchconfiguration modifiedby 0 - c7c08255-93e4-445c-b6af-bf387e4b883b + 44f88634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_letter + lk_sourcecontrolbranchconfiguration_modifiedonbehalfby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342123,30 +391558,30 @@ false systemuserid systemuser - user_letter - owninguser - letter - owninguser_letter + lk_sourcecontrolbranchconfiguration_modifiedonbehalfby + modifiedonbehalfby + sourcecontrolbranchconfiguration + modifiedonbehalfby 0 - 13d7c6cf-0956-4a06-b0b6-62c61b6a159c + 57f98634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_tracelog_modifiedonbehalfby + false + true + lk_sourcecontrolcomponent_createdby None - 6.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -342177,27 +391612,27 @@ false systemuserid systemuser - lk_tracelog_modifiedonbehalfby - modifiedonbehalfby - tracelog - modifiedonbehalfby + lk_sourcecontrolcomponent_createdby + createdby + sourcecontrolcomponent + createdby 0 - b6ea19a5-162c-4db1-92b8-4335401ccfa3 + 5df98634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_timezonedefinition_createdby + false + true + lk_sourcecontrolcomponent_createdonbehalfby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342231,27 +391666,27 @@ false systemuserid systemuser - lk_timezonedefinition_createdby - createdby - timezonedefinition - createdby + lk_sourcecontrolcomponent_createdonbehalfby + createdonbehalfby + sourcecontrolcomponent + createdonbehalfby 0 - 65e1ff64-37bf-4fe5-923c-65766ecab713 + 63f98634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_reportcategory_createdonbehalfby + lk_sourcecontrolcomponent_modifiedby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342285,27 +391720,27 @@ false systemuserid systemuser - lk_reportcategory_createdonbehalfby - createdonbehalfby - reportcategory - createdonbehalfby + lk_sourcecontrolcomponent_modifiedby + modifiedby + sourcecontrolcomponent + modifiedby 0 - cce9acab-7944-4e1e-aec2-80e18fb0835d + 69f98634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - createdby_plugintype + false + true + lk_sourcecontrolcomponent_modifiedonbehalfby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342339,27 +391774,27 @@ false systemuserid systemuser - createdby_plugintype - createdby - plugintype - createdby + lk_sourcecontrolcomponent_modifiedonbehalfby + modifiedonbehalfby + sourcecontrolcomponent + modifiedonbehalfby 0 - d577aca4-433c-4e68-9271-3fa501b6f12f + 2ffa8634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_wizardaccessprivilege_createdonbehalfby + false + true + lk_sourcecontrolcomponentpayload_createdby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342393,30 +391828,30 @@ false systemuserid systemuser - lk_wizardaccessprivilege_createdonbehalfby - createdonbehalfby - wizardaccessprivilege - createdonbehalfby + lk_sourcecontrolcomponentpayload_createdby + createdby + sourcecontrolcomponentpayload + createdby 0 - 70ce37b8-2507-4bf7-85b9-e44e8946cfef + 35fa8634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_partnerapplication_createdonbehalfby + lk_sourcecontrolcomponentpayload_createdonbehalfby None - 6.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -342447,27 +391882,27 @@ false systemuserid systemuser - lk_partnerapplication_createdonbehalfby + lk_sourcecontrolcomponentpayload_createdonbehalfby createdonbehalfby - partnerapplication + sourcecontrolcomponentpayload createdonbehalfby 0 - ac332ef3-44aa-4c14-91fe-6d082c6d86cf + 3bfa8634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_organization_createdonbehalfby + lk_sourcecontrolcomponentpayload_modifiedby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342501,27 +391936,27 @@ false systemuserid systemuser - lk_organization_createdonbehalfby - createdonbehalfby - organization - createdonbehalfby + lk_sourcecontrolcomponentpayload_modifiedby + modifiedby + sourcecontrolcomponentpayload + modifiedby 0 - 34fa1661-5e7d-4faf-a18f-ab0d0238756d + 41fa8634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_calendar_modifiedonbehalfby + lk_sourcecontrolcomponentpayload_modifiedonbehalfby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342555,27 +391990,81 @@ false systemuserid systemuser - lk_calendar_modifiedonbehalfby + lk_sourcecontrolcomponentpayload_modifiedonbehalfby modifiedonbehalfby - calendar + sourcecontrolcomponentpayload modifiedonbehalfby 0 - 30e3529a-80af-4582-81b0-6c6dcb363451 + 4dfb8634-b4ba-f011-bbd3-7c1e52365f30 false - false + true + iscustomizable + false + + false + true + lk_sourcecontrolconfiguration_createdby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_sourcecontrolconfiguration_createdby + createdby + sourcecontrolconfiguration + createdby + + 0 + + + 59fb8634-b4ba-f011-bbd3-7c1e52365f30 + + false + + true iscustomizable true - true + false true - lk_slakpiinstancebase_modifiedby + lk_sourcecontrolconfiguration_createdonbehalfby None - 7.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342609,27 +392098,27 @@ false systemuserid systemuser - lk_slakpiinstancebase_modifiedby - modifiedby - slakpiinstance - modifiedby + lk_sourcecontrolconfiguration_createdonbehalfby + createdonbehalfby + sourcecontrolconfiguration + createdonbehalfby 0 - 34a0e69a-d0b7-4dd4-913c-22f6d44630ae + 65fb8634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - createdby_plugintracelog + false + true + lk_sourcecontrolconfiguration_modifiedby None - 7.1.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342663,27 +392152,27 @@ false systemuserid systemuser - createdby_plugintracelog - createdby - plugintracelog - createdby + lk_sourcecontrolconfiguration_modifiedby + modifiedby + sourcecontrolconfiguration + modifiedby 0 - e0008584-99ef-44e9-8ef4-9bfb825e1adb + 6ffb8634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - user_convertrule + lk_sourcecontrolconfiguration_modifiedonbehalfby None - 6.1.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342717,30 +392206,30 @@ false systemuserid systemuser - user_convertrule - owninguser - convertrule - owninguser + lk_sourcecontrolconfiguration_modifiedonbehalfby + modifiedonbehalfby + sourcecontrolconfiguration + modifiedonbehalfby 0 - c839519d-d2e8-4223-9b74-d45253bd73a7 + cefb8634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_authorizationserver_createdby + lk_stagedsourcecontrolcomponent_createdby None - 6.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -342771,30 +392260,30 @@ false systemuserid systemuser - lk_authorizationserver_createdby + lk_stagedsourcecontrolcomponent_createdby createdby - authorizationserver + stagedsourcecontrolcomponent createdby 0 - 8d0c2b99-3d7c-41ad-9911-952b176e8a18 + d4fb8634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_appconfiginstance_modifiedby + lk_stagedsourcecontrolcomponent_createdonbehalfby None - 9.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -342825,27 +392314,27 @@ false systemuserid systemuser - systemuser_appconfiginstance_modifiedby - modifiedby - appconfiginstance - appconfiginstance_modifiedby + lk_stagedsourcecontrolcomponent_createdonbehalfby + createdonbehalfby + stagedsourcecontrolcomponent + createdonbehalfby 0 - c9bdfb4c-6520-44d1-93a1-6387f9bbdc53 + dafb8634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_picklistmapping_createdonbehalfby + false + true + lk_stagedsourcecontrolcomponent_modifiedby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -342879,30 +392368,30 @@ false systemuserid systemuser - lk_picklistmapping_createdonbehalfby - createdonbehalfby - picklistmapping - createdonbehalfby + lk_stagedsourcecontrolcomponent_modifiedby + modifiedby + stagedsourcecontrolcomponent + modifiedby 0 - badee46b-1f1f-4562-9caa-a2264778de24 + e0fb8634-b4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_knowledgearticleviews_createdby + lk_stagedsourcecontrolcomponent_modifiedonbehalfby None - 8.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -342933,15 +392422,15 @@ false systemuserid systemuser - lk_knowledgearticleviews_createdby - createdby - knowledgearticleviews - createdby + lk_stagedsourcecontrolcomponent_modifiedonbehalfby + modifiedonbehalfby + stagedsourcecontrolcomponent + modifiedonbehalfby 0 - ee0bcac3-36f3-4fd1-b72a-5a6180e37d11 + 34058934-64d8-4515-a31e-739ce157bc08 false @@ -342951,12 +392440,12 @@ true false - SystemUser_Imports + lk_azureserviceconnection_modifiedonbehalfby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -342987,25 +392476,25 @@ false systemuserid systemuser - SystemUser_Imports - owninguser - import - owninguser + lk_azureserviceconnection_modifiedonbehalfby + modifiedonbehalfby + azureserviceconnection + modifiedonbehalfby 0 - 56bf74db-1c03-438b-ad7d-d903ed865955 + 28a6b634-3e21-4a22-8ec4-5597a47569ad false false iscustomizable - false + true true - false - modifiedby_sdkmessage + true + lk_connectionbase_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -343041,25 +392530,25 @@ false systemuserid systemuser - modifiedby_sdkmessage - modifiedby - sdkmessage - modifiedby + lk_connectionbase_createdonbehalfby + createdonbehalfby + connection + createdonbehalfby 0 - 03227562-1bbc-4ad6-80ef-cc47bb64714a + 5efcc234-dd3d-434a-8ff2-b75a6d45fd76 false false iscustomizable - false + true true - false - lk_ownermapping_createdonbehalfby + true + contact_owning_user None 5.0.0.0 OneToManyRelationship @@ -343095,15 +392584,15 @@ false systemuserid systemuser - lk_ownermapping_createdonbehalfby - createdonbehalfby - ownermapping - createdonbehalfby + contact_owning_user + owninguser + contact + owninguser 0 - 633466ea-c6fd-479f-9773-a95b985b2c8a + 5d57c934-9a5a-4d2d-8121-8c3fc9ae23cb false @@ -343112,8 +392601,8 @@ false true - false - modifiedby_attributemap + true + lk_documentindex_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -343149,15 +392638,15 @@ false systemuserid systemuser - modifiedby_attributemap - modifiedby - attributemap - modifiedby + lk_documentindex_modifiedonbehalfby + modifiedonbehalfby + documentindex + modifiedonbehalfby 0 - 5708908d-335e-4dcb-a4b1-4cd1971af72d + 8b0d3135-26b2-4811-870d-9376860e6b8c false @@ -343167,7 +392656,7 @@ true true - lk_kbarticlecomment_createdonbehalfby + lk_activitypointer_modifiedby None 5.0.0.0 OneToManyRelationship @@ -343203,30 +392692,30 @@ false systemuserid systemuser - lk_kbarticlecomment_createdonbehalfby - createdonbehalfby - kbarticlecomment - createdonbehalfby + lk_activitypointer_modifiedby + modifiedby + activitypointer + modifiedby 0 - 9ae1c5ca-9c5e-4634-911f-9779a6b58299 + dd874335-3204-4cbf-beba-b2dcec54fb2c false false iscustomizable - true + false true true - lk_navigationsetting_modifiedonbehalfby + lk_solutionbase_createdonbehalfby None - 9.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -343257,15 +392746,15 @@ false systemuserid systemuser - systemuser_navigationsetting_modifiedonbehalfby - modifiedonbehalfby - navigationsetting - navigationsetting_modifiedonbehalfby + lk_solutionbase_createdonbehalfby + createdonbehalfby + solution + createdonbehalfby 0 - 20dc2221-854d-4ffc-8d2c-2ca7c6a1dfe4 + ce1b7435-85dc-45ca-85e8-53ddcf65576a false @@ -343275,7 +392764,7 @@ true false - lk_timezonerule_createdonbehalfby + lk_sdkmessageresponsefield_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -343311,15 +392800,15 @@ false systemuserid systemuser - lk_timezonerule_createdonbehalfby - createdonbehalfby - timezonerule - createdonbehalfby + lk_sdkmessageresponsefield_modifiedonbehalfby + modifiedonbehalfby + sdkmessageresponsefield + modifiedonbehalfby 0 - f6015a31-ca29-4e85-a955-92f86ff32247 + 57e48a35-a433-4a90-8665-1dfd702df46d false @@ -343329,9 +392818,9 @@ true true - lk_untrackedemail_modifiedby - None - 5.0.0.0 + SystemUser_SyncErrors + Append + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -343350,12 +392839,12 @@ NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade + Cascade + Cascade + Cascade + Cascade + Cascade + Cascade NoCascade @@ -343365,25 +392854,25 @@ false systemuserid systemuser - lk_untrackedemail_modifiedby - modifiedby - untrackedemail - modifiedby_untrackedemail + SystemUser_SyncErrors + regardingobjectid + syncerror + regardingobjectid_systemuser_syncerror - 0 + 1 - b6928293-c433-4da5-8f25-208338bcaac4 + dacd8d35-ee7a-456f-9b81-66b1f9c6387b false false iscustomizable - false + true true true - lk_templatebase_createdby + user_fax None 5.0.0.0 OneToManyRelationship @@ -343419,39 +392908,60 @@ false systemuserid systemuser - lk_templatebase_createdby - createdby - template - createdby + user_fax + owninguser + fax + owninguser_fax 0 - fb3114e5-189a-487c-b94c-84a847d744a8 + b6259935-f3ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - false + true true true - lk_routingruleitem_modifiedby - None - 6.1.0.0 + adx_webformsession_systemuser + Append + 1.0.0.0 OneToManyRelationship DoNotDisplay Details - - + + + eb1b993b-5d5b-4843-934e-9b22ff6eff01 + + true + + 1033 + + + 2d46e2a7-54b9-43ca-9071-11e977fee8a2 + + true + + 1030 + + + + eb1b993b-5d5b-4843-934e-9b22ff6eff01 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -343459,7 +392969,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -343473,15 +392983,15 @@ false systemuserid systemuser - lk_routingruleitem_modifiedby - modifiedby - routingruleitem - modifiedby + adx_webformsession_systemuser + adx_systemuser + adx_webformsession + adx_systemuser - 0 + 1 - 51c49322-b2b2-4b61-9822-7b15fe7f1467 + 3708c635-783a-4577-a8ee-57442bf007e3 false @@ -343491,7 +393001,7 @@ true true - lk_userformbase_modifiedonbehalfby + lk_reportentity_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -343527,15 +393037,15 @@ false systemuserid systemuser - lk_userformbase_modifiedonbehalfby - modifiedonbehalfby - userform - modifiedonbehalfby + lk_reportentity_createdonbehalfby + createdonbehalfby + reportentity + createdonbehalfby 0 - 080a2877-e286-4804-8c57-cb3c404e9af6 + 75ddd735-e961-46df-9c1c-57f065b23c7f false @@ -343544,8 +393054,8 @@ false true - true - workflow_dependency_modifiedby + false + modifiedby_entitymap None 5.0.0.0 OneToManyRelationship @@ -343581,27 +393091,27 @@ false systemuserid systemuser - workflow_dependency_modifiedby + modifiedby_entitymap modifiedby - workflowdependency + entitymap modifiedby 0 - b5b0aa08-798a-4246-96a8-dfd9a1085c08 + 9a6ce835-9447-4f71-8831-e5d7176dad50 false false iscustomizable - true + false true - true - lk_mobileofflineprofileitemassociation_createdonbehalfby + false + lk_importfilebase_modifiedby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -343635,30 +393145,30 @@ false systemuserid systemuser - lk_mobileofflineprofileitemassociation_createdonbehalfby - createdonbehalfby - mobileofflineprofileitemassociation - createdonbehalfby + lk_importfilebase_modifiedby + modifiedby + importfile + modifiedby 0 - 027b02b0-a75c-4206-9b7b-52898a2da6c3 + 09386d36-2f8e-40c0-beb6-299a297a6e85 false false iscustomizable - true + false true true - lk_customeraddress_createdonbehalfby + lk_customcontrol_modifiedonbehalfby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -343689,15 +393199,15 @@ false systemuserid systemuser - lk_customeraddress_createdonbehalfby - createdonbehalfby - customeraddress - createdonbehalfby + lk_customcontrol_modifiedonbehalfby + modifiedonbehalfby + customcontrol + modifiedonbehalfby 0 - 9a6ce835-9447-4f71-8831-e5d7176dad50 + 418d9536-47d9-42eb-810f-09aa831d4614 false @@ -343706,13 +393216,13 @@ false true - false - lk_importfilebase_modifiedby + true + lk_offlinecommanddefinition_createdonbehalfby None - 5.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -343743,25 +393253,25 @@ false systemuserid systemuser - lk_importfilebase_modifiedby - modifiedby - importfile - modifiedby + lk_offlinecommanddefinition_createdonbehalfby + createdonbehalfby + offlinecommanddefinition + createdonbehalfby 0 - 8be02a9d-0776-4c76-b35f-1c92dd791d9e + d9ede736-8903-488b-845b-51315ae6ab42 false false iscustomizable - true + false true true - lk_accountbase_modifiedby + user_activity None 5.0.0.0 OneToManyRelationship @@ -343797,15 +393307,15 @@ false systemuserid systemuser - lk_accountbase_modifiedby - modifiedby - account - modifiedby + user_activity + owninguser + activitypointer + owninguser 0 - 8c71fc44-20b3-4031-9465-2cd83d0bfb41 + b86cf137-c426-49d7-8c56-d5be0013059d false @@ -343815,12 +393325,12 @@ true true - lk_personaldocumenttemplatebase_modifiedonbehalfby + lk_authorizationserver_modifiedby None - 8.0.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -343851,27 +393361,27 @@ false systemuserid systemuser - lk_personaldocumenttemplatebase_modifiedonbehalfby - modifiedonbehalfby - personaldocumenttemplate - modifiedonbehalfby + lk_authorizationserver_modifiedby + modifiedby + authorizationserver + modifiedby 0 - 10b15bfa-eedd-4b6f-846c-bb08014a9c65 + 70500f38-b9a3-4c9a-84bd-bc66cfebc420 false false iscustomizable - false + true true - false - lk_category_createdby + true + lk_navigationsetting_createdby None - 8.1.0.0 + 9.0.0.0 OneToManyRelationship UseCollectionName @@ -343905,15 +393415,15 @@ false systemuserid systemuser - lk_category_createdby + systemuser_navigationsetting_createdby createdby - category - lk_category_createdby + navigationsetting + navigationsetting_createdby 0 - b7df4b76-1c74-46e6-9a28-9b678c27ee8f + b6b21738-26a2-4547-9e88-7f11b9c4be15 false @@ -343922,13 +393432,13 @@ false true - true - lk_customcontroldefaultconfig_modifiedby + false + lk_userfiscalcalendar_modifiedonbehalfby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -343959,15 +393469,15 @@ false systemuserid systemuser - lk_customcontroldefaultconfig_modifiedby - modifiedby - customcontroldefaultconfig - modifiedby + lk_userfiscalcalendar_modifiedonbehalfby + modifiedonbehalfby + userfiscalcalendar + modifiedonbehalfby 0 - b94705f4-8348-4606-bd19-4fd1265a0ae4 + 71fc3f38-7785-4256-92dc-b04cec3cc077 false @@ -343976,10 +393486,10 @@ false true - true - user_routingrule + false + lk_userfiscalcalendar_createdonbehalfby None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -344013,15 +393523,15 @@ false systemuserid systemuser - user_routingrule - owninguser - routingrule - owninguser + lk_userfiscalcalendar_createdonbehalfby + createdonbehalfby + userfiscalcalendar + createdonbehalfby 0 - 260bb86e-0ac1-499c-b0c0-3747e3847e74 + 53a65b38-8a38-4ef9-985e-63a293f8fa06 false @@ -344031,9 +393541,9 @@ true false - lk_SharePointData_modifiedonbehalfby + lk_fixedmonthlyfiscalcalendar_createdonbehalfby None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -344067,27 +393577,27 @@ false systemuserid systemuser - lk_SharePointData_modifiedonbehalfby - modifiedonbehalfby - sharepointdata - modifiedonbehalfby + lk_fixedmonthlyfiscalcalendar_createdonbehalfby + createdonbehalfby + fixedmonthlyfiscalcalendar + createdonbehalfby 0 - 6d7a56f9-c3af-425b-950c-4b0db119b1e5 + 3147ac38-bba6-4494-9626-908dc81aa18b false false iscustomizable - true + false true - true - lk_SocialProfile_modifiedonbehalfby + false + sup_principalid_systemuser None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -344121,25 +393631,25 @@ false systemuserid systemuser - lk_SocialProfile_modifiedonbehalfby - modifiedonbehalfby - socialprofile - modifiedonbehalfby + sup_principalid_systemuser + systemuserid + systemuserprincipals + systemuserid_systemuser 0 - dacd8d35-ee7a-456f-9b81-66b1f9c6387b + c895b738-e3e6-4912-8789-9b055bc282ac false false iscustomizable - true + false true - true - user_fax + false + modifiedby_sdkmessageresponsefield None 5.0.0.0 OneToManyRelationship @@ -344175,27 +393685,27 @@ false systemuserid systemuser - user_fax - owninguser - fax - owninguser_fax + modifiedby_sdkmessageresponsefield + modifiedby + sdkmessageresponsefield + modifiedby 0 - b50431ac-397c-4ba8-b1c8-7d53203a2dd9 + 363fd738-ccba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_activitypointer_modifiedonbehalfby + lk_supportusertable_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -344229,30 +393739,30 @@ false systemuserid systemuser - lk_activitypointer_modifiedonbehalfby - modifiedonbehalfby - activitypointer - modifiedonbehalfby + lk_supportusertable_createdby + createdby + supportusertable + createdby 0 - 3d931116-eb52-40e1-aebf-84c15f984d9f + 3c3fd738-ccba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_feedback_createdonbehalfby + lk_supportusertable_createdonbehalfby None - 8.1.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -344283,30 +393793,30 @@ false systemuserid systemuser - lk_feedback_createdonbehalfby + lk_supportusertable_createdonbehalfby createdonbehalfby - feedback + supportusertable createdonbehalfby 0 - 692fc626-e6e1-4d49-9ae9-9ddb54216093 + 423fd738-ccba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_appmodulecomponent_createdby + lk_supportusertable_modifiedby None - 8.2.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -344337,15 +393847,69 @@ false systemuserid systemuser - appmodulecomponent_createdby - createdby - appmodulecomponent - appmodulecomponent_createdby + lk_supportusertable_modifiedby + modifiedby + supportusertable + modifiedby 0 - 145592fe-3b12-4970-a0ee-21a8f47a65f1 + 483fd738-ccba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_supportusertable_modifiedonbehalfby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_supportusertable_modifiedonbehalfby + modifiedonbehalfby + supportusertable + modifiedonbehalfby + + 0 + + + f1ac2439-67a4-431b-a0c9-ed6e4f7e3592 false @@ -344354,8 +393918,8 @@ true true - false - lk_sharepointsitebase_modifiedby + true + lk_contactbase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -344391,15 +393955,15 @@ false systemuserid systemuser - lk_sharepointsitebase_modifiedby + lk_contactbase_modifiedby modifiedby - sharepointsite + contact modifiedby 0 - 6b4f264d-9608-4058-9749-16974ee3aacc + 5bb23639-318f-4368-ace0-0f154b4ebaf1 false @@ -344409,7 +393973,7 @@ true false - lk_sdkmessageprocessingstepimage_createdonbehalfby + userentityinstancedata_systemuser None 5.0.0.0 OneToManyRelationship @@ -344445,30 +394009,84 @@ false systemuserid systemuser - lk_sdkmessageprocessingstepimage_createdonbehalfby + userentityinstancedata_systemuser + objectid + userentityinstancedata + objectid_systemuser + + 0 + + + 75486a39-5b1b-4968-aa79-63feb495dde2 + + false + + false + iscustomizable + false + + true + false + lk_userapplicationmetadata_createdonbehalfby + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_userapplicationmetadata_createdonbehalfby createdonbehalfby - sdkmessageprocessingstepimage + userapplicationmetadata createdonbehalfby 0 - fb792646-1b2d-468e-86c3-382cf1bce997 + c5f88d39-bf17-457b-99ec-750f7f9db050 false false iscustomizable - false + true true - false - lk_importlog_createdonbehalfby + true + lk_externalpartyitem_modifiedonbehalfby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -344499,15 +394117,15 @@ false systemuserid systemuser - lk_importlog_createdonbehalfby - createdonbehalfby - importlog - createdonbehalfby + lk_externalpartyitem_modifiedonbehalfby + modifiedonbehalfby + externalpartyitem + lk_externalpartyitem_modifiedonbehalfby 0 - 25397fa1-a03e-4310-988c-4c64224eed04 + 2d2d743a-ac40-4bee-abe9-e4e825363961 false @@ -344516,8 +394134,8 @@ false true - true - lk_reportlink_modifiedonbehalfby + false + lk_importdatabase_createdby None 5.0.0.0 OneToManyRelationship @@ -344553,27 +394171,27 @@ false systemuserid systemuser - lk_reportlink_modifiedonbehalfby - modifiedonbehalfby - reportlink - modifiedonbehalfby + lk_importdatabase_createdby + createdby + importdata + createdby 0 - de6142b5-b050-4535-8729-0d63aaa32aad + 2bb0ae3a-e27e-41e6-9b4b-863214c77504 false false iscustomizable - true + false true true - lk_ChannelProperty_modifiedonbehalfby + lk_relationshiprole_createdonbehalfby None - 7.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -344607,15 +394225,15 @@ false systemuserid systemuser - lk_ChannelProperty_modifiedonbehalfby - modifiedonbehalfby - channelproperty - modifiedonbehalfby + lk_relationshiprole_createdonbehalfby + createdonbehalfby + relationshiprole + createdonbehalfby 0 - 57c59c27-f457-49b8-875e-74af4c5e7d42 + 80b0b93a-f09a-4bce-b931-68a3bfb0d4ad false @@ -344624,8 +394242,8 @@ false true - true - lk_processsession_executedby + false + createdby_attributemap None 5.0.0.0 OneToManyRelationship @@ -344661,15 +394279,15 @@ false systemuserid systemuser - lk_processsession_executedby - executedby - processsession - executedby + createdby_attributemap + createdby + attributemap + createdby 0 - 639c0cf0-2cde-4e70-9111-fd812a8319fa + 300cd23a-2d32-4e21-b65f-d82c0334f227 false @@ -344678,13 +394296,13 @@ false true - true - lk_customcontrol_modifiedby + false + lk_userquery_createdby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -344715,15 +394333,15 @@ false systemuserid systemuser - lk_customcontrol_modifiedby - modifiedby - customcontrol - modifiedby + lk_userquery_createdby + createdby + userquery + createdby 0 - 70a269e6-e5ca-46d0-8dfd-d85672e69270 + 7204183b-e9d6-4197-98eb-d18c6d2ccdaa false @@ -344732,8 +394350,8 @@ false true - true - workflow_dependency_modifiedonbehalfby + false + lk_wizardpage_modifiedby None 5.0.0.0 OneToManyRelationship @@ -344769,15 +394387,15 @@ false systemuserid systemuser - workflow_dependency_modifiedonbehalfby - modifiedonbehalfby - workflowdependency - modifiedonbehalfby + lk_wizardpage_modifiedby + modifiedby + wizardpage + modifiedby 0 - 92a2d663-f3e0-4a8e-aa2c-ba02e5b6d7f3 + d49b393b-9fd9-4066-a5f1-3cfe62641617 false @@ -344787,61 +394405,7 @@ true true - lk_customcontrolresource_createdonbehalfby - None - 8.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_customcontrolresource_createdonbehalfby - createdonbehalfby - customcontrolresource - createdonbehalfby - - 0 - - - 1bdc02ca-9d21-496f-8b93-c5f0da9b2b16 - - false - - false - iscustomizable - false - - true - false - SystemUser_DuplicateMatchingRecord + lk_importmap_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -344877,27 +394441,27 @@ false systemuserid systemuser - SystemUser_DuplicateMatchingRecord - duplicaterecordid - duplicaterecord - duplicaterecordid_systemuser + lk_importmap_createdonbehalfby + createdonbehalfby + importmap + createdonbehalfby 0 - a123c794-d679-43a7-a1ce-28d42de980cf + 5655473b-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - createdby_sdkmessageprocessingstepimage + false + true + lk_fabricaiskill_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -344931,27 +394495,27 @@ false systemuserid systemuser - createdby_sdkmessageprocessingstepimage + lk_fabricaiskill_createdby createdby - sdkmessageprocessingstepimage + fabricaiskill createdby 0 - 28a6b634-3e21-4a22-8ec4-5597a47569ad + 5c55473b-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_connectionbase_createdonbehalfby + lk_fabricaiskill_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -344985,30 +394549,30 @@ false systemuserid systemuser - lk_connectionbase_createdonbehalfby + lk_fabricaiskill_createdonbehalfby createdonbehalfby - connection + fabricaiskill createdonbehalfby 0 - f8d5f082-6809-4da1-9125-33f20421bf93 + 6255473b-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_customcontrol_createdby + lk_fabricaiskill_modifiedby None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -345039,30 +394603,30 @@ false systemuserid systemuser - lk_customcontrol_createdby - createdby - customcontrol - createdby + lk_fabricaiskill_modifiedby + modifiedby + fabricaiskill + modifiedby 0 - 812484c4-9c81-43cf-84f0-c34ba52af95f + 6855473b-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_customcontrolresource_modifiedonbehalfby + lk_fabricaiskill_modifiedonbehalfby None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -345093,27 +394657,27 @@ false systemuserid systemuser - lk_customcontrolresource_modifiedonbehalfby + lk_fabricaiskill_modifiedonbehalfby modifiedonbehalfby - customcontrolresource + fabricaiskill modifiedonbehalfby 0 - 42ac9da9-a1ff-4a60-8800-0e24d77fbb10 + 7a55473b-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_ChannelProperty_createdonbehalfby + user_fabricaiskill None - 7.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -345147,15 +394711,15 @@ false systemuserid systemuser - lk_ChannelProperty_createdonbehalfby - createdonbehalfby - channelproperty - createdonbehalfby + user_fabricaiskill + owninguser + fabricaiskill + owninguser 0 - fcd640ee-6bcd-4736-b5c9-f37bac7283f6 + f1d59b3b-a735-4c5d-b852-003ce86ad9b6 false @@ -345165,7 +394729,7 @@ true false - lk_timezonerule_modifiedby + lk_monthlyfiscalcalendar_modifiedby None 5.0.0.0 OneToManyRelationship @@ -345201,15 +394765,15 @@ false systemuserid systemuser - lk_timezonerule_modifiedby + lk_monthlyfiscalcalendar_modifiedby modifiedby - timezonerule + monthlyfiscalcalendar modifiedby 0 - 16b235c8-f9a9-4a4a-b383-725dd0c55535 + 8fb5a53b-ce5e-4ac7-915a-9391011eb1d8 false @@ -345218,10 +394782,10 @@ false true - false - lk_ACIViewMapper_createdonbehalfby + true + lk_convertruleitembase_createdby None - 8.2.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -345255,27 +394819,27 @@ false systemuserid systemuser - lk_ACIViewMapper_createdonbehalfby - createdonbehalfby - aciviewmapper - createdonbehalfby + lk_convertruleitembase_createdby + createdby + convertruleitem + createdby 0 - a9081817-92cc-46c3-ab1d-61819eb2d819 + 4a2bae3b-f5d1-43b1-817d-28715b434b65 false false iscustomizable - false + true true true - lk_routingrule_modifiedonbehalfby + lk_untrackedemail_createdby None - 6.1.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -345309,15 +394873,15 @@ false systemuserid systemuser - lk_routingrule_modifiedonbehalfby - modifiedonbehalfby - routingrule - modifiedonbehalfby + lk_untrackedemail_createdby + createdby + untrackedemail + createdby_untrackedemail 0 - cdaa49ea-0cbd-474d-a4dd-d8f9aa49a474 + 8b1ebc3b-ef95-4f76-ad59-fe72f6854266 false @@ -345327,7 +394891,7 @@ true true - lk_audit_userid + lk_transactioncurrencybase_createdby None 5.0.0.0 OneToManyRelationship @@ -345363,15 +394927,15 @@ false systemuserid systemuser - lk_audit_userid - userid - audit - userid + lk_transactioncurrencybase_createdby + createdby + transactioncurrency + createdby 0 - dd874335-3204-4cbf-beba-b2dcec54fb2c + 97e2d53b-2c03-412c-90a5-7d1498c55227 false @@ -345381,9 +394945,9 @@ true true - lk_solutionbase_createdonbehalfby + lk_personaldocumenttemplatebase_createdonbehalfby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -345417,30 +394981,30 @@ false systemuserid systemuser - lk_solutionbase_createdonbehalfby + lk_personaldocumenttemplatebase_createdonbehalfby createdonbehalfby - solution + personaldocumenttemplate createdonbehalfby 0 - 3f7302e4-da82-4374-bdaa-b4b1ea4d111f + f028e83b-e7be-4964-96cd-3619e85f9981 false false iscustomizable - false + true true true - lk_convertruleitembase_createdonbehalfby + lk_callbackregistration_modifiedby None - 6.1.0.0 + 9.0.2.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -345471,15 +395035,15 @@ false systemuserid systemuser - lk_convertruleitembase_createdonbehalfby - createdonbehalfby - convertruleitem - createdonbehalfby + systemuser_callbackregistration_modifiedby + modifiedby + callbackregistration + callbackregistration_modifiedby 0 - 5757da41-8e78-415f-b0fc-f47b23199122 + 94edf73b-cb69-4252-96ce-0cdf390ae59f false @@ -345488,10 +395052,10 @@ false true - true - lk_convertruleitembase_modifiedonbehalfby + false + user_userform None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -345525,15 +395089,15 @@ false systemuserid systemuser - lk_convertruleitembase_modifiedonbehalfby - modifiedonbehalfby - convertruleitem - modifiedonbehalfby + user_userform + owninguser + userform + owninguser 0 - 8f9d9583-9a83-4b0c-b9d2-f6500e076de5 + 9e5b863c-7e8d-490c-aa35-8354dbf87cb2 false @@ -345542,8 +395106,8 @@ false true - false - lk_fixedmonthlyfiscalcalendar_modifiedonbehalfby + true + lk_reportvisibility_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -345579,26 +395143,26 @@ false systemuserid systemuser - lk_fixedmonthlyfiscalcalendar_modifiedonbehalfby + lk_reportvisibility_modifiedonbehalfby modifiedonbehalfby - fixedmonthlyfiscalcalendar + reportvisibility modifiedonbehalfby 0 - 39897219-5bca-424b-9251-f408751af91f + 3133d33c-024a-4717-ad3f-ab82d072890d false false iscustomizable - false + true true - false - OwnerMapping_SystemUser - None + true + system_user_contacts + Append 5.0.0.0 OneToManyRelationship @@ -345633,15 +395197,15 @@ false systemuserid systemuser - OwnerMapping_SystemUser - targetsystemuserid - ownermapping - targetsystemuserid + system_user_contacts + preferredsystemuserid + contact + preferredsystemuserid - 0 + 1 - d48f4fc6-eb51-40b5-a061-306d0bd73179 + 2f686d3d-f739-4eb2-983f-6bce87d28311 false @@ -345651,7 +395215,7 @@ true false - lk_columnmapping_modifiedby + lk_wizardpage_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -345687,15 +395251,15 @@ false systemuserid systemuser - lk_columnmapping_modifiedby - modifiedby - columnmapping - modifiedby + lk_wizardpage_createdonbehalfby + createdonbehalfby + wizardpage + createdonbehalfby 0 - f69f2d42-5070-4412-9add-e38f359c5ece + fc11f93d-acf6-4ce7-b03c-275d31738259 false @@ -345705,9 +395269,9 @@ true true - lk_publisheraddressbase_modifiedby + lk_convertruleitembase_modifiedby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -345741,15 +395305,15 @@ false systemuserid systemuser - lk_publisheraddressbase_modifiedby + lk_convertruleitembase_modifiedby modifiedby - publisheraddress + convertruleitem modifiedby 0 - 54ec5650-4a4f-4da1-b782-0a4a8e1e3e84 + e7f4f93e-fbee-4805-8f70-58aa04f6ab38 false @@ -345759,12 +395323,12 @@ true true - lk_accountbase_createdby + lk_appconfigmaster_createdonbehalfby None - 5.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -345795,15 +395359,15 @@ false systemuserid systemuser - lk_accountbase_createdby - createdby - account - createdby + systemuser_appconfigmaster_createdonbehalfby + createdonbehalfby + appconfigmaster + appconfigmaster_createdonbehalfby 0 - 6df03779-c53a-419a-9bc5-0a30d4d13bc0 + c931a43f-5cb4-4034-a5b1-9d054d6c295a false @@ -345813,7 +395377,7 @@ true true - lk_savedquerybase_modifiedby + modifiedby_relationship_role None 5.0.0.0 OneToManyRelationship @@ -345849,15 +395413,15 @@ false systemuserid systemuser - lk_savedquerybase_modifiedby + modifiedby_relationship_role modifiedby - savedquery + relationshiprole modifiedby 0 - 023e9d49-72da-4bbb-8770-9cf6f3a5ec98 + c367eb40-3514-4ff4-82ae-12a26e8ac949 false @@ -345867,12 +395431,12 @@ true true - lk_MobileOfflineProfile_modifiedby + lk_navigationsetting_modifiedby None - 8.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -345903,15 +395467,15 @@ false systemuserid systemuser - lk_MobileOfflineProfile_modifiedby + systemuser_navigationsetting_modifiedby modifiedby - mobileofflineprofile - modifiedby + navigationsetting + navigationsetting_modifiedby 0 - f531ba52-db9b-4919-bd3c-6172cf4d448a + be351641-e118-48b5-bb2d-6b0bd4e2ef54 false @@ -345920,10 +395484,10 @@ false true - false - lk_quarterlyfiscalcalendar_createdby + true + lk_savedorginsightsconfiguration_modifiedonbehalfby None - 5.0.0.0 + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -345957,15 +395521,15 @@ false systemuserid systemuser - lk_quarterlyfiscalcalendar_createdby - createdby - quarterlyfiscalcalendar - createdby + lk_savedorginsightsconfiguration_modifiedonbehalfby + modifiedonbehalfby + savedorginsightsconfiguration + lk_savedorginsightsconfiguration_modifiedonbehalfby 0 - 7417c474-da13-4836-bd88-8fc739a1e877 + 6ef0b741-eea0-4cf2-8e0c-bbc36dd9ed5f false @@ -345974,10 +395538,64 @@ false true - false - lk_timezonedefinition_modifiedonbehalfby + true + lk_syncattributemappingprofile_modifiedby None - 5.0.0.0 + 7.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_syncattributemappingprofile_modifiedby + modifiedby + syncattributemappingprofile + modifiedby + + 0 + + + 5757da41-8e78-415f-b0fc-f47b23199122 + + false + + false + iscustomizable + false + + true + true + lk_convertruleitembase_modifiedonbehalfby + None + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -346011,15 +395629,15 @@ false systemuserid systemuser - lk_timezonedefinition_modifiedonbehalfby + lk_convertruleitembase_modifiedonbehalfby modifiedonbehalfby - timezonedefinition + convertruleitem modifiedonbehalfby 0 - 7115a3ea-3815-460e-98a2-0d2b32f35306 + f69f2d42-5070-4412-9add-e38f359c5ece false @@ -346029,7 +395647,7 @@ true true - lk_organization_modifiedonbehalfby + lk_publisheraddressbase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -346065,36 +395683,36 @@ false systemuserid systemuser - lk_organization_modifiedonbehalfby - modifiedonbehalfby - organization - modifiedonbehalfby + lk_publisheraddressbase_modifiedby + modifiedby + publisheraddress + modifiedby 0 - 714834f4-08c3-48ca-a0cf-0eb6aa9c9b25 + a6225142-d7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - systemuser_connections1 + lk_appnotification_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 100 + true false @@ -346119,27 +395737,27 @@ false systemuserid systemuser - systemuser_connections1 - record1id - connection - record1id_systemuser + lk_appnotification_createdby + createdby + appnotification + createdby 0 - 6d3d7c5f-2aa1-4198-8288-4038f891bc3d + ac225142-d7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_expanderevent_createdonbehalfby + false + true + lk_appnotification_createdonbehalfby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -346173,30 +395791,30 @@ false systemuserid systemuser - lk_expanderevent_createdonbehalfby + lk_appnotification_createdonbehalfby createdonbehalfby - expanderevent + appnotification createdonbehalfby 0 - ccad66ad-c841-4b22-a174-2494cc590063 + b2225142-d7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_SiteMap_modifiedby + lk_appnotification_modifiedby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -346227,27 +395845,27 @@ false systemuserid systemuser - systemuser_SiteMap_modifiedby + lk_appnotification_modifiedby modifiedby - sitemap - SiteMap_modifiedby + appnotification + modifiedby 0 - d37a2c5b-3c5d-4f04-9731-4395455b03ab + b8225142-d7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_documenttemplatebase_createdonbehalfby + lk_appnotification_modifiedonbehalfby None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -346281,27 +395899,27 @@ false systemuserid systemuser - lk_documenttemplatebase_createdonbehalfby - createdonbehalfby - documenttemplate - createdonbehalfby + lk_appnotification_modifiedonbehalfby + modifiedonbehalfby + appnotification + modifiedonbehalfby 0 - fc68a8d7-1149-42a5-bb96-8ee7b6e3d1a2 + ca225142-d7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_kbarticlebase_createdby + user_appnotification None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -346335,15 +395953,15 @@ false systemuserid systemuser - lk_kbarticlebase_createdby - createdby - kbarticle - createdby + user_appnotification + owninguser + appnotification + owninguser 0 - 7d185eea-c18e-4dcb-80f2-5e31d4156a45 + 10f5cb42-caba-f011-bbd3-7c1e52365f30 false @@ -346353,9 +395971,9 @@ true true - lk_emailserverprofile_createdby + lk_msdyn_integratedsearchprovider_createdby None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -346389,30 +396007,30 @@ false systemuserid systemuser - lk_emailserverprofile_createdby + lk_msdyn_integratedsearchprovider_createdby createdby - emailserverprofile + msdyn_integratedsearchprovider createdby 0 - 4b5ceac0-5b41-4917-960d-c4de6fca7fcd + 16f5cb42-caba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true true - lk_partnerapplication_modifiedonbehalfby + lk_msdyn_integratedsearchprovider_createdonbehalfby None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -346443,30 +396061,30 @@ false systemuserid systemuser - lk_partnerapplication_modifiedonbehalfby - modifiedonbehalfby - partnerapplication - modifiedonbehalfby + lk_msdyn_integratedsearchprovider_createdonbehalfby + createdonbehalfby + msdyn_integratedsearchprovider + createdonbehalfby 0 - ddd2abc9-6764-4e9b-bf52-35b6ef6f880a + 1cf5cb42-caba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true - false - lk_azureserviceconnection_modifiedby + true + lk_msdyn_integratedsearchprovider_modifiedby None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -346497,27 +396115,27 @@ false systemuserid systemuser - lk_azureserviceconnection_modifiedby + lk_msdyn_integratedsearchprovider_modifiedby modifiedby - azureserviceconnection + msdyn_integratedsearchprovider modifiedby 0 - 68ea867f-d122-4c8e-8353-a481357cedc5 + 22f5cb42-caba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true - false - lk_quarterlyfiscalcalendar_modifiedonbehalfby + true + lk_msdyn_integratedsearchprovider_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -346551,27 +396169,27 @@ false systemuserid systemuser - lk_quarterlyfiscalcalendar_modifiedonbehalfby + lk_msdyn_integratedsearchprovider_modifiedonbehalfby modifiedonbehalfby - quarterlyfiscalcalendar + msdyn_integratedsearchprovider modifiedonbehalfby 0 - 38e3b0a1-a1a3-4c8d-bede-04190ba910b9 + 34f5cb42-caba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true - false - SystemUser_ImportData + true + user_msdyn_integratedsearchprovider None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -346605,81 +396223,27 @@ false systemuserid systemuser - SystemUser_ImportData + user_msdyn_integratedsearchprovider owninguser - importdata + msdyn_integratedsearchprovider owninguser 0 - 25215cba-bf18-4768-9a9d-3f63bcc97853 + 04f6cb42-caba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true true - lk_documentindex_createdonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_documentindex_createdonbehalfby - createdonbehalfby - documentindex - createdonbehalfby - - 0 - - - 9174e010-c802-4a43-b594-33bd043f10c2 - - false - - false - iscustomizable - false - - true - false - lk_userquery_modifiedby + lk_msdyn_knowledgemanagementsetting_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -346713,15 +396277,15 @@ false systemuserid systemuser - lk_userquery_modifiedby - modifiedby - userquery - modifiedby + lk_msdyn_knowledgemanagementsetting_createdby + createdby + msdyn_knowledgemanagementsetting + createdby 0 - 3718e21a-ee3b-4c33-a0f6-25d9599e1871 + 0af6cb42-caba-f011-bbd3-7c1e52365f30 false @@ -346731,9 +396295,9 @@ true true - lk_mobileofflineprofileitemassociation_modifiedby + lk_msdyn_knowledgemanagementsetting_createdonbehalfby None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -346767,15 +396331,15 @@ false systemuserid systemuser - lk_mobileofflineprofileitemassocaition_modifiedby - modifiedby - mobileofflineprofileitemassociation - modifiedby + lk_msdyn_knowledgemanagementsetting_createdonbehalfby + createdonbehalfby + msdyn_knowledgemanagementsetting + createdonbehalfby 0 - 5828adc7-2226-4c40-b8f7-4e1ba83863cc + 10f6cb42-caba-f011-bbd3-7c1e52365f30 false @@ -346785,9 +396349,9 @@ true true - lk_savedorginsightsconfiguration_modifiedby + lk_msdyn_knowledgemanagementsetting_modifiedby None - 8.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -346821,30 +396385,30 @@ false systemuserid systemuser - lk_savedorginsightsconfiguration_modifiedby + lk_msdyn_knowledgemanagementsetting_modifiedby modifiedby - savedorginsightsconfiguration - lk_savedorginsightsconfiguration_modifiedby + msdyn_knowledgemanagementsetting + modifiedby 0 - 2461cae6-81a8-428d-8aa2-b8ed41f93e3b + 16f6cb42-caba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true true - multientitysearch_modifiedonbehalfby + lk_msdyn_knowledgemanagementsetting_modifiedonbehalfby None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -346875,15 +396439,15 @@ false systemuserid systemuser - multientitysearch_modifiedonbehalfby + lk_msdyn_knowledgemanagementsetting_modifiedonbehalfby modifiedonbehalfby - multientitysearch + msdyn_knowledgemanagementsetting modifiedonbehalfby 0 - 4cbfcaa2-40fc-4bd9-8483-3def73a3c0cc + 28f6cb42-caba-f011-bbd3-7c1e52365f30 false @@ -346893,63 +396457,9 @@ true true - lk_knowledgearticleviews_createdonbehalfby - None - 8.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_knowledgearticleviews_createdonbehalfby - createdonbehalfby - knowledgearticleviews - createdonbehalfby - - 0 - - - ba4d91ce-e6ca-4a3d-ad26-d61218ae3e7c - - false - - false - iscustomizable - false - - true - false - lk_webwizard_createdby + user_msdyn_knowledgemanagementsetting None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -346983,81 +396493,27 @@ false systemuserid systemuser - lk_webwizard_createdby - createdby - webwizard - createdby - - 0 - - - 67fd6e1d-1576-40f9-821a-a0b852171aac - - false - - false - iscustomizable - false - - true - true - lk_convertrule_createdby - None - 6.1.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_convertrule_createdby - createdby - convertrule - createdby + user_msdyn_knowledgemanagementsetting + owninguser + msdyn_knowledgemanagementsetting + owninguser 0 - be351641-e118-48b5-bb2d-6b0bd4e2ef54 + 5e98d042-00bb-494a-b231-eadc8d4a94ec false false iscustomizable - false + true true true - lk_savedorginsightsconfiguration_modifiedonbehalfby + user_accounts None - 8.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -347091,15 +396547,15 @@ false systemuserid systemuser - lk_savedorginsightsconfiguration_modifiedonbehalfby - modifiedonbehalfby - savedorginsightsconfiguration - lk_savedorginsightsconfiguration_modifiedonbehalfby + user_accounts + owninguser + account + owninguser 0 - c5c1bae5-8924-47ab-b33a-18b70a81bbab + bf8df842-5595-4391-82ba-ba3b9f4f48b6 false @@ -347109,9 +396565,9 @@ true true - lk_processtriggerbase_createdonbehalfby + lk_importmap_modifiedonbehalfby None - 6.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -347145,15 +396601,15 @@ false systemuserid systemuser - lk_processtriggerbase_createdonbehalfby - createdonbehalfby - processtrigger - createdonbehalfby + lk_importmap_modifiedonbehalfby + modifiedonbehalfby + importmap + modifiedonbehalfby 0 - 6d255e0a-b3fd-4557-a3c6-1acf25ca6727 + 75942643-7bb0-4272-b699-3249e4984a76 false @@ -347163,7 +396619,7 @@ true false - modifiedby_sdkmessageprocessingstepimage + lk_applicationfile_createdby None 5.0.0.0 OneToManyRelationship @@ -347199,15 +396655,15 @@ false systemuserid systemuser - modifiedby_sdkmessageprocessingstepimage - modifiedby - sdkmessageprocessingstepimage - modifiedby + lk_applicationfile_createdby + createdby + applicationfile + createdby 0 - 21745492-36c2-4c3a-bb81-47b6ff6365ac + d6eb3243-4724-4b83-a2a0-f1efd1643345 false @@ -347217,12 +396673,12 @@ true true - lk_phonecall_modifiedonbehalfby + lk_appconfigmaster_modifiedby None - 5.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -347253,15 +396709,15 @@ false systemuserid systemuser - lk_phonecall_modifiedonbehalfby - modifiedonbehalfby - phonecall - modifiedonbehalfby_phonecall + systemuser_appconfigmaster_modifiedby + modifiedby + appconfigmaster + appconfigmaster_modifiedby 0 - 8282448a-a08c-468d-906c-ebd8d9de9a48 + a63e4643-13ae-e311-80c2-00155d9dac1a false @@ -347271,12 +396727,12 @@ true true - lk_workflowlog_createdby + lk_position_createdby None - 5.0.0.0 + 7.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -347307,15 +396763,15 @@ false systemuserid systemuser - lk_workflowlog_createdby + lk_position_createdby createdby - workflowlog + position createdby 0 - c3b212e0-972b-4199-8269-f08abd709074 + ac3e4643-13ae-e311-80c2-00155d9dac1a false @@ -347324,13 +396780,13 @@ false true - false - lk_fixedmonthlyfiscalcalendar_salespersonid - ParentChild - 5.0.0.0 + true + lk_position_createdonbehalfby + None + 7.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -347361,15 +396817,15 @@ false systemuserid systemuser - lk_fixedmonthlyfiscalcalendar_salespersonid - salespersonid - fixedmonthlyfiscalcalendar - salespersonid + lk_position_createdonbehalfby + createdonbehalfby + position + createdonbehalfby - 2 + 0 - 2b7ac098-bf63-423a-82ba-c7b4de8bfc60 + b23e4643-13ae-e311-80c2-00155d9dac1a false @@ -347378,13 +396834,13 @@ false true - false - lk_applicationfile_modifiedonbehalfby + true + lk_position_modifiedby None - 5.0.0.0 + 7.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -347415,15 +396871,15 @@ false systemuserid systemuser - lk_applicationfile_modifiedonbehalfby - modifiedonbehalfby - applicationfile - modifiedonbehalfby + lk_position_modifiedby + modifiedby + position + modifiedby 0 - 01146250-6c27-496f-a807-1eb491ceffeb + b83e4643-13ae-e311-80c2-00155d9dac1a false @@ -347432,13 +396888,13 @@ false true - false - lk_quarterlyfiscalcalendar_createdonbehalfby + true + lk_position_modifiedonbehalfby None - 5.0.0.0 + 7.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -347469,27 +396925,27 @@ false systemuserid systemuser - lk_quarterlyfiscalcalendar_createdonbehalfby - createdonbehalfby - quarterlyfiscalcalendar - createdonbehalfby + lk_position_modifiedonbehalfby + modifiedonbehalfby + position + modifiedonbehalfby 0 - 80b0b93a-f09a-4bce-b931-68a3bfb0d4ad + 11e35843-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - createdby_attributemap + false + true + lk_msdyn_appinsightsmetadata_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -347523,27 +396979,27 @@ false systemuserid systemuser - createdby_attributemap + lk_msdyn_appinsightsmetadata_createdby createdby - attributemap + msdyn_appinsightsmetadata createdby 0 - c81c08b8-698e-4195-babc-2fc7d011db50 + 17e35843-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_teamtemplate_modifiedby + lk_msdyn_appinsightsmetadata_createdonbehalfby None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -347577,27 +397033,27 @@ false systemuserid systemuser - lk_teamtemplate_modifiedby - modifiedby - teamtemplate - modifiedby + lk_msdyn_appinsightsmetadata_createdonbehalfby + createdonbehalfby + msdyn_appinsightsmetadata + createdonbehalfby 0 - 94edf73b-cb69-4252-96ce-0cdf390ae59f + 1de35843-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - user_userform + false + true + lk_msdyn_appinsightsmetadata_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -347631,27 +397087,27 @@ false systemuserid systemuser - user_userform - owninguser - userform - owninguser + lk_msdyn_appinsightsmetadata_modifiedby + modifiedby + msdyn_appinsightsmetadata + modifiedby 0 - 2ca93508-931f-4467-81a5-bb854fe29543 + 23e35843-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_processsession_startedby + lk_msdyn_appinsightsmetadata_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -347685,30 +397141,30 @@ false systemuserid systemuser - lk_processsession_startedby - startedby - processsession - startedby + lk_msdyn_appinsightsmetadata_modifiedonbehalfby + modifiedonbehalfby + msdyn_appinsightsmetadata + modifiedonbehalfby 0 - f97794b3-be88-44b0-b4dc-4b623347519b + 5ce55843-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_knowledgearticleviews_modifiedonbehalfby + lk_msdyn_dataflowconnectionreference_createdby None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -347739,27 +397195,27 @@ false systemuserid systemuser - lk_knowledgearticleviews_modifiedonbehalfby - modifiedonbehalfby - knowledgearticleviews - modifiedonbehalfby + lk_msdyn_dataflowconnectionreference_createdby + createdby + msdyn_dataflowconnectionreference + createdby 0 - 3ca392fa-ced4-477c-be63-49fcfb6d76f1 + 62e55843-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_role_modifiedonbehalfby + lk_msdyn_dataflowconnectionreference_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -347793,27 +397249,27 @@ false systemuserid systemuser - lk_role_modifiedonbehalfby - modifiedonbehalfby - role - modifiedonbehalfby + lk_msdyn_dataflowconnectionreference_createdonbehalfby + createdonbehalfby + msdyn_dataflowconnectionreference + createdonbehalfby 0 - ad58b4ce-a1e6-47cc-91fc-3b1bb49a81c9 + 68e55843-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_SharePointData_modifiedby + false + true + lk_msdyn_dataflowconnectionreference_modifiedby None - 6.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -347847,27 +397303,27 @@ false systemuserid systemuser - lk_SharePointData_modifiedby + lk_msdyn_dataflowconnectionreference_modifiedby modifiedby - sharepointdata + msdyn_dataflowconnectionreference modifiedby 0 - 674863e5-a4ba-4dc9-a299-79fcba6a5bb7 + 6ee55843-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_reportbase_modifiedby + lk_msdyn_dataflowconnectionreference_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -347901,27 +397357,27 @@ false systemuserid systemuser - lk_reportbase_modifiedby - modifiedby - report - modifiedby + lk_msdyn_dataflowconnectionreference_modifiedonbehalfby + modifiedonbehalfby + msdyn_dataflowconnectionreference + modifiedonbehalfby 0 - 1fb5f144-58d8-433b-b502-ac48387f571e + 80e55843-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_fixedmonthlyfiscalcalendar_createdby + false + true + user_msdyn_dataflowconnectionreference None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -347955,30 +397411,30 @@ false systemuserid systemuser - lk_fixedmonthlyfiscalcalendar_createdby - createdby - fixedmonthlyfiscalcalendar - createdby + user_msdyn_dataflowconnectionreference + owninguser + msdyn_dataflowconnectionreference + owninguser 0 - ca1dabf3-d5ac-4b7d-a69d-83854fd8eb16 + 6fb78e43-edba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_appconfigmaster_createdby + lk_msdyn_customcontrolextendedsettings_createdby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -348009,27 +397465,27 @@ false systemuserid systemuser - systemuser_appconfigmaster_createdby + lk_msdyn_customcontrolextendedsettings_createdby createdby - appconfigmaster - appconfigmaster_createdby + msdyn_customcontrolextendedsettings + createdby 0 - 61b800f2-5b8f-44d2-9506-0bf4dcb0ff3b + 75b78e43-edba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_sharepointdata_user + false + true + lk_msdyn_customcontrolextendedsettings_createdonbehalfby None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -348063,27 +397519,27 @@ false systemuserid systemuser - lk_sharepointdata_user - userid - sharepointdata - userid + lk_msdyn_customcontrolextendedsettings_createdonbehalfby + createdonbehalfby + msdyn_customcontrolextendedsettings + createdonbehalfby 0 - 8fb4f3ec-c34e-44fc-922c-158f68bbe17f + 7bb78e43-edba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true - false - lk_businessunitbase_modifiedby + false + true + lk_msdyn_customcontrolextendedsettings_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -348117,27 +397573,27 @@ false systemuserid systemuser - lk_businessunitbase_modifiedby + lk_msdyn_customcontrolextendedsettings_modifiedby modifiedby - businessunit + msdyn_customcontrolextendedsettings modifiedby 0 - 5954ce28-02ed-4a35-a0d4-cec90bce4d06 + 81b78e43-edba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_documentindex_createdby + false + true + lk_msdyn_customcontrolextendedsettings_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -348171,27 +397627,27 @@ false systemuserid systemuser - lk_documentindex_createdby - createdby - documentindex - createdby + lk_msdyn_customcontrolextendedsettings_modifiedonbehalfby + modifiedonbehalfby + msdyn_customcontrolextendedsettings + modifiedonbehalfby 0 - 7d37c314-9c84-438d-9794-70ab8c961a68 + 93b78e43-edba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - socialProfile_owning_user + user_msdyn_customcontrolextendedsettings None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -348225,27 +397681,27 @@ false systemuserid systemuser - socialProfile_owning_user + user_msdyn_customcontrolextendedsettings owninguser - socialprofile + msdyn_customcontrolextendedsettings owninguser 0 - 74a1a27f-3ee1-4cbb-93da-e2caedb7211e + 8067a343-e3f8-47eb-adfd-20fab9b020e4 false false iscustomizable - true + false true true - lk_businessprocessflowinstancebase_modifiedonbehalfby + lk_workflowlog_createdonbehalfby None - 8.2.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -348279,25 +397735,25 @@ false systemuserid systemuser - lk_businessprocessflowinstancebase_modifiedonbehalfby - modifiedonbehalfby - businessprocessflowinstance - modifiedonbehalfby + lk_workflowlog_createdonbehalfby + createdonbehalfby + workflowlog + createdonbehalfby 0 - 4925b159-3096-4bf7-9341-8e1cca1282f5 + 8c745a44-acd7-4441-a0a1-82cc9b8823c4 false false iscustomizable - true + false true true - lk_task_modifiedby + lk_connectionrolebase_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -348333,27 +397789,27 @@ false systemuserid systemuser - lk_task_modifiedby - modifiedby - task - modifiedby_task + lk_connectionrolebase_createdonbehalfby + createdonbehalfby + connectionrole + createdonbehalfby 0 - 5a51ef69-c3f6-4af2-baa7-e6f3f41ef6b2 + 98186d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_slaitembase_createdby + lk_msdyn_aifptrainingdocument_createdby None - 6.1.0.0 + 0.0.0.1 OneToManyRelationship DoNotDisplay @@ -348387,30 +397843,30 @@ false systemuserid systemuser - lk_slaitembase_createdby + lk_msdyn_aifptrainingdocument_createdby createdby - slaitem + msdyn_aifptrainingdocument createdby 0 - 51e84e7c-9d5a-4543-8b20-593a30e50a48 + a0186d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_mailboxtrackingfolder_createdonbehalfby + lk_msdyn_aifptrainingdocument_createdonbehalfby None - 7.1.0.0 + 0.0.0.1 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -348441,27 +397897,27 @@ false systemuserid systemuser - lk_mailboxtrackingfolder_createdonbehalfby + lk_msdyn_aifptrainingdocument_createdonbehalfby createdonbehalfby - mailboxtrackingfolder + msdyn_aifptrainingdocument createdonbehalfby 0 - ee00b932-ba0f-4520-a073-8ee4b6e57402 + a7186d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_isvconfigbase_createdby + false + true + lk_msdyn_aifptrainingdocument_modifiedby None - 5.0.0.0 + 0.0.0.1 OneToManyRelationship DoNotDisplay @@ -348495,27 +397951,27 @@ false systemuserid systemuser - lk_isvconfigbase_createdby - createdby - isvconfig - createdby + lk_msdyn_aifptrainingdocument_modifiedby + modifiedby + msdyn_aifptrainingdocument + modifiedby 0 - 536b2488-7a4a-4ab4-9da8-7fc9da4d3970 + ad186d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - modifiedby_sdkmessageprocessingstep + false + true + lk_msdyn_aifptrainingdocument_modifiedonbehalfby None - 5.0.0.0 + 0.0.0.1 OneToManyRelationship DoNotDisplay @@ -348549,27 +398005,27 @@ false systemuserid systemuser - modifiedby_sdkmessageprocessingstep - modifiedby - sdkmessageprocessingstep - modifiedby + lk_msdyn_aifptrainingdocument_modifiedonbehalfby + modifiedonbehalfby + msdyn_aifptrainingdocument + modifiedonbehalfby 0 - 6ba8039c-e79e-448a-aac0-8d1b3b6d3804 + bf186d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_reportvisibilitybase_createdby + user_msdyn_aifptrainingdocument None - 5.0.0.0 + 0.0.0.1 OneToManyRelationship DoNotDisplay @@ -348603,27 +398059,27 @@ false systemuserid systemuser - lk_reportvisibilitybase_createdby - createdby - reportvisibility - createdby + user_msdyn_aifptrainingdocument + owninguser + msdyn_aifptrainingdocument + owninguser 0 - 75942643-7bb0-4272-b699-3249e4984a76 + b6196d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_applicationfile_createdby + false + true + lk_msdyn_aiodimage_createdby None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -348657,27 +398113,81 @@ false systemuserid systemuser - lk_applicationfile_createdby + lk_msdyn_aiodimage_createdby createdby - applicationfile + msdyn_aiodimage createdby 0 - 7f59d1c3-97a1-435b-afb8-4a225b62facb + c0196d44-bfba-f011-bbd3-7c1e52365f30 false - false + true + iscustomizable + true + + false + true + lk_msdyn_aiodimage_createdonbehalfby + None + 0.0.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_aiodimage_createdonbehalfby + createdonbehalfby + msdyn_aiodimage + createdonbehalfby + + 0 + + + c8196d44-bfba-f011-bbd3-7c1e52365f30 + + false + + true iscustomizable false - true - false - lk_duplicaterulebase_modifiedby + false + true + lk_msdyn_aiodimage_modifiedby None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -348711,27 +398221,27 @@ false systemuserid systemuser - lk_duplicaterulebase_modifiedby + lk_msdyn_aiodimage_modifiedby modifiedby - duplicaterule + msdyn_aiodimage modifiedby 0 - f18260f2-10c4-4559-99a9-04881fdbb809 + d1196d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_recurrencerulebase_createdonbehalfby + lk_msdyn_aiodimage_modifiedonbehalfby None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -348765,27 +398275,27 @@ false systemuserid systemuser - lk_recurrencerulebase_createdonbehalfby - createdonbehalfby - recurrencerule - createdonbehalfby + lk_msdyn_aiodimage_modifiedonbehalfby + modifiedonbehalfby + msdyn_aiodimage + modifiedonbehalfby 0 - 52485f49-b5f8-4004-a609-2ab0cc619783 + e6196d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - modifiedby_relationship_role_map + false + true + user_msdyn_aiodimage None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -348819,27 +398329,27 @@ false systemuserid systemuser - modifiedby_relationship_role_map - modifiedby - relationshiprolemap - modifiedby + user_msdyn_aiodimage + owninguser + msdyn_aiodimage + owninguser 0 - c491631e-cb92-4932-9cf0-cb3b55358c24 + 2d1b6d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_organizationbase_modifiedby + false + true + lk_msdyn_aiodlabel_createdby None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -348873,30 +398383,30 @@ false systemuserid systemuser - lk_organizationbase_modifiedby - modifiedby - organization - modifiedby + lk_msdyn_aiodlabel_createdby + createdby + msdyn_aiodlabel + createdby 0 - 32c001b5-ee30-4745-aa69-4669690d7eaa + 351b6d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_mailboxtrackingfolder_modifiedonbehalfby + lk_msdyn_aiodlabel_createdonbehalfby None - 7.1.0.0 + 0.0.1 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -348927,27 +398437,27 @@ false systemuserid systemuser - lk_mailboxtrackingfolder_modifiedonbehalfby - modifiedonbehalfby - mailboxtrackingfolder - modifiedonbehalfby + lk_msdyn_aiodlabel_createdonbehalfby + createdonbehalfby + msdyn_aiodlabel + createdonbehalfby 0 - db38eb9b-1b95-44a4-8db6-8f31711c939d + 3c1b6d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_task_createdby + lk_msdyn_aiodlabel_modifiedby None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -348981,30 +398491,30 @@ false systemuserid systemuser - lk_task_createdby - createdby - task - createdby_task + lk_msdyn_aiodlabel_modifiedby + modifiedby + msdyn_aiodlabel + modifiedby 0 - ea0371b0-027b-4e83-b306-708364565c7e + 431b6d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_mailboxtrackingfolder_createdby + lk_msdyn_aiodlabel_modifiedonbehalfby None - 7.1.0.0 + 0.0.1 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -349035,27 +398545,27 @@ false systemuserid systemuser - lk_mailboxtrackingfolder_createdby - createdby - mailboxtrackingfolder - createdby + lk_msdyn_aiodlabel_modifiedonbehalfby + modifiedonbehalfby + msdyn_aiodlabel + modifiedonbehalfby 0 - 653c24ac-53d6-4b09-b96e-c58bf1bd90b5 + 571b6d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_personaldocumenttemplatebase_modifiedby + user_msdyn_aiodlabel None - 8.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -349089,27 +398599,27 @@ false systemuserid systemuser - lk_personaldocumenttemplatebase_modifiedby - modifiedby - personaldocumenttemplate - modifiedby + user_msdyn_aiodlabel + owninguser + msdyn_aiodlabel + owninguser 0 - 325e7d07-17ed-43ff-a762-1c076e54898e + 441c6d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_processtriggerbase_modifiedby + lk_msdyn_aiodtrainingboundingbox_createdby None - 6.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -349143,30 +398653,30 @@ false systemuserid systemuser - lk_processtriggerbase_modifiedby - modifiedby - processtrigger - modifiedby + lk_msdyn_aiodtrainingboundingbox_createdby + createdby + msdyn_aiodtrainingboundingbox + createdby 0 - 84ed81c2-0c55-4e68-98e8-b7c56f688aec + 4a1c6d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - userentityuisettings_owning_user + false + true + lk_msdyn_aiodtrainingboundingbox_createdonbehalfby None - 5.0.0.0 + 0.0.1 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -349197,27 +398707,27 @@ false systemuserid systemuser - userentityuisettings_owning_user - owninguser - userentityuisettings - owninguser + lk_msdyn_aiodtrainingboundingbox_createdonbehalfby + createdonbehalfby + msdyn_aiodtrainingboundingbox + createdonbehalfby 0 - 300cd23a-2d32-4e21-b65f-d82c0334f227 + 511c6d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_userquery_createdby + false + true + lk_msdyn_aiodtrainingboundingbox_modifiedby None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -349251,27 +398761,27 @@ false systemuserid systemuser - lk_userquery_createdby - createdby - userquery - createdby + lk_msdyn_aiodtrainingboundingbox_modifiedby + modifiedby + msdyn_aiodtrainingboundingbox + modifiedby 0 - 5efcc234-dd3d-434a-8ff2-b75a6d45fd76 + 571c6d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - contact_owning_user + lk_msdyn_aiodtrainingboundingbox_modifiedonbehalfby None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -349305,15 +398815,69 @@ false systemuserid systemuser - contact_owning_user + lk_msdyn_aiodtrainingboundingbox_modifiedonbehalfby + modifiedonbehalfby + msdyn_aiodtrainingboundingbox + modifiedonbehalfby + + 0 + + + 691c6d44-bfba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + user_msdyn_aiodtrainingboundingbox + None + 0.0.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_msdyn_aiodtrainingboundingbox owninguser - contact + msdyn_aiodtrainingboundingbox owninguser 0 - bbd737fb-00c4-4f4f-a67b-89c462cf5108 + ec83aa44-279b-4ea4-9981-a3c56d0d3c01 false @@ -349323,7 +398887,7 @@ true true - lk_mailmergetemplate_createdonbehalfby + lk_email_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -349359,15 +398923,15 @@ false systemuserid systemuser - lk_mailmergetemplate_createdonbehalfby + lk_email_createdonbehalfby createdonbehalfby - mailmergetemplate - createdonbehalfby + email + createdonbehalfby_email 0 - 52a3651d-1707-443b-8add-6d024be3b544 + 0f60da44-51f5-4151-ba07-b5cde962e31a false @@ -349377,12 +398941,12 @@ true true - lk_importjobbase_modifiedonbehalfby + lk_customcontrolresource_modifiedby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -349413,15 +398977,15 @@ false systemuserid systemuser - lk_importjobbase_modifiedonbehalfby - modifiedonbehalfby - importjob - modifiedonbehalfby + lk_customcontrolresource_modifiedby + modifiedby + customcontrolresource + modifiedby 0 - 8cf23aac-4c2b-4e64-a9b9-afbac609e6cc + 1fb5f144-58d8-433b-b502-ac48387f571e false @@ -349430,13 +398994,13 @@ false true - true - lk_customcontroldefaultconfig_createdby + false + lk_fixedmonthlyfiscalcalendar_createdby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -349467,15 +399031,15 @@ false systemuserid systemuser - lk_customcontroldefaultconfig_createdby + lk_fixedmonthlyfiscalcalendar_createdby createdby - customcontroldefaultconfig + fixedmonthlyfiscalcalendar createdby 0 - d7fb0ed1-d2c8-4767-a2b1-25b153cb4905 + 8c71fc44-20b3-4031-9465-2cd83d0bfb41 false @@ -349485,9 +399049,9 @@ true true - lk_savedquery_createdonbehalfby + lk_personaldocumenttemplatebase_modifiedonbehalfby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -349521,15 +399085,15 @@ false systemuserid systemuser - lk_savedquery_createdonbehalfby - createdonbehalfby - savedquery - createdonbehalfby + lk_personaldocumenttemplatebase_modifiedonbehalfby + modifiedonbehalfby + personaldocumenttemplate + modifiedonbehalfby 0 - a6b48e23-fada-4b7f-8655-530bba050765 + dbb73a45-f36c-442f-8629-9ffa81070b76 false @@ -349539,9 +399103,9 @@ true true - system_user_accounts - Append - 5.0.0.0 + lk_untrackedemail_modifiedonbehalfby + None + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -349575,27 +399139,27 @@ false systemuserid systemuser - system_user_accounts - preferredsystemuserid - account - preferredsystemuserid + lk_untrackedemail_modifiedonbehalfby + modifiedonbehalfby + untrackedemail + modifiedonbehalfby_untrackedemail - 1 + 0 - 759b5d4c-e2c4-4880-8399-f3ccc80c21cf + 685a4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_systemuser_createdonbehalfby + lk_approvalprocess_createdby None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -349629,30 +399193,84 @@ false systemuserid systemuser - lk_systemuser_createdonbehalfby + lk_approvalprocess_createdby + createdby + approvalprocess + createdby + + 0 + + + 6e5a4445-bcba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_approvalprocess_createdonbehalfby + None + 2.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_approvalprocess_createdonbehalfby createdonbehalfby - systemuser + approvalprocess createdonbehalfby 0 - 09386d36-2f8e-40c0-beb6-299a297a6e85 + 745a4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_customcontrol_modifiedonbehalfby + lk_approvalprocess_modifiedby None - 8.0.0.0 + 2.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -349683,27 +399301,27 @@ false systemuserid systemuser - lk_customcontrol_modifiedonbehalfby - modifiedonbehalfby - customcontrol - modifiedonbehalfby + lk_approvalprocess_modifiedby + modifiedby + approvalprocess + modifiedby 0 - 28a53bdb-5d8e-4374-a418-72dfb8767b28 + 7a5a4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_appointment_modifiedonbehalfby + lk_approvalprocess_modifiedonbehalfby None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -349737,27 +399355,27 @@ false systemuserid systemuser - lk_appointment_modifiedonbehalfby + lk_approvalprocess_modifiedonbehalfby modifiedonbehalfby - appointment - modifiedonbehalfby_appointment + approvalprocess + modifiedonbehalfby 0 - ece95d68-ddf3-4340-a288-869f67d987c9 + 8c5a4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_webwizard_modifiedonbehalfby + false + true + user_approvalprocess None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -349791,30 +399409,30 @@ false systemuserid systemuser - lk_webwizard_modifiedonbehalfby - modifiedonbehalfby - webwizard - modifiedonbehalfby + user_approvalprocess + owninguser + approvalprocess + owninguser 0 - f44fa895-7063-4dcc-8f6f-750ada181dec + 675b4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_externalpartyitem_createdby + lk_approvalstageapproval_createdby None - 8.0.0.0 + 2.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -349845,30 +399463,30 @@ false systemuserid systemuser - lk_externalpartyitem_createdby + lk_approvalstageapproval_createdby createdby - externalpartyitem - lk_externalpartyitem_createdby + approvalstageapproval + createdby 0 - 264467b8-cf44-40d5-93b3-829fab876cc0 + 6d5b4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_knowledgearticleviews_modifiedby + lk_approvalstageapproval_createdonbehalfby None - 8.0.0.0 + 2.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -349899,30 +399517,30 @@ false systemuserid systemuser - lk_knowledgearticleviews_modifiedby - modifiedby - knowledgearticleviews - modifiedby + lk_approvalstageapproval_createdonbehalfby + createdonbehalfby + approvalstageapproval + createdonbehalfby 0 - 1af1f111-08d1-4967-a7ee-d842e8c52c82 + 735b4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_appconfigmaster_modifiedonbehalfby + lk_approvalstageapproval_modifiedby None - 9.0.0.0 + 2.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -349953,27 +399571,27 @@ false systemuserid systemuser - systemuser_appconfigmaster_modifiedonbehalfby - modifiedonbehalfby - appconfigmaster - appconfigmaster_modifiedonbehalfby + lk_approvalstageapproval_modifiedby + modifiedby + approvalstageapproval + modifiedby 0 - 42eace90-70dd-468f-8b12-055139ac7c70 + 795b4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_importbase_createdby + false + true + lk_approvalstageapproval_modifiedonbehalfby None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -350007,27 +399625,27 @@ false systemuserid systemuser - lk_importbase_createdby - createdby - import - createdby + lk_approvalstageapproval_modifiedonbehalfby + modifiedonbehalfby + approvalstageapproval + modifiedonbehalfby 0 - f31520e3-90b9-4e6e-8e07-ae5779acf26b + 8b5b4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_ACIViewMapper_modifiedonbehalfby + false + true + user_approvalstageapproval None - 8.2.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -350061,27 +399679,27 @@ false systemuserid systemuser - lk_ACIViewMapper_modifiedonbehalfby - modifiedonbehalfby - aciviewmapper - modifiedonbehalfby + user_approvalstageapproval + owninguser + approvalstageapproval + owninguser 0 - 7164a1ac-d8f2-423f-9557-0dbf2bd4f0aa + 445c4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_solutionbase_modifiedonbehalfby + lk_approvalstagecondition_createdby None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -350115,27 +399733,27 @@ false systemuserid systemuser - lk_solutionbase_modifiedonbehalfby - modifiedonbehalfby - solution - modifiedonbehalfby + lk_approvalstagecondition_createdby + createdby + approvalstagecondition + createdby 0 - 2c5a989a-7c0b-4cf1-abb9-36d449942e28 + 4a5c4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_untrackedemail + lk_approvalstagecondition_createdonbehalfby None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -350169,27 +399787,27 @@ false systemuserid systemuser - user_untrackedemail - owninguser - untrackedemail - owninguser_untrackedemail + lk_approvalstagecondition_createdonbehalfby + createdonbehalfby + approvalstagecondition + createdonbehalfby 0 - 1375b327-ddd4-49d4-8326-23c09206f7c1 + 505c4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_DisplayStringbase_modifiedonbehalfby + false + true + lk_approvalstagecondition_modifiedby None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -350223,27 +399841,27 @@ false systemuserid systemuser - lk_DisplayStringbase_modifiedonbehalfby - modifiedonbehalfby - displaystring - modifiedonbehalfby + lk_approvalstagecondition_modifiedby + modifiedby + approvalstagecondition + modifiedby 0 - 12c79e21-b9da-4489-9139-aa4f287243f7 + 565c4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_annotationbase_modifiedby + lk_approvalstagecondition_modifiedonbehalfby None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -350277,27 +399895,27 @@ false systemuserid systemuser - lk_annotationbase_modifiedby - modifiedby - annotation - modifiedby + lk_approvalstagecondition_modifiedonbehalfby + modifiedonbehalfby + approvalstagecondition + modifiedonbehalfby 0 - 65bc8ac7-95ae-44be-847a-d2b5e97380e1 + 685c4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_timezonerule_modifiedonbehalfby + false + true + user_approvalstagecondition None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -350331,27 +399949,27 @@ false systemuserid systemuser - lk_timezonerule_modifiedonbehalfby - modifiedonbehalfby - timezonerule - modifiedonbehalfby + user_approvalstagecondition + owninguser + approvalstagecondition + owninguser 0 - f4f91a29-b6ac-40a7-8d4a-6e9395cb821c + 195d4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_importjobbase_createdby + lk_approvalstageintelligent_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -350385,27 +400003,27 @@ false systemuserid systemuser - lk_importjobbase_createdby + lk_approvalstageintelligent_createdby createdby - importjob + approvalstageintelligent createdby 0 - 44091b1e-b70e-432b-ad13-3481315da20a + 1f5d4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_socialinsightsconfiguration_createdonbehalfby + lk_approvalstageintelligent_createdonbehalfby None - 6.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -350439,30 +400057,30 @@ false systemuserid systemuser - lk_socialinsightsconfiguration_createdonbehalfby + lk_approvalstageintelligent_createdonbehalfby createdonbehalfby - socialinsightsconfiguration + approvalstageintelligent createdonbehalfby 0 - aa376154-7651-49ca-ba82-ac1c16fdb156 + 255d4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_feedback_createdby + lk_approvalstageintelligent_modifiedby None - 8.1.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -350493,27 +400111,27 @@ false systemuserid systemuser - lk_feedback_createdby - createdby - feedback - createdby + lk_approvalstageintelligent_modifiedby + modifiedby + approvalstageintelligent + modifiedby 0 - 125078a0-d26c-4d00-9712-887002dd52aa + 2b5d4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_timezonelocalizedname_modifiedby + false + true + lk_approvalstageintelligent_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -350547,27 +400165,27 @@ false systemuserid systemuser - lk_timezonelocalizedname_modifiedby - modifiedby - timezonelocalizedname - modifiedby + lk_approvalstageintelligent_modifiedonbehalfby + modifiedonbehalfby + approvalstageintelligent + modifiedonbehalfby 0 - 28e37497-60e2-4e61-9be8-c1ba1383021c + 3d5d4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_calendarrule_createdby + user_approvalstageintelligent None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -350601,27 +400219,27 @@ false systemuserid systemuser - lk_calendarrule_createdby - createdby - calendarrule - createdby + user_approvalstageintelligent + owninguser + approvalstageintelligent + owninguser 0 - 5491d2e9-3843-45ec-80af-bb3d319a2974 + fa5d4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_wizardpage_createdby + false + true + lk_approvalstageorder_createdby None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -350655,27 +400273,27 @@ false systemuserid systemuser - lk_wizardpage_createdby + lk_approvalstageorder_createdby createdby - wizardpage + approvalstageorder createdby 0 - 4e2ff9d8-7ced-4fe4-9ef6-c63e6e26fa12 + 005e4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - createdby_sdkmessagepair + false + true + lk_approvalstageorder_createdonbehalfby None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -350709,27 +400327,27 @@ false systemuserid systemuser - createdby_sdkmessagepair - createdby - sdkmessagepair - createdby + lk_approvalstageorder_createdonbehalfby + createdonbehalfby + approvalstageorder + createdonbehalfby 0 - ae351483-88ca-44f6-a371-d64c6c6aabc1 + 065e4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_mailmergetemplatebase_createdby + lk_approvalstageorder_modifiedby None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -350763,27 +400381,27 @@ false systemuserid systemuser - lk_mailmergetemplatebase_createdby - createdby - mailmergetemplate - createdby + lk_approvalstageorder_modifiedby + modifiedby + approvalstageorder + modifiedby 0 - 43c554ea-ab90-43ac-8ab6-0c0adab04ac4 + 0c5e4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - createdby_pluginassembly + false + true + lk_approvalstageorder_modifiedonbehalfby None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -350817,27 +400435,27 @@ false systemuserid systemuser - createdby_pluginassembly - createdby - pluginassembly - createdby + lk_approvalstageorder_modifiedonbehalfby + modifiedonbehalfby + approvalstageorder + modifiedonbehalfby 0 - 1437f14c-4264-43f8-8b11-2bc3d0e61d61 + 1e5e4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_internaladdressbase_modifiedby + false + true + user_approvalstageorder None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -350871,30 +400489,30 @@ false systemuserid systemuser - lk_internaladdressbase_modifiedby - modifiedby - internaladdress - modifiedby + user_approvalstageorder + owninguser + approvalstageorder + owninguser 0 - 23444fbd-f1bc-4b9e-83bf-990c7f12f343 + bb5e4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_appconfiginstance_modifiedonbehalfby + lk_msdyn_flow_actionapprovalmodel_createdby None - 9.0.0.0 + 2.0.0.15 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -350925,27 +400543,27 @@ false systemuserid systemuser - systemuser_appconfiginstance_modifiedonbehalfby - modifiedonbehalfby - appconfiginstance - appconfiginstance_modifiedonbehalfby + lk_msdyn_flow_actionapprovalmodel_createdby + createdby + msdyn_flow_actionapprovalmodel + createdby 0 - be6719b1-4fa4-46e0-8b90-e42d13e33ff9 + c15e4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_userform_modifiedby + false + true + lk_msdyn_flow_actionapprovalmodel_createdonbehalfby None - 5.0.0.0 + 2.0.0.15 OneToManyRelationship DoNotDisplay @@ -350979,27 +400597,27 @@ false systemuserid systemuser - lk_userform_modifiedby - modifiedby - userform - modifiedby + lk_msdyn_flow_actionapprovalmodel_createdonbehalfby + createdonbehalfby + msdyn_flow_actionapprovalmodel + createdonbehalfby 0 - ff0c5994-33c9-454c-bdc8-b33968d724c7 + c75e4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_ChannelPropertyGroup_createdby + lk_msdyn_flow_actionapprovalmodel_modifiedby None - 7.1.0.0 + 2.0.0.15 OneToManyRelationship DoNotDisplay @@ -351033,27 +400651,27 @@ false systemuserid systemuser - lk_ChannelPropertyGroup_createdby - createdby - channelpropertygroup - createdby + lk_msdyn_flow_actionapprovalmodel_modifiedby + modifiedby + msdyn_flow_actionapprovalmodel + modifiedby 0 - fb8f3e8b-dd34-40b9-8248-dc66c540c476 + cd5e4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_publisherbase_createdonbehalfby + lk_msdyn_flow_actionapprovalmodel_modifiedonbehalfby None - 5.0.0.0 + 2.0.0.15 OneToManyRelationship DoNotDisplay @@ -351087,27 +400705,27 @@ false systemuserid systemuser - lk_publisherbase_createdonbehalfby - createdonbehalfby - publisher - createdonbehalfby + lk_msdyn_flow_actionapprovalmodel_modifiedonbehalfby + modifiedonbehalfby + msdyn_flow_actionapprovalmodel + modifiedonbehalfby 0 - 90c58987-d925-4a10-89bf-a4caf35f7db7 + df5e4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_sdkmessageresponse_createdonbehalfby + false + true + user_msdyn_flow_actionapprovalmodel None - 5.0.0.0 + 2.0.0.15 OneToManyRelationship DoNotDisplay @@ -351141,27 +400759,27 @@ false systemuserid systemuser - lk_sdkmessageresponse_createdonbehalfby - createdonbehalfby - sdkmessageresponse - createdonbehalfby + user_msdyn_flow_actionapprovalmodel + owninguser + msdyn_flow_actionapprovalmodel + owninguser 0 - a28d42ae-3440-4b4f-b685-b91480817f7d + d8c56445-4305-f111-8408-6045bddd6baa false - false + true iscustomizable - false + true - true - false - lk_recurrencerule_createdby + false + true + lk_githubappconfig_createdby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -351195,27 +400813,27 @@ false systemuserid systemuser - lk_recurrencerule_createdby + lk_githubappconfig_createdby createdby - recurrencerule + githubappconfig createdby 0 - 84329e81-5e2b-4051-8f9e-e2ce7c055d50 + dec56445-4305-f111-8408-6045bddd6baa false - false + true iscustomizable true - true + false true - lk_slakpiinstancebase_modifiedonbehalfby + lk_githubappconfig_createdonbehalfby None - 7.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -351249,27 +400867,27 @@ false systemuserid systemuser - lk_slakpiinstancebase_modifiedonbehalfby - modifiedonbehalfby - slakpiinstance - modifiedonbehalfby + lk_githubappconfig_createdonbehalfby + createdonbehalfby + githubappconfig + createdonbehalfby 0 - 183a1d7f-f55e-4b96-ad8b-6f24d37604b1 + e4c56445-4305-f111-8408-6045bddd6baa false - false + true iscustomizable - false + true - true - false - SystemUser_ImportFiles + false + true + lk_githubappconfig_modifiedby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -351303,27 +400921,27 @@ false systemuserid systemuser - SystemUser_ImportFiles - owninguser - importfile - owninguser + lk_githubappconfig_modifiedby + modifiedby + githubappconfig + modifiedby 0 - 51fffd92-4a74-44ba-86a6-7f7ca656f02d + eac56445-4305-f111-8408-6045bddd6baa false - false + true iscustomizable - false + true - true - false - lk_sdkmessageresponse_modifiedonbehalfby + false + true + lk_githubappconfig_modifiedonbehalfby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -351357,27 +400975,27 @@ false systemuserid systemuser - lk_sdkmessageresponse_modifiedonbehalfby + lk_githubappconfig_modifiedonbehalfby modifiedonbehalfby - sdkmessageresponse + githubappconfig modifiedonbehalfby 0 - 464e63ae-a4d5-4ef2-995f-9fafbf14a932 + fcc56445-4305-f111-8408-6045bddd6baa false - false + true iscustomizable - false + true - true + false true - lk_processsession_modifiedby + user_githubappconfig None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -351411,15 +401029,15 @@ false systemuserid systemuser - lk_processsession_modifiedby - modifiedby - processsession - modifiedby + user_githubappconfig + owninguser + githubappconfig + owninguser 0 - 84806818-b775-4eff-bb0e-370a1fc6bbd9 + 7c47e945-ad96-4572-bb0f-d7b35547ba45 false @@ -351429,12 +401047,12 @@ true true - lk_translationprocess_modifiedby + lk_callbackregistration_modifiedonbehalfby None - 8.2.0.0 + 9.0.2.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -351465,15 +401083,15 @@ false systemuserid systemuser - lk_translationprocess_modifiedby - modifiedby - translationprocess - modifiedbyname + systemuser_callbackregistration_modifiedonbehalfby + modifiedonbehalfby + callbackregistration + callbackregistration_modifiedonbehalfby 0 - 931df98c-0a65-4353-8b20-8e78e2c51983 + fb792646-1b2d-468e-86c3-382cf1bce997 false @@ -351482,13 +401100,13 @@ false true - true - lk_offlinecommanddefinition_modifiedby + false + lk_importlog_createdonbehalfby None - 9.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -351519,10 +401137,10 @@ false systemuserid systemuser - lk_offlinecommanddefinition_modifiedby - modifiedby - offlinecommanddefinition - modifiedby + lk_importlog_createdonbehalfby + createdonbehalfby + importlog + createdonbehalfby 0 @@ -351581,61 +401199,7 @@ 0 - bce2970e-20c4-4687-8903-d46b621f8bc0 - - false - - false - iscustomizable - true - - true - true - user_task - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - user_task - owninguser - task - owninguser_task - - 0 - - - 2afbf203-4584-4bb3-8c9a-4846fe3e9b73 + c56c2647-b6e7-474d-af93-f37f554d88db false @@ -351645,7 +401209,7 @@ true true - lk_recurrencerulebase_modifiedonbehalfby + lk_serviceendpointbase_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -351681,15 +401245,15 @@ false systemuserid systemuser - lk_recurrencerulebase_modifiedonbehalfby + lk_serviceendpointbase_modifiedonbehalfby modifiedonbehalfby - recurrencerule + serviceendpoint modifiedonbehalfby 0 - 20977461-78ff-4841-9e9e-60da264d319b + 0706a747-f7cb-e511-8e7e-00219b619656 false @@ -351699,12 +401263,12 @@ true true - lk_phonecall_createdby + lk_recommendeddocument_createdby None - 5.0.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -351735,30 +401299,30 @@ false systemuserid systemuser - lk_phonecall_createdby + lk_recommendeddocument_createdby createdby - phonecall - createdby_phonecall + recommendeddocument + createdbyname 0 - 66715cda-65c4-4c44-95f4-e68ecb284369 + 0d06a747-f7cb-e511-8e7e-00219b619656 false false iscustomizable - false + true true true - lk_templatebase_modifiedonbehalfby + lk_recommendeddocument_createdonbehalfby None - 5.0.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -351789,25 +401353,25 @@ false systemuserid systemuser - lk_templatebase_modifiedonbehalfby - modifiedonbehalfby - template - modifiedonbehalfby + lk_recommendeddocument_createdonbehalfby + createdonbehalfby + recommendeddocument + createdonbehalfbyname 0 - 3c127b26-4fd7-4916-bf2a-9fbeed338d80 + 1306a747-f7cb-e511-8e7e-00219b619656 false false iscustomizable - false + true true - false - lk_advancedsimilarityrule_modifiedby + true + lk_recommendeddocument_modifiedby None 8.1.0.0 OneToManyRelationship @@ -351843,15 +401407,15 @@ false systemuserid systemuser - lk_advancedsimilarityrule_modifiedby + lk_recommendeddocument_modifiedby modifiedby - advancedsimilarityrule - modifiedby + recommendeddocument + modifiedbyname 0 - 19911307-aa3c-42b1-a64b-84776e2bef24 + 1906a747-f7cb-e511-8e7e-00219b619656 false @@ -351861,12 +401425,12 @@ true true - lk_fax_modifiedonbehalfby + lk_recommendeddocument_modifiedonbehalfby None - 5.0.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -351897,81 +401461,27 @@ false systemuserid systemuser - lk_fax_modifiedonbehalfby + lk_recommendeddocument_modifiedonbehalfby modifiedonbehalfby - fax - modifiedonbehalfby_fax - - 0 - - - d2042e70-94f2-4daa-bcc9-d29dd2ab340f - - false - - false - iscustomizable - false - - true - false - lk_isvconfigbase_modifiedby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_isvconfigbase_modifiedby - modifiedby - isvconfig - modifiedby + recommendeddocument + modifiedonbehalfbyname 0 - ddca9de6-bd55-4bc5-90b7-ce41372aa369 + 3592ac47-4a55-f111-a824-7c1e5287b6a7 false - false + true iscustomizable false - true - false - lk_relationshiprolemap_modifiedonbehalfby + false + true + lk_athenareconciliationinfo_createdby None - 5.0.0.0 + 1.0.7.16 OneToManyRelationship DoNotDisplay @@ -352005,27 +401515,27 @@ false systemuserid systemuser - lk_relationshiprolemap_modifiedonbehalfby - modifiedonbehalfby - relationshiprolemap - modifiedonbehalfby + lk_athenareconciliationinfo_createdby + createdby + athenareconciliationinfo + createdby 0 - 3651ccad-78fa-4c01-863a-2a12eb55d9bc + 3b92ac47-4a55-f111-a824-7c1e5287b6a7 false - false + true iscustomizable - false + true - true + false true - lk_syncattributemappingprofile_createdby + lk_athenareconciliationinfo_createdonbehalfby None - 7.0.0.0 + 1.0.7.16 OneToManyRelationship DoNotDisplay @@ -352059,27 +401569,27 @@ false systemuserid systemuser - lk_syncattributemappingprofile_createdby - createdby - syncattributemappingprofile - createdby + lk_athenareconciliationinfo_createdonbehalfby + createdonbehalfby + athenareconciliationinfo + createdonbehalfby 0 - add8aff4-5375-4042-bb3d-4ace67a17ab1 + 4192ac47-4a55-f111-a824-7c1e5287b6a7 false - false + true iscustomizable - true + false - true + false true - lk_contact_createdonbehalfby + lk_athenareconciliationinfo_modifiedby None - 5.0.0.0 + 1.0.7.16 OneToManyRelationship DoNotDisplay @@ -352113,30 +401623,30 @@ false systemuserid systemuser - lk_contact_createdonbehalfby - createdonbehalfby - contact - createdonbehalfby + lk_athenareconciliationinfo_modifiedby + modifiedby + athenareconciliationinfo + modifiedby 0 - c908b78e-8892-4267-82a0-81e736e5d307 + 4792ac47-4a55-f111-a824-7c1e5287b6a7 false - false + true iscustomizable - false + true - true + false true - lk_customcontroldefaultconfig_createdonbehalfby + lk_athenareconciliationinfo_modifiedonbehalfby None - 8.0.0.0 + 1.0.7.16 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -352167,25 +401677,25 @@ false systemuserid systemuser - lk_customcontroldefaultconfig_createdonbehalfby - createdonbehalfby - customcontroldefaultconfig - createdonbehalfby + lk_athenareconciliationinfo_modifiedonbehalfby + modifiedonbehalfby + athenareconciliationinfo + modifiedonbehalfby 0 - 2d666dd2-9b21-48bc-847c-b6815bc6d303 + f9cb2748-e009-4e58-8614-479dd5382264 false false iscustomizable - false + true true - true - lk_publisheraddressbase_createdonbehalfby + false + lk_sharepointsitebase_createdby None 5.0.0.0 OneToManyRelationship @@ -352221,15 +401731,15 @@ false systemuserid systemuser - lk_publisheraddressbase_createdonbehalfby - createdonbehalfby - publisheraddress - createdonbehalfby + lk_sharepointsitebase_createdby + createdby + sharepointsite + createdby 0 - 31e8587b-ef7e-4913-aed6-ca809adb5051 + 5d565348-e7bb-4f83-9443-593a1591256e false @@ -352239,12 +401749,12 @@ true false - lk_annualfiscalcalendar_modifiedonbehalfby + lk_tracelog_createdonbehalfby None - 5.0.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -352275,15 +401785,15 @@ false systemuserid systemuser - lk_annualfiscalcalendar_modifiedonbehalfby - modifiedonbehalfby - annualfiscalcalendar - modifiedonbehalfby + lk_tracelog_createdonbehalfby + createdonbehalfby + tracelog + createdonbehalfby 0 - 0acf9032-208b-4a12-beb8-f29c5b2e3736 + 52485f49-b5f8-4004-a609-2ab0cc619783 false @@ -352293,7 +401803,7 @@ true false - lk_semiannualfiscalcalendar_modifiedby + modifiedby_relationship_role_map None 5.0.0.0 OneToManyRelationship @@ -352329,15 +401839,15 @@ false systemuserid systemuser - lk_semiannualfiscalcalendar_modifiedby + modifiedby_relationship_role_map modifiedby - semiannualfiscalcalendar + relationshiprolemap modifiedby 0 - 7a8489c8-88db-491c-b87b-7d775099d061 + 023e9d49-72da-4bbb-8770-9cf6f3a5ec98 false @@ -352347,63 +401857,9 @@ true true - lk_socialactivity_createdby - None - 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_socialactivity_createdby - createdby - socialactivity - createdby_socialactivity - - 0 - - - 1076ae83-d8e2-413e-99fd-09fbd3b7eb7d - - false - - false - iscustomizable - false - - true - false - lk_systemapplicationmetadata_modifiedonbehalfby + lk_MobileOfflineProfile_modifiedby None - 6.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -352437,81 +401893,27 @@ false systemuserid systemuser - lk_systemapplicationmetadata_modifiedonbehalfby - modifiedonbehalfby - systemapplicationmetadata - modifiedonbehalfby + lk_MobileOfflineProfile_modifiedby + modifiedby + mobileofflineprofile + modifiedby 0 - eb3451d8-ef60-4ddc-a142-850fe3d8e566 + f0acf649-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable true - true + false true - lk_SiteMap_createdby + lk_flowtestsession_createdby None - 9.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - systemuser_SiteMap_createdby - createdby - sitemap - SiteMap_createdby - - 0 - - - 53dd90c2-4e35-4be3-8398-76b693c49fd2 - - false - - false - iscustomizable - false - - true - false - lk_syncerrorbase_modifiedby - None - 8.0.0.0 + 1.9.49.0 OneToManyRelationship DoNotDisplay @@ -352545,27 +401947,27 @@ false systemuserid systemuser - lk_syncerrorbase_modifiedby - modifiedby - syncerror - modifiedby + lk_flowtestsession_createdby + createdby + flowtestsession + createdby 0 - c31a47b6-2fd4-4d38-92c4-03b690f447ef + f6acf649-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true + false true - lk_emailsignaturebase_createdonbehalfby + lk_flowtestsession_createdonbehalfby None - 8.1.0.0 + 1.9.49.0 OneToManyRelationship DoNotDisplay @@ -352599,30 +402001,30 @@ false systemuserid systemuser - lk_emailsignaturebase_createdonbehalfby + lk_flowtestsession_createdonbehalfby createdonbehalfby - emailsignature + flowtestsession createdonbehalfby 0 - 0c732aa1-5a38-4f3a-ac9b-1f38500be0df + fcacf649-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true + false true - multientitysearch_modifiedby + lk_flowtestsession_modifiedby None - 6.0.0.0 + 1.9.49.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -352653,27 +402055,27 @@ false systemuserid systemuser - multientitysearch_modifiedby + lk_flowtestsession_modifiedby modifiedby - multientitysearch + flowtestsession modifiedby 0 - 381f28aa-fbb5-4ee6-b546-581b4e5d26ba + 02adf649-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true + false true - lk_calendar_createdby + lk_flowtestsession_modifiedonbehalfby None - 5.0.0.0 + 1.9.49.0 OneToManyRelationship DoNotDisplay @@ -352707,27 +402109,27 @@ false systemuserid systemuser - lk_calendar_createdby - createdby - calendar - createdby + lk_flowtestsession_modifiedonbehalfby + modifiedonbehalfby + flowtestsession + modifiedonbehalfby 0 - b68961e2-3182-475c-acb1-37594aacdc00 + 14adf649-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true - false - lk_semiannualfiscalcalendar_modifiedonbehalfby + false + true + user_flowtestsession None - 5.0.0.0 + 1.9.49.0 OneToManyRelationship DoNotDisplay @@ -352761,15 +402163,15 @@ false systemuserid systemuser - lk_semiannualfiscalcalendar_modifiedonbehalfby - modifiedonbehalfby - semiannualfiscalcalendar - modifiedonbehalfby + user_flowtestsession + owninguser + flowtestsession + owninguser 0 - 13d596a2-7c9b-45ca-ac04-c9d57c4b8456 + b5e0f849-6721-4786-a9b4-f973aaf8ace0 false @@ -352779,7 +402181,7 @@ true false - lk_fixedmonthlyfiscalcalendar_modifiedby + lk_importmapbase_createdby None 5.0.0.0 OneToManyRelationship @@ -352815,27 +402217,27 @@ false systemuserid systemuser - lk_fixedmonthlyfiscalcalendar_modifiedby - modifiedby - fixedmonthlyfiscalcalendar - modifiedby + lk_importmapbase_createdby + createdby + importmap + createdby 0 - ee4483f8-f72e-41f3-bac0-45f2e2740f82 + 50b2124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - SystemUser_DuplicateBaseRecord + false + true + lk_msdyn_schedule_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -352869,27 +402271,27 @@ false systemuserid systemuser - SystemUser_DuplicateBaseRecord - baserecordid - duplicaterecord - baserecordid_systemuser + lk_msdyn_schedule_createdby + createdby + msdyn_schedule + createdby 0 - 79e0aac2-7c63-46ff-b2d1-4ca481826f97 + 56b2124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_importentitymapping_createdby + false + true + lk_msdyn_schedule_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -352923,27 +402325,27 @@ false systemuserid systemuser - lk_importentitymapping_createdby - createdby - importentitymapping - createdby + lk_msdyn_schedule_createdonbehalfby + createdonbehalfby + msdyn_schedule + createdonbehalfby 0 - 41cefa71-34dd-4c49-95ef-120b7c3e1f0a + 5cb2124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_queueitembase_createdby + lk_msdyn_schedule_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -352977,27 +402379,27 @@ false systemuserid systemuser - lk_queueitembase_createdby - createdby - queueitem - createdby + lk_msdyn_schedule_modifiedby + modifiedby + msdyn_schedule + modifiedby 0 - 3e20fa4a-103b-40ed-9f70-818089c08dfa + 62b2124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_sdkmessage_createdonbehalfby + false + true + lk_msdyn_schedule_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -353031,27 +402433,27 @@ false systemuserid systemuser - lk_sdkmessage_createdonbehalfby - createdonbehalfby - sdkmessage - createdonbehalfby + lk_msdyn_schedule_modifiedonbehalfby + modifiedonbehalfby + msdyn_schedule + modifiedonbehalfby 0 - 82d9622f-d4f3-4706-9248-22f9f397304c + 74b2124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - createdby_plugintypestatistic + false + true + user_msdyn_schedule None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -353085,27 +402487,27 @@ false systemuserid systemuser - createdby_plugintypestatistic - createdby - plugintypestatistic - createdby + user_msdyn_schedule + owninguser + msdyn_schedule + owninguser 0 - bb549019-c920-4eb7-8133-ea84f746ebc3 + 6bb4124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - createdby_sdkmessagerequest + false + true + lk_msdyn_dataflowtemplate_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -353139,27 +402541,27 @@ false systemuserid systemuser - createdby_sdkmessagerequest + lk_msdyn_dataflowtemplate_createdby createdby - sdkmessagerequest + msdyn_dataflowtemplate createdby 0 - 85cfc7d9-6419-4749-a44f-1fe3bc6baf9f + 71b4124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_picklistmapping_modifiedby + false + true + lk_msdyn_dataflowtemplate_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -353193,27 +402595,27 @@ false systemuserid systemuser - lk_picklistmapping_modifiedby - modifiedby - picklistmapping - modifiedby + lk_msdyn_dataflowtemplate_createdonbehalfby + createdonbehalfby + msdyn_dataflowtemplate + createdonbehalfby 0 - cc2262fb-898d-4bb4-8271-ec6a8a0a9002 + 77b4124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_sdkmessagerequest_modifiedonbehalfby + false + true + lk_msdyn_dataflowtemplate_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -353247,27 +402649,27 @@ false systemuserid systemuser - lk_sdkmessagerequest_modifiedonbehalfby - modifiedonbehalfby - sdkmessagerequest - modifiedonbehalfby + lk_msdyn_dataflowtemplate_modifiedby + modifiedby + msdyn_dataflowtemplate + modifiedby 0 - c6386bf3-60df-4b67-bd4d-4ef9533fad71 + 7fb4124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_team_modifiedonbehalfby + lk_msdyn_dataflowtemplate_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -353301,27 +402703,27 @@ false systemuserid systemuser - lk_team_modifiedonbehalfby + lk_msdyn_dataflowtemplate_modifiedonbehalfby modifiedonbehalfby - team + msdyn_dataflowtemplate modifiedonbehalfby 0 - 09fefb10-d8d3-4053-a3e3-0c20dad9917e + 96b4124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_integrationstatus_createdby + false + true + user_msdyn_dataflowtemplate None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -353355,81 +402757,27 @@ false systemuserid systemuser - lk_integrationstatus_createdby - createdby - integrationstatus - createdby - - 0 - - - c9d045cc-8774-4ee0-bd6f-57e6de9dc713 - - false - - false - iscustomizable - false - - true - false - lk_advancedsimilarityrule_modifiedonbehalfby - None - 8.1.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_advancedsimilarityrule_modifiedonbehalfby - modifiedonbehalfby - advancedsimilarityrule - modifiedonbehalfby + user_msdyn_dataflowtemplate + owninguser + msdyn_dataflowtemplate + owninguser 0 - ebad9416-6ad3-4b65-9211-ca0b74aafa32 + 89b6124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_businessunitnewsarticle_modifiedonbehalfby + lk_msdyn_dataflow_datalakefolder_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -353463,27 +402811,27 @@ false systemuserid systemuser - lk_businessunitnewsarticle_modifiedonbehalfby - modifiedonbehalfby - businessunitnewsarticle - modifiedonbehalfby + lk_msdyn_dataflow_datalakefolder_createdby + createdby + msdyn_dataflow_datalakefolder + createdby 0 - c5201388-01e4-438e-8025-2eee63c67b74 + 8fb6124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - SystemUser_ImportLogs + false + true + lk_msdyn_dataflow_datalakefolder_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -353517,27 +402865,27 @@ false systemuserid systemuser - SystemUser_ImportLogs - owninguser - importlog - owninguser + lk_msdyn_dataflow_datalakefolder_createdonbehalfby + createdonbehalfby + msdyn_dataflow_datalakefolder + createdonbehalfby 0 - 603f32e7-1955-4c87-a6d0-128483acabc3 + 95b6124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - system_user_quotas - ParentChild - 5.0.0.0 + false + true + lk_msdyn_dataflow_datalakefolder_modifiedby + None + 1.0 OneToManyRelationship DoNotDisplay @@ -353571,27 +402919,27 @@ false systemuserid systemuser - system_user_quotas - salespersonid - userfiscalcalendar - salespersonid + lk_msdyn_dataflow_datalakefolder_modifiedby + modifiedby + msdyn_dataflow_datalakefolder + modifiedby - 2 + 0 - 1746e1dd-c702-4085-8b24-fc21fa8f9da7 + 9bb6124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_plugintypestatisticbase_modifiedonbehalfby + lk_msdyn_dataflow_datalakefolder_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -353625,30 +402973,30 @@ false systemuserid systemuser - lk_plugintypestatisticbase_modifiedonbehalfby + lk_msdyn_dataflow_datalakefolder_modifiedonbehalfby modifiedonbehalfby - plugintypestatistic + msdyn_dataflow_datalakefolder modifiedonbehalfby 0 - 5430d62e-ad0d-48e2-8589-0fa07b596c9c + adb6124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_tracelog_createdby + false + true + user_msdyn_dataflow_datalakefolder None - 6.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -353679,15 +403027,15 @@ false systemuserid systemuser - lk_tracelog_createdby - createdby - tracelog - createdby + user_msdyn_dataflow_datalakefolder + owninguser + msdyn_dataflow_datalakefolder + owninguser 0 - 7e3c244e-0873-4424-a383-d80d225de65e + 4f967b4a-0c0b-4de1-9acb-898cc3de8de7 false @@ -353697,7 +403045,7 @@ true false - lk_wizardaccessprivilege_modifiedonbehalfby + lk_duplicaterulecondition_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -353733,27 +403081,81 @@ false systemuserid systemuser - lk_wizardaccessprivilege_modifiedonbehalfby - modifiedonbehalfby - wizardaccessprivilege - modifiedonbehalfby + lk_duplicaterulecondition_createdonbehalfby + createdonbehalfby + duplicaterulecondition + createdonbehalfby 0 - adeb1fc7-3b81-4ef6-b4cb-f643662f98eb + f81d984a-bfba-f011-bbd3-7c1e52365f30 false - false + true + iscustomizable + false + + false + true + lk_msdyn_aiodtrainingimage_createdby + None + 0.0.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_aiodtrainingimage_createdby + createdby + msdyn_aiodtrainingimage + createdby + + 0 + + + fe1d984a-bfba-f011-bbd3-7c1e52365f30 + + false + + true iscustomizable true - true + false true - lk_teambase_administratorid + lk_msdyn_aiodtrainingimage_createdonbehalfby None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -353787,27 +403189,27 @@ false systemuserid systemuser - lk_teambase_administratorid - administratorid - team - administratorid + lk_msdyn_aiodtrainingimage_createdonbehalfby + createdonbehalfby + msdyn_aiodtrainingimage + createdonbehalfby 0 - 79f0c2d5-2a35-4b58-82f6-6803df31ad5b + 041e984a-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_SharePointData_createdby + false + true + lk_msdyn_aiodtrainingimage_modifiedby None - 6.1.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -353841,27 +403243,27 @@ false systemuserid systemuser - lk_SharePointData_createdby - createdby - sharepointdata - createdby + lk_msdyn_aiodtrainingimage_modifiedby + modifiedby + msdyn_aiodtrainingimage + modifiedby 0 - 0f10d20d-1b68-40bd-a4e9-2b825cfce12d + 0a1e984a-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_reportentity_modifiedonbehalfby + lk_msdyn_aiodtrainingimage_modifiedonbehalfby None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -353895,27 +403297,27 @@ false systemuserid systemuser - lk_reportentity_modifiedonbehalfby + lk_msdyn_aiodtrainingimage_modifiedonbehalfby modifiedonbehalfby - reportentity + msdyn_aiodtrainingimage modifiedonbehalfby 0 - 6d9b4ee5-2e4b-4f17-8438-b9c6e0816cd9 + 1c1e984a-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_isvconfig_modifiedonbehalfby + user_msdyn_aiodtrainingimage None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -353949,15 +403351,15 @@ false systemuserid systemuser - lk_isvconfig_modifiedonbehalfby - modifiedonbehalfby - isvconfig - modifiedonbehalfby + user_msdyn_aiodtrainingimage + owninguser + msdyn_aiodtrainingimage + owninguser 0 - 05870708-4562-4cc3-a311-538433c6b811 + 3e20fa4a-103b-40ed-9f70-818089c08dfa false @@ -353967,7 +403369,7 @@ true false - lk_savedqueryvisualizationbase_createdby + lk_sdkmessage_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -354003,30 +403405,30 @@ false systemuserid systemuser - lk_savedqueryvisualizationbase_createdby - createdby - savedqueryvisualization - createdby + lk_sdkmessage_createdonbehalfby + createdonbehalfby + sdkmessage + createdonbehalfby 0 - 00b52df8-e1af-42aa-bb45-b64f05d3d2dd + c7bd3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - knowledgearticle_primaryauthorid + lk_msdyn_flow_approval_createdby None - 8.0.0.0 + 2.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -354057,30 +403459,30 @@ false systemuserid systemuser - knowledgearticle_primaryauthorid - primaryauthorid - knowledgearticle - primaryauthorid + lk_msdyn_flow_approval_createdby + createdby + msdyn_flow_approval + createdby 0 - 83da2da9-7947-4e73-b56d-5436e036d3c4 + cdbd3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_partnerapplication_createdby + lk_msdyn_flow_approval_createdonbehalfby None - 6.0.0.0 + 2.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -354111,27 +403513,27 @@ false systemuserid systemuser - lk_partnerapplication_createdby - createdby - partnerapplication - createdby + lk_msdyn_flow_approval_createdonbehalfby + createdonbehalfby + msdyn_flow_approval + createdonbehalfby 0 - 53a65b38-8a38-4ef9-985e-63a293f8fa06 + d3bd3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_fixedmonthlyfiscalcalendar_createdonbehalfby + false + true + lk_msdyn_flow_approval_modifiedby None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -354165,30 +403567,30 @@ false systemuserid systemuser - lk_fixedmonthlyfiscalcalendar_createdonbehalfby - createdonbehalfby - fixedmonthlyfiscalcalendar - createdonbehalfby + lk_msdyn_flow_approval_modifiedby + modifiedby + msdyn_flow_approval + modifiedby 0 - ca7e45a3-37fe-4b14-90ba-1194f3b7ad83 + d9bd3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_offlinecommanddefinition_modifiedonbehalfby + lk_msdyn_flow_approval_modifiedonbehalfby None - 9.0.0.0 + 2.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -354219,27 +403621,27 @@ false systemuserid systemuser - lk_offlinecommanddefinition_modifiedonbehalfby + lk_msdyn_flow_approval_modifiedonbehalfby modifiedonbehalfby - offlinecommanddefinition + msdyn_flow_approval modifiedonbehalfby 0 - 3d78b924-9a9c-4ba2-8650-d7d3ff51eefd + ebbd3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_email_createdby + user_msdyn_flow_approval None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -354273,27 +403675,27 @@ false systemuserid systemuser - lk_email_createdby - createdby - email - createdby_email + user_msdyn_flow_approval + owninguser + msdyn_flow_approval + owninguser 0 - fdaa08cc-cd11-4bd4-a2a4-769898647baa + bbbe3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_monthlyfiscalcalendar_createdby + false + true + lk_msdyn_flow_approvalrequest_createdby None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -354327,27 +403729,27 @@ false systemuserid systemuser - lk_monthlyfiscalcalendar_createdby + lk_msdyn_flow_approvalrequest_createdby createdby - monthlyfiscalcalendar + msdyn_flow_approvalrequest createdby 0 - 91f2d618-23c9-416c-8e33-5c09cf220581 + c1be3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_routingruleitem_modifiedonbehalfby + lk_msdyn_flow_approvalrequest_createdonbehalfby None - 6.1.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -354381,27 +403783,27 @@ false systemuserid systemuser - lk_routingruleitem_modifiedonbehalfby - modifiedonbehalfby - routingruleitem - modifiedonbehalfby + lk_msdyn_flow_approvalrequest_createdonbehalfby + createdonbehalfby + msdyn_flow_approvalrequest + createdonbehalfby 0 - 28914d67-9b3f-48f4-8081-937968031d8e + c7be3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_queuebase_createdby + lk_msdyn_flow_approvalrequest_modifiedby None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -354435,27 +403837,27 @@ false systemuserid systemuser - lk_queuebase_createdby - createdby - queue - createdby + lk_msdyn_flow_approvalrequest_modifiedby + modifiedby + msdyn_flow_approvalrequest + modifiedby 0 - 6686e7a4-84c4-433b-82f0-7151df5d8efd + cdbe3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_appmodulecomponent_createdonbehalfby + false + true + lk_msdyn_flow_approvalrequest_modifiedonbehalfby None - 8.2.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -354489,27 +403891,27 @@ false systemuserid systemuser - lk_appmodulecomponent_createdonbehalfby - createdonbehalfby - appmodulecomponent - createdonbehalfby + lk_msdyn_flow_approvalrequest_modifiedonbehalfby + modifiedonbehalfby + msdyn_flow_approvalrequest + modifiedonbehalfby 0 - 97e2d53b-2c03-412c-90a5-7d1498c55227 + dfbe3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_personaldocumenttemplatebase_createdonbehalfby + user_msdyn_flow_approvalrequest None - 8.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -354543,27 +403945,81 @@ false systemuserid systemuser - lk_personaldocumenttemplatebase_createdonbehalfby - createdonbehalfby - personaldocumenttemplate - createdonbehalfby + user_msdyn_flow_approvalrequest + owninguser + msdyn_flow_approvalrequest + owninguser 0 - 81dd5e31-987c-40ba-bdce-16e268bafc15 + 91bf3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_savedqueryvisualizationbase_createdonbehalfby + lk_msdyn_flow_approvalresponse_createdby None - 5.0.0.0 + 2.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_flow_approvalresponse_createdby + createdby + msdyn_flow_approvalresponse + createdby + + 0 + + + 97bf3c4b-bcba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_msdyn_flow_approvalresponse_createdonbehalfby + None + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -354597,27 +404053,27 @@ false systemuserid systemuser - lk_savedqueryvisualizationbase_createdonbehalfby + lk_msdyn_flow_approvalresponse_createdonbehalfby createdonbehalfby - savedqueryvisualization + msdyn_flow_approvalresponse createdonbehalfby 0 - 0397d599-6881-48ae-ad92-27d6937e3e49 + 9dbf3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_newprocess_createdby + lk_msdyn_flow_approvalresponse_modifiedby None - 8.2.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -354651,30 +404107,30 @@ false systemuserid systemuser - lk_newprocess_createdby - createdby - newprocess - createdbyname + lk_msdyn_flow_approvalresponse_modifiedby + modifiedby + msdyn_flow_approvalresponse + modifiedby 0 - 6a122676-3f66-469b-83e3-6bd192226897 + a3bf3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_category_createdonbehalfby + false + true + lk_msdyn_flow_approvalresponse_modifiedonbehalfby None - 8.1.0.0 + 2.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -354705,27 +404161,27 @@ false systemuserid systemuser - lk_category_createdonbehalfby - createdonbehalfby - category - lk_category_createdonbehalfby + lk_msdyn_flow_approvalresponse_modifiedonbehalfby + modifiedonbehalfby + msdyn_flow_approvalresponse + modifiedonbehalfby 0 - 92e51a28-59c0-4192-be56-e8d5b66ab36d + b5bf3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_sharepointdocumentbase_modifiedby + user_msdyn_flow_approvalresponse None - 6.1.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -354737,8 +404193,8 @@ true - true - navSPDocuments + false + 00000000-0000-0000-0000-000000000000 @@ -354759,27 +404215,27 @@ false systemuserid systemuser - lk_sharepointdocumentbase_modifiedby - modifiedby - sharepointdocument - modifiedby + user_msdyn_flow_approvalresponse + owninguser + msdyn_flow_approvalresponse + owninguser 0 - 7939e4c3-742f-4ce7-8059-e8372d245b19 + 5bc03c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_newprocess_modifiedonbehalfby + lk_msdyn_flow_approvalstep_createdby None - 8.2.0.0 + 2.0.4.4 OneToManyRelationship DoNotDisplay @@ -354813,30 +404269,30 @@ false systemuserid systemuser - lk_newprocess_modifiedonbehalfby - modifiedonbehalfby - newprocess - modifiedonbehalfbyname + lk_msdyn_flow_approvalstep_createdby + createdby + msdyn_flow_approvalstep + createdby 0 - 0c5135ce-f9ea-494e-a807-8355f2f71eea + 61c03c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_feedback_closedby + lk_msdyn_flow_approvalstep_createdonbehalfby None - 8.1.0.0 + 2.0.4.4 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -354867,27 +404323,27 @@ false systemuserid systemuser - lk_feedback_closedby - closedby - feedback - closedby + lk_msdyn_flow_approvalstep_createdonbehalfby + createdonbehalfby + msdyn_flow_approvalstep + createdonbehalfby 0 - ed91688e-604a-4d47-9f61-3f2dc2f3577d + 67c03c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_expanderevent_modifiedonbehalfby + false + true + lk_msdyn_flow_approvalstep_modifiedby None - 9.0.0.0 + 2.0.4.4 OneToManyRelationship DoNotDisplay @@ -354921,27 +404377,27 @@ false systemuserid systemuser - lk_expanderevent_modifiedonbehalfby - modifiedonbehalfby - expanderevent - modifiedonbehalfby + lk_msdyn_flow_approvalstep_modifiedby + modifiedby + msdyn_flow_approvalstep + modifiedby 0 - 0ea2dbd6-da71-4dc3-a5e2-4ad95a9463e9 + 6dc03c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_semiannualfiscalcalendar_createdby + false + true + lk_msdyn_flow_approvalstep_modifiedonbehalfby None - 5.0.0.0 + 2.0.4.4 OneToManyRelationship DoNotDisplay @@ -354975,27 +404431,27 @@ false systemuserid systemuser - lk_semiannualfiscalcalendar_createdby - createdby - semiannualfiscalcalendar - createdby + lk_msdyn_flow_approvalstep_modifiedonbehalfby + modifiedonbehalfby + msdyn_flow_approvalstep + modifiedonbehalfby 0 - 7c47d062-ca24-4a03-a2cb-e2e1c0a0a39c + 7fc03c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_duplicateruleconditionbase_modifiedby + false + true + user_msdyn_flow_approvalstep None - 5.0.0.0 + 2.0.4.4 OneToManyRelationship DoNotDisplay @@ -355029,30 +404485,30 @@ false systemuserid systemuser - lk_duplicateruleconditionbase_modifiedby - modifiedby - duplicaterulecondition - modifiedby + user_msdyn_flow_approvalstep + owninguser + msdyn_flow_approvalstep + owninguser 0 - d18d5b5d-4c10-439e-ad61-4d8e516b1d4f + 19c13c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - multientitysearch_createdby + lk_msdyn_flow_awaitallactionapprovalmodel_createdby None - 6.0.0.0 + 2.0.0.16 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -355083,27 +404539,27 @@ false systemuserid systemuser - multientitysearch_createdby + lk_msdyn_flow_awaitallactionapprovalmodel_createdby createdby - multientitysearch + msdyn_flow_awaitallactionapprovalmodel createdby 0 - 3cbba604-75d4-4b62-a53b-6cb961cdc51b + 1fc13c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - queue_primary_user - Append - 5.0.0.0 + lk_msdyn_flow_awaitallactionapprovalmodel_createdonbehalfby + None + 2.0.0.16 OneToManyRelationship DoNotDisplay @@ -355137,27 +404593,27 @@ false systemuserid systemuser - queue_primary_user - primaryuserid - queue - primaryuserid + lk_msdyn_flow_awaitallactionapprovalmodel_createdonbehalfby + createdonbehalfby + msdyn_flow_awaitallactionapprovalmodel + createdonbehalfby - 1 + 0 - 83470ae7-8f40-4524-8fea-4f05f5db2c68 + 25c13c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_emailsignaturebase_createdby + lk_msdyn_flow_awaitallactionapprovalmodel_modifiedby None - 8.1.0.0 + 2.0.0.16 OneToManyRelationship DoNotDisplay @@ -355191,27 +404647,27 @@ false systemuserid systemuser - lk_emailsignaturebase_createdby - createdby - emailsignature - createdby + lk_msdyn_flow_awaitallactionapprovalmodel_modifiedby + modifiedby + msdyn_flow_awaitallactionapprovalmodel + modifiedby 0 - c41f3a93-604a-4bbb-8a63-668122cc0bf7 + 2bc13c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_email + lk_msdyn_flow_awaitallactionapprovalmodel_modifiedonbehalfby None - 5.0.0.0 + 2.0.0.16 OneToManyRelationship DoNotDisplay @@ -355245,27 +404701,27 @@ false systemuserid systemuser - user_email - owninguser - email - owninguser_email + lk_msdyn_flow_awaitallactionapprovalmodel_modifiedonbehalfby + modifiedonbehalfby + msdyn_flow_awaitallactionapprovalmodel + modifiedonbehalfby 0 - db5398ac-19ef-4462-8dc6-779835f9acca + 3dc13c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_reportbase_createdby + user_msdyn_flow_awaitallactionapprovalmodel None - 5.0.0.0 + 2.0.0.16 OneToManyRelationship DoNotDisplay @@ -355299,27 +404755,27 @@ false systemuserid systemuser - lk_reportbase_createdby - createdby - report - createdby + user_msdyn_flow_awaitallactionapprovalmodel + owninguser + msdyn_flow_awaitallactionapprovalmodel + owninguser 0 - 0b1dff33-8e8f-4259-aa34-cdf968b9450d + d5c13c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_appointment_createdby + lk_msdyn_flow_awaitallapprovalmodel_createdby None - 5.0.0.0 + 2.0.0.5 OneToManyRelationship DoNotDisplay @@ -355353,27 +404809,27 @@ false systemuserid systemuser - lk_appointment_createdby + lk_msdyn_flow_awaitallapprovalmodel_createdby createdby - appointment - createdby_appointment + msdyn_flow_awaitallapprovalmodel + createdby 0 - 348592ab-76b6-4ec3-9bd3-e31aeb79560a + dbc13c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_letter_modifiedby + lk_msdyn_flow_awaitallapprovalmodel_createdonbehalfby None - 5.0.0.0 + 2.0.0.5 OneToManyRelationship DoNotDisplay @@ -355407,27 +404863,27 @@ false systemuserid systemuser - lk_letter_modifiedby - modifiedby - letter - modifiedby_letter + lk_msdyn_flow_awaitallapprovalmodel_createdonbehalfby + createdonbehalfby + msdyn_flow_awaitallapprovalmodel + createdonbehalfby 0 - dbb73a45-f36c-442f-8629-9ffa81070b76 + e1c13c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_untrackedemail_modifiedonbehalfby + lk_msdyn_flow_awaitallapprovalmodel_modifiedby None - 8.2.0.0 + 2.0.0.5 OneToManyRelationship DoNotDisplay @@ -355461,27 +404917,27 @@ false systemuserid systemuser - lk_untrackedemail_modifiedonbehalfby - modifiedonbehalfby - untrackedemail - modifiedonbehalfby_untrackedemail + lk_msdyn_flow_awaitallapprovalmodel_modifiedby + modifiedby + msdyn_flow_awaitallapprovalmodel + modifiedby 0 - 74786570-17af-4bf9-b4dd-e5abaefc5107 + e7c13c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_systemapplicationmetadata_createdby + false + true + lk_msdyn_flow_awaitallapprovalmodel_modifiedonbehalfby None - 6.0.0.0 + 2.0.0.5 OneToManyRelationship DoNotDisplay @@ -355515,30 +404971,30 @@ false systemuserid systemuser - lk_systemapplicationmetadata_createdby - createdby - systemapplicationmetadata - createdby + lk_msdyn_flow_awaitallapprovalmodel_modifiedonbehalfby + modifiedonbehalfby + msdyn_flow_awaitallapprovalmodel + modifiedonbehalfby 0 - d3034a19-f56b-49f1-91f5-9b6cc9e7f5b8 + f9c13c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_customcontrol_createdonbehalfby + user_msdyn_flow_awaitallapprovalmodel None - 8.0.0.0 + 2.0.0.5 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -355569,27 +405025,27 @@ false systemuserid systemuser - lk_customcontrol_createdonbehalfby - createdonbehalfby - customcontrol - createdonbehalfby + user_msdyn_flow_awaitallapprovalmodel + owninguser + msdyn_flow_awaitallapprovalmodel + owninguser 0 - aab338aa-3350-4d64-a1d6-83e7749ee13a + 97c23c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_usersettingsbase_modifiedby + false + true + lk_msdyn_flow_basicapprovalmodel_createdby None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -355623,27 +405079,27 @@ false systemuserid systemuser - lk_usersettingsbase_modifiedby - modifiedby - usersettings - modifiedby + lk_msdyn_flow_basicapprovalmodel_createdby + createdby + msdyn_flow_basicapprovalmodel + createdby 0 - 9e5b863c-7e8d-490c-aa35-8354dbf87cb2 + 9dc23c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_reportvisibility_modifiedonbehalfby + lk_msdyn_flow_basicapprovalmodel_createdonbehalfby None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -355677,27 +405133,27 @@ false systemuserid systemuser - lk_reportvisibility_modifiedonbehalfby - modifiedonbehalfby - reportvisibility - modifiedonbehalfby + lk_msdyn_flow_basicapprovalmodel_createdonbehalfby + createdonbehalfby + msdyn_flow_basicapprovalmodel + createdonbehalfby 0 - 4a63ee09-0049-43fb-8bf4-263d6215a90c + a3c23c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_queueitembase_modifiedby + lk_msdyn_flow_basicapprovalmodel_modifiedby None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -355731,30 +405187,30 @@ false systemuserid systemuser - lk_queueitembase_modifiedby + lk_msdyn_flow_basicapprovalmodel_modifiedby modifiedby - queueitem + msdyn_flow_basicapprovalmodel modifiedby 0 - 8170fb5d-25ba-460f-8daa-b6209affd8fd + a9c23c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - userentityinstancedata_owning_user + false + true + lk_msdyn_flow_basicapprovalmodel_modifiedonbehalfby None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -355785,27 +405241,27 @@ false systemuserid systemuser - userentityinstancedata_owning_user - owninguser - userentityinstancedata - owninguser + lk_msdyn_flow_basicapprovalmodel_modifiedonbehalfby + modifiedonbehalfby + msdyn_flow_basicapprovalmodel + modifiedonbehalfby 0 - 65fc9d7e-6050-4c7f-8dd4-7537fc7aee50 + bbc23c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_sdkmessageprocessingstep_modifiedonbehalfby + false + true + user_msdyn_flow_basicapprovalmodel None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -355839,27 +405295,27 @@ false systemuserid systemuser - lk_sdkmessageprocessingstep_modifiedonbehalfby - modifiedonbehalfby - sdkmessageprocessingstep - modifiedonbehalfby + user_msdyn_flow_basicapprovalmodel + owninguser + msdyn_flow_basicapprovalmodel + owninguser 0 - fc98f066-4335-4b6a-962b-b628592d2fa0 + 70c33c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - modifiedby_pluginassembly + false + true + lk_msdyn_flow_flowapproval_createdby None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -355893,27 +405349,27 @@ false systemuserid systemuser - modifiedby_pluginassembly - modifiedby - pluginassembly - modifiedby + lk_msdyn_flow_flowapproval_createdby + createdby + msdyn_flow_flowapproval + createdby 0 - 0979aef3-2b5f-4c4f-bcf4-e072b2e6ffe8 + 76c33c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_businessprocessflowinstancebase_modifiedby + lk_msdyn_flow_flowapproval_createdonbehalfby None - 8.2.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -355947,27 +405403,27 @@ false systemuserid systemuser - lk_businessprocessflowinstancebase_modifiedby - modifiedby - businessprocessflowinstance - modifiedby + lk_msdyn_flow_flowapproval_createdonbehalfby + createdonbehalfby + msdyn_flow_flowapproval + createdonbehalfby 0 - f2dd4e2a-d086-43bc-bab0-361e4eb47eb9 + 7cc33c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true - false - lk_sharepointdocumentlocationbase_modifiedby + false + true + lk_msdyn_flow_flowapproval_modifiedby None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -356001,27 +405457,27 @@ false systemuserid systemuser - lk_sharepointdocumentlocationbase_modifiedby + lk_msdyn_flow_flowapproval_modifiedby modifiedby - sharepointdocumentlocation + msdyn_flow_flowapproval modifiedby 0 - b6b21738-26a2-4547-9e88-7f11b9c4be15 + 82c33c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_userfiscalcalendar_modifiedonbehalfby + false + true + lk_msdyn_flow_flowapproval_modifiedonbehalfby None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -356055,15 +405511,69 @@ false systemuserid systemuser - lk_userfiscalcalendar_modifiedonbehalfby + lk_msdyn_flow_flowapproval_modifiedonbehalfby modifiedonbehalfby - userfiscalcalendar + msdyn_flow_flowapproval modifiedonbehalfby 0 - 65f684ea-0597-44db-9838-5db18930ce4d + 94c33c4b-bcba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + user_msdyn_flow_flowapproval + None + 2.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_msdyn_flow_flowapproval + owninguser + msdyn_flow_flowapproval + owninguser + + 0 + + + e8c3a94b-1723-474a-89eb-910021ee3de2 false @@ -356073,7 +405583,7 @@ true true - system_user_activity_parties + lk_reportlinkbase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -356109,15 +405619,15 @@ false systemuserid systemuser - system_user_activity_parties - partyid - activityparty - partyid_systemuser + lk_reportlinkbase_modifiedby + modifiedby + reportlink + modifiedby 0 - 3aa8b0ea-e50c-4d52-a8c3-e09a99500d8b + 6d0fb34b-a4eb-4fc5-96c6-7a12dc8e8026 false @@ -356127,9 +405637,9 @@ true false - lk_annualfiscalcalendar_salespersonid - ParentChild - 5.0.0.0 + lk_systemapplicationmetadata_modifiedby + None + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -356163,15 +405673,15 @@ false systemuserid systemuser - lk_annualfiscalcalendar_salespersonid - salespersonid - annualfiscalcalendar - salespersonid + lk_systemapplicationmetadata_modifiedby + modifiedby + systemapplicationmetadata + modifiedby - 2 + 0 - 6bd683bc-0053-44ca-9ded-6d07cc0e3185 + 5ec0c84b-e78f-43ea-baff-8288893eee15 false @@ -356180,8 +405690,8 @@ false true - true - SystemUser_AsyncOperations + false + createdby_sdkmessagefilter None 5.0.0.0 OneToManyRelationship @@ -356217,25 +405727,25 @@ false systemuserid systemuser - SystemUser_AsyncOperations - regardingobjectid - asyncoperation - regardingobjectid_systemuser + createdby_sdkmessagefilter + createdby + sdkmessagefilter + createdby 0 - 25826e09-5f20-409c-950c-fdda6c8898fe + 759b5d4c-e2c4-4880-8399-f3ccc80c21cf false false iscustomizable - false + true true - false - lk_wizardaccessprivilege_modifiedby + true + lk_systemuser_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -356271,15 +405781,15 @@ false systemuserid systemuser - lk_wizardaccessprivilege_modifiedby - modifiedby - wizardaccessprivilege - modifiedby + lk_systemuser_createdonbehalfby + createdonbehalfby + systemuser + createdonbehalfby 0 - e509c878-8e00-4dc1-9643-50ad55924227 + 707d5f4c-7f4b-4e46-a256-47efcc4b1e48 false @@ -356289,7 +405799,7 @@ true true - lk_publisheraddressbase_createdby + lk_kbarticlecommentbase_createdby None 5.0.0.0 OneToManyRelationship @@ -356325,25 +405835,25 @@ false systemuserid systemuser - lk_publisheraddressbase_createdby + lk_kbarticlecommentbase_createdby createdby - publisheraddress + kbarticlecomment createdby 0 - 565e0b71-5264-408b-ac7a-d0a395fbb7f9 + 4843784c-22a1-4718-9185-67d23ac03c63 false false iscustomizable - false + true true - false - lk_import_modifiedonbehalfby + true + lk_email_modifiedby None 5.0.0.0 OneToManyRelationship @@ -356379,25 +405889,25 @@ false systemuserid systemuser - lk_import_modifiedonbehalfby - modifiedonbehalfby - import - modifiedonbehalfby + lk_email_modifiedby + modifiedby + email + modifiedby_email 0 - ea7a8e1f-1b82-4de7-8b56-d8d862720633 + 1437f14c-4264-43f8-8b11-2bc3d0e61d61 false false iscustomizable - true + false true - true - lk_queuebase_modifiedby + false + lk_internaladdressbase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -356433,15 +405943,15 @@ false systemuserid systemuser - lk_queuebase_modifiedby + lk_internaladdressbase_modifiedby modifiedby - queue + internaladdress modifiedby 0 - 1b1d8b86-11c2-4e4e-9bfb-2b988ff2678d + c9bdfb4c-6520-44d1-93a1-6387f9bbdc53 false @@ -356450,10 +405960,10 @@ false true - true - lk_savedorginsightsconfiguration_createdby + false + lk_picklistmapping_createdonbehalfby None - 8.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -356487,15 +405997,15 @@ false systemuserid systemuser - lk_savedorginsightsconfiguration_createdby - createdby - savedorginsightsconfiguration - lk_savedorginsightsconfiguration_createdby + lk_picklistmapping_createdonbehalfby + createdonbehalfby + picklistmapping + createdonbehalfby 0 - f538d5c5-8863-4749-8a00-dd8e35f17191 + 6b4f264d-9608-4058-9749-16974ee3aacc false @@ -356505,7 +406015,7 @@ true false - SystemUser_ImportMaps + lk_sdkmessageprocessingstepimage_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -356541,15 +406051,15 @@ false systemuserid systemuser - SystemUser_ImportMaps - owninguser - importmap - owninguser + lk_sdkmessageprocessingstepimage_createdonbehalfby + createdonbehalfby + sdkmessageprocessingstepimage + createdonbehalfby 0 - adf4140d-574f-471c-bb37-dde0fd143438 + 64a8f94d-5fcc-4611-8e67-78e50c10aefd false @@ -356559,7 +406069,61 @@ true true - workflow_modifiedonbehalfby + modifiedby_customer_relationship + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + modifiedby_customer_relationship + modifiedby + customerrelationship + modifiedby + + 0 + + + 7e3c244e-0873-4424-a383-d80d225de65e + + false + + false + iscustomizable + false + + true + false + lk_wizardaccessprivilege_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -356595,30 +406159,30 @@ false systemuserid systemuser - workflow_modifiedonbehalfby + lk_wizardaccessprivilege_modifiedonbehalfby modifiedonbehalfby - workflow + wizardaccessprivilege modifiedonbehalfby 0 - 0a838dcf-ea3d-41b5-ac3e-a46f95daff82 + 768b734e-42a0-4a52-8a49-3e5d0e366293 false false iscustomizable - false + true true - false - lk_category_modifiedby + true + lk_mobileofflineprofileitem_createdonbehalfby None - 8.1.0.0 + 8.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -356649,27 +406213,27 @@ false systemuserid systemuser - lk_category_modifiedby - modifiedby - category - lk_category_modifiedby + lk_mobileofflineprofileitem_createdonbehalfby + createdonbehalfby + mobileofflineprofileitem + createdonbehalfby 0 - 9aee21d0-3343-4373-9730-28e9e049de6b + 036bd54e-96ce-450f-ab4c-971f7c8c1ce1 false false iscustomizable - true + false true - true - lk_SiteMap_createdonbehalfby + false + lk_advancedsimilarityrule_createdby None - 9.0.0.0 + 8.1.0.0 OneToManyRelationship UseCollectionName @@ -356703,27 +406267,27 @@ false systemuserid systemuser - systemuser_SiteMap_createdonbehalfby - createdonbehalfby - sitemap - SiteMap_createdonbehalfby + lk_advancedsimilarityrule_createdby + createdby + advancedsimilarityrule + createdby 0 - 58ef9204-1fef-4070-8bb1-326bea43c7db + ce7dcb4f-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - webresource_modifiedby + lk_msdyn_pmanalysishistory_createdby None - 5.0.0.0 + 1.2.0.13 OneToManyRelationship DoNotDisplay @@ -356757,27 +406321,27 @@ false systemuserid systemuser - webresource_modifiedby - modifiedby - webresource - modifiedby + lk_msdyn_pmanalysishistory_createdby + createdby + msdyn_pmanalysishistory + createdby 0 - 270055b8-0508-4d07-b9b1-075a89d79c79 + d47dcb4f-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - createdby_sdkmessage + false + true + lk_msdyn_pmanalysishistory_createdonbehalfby None - 5.0.0.0 + 1.2.0.13 OneToManyRelationship DoNotDisplay @@ -356811,27 +406375,27 @@ false systemuserid systemuser - createdby_sdkmessage - createdby - sdkmessage - createdby + lk_msdyn_pmanalysishistory_createdonbehalfby + createdonbehalfby + msdyn_pmanalysishistory + createdonbehalfby 0 - 114a65b2-bb15-4d55-b1d2-b90f445bd4bb + da7dcb4f-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_importlogbase_modifiedby + false + true + lk_msdyn_pmanalysishistory_modifiedby None - 5.0.0.0 + 1.2.0.13 OneToManyRelationship DoNotDisplay @@ -356865,27 +406429,27 @@ false systemuserid systemuser - lk_importlogbase_modifiedby + lk_msdyn_pmanalysishistory_modifiedby modifiedby - importlog + msdyn_pmanalysishistory modifiedby 0 - 5ed693b6-44ce-46d8-bb93-8f4c5a6ab47e + e07dcb4f-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_routingrule_createdonbehalfby + lk_msdyn_pmanalysishistory_modifiedonbehalfby None - 6.1.0.0 + 1.2.0.13 OneToManyRelationship DoNotDisplay @@ -356919,27 +406483,27 @@ false systemuserid systemuser - lk_routingrule_createdonbehalfby - createdonbehalfby - routingrule - createdonbehalfby + lk_msdyn_pmanalysishistory_modifiedonbehalfby + modifiedonbehalfby + msdyn_pmanalysishistory + modifiedonbehalfby 0 - ef2333ff-07ec-4db3-9a6c-2863160a2587 + f27dcb4f-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_importjobbase_createdonbehalfby + user_msdyn_pmanalysishistory None - 5.0.0.0 + 1.2.0.13 OneToManyRelationship DoNotDisplay @@ -356973,27 +406537,27 @@ false systemuserid systemuser - lk_importjobbase_createdonbehalfby - createdonbehalfby - importjob - createdonbehalfby + user_msdyn_pmanalysishistory + owninguser + msdyn_pmanalysishistory + owninguser 0 - b8ed0320-4ed3-4053-b4e5-094ea795e8b9 + b17ecb4f-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_monthlyfiscalcalendar_modifiedonbehalfby + false + true + lk_msdyn_pmbusinessruleautomationconfig_createdby None - 5.0.0.0 + 1.3.2.0 OneToManyRelationship DoNotDisplay @@ -357027,27 +406591,27 @@ false systemuserid systemuser - lk_monthlyfiscalcalendar_modifiedonbehalfby - modifiedonbehalfby - monthlyfiscalcalendar - modifiedonbehalfby + lk_msdyn_pmbusinessruleautomationconfig_createdby + createdby + msdyn_pmbusinessruleautomationconfig + createdby 0 - d9e1567f-c265-46b5-90ea-5c9506a510bb + b77ecb4f-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_transactioncurrency_createdonbehalfby + false + true + lk_msdyn_pmbusinessruleautomationconfig_createdonbehalfby None - 5.0.0.0 + 1.3.2.0 OneToManyRelationship DoNotDisplay @@ -357081,27 +406645,27 @@ false systemuserid systemuser - lk_transactioncurrency_createdonbehalfby + lk_msdyn_pmbusinessruleautomationconfig_createdonbehalfby createdonbehalfby - transactioncurrency + msdyn_pmbusinessruleautomationconfig createdonbehalfby 0 - 117932f2-fabe-4b1f-bdf7-a211883c392c + bd7ecb4f-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_bulkdeleteoperation_createdonbehalfby + false + true + lk_msdyn_pmbusinessruleautomationconfig_modifiedby None - 5.0.0.0 + 1.3.2.0 OneToManyRelationship DoNotDisplay @@ -357135,27 +406699,27 @@ false systemuserid systemuser - lk_bulkdeleteoperation_createdonbehalfby - createdonbehalfby - bulkdeleteoperation - createdonbehalfby + lk_msdyn_pmbusinessruleautomationconfig_modifiedby + modifiedby + msdyn_pmbusinessruleautomationconfig + modifiedby 0 - 927c0fbe-9376-4eca-8906-f2bdbfeaa44d + c37ecb4f-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - modifiedby_plugintypestatistic + false + true + lk_msdyn_pmbusinessruleautomationconfig_modifiedonbehalfby None - 5.0.0.0 + 1.3.2.0 OneToManyRelationship DoNotDisplay @@ -357189,27 +406753,27 @@ false systemuserid systemuser - modifiedby_plugintypestatistic - modifiedby - plugintypestatistic - modifiedby + lk_msdyn_pmbusinessruleautomationconfig_modifiedonbehalfby + modifiedonbehalfby + msdyn_pmbusinessruleautomationconfig + modifiedonbehalfby 0 - a62e6e19-555a-4057-8729-62b953b85c8a + d57ecb4f-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_actioncardbase_modifiedonbehalfby + user_msdyn_pmbusinessruleautomationconfig None - 8.2.0.0 + 1.3.2.0 OneToManyRelationship DoNotDisplay @@ -357243,15 +406807,15 @@ false systemuserid systemuser - lk_actioncardbase_modifiedonbehalfby - modifiedonbehalfby - actioncard - modifiedonbehalfby + user_msdyn_pmbusinessruleautomationconfig + owninguser + msdyn_pmbusinessruleautomationconfig + owninguser 0 - 878eadaf-ca1f-4e77-857c-46b86afc2776 + 195f2450-d7ca-48fc-ad25-aaf9cedb0d78 false @@ -357261,9 +406825,9 @@ true true - lk_recurringappointmentmaster_createdby + lk_socialactivity_modifiedby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -357297,27 +406861,27 @@ false systemuserid systemuser - lk_recurringappointmentmaster_createdby - createdby - recurringappointmentmaster - createdby_recurringappointmentmaster + lk_socialactivity_modifiedby + modifiedby + socialactivity + modifiedby_socialactivity 0 - 20aaa483-9f9c-4b50-9385-4c6b13e920f7 + 7a4e5550-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - modifiedonbehalfby_customer_relationship + lk_msdyn_dmsrequest_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -357351,27 +406915,27 @@ false systemuserid systemuser - modifiedonbehalfby_customer_relationship - modifiedonbehalfby - customerrelationship - modifiedonbehalfby + lk_msdyn_dmsrequest_createdby + createdby + msdyn_dmsrequest + createdby 0 - d8bb8a84-8734-459e-9c99-6e5e53e63f87 + 804e5550-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_DisplayStringbase_createdonbehalfby + false + true + lk_msdyn_dmsrequest_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -357405,27 +406969,27 @@ false systemuserid systemuser - lk_DisplayStringbase_createdonbehalfby + lk_msdyn_dmsrequest_createdonbehalfby createdonbehalfby - displaystring + msdyn_dmsrequest createdonbehalfby 0 - 2d2d743a-ac40-4bee-abe9-e4e825363961 + 864e5550-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_importdatabase_createdby + false + true + lk_msdyn_dmsrequest_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -357459,27 +407023,27 @@ false systemuserid systemuser - lk_importdatabase_createdby - createdby - importdata - createdby + lk_msdyn_dmsrequest_modifiedby + modifiedby + msdyn_dmsrequest + modifiedby 0 - ff5a9688-1b31-4460-97d0-5a3f00a33d17 + 8c4e5550-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_audit_callinguserid + lk_msdyn_dmsrequest_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -357513,27 +407077,27 @@ false systemuserid systemuser - lk_audit_callinguserid - callinguserid - audit - callinguserid + lk_msdyn_dmsrequest_modifiedonbehalfby + modifiedonbehalfby + msdyn_dmsrequest + modifiedonbehalfby 0 - 3fc532af-f4c1-40bb-a490-6e7d16e00e4c + 9e4e5550-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_calendarrule_modifiedonbehalfby + user_msdyn_dmsrequest None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -357567,27 +407131,27 @@ false systemuserid systemuser - lk_calendarrule_modifiedonbehalfby - modifiedonbehalfby - calendarrule - modifiedonbehalfby + user_msdyn_dmsrequest + owninguser + msdyn_dmsrequest + owninguser 0 - a73ac623-5602-4ee3-88fe-1cacb4894e3b + c8525550-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_sdkmessagerequest_createdonbehalfby + false + true + lk_msdyn_dmsrequeststatus_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -357621,27 +407185,27 @@ false systemuserid systemuser - lk_sdkmessagerequest_createdonbehalfby - createdonbehalfby - sdkmessagerequest - createdonbehalfby + lk_msdyn_dmsrequeststatus_createdby + createdby + msdyn_dmsrequeststatus + createdby 0 - 6287aa98-8202-4768-bf74-ed4c576104dd + d6525550-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_importfilebase_createdby + false + true + lk_msdyn_dmsrequeststatus_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -357675,27 +407239,27 @@ false systemuserid systemuser - lk_importfilebase_createdby - createdby - importfile - createdby + lk_msdyn_dmsrequeststatus_createdonbehalfby + createdonbehalfby + msdyn_dmsrequeststatus + createdonbehalfby 0 - bf8df842-5595-4391-82ba-ba3b9f4f48b6 + e4525550-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_importmap_modifiedonbehalfby + lk_msdyn_dmsrequeststatus_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -357729,27 +407293,27 @@ false systemuserid systemuser - lk_importmap_modifiedonbehalfby - modifiedonbehalfby - importmap - modifiedonbehalfby + lk_msdyn_dmsrequeststatus_modifiedby + modifiedby + msdyn_dmsrequeststatus + modifiedby 0 - 2f686d3d-f739-4eb2-983f-6bce87d28311 + f0525550-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_wizardpage_createdonbehalfby + false + true + lk_msdyn_dmsrequeststatus_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -357783,30 +407347,30 @@ false systemuserid systemuser - lk_wizardpage_createdonbehalfby - createdonbehalfby - wizardpage - createdonbehalfby + lk_msdyn_dmsrequeststatus_modifiedonbehalfby + modifiedonbehalfby + msdyn_dmsrequeststatus + modifiedonbehalfby 0 - 2c941c2e-40be-402e-b77c-e9ed1f880ec0 + 02535550-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_expiredprocess_modifiedonbehalfby + user_msdyn_dmsrequeststatus None - 8.2.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -357837,25 +407401,25 @@ false systemuserid systemuser - lk_expiredprocess_modifiedonbehalfby - modifiedonbehalfby - expiredprocess - modifiedonbehalfbyname + user_msdyn_dmsrequeststatus + owninguser + msdyn_dmsrequeststatus + owninguser 0 - ae5cc579-3684-4c3c-80e6-019f66d9dcd1 + 54ec5650-4a4f-4da1-b782-0a4a8e1e3e84 false false iscustomizable - false + true true true - lk_userqueryvisualizationbase_modifiedonbehalfby + lk_accountbase_createdby None 5.0.0.0 OneToManyRelationship @@ -357891,15 +407455,15 @@ false systemuserid systemuser - lk_userqueryvisualizationbase_modifiedonbehalfby - modifiedonbehalfby - userqueryvisualization - modifiedonbehalfby + lk_accountbase_createdby + createdby + account + createdby 0 - 571ce5ff-792a-4709-adb0-8a34c433a350 + 01146250-6c27-496f-a807-1eb491ceffeb false @@ -357909,8 +407473,8 @@ true false - lk_semiannualfiscalcalendar_salespersonid - ParentChild + lk_quarterlyfiscalcalendar_createdonbehalfby + None 5.0.0.0 OneToManyRelationship @@ -357945,30 +407509,30 @@ false systemuserid systemuser - lk_semiannualfiscalcalendar_salespersonid - salespersonid - semiannualfiscalcalendar - salespersonid + lk_quarterlyfiscalcalendar_createdonbehalfby + createdonbehalfby + quarterlyfiscalcalendar + createdonbehalfby - 2 + 0 - d9340e83-dce6-4423-8b57-21f8f19dd097 + 75d6d050-ebf2-e411-93a4-00219b3e9ee9 false false iscustomizable - false + true true true - lk_report_createdonbehalfby + lk_similarityrule_createdonbehalfby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -357999,30 +407563,30 @@ false systemuserid systemuser - lk_report_createdonbehalfby + lk_similarityrule_createdonbehalfby createdonbehalfby - report + similarityrule createdonbehalfby 0 - 9f8522f7-20c5-424b-a7bb-0805e4ca54ad + 81d6d050-ebf2-e411-93a4-00219b3e9ee9 false false iscustomizable - false + true true true - lk_processsession_canceledby + lk_similarityrule_modifiedonbehalfby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -358053,30 +407617,30 @@ false systemuserid systemuser - lk_processsession_canceledby - canceledby - processsession - canceledby + lk_similarityrule_modifiedonbehalfby + modifiedonbehalfby + similarityrule + modifiedonbehalfby 0 - a80b690f-d99e-4a2e-9799-12b8b50825e3 + 82310951-874d-4cdb-885c-dc2c0a02025b false false iscustomizable - true + false true true - lk_SiteMap_modifiedonbehalfby + lk_asyncoperation_modifiedonbehalfby None - 9.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -358107,15 +407671,15 @@ false systemuserid systemuser - systemuser_SiteMap_modifiedonbehalfby + lk_asyncoperation_modifiedonbehalfby modifiedonbehalfby - sitemap - SiteMap_modifiedonbehalfby + asyncoperation + modifiedonbehalfby 0 - bc1d1c2d-fa56-479d-afd4-03b7ebacf859 + 8b542b51-81bb-4598-9025-9d6914188959 false @@ -358125,9 +407689,9 @@ true false - SystemUser_SyncError + lk_plugintype_modifiedonbehalfby None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -358161,15 +407725,15 @@ false systemuserid systemuser - SystemUser_SyncError - owninguser - syncerror - regardingobjectid_systemuser + lk_plugintype_modifiedonbehalfby + modifiedonbehalfby + plugintype + modifiedonbehalfby 0 - 195f2450-d7ca-48fc-ad25-aaf9cedb0d78 + be903251-887c-e011-b3dc-00155d7b4422 false @@ -358179,9 +407743,9 @@ true true - lk_socialactivity_modifiedby + lk_mailbox_createdby None - 6.1.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -358215,15 +407779,15 @@ false systemuserid systemuser - lk_socialactivity_modifiedby - modifiedby - socialactivity - modifiedby_socialactivity + lk_mailbox_createdby + createdby + mailbox + createdby 0 - 2074fc1d-84a2-48ac-a47c-fcf1d249a052 + c4903251-887c-e011-b3dc-00155d7b4422 false @@ -358233,12 +407797,12 @@ true true - lk_accountbase_modifiedonbehalfby + lk_mailbox_createdonbehalfby None - 5.0.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -358269,30 +407833,30 @@ false systemuserid systemuser - lk_accountbase_modifiedonbehalfby - modifiedonbehalfby - account - modifiedonbehalfby + lk_mailbox_createdonbehalfby + createdonbehalfby + mailbox + createdonbehalfby 0 - bc5a162e-4996-4e9e-bacb-4a8dd6ac79fb + ca903251-887c-e011-b3dc-00155d7b4422 false false iscustomizable - false + true true true - lk_subjectbase_createdby + lk_mailbox_modifiedby None - 5.0.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -358323,15 +407887,15 @@ false systemuserid systemuser - lk_subjectbase_createdby - createdby - subject - createdby + lk_mailbox_modifiedby + modifiedby + mailbox + modifiedby 0 - 8e4e6b8b-b575-4764-a47b-515de45dd09d + d0903251-887c-e011-b3dc-00155d7b4422 false @@ -358341,12 +407905,12 @@ true true - lk_MobileOfflineProfile_modifiedonbehalfby + lk_mailbox_modifiedonbehalfby None - 8.0.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -358377,27 +407941,27 @@ false systemuserid systemuser - lk_MobileOfflineProfile_modifiedonbehalfby + lk_mailbox_modifiedonbehalfby modifiedonbehalfby - mobileofflineprofile + mailbox modifiedonbehalfby 0 - c33de3c0-c7ab-4a3e-95c5-12c00fe0fe43 + e2903251-887c-e011-b3dc-00155d7b4422 false false iscustomizable - false + true true true - lk_annotationbase_modifiedonbehalfby + user_mailbox None - 5.0.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -358431,25 +407995,25 @@ false systemuserid systemuser - lk_annotationbase_modifiedonbehalfby - modifiedonbehalfby - annotation - modifiedonbehalfby + user_mailbox + owninguser + mailbox + owninguser 0 - d2fe5463-dbad-4ea7-9224-09dd155882a0 + 9c2f4151-f56e-4a6a-a36f-2991f4d4fc51 false false iscustomizable - false + true true - true - lk_kbarticletemplatebase_createdby + false + lk_businessunit_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -358485,27 +408049,81 @@ false systemuserid systemuser - lk_kbarticletemplatebase_createdby + lk_businessunit_createdonbehalfby + createdonbehalfby + businessunit + createdonbehalfby + + 0 + + + f3fa6451-d2ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + lk_organizationdatasyncsubscription_createdby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_organizationdatasyncsubscription_createdby createdby - kbarticletemplate + organizationdatasyncsubscription createdby 0 - 36840a18-ac7a-46f8-a52e-f494202028c6 + f9fa6451-d2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_importbase_modifiedby + false + true + lk_organizationdatasyncsubscription_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -358539,27 +408157,27 @@ false systemuserid systemuser - lk_importbase_modifiedby - modifiedby - import - modifiedby + lk_organizationdatasyncsubscription_createdonbehalfby + createdonbehalfby + organizationdatasyncsubscription + createdonbehalfby 0 - f2f069e0-4a5e-41e4-bc47-1921a983bced + fffa6451-d2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - modifiedby_connection_role + lk_organizationdatasyncsubscription_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -358593,27 +408211,81 @@ false systemuserid systemuser - modifiedby_connection_role + lk_organizationdatasyncsubscription_modifiedby modifiedby - connectionrole + organizationdatasyncsubscription modifiedby 0 - e31162a1-ee43-4fcc-97d9-1d7cb1a51f89 + 05fb6451-d2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_sharepointdocumentlocationbase_createdonbehalfby + lk_organizationdatasyncsubscription_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_organizationdatasyncsubscription_modifiedonbehalfby + modifiedonbehalfby + organizationdatasyncsubscription + modifiedonbehalfby + + 0 + + + c5fb6451-d2ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + lk_organizationdatasyncsubscriptionentity_createdby + None + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -358647,30 +408319,30 @@ false systemuserid systemuser - lk_sharepointdocumentlocationbase_createdonbehalfby - createdonbehalfby - sharepointdocumentlocation - createdonbehalfby + lk_organizationdatasyncsubscriptionentity_createdby + createdby + organizationdatasyncsubscriptionentity + createdby 0 - cef94d55-db60-413b-a544-833ab1423c35 + cbfb6451-d2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_authorizationserver_createdonbehalfby + lk_organizationdatasyncsubscriptionentity_createdonbehalfby None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -358701,27 +408373,27 @@ false systemuserid systemuser - lk_authorizationserver_createdonbehalfby + lk_organizationdatasyncsubscriptionentity_createdonbehalfby createdonbehalfby - authorizationserver + organizationdatasyncsubscriptionentity createdonbehalfby 0 - 409923f9-d510-4ebb-945f-cff84188cfb4 + d1fb6451-d2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_mailmergetemplatebase_modifiedby + lk_organizationdatasyncsubscriptionentity_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -358755,27 +408427,27 @@ false systemuserid systemuser - lk_mailmergetemplatebase_modifiedby + lk_organizationdatasyncsubscriptionentity_modifiedby modifiedby - mailmergetemplate + organizationdatasyncsubscriptionentity modifiedby 0 - 6e4e72f8-4cf4-47d9-bccc-d1247cc03297 + d7fb6451-d2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - systemuserbusinessunitentitymap_systemuserid_systemuser + false + true + lk_organizationdatasyncsubscriptionentity_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -358809,27 +408481,27 @@ false systemuserid systemuser - systemuserbusinessunitentitymap_systemuserid_systemuser - systemuserid - systemuserbusinessunitentitymap - systemuserid_systemuser + lk_organizationdatasyncsubscriptionentity_modifiedonbehalfby + modifiedonbehalfby + organizationdatasyncsubscriptionentity + modifiedonbehalfby 0 - 20d9c367-c3bb-412c-9498-5693e181ad7f + 7ffc6451-d2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_userquery_createdonbehalfby + false + true + lk_organizationdatasyncsubscriptionfnotable_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -358863,27 +408535,27 @@ false systemuserid systemuser - lk_userquery_createdonbehalfby - createdonbehalfby - userquery - createdonbehalfby + lk_organizationdatasyncsubscriptionfnotable_createdby + createdby + organizationdatasyncsubscriptionfnotable + createdby 0 - 8b1ebc3b-ef95-4f76-ad59-fe72f6854266 + 85fc6451-d2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_transactioncurrencybase_createdby + lk_organizationdatasyncsubscriptionfnotable_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -358917,30 +408589,30 @@ false systemuserid systemuser - lk_transactioncurrencybase_createdby - createdby - transactioncurrency - createdby + lk_organizationdatasyncsubscriptionfnotable_createdonbehalfby + createdonbehalfby + organizationdatasyncsubscriptionfnotable + createdonbehalfby 0 - d5ca438f-8bfe-4d55-bff9-2994894c9078 + 8bfc6451-d2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_partnerapplication_modifiedby + lk_organizationdatasyncsubscriptionfnotable_modifiedby None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -358971,27 +408643,27 @@ false systemuserid systemuser - lk_partnerapplication_modifiedby + lk_organizationdatasyncsubscriptionfnotable_modifiedby modifiedby - partnerapplication + organizationdatasyncsubscriptionfnotable modifiedby 0 - 41d6760e-b7aa-4d4c-92f4-19e27fb84010 + 91fc6451-d2ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_entitymap_createdonbehalfby + false + true + lk_organizationdatasyncsubscriptionfnotable_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359025,30 +408697,30 @@ false systemuserid systemuser - lk_entitymap_createdonbehalfby - createdonbehalfby - entitymap - createdonbehalfby + lk_organizationdatasyncsubscriptionfnotable_modifiedonbehalfby + modifiedonbehalfby + organizationdatasyncsubscriptionfnotable + modifiedonbehalfby 0 - 43988fc9-feee-4b3f-8221-273348b0483d + ab9d4752-4305-f111-8408-6045bddd6baa false - false + true iscustomizable - false + true - true - false - lk_knowledgesearchmodel_createdonbehalfby + false + true + lk_sourcecontroloperationstatus_createdby None - 8.0.0.0 + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -359079,27 +408751,27 @@ false systemuserid systemuser - lk_knowledgesearchmodel_createdonbehalfby - createdonbehalfby - knowledgesearchmodel - createdonbehalfby + lk_sourcecontroloperationstatus_createdby + createdby + sourcecontroloperationstatus + createdby 0 - 22a9b063-9018-4e30-8df4-896d54150900 + b19d4752-4305-f111-8408-6045bddd6baa false - false + true iscustomizable - false + true - true + false true - createdonbehalfby_customer_relationship + lk_sourcecontroloperationstatus_createdonbehalfby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -359133,81 +408805,27 @@ false systemuserid systemuser - createdonbehalfby_customer_relationship + lk_sourcecontroloperationstatus_createdonbehalfby createdonbehalfby - customerrelationship + sourcecontroloperationstatus createdonbehalfby 0 - a422faeb-060e-435b-ab7e-c0fadfe569b2 - - false - - false - iscustomizable - true - - true - true - lk_sharepointdocumentbase_createdby - None - 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - true - navSPDocuments - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_sharepointdocumentbase_createdby - createdby - sharepointdocument - createdby - - 0 - - - d9a98623-a0e1-489d-92f9-d7fb897ddc37 + b79d4752-4305-f111-8408-6045bddd6baa false - false + true iscustomizable true - true + false true - lk_queue_createdonbehalfby + lk_sourcecontroloperationstatus_modifiedby None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -359241,27 +408859,27 @@ false systemuserid systemuser - lk_queue_createdonbehalfby - createdonbehalfby - queue - createdonbehalfby + lk_sourcecontroloperationstatus_modifiedby + modifiedby + sourcecontroloperationstatus + modifiedby 0 - 4eb36bfd-d28f-4b5a-a523-8ce1390a23f2 + bd9d4752-4305-f111-8408-6045bddd6baa false - false + true iscustomizable true - true + false true - lk_MobileOfflineProfile_createdby + lk_sourcecontroloperationstatus_modifiedonbehalfby None - 8.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -359295,27 +408913,27 @@ false systemuserid systemuser - lk_MobileOfflineProfile_createdby - createdby - mobileofflineprofile - createdby + lk_sourcecontroloperationstatus_modifiedonbehalfby + modifiedonbehalfby + sourcecontroloperationstatus + modifiedonbehalfby 0 - 2ef6d4a5-70d5-4414-a869-cebf47db6363 + 6cbb6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - modifiedby_expanderevent + false + true + lk_msdyn_analysiscomponent_createdby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359349,27 +408967,27 @@ false systemuserid systemuser - modifiedby_expanderevent - modifiedby - expanderevent - modifiedby + lk_msdyn_analysiscomponent_createdby + createdby + msdyn_analysiscomponent + createdby 0 - 3506bdc5-0984-4f8e-9cab-1702d7f5f5a2 + 72bb6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_savedorginsightsconfiguration_createdonbehalfby + lk_msdyn_analysiscomponent_createdonbehalfby None - 8.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359403,27 +409021,27 @@ false systemuserid systemuser - lk_savedorginsightsconfiguration_createdonbehalfby + lk_msdyn_analysiscomponent_createdonbehalfby createdonbehalfby - savedorginsightsconfiguration - lk_savedorginsightsconfiguration_createdonbehalfby + msdyn_analysiscomponent + createdonbehalfby 0 - 2f367cc3-0231-4087-9fdb-f0bb9b692eb5 + 78bb6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_applicationfile_modifiedby + false + true + lk_msdyn_analysiscomponent_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359457,27 +409075,27 @@ false systemuserid systemuser - lk_applicationfile_modifiedby + lk_msdyn_analysiscomponent_modifiedby modifiedby - applicationfile + msdyn_analysiscomponent modifiedby 0 - f4cbc4fc-445d-4804-bc68-3a6c98163718 + 7ebb6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - modifiedby_serviceendpoint + false + true + lk_msdyn_analysiscomponent_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359511,27 +409129,27 @@ false systemuserid systemuser - modifiedby_serviceendpoint - modifiedby - serviceendpoint - modifiedby + lk_msdyn_analysiscomponent_modifiedonbehalfby + modifiedonbehalfby + msdyn_analysiscomponent + modifiedonbehalfby 0 - 8a6c77ec-2e22-4ac7-b0bf-87c17d244184 + 90bb6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_appointment_modifiedby + user_msdyn_analysiscomponent None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359565,27 +409183,27 @@ false systemuserid systemuser - lk_appointment_modifiedby - modifiedby - appointment - modifiedby_appointment + user_msdyn_analysiscomponent + owninguser + msdyn_analysiscomponent + owninguser 0 - d628e318-439a-4f07-813a-72f848be8c16 + 8bbc6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_userfiscalcalendar_createdby + false + true + lk_msdyn_analysisjob_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359619,27 +409237,27 @@ false systemuserid systemuser - lk_userfiscalcalendar_createdby + lk_msdyn_analysisjob_createdby createdby - userfiscalcalendar + msdyn_analysisjob createdby 0 - 6d34ba7f-7e61-43b3-9a11-fedde3e2640a + 91bc6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_emailsignaturebase_modifiedonbehalfby + lk_msdyn_analysisjob_createdonbehalfby None - 8.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359673,27 +409291,27 @@ false systemuserid systemuser - lk_emailsignaturebase_modifiedonbehalfby - modifiedonbehalfby - emailsignature - modifiedonbehalfby + lk_msdyn_analysisjob_createdonbehalfby + createdonbehalfby + msdyn_analysisjob + createdonbehalfby 0 - c9573568-3451-4407-a5f2-fa757d4904b0 + 97bc6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_documentindex_modifiedby + false + true + lk_msdyn_analysisjob_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359727,27 +409345,27 @@ false systemuserid systemuser - lk_documentindex_modifiedby + lk_msdyn_analysisjob_modifiedby modifiedby - documentindex + msdyn_analysisjob modifiedby 0 - 6bc2630a-725c-4c6c-ad1c-e3b149bc404e + 9dbc6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_picklistmapping_modifiedonbehalfby + false + true + lk_msdyn_analysisjob_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359781,81 +409399,27 @@ false systemuserid systemuser - lk_picklistmapping_modifiedonbehalfby + lk_msdyn_analysisjob_modifiedonbehalfby modifiedonbehalfby - picklistmapping + msdyn_analysisjob modifiedonbehalfby 0 - ea6e6ec5-42c9-4a48-8789-662efdf20a00 + afbc6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - user_routingruleitem - None - 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - user_routingruleitem - assignobjectid - routingruleitem - assignobjectid_systemuser - - 0 - - - 67a7b892-47ac-45b1-baae-8a204d15d96e - - false - - false - iscustomizable - false - - true - false - lk_transformationmapping_createdonbehalfby + user_msdyn_analysisjob None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359889,27 +409453,27 @@ false systemuserid systemuser - lk_transformationmapping_createdonbehalfby - createdonbehalfby - transformationmapping - createdonbehalfby + user_msdyn_analysisjob + owninguser + msdyn_analysisjob + owninguser 0 - a85babe1-0484-4014-b76f-8c4dcdc5fbef + 1abe6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_plugintypestatisticbase_createdonbehalfby + lk_msdyn_analysisoverride_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359943,27 +409507,27 @@ false systemuserid systemuser - lk_plugintypestatisticbase_createdonbehalfby - createdonbehalfby - plugintypestatistic - createdonbehalfby + lk_msdyn_analysisoverride_createdby + createdby + msdyn_analysisoverride + createdby 0 - 8e1fa371-9f94-41e2-b038-732a999f85b8 + 20be6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_kbarticletemplate_createdonbehalfby + lk_msdyn_analysisoverride_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -359997,27 +409561,27 @@ false systemuserid systemuser - lk_kbarticletemplate_createdonbehalfby + lk_msdyn_analysisoverride_createdonbehalfby createdonbehalfby - kbarticletemplate + msdyn_analysisoverride createdonbehalfby 0 - a80f7609-c177-4ce7-967a-b937d7789e99 + 26be6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - createdby_sdkmessagerequestfield + false + true + lk_msdyn_analysisoverride_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -360051,27 +409615,27 @@ false systemuserid systemuser - createdby_sdkmessagerequestfield - createdby - sdkmessagerequestfield - createdby + lk_msdyn_analysisoverride_modifiedby + modifiedby + msdyn_analysisoverride + modifiedby 0 - f6bbfc07-cd8b-4cf6-b59f-c5b50374d78a + 2cbe6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - ImportFile_SystemUser + false + true + lk_msdyn_analysisoverride_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -360105,27 +409669,27 @@ false systemuserid systemuser - ImportFile_SystemUser - recordsownerid - importfile - recordsownerid_systemuser + lk_msdyn_analysisoverride_modifiedonbehalfby + modifiedonbehalfby + msdyn_analysisoverride + modifiedonbehalfby 0 - f7cd3c2f-3204-4491-97f8-e7e9cd8425d8 + 3ebe6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_importmapbase_modifiedby + false + true + user_msdyn_analysisoverride None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -360159,27 +409723,27 @@ false systemuserid systemuser - lk_importmapbase_modifiedby - modifiedby - importmap - modifiedby + user_msdyn_analysisoverride + owninguser + msdyn_analysisoverride + owninguser 0 - 9ab5ef85-65e8-4a64-9bfc-d3bd2fe6eefd + 8bbf6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_userform_createdby + false + true + lk_msdyn_analysisresult_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -360213,27 +409777,27 @@ false systemuserid systemuser - lk_userform_createdby + lk_msdyn_analysisresult_createdby createdby - userform + msdyn_analysisresult createdby 0 - 81f64e53-4da2-45a3-ad95-5634f58c8daf + 91bf6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_isvconfig_createdonbehalfby + lk_msdyn_analysisresult_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -360267,30 +409831,30 @@ false systemuserid systemuser - lk_isvconfig_createdonbehalfby + lk_msdyn_analysisresult_createdonbehalfby createdonbehalfby - isvconfig + msdyn_analysisresult createdonbehalfby 0 - 95d868d3-e9a9-47d7-9ad6-31e20dea6814 + 97bf6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_expiredprocess_createdby + lk_msdyn_analysisresult_modifiedby None - 8.2.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -360321,27 +409885,27 @@ false systemuserid systemuser - lk_expiredprocess_createdby - createdby - expiredprocess - createdbyname + lk_msdyn_analysisresult_modifiedby + modifiedby + msdyn_analysisresult + modifiedby 0 - fab1a81b-ea4b-4577-b6a6-a690c321e9d5 + 9dbf6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_socialinsightsconfiguration_modifiedonbehalfby + lk_msdyn_analysisresult_modifiedonbehalfby None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -360375,27 +409939,27 @@ false systemuserid systemuser - lk_socialinsightsconfiguration_modifiedonbehalfby + lk_msdyn_analysisresult_modifiedonbehalfby modifiedonbehalfby - socialinsightsconfiguration + msdyn_analysisresult modifiedonbehalfby 0 - 313b982f-66b3-4162-82d9-5fdd9d22455c + afbf6f52-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_systemapplicationmetadata_createdonbehalfby + false + true + user_msdyn_analysisresult None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -360429,27 +409993,27 @@ false systemuserid systemuser - lk_systemapplicationmetadata_createdonbehalfby - createdonbehalfby - systemapplicationmetadata - createdonbehalfby + user_msdyn_analysisresult + owninguser + msdyn_analysisresult + owninguser 0 - 01e593d6-f7e2-4ef6-b821-ee167695a5eb + acb37c52-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true + false true - lk_reportvisibility_createdonbehalfby + lk_flowtrigger_createdby None - 5.0.0.0 + 1.10.0.0 OneToManyRelationship DoNotDisplay @@ -360483,27 +410047,27 @@ false systemuserid systemuser - lk_reportvisibility_createdonbehalfby - createdonbehalfby - reportvisibility - createdonbehalfby + lk_flowtrigger_createdby + createdby + flowtrigger + createdby 0 - 0fecf9f4-c85c-4c80-a91b-ed2cc8bcdc0c + b2b37c52-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true - false - lk_userqueryvisualization_createdby + false + true + lk_flowtrigger_createdonbehalfby None - 5.0.0.0 + 1.10.0.0 OneToManyRelationship DoNotDisplay @@ -360537,27 +410101,27 @@ false systemuserid systemuser - lk_userqueryvisualization_createdby - createdby - userqueryvisualization - createdby + lk_flowtrigger_createdonbehalfby + createdonbehalfby + flowtrigger + createdonbehalfby 0 - b68332da-4844-4b22-a9ce-f0bfb9e082d9 + b8b37c52-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true - false - lk_ACIViewMapper_modifiedby + false + true + lk_flowtrigger_modifiedby None - 8.2.0.0 + 1.10.0.0 OneToManyRelationship DoNotDisplay @@ -360591,27 +410155,27 @@ false systemuserid systemuser - lk_ACIViewMapper_modifiedby + lk_flowtrigger_modifiedby modifiedby - aciviewmapper + flowtrigger modifiedby 0 - 2468bdb7-d841-46af-b237-e53e3099640f + beb37c52-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable true - true + false true - user_slabase + lk_flowtrigger_modifiedonbehalfby None - 6.1.0.0 + 1.10.0.0 OneToManyRelationship DoNotDisplay @@ -360645,27 +410209,27 @@ false systemuserid systemuser - user_slabase - owninguser - sla - owninguser + lk_flowtrigger_modifiedonbehalfby + modifiedonbehalfby + flowtrigger + modifiedonbehalfby 0 - 8ef294c0-9b73-4f50-a5cd-2d1d986c9b90 + d0b37c52-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true + false true - lk_reportlinkbase_createdby + user_flowtrigger None - 5.0.0.0 + 1.10.0.0 OneToManyRelationship DoNotDisplay @@ -360699,27 +410263,27 @@ false systemuserid systemuser - lk_reportlinkbase_createdby - createdby - reportlink - createdby + user_flowtrigger + owninguser + flowtrigger + owninguser 0 - 95e63358-97ae-4c4a-bee3-3e915a9ffbf9 + 7cb47c52-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true + false true - lk_annotationbase_createdby + lk_flowtriggerinstance_createdby None - 5.0.0.0 + 1.10.0.0 OneToManyRelationship DoNotDisplay @@ -360753,27 +410317,27 @@ false systemuserid systemuser - lk_annotationbase_createdby + lk_flowtriggerinstance_createdby createdby - annotation + flowtriggerinstance createdby 0 - 5d57c934-9a5a-4d2d-8121-8c3fc9ae23cb + 82b47c52-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true + false true - lk_documentindex_modifiedonbehalfby + lk_flowtriggerinstance_createdonbehalfby None - 5.0.0.0 + 1.10.0.0 OneToManyRelationship DoNotDisplay @@ -360807,27 +410371,27 @@ false systemuserid systemuser - lk_documentindex_modifiedonbehalfby - modifiedonbehalfby - documentindex - modifiedonbehalfby + lk_flowtriggerinstance_createdonbehalfby + createdonbehalfby + flowtriggerinstance + createdonbehalfby 0 - bc0f867f-ebc9-4b6f-a2f4-e909fcd86621 + 88b47c52-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true + false true - webresource_createdby + lk_flowtriggerinstance_modifiedby None - 5.0.0.0 + 1.10.0.0 OneToManyRelationship DoNotDisplay @@ -360861,27 +410425,27 @@ false systemuserid systemuser - webresource_createdby - createdby - webresource - createdby + lk_flowtriggerinstance_modifiedby + modifiedby + flowtriggerinstance + modifiedby 0 - 328e2d1f-4611-42b0-bcb3-20fc974f2968 + 8eb47c52-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true + false true - lk_userqueryvisualizationbase_createdonbehalfby + lk_flowtriggerinstance_modifiedonbehalfby None - 5.0.0.0 + 1.10.0.0 OneToManyRelationship DoNotDisplay @@ -360915,27 +410479,27 @@ false systemuserid systemuser - lk_userqueryvisualizationbase_createdonbehalfby - createdonbehalfby - userqueryvisualization - createdonbehalfby + lk_flowtriggerinstance_modifiedonbehalfby + modifiedonbehalfby + flowtriggerinstance + modifiedonbehalfby 0 - 9e01af5c-0ebb-435b-9049-9c05c4071b63 + a0b47c52-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable - false + true - true - false - lk_usersettings_modifiedonbehalfby + false + true + user_flowtriggerinstance None - 5.0.0.0 + 1.10.0.0 OneToManyRelationship DoNotDisplay @@ -360969,15 +410533,15 @@ false systemuserid systemuser - lk_usersettings_modifiedonbehalfby - modifiedonbehalfby - usersettings - modifiedonbehalfby + user_flowtriggerinstance + owninguser + flowtriggerinstance + owninguser 0 - af5d32e9-bffd-4f9e-a21e-c50f8501a7ea + d33f8f52-1793-4ca5-8863-edd491b45d7d false @@ -360987,9 +410551,9 @@ true true - user_parent_user + lk_MobileOfflineProfileItem_createdby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -361019,34 +410583,34 @@ - true + false false systemuserid systemuser - user_parent_user - parentsystemuserid - systemuser - parentsystemuserid + lk_MobileOfflineProfileItem_createdby + createdby + mobileofflineprofileitem + createdby 0 - f9a142fa-be9e-4d2a-a46b-fd66c99f4c7d + f531ba52-db9b-4919-bd3c-6172cf4d448a false false iscustomizable - true + false true - true - lk_appconfiginstance_createdby + false + lk_quarterlyfiscalcalendar_createdby None - 9.0.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -361077,15 +410641,15 @@ false systemuserid systemuser - systemuser_appconfiginstance_createdby + lk_quarterlyfiscalcalendar_createdby createdby - appconfiginstance - appconfiginstance_createdby + quarterlyfiscalcalendar + createdby 0 - dd8ddda3-68e4-4bf0-b7da-6ffcc3d3717f + 835c1853-4401-4785-9b04-8adc49118384 false @@ -361095,7 +410659,7 @@ true false - createdonbehalfby_attributemap + lk_transformationparametermapping_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -361131,15 +410695,15 @@ false systemuserid systemuser - createdonbehalfby_attributemap + lk_transformationparametermapping_createdonbehalfby createdonbehalfby - attributemap + transformationparametermapping createdonbehalfby 0 - 1656409c-a71d-4bdf-9d8e-b10ef0cf71f0 + 81f64e53-4da2-45a3-ad95-5634f58c8daf false @@ -361148,8 +410712,8 @@ false true - false - lk_annualfiscalcalendar_createdonbehalfby + true + lk_isvconfig_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -361185,25 +410749,25 @@ false systemuserid systemuser - lk_annualfiscalcalendar_createdonbehalfby + lk_isvconfig_createdonbehalfby createdonbehalfby - annualfiscalcalendar + isvconfig createdonbehalfby 0 - 0ab2feeb-fd84-4034-8cb1-e49fb084afe8 + 136cd753-d703-492d-a134-4fc19107c55a false false iscustomizable - false + true true true - bizmap_systemuser_businessid + lk_fax_createdby None 5.0.0.0 OneToManyRelationship @@ -361237,17 +410801,17 @@ false false - businessunitid + systemuserid systemuser - bizmap_systemuser_businessid - businessid - businessunitmap - businessid_systemuser + lk_fax_createdby + createdby + fax + createdby_fax 0 - f6ad860d-cba8-4638-bba5-7f6ab279baac + 7d41e953-37b0-420e-b792-1e5addca7639 false @@ -361256,8 +410820,8 @@ false true - true - lk_userformbase_createdonbehalfby + false + createdby_entitymap None 5.0.0.0 OneToManyRelationship @@ -361293,27 +410857,27 @@ false systemuserid systemuser - lk_userformbase_createdonbehalfby - createdonbehalfby - userform - createdonbehalfby + createdby_entitymap + createdby + entitymap + createdby 0 - 7f6817ea-909f-4555-ba20-60c3d492723c + aa376154-7651-49ca-ba82-ac1c16fdb156 false false iscustomizable - false + true true - false - lk_knowledgesearchmodel_modifiedby + true + lk_feedback_createdby None - 8.0.0.0 + 8.1.0.0 OneToManyRelationship UseCollectionName @@ -361347,15 +410911,15 @@ false systemuserid systemuser - lk_knowledgesearchmodel_modifiedby - modifiedby - knowledgesearchmodel - modifiedby + lk_feedback_createdby + createdby + feedback + createdby 0 - c895b738-e3e6-4912-8789-9b055bc282ac + cef94d55-db60-413b-a544-833ab1423c35 false @@ -361364,13 +410928,13 @@ false true - false - modifiedby_sdkmessageresponsefield + true + lk_authorizationserver_createdonbehalfby None - 5.0.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -361401,27 +410965,27 @@ false systemuserid systemuser - modifiedby_sdkmessageresponsefield - modifiedby - sdkmessageresponsefield - modifiedby + lk_authorizationserver_createdonbehalfby + createdonbehalfby + authorizationserver + createdonbehalfby 0 - 241b9470-2ae2-441c-b7fb-2b1e64f60eaf + c7c08255-93e4-445c-b6af-bf387e4b883b false false iscustomizable - false + true true - false - lk_SharePointData_createdonbehalfby + true + user_letter None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -361455,15 +411019,15 @@ false systemuserid systemuser - lk_SharePointData_createdonbehalfby - createdonbehalfby - sharepointdata - createdonbehalfby + user_letter + owninguser + letter + owninguser_letter 0 - 2675f8b8-d974-454b-9534-f64ab09e45ed + cb03bf55-4fa9-4d34-a340-8566204544e8 false @@ -361473,7 +411037,7 @@ true true - lk_fieldsecurityprofile_createdby + lk_workflowlog_modifiedby None 5.0.0.0 OneToManyRelationship @@ -361509,81 +411073,81 @@ false systemuserid systemuser - lk_fieldsecurityprofile_createdby + lk_workflowlog_modifiedby + modifiedby + workflowlog + modifiedby + + 0 + + + e7b03b56-eeba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_msdyn_pmcalendar_createdby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_pmcalendar_createdby createdby - fieldsecurityprofile + msdyn_pmcalendar createdby 0 - 50957cef-fca7-4587-9f47-85603d8f8a11 + edb03b56-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_asyncoperation_modifiedby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_asyncoperation_modifiedby - modifiedby - asyncoperation - modifiedby - - 0 - - - d5e03606-22ea-4abc-8af0-8266df8e0c44 - - false - - false - iscustomizable - false - - true - false - lk_pluginassembly_createdonbehalfby + lk_msdyn_pmcalendar_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -361617,27 +411181,27 @@ false systemuserid systemuser - lk_pluginassembly_createdonbehalfby + lk_msdyn_pmcalendar_createdonbehalfby createdonbehalfby - pluginassembly + msdyn_pmcalendar createdonbehalfby 0 - 89d9acb6-4ce5-41d1-864f-1af7c05b86f4 + f3b03b56-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_importentitymapping_modifiedby + false + true + lk_msdyn_pmcalendar_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -361671,27 +411235,27 @@ false systemuserid systemuser - lk_importentitymapping_modifiedby + lk_msdyn_pmcalendar_modifiedby modifiedby - importentitymapping + msdyn_pmcalendar modifiedby 0 - c3c24ac9-451d-4b5f-84aa-caf8e2f73145 + f9b03b56-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_ChannelPropertyGroup_createdonbehalfby + lk_msdyn_pmcalendar_modifiedonbehalfby None - 7.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -361725,27 +411289,27 @@ false systemuserid systemuser - lk_ChannelPropertyGroup_createdonbehalfby - createdonbehalfby - channelpropertygroup - createdonbehalfby + lk_msdyn_pmcalendar_modifiedonbehalfby + modifiedonbehalfby + msdyn_pmcalendar + modifiedonbehalfby 0 - 4b8d36dc-2580-4715-8e1d-2740729c084d + 0bb13b56-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_sdkmessageprocessingstep_createdonbehalfby + false + true + user_msdyn_pmcalendar None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -361779,27 +411343,27 @@ false systemuserid systemuser - lk_sdkmessageprocessingstep_createdonbehalfby - createdonbehalfby - sdkmessageprocessingstep - createdonbehalfby + user_msdyn_pmcalendar + owninguser + msdyn_pmcalendar + owninguser 0 - e2bf3658-b0db-4529-aa3e-27b1ea01de02 + bbb13b56-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_ConvertRule_modifiedonbehalfby + lk_msdyn_pmcalendarversion_createdby None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -361833,27 +411397,27 @@ false systemuserid systemuser - lk_ConvertRule_modifiedonbehalfby - modifiedonbehalfby - convertrule - modifiedonbehalfby + lk_msdyn_pmcalendarversion_createdby + createdby + msdyn_pmcalendarversion + createdby 0 - d9e0a766-878e-4dda-a31b-8917a7b7ec75 + c1b13b56-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_activitypointer_createdonbehalfby + lk_msdyn_pmcalendarversion_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -361887,27 +411451,27 @@ false systemuserid systemuser - lk_activitypointer_createdonbehalfby + lk_msdyn_pmcalendarversion_createdonbehalfby createdonbehalfby - activitypointer + msdyn_pmcalendarversion createdonbehalfby 0 - 3d9d9ea6-d826-46c6-b5ab-5f4e021650ba + c7b13b56-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_contact_modifiedonbehalfby + lk_msdyn_pmcalendarversion_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -361941,27 +411505,27 @@ false systemuserid systemuser - lk_contact_modifiedonbehalfby - modifiedonbehalfby - contact - modifiedonbehalfby + lk_msdyn_pmcalendarversion_modifiedby + modifiedby + msdyn_pmcalendarversion + modifiedby 0 - 68b64c2d-2ad5-414c-bab4-a0de28aafa91 + cdb13b56-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_savedqueryvisualizationbase_modifiedonbehalfby + lk_msdyn_pmcalendarversion_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -361995,27 +411559,27 @@ false systemuserid systemuser - lk_savedqueryvisualizationbase_modifiedonbehalfby + lk_msdyn_pmcalendarversion_modifiedonbehalfby modifiedonbehalfby - savedqueryvisualization + msdyn_pmcalendarversion modifiedonbehalfby 0 - d993ce09-1236-40ec-adad-777999584728 + dfb13b56-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_socialinsightsconfiguration_createdby + user_msdyn_pmcalendarversion None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -362049,27 +411613,27 @@ false systemuserid systemuser - lk_socialinsightsconfiguration_createdby - createdby - socialinsightsconfiguration - createdby + user_msdyn_pmcalendarversion + owninguser + msdyn_pmcalendarversion + owninguser 0 - b6620960-51ad-4586-b284-5777f4b77ce2 + 2f954456-c0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_accountbase_createdonbehalfby + lk_msdyn_helppage_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -362103,27 +411667,27 @@ false systemuserid systemuser - lk_accountbase_createdonbehalfby - createdonbehalfby - account - createdonbehalfby + lk_msdyn_helppage_createdby + createdby + msdyn_helppage + createdby 0 - 6761d288-c523-47a8-bae7-63ae6a04e651 + 35954456-c0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - modifiedby_sdkmessagefilter + false + true + lk_msdyn_helppage_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -362157,27 +411721,27 @@ false systemuserid systemuser - modifiedby_sdkmessagefilter - modifiedby - sdkmessagefilter - modifiedby + lk_msdyn_helppage_createdonbehalfby + createdonbehalfby + msdyn_helppage + createdonbehalfby 0 - 975c286e-54a5-430d-b05d-e2ed66804dff + 3b954456-c0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - system_user_email_templates + lk_msdyn_helppage_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -362211,27 +411775,27 @@ false systemuserid systemuser - system_user_email_templates - owninguser - template - owninguser + lk_msdyn_helppage_modifiedby + modifiedby + msdyn_helppage + modifiedby 0 - 79459bd1-6308-4790-853c-9cb5cafc91e2 + 41954456-c0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_ownermapping_modifiedonbehalfby + false + true + lk_msdyn_helppage_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -362265,27 +411829,27 @@ false systemuserid systemuser - lk_ownermapping_modifiedonbehalfby + lk_msdyn_helppage_modifiedonbehalfby modifiedonbehalfby - ownermapping + msdyn_helppage modifiedonbehalfby 0 - 7df20695-d74c-498e-8683-a80de4f0f0e3 + 5a1c6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_ChannelPropertyGroup_modifiedby + lk_msdyn_dmssyncrequest_createdby None - 7.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -362319,27 +411883,27 @@ false systemuserid systemuser - lk_ChannelPropertyGroup_modifiedby - modifiedby - channelpropertygroup - modifiedby + lk_msdyn_dmssyncrequest_createdby + createdby + msdyn_dmssyncrequest + createdby 0 - 93f6d977-76be-40e7-8fa8-3577301573d4 + 601c6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_systemuser_modifiedonbehalfby + lk_msdyn_dmssyncrequest_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -362373,27 +411937,27 @@ false systemuserid systemuser - lk_systemuser_modifiedonbehalfby - modifiedonbehalfby - systemuser - modifiedonbehalfby + lk_msdyn_dmssyncrequest_createdonbehalfby + createdonbehalfby + msdyn_dmssyncrequest + createdonbehalfby 0 - f6039107-652a-47a0-86f4-af14fb8b283e + 661c6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_annualfiscalcalendar_createdby + false + true + lk_msdyn_dmssyncrequest_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -362427,27 +411991,27 @@ false systemuserid systemuser - lk_annualfiscalcalendar_createdby - createdby - annualfiscalcalendar - createdby + lk_msdyn_dmssyncrequest_modifiedby + modifiedby + msdyn_dmssyncrequest + modifiedby 0 - ec83aa44-279b-4ea4-9981-a3c56d0d3c01 + 6c1c6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_email_createdonbehalfby + lk_msdyn_dmssyncrequest_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -362481,27 +412045,27 @@ false systemuserid systemuser - lk_email_createdonbehalfby - createdonbehalfby - email - createdonbehalfby_email + lk_msdyn_dmssyncrequest_modifiedonbehalfby + modifiedonbehalfby + msdyn_dmssyncrequest + modifiedonbehalfby 0 - 89eae0c6-f9fe-4fba-8b13-78b6baf91d62 + 7e1c6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_recurringappointmentmaster_modifiedonbehalfby + user_msdyn_dmssyncrequest None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -362535,27 +412099,27 @@ false systemuserid systemuser - lk_recurringappointmentmaster_modifiedonbehalfby - modifiedonbehalfby - recurringappointmentmaster - modifiedonbehalfby_recurringappointmentmaster + user_msdyn_dmssyncrequest + owninguser + msdyn_dmssyncrequest + owninguser 0 - 8c7697ca-2483-4e45-8696-98551e1e8aa0 + 3c1d6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_timezonelocalizedname_createdby + false + true + lk_msdyn_dmssyncstatus_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -362589,81 +412153,27 @@ false systemuserid systemuser - lk_timezonelocalizedname_createdby + lk_msdyn_dmssyncstatus_createdby createdby - timezonelocalizedname + msdyn_dmssyncstatus createdby 0 - d74ee201-7487-4481-b493-214b45c3b2eb - - false - - false - iscustomizable - false - - true - false - lk_bulkdeleteoperationbase_modifiedby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_bulkdeleteoperationbase_modifiedby - modifiedby - bulkdeleteoperation - modifiedby - - 0 - - - 213a8763-7bc4-49a2-8ad2-b2ee4c80756b + 421d6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_sharepointsitebase_modifiedonbehalfby + lk_msdyn_dmssyncstatus_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -362697,27 +412207,27 @@ false systemuserid systemuser - lk_sharepointsitebase_modifiedonbehalfby - modifiedonbehalfby - sharepointsite - modifiedonbehalfby + lk_msdyn_dmssyncstatus_createdonbehalfby + createdonbehalfby + msdyn_dmssyncstatus + createdonbehalfby 0 - 6e3eac63-8b71-418d-8bfe-e41513e7570e + 481d6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_ownermapping_modifiedby + false + true + lk_msdyn_dmssyncstatus_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -362751,27 +412261,27 @@ false systemuserid systemuser - lk_ownermapping_modifiedby + lk_msdyn_dmssyncstatus_modifiedby modifiedby - ownermapping + msdyn_dmssyncstatus modifiedby 0 - f9cb2748-e009-4e58-8614-479dd5382264 + 4e1d6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true - false - lk_sharepointsitebase_createdby + false + true + lk_msdyn_dmssyncstatus_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -362805,27 +412315,27 @@ false systemuserid systemuser - lk_sharepointsitebase_createdby - createdby - sharepointsite - createdby + lk_msdyn_dmssyncstatus_modifiedonbehalfby + modifiedonbehalfby + msdyn_dmssyncstatus + modifiedonbehalfby 0 - 556469f9-e7b7-4ab4-b7ab-bb983dcaf94e + 601d6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - createdby_sdkmessageresponsefield + false + true + user_msdyn_dmssyncstatus None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -362859,27 +412369,27 @@ false systemuserid systemuser - createdby_sdkmessageresponsefield - createdby - sdkmessageresponsefield - createdby + user_msdyn_dmssyncstatus + owninguser + msdyn_dmssyncstatus + owninguser 0 - 7e3ea29b-d426-48c2-b973-f090ea827e76 + 031f6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_actioncardbase_modifiedby + lk_msdyn_knowledgeassetconfiguration_createdby None - 8.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -362913,27 +412423,27 @@ false systemuserid systemuser - lk_actioncardbase_modifiedby - modifiedby - actioncard - modifiedby + lk_msdyn_knowledgeassetconfiguration_createdby + createdby + msdyn_knowledgeassetconfiguration + createdby 0 - 4433d4bc-3bb8-42f1-82fe-ac022a9e8ef5 + 1d1f6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_webresourcebase_createdonbehalfby + lk_msdyn_knowledgeassetconfiguration_createdonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -362967,27 +412477,27 @@ false systemuserid systemuser - lk_webresourcebase_createdonbehalfby + lk_msdyn_knowledgeassetconfiguration_createdonbehalfby createdonbehalfby - webresource + msdyn_knowledgeassetconfiguration createdonbehalfby 0 - 922d17fb-82b1-4406-b8e8-57e1877be782 + 231f6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_connectionrolebase_modifiedonbehalfby + lk_msdyn_knowledgeassetconfiguration_modifiedby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -363021,27 +412531,27 @@ false systemuserid systemuser - lk_connectionrolebase_modifiedonbehalfby - modifiedonbehalfby - connectionrole - modifiedonbehalfby + lk_msdyn_knowledgeassetconfiguration_modifiedby + modifiedby + msdyn_knowledgeassetconfiguration + modifiedby 0 - 2778840e-9c04-463f-96cb-6783aef6fe23 + 311f6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_timezonelocalizedname_modifiedonbehalfby + false + true + lk_msdyn_knowledgeassetconfiguration_modifiedonbehalfby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -363075,27 +412585,27 @@ false systemuserid systemuser - lk_timezonelocalizedname_modifiedonbehalfby + lk_msdyn_knowledgeassetconfiguration_modifiedonbehalfby modifiedonbehalfby - timezonelocalizedname + msdyn_knowledgeassetconfiguration modifiedonbehalfby 0 - e23e529c-9b96-4b22-ba80-7bfc35c7af77 + 4d1f6456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_transformationmapping_modifiedonbehalfby + false + true + user_msdyn_knowledgeassetconfiguration None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -363129,30 +412639,30 @@ false systemuserid systemuser - lk_transformationmapping_modifiedonbehalfby - modifiedonbehalfby - transformationmapping - modifiedonbehalfby + user_msdyn_knowledgeassetconfiguration + owninguser + msdyn_knowledgeassetconfiguration + owninguser 0 - e1e57566-ca58-40c7-bb53-8759890cbb02 + 5a216456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_azureserviceconnection_createdby + false + true + lk_msdyn_modulerundetail_createdby None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -363183,27 +412693,27 @@ false systemuserid systemuser - lk_azureserviceconnection_createdby + lk_msdyn_modulerundetail_createdby createdby - azureserviceconnection + msdyn_modulerundetail createdby 0 - c7699598-d50d-4c10-b81a-73f641762f49 + 60216456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_documenttemplatebase_modifiedonbehalfby + lk_msdyn_modulerundetail_createdonbehalfby None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -363237,27 +412747,27 @@ false systemuserid systemuser - lk_documenttemplatebase_modifiedonbehalfby - modifiedonbehalfby - documenttemplate - modifiedonbehalfby + lk_msdyn_modulerundetail_createdonbehalfby + createdonbehalfby + msdyn_modulerundetail + createdonbehalfby 0 - 215e0cf2-947f-400f-bde1-fec6dc737b8d + 66216456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_phonecall + lk_msdyn_modulerundetail_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -363291,27 +412801,27 @@ false systemuserid systemuser - user_phonecall - owninguser - phonecall - owninguser_phonecall + lk_msdyn_modulerundetail_modifiedby + modifiedby + msdyn_modulerundetail + modifiedby 0 - c56c2647-b6e7-474d-af93-f37f554d88db + 6c216456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_serviceendpointbase_modifiedonbehalfby + lk_msdyn_modulerundetail_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -363345,27 +412855,27 @@ false systemuserid systemuser - lk_serviceendpointbase_modifiedonbehalfby + lk_msdyn_modulerundetail_modifiedonbehalfby modifiedonbehalfby - serviceendpoint + msdyn_modulerundetail modifiedonbehalfby 0 - e8c3a94b-1723-474a-89eb-910021ee3de2 + 68236456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_reportlinkbase_modifiedby + lk_msdyn_qna_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -363399,27 +412909,27 @@ false systemuserid systemuser - lk_reportlinkbase_modifiedby - modifiedby - reportlink - modifiedby + lk_msdyn_qna_createdby + createdby + msdyn_qna + createdby 0 - 35147b27-566b-43ea-9708-1bac82813c57 + 6e236456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_slabase_createdonbehalfby + lk_msdyn_qna_createdonbehalfby None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -363453,27 +412963,27 @@ false systemuserid systemuser - lk_slabase_createdonbehalfby + lk_msdyn_qna_createdonbehalfby createdonbehalfby - sla + msdyn_qna createdonbehalfby 0 - 17f2900b-246b-4934-a4c3-cf4b66621001 + 74236456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_importjobbase_modifiedby + lk_msdyn_qna_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -363507,27 +413017,27 @@ false systemuserid systemuser - lk_importjobbase_modifiedby + lk_msdyn_qna_modifiedby modifiedby - importjob + msdyn_qna modifiedby 0 - 941e7d8f-57b6-4a53-af73-b7bc7fc6066b + 7a236456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_MobileOfflineProfileItemAssociation_createdby + lk_msdyn_qna_modifiedonbehalfby None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -363561,27 +413071,27 @@ false systemuserid systemuser - lk_MobileOfflineProfileItemAssociation_createdby - createdby - mobileofflineprofileitemassociation - createdby + lk_msdyn_qna_modifiedonbehalfby + modifiedonbehalfby + msdyn_qna + modifiedonbehalfby 0 - 444918f5-0006-4acb-810e-e9756a2a72f2 + 8c236456-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_processtriggerbase_createdby + user_msdyn_qna None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -363615,15 +413125,15 @@ false systemuserid systemuser - lk_processtriggerbase_createdby - createdby - processtrigger - createdby + user_msdyn_qna + owninguser + msdyn_qna + owninguser 0 - 56b7fdb3-87cd-4e6a-bcbe-30e218c24d93 + be15ef56-8f80-4fd1-9d44-c5eff1e829c7 false @@ -363632,8 +413142,8 @@ false true - false - lk_timezonedefinition_createdonbehalfby + true + lk_savedquerybase_createdby None 5.0.0.0 OneToManyRelationship @@ -363669,15 +413179,15 @@ false systemuserid systemuser - lk_timezonedefinition_createdonbehalfby - createdonbehalfby - timezonedefinition - createdonbehalfby + lk_savedquerybase_createdby + createdby + savedquery + createdby 0 - f4083492-d329-4cfe-aedb-a159f7bacee5 + ea601858-3f94-4a9f-986b-6012fb2a38ab false @@ -363687,7 +413197,7 @@ true true - lk_kbarticlecomment_modifiedonbehalfby + lk_subjectbase_modifiedby None 5.0.0.0 OneToManyRelationship @@ -363723,15 +413233,15 @@ false systemuserid systemuser - lk_kbarticlecomment_modifiedonbehalfby - modifiedonbehalfby - kbarticlecomment - modifiedonbehalfby + lk_subjectbase_modifiedby + modifiedby + subject + modifiedby 0 - 87caea09-cd4c-43b3-8c60-15d4ee959b4d + 95e63358-97ae-4c4a-bee3-3e915a9ffbf9 false @@ -363740,8 +413250,8 @@ false true - false - lk_timezonelocalizedname_createdonbehalfby + true + lk_annotationbase_createdby None 5.0.0.0 OneToManyRelationship @@ -363777,27 +413287,27 @@ false systemuserid systemuser - lk_timezonelocalizedname_createdonbehalfby - createdonbehalfby - timezonelocalizedname - createdonbehalfby + lk_annotationbase_createdby + createdby + annotation + createdby 0 - 6a2646e8-854e-4daf-96b3-35e04baa05bb + e2bf3658-b0db-4529-aa3e-27b1ea01de02 false false iscustomizable - true + false true true - lk_systemuserbase_createdby + lk_ConvertRule_modifiedonbehalfby None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -363831,45 +413341,66 @@ false systemuserid systemuser - lk_systemuserbase_createdby - createdby - systemuser - createdby + lk_ConvertRule_modifiedonbehalfby + modifiedonbehalfby + convertrule + modifiedonbehalfby 0 - c14fcfde-6276-4543-ab72-de5905433057 + 16185858-4305-f111-8408-6045bddd6baa - false + true false iscustomizable - false + true true - false - systemuser_principalobjectattributeaccess + true + systemuser_sourcecontroloperationstatus_StartedBy Append - 5.0.0.0 + 9.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + cbc08e10-4915-4125-8790-45700f6398c7 + + true + + 1033 + + + e12b19da-f6df-4bf1-baa9-c2fa2fea736c + + true + + 1030 + + + + cbc08e10-4915-4125-8790-45700f6398c7 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -363885,27 +413416,27 @@ false systemuserid systemuser - systemuser_principalobjectattributeaccess - objectid - principalobjectattributeaccess - objectid_systemuser + systemuser_sourcecontroloperationstatus_StartedBy + startedby + sourcecontroloperationstatus + StartedBy 1 - 9295f91b-06b5-4c1a-9be5-7b051f28d50e + bb450659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_userapplicationmetadata_modifiedby + false + true + lk_msdyn_analysisresultdetail_createdby None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -363939,27 +413470,27 @@ false systemuserid systemuser - lk_userapplicationmetadata_modifiedby - modifiedby - userapplicationmetadata - modifiedby + lk_msdyn_analysisresultdetail_createdby + createdby + msdyn_analysisresultdetail + createdby 0 - 31fb275e-da60-4e68-bc26-fab99e436c56 + cf450659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - system_user_asyncoperation + lk_msdyn_analysisresultdetail_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -363993,27 +413524,27 @@ false systemuserid systemuser - system_user_asyncoperation - owninguser - asyncoperation - owninguser + lk_msdyn_analysisresultdetail_createdonbehalfby + createdonbehalfby + msdyn_analysisresultdetail + createdonbehalfby 0 - 61c63629-1e3e-457a-9e1c-d1447e5caa34 + 1e460659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_reportlink_createdonbehalfby + lk_msdyn_analysisresultdetail_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364047,27 +413578,27 @@ false systemuserid systemuser - lk_reportlink_createdonbehalfby - createdonbehalfby - reportlink - createdonbehalfby + lk_msdyn_analysisresultdetail_modifiedby + modifiedby + msdyn_analysisresultdetail + modifiedby 0 - 2bf4e2ad-8d38-49dc-9758-20bcf2160149 + 2a460659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_plugintracelogbase_createdonbehalfby + false + true + lk_msdyn_analysisresultdetail_modifiedonbehalfby None - 7.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364101,27 +413632,27 @@ false systemuserid systemuser - lk_plugintracelogbase_createdonbehalfby - createdonbehalfby - plugintracelog - createdonbehalfby + lk_msdyn_analysisresultdetail_modifiedonbehalfby + modifiedonbehalfby + msdyn_analysisresultdetail + modifiedonbehalfby 0 - 1eefefa7-7063-4fbb-a2a3-0a466073d921 + 3c460659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_teamtemplate_createdby + user_msdyn_analysisresultdetail None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364155,27 +413686,27 @@ false systemuserid systemuser - lk_teamtemplate_createdby - createdby - teamtemplate - createdby + user_msdyn_analysisresultdetail + owninguser + msdyn_analysisresultdetail + owninguser 0 - cbb768a0-ad0f-44ac-a222-980e593bc149 + 81470659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_annotationbase_createdonbehalfby + lk_msdyn_solutionhealthrule_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364209,27 +413740,27 @@ false systemuserid systemuser - lk_annotationbase_createdonbehalfby - createdonbehalfby - annotation - createdonbehalfby + lk_msdyn_solutionhealthrule_createdby + createdby + msdyn_solutionhealthrule + createdby 0 - cdf698b1-443a-4355-a8c0-ac9221d15bb8 + 87470659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_fieldsecurityprofile_modifiedonbehalfby + lk_msdyn_solutionhealthrule_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364263,27 +413794,27 @@ false systemuserid systemuser - lk_fieldsecurityprofile_modifiedonbehalfby - modifiedonbehalfby - fieldsecurityprofile - modifiedonbehalfby + lk_msdyn_solutionhealthrule_createdonbehalfby + createdonbehalfby + msdyn_solutionhealthrule + createdonbehalfby 0 - df5cc9f7-0f69-4374-9176-62e52764ca6e + 8d470659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_appmodulecomponent_modifiedonbehalfby + lk_msdyn_solutionhealthrule_modifiedby None - 8.2.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364317,81 +413848,27 @@ false systemuserid systemuser - lk_appmodulecomponent_modifiedonbehalfby - modifiedonbehalfby - appmodulecomponent - modifiedonbehalfby + lk_msdyn_solutionhealthrule_modifiedby + modifiedby + msdyn_solutionhealthrule + modifiedby 0 - 13d091cb-8dbf-46fc-a021-921fba869b8b + 93470659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_reportentitybase_createdby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_reportentitybase_createdby - createdby - reportentity - createdby - - 0 - - - cda6002a-5109-4e35-b996-4562ede86515 - - false - - false - iscustomizable - false - - true - false - lk_semiannualfiscalcalendar_createdonbehalfby + lk_msdyn_solutionhealthrule_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364425,27 +413902,27 @@ false systemuserid systemuser - lk_semiannualfiscalcalendar_createdonbehalfby - createdonbehalfby - semiannualfiscalcalendar - createdonbehalfby + lk_msdyn_solutionhealthrule_modifiedonbehalfby + modifiedonbehalfby + msdyn_solutionhealthrule + modifiedonbehalfby 0 - 24f616bd-ec72-4a41-b2fb-d28d4f396092 + a5470659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_userquery_modifiedonbehalfby + false + true + user_msdyn_solutionhealthrule None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364479,27 +413956,27 @@ false systemuserid systemuser - lk_userquery_modifiedonbehalfby - modifiedonbehalfby - userquery - modifiedonbehalfby + user_msdyn_solutionhealthrule + owninguser + msdyn_solutionhealthrule + owninguser 0 - dd24b92f-2c53-4794-9b6b-5e5499a2da6f + a2480659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_businessunitnewsarticlebase_createdby + lk_msdyn_solutionhealthruleargument_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364533,27 +414010,27 @@ false systemuserid systemuser - lk_businessunitnewsarticlebase_createdby + lk_msdyn_solutionhealthruleargument_createdby createdby - businessunitnewsarticle + msdyn_solutionhealthruleargument createdby 0 - d3cf39db-c982-4a70-b15b-19014e090a57 + a8480659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - systemuser_connections2 + lk_msdyn_solutionhealthruleargument_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364562,7 +414039,7 @@ - 100 + true false @@ -364587,27 +414064,27 @@ false systemuserid systemuser - systemuser_connections2 - record2id - connection - record2id_systemuser + lk_msdyn_solutionhealthruleargument_createdonbehalfby + createdonbehalfby + msdyn_solutionhealthruleargument + createdonbehalfby 0 - eed4e49e-2ebe-49bf-97f9-be5d3b814f86 + ae480659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_task_createdonbehalfby + lk_msdyn_solutionhealthruleargument_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364641,27 +414118,27 @@ false systemuserid systemuser - lk_task_createdonbehalfby - createdonbehalfby - task - createdonbehalfby_task + lk_msdyn_solutionhealthruleargument_modifiedby + modifiedby + msdyn_solutionhealthruleargument + modifiedby 0 - f1ac2439-67a4-431b-a0c9-ed6e4f7e3592 + b5480659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_contactbase_modifiedby + lk_msdyn_solutionhealthruleargument_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364695,27 +414172,27 @@ false systemuserid systemuser - lk_contactbase_modifiedby - modifiedby - contact - modifiedby + lk_msdyn_solutionhealthruleargument_modifiedonbehalfby + modifiedonbehalfby + msdyn_solutionhealthruleargument + modifiedonbehalfby 0 - 3c3db7e0-f87f-4ca9-9295-399fd5bf4f53 + c7480659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_letter_createdonbehalfby + user_msdyn_solutionhealthruleargument None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364749,30 +414226,30 @@ false systemuserid systemuser - lk_letter_createdonbehalfby - createdonbehalfby - letter - createdonbehalfby_letter + user_msdyn_solutionhealthruleargument + owninguser + msdyn_solutionhealthruleargument + owninguser 0 - 57904a24-373b-4edd-93a6-63479074892b + 8e490659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - lk_customcontrolresource_createdby + lk_msdyn_solutionhealthruleset_createdby None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -364803,27 +414280,27 @@ false systemuserid systemuser - lk_customcontrolresource_createdby + lk_msdyn_solutionhealthruleset_createdby createdby - customcontrolresource + msdyn_solutionhealthruleset createdby 0 - 810f8db4-9acc-4b26-bfde-36476a5eb072 + 94490659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_wizardaccessprivilege_createdby + false + true + lk_msdyn_solutionhealthruleset_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364857,27 +414334,27 @@ false systemuserid systemuser - lk_wizardaccessprivilege_createdby - createdby - wizardaccessprivilege - createdby + lk_msdyn_solutionhealthruleset_createdonbehalfby + createdonbehalfby + msdyn_solutionhealthruleset + createdonbehalfby 0 - 563ee4f5-a0bd-4b0d-83ed-14bed2f81c4f + 9a490659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_socialactivitybase_modifiedonbehalfby + lk_msdyn_solutionhealthruleset_modifiedby None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364911,27 +414388,27 @@ false systemuserid systemuser - lk_socialactivitybase_modifiedonbehalfby - modifiedonbehalfby - socialactivity - modifiedonbehalfby_socialactivity + lk_msdyn_solutionhealthruleset_modifiedby + modifiedby + msdyn_solutionhealthruleset + modifiedby 0 - 3c59c398-f460-443e-94f9-2ba1e582b4ae + a0490659-efba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_socialactivitybase_createdonbehalfby + lk_msdyn_solutionhealthruleset_modifiedonbehalfby None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -364965,79 +414442,25 @@ false systemuserid systemuser - lk_socialactivitybase_createdonbehalfby - createdonbehalfby - socialactivity - createdonbehalfby_socialactivity - - 0 - - - 24be02d6-a23d-4b8d-a026-706b9b9c1c5b - - false - - false - iscustomizable - false - - true - false - lk_importfilebase_modifiedonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_importfilebase_modifiedonbehalfby + lk_msdyn_solutionhealthruleset_modifiedonbehalfby modifiedonbehalfby - importfile + msdyn_solutionhealthruleset modifiedonbehalfby 0 - 32b72929-67b9-41a0-8e2a-5c324e1165f7 + 4925b159-3096-4bf7-9341-8e1cca1282f5 false false iscustomizable - false + true true - false - lk_sdkmessagerequestfield_modifiedonbehalfby + true + lk_task_modifiedby None 5.0.0.0 OneToManyRelationship @@ -365073,15 +414496,15 @@ false systemuserid systemuser - lk_sdkmessagerequestfield_modifiedonbehalfby - modifiedonbehalfby - sdkmessagerequestfield - modifiedonbehalfby + lk_task_modifiedby + modifiedby + task + modifiedby_task 0 - b2a145da-f7a2-4810-87af-da3f9ac11a47 + 32f9635a-b055-e011-a288-00155d9d3c05 false @@ -365091,12 +414514,12 @@ true true - lk_fieldsecurityprofile_modifiedby + lk_post_createdby None 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -365127,30 +414550,30 @@ false systemuserid systemuser - lk_fieldsecurityprofile_modifiedby - modifiedby - fieldsecurityprofile - modifiedby + lk_post_createdby + createdby + post + createdby 0 - 0726c3c9-e13a-4871-9e6a-bd167662ef9a + 38f9635a-b055-e011-a288-00155d9d3c05 false false iscustomizable - true + false true true - lk_newprocess_createdonbehalfby + lk_post_createdonbehalfby None - 8.2.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -365181,27 +414604,27 @@ false systemuserid systemuser - lk_newprocess_createdonbehalfby + lk_post_createdonbehalfby createdonbehalfby - newprocess - createdonbehalfbyname + post + createdonbehalfby 0 - 835beb8b-d162-42ae-a18f-945b6c9cf677 + 3ef9635a-b055-e011-a288-00155d9d3c05 false false iscustomizable - true + false true true - lk_appconfig_createdby + lk_post_modifiedby None - 9.0.0.0 + 5.0.0.0 OneToManyRelationship UseCollectionName @@ -365235,30 +414658,30 @@ false systemuserid systemuser - systemuser_appconfig_createdby - createdby - appconfig - appconfig_createdby + lk_post_modifiedby + modifiedby + post + modifiedby 0 - 515db572-4a20-40fc-8c65-6969df462047 + 44f9635a-b055-e011-a288-00155d9d3c05 false false iscustomizable - true + false true - false - lk_businessunitbase_createdby + true + lk_post_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -365289,15 +414712,15 @@ false systemuserid systemuser - lk_businessunitbase_createdby - createdby - businessunit - createdby + lk_post_modifiedonbehalfby + modifiedonbehalfby + post + modifiedonbehalfby 0 - 09223f6c-eaaf-4db3-a275-d1cc3e7b98af + d37a2c5b-3c5d-4f04-9731-4395455b03ab false @@ -365306,10 +414729,10 @@ false true - false - lk_monthlyfiscalcalendar_createdonbehalfby + true + lk_documenttemplatebase_createdonbehalfby None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -365343,69 +414766,15 @@ false systemuserid systemuser - lk_monthlyfiscalcalendar_createdonbehalfby + lk_documenttemplatebase_createdonbehalfby createdonbehalfby - monthlyfiscalcalendar + documenttemplate createdonbehalfby 0 - 8c59e6dd-0eb1-460f-bc14-aa9dd436d637 - - false - - false - iscustomizable - true - - true - true - lk_sharepointdocumentlocationbase_modifiedonbehalfby - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_sharepointdocumentlocationbase_modifiedonbehalfby - modifiedonbehalfby - sharepointdocumentlocation - modifiedonbehalfby - - 0 - - - 5a999fa7-cf66-4e34-a903-89f446619400 + 55422a5c-6bf9-4f04-bcb1-256a2004f086 false @@ -365415,9 +414784,9 @@ true false - lk_importdata_modifiedonbehalfby + user_userapplicationmetadata None - 5.0.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -365451,15 +414820,15 @@ false systemuserid systemuser - lk_importdata_modifiedonbehalfby - modifiedonbehalfby - importdata - modifiedonbehalfby + user_userapplicationmetadata + owninguser + userapplicationmetadata + owninguser 0 - 131460b1-1e82-46cd-b60c-0f056cb55cb4 + 2e22475c-3cc5-4944-b7be-44f841ee95f4 false @@ -365469,12 +414838,12 @@ true true - lk_advancedsimilarityrule_createdonbehalfby + lk_recurringappointmentmaster_createdonbehalfby None - 8.1.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -365505,15 +414874,15 @@ false systemuserid systemuser - lk_advancedsimilarityrule_createdonbehalfby + lk_recurringappointmentmaster_createdonbehalfby createdonbehalfby - advancedsimilarityrule - createdonbehalfby + recurringappointmentmaster + createdonbehalfby_recurringappointmentmaster 0 - 67afe622-5f10-4323-ad62-8cf780e9e247 + e9226f5c-bcc8-4965-9db4-2470b579cf23 false @@ -365523,9 +414892,9 @@ true false - lk_syncerrorbase_createdby - None - 8.0.0.0 + lk_monthlyfiscalcalendar_salespersonid + ParentChild + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -365559,27 +414928,27 @@ false systemuserid systemuser - lk_syncerrorbase_createdby - createdby - syncerror - createdby + lk_monthlyfiscalcalendar_salespersonid + salespersonid + monthlyfiscalcalendar + salespersonid - 0 + 2 - 4077008b-c4c9-486c-a694-8dd76e21a8f9 + ca84965c-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - modifiedby_sdkmessagerequestfield + false + true + lk_msdyn_pminferredtask_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -365613,27 +414982,27 @@ false systemuserid systemuser - modifiedby_sdkmessagerequestfield - modifiedby - sdkmessagerequestfield - modifiedby + lk_msdyn_pminferredtask_createdby + createdby + msdyn_pminferredtask + createdby 0 - 5ec0c84b-e78f-43ea-baff-8288893eee15 + d084965c-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - createdby_sdkmessagefilter + false + true + lk_msdyn_pminferredtask_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -365667,30 +415036,30 @@ false systemuserid systemuser - createdby_sdkmessagefilter - createdby - sdkmessagefilter - createdby + lk_msdyn_pminferredtask_createdonbehalfby + createdonbehalfby + msdyn_pminferredtask + createdonbehalfby 0 - 152afc9f-4c8c-48d8-99b0-0a02954a2a4d + d684965c-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_knowledgesearchmodel_createdby + false + true + lk_msdyn_pminferredtask_modifiedby None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -365721,27 +415090,27 @@ false systemuserid systemuser - lk_knowledgesearchmodel_createdby - createdby - knowledgesearchmodel - createdby + lk_msdyn_pminferredtask_modifiedby + modifiedby + msdyn_pminferredtask + modifiedby 0 - 6189e380-1e6e-47da-b24e-eb64e2769961 + dc84965c-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_kbarticlebase_modifiedby + lk_msdyn_pminferredtask_modifiedonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -365775,27 +415144,27 @@ false systemuserid systemuser - lk_kbarticlebase_modifiedby - modifiedby - kbarticle - modifiedby + lk_msdyn_pminferredtask_modifiedonbehalfby + modifiedonbehalfby + msdyn_pminferredtask + modifiedonbehalfby 0 - a5f065f5-2adc-498a-853c-eacace62331d + ee84965c-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - lk_ownermapping_createdby + false + true + user_msdyn_pminferredtask None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -365829,27 +415198,27 @@ false systemuserid systemuser - lk_ownermapping_createdby - createdby - ownermapping - createdby + user_msdyn_pminferredtask + owninguser + msdyn_pminferredtask + owninguser 0 - 57e48a35-a433-4a90-8665-1dfd702df46d + af85965c-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - SystemUser_SyncErrors - Append - 8.1.0.0 + lk_msdyn_pmprocessextendedmetadataversion_createdby + None + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -365868,12 +415237,12 @@ NoCascade - Cascade - Cascade - Cascade - Cascade - Cascade - Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade NoCascade @@ -365883,27 +415252,27 @@ false systemuserid systemuser - SystemUser_SyncErrors - regardingobjectid - syncerror - regardingobjectid_systemuser_syncerror + lk_msdyn_pmprocessextendedmetadataversion_createdby + createdby + msdyn_pmprocessextendedmetadataversion + createdby - 1 + 0 - a896fa8f-3ce2-44e1-80f1-fc36bb0de846 + b585965c-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - lk_duplicateruleconditionbase_createdby + false + true + lk_msdyn_pmprocessextendedmetadataversion_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -365937,27 +415306,27 @@ false systemuserid systemuser - lk_duplicateruleconditionbase_createdby - createdby - duplicaterulecondition - createdby + lk_msdyn_pmprocessextendedmetadataversion_createdonbehalfby + createdonbehalfby + msdyn_pmprocessextendedmetadataversion + createdonbehalfby 0 - 0b358c73-41fe-42d3-8af6-28eec8cb8166 + bb85965c-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_ribboncommand_createdby + lk_msdyn_pmprocessextendedmetadataversion_modifiedby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -365991,27 +415360,27 @@ false systemuserid systemuser - lk_ribboncommand_createdby - createdby - ribboncommand - createdby + lk_msdyn_pmprocessextendedmetadataversion_modifiedby + modifiedby + msdyn_pmprocessextendedmetadataversion + modifiedby 0 - 3da8a6a0-d01a-4265-ab76-9a05af9d7f09 + c185965c-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_ribboncommand_createdonbehalfby + lk_msdyn_pmprocessextendedmetadataversion_modifiedonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -366045,27 +415414,27 @@ false systemuserid systemuser - lk_ribboncommand_createdonbehalfby - createdonbehalfby - ribboncommand - createdonbehalfby + lk_msdyn_pmprocessextendedmetadataversion_modifiedonbehalfby + modifiedonbehalfby + msdyn_pmprocessextendedmetadataversion + modifiedonbehalfby 0 - 9b6dedf3-3834-41b4-ba1a-f8666d3fff9b + d385965c-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_ribboncommand_modifiedby + user_msdyn_pmprocessextendedmetadataversion None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -366099,27 +415468,81 @@ false systemuserid systemuser - lk_ribboncommand_modifiedby - modifiedby - ribboncommand - modifiedby + user_msdyn_pmprocessextendedmetadataversion + owninguser + msdyn_pmprocessextendedmetadataversion + owninguser 0 - a581d665-7aa4-4e27-b793-f7baba01bc45 + 9e01af5c-0ebb-435b-9049-9c05c4071b63 false false iscustomizable - true + false true + false + lk_usersettings_modifiedonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_usersettings_modifiedonbehalfby + modifiedonbehalfby + usersettings + modifiedonbehalfby + + 0 + + + 74a8bb5c-c0ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false true - lk_ribboncommand_modifiedonbehalfby + lk_msdyn_tour_createdby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -366153,27 +415576,27 @@ false systemuserid systemuser - lk_ribboncommand_modifiedonbehalfby - modifiedonbehalfby - ribboncommand - modifiedonbehalfby + lk_msdyn_tour_createdby + createdby + msdyn_tour + createdby 0 - 90a15328-ff10-4417-a29a-338287024c47 + 7aa8bb5c-c0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_ribbonrule_createdby + lk_msdyn_tour_createdonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -366207,27 +415630,27 @@ false systemuserid systemuser - lk_ribbonrule_createdby - createdby - ribbonrule - createdby + lk_msdyn_tour_createdonbehalfby + createdonbehalfby + msdyn_tour + createdonbehalfby 0 - 22e3fc92-4c27-4924-92e3-13479ae1ffb5 + 80a8bb5c-c0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_ribbonrule_createdonbehalfby + lk_msdyn_tour_modifiedby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -366261,27 +415684,27 @@ false systemuserid systemuser - lk_ribbonrule_createdonbehalfby - createdonbehalfby - ribbonrule - createdonbehalfby + lk_msdyn_tour_modifiedby + modifiedby + msdyn_tour + modifiedby 0 - 3814990a-e026-43c8-bde9-f78d6a78e90b + 86a8bb5c-c0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_ribbonrule_modifiedby + lk_msdyn_tour_modifiedonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -366315,27 +415738,27 @@ false systemuserid systemuser - lk_ribbonrule_modifiedby - modifiedby - ribbonrule - modifiedby + lk_msdyn_tour_modifiedonbehalfby + modifiedonbehalfby + msdyn_tour + modifiedonbehalfby 0 - afc5fc74-de25-4242-a010-7f8bda33957b + cf04cb5c-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_ribbonrule_modifiedonbehalfby + lk_msdyn_salesforcestructuredobject_createdby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -366369,30 +415792,30 @@ false systemuserid systemuser - lk_ribbonrule_modifiedonbehalfby - modifiedonbehalfby - ribbonrule - modifiedonbehalfby + lk_msdyn_salesforcestructuredobject_createdby + createdby + msdyn_salesforcestructuredobject + createdby 0 - 7c47e945-ad96-4572-bb0f-d7b35547ba45 + d504cb5c-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_callbackregistration_modifiedonbehalfby + lk_msdyn_salesforcestructuredobject_createdonbehalfby None - 9.0.2.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -366423,30 +415846,30 @@ false systemuserid systemuser - systemuser_callbackregistration_modifiedonbehalfby - modifiedonbehalfby - callbackregistration - callbackregistration_modifiedonbehalfby + lk_msdyn_salesforcestructuredobject_createdonbehalfby + createdonbehalfby + msdyn_salesforcestructuredobject + createdonbehalfby 0 - f028e83b-e7be-4964-96cd-3619e85f9981 + dd04cb5c-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_callbackregistration_modifiedby + lk_msdyn_salesforcestructuredobject_modifiedby None - 9.0.2.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -366477,30 +415900,30 @@ false systemuserid systemuser - systemuser_callbackregistration_modifiedby + lk_msdyn_salesforcestructuredobject_modifiedby modifiedby - callbackregistration - callbackregistration_modifiedby + msdyn_salesforcestructuredobject + modifiedby 0 - a182611f-e096-4b2c-ad0a-1a864d18cd09 + e704cb5c-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_callbackregistration_createdonbehalfby + lk_msdyn_salesforcestructuredobject_modifiedonbehalfby None - 9.0.2.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -366531,30 +415954,30 @@ false systemuserid systemuser - systemuser_callbackregistration_createdonbehalfby - createdonbehalfby - callbackregistration - callbackregistration_createdonbehalfby + lk_msdyn_salesforcestructuredobject_modifiedonbehalfby + modifiedonbehalfby + msdyn_salesforcestructuredobject + modifiedonbehalfby 0 - 28b14bc0-12f5-4dc4-b4a0-ded099c253a9 + 1705cb5c-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_callbackregistration_createdby + user_msdyn_salesforcestructuredobject None - 9.0.2.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -366585,15 +416008,15 @@ false systemuserid systemuser - systemuser_callbackregistration_createdby - createdby - callbackregistration - callbackregistration_createdby + user_msdyn_salesforcestructuredobject + owninguser + msdyn_salesforcestructuredobject + owninguser 0 - 688a848a-a9ba-f011-bbd3-7c1e52365f30 + 2706cb5c-c3ba-f011-bbd3-7c1e52365f30 false @@ -366603,9 +416026,9 @@ false true - lk_solutioncomponentattributeconfiguration_createdby + lk_msdyn_salesforcestructuredqnaconfig_createdby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -366639,15 +416062,15 @@ false systemuserid systemuser - lk_solutioncomponentattributeconfiguration_createdby + lk_msdyn_salesforcestructuredqnaconfig_createdby createdby - solutioncomponentattributeconfiguration + msdyn_salesforcestructuredqnaconfig createdby 0 - 6e8a848a-a9ba-f011-bbd3-7c1e52365f30 + 2d06cb5c-c3ba-f011-bbd3-7c1e52365f30 false @@ -366657,9 +416080,9 @@ false true - lk_solutioncomponentattributeconfiguration_createdonbehalfby + lk_msdyn_salesforcestructuredqnaconfig_createdonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -366693,15 +416116,15 @@ false systemuserid systemuser - lk_solutioncomponentattributeconfiguration_createdonbehalfby + lk_msdyn_salesforcestructuredqnaconfig_createdonbehalfby createdonbehalfby - solutioncomponentattributeconfiguration + msdyn_salesforcestructuredqnaconfig createdonbehalfby 0 - 748a848a-a9ba-f011-bbd3-7c1e52365f30 + 3306cb5c-c3ba-f011-bbd3-7c1e52365f30 false @@ -366711,9 +416134,9 @@ false true - lk_solutioncomponentattributeconfiguration_modifiedby + lk_msdyn_salesforcestructuredqnaconfig_modifiedby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -366747,15 +416170,15 @@ false systemuserid systemuser - lk_solutioncomponentattributeconfiguration_modifiedby + lk_msdyn_salesforcestructuredqnaconfig_modifiedby modifiedby - solutioncomponentattributeconfiguration + msdyn_salesforcestructuredqnaconfig modifiedby 0 - 7a8a848a-a9ba-f011-bbd3-7c1e52365f30 + 3906cb5c-c3ba-f011-bbd3-7c1e52365f30 false @@ -366765,9 +416188,9 @@ false true - lk_solutioncomponentattributeconfiguration_modifiedonbehalfby + lk_msdyn_salesforcestructuredqnaconfig_modifiedonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -366801,15 +416224,15 @@ false systemuserid systemuser - lk_solutioncomponentattributeconfiguration_modifiedonbehalfby + lk_msdyn_salesforcestructuredqnaconfig_modifiedonbehalfby modifiedonbehalfby - solutioncomponentattributeconfiguration + msdyn_salesforcestructuredqnaconfig modifiedonbehalfby 0 - 898b848a-a9ba-f011-bbd3-7c1e52365f30 + 4b06cb5c-c3ba-f011-bbd3-7c1e52365f30 false @@ -366819,7 +416242,7 @@ false true - lk_solutioncomponentbatchconfiguration_createdby + user_msdyn_salesforcestructuredqnaconfig None 1.0 OneToManyRelationship @@ -366855,15 +416278,15 @@ false systemuserid systemuser - lk_solutioncomponentbatchconfiguration_createdby - createdby - solutioncomponentbatchconfiguration - createdby + user_msdyn_salesforcestructuredqnaconfig + owninguser + msdyn_salesforcestructuredqnaconfig + owninguser 0 - 8f8b848a-a9ba-f011-bbd3-7c1e52365f30 + 9a07cb5c-c3ba-f011-bbd3-7c1e52365f30 false @@ -366873,9 +416296,9 @@ false true - lk_solutioncomponentbatchconfiguration_createdonbehalfby + lk_msdyn_workflowactionstatus_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -366909,15 +416332,15 @@ false systemuserid systemuser - lk_solutioncomponentbatchconfiguration_createdonbehalfby - createdonbehalfby - solutioncomponentbatchconfiguration - createdonbehalfby + lk_msdyn_workflowactionstatus_createdby + createdby + msdyn_workflowactionstatus + createdby 0 - 958b848a-a9ba-f011-bbd3-7c1e52365f30 + a007cb5c-c3ba-f011-bbd3-7c1e52365f30 false @@ -366927,9 +416350,9 @@ false true - lk_solutioncomponentbatchconfiguration_modifiedby + lk_msdyn_workflowactionstatus_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -366963,15 +416386,15 @@ false systemuserid systemuser - lk_solutioncomponentbatchconfiguration_modifiedby - modifiedby - solutioncomponentbatchconfiguration - modifiedby + lk_msdyn_workflowactionstatus_createdonbehalfby + createdonbehalfby + msdyn_workflowactionstatus + createdonbehalfby 0 - 9b8b848a-a9ba-f011-bbd3-7c1e52365f30 + a607cb5c-c3ba-f011-bbd3-7c1e52365f30 false @@ -366981,9 +416404,9 @@ false true - lk_solutioncomponentbatchconfiguration_modifiedonbehalfby + lk_msdyn_workflowactionstatus_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -367017,15 +416440,15 @@ false systemuserid systemuser - lk_solutioncomponentbatchconfiguration_modifiedonbehalfby - modifiedonbehalfby - solutioncomponentbatchconfiguration - modifiedonbehalfby + lk_msdyn_workflowactionstatus_modifiedby + modifiedby + msdyn_workflowactionstatus + modifiedby 0 - ad8b848a-a9ba-f011-bbd3-7c1e52365f30 + ad07cb5c-c3ba-f011-bbd3-7c1e52365f30 false @@ -367035,9 +416458,9 @@ false true - user_solutioncomponentbatchconfiguration + lk_msdyn_workflowactionstatus_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -367071,30 +416494,30 @@ false systemuserid systemuser - user_solutioncomponentbatchconfiguration - owninguser - solutioncomponentbatchconfiguration - owninguser + lk_msdyn_workflowactionstatus_modifiedonbehalfby + modifiedonbehalfby + msdyn_workflowactionstatus + modifiedonbehalfby 0 - 2f488790-a9ba-f011-bbd3-7c1e52365f30 + d18d5b5d-4c10-439e-ad61-4d8e516b1d4f false - true + false iscustomizable - true + false - false + true true - lk_solutioncomponentconfiguration_createdby + multientitysearch_createdby None - 9.1.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -367125,30 +416548,30 @@ false systemuserid systemuser - lk_solutioncomponentconfiguration_createdby + multientitysearch_createdby createdby - solutioncomponentconfiguration + multientitysearch createdby 0 - 35488790-a9ba-f011-bbd3-7c1e52365f30 + 8170fb5d-25ba-460f-8daa-b6209affd8fd false - true + false iscustomizable - true + false - false - true - lk_solutioncomponentconfiguration_createdonbehalfby + true + false + userentityinstancedata_owning_user None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -367179,27 +416602,27 @@ false systemuserid systemuser - lk_solutioncomponentconfiguration_createdonbehalfby - createdonbehalfby - solutioncomponentconfiguration - createdonbehalfby + userentityinstancedata_owning_user + owninguser + userentityinstancedata + owninguser 0 - 3b488790-a9ba-f011-bbd3-7c1e52365f30 + 31fb275e-da60-4e68-bc26-fab99e436c56 false - true + false iscustomizable - true + false - false + true true - lk_solutioncomponentconfiguration_modifiedby + system_user_asyncoperation None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -367233,27 +416656,27 @@ false systemuserid systemuser - lk_solutioncomponentconfiguration_modifiedby - modifiedby - solutioncomponentconfiguration - modifiedby + system_user_asyncoperation + owninguser + asyncoperation + owninguser 0 - 41488790-a9ba-f011-bbd3-7c1e52365f30 + 9736705f-e268-e011-90ca-00155d7b441f false - true + false iscustomizable true - false + true true - lk_solutioncomponentconfiguration_modifiedonbehalfby + lk_emailserverprofile_createdonbehalfby None - 9.1.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -367287,30 +416710,30 @@ false systemuserid systemuser - lk_solutioncomponentconfiguration_modifiedonbehalfby - modifiedonbehalfby - solutioncomponentconfiguration - modifiedonbehalfby + lk_emailserverprofile_createdonbehalfby + createdonbehalfby + emailserverprofile + createdonbehalfby 0 - 21498790-a9ba-f011-bbd3-7c1e52365f30 + a336705f-e268-e011-90ca-00155d7b441f false - true + false iscustomizable - false + true - false + true true - lk_solutioncomponentrelationshipconfiguration_createdby + lk_emailserverprofile_modifiedonbehalfby None - 1.0.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -367341,27 +416764,27 @@ false systemuserid systemuser - lk_solutioncomponentrelationshipconfiguration_createdby - createdby - solutioncomponentrelationshipconfiguration - createdby + lk_emailserverprofile_modifiedonbehalfby + modifiedonbehalfby + emailserverprofile + modifiedonbehalfby 0 - 27498790-a9ba-f011-bbd3-7c1e52365f30 + 6d3d7c5f-2aa1-4198-8288-4038f891bc3d false - true + false iscustomizable - true + false - false - true - lk_solutioncomponentrelationshipconfiguration_createdonbehalfby + true + false + lk_expanderevent_createdonbehalfby None - 1.0.0.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -367395,30 +416818,30 @@ false systemuserid systemuser - lk_solutioncomponentrelationshipconfiguration_createdonbehalfby + lk_expanderevent_createdonbehalfby createdonbehalfby - solutioncomponentrelationshipconfiguration + expanderevent createdonbehalfby 0 - 2d498790-a9ba-f011-bbd3-7c1e52365f30 + acb28e5f-99ae-4b90-a2cd-ff3fec54d959 false - true + false iscustomizable - false + true - false + true true - lk_solutioncomponentrelationshipconfiguration_modifiedby + lk_expiredprocess_createdonbehalfby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -367449,15 +416872,15 @@ false systemuserid systemuser - lk_solutioncomponentrelationshipconfiguration_modifiedby - modifiedby - solutioncomponentrelationshipconfiguration - modifiedby + lk_expiredprocess_createdonbehalfby + createdonbehalfby + expiredprocess + createdonbehalfbyname 0 - 33498790-a9ba-f011-bbd3-7c1e52365f30 + eedaa05f-c76a-f111-ab0f-7ced8d776baf false @@ -367467,7 +416890,7 @@ false true - lk_solutioncomponentrelationshipconfiguration_modifiedonbehalfby + lk_msdyn_evalresult_createdby None 1.0.0.0 OneToManyRelationship @@ -367503,15 +416926,15 @@ false systemuserid systemuser - lk_solutioncomponentrelationshipconfiguration_modifiedonbehalfby - modifiedonbehalfby - solutioncomponentrelationshipconfiguration - modifiedonbehalfby + lk_msdyn_evalresult_createdby + createdby + msdyn_evalresult + createdby 0 - 83905f91-aaba-f011-bbd3-7c1e52365f30 + f4daa05f-c76a-f111-ab0f-7ced8d776baf false @@ -367521,9 +416944,9 @@ false true - lk_package_createdby + lk_msdyn_evalresult_createdonbehalfby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -367557,15 +416980,15 @@ false systemuserid systemuser - lk_package_createdby - createdby - package - createdby + lk_msdyn_evalresult_createdonbehalfby + createdonbehalfby + msdyn_evalresult + createdonbehalfby 0 - 89905f91-aaba-f011-bbd3-7c1e52365f30 + fbdaa05f-c76a-f111-ab0f-7ced8d776baf false @@ -367575,9 +416998,9 @@ false true - lk_package_createdonbehalfby + lk_msdyn_evalresult_modifiedby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -367611,15 +417034,15 @@ false systemuserid systemuser - lk_package_createdonbehalfby - createdonbehalfby - package - createdonbehalfby + lk_msdyn_evalresult_modifiedby + modifiedby + msdyn_evalresult + modifiedby 0 - 8f905f91-aaba-f011-bbd3-7c1e52365f30 + 02dba05f-c76a-f111-ab0f-7ced8d776baf false @@ -367629,9 +417052,9 @@ false true - lk_package_modifiedby + lk_msdyn_evalresult_modifiedonbehalfby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -367665,27 +417088,27 @@ false systemuserid systemuser - lk_package_modifiedby - modifiedby - package - modifiedby + lk_msdyn_evalresult_modifiedonbehalfby + modifiedonbehalfby + msdyn_evalresult + modifiedonbehalfby 0 - 95905f91-aaba-f011-bbd3-7c1e52365f30 + b6620960-51ad-4586-b284-5777f4b77ce2 false - true + false iscustomizable true - false + true true - lk_package_modifiedonbehalfby + lk_accountbase_createdonbehalfby None - 9.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -367719,27 +417142,27 @@ false systemuserid systemuser - lk_package_modifiedonbehalfby - modifiedonbehalfby - package - modifiedonbehalfby + lk_accountbase_createdonbehalfby + createdonbehalfby + account + createdonbehalfby 0 - 77915f91-aaba-f011-bbd3-7c1e52365f30 + 0d091360-0557-4bee-8432-cdbd26c75c02 false - true + false iscustomizable true - false + true true - lk_packagehistory_createdby + lk_ChannelPropertyGroup_modifiedonbehalfby None - 9.0.0.4 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -367773,27 +417196,27 @@ false systemuserid systemuser - lk_packagehistory_createdby - createdby - packagehistory - createdby + lk_ChannelPropertyGroup_modifiedonbehalfby + modifiedonbehalfby + channelpropertygroup + modifiedonbehalfby 0 - 7d915f91-aaba-f011-bbd3-7c1e52365f30 + 156ec960-b29f-4663-bf06-ccb6c70387fe false - true + false iscustomizable - true + false - false - true - lk_packagehistory_createdonbehalfby + true + false + createdby_sdkmessageprocessingstep None - 9.0.0.4 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -367827,27 +417250,27 @@ false systemuserid systemuser - lk_packagehistory_createdonbehalfby - createdonbehalfby - packagehistory - createdonbehalfby + createdby_sdkmessageprocessingstep + createdby + sdkmessageprocessingstep + createdby 0 - 83915f91-aaba-f011-bbd3-7c1e52365f30 + 357be860-2ad9-446e-bdc1-376254fb7865 false - true + false iscustomizable - true + false - false + true true - lk_packagehistory_modifiedby + lk_publisherbase_modifiedonbehalfby None - 9.0.0.4 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -367881,27 +417304,27 @@ false systemuserid systemuser - lk_packagehistory_modifiedby - modifiedby - packagehistory - modifiedby + lk_publisherbase_modifiedonbehalfby + modifiedonbehalfby + publisher + modifiedonbehalfby 0 - 89915f91-aaba-f011-bbd3-7c1e52365f30 + 34fa1661-5e7d-4faf-a18f-ab0d0238756d false - true + false iscustomizable - true + false - false + true true - lk_packagehistory_modifiedonbehalfby + lk_calendar_modifiedonbehalfby None - 9.0.0.4 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -367935,27 +417358,27 @@ false systemuserid systemuser - lk_packagehistory_modifiedonbehalfby + lk_calendar_modifiedonbehalfby modifiedonbehalfby - packagehistory + calendar modifiedonbehalfby 0 - 5882c8bf-aaba-f011-bbd3-7c1e52365f30 + 6d0d4a61-e846-42ab-a259-018cbc1370f9 false - true + false iscustomizable true - false + true true - lk_stagesolutionupload_createdby + lk_mobileofflineprofileitemassociation_modifiedonbehalfby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -367989,27 +417412,27 @@ false systemuserid systemuser - lk_stagesolutionupload_createdby - createdby - stagesolutionupload - createdby + lk_mobileofflineprofileitemassocaition_modifiedonbehalfby + modifiedonbehalfby + mobileofflineprofileitemassociation + modifiedonbehalfby 0 - 5e82c8bf-aaba-f011-bbd3-7c1e52365f30 + 20977461-78ff-4841-9e9e-60da264d319b false - true + false iscustomizable true - false + true true - lk_stagesolutionupload_createdonbehalfby + lk_phonecall_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -368043,27 +417466,27 @@ false systemuserid systemuser - lk_stagesolutionupload_createdonbehalfby - createdonbehalfby - stagesolutionupload - createdonbehalfby + lk_phonecall_createdby + createdby + phonecall + createdby_phonecall 0 - 6482c8bf-aaba-f011-bbd3-7c1e52365f30 + 29247961-a5f6-489e-b9c5-466848d4c1c3 false - true + false iscustomizable - true + false - false + true true - lk_stagesolutionupload_modifiedby + lk_ConvertRule_modifiedby None - 1.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -368097,27 +417520,27 @@ false systemuserid systemuser - lk_stagesolutionupload_modifiedby + lk_ConvertRule_modifiedby modifiedby - stagesolutionupload + convertrule modifiedby 0 - 6a82c8bf-aaba-f011-bbd3-7c1e52365f30 + e8a09961-82ce-4963-84d6-49170aecbce6 false - true + false iscustomizable - true + false - false - true - lk_stagesolutionupload_modifiedonbehalfby + true + false + lk_quarterlyfiscalcalendar_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -368151,27 +417574,27 @@ false systemuserid systemuser - lk_stagesolutionupload_modifiedonbehalfby - modifiedonbehalfby - stagesolutionupload - modifiedonbehalfby + lk_quarterlyfiscalcalendar_modifiedby + modifiedby + quarterlyfiscalcalendar + modifiedby 0 - 7c82c8bf-aaba-f011-bbd3-7c1e52365f30 + 6d9ad861-57db-4f04-801d-6651abcd50c2 false - true + false iscustomizable - true + false - false + true true - user_stagesolutionupload + lk_reportvisibilitybase_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -368205,15 +417628,15 @@ false systemuserid systemuser - user_stagesolutionupload - owninguser - stagesolutionupload - owninguser + lk_reportvisibilitybase_modifiedby + modifiedby + reportvisibility + modifiedby 0 - 02fe9fe6-aaba-f011-bbd3-7c1e52365f30 + 30314862-d1ba-f011-bbd3-7c1e52365f30 false @@ -368223,9 +417646,9 @@ false true - lk_exportsolutionupload_createdby + lk_mobileofflineprofileextension_createdby None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -368259,15 +417682,15 @@ false systemuserid systemuser - lk_exportsolutionupload_createdby + lk_mobileofflineprofileextension_createdby createdby - exportsolutionupload + mobileofflineprofileextension createdby 0 - 08fe9fe6-aaba-f011-bbd3-7c1e52365f30 + 36314862-d1ba-f011-bbd3-7c1e52365f30 false @@ -368277,9 +417700,9 @@ false true - lk_exportsolutionupload_createdonbehalfby + lk_mobileofflineprofileextension_createdonbehalfby None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -368313,15 +417736,15 @@ false systemuserid systemuser - lk_exportsolutionupload_createdonbehalfby + lk_mobileofflineprofileextension_createdonbehalfby createdonbehalfby - exportsolutionupload + mobileofflineprofileextension createdonbehalfby 0 - 0efe9fe6-aaba-f011-bbd3-7c1e52365f30 + 3c314862-d1ba-f011-bbd3-7c1e52365f30 false @@ -368331,9 +417754,9 @@ false true - lk_exportsolutionupload_modifiedby + lk_mobileofflineprofileextension_modifiedby None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -368367,15 +417790,15 @@ false systemuserid systemuser - lk_exportsolutionupload_modifiedby + lk_mobileofflineprofileextension_modifiedby modifiedby - exportsolutionupload + mobileofflineprofileextension modifiedby 0 - 14fe9fe6-aaba-f011-bbd3-7c1e52365f30 + 42314862-d1ba-f011-bbd3-7c1e52365f30 false @@ -368385,9 +417808,9 @@ false true - lk_exportsolutionupload_modifiedonbehalfby + lk_mobileofflineprofileextension_modifiedonbehalfby None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -368421,27 +417844,27 @@ false systemuserid systemuser - lk_exportsolutionupload_modifiedonbehalfby + lk_mobileofflineprofileextension_modifiedonbehalfby modifiedonbehalfby - exportsolutionupload + mobileofflineprofileextension modifiedonbehalfby 0 - 26fe9fe6-aaba-f011-bbd3-7c1e52365f30 + 9d2e7062-5abd-4a78-bd3a-b80e03537900 false - true + false iscustomizable true - false + true true - user_exportsolutionupload + lk_untrackedemail_createdonbehalfby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -368475,27 +417898,27 @@ false systemuserid systemuser - user_exportsolutionupload - owninguser - exportsolutionupload - owninguser + lk_untrackedemail_createdonbehalfby + createdonbehalfby + untrackedemail + createdonbehalfby_untrackedemail 0 - 2fd6270b-abba-f011-bbd3-7c1e52365f30 + 03227562-1bbc-4ad6-80ef-cc47bb64714a false - true + false iscustomizable - true + false - false - true - lk_featurecontrolsetting_createdby + true + false + lk_ownermapping_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -368529,27 +417952,27 @@ false systemuserid systemuser - lk_featurecontrolsetting_createdby - createdby - featurecontrolsetting - createdby + lk_ownermapping_createdonbehalfby + createdonbehalfby + ownermapping + createdonbehalfby 0 - 36d6270b-abba-f011-bbd3-7c1e52365f30 + 7c47d062-ca24-4a03-a2cb-e2e1c0a0a39c false - true + false iscustomizable - true + false - false - true - lk_featurecontrolsetting_createdonbehalfby + true + false + lk_duplicateruleconditionbase_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -368583,27 +418006,27 @@ false systemuserid systemuser - lk_featurecontrolsetting_createdonbehalfby - createdonbehalfby - featurecontrolsetting - createdonbehalfby + lk_duplicateruleconditionbase_modifiedby + modifiedby + duplicaterulecondition + modifiedby 0 - 3dd6270b-abba-f011-bbd3-7c1e52365f30 + d2fe5463-dbad-4ea7-9224-09dd155882a0 false - true + false iscustomizable - true + false - false + true true - lk_featurecontrolsetting_modifiedby + lk_kbarticletemplatebase_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -368637,27 +418060,27 @@ false systemuserid systemuser - lk_featurecontrolsetting_modifiedby - modifiedby - featurecontrolsetting - modifiedby + lk_kbarticletemplatebase_createdby + createdby + kbarticletemplate + createdby 0 - 44d6270b-abba-f011-bbd3-7c1e52365f30 + 23728063-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_featurecontrolsetting_modifiedonbehalfby + lk_msdyn_pmprocesstemplate_createdby None - 1.0.0.0 + 1.3.0.10 OneToManyRelationship DoNotDisplay @@ -368691,15 +418114,15 @@ false systemuserid systemuser - lk_featurecontrolsetting_modifiedonbehalfby - modifiedonbehalfby - featurecontrolsetting - modifiedonbehalfby + lk_msdyn_pmprocesstemplate_createdby + createdby + msdyn_pmprocesstemplate + createdby 0 - 58d6270b-abba-f011-bbd3-7c1e52365f30 + 29728063-eeba-f011-bbd3-7c1e52365f30 false @@ -368709,9 +418132,9 @@ false true - user_featurecontrolsetting + lk_msdyn_pmprocesstemplate_createdonbehalfby None - 1.0.0.0 + 1.3.0.10 OneToManyRelationship DoNotDisplay @@ -368745,27 +418168,27 @@ false systemuserid systemuser - user_featurecontrolsetting - owninguser - featurecontrolsetting - owninguser + lk_msdyn_pmprocesstemplate_createdonbehalfby + createdonbehalfby + msdyn_pmprocesstemplate + createdonbehalfby 0 - fab46aad-acba-f011-bbd3-7c1e52365f30 + 2f728063-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_stagedattributelookupvalue_createdby + lk_msdyn_pmprocesstemplate_modifiedby None - 1.0 + 1.3.0.10 OneToManyRelationship DoNotDisplay @@ -368799,27 +418222,27 @@ false systemuserid systemuser - lk_stagedattributelookupvalue_createdby - createdby - stagedattributelookupvalue - createdby + lk_msdyn_pmprocesstemplate_modifiedby + modifiedby + msdyn_pmprocesstemplate + modifiedby 0 - 10b56aad-acba-f011-bbd3-7c1e52365f30 + 35728063-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedattributelookupvalue_createdonbehalfby + lk_msdyn_pmprocesstemplate_modifiedonbehalfby None - 1.0 + 1.3.0.10 OneToManyRelationship DoNotDisplay @@ -368853,27 +418276,27 @@ false systemuserid systemuser - lk_stagedattributelookupvalue_createdonbehalfby - createdonbehalfby - stagedattributelookupvalue - createdonbehalfby + lk_msdyn_pmprocesstemplate_modifiedonbehalfby + modifiedonbehalfby + msdyn_pmprocesstemplate + modifiedonbehalfby 0 - 1ab56aad-acba-f011-bbd3-7c1e52365f30 + 47728063-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_stagedattributelookupvalue_modifiedby + user_msdyn_pmprocesstemplate None - 1.0 + 1.3.0.10 OneToManyRelationship DoNotDisplay @@ -368907,27 +418330,27 @@ false systemuserid systemuser - lk_stagedattributelookupvalue_modifiedby - modifiedby - stagedattributelookupvalue - modifiedby + user_msdyn_pmprocesstemplate + owninguser + msdyn_pmprocesstemplate + owninguser 0 - 23b56aad-acba-f011-bbd3-7c1e52365f30 + f6728063-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedattributelookupvalue_modifiedonbehalfby + lk_msdyn_pmprocessusersettings_createdby None - 1.0 + 1.2.1.0 OneToManyRelationship DoNotDisplay @@ -368961,27 +418384,27 @@ false systemuserid systemuser - lk_stagedattributelookupvalue_modifiedonbehalfby - modifiedonbehalfby - stagedattributelookupvalue - modifiedonbehalfby + lk_msdyn_pmprocessusersettings_createdby + createdby + msdyn_pmprocessusersettings + createdby 0 - a3a664b3-acba-f011-bbd3-7c1e52365f30 + fc728063-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedattributepicklistvalue_createdby + lk_msdyn_pmprocessusersettings_createdonbehalfby None - 1.0 + 1.2.1.0 OneToManyRelationship DoNotDisplay @@ -369015,27 +418438,27 @@ false systemuserid systemuser - lk_stagedattributepicklistvalue_createdby - createdby - stagedattributepicklistvalue - createdby + lk_msdyn_pmprocessusersettings_createdonbehalfby + createdonbehalfby + msdyn_pmprocessusersettings + createdonbehalfby 0 - bba664b3-acba-f011-bbd3-7c1e52365f30 + 02738063-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedattributepicklistvalue_createdonbehalfby + lk_msdyn_pmprocessusersettings_modifiedby None - 1.0 + 1.2.1.0 OneToManyRelationship DoNotDisplay @@ -369069,27 +418492,27 @@ false systemuserid systemuser - lk_stagedattributepicklistvalue_createdonbehalfby - createdonbehalfby - stagedattributepicklistvalue - createdonbehalfby + lk_msdyn_pmprocessusersettings_modifiedby + modifiedby + msdyn_pmprocessusersettings + modifiedby 0 - cea664b3-acba-f011-bbd3-7c1e52365f30 + 08738063-eeba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedattributepicklistvalue_modifiedby + lk_msdyn_pmprocessusersettings_modifiedonbehalfby None - 1.0 + 1.2.1.0 OneToManyRelationship DoNotDisplay @@ -369123,15 +418546,69 @@ false systemuserid systemuser - lk_stagedattributepicklistvalue_modifiedby - modifiedby - stagedattributepicklistvalue - modifiedby + lk_msdyn_pmprocessusersettings_modifiedonbehalfby + modifiedonbehalfby + msdyn_pmprocessusersettings + modifiedonbehalfby 0 - daa664b3-acba-f011-bbd3-7c1e52365f30 + 1a738063-eeba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + user_msdyn_pmprocessusersettings + None + 1.2.1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_msdyn_pmprocessusersettings + owninguser + msdyn_pmprocessusersettings + owninguser + + 0 + + + 213a8763-7bc4-49a2-8ad2-b2ee4c80756b false @@ -369141,9 +418618,9 @@ true true - lk_stagedattributepicklistvalue_modifiedonbehalfby + lk_sharepointsitebase_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -369177,27 +418654,27 @@ false systemuserid systemuser - lk_stagedattributepicklistvalue_modifiedonbehalfby + lk_sharepointsitebase_modifiedonbehalfby modifiedonbehalfby - stagedattributepicklistvalue + sharepointsite modifiedonbehalfby 0 - aba764b3-acba-f011-bbd3-7c1e52365f30 + d7e0a963-8be2-422b-a3a9-4c8b9f0e2c8b false false iscustomizable - true + false true true - lk_stagedentity_createdby + lk_processsessionbase_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -369231,27 +418708,27 @@ false systemuserid systemuser - lk_stagedentity_createdby - createdby - stagedentity - createdby + lk_processsessionbase_modifiedonbehalfby + modifiedonbehalfby + processsession + modifiedonbehalfby 0 - b1a764b3-acba-f011-bbd3-7c1e52365f30 + 6e3eac63-8b71-418d-8bfe-e41513e7570e false false iscustomizable - true + false true - true - lk_stagedentity_createdonbehalfby + false + lk_ownermapping_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -369285,27 +418762,27 @@ false systemuserid systemuser - lk_stagedentity_createdonbehalfby - createdonbehalfby - stagedentity - createdonbehalfby + lk_ownermapping_modifiedby + modifiedby + ownermapping + modifiedby 0 - b7a764b3-acba-f011-bbd3-7c1e52365f30 + 22a9b063-9018-4e30-8df4-896d54150900 false false iscustomizable - true + false true true - lk_stagedentity_modifiedby + createdonbehalfby_customer_relationship None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -369339,30 +418816,30 @@ false systemuserid systemuser - lk_stagedentity_modifiedby - modifiedby - stagedentity - modifiedby + createdonbehalfby_customer_relationship + createdonbehalfby + customerrelationship + createdonbehalfby 0 - c3a764b3-acba-f011-bbd3-7c1e52365f30 + 92a2d663-f3e0-4a8e-aa2c-ba02e5b6d7f3 false false iscustomizable - true + false true true - lk_stagedentity_modifiedonbehalfby + lk_customcontrolresource_createdonbehalfby None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -369393,27 +418870,27 @@ false systemuserid systemuser - lk_stagedentity_modifiedonbehalfby - modifiedonbehalfby - stagedentity - modifiedonbehalfby + lk_customcontrolresource_createdonbehalfby + createdonbehalfby + customcontrolresource + createdonbehalfby 0 - 22a964b3-acba-f011-bbd3-7c1e52365f30 + b80c1264-7e9f-11dd-94cd-00188b01dce6 false false iscustomizable - true + false true true - lk_stagedentityattribute_createdby + lk_publisher_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -369447,15 +418924,15 @@ false systemuserid systemuser - lk_stagedentityattribute_createdby - createdby - stagedentityattribute - createdby + lk_publisher_modifiedby + modifiedby + publisher + modifiedby 0 - 2ea964b3-acba-f011-bbd3-7c1e52365f30 + 65e1ff64-37bf-4fe5-923c-65766ecab713 false @@ -369465,9 +418942,9 @@ true true - lk_stagedentityattribute_createdonbehalfby + lk_reportcategory_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -369501,27 +418978,27 @@ false systemuserid systemuser - lk_stagedentityattribute_createdonbehalfby + lk_reportcategory_createdonbehalfby createdonbehalfby - stagedentityattribute + reportcategory createdonbehalfby 0 - 48a964b3-acba-f011-bbd3-7c1e52365f30 + c3612c65-30cf-4573-aea3-5338817be333 false false iscustomizable - true + false true true - lk_stagedentityattribute_modifiedby + createdby_customer_relationship None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -369555,27 +419032,27 @@ false systemuserid systemuser - lk_stagedentityattribute_modifiedby - modifiedby - stagedentityattribute - modifiedby + createdby_customer_relationship + createdby + customerrelationship + createdby 0 - 5ba964b3-acba-f011-bbd3-7c1e52365f30 + cae13465-e880-44e1-b7c9-d6a887c9b740 false false iscustomizable - true + false true true - lk_stagedentityattribute_modifiedonbehalfby + lk_calendarrule_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -369609,25 +419086,25 @@ false systemuserid systemuser - lk_stagedentityattribute_modifiedonbehalfby - modifiedonbehalfby - stagedentityattribute - modifiedonbehalfby + lk_calendarrule_createdonbehalfby + createdonbehalfby + calendarrule + createdonbehalfby 0 - 7eaa64b3-acba-f011-bbd3-7c1e52365f30 + 21dba065-3346-f111-bec6-7c1e52346323 false - false + true iscustomizable true - true + false true - lk_stagedentityrelationship_createdby + lk_msdyn_knowledgeharvestplan_createdby None 1.0 OneToManyRelationship @@ -369663,25 +419140,25 @@ false systemuserid systemuser - lk_stagedentityrelationship_createdby + lk_msdyn_knowledgeharvestplan_createdby createdby - stagedentityrelationship + msdyn_knowledgeharvestplan createdby 0 - 86aa64b3-acba-f011-bbd3-7c1e52365f30 + 27dba065-3346-f111-bec6-7c1e52346323 false - false + true iscustomizable true - true + false true - lk_stagedentityrelationship_createdonbehalfby + lk_msdyn_knowledgeharvestplan_createdonbehalfby None 1.0 OneToManyRelationship @@ -369717,25 +419194,25 @@ false systemuserid systemuser - lk_stagedentityrelationship_createdonbehalfby + lk_msdyn_knowledgeharvestplan_createdonbehalfby createdonbehalfby - stagedentityrelationship + msdyn_knowledgeharvestplan createdonbehalfby 0 - 8caa64b3-acba-f011-bbd3-7c1e52365f30 + 2ddba065-3346-f111-bec6-7c1e52346323 false - false + true iscustomizable true - true + false true - lk_stagedentityrelationship_modifiedby + lk_msdyn_knowledgeharvestplan_modifiedby None 1.0 OneToManyRelationship @@ -369771,25 +419248,25 @@ false systemuserid systemuser - lk_stagedentityrelationship_modifiedby + lk_msdyn_knowledgeharvestplan_modifiedby modifiedby - stagedentityrelationship + msdyn_knowledgeharvestplan modifiedby 0 - 92aa64b3-acba-f011-bbd3-7c1e52365f30 + 33dba065-3346-f111-bec6-7c1e52346323 false - false + true iscustomizable true - true + false true - lk_stagedentityrelationship_modifiedonbehalfby + lk_msdyn_knowledgeharvestplan_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -369825,25 +419302,25 @@ false systemuserid systemuser - lk_stagedentityrelationship_modifiedonbehalfby + lk_msdyn_knowledgeharvestplan_modifiedonbehalfby modifiedonbehalfby - stagedentityrelationship + msdyn_knowledgeharvestplan modifiedonbehalfby 0 - 8cab64b3-acba-f011-bbd3-7c1e52365f30 + 45dba065-3346-f111-bec6-7c1e52346323 false - false + true iscustomizable true - true + false true - lk_stagedentityrelationshiprelationships_createdby + user_msdyn_knowledgeharvestplan None 1.0 OneToManyRelationship @@ -369879,15 +419356,15 @@ false systemuserid systemuser - lk_stagedentityrelationshiprelationships_createdby - createdby - stagedentityrelationshiprelationships - createdby + user_msdyn_knowledgeharvestplan + owninguser + msdyn_knowledgeharvestplan + owninguser 0 - 96ab64b3-acba-f011-bbd3-7c1e52365f30 + a581d665-7aa4-4e27-b793-f7baba01bc45 false @@ -369897,9 +419374,9 @@ true true - lk_stagedentityrelationshiprelationships_createdonbehalfby + lk_ribboncommand_modifiedonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -369933,15 +419410,15 @@ false systemuserid systemuser - lk_stagedentityrelationshiprelationships_createdonbehalfby - createdonbehalfby - stagedentityrelationshiprelationships - createdonbehalfby + lk_ribboncommand_modifiedonbehalfby + modifiedonbehalfby + ribboncommand + modifiedonbehalfby 0 - 9cab64b3-acba-f011-bbd3-7c1e52365f30 + 1e206666-179c-4c8e-a6c3-fa1d9d532790 false @@ -369951,12 +419428,12 @@ true true - lk_stagedentityrelationshiprelationships_modifiedby + lk_expiredprocess_modifiedby None - 1.0 + 8.2.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -369987,30 +419464,30 @@ false systemuserid systemuser - lk_stagedentityrelationshiprelationships_modifiedby + lk_expiredprocess_modifiedby modifiedby - stagedentityrelationshiprelationships - modifiedby + expiredprocess + modifiedbyname 0 - a2ab64b3-acba-f011-bbd3-7c1e52365f30 + e1e57566-ca58-40c7-bb53-8759890cbb02 false false iscustomizable - true + false true - true - lk_stagedentityrelationshiprelationships_modifiedonbehalfby + false + lk_azureserviceconnection_createdby None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -370041,27 +419518,27 @@ false systemuserid systemuser - lk_stagedentityrelationshiprelationships_modifiedonbehalfby - modifiedonbehalfby - stagedentityrelationshiprelationships - modifiedonbehalfby + lk_azureserviceconnection_createdby + createdby + azureserviceconnection + createdby 0 - caac64b3-acba-f011-bbd3-7c1e52365f30 + d9e0a766-878e-4dda-a31b-8917a7b7ec75 false false iscustomizable - true + false true true - lk_stagedentityrelationshiprole_createdby + lk_activitypointer_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -370095,30 +419572,30 @@ false systemuserid systemuser - lk_stagedentityrelationshiprole_createdby - createdby - stagedentityrelationshiprole - createdby + lk_activitypointer_createdonbehalfby + createdonbehalfby + activitypointer + createdonbehalfby 0 - d8ac64b3-acba-f011-bbd3-7c1e52365f30 + 4438bd66-785f-11e0-a0f5-1cc1de634cfe false false iscustomizable - true + false true true - lk_stagedentityrelationshiprole_createdonbehalfby + lk_postfollow_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -370149,27 +419626,27 @@ false systemuserid systemuser - lk_stagedentityrelationshiprole_createdonbehalfby + lk_postfollow_createdonbehalfby createdonbehalfby - stagedentityrelationshiprole + postfollow createdonbehalfby 0 - e4ac64b3-acba-f011-bbd3-7c1e52365f30 + fc98f066-4335-4b6a-962b-b628592d2fa0 false false iscustomizable - true + false true - true - lk_stagedentityrelationshiprole_modifiedby + false + modifiedby_pluginassembly None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -370203,15 +419680,15 @@ false systemuserid systemuser - lk_stagedentityrelationshiprole_modifiedby + modifiedby_pluginassembly modifiedby - stagedentityrelationshiprole + pluginassembly modifiedby 0 - edac64b3-acba-f011-bbd3-7c1e52365f30 + 28914d67-9b3f-48f4-8081-937968031d8e false @@ -370221,9 +419698,9 @@ true true - lk_stagedentityrelationshiprole_modifiedonbehalfby + lk_queuebase_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -370257,27 +419734,27 @@ false systemuserid systemuser - lk_stagedentityrelationshiprole_modifiedonbehalfby - modifiedonbehalfby - stagedentityrelationshiprole - modifiedonbehalfby + lk_queuebase_createdby + createdby + queue + createdby 0 - 6aad64b3-acba-f011-bbd3-7c1e52365f30 + 996a8767-d115-4394-9507-2a9662ae0f16 false false iscustomizable - true + false true - true - lk_stagedmetadataasyncoperation_createdby + false + createdby_serviceendpoint None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -370311,27 +419788,27 @@ false systemuserid systemuser - lk_stagedmetadataasyncoperation_createdby + createdby_serviceendpoint createdby - stagedmetadataasyncoperation + serviceendpoint createdby 0 - 70ad64b3-acba-f011-bbd3-7c1e52365f30 + 20499c67-adba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedmetadataasyncoperation_createdonbehalfby + lk_keyvaultreference_createdby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -370365,27 +419842,27 @@ false systemuserid systemuser - lk_stagedmetadataasyncoperation_createdonbehalfby - createdonbehalfby - stagedmetadataasyncoperation - createdonbehalfby + lk_keyvaultreference_createdby + createdby + keyvaultreference + createdby 0 - 76ad64b3-acba-f011-bbd3-7c1e52365f30 + 26499c67-adba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedmetadataasyncoperation_modifiedby + lk_keyvaultreference_createdonbehalfby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -370419,27 +419896,81 @@ false systemuserid systemuser - lk_stagedmetadataasyncoperation_modifiedby + lk_keyvaultreference_createdonbehalfby + createdonbehalfby + keyvaultreference + createdonbehalfby + + 0 + + + 2f499c67-adba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_keyvaultreference_modifiedby + None + 9.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_keyvaultreference_modifiedby modifiedby - stagedmetadataasyncoperation + keyvaultreference modifiedby 0 - 7cad64b3-acba-f011-bbd3-7c1e52365f30 + 35499c67-adba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedmetadataasyncoperation_modifiedonbehalfby + lk_keyvaultreference_modifiedonbehalfby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -370473,27 +420004,27 @@ false systemuserid systemuser - lk_stagedmetadataasyncoperation_modifiedonbehalfby + lk_keyvaultreference_modifiedonbehalfby modifiedonbehalfby - stagedmetadataasyncoperation + keyvaultreference modifiedonbehalfby 0 - 7bae64b3-acba-f011-bbd3-7c1e52365f30 + 4a499c67-adba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedoptionset_createdby + user_keyvaultreference None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -370527,27 +420058,27 @@ false systemuserid systemuser - lk_stagedoptionset_createdby - createdby - stagedoptionset - createdby + user_keyvaultreference + owninguser + keyvaultreference + owninguser 0 - 81ae64b3-acba-f011-bbd3-7c1e52365f30 + fa4a9c67-adba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedoptionset_createdonbehalfby + lk_managedidentity_createdby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -370581,27 +420112,27 @@ false systemuserid systemuser - lk_stagedoptionset_createdonbehalfby - createdonbehalfby - stagedoptionset - createdonbehalfby + lk_managedidentity_createdby + createdby + managedidentity + createdby 0 - 87ae64b3-acba-f011-bbd3-7c1e52365f30 + 004b9c67-adba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedoptionset_modifiedby + lk_managedidentity_createdonbehalfby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -370635,27 +420166,27 @@ false systemuserid systemuser - lk_stagedoptionset_modifiedby - modifiedby - stagedoptionset - modifiedby + lk_managedidentity_createdonbehalfby + createdonbehalfby + managedidentity + createdonbehalfby 0 - 8dae64b3-acba-f011-bbd3-7c1e52365f30 + 074b9c67-adba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedoptionset_modifiedonbehalfby + lk_managedidentity_modifiedby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -370689,27 +420220,27 @@ false systemuserid systemuser - lk_stagedoptionset_modifiedonbehalfby - modifiedonbehalfby - stagedoptionset - modifiedonbehalfby + lk_managedidentity_modifiedby + modifiedby + managedidentity + modifiedby 0 - 783863b9-acba-f011-bbd3-7c1e52365f30 + 0d4b9c67-adba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedrelationship_createdby + lk_managedidentity_modifiedonbehalfby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -370743,27 +420274,27 @@ false systemuserid systemuser - lk_stagedrelationship_createdby - createdby - stagedrelationship - createdby + lk_managedidentity_modifiedonbehalfby + modifiedonbehalfby + managedidentity + modifiedonbehalfby 0 - 7e3863b9-acba-f011-bbd3-7c1e52365f30 + 1f4b9c67-adba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedrelationship_createdonbehalfby + user_managedidentity None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -370797,27 +420328,27 @@ false systemuserid systemuser - lk_stagedrelationship_createdonbehalfby - createdonbehalfby - stagedrelationship - createdonbehalfby + user_managedidentity + owninguser + managedidentity + owninguser 0 - 843863b9-acba-f011-bbd3-7c1e52365f30 + 7a2ea667-43ba-4048-8c8a-6725706b7d45 false false iscustomizable - true + false true - true - lk_stagedrelationship_modifiedby + false + createdby_sdkmessageresponse None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -370851,27 +420382,27 @@ false systemuserid systemuser - lk_stagedrelationship_modifiedby - modifiedby - stagedrelationship - modifiedby + createdby_sdkmessageresponse + createdby + sdkmessageresponse + createdby 0 - 8a3863b9-acba-f011-bbd3-7c1e52365f30 + 305db567-6605-4d12-9585-4b2f8a842b79 false false iscustomizable - true + false true true - lk_stagedrelationship_modifiedonbehalfby + lk_routingruleitem_createdonbehalfby None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -370905,27 +420436,27 @@ false systemuserid systemuser - lk_stagedrelationship_modifiedonbehalfby - modifiedonbehalfby - stagedrelationship - modifiedonbehalfby + lk_routingruleitem_createdonbehalfby + createdonbehalfby + routingruleitem + createdonbehalfby 0 - 313963b9-acba-f011-bbd3-7c1e52365f30 + 20d9c367-c3bb-412c-9498-5693e181ad7f false false iscustomizable - true + false true - true - lk_stagedrelationshipextracondition_createdby + false + lk_userquery_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -370959,27 +420490,27 @@ false systemuserid systemuser - lk_stagedrelationshipextracondition_createdby - createdby - stagedrelationshipextracondition - createdby + lk_userquery_createdonbehalfby + createdonbehalfby + userquery + createdonbehalfby 0 - 373963b9-acba-f011-bbd3-7c1e52365f30 + c9573568-3451-4407-a5f2-fa757d4904b0 false false iscustomizable - true + false true - true - lk_stagedrelationshipextracondition_createdonbehalfby + false + lk_documentindex_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -371013,25 +420544,25 @@ false systemuserid systemuser - lk_stagedrelationshipextracondition_createdonbehalfby - createdonbehalfby - stagedrelationshipextracondition - createdonbehalfby + lk_documentindex_modifiedby + modifiedby + documentindex + modifiedby 0 - 3d3963b9-acba-f011-bbd3-7c1e52365f30 + 5bd35668-edba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedrelationshipextracondition_modifiedby + lk_msdyn_timelinepin_createdby None 1.0 OneToManyRelationship @@ -371067,25 +420598,25 @@ false systemuserid systemuser - lk_stagedrelationshipextracondition_modifiedby - modifiedby - stagedrelationshipextracondition - modifiedby + lk_msdyn_timelinepin_createdby + createdby + msdyn_timelinepin + createdby 0 - 433963b9-acba-f011-bbd3-7c1e52365f30 + 61d35668-edba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedrelationshipextracondition_modifiedonbehalfby + lk_msdyn_timelinepin_createdonbehalfby None 1.0 OneToManyRelationship @@ -371121,25 +420652,25 @@ false systemuserid systemuser - lk_stagedrelationshipextracondition_modifiedonbehalfby - modifiedonbehalfby - stagedrelationshipextracondition - modifiedonbehalfby + lk_msdyn_timelinepin_createdonbehalfby + createdonbehalfby + msdyn_timelinepin + createdonbehalfby 0 - d83963b9-acba-f011-bbd3-7c1e52365f30 + 67d35668-edba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedviewattribute_createdby + lk_msdyn_timelinepin_modifiedby None 1.0 OneToManyRelationship @@ -371175,25 +420706,25 @@ false systemuserid systemuser - lk_stagedviewattribute_createdby - createdby - stagedviewattribute - createdby + lk_msdyn_timelinepin_modifiedby + modifiedby + msdyn_timelinepin + modifiedby 0 - de3963b9-acba-f011-bbd3-7c1e52365f30 + 6dd35668-edba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_stagedviewattribute_createdonbehalfby + lk_msdyn_timelinepin_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -371229,27 +420760,27 @@ false systemuserid systemuser - lk_stagedviewattribute_createdonbehalfby - createdonbehalfby - stagedviewattribute - createdonbehalfby + lk_msdyn_timelinepin_modifiedonbehalfby + modifiedonbehalfby + msdyn_timelinepin + modifiedonbehalfby 0 - e43963b9-acba-f011-bbd3-7c1e52365f30 + ece95d68-ddf3-4340-a288-869f67d987c9 false false iscustomizable - true + false true - true - lk_stagedviewattribute_modifiedby + false + lk_webwizard_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -371283,27 +420814,27 @@ false systemuserid systemuser - lk_stagedviewattribute_modifiedby - modifiedby - stagedviewattribute - modifiedby + lk_webwizard_modifiedonbehalfby + modifiedonbehalfby + webwizard + modifiedonbehalfby 0 - ea3963b9-acba-f011-bbd3-7c1e52365f30 + 042a1b69-86f9-f011-8406-7ced8d48c998 false - false + true iscustomizable true - true + false true - lk_stagedviewattribute_modifiedonbehalfby + user_officedocument None - 1.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -371337,15 +420868,15 @@ false systemuserid systemuser - lk_stagedviewattribute_modifiedonbehalfby - modifiedonbehalfby - stagedviewattribute - modifiedonbehalfby + user_officedocument + owninguser + officedocument + owninguser 0 - 20499c67-adba-f011-bbd3-7c1e52365f30 + 3bd4b269-eeba-f011-bbd3-7c1e52365f30 false @@ -371355,9 +420886,9 @@ false true - lk_keyvaultreference_createdby + lk_msdyn_pmprocessversion_createdby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -371391,15 +420922,15 @@ false systemuserid systemuser - lk_keyvaultreference_createdby + lk_msdyn_pmprocessversion_createdby createdby - keyvaultreference + msdyn_pmprocessversion createdby 0 - 26499c67-adba-f011-bbd3-7c1e52365f30 + 41d4b269-eeba-f011-bbd3-7c1e52365f30 false @@ -371409,9 +420940,9 @@ false true - lk_keyvaultreference_createdonbehalfby + lk_msdyn_pmprocessversion_createdonbehalfby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -371445,15 +420976,15 @@ false systemuserid systemuser - lk_keyvaultreference_createdonbehalfby + lk_msdyn_pmprocessversion_createdonbehalfby createdonbehalfby - keyvaultreference + msdyn_pmprocessversion createdonbehalfby 0 - 2f499c67-adba-f011-bbd3-7c1e52365f30 + 47d4b269-eeba-f011-bbd3-7c1e52365f30 false @@ -371463,9 +420994,9 @@ false true - lk_keyvaultreference_modifiedby + lk_msdyn_pmprocessversion_modifiedby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -371499,15 +421030,15 @@ false systemuserid systemuser - lk_keyvaultreference_modifiedby + lk_msdyn_pmprocessversion_modifiedby modifiedby - keyvaultreference + msdyn_pmprocessversion modifiedby 0 - 35499c67-adba-f011-bbd3-7c1e52365f30 + 4dd4b269-eeba-f011-bbd3-7c1e52365f30 false @@ -371517,9 +421048,9 @@ false true - lk_keyvaultreference_modifiedonbehalfby + lk_msdyn_pmprocessversion_modifiedonbehalfby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -371553,27 +421084,27 @@ false systemuserid systemuser - lk_keyvaultreference_modifiedonbehalfby + lk_msdyn_pmprocessversion_modifiedonbehalfby modifiedonbehalfby - keyvaultreference + msdyn_pmprocessversion modifiedonbehalfby 0 - 4a499c67-adba-f011-bbd3-7c1e52365f30 + 5fd4b269-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_keyvaultreference + user_msdyn_pmprocessversion None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -371607,27 +421138,27 @@ false systemuserid systemuser - user_keyvaultreference + user_msdyn_pmprocessversion owninguser - keyvaultreference + msdyn_pmprocessversion owninguser 0 - fa4a9c67-adba-f011-bbd3-7c1e52365f30 + 21d5b269-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_managedidentity_createdby + lk_msdyn_pmrecording_createdby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -371661,15 +421192,15 @@ false systemuserid systemuser - lk_managedidentity_createdby + lk_msdyn_pmrecording_createdby createdby - managedidentity + msdyn_pmrecording createdby 0 - 004b9c67-adba-f011-bbd3-7c1e52365f30 + 27d5b269-eeba-f011-bbd3-7c1e52365f30 false @@ -371679,9 +421210,9 @@ false true - lk_managedidentity_createdonbehalfby + lk_msdyn_pmrecording_createdonbehalfby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -371715,27 +421246,27 @@ false systemuserid systemuser - lk_managedidentity_createdonbehalfby + lk_msdyn_pmrecording_createdonbehalfby createdonbehalfby - managedidentity + msdyn_pmrecording createdonbehalfby 0 - 074b9c67-adba-f011-bbd3-7c1e52365f30 + 2dd5b269-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_managedidentity_modifiedby + lk_msdyn_pmrecording_modifiedby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -371769,15 +421300,15 @@ false systemuserid systemuser - lk_managedidentity_modifiedby + lk_msdyn_pmrecording_modifiedby modifiedby - managedidentity + msdyn_pmrecording modifiedby 0 - 0d4b9c67-adba-f011-bbd3-7c1e52365f30 + 33d5b269-eeba-f011-bbd3-7c1e52365f30 false @@ -371787,9 +421318,9 @@ false true - lk_managedidentity_modifiedonbehalfby + lk_msdyn_pmrecording_modifiedonbehalfby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -371823,27 +421354,27 @@ false systemuserid systemuser - lk_managedidentity_modifiedonbehalfby + lk_msdyn_pmrecording_modifiedonbehalfby modifiedonbehalfby - managedidentity + msdyn_pmrecording modifiedonbehalfby 0 - 1f4b9c67-adba-f011-bbd3-7c1e52365f30 + 45d5b269-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_managedidentity + user_msdyn_pmrecording None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -371877,27 +421408,81 @@ false systemuserid systemuser - user_managedidentity + user_msdyn_pmrecording owninguser - managedidentity + msdyn_pmrecording owninguser 0 - a908bc7f-aeba-f011-bbd3-7c1e52365f30 + 5a51ef69-c3f6-4af2-baa7-e6f3f41ef6b2 + + false + + false + iscustomizable + true + + true + true + lk_slaitembase_createdby + None + 6.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_slaitembase_createdby + createdby + slaitem + createdby + + 0 + + + bd2b0e6a-cdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_catalog_createdby + user_plannerbusinessscenario None - 1.0.0.0 + 9.1.62 OneToManyRelationship DoNotDisplay @@ -371931,15 +421516,15 @@ false systemuserid systemuser - lk_catalog_createdby - createdby - catalog - createdby + user_plannerbusinessscenario + owninguser + plannerbusinessscenario + owninguser 0 - af08bc7f-aeba-f011-bbd3-7c1e52365f30 + 3d2c0e6a-cdba-f011-bbd3-7c1e52365f30 false @@ -371949,9 +421534,9 @@ false true - lk_catalog_createdonbehalfby + user_plannersyncaction None - 1.0.0.0 + 9.1.62 OneToManyRelationship DoNotDisplay @@ -371985,27 +421570,27 @@ false systemuserid systemuser - lk_catalog_createdonbehalfby - createdonbehalfby - catalog - createdonbehalfby + user_plannersyncaction + owninguser + plannersyncaction + owninguser 0 - b508bc7f-aeba-f011-bbd3-7c1e52365f30 + 8290156a-f7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_catalog_modifiedby + lk_ctx_product_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -372039,15 +421624,15 @@ false systemuserid systemuser - lk_catalog_modifiedby - modifiedby - catalog - modifiedby + lk_ctx_product_createdby + createdby + ctx_product + createdby 0 - bc08bc7f-aeba-f011-bbd3-7c1e52365f30 + 8890156a-f7ba-f011-bbd3-7c1e52365f30 false @@ -372057,9 +421642,9 @@ false true - lk_catalog_modifiedonbehalfby + lk_ctx_product_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -372093,27 +421678,27 @@ false systemuserid systemuser - lk_catalog_modifiedonbehalfby - modifiedonbehalfby - catalog - modifiedonbehalfby + lk_ctx_product_createdonbehalfby + createdonbehalfby + ctx_product + createdonbehalfby 0 - f1eedf85-aeba-f011-bbd3-7c1e52365f30 + 8e90156a-f7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_catalogassignment_createdby + lk_ctx_product_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -372147,15 +421732,15 @@ false systemuserid systemuser - lk_catalogassignment_createdby - createdby - catalogassignment - createdby + lk_ctx_product_modifiedby + modifiedby + ctx_product + modifiedby 0 - f7eedf85-aeba-f011-bbd3-7c1e52365f30 + 9490156a-f7ba-f011-bbd3-7c1e52365f30 false @@ -372165,9 +421750,9 @@ false true - lk_catalogassignment_createdonbehalfby + lk_ctx_product_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -372201,27 +421786,27 @@ false systemuserid systemuser - lk_catalogassignment_createdonbehalfby - createdonbehalfby - catalogassignment - createdonbehalfby + lk_ctx_product_modifiedonbehalfby + modifiedonbehalfby + ctx_product + modifiedonbehalfby 0 - fdeedf85-aeba-f011-bbd3-7c1e52365f30 + a690156a-f7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_catalogassignment_modifiedby + user_ctx_product None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -372255,27 +421840,27 @@ false systemuserid systemuser - lk_catalogassignment_modifiedby - modifiedby - catalogassignment - modifiedby + user_ctx_product + owninguser + ctx_product + owninguser 0 - 03efdf85-aeba-f011-bbd3-7c1e52365f30 + 21fcb96a-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_catalogassignment_modifiedonbehalfby + lk_powerpagecomponent_createdby None - 1.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -372309,27 +421894,27 @@ false systemuserid systemuser - lk_catalogassignment_modifiedonbehalfby - modifiedonbehalfby - catalogassignment - modifiedonbehalfby + lk_powerpagecomponent_createdby + createdby + powerpagecomponent + createdby 0 - a3efdf85-aeba-f011-bbd3-7c1e52365f30 + 28fcb96a-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_internalcatalogassignment_createdby + lk_powerpagecomponent_createdonbehalfby None - 1.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -372363,27 +421948,27 @@ false systemuserid systemuser - lk_internalcatalogassignment_createdby - createdby - internalcatalogassignment - createdby + lk_powerpagecomponent_createdonbehalfby + createdonbehalfby + powerpagecomponent + createdonbehalfby 0 - a9efdf85-aeba-f011-bbd3-7c1e52365f30 + 2efcb96a-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_internalcatalogassignment_createdonbehalfby + lk_powerpagecomponent_modifiedby None - 1.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -372417,27 +422002,27 @@ false systemuserid systemuser - lk_internalcatalogassignment_createdonbehalfby - createdonbehalfby - internalcatalogassignment - createdonbehalfby + lk_powerpagecomponent_modifiedby + modifiedby + powerpagecomponent + modifiedby 0 - afefdf85-aeba-f011-bbd3-7c1e52365f30 + 34fcb96a-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_internalcatalogassignment_modifiedby + lk_powerpagecomponent_modifiedonbehalfby None - 1.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -372471,27 +422056,27 @@ false systemuserid systemuser - lk_internalcatalogassignment_modifiedby - modifiedby - internalcatalogassignment - modifiedby + lk_powerpagecomponent_modifiedonbehalfby + modifiedonbehalfby + powerpagecomponent + modifiedonbehalfby 0 - b5efdf85-aeba-f011-bbd3-7c1e52365f30 + 46fcb96a-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_internalcatalogassignment_modifiedonbehalfby + user_powerpagecomponent None - 1.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -372525,15 +422110,15 @@ false systemuserid systemuser - lk_internalcatalogassignment_modifiedonbehalfby - modifiedonbehalfby - internalcatalogassignment - modifiedonbehalfby + user_powerpagecomponent + owninguser + powerpagecomponent + owninguser 0 - bb3327b0-aeba-f011-bbd3-7c1e52365f30 + 75fdb96a-f2ba-f011-bbd3-7c1e52365f30 false @@ -372543,9 +422128,9 @@ false true - lk_customapi_createdby + lk_powerpagesite_createdby None - 1.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -372579,15 +422164,15 @@ false systemuserid systemuser - lk_customapi_createdby + lk_powerpagesite_createdby createdby - customapi + powerpagesite createdby 0 - c13327b0-aeba-f011-bbd3-7c1e52365f30 + 7bfdb96a-f2ba-f011-bbd3-7c1e52365f30 false @@ -372597,9 +422182,9 @@ false true - lk_customapi_createdonbehalfby + lk_powerpagesite_createdonbehalfby None - 1.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -372633,15 +422218,15 @@ false systemuserid systemuser - lk_customapi_createdonbehalfby + lk_powerpagesite_createdonbehalfby createdonbehalfby - customapi + powerpagesite createdonbehalfby 0 - c73327b0-aeba-f011-bbd3-7c1e52365f30 + 82fdb96a-f2ba-f011-bbd3-7c1e52365f30 false @@ -372651,9 +422236,63 @@ false true - lk_customapi_modifiedby + lk_powerpagesite_modifiedby None - 1.0.0.0 + 1.0.2207.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_powerpagesite_modifiedby + modifiedby + powerpagesite + modifiedby + + 0 + + + 88fdb96a-f2ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_powerpagesite_modifiedonbehalfby + None + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -372687,27 +422326,27 @@ false systemuserid systemuser - lk_customapi_modifiedby - modifiedby - customapi - modifiedby + lk_powerpagesite_modifiedonbehalfby + modifiedonbehalfby + powerpagesite + modifiedonbehalfby 0 - cd3327b0-aeba-f011-bbd3-7c1e52365f30 + 9bfdb96a-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_customapi_modifiedonbehalfby + user_powerpagesite None - 1.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -372741,30 +422380,30 @@ false systemuserid systemuser - lk_customapi_modifiedonbehalfby - modifiedonbehalfby - customapi - modifiedonbehalfby + user_powerpagesite + owninguser + powerpagesite + owninguser 0 - df3327b0-aeba-f011-bbd3-7c1e52365f30 + 562bd16a-d903-4c1e-abcd-db12d2085aa5 false - true + false iscustomizable false - false + true true - user_customapi + lk_customcontroldefaultconfig_modifiedonbehalfby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -372795,15 +422434,15 @@ false systemuserid systemuser - user_customapi - owninguser - customapi - owninguser + lk_customcontroldefaultconfig_modifiedonbehalfby + modifiedonbehalfby + customcontroldefaultconfig + modifiedonbehalfby 0 - c18951b6-aeba-f011-bbd3-7c1e52365f30 + 3e65f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -372813,7 +422452,7 @@ false true - lk_customapirequestparameter_createdby + lk_sharedobject_createdby None 1.0.0.0 OneToManyRelationship @@ -372849,15 +422488,15 @@ false systemuserid systemuser - lk_customapirequestparameter_createdby + lk_sharedobject_createdby createdby - customapirequestparameter + sharedobject createdby 0 - c88951b6-aeba-f011-bbd3-7c1e52365f30 + 4565f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -372867,7 +422506,7 @@ false true - lk_customapirequestparameter_createdonbehalfby + lk_sharedobject_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -372903,15 +422542,15 @@ false systemuserid systemuser - lk_customapirequestparameter_createdonbehalfby + lk_sharedobject_createdonbehalfby createdonbehalfby - customapirequestparameter + sharedobject createdonbehalfby 0 - ce8951b6-aeba-f011-bbd3-7c1e52365f30 + 4b65f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -372921,7 +422560,7 @@ false true - lk_customapirequestparameter_modifiedby + lk_sharedobject_modifiedby None 1.0.0.0 OneToManyRelationship @@ -372957,15 +422596,15 @@ false systemuserid systemuser - lk_customapirequestparameter_modifiedby + lk_sharedobject_modifiedby modifiedby - customapirequestparameter + sharedobject modifiedby 0 - d48951b6-aeba-f011-bbd3-7c1e52365f30 + 5265f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -372975,7 +422614,7 @@ false true - lk_customapirequestparameter_modifiedonbehalfby + lk_sharedobject_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -373011,15 +422650,15 @@ false systemuserid systemuser - lk_customapirequestparameter_modifiedonbehalfby + lk_sharedobject_modifiedonbehalfby modifiedonbehalfby - customapirequestparameter + sharedobject modifiedonbehalfby 0 - be8a51b6-aeba-f011-bbd3-7c1e52365f30 + 3266f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -373029,7 +422668,7 @@ false true - lk_customapiresponseproperty_createdby + lk_sharedworkspace_createdby None 1.0.0.0 OneToManyRelationship @@ -373065,15 +422704,15 @@ false systemuserid systemuser - lk_customapiresponseproperty_createdby + lk_sharedworkspace_createdby createdby - customapiresponseproperty + sharedworkspace createdby 0 - c48a51b6-aeba-f011-bbd3-7c1e52365f30 + 3966f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -373083,7 +422722,7 @@ false true - lk_customapiresponseproperty_createdonbehalfby + lk_sharedworkspace_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -373119,15 +422758,15 @@ false systemuserid systemuser - lk_customapiresponseproperty_createdonbehalfby + lk_sharedworkspace_createdonbehalfby createdonbehalfby - customapiresponseproperty + sharedworkspace createdonbehalfby 0 - ca8a51b6-aeba-f011-bbd3-7c1e52365f30 + 4066f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -373137,7 +422776,7 @@ false true - lk_customapiresponseproperty_modifiedby + lk_sharedworkspace_modifiedby None 1.0.0.0 OneToManyRelationship @@ -373173,15 +422812,15 @@ false systemuserid systemuser - lk_customapiresponseproperty_modifiedby + lk_sharedworkspace_modifiedby modifiedby - customapiresponseproperty + sharedworkspace modifiedby 0 - c12648bc-aeba-f011-bbd3-7c1e52365f30 + 4766f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -373191,7 +422830,7 @@ false true - lk_customapiresponseproperty_modifiedonbehalfby + lk_sharedworkspace_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -373227,27 +422866,27 @@ false systemuserid systemuser - lk_customapiresponseproperty_modifiedonbehalfby + lk_sharedworkspace_modifiedonbehalfby modifiedonbehalfby - customapiresponseproperty + sharedworkspace modifiedonbehalfby 0 - b4be8728-afba-f011-bbd3-7c1e52365f30 + c166f46a-b2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_pluginpackage_createdby + lk_sharedworkspaceaccesstoken2_createdby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -373281,15 +422920,15 @@ false systemuserid systemuser - lk_pluginpackage_createdby + lk_sharedworkspaceaccesstoken2_createdby createdby - pluginpackage + sharedworkspaceaccesstoken2 createdby 0 - babe8728-afba-f011-bbd3-7c1e52365f30 + c866f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -373299,9 +422938,9 @@ false true - lk_pluginpackage_createdonbehalfby + lk_sharedworkspaceaccesstoken2_createdonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -373335,27 +422974,27 @@ false systemuserid systemuser - lk_pluginpackage_createdonbehalfby + lk_sharedworkspaceaccesstoken2_createdonbehalfby createdonbehalfby - pluginpackage + sharedworkspaceaccesstoken2 createdonbehalfby 0 - c0be8728-afba-f011-bbd3-7c1e52365f30 + d066f46a-b2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_pluginpackage_modifiedby + lk_sharedworkspaceaccesstoken2_modifiedby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -373389,15 +423028,15 @@ false systemuserid systemuser - lk_pluginpackage_modifiedby + lk_sharedworkspaceaccesstoken2_modifiedby modifiedby - pluginpackage + sharedworkspaceaccesstoken2 modifiedby 0 - c6be8728-afba-f011-bbd3-7c1e52365f30 + d666f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -373407,9 +423046,9 @@ false true - lk_pluginpackage_modifiedonbehalfby + lk_sharedworkspaceaccesstoken2_modifiedonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -373443,15 +423082,15 @@ false systemuserid systemuser - lk_pluginpackage_modifiedonbehalfby + lk_sharedworkspaceaccesstoken2_modifiedonbehalfby modifiedonbehalfby - pluginpackage + sharedworkspaceaccesstoken2 modifiedonbehalfby 0 - 746d678e-b1ba-f011-bbd3-7c1e52365f30 + 2067f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -373461,9 +423100,9 @@ false true - lk_purviewlabelinfo_createdby + lk_sharedworkspacepool_createdby None - 1.0 + 1.0.37.0 OneToManyRelationship DoNotDisplay @@ -373497,15 +423136,15 @@ false systemuserid systemuser - lk_purviewlabelinfo_createdby + lk_sharedworkspacepool_createdby createdby - purviewlabelinfo + sharedworkspacepool createdby 0 - 7a6d678e-b1ba-f011-bbd3-7c1e52365f30 + 2767f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -373515,9 +423154,9 @@ false true - lk_purviewlabelinfo_createdonbehalfby + lk_sharedworkspacepool_createdonbehalfby None - 1.0 + 1.0.37.0 OneToManyRelationship DoNotDisplay @@ -373551,15 +423190,15 @@ false systemuserid systemuser - lk_purviewlabelinfo_createdonbehalfby + lk_sharedworkspacepool_createdonbehalfby createdonbehalfby - purviewlabelinfo + sharedworkspacepool createdonbehalfby 0 - 806d678e-b1ba-f011-bbd3-7c1e52365f30 + 3067f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -373569,9 +423208,9 @@ false true - lk_purviewlabelinfo_modifiedby + lk_sharedworkspacepool_modifiedby None - 1.0 + 1.0.37.0 OneToManyRelationship DoNotDisplay @@ -373605,15 +423244,15 @@ false systemuserid systemuser - lk_purviewlabelinfo_modifiedby + lk_sharedworkspacepool_modifiedby modifiedby - purviewlabelinfo + sharedworkspacepool modifiedby 0 - 866d678e-b1ba-f011-bbd3-7c1e52365f30 + 3867f46a-b2ba-f011-bbd3-7c1e52365f30 false @@ -373623,9 +423262,9 @@ false true - lk_purviewlabelinfo_modifiedonbehalfby + lk_sharedworkspacepool_modifiedonbehalfby None - 1.0 + 1.0.37.0 OneToManyRelationship DoNotDisplay @@ -373659,27 +423298,27 @@ false systemuserid systemuser - lk_purviewlabelinfo_modifiedonbehalfby + lk_sharedworkspacepool_modifiedonbehalfby modifiedonbehalfby - purviewlabelinfo + sharedworkspacepool modifiedonbehalfby 0 - 086f678e-b1ba-f011-bbd3-7c1e52365f30 + 3fe9a26b-1169-f111-ab0f-7ced8d2cc7ed false true iscustomizable - true + false false true - lk_purviewlabelsynccache_createdby + lk_sourcecontroloperationtracking_createdby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -373713,69 +423352,15 @@ false systemuserid systemuser - lk_purviewlabelsynccache_createdby + lk_sourcecontroloperationtracking_createdby createdby - purviewlabelsynccache + sourcecontroloperationtracking createdby 0 - 0e6f678e-b1ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_purviewlabelsynccache_createdonbehalfby - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_purviewlabelsynccache_createdonbehalfby - createdonbehalfby - purviewlabelsynccache - createdonbehalfby - - 0 - - - 146f678e-b1ba-f011-bbd3-7c1e52365f30 + 45e9a26b-1169-f111-ab0f-7ced8d2cc7ed false @@ -373785,9 +423370,9 @@ false true - lk_purviewlabelsynccache_modifiedby + lk_sourcecontroloperationtracking_createdonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -373821,15 +423406,69 @@ false systemuserid systemuser - lk_purviewlabelsynccache_modifiedby + lk_sourcecontroloperationtracking_createdonbehalfby + createdonbehalfby + sourcecontroloperationtracking + createdonbehalfby + + 0 + + + 4be9a26b-1169-f111-ab0f-7ced8d2cc7ed + + false + + true + iscustomizable + false + + false + true + lk_sourcecontroloperationtracking_modifiedby + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_sourcecontroloperationtracking_modifiedby modifiedby - purviewlabelsynccache + sourcecontroloperationtracking modifiedby 0 - 1a6f678e-b1ba-f011-bbd3-7c1e52365f30 + 51e9a26b-1169-f111-ab0f-7ced8d2cc7ed false @@ -373839,9 +423478,9 @@ false true - lk_purviewlabelsynccache_modifiedonbehalfby + lk_sourcecontroloperationtracking_modifiedonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -373875,30 +423514,30 @@ false systemuserid systemuser - lk_purviewlabelsynccache_modifiedonbehalfby + lk_sourcecontroloperationtracking_modifiedonbehalfby modifiedonbehalfby - purviewlabelsynccache + sourcecontroloperationtracking modifiedonbehalfby 0 - 99276094-b1ba-f011-bbd3-7c1e52365f30 + badee46b-1f1f-4562-9caa-a2264778de24 false - true + false iscustomizable true - false + true true - lk_sensitivitylabelattributemapping_createdby + lk_knowledgearticleviews_createdby None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -373929,27 +423568,81 @@ false systemuserid systemuser - lk_sensitivitylabelattributemapping_createdby + lk_knowledgearticleviews_createdby createdby - sensitivitylabelattributemapping + knowledgearticleviews createdby 0 - 9f276094-b1ba-f011-bbd3-7c1e52365f30 + 1c85f76b-6311-11e0-834f-1cc1de634cfe false - true + false iscustomizable - true + false - false + true true - lk_sensitivitylabelattributemapping_createdonbehalfby + lk_PostFollow_createdby None - 1.0 + 5.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_PostFollow_createdby + createdby + postfollow + createdby + + 0 + + + 09223f6c-eaaf-4db3-a275-d1cc3e7b98af + + false + + false + iscustomizable + false + + true + false + lk_monthlyfiscalcalendar_createdonbehalfby + None + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -373983,27 +423676,27 @@ false systemuserid systemuser - lk_sensitivitylabelattributemapping_createdonbehalfby + lk_monthlyfiscalcalendar_createdonbehalfby createdonbehalfby - sensitivitylabelattributemapping + monthlyfiscalcalendar createdonbehalfby 0 - a5276094-b1ba-f011-bbd3-7c1e52365f30 + 0cc6f36c-fed6-48d3-87d4-d2bcd9a6a167 false - true + false iscustomizable - true + false - false - true - lk_sensitivitylabelattributemapping_modifiedby + true + false + createdby_relationship_role_map None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -374037,27 +423730,27 @@ false systemuserid systemuser - lk_sensitivitylabelattributemapping_modifiedby - modifiedby - sensitivitylabelattributemapping - modifiedby + createdby_relationship_role_map + createdby + relationshiprolemap + createdby 0 - ab276094-b1ba-f011-bbd3-7c1e52365f30 + 975c286e-54a5-430d-b05d-e2ed66804dff false - true + false iscustomizable - true + false - false + true true - lk_sensitivitylabelattributemapping_modifiedonbehalfby + system_user_email_templates None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -374091,27 +423784,27 @@ false systemuserid systemuser - lk_sensitivitylabelattributemapping_modifiedonbehalfby - modifiedonbehalfby - sensitivitylabelattributemapping - modifiedonbehalfby + system_user_email_templates + owninguser + template + owninguser 0 - 55fcbede-b1ba-f011-bbd3-7c1e52365f30 + 260bb86e-0ac1-499c-b0c0-3747e3847e74 false - true + false iscustomizable - true + false - false - true - lk_eventexpanderbreadcrumb_createdby + true + false + lk_SharePointData_modifiedonbehalfby None - 9.1.1.151 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -374145,27 +423838,27 @@ false systemuserid systemuser - lk_eventexpanderbreadcrumb_createdby - createdby - eventexpanderbreadcrumb - createdby + lk_SharePointData_modifiedonbehalfby + modifiedonbehalfby + sharepointdata + modifiedonbehalfby 0 - 5bfcbede-b1ba-f011-bbd3-7c1e52365f30 + 902bca6f-b4a7-4bf6-924f-bd6990388f5b false - true + false iscustomizable true - false + true true - lk_eventexpanderbreadcrumb_createdonbehalfby + lk_reportcategorybase_modifiedby None - 9.1.1.151 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -374199,27 +423892,27 @@ false systemuserid systemuser - lk_eventexpanderbreadcrumb_createdonbehalfby - createdonbehalfby - eventexpanderbreadcrumb - createdonbehalfby + lk_reportcategorybase_modifiedby + modifiedby + reportcategory + modifiedby 0 - 61fcbede-b1ba-f011-bbd3-7c1e52365f30 + f3e00770-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_eventexpanderbreadcrumb_modifiedby + lk_msdyn_pmsimulation_createdby None - 9.1.1.151 + 1.3.3.0 OneToManyRelationship DoNotDisplay @@ -374253,15 +423946,15 @@ false systemuserid systemuser - lk_eventexpanderbreadcrumb_modifiedby - modifiedby - eventexpanderbreadcrumb - modifiedby + lk_msdyn_pmsimulation_createdby + createdby + msdyn_pmsimulation + createdby 0 - 67fcbede-b1ba-f011-bbd3-7c1e52365f30 + f9e00770-eeba-f011-bbd3-7c1e52365f30 false @@ -374271,9 +423964,9 @@ false true - lk_eventexpanderbreadcrumb_modifiedonbehalfby + lk_msdyn_pmsimulation_createdonbehalfby None - 9.1.1.151 + 1.3.3.0 OneToManyRelationship DoNotDisplay @@ -374307,15 +424000,15 @@ false systemuserid systemuser - lk_eventexpanderbreadcrumb_modifiedonbehalfby - modifiedonbehalfby - eventexpanderbreadcrumb - modifiedonbehalfby + lk_msdyn_pmsimulation_createdonbehalfby + createdonbehalfby + msdyn_pmsimulation + createdonbehalfby 0 - 3e65f46a-b2ba-f011-bbd3-7c1e52365f30 + ffe00770-eeba-f011-bbd3-7c1e52365f30 false @@ -374325,9 +424018,9 @@ false true - lk_sharedobject_createdby + lk_msdyn_pmsimulation_modifiedby None - 1.0.0.0 + 1.3.3.0 OneToManyRelationship DoNotDisplay @@ -374361,15 +424054,15 @@ false systemuserid systemuser - lk_sharedobject_createdby - createdby - sharedobject - createdby + lk_msdyn_pmsimulation_modifiedby + modifiedby + msdyn_pmsimulation + modifiedby 0 - 4565f46a-b2ba-f011-bbd3-7c1e52365f30 + 05e10770-eeba-f011-bbd3-7c1e52365f30 false @@ -374379,9 +424072,9 @@ false true - lk_sharedobject_createdonbehalfby + lk_msdyn_pmsimulation_modifiedonbehalfby None - 1.0.0.0 + 1.3.3.0 OneToManyRelationship DoNotDisplay @@ -374415,15 +424108,15 @@ false systemuserid systemuser - lk_sharedobject_createdonbehalfby - createdonbehalfby - sharedobject - createdonbehalfby + lk_msdyn_pmsimulation_modifiedonbehalfby + modifiedonbehalfby + msdyn_pmsimulation + modifiedonbehalfby 0 - 4b65f46a-b2ba-f011-bbd3-7c1e52365f30 + 17e10770-eeba-f011-bbd3-7c1e52365f30 false @@ -374433,9 +424126,9 @@ false true - lk_sharedobject_modifiedby + user_msdyn_pmsimulation None - 1.0.0.0 + 1.3.3.0 OneToManyRelationship DoNotDisplay @@ -374469,15 +424162,15 @@ false systemuserid systemuser - lk_sharedobject_modifiedby - modifiedby - sharedobject - modifiedby + user_msdyn_pmsimulation + owninguser + msdyn_pmsimulation + owninguser 0 - 5265f46a-b2ba-f011-bbd3-7c1e52365f30 + d8e10770-eeba-f011-bbd3-7c1e52365f30 false @@ -374487,9 +424180,9 @@ false true - lk_sharedobject_modifiedonbehalfby + lk_msdyn_pmtab_createdby None - 1.0.0.0 + 1.14.7.0 OneToManyRelationship DoNotDisplay @@ -374523,27 +424216,27 @@ false systemuserid systemuser - lk_sharedobject_modifiedonbehalfby - modifiedonbehalfby - sharedobject - modifiedonbehalfby + lk_msdyn_pmtab_createdby + createdby + msdyn_pmtab + createdby 0 - 3266f46a-b2ba-f011-bbd3-7c1e52365f30 + dee10770-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_sharedworkspace_createdby + lk_msdyn_pmtab_createdonbehalfby None - 1.0.0.0 + 1.14.7.0 OneToManyRelationship DoNotDisplay @@ -374577,15 +424270,15 @@ false systemuserid systemuser - lk_sharedworkspace_createdby - createdby - sharedworkspace - createdby + lk_msdyn_pmtab_createdonbehalfby + createdonbehalfby + msdyn_pmtab + createdonbehalfby 0 - 3966f46a-b2ba-f011-bbd3-7c1e52365f30 + e4e10770-eeba-f011-bbd3-7c1e52365f30 false @@ -374595,9 +424288,9 @@ false true - lk_sharedworkspace_createdonbehalfby + lk_msdyn_pmtab_modifiedby None - 1.0.0.0 + 1.14.7.0 OneToManyRelationship DoNotDisplay @@ -374631,27 +424324,27 @@ false systemuserid systemuser - lk_sharedworkspace_createdonbehalfby - createdonbehalfby - sharedworkspace - createdonbehalfby + lk_msdyn_pmtab_modifiedby + modifiedby + msdyn_pmtab + modifiedby 0 - 4066f46a-b2ba-f011-bbd3-7c1e52365f30 + eae10770-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_sharedworkspace_modifiedby + lk_msdyn_pmtab_modifiedonbehalfby None - 1.0.0.0 + 1.14.7.0 OneToManyRelationship DoNotDisplay @@ -374685,15 +424378,15 @@ false systemuserid systemuser - lk_sharedworkspace_modifiedby - modifiedby - sharedworkspace - modifiedby + lk_msdyn_pmtab_modifiedonbehalfby + modifiedonbehalfby + msdyn_pmtab + modifiedonbehalfby 0 - 4766f46a-b2ba-f011-bbd3-7c1e52365f30 + fce10770-eeba-f011-bbd3-7c1e52365f30 false @@ -374703,9 +424396,9 @@ false true - lk_sharedworkspace_modifiedonbehalfby + user_msdyn_pmtab None - 1.0.0.0 + 1.14.7.0 OneToManyRelationship DoNotDisplay @@ -374739,27 +424432,27 @@ false systemuserid systemuser - lk_sharedworkspace_modifiedonbehalfby - modifiedonbehalfby - sharedworkspace - modifiedonbehalfby + user_msdyn_pmtab + owninguser + msdyn_pmtab + owninguser 0 - c166f46a-b2ba-f011-bbd3-7c1e52365f30 + d2042e70-94f2-4daa-bcc9-d29dd2ab340f false - true + false iscustomizable - true + false - false - true - lk_sharedworkspaceaccesstoken2_createdby + true + false + lk_isvconfigbase_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -374793,27 +424486,27 @@ false systemuserid systemuser - lk_sharedworkspaceaccesstoken2_createdby - createdby - sharedworkspaceaccesstoken2 - createdby + lk_isvconfigbase_modifiedby + modifiedby + isvconfig + modifiedby 0 - c866f46a-b2ba-f011-bbd3-7c1e52365f30 + 74786570-17af-4bf9-b4dd-e5abaefc5107 false - true + false iscustomizable - true + false - false - true - lk_sharedworkspaceaccesstoken2_createdonbehalfby + true + false + lk_systemapplicationmetadata_createdby None - 1.0.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -374847,27 +424540,27 @@ false systemuserid systemuser - lk_sharedworkspaceaccesstoken2_createdonbehalfby - createdonbehalfby - sharedworkspaceaccesstoken2 - createdonbehalfby + lk_systemapplicationmetadata_createdby + createdby + systemapplicationmetadata + createdby 0 - d066f46a-b2ba-f011-bbd3-7c1e52365f30 + 241b9470-2ae2-441c-b7fb-2b1e64f60eaf false - true + false iscustomizable - true + false - false - true - lk_sharedworkspaceaccesstoken2_modifiedby + true + false + lk_SharePointData_createdonbehalfby None - 1.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -374901,27 +424594,27 @@ false systemuserid systemuser - lk_sharedworkspaceaccesstoken2_modifiedby - modifiedby - sharedworkspaceaccesstoken2 - modifiedby + lk_SharePointData_createdonbehalfby + createdonbehalfby + sharepointdata + createdonbehalfby 0 - d666f46a-b2ba-f011-bbd3-7c1e52365f30 + 703fe170-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_sharedworkspaceaccesstoken2_modifiedonbehalfby + lk_powerpagesitelanguage_createdby None - 1.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -374955,15 +424648,15 @@ false systemuserid systemuser - lk_sharedworkspaceaccesstoken2_modifiedonbehalfby - modifiedonbehalfby - sharedworkspaceaccesstoken2 - modifiedonbehalfby + lk_powerpagesitelanguage_createdby + createdby + powerpagesitelanguage + createdby 0 - 2067f46a-b2ba-f011-bbd3-7c1e52365f30 + 763fe170-f2ba-f011-bbd3-7c1e52365f30 false @@ -374973,9 +424666,9 @@ false true - lk_sharedworkspacepool_createdby + lk_powerpagesitelanguage_createdonbehalfby None - 1.0.37.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -375009,27 +424702,27 @@ false systemuserid systemuser - lk_sharedworkspacepool_createdby - createdby - sharedworkspacepool - createdby + lk_powerpagesitelanguage_createdonbehalfby + createdonbehalfby + powerpagesitelanguage + createdonbehalfby 0 - 2767f46a-b2ba-f011-bbd3-7c1e52365f30 + 7c3fe170-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_sharedworkspacepool_createdonbehalfby + lk_powerpagesitelanguage_modifiedby None - 1.0.37.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -375063,15 +424756,15 @@ false systemuserid systemuser - lk_sharedworkspacepool_createdonbehalfby - createdonbehalfby - sharedworkspacepool - createdonbehalfby + lk_powerpagesitelanguage_modifiedby + modifiedby + powerpagesitelanguage + modifiedby 0 - 3067f46a-b2ba-f011-bbd3-7c1e52365f30 + 823fe170-f2ba-f011-bbd3-7c1e52365f30 false @@ -375081,9 +424774,9 @@ false true - lk_sharedworkspacepool_modifiedby + lk_powerpagesitelanguage_modifiedonbehalfby None - 1.0.37.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -375117,27 +424810,27 @@ false systemuserid systemuser - lk_sharedworkspacepool_modifiedby - modifiedby - sharedworkspacepool - modifiedby + lk_powerpagesitelanguage_modifiedonbehalfby + modifiedonbehalfby + powerpagesitelanguage + modifiedonbehalfby 0 - 3867f46a-b2ba-f011-bbd3-7c1e52365f30 + 943fe170-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_sharedworkspacepool_modifiedonbehalfby + user_powerpagesitelanguage None - 1.0.37.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -375171,27 +424864,27 @@ false systemuserid systemuser - lk_sharedworkspacepool_modifiedonbehalfby - modifiedonbehalfby - sharedworkspacepool - modifiedonbehalfby + user_powerpagesitelanguage + owninguser + powerpagesitelanguage + owninguser 0 - 5277e6d5-b2ba-f011-bbd3-7c1e52365f30 + 4641e170-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_datalakefolder_createdby + lk_powerpagesitepublished_createdby None - 1.0.0.11 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -375225,15 +424918,15 @@ false systemuserid systemuser - lk_datalakefolder_createdby + lk_powerpagesitepublished_createdby createdby - datalakefolder + powerpagesitepublished createdby 0 - 5877e6d5-b2ba-f011-bbd3-7c1e52365f30 + 4c41e170-f2ba-f011-bbd3-7c1e52365f30 false @@ -375243,9 +424936,9 @@ false true - lk_datalakefolder_createdonbehalfby + lk_powerpagesitepublished_createdonbehalfby None - 1.0.0.11 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -375279,27 +424972,27 @@ false systemuserid systemuser - lk_datalakefolder_createdonbehalfby + lk_powerpagesitepublished_createdonbehalfby createdonbehalfby - datalakefolder + powerpagesitepublished createdonbehalfby 0 - 5e77e6d5-b2ba-f011-bbd3-7c1e52365f30 + 5641e170-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_datalakefolder_modifiedby + lk_powerpagesitepublished_modifiedby None - 1.0.0.11 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -375333,15 +425026,15 @@ false systemuserid systemuser - lk_datalakefolder_modifiedby + lk_powerpagesitepublished_modifiedby modifiedby - datalakefolder + powerpagesitepublished modifiedby 0 - 6477e6d5-b2ba-f011-bbd3-7c1e52365f30 + 6541e170-f2ba-f011-bbd3-7c1e52365f30 false @@ -375351,9 +425044,9 @@ false true - lk_datalakefolder_modifiedonbehalfby + lk_powerpagesitepublished_modifiedonbehalfby None - 1.0.0.11 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -375387,27 +425080,27 @@ false systemuserid systemuser - lk_datalakefolder_modifiedonbehalfby + lk_powerpagesitepublished_modifiedonbehalfby modifiedonbehalfby - datalakefolder + powerpagesitepublished modifiedonbehalfby 0 - 7677e6d5-b2ba-f011-bbd3-7c1e52365f30 + 8041e170-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_datalakefolder + user_powerpagesitepublished None - 1.0.0.11 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -375441,27 +425134,27 @@ false systemuserid systemuser - user_datalakefolder + user_powerpagesitepublished owninguser - datalakefolder + powerpagesitepublished owninguser 0 - a98de5db-b2ba-f011-bbd3-7c1e52365f30 + 0743e170-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_datalakefolderpermission_createdby + lk_powerpagessourcefile_createdby None - 1.0.0.11 + 1.0.2505.1 OneToManyRelationship DoNotDisplay @@ -375495,27 +425188,81 @@ false systemuserid systemuser - lk_datalakefolderpermission_createdby + lk_powerpagessourcefile_createdby createdby - datalakefolderpermission + powerpagessourcefile createdby 0 - af8de5db-b2ba-f011-bbd3-7c1e52365f30 + 565e0b71-5264-408b-ac7a-d0a395fbb7f9 + + false + + false + iscustomizable + false + + true + false + lk_import_modifiedonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_import_modifiedonbehalfby + modifiedonbehalfby + import + modifiedonbehalfby + + 0 + + + bfa96771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_datalakefolderpermission_createdonbehalfby + lk_msdyn_aibdataset_createdby None - 1.0.0.11 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -375549,15 +425296,15 @@ false systemuserid systemuser - lk_datalakefolderpermission_createdonbehalfby - createdonbehalfby - datalakefolderpermission - createdonbehalfby + lk_msdyn_aibdataset_createdby + createdby + msdyn_aibdataset + createdby 0 - b58de5db-b2ba-f011-bbd3-7c1e52365f30 + c5a96771-bfba-f011-bbd3-7c1e52365f30 false @@ -375567,9 +425314,9 @@ false true - lk_datalakefolderpermission_modifiedby + lk_msdyn_aibdataset_createdonbehalfby None - 1.0.0.11 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -375603,27 +425350,27 @@ false systemuserid systemuser - lk_datalakefolderpermission_modifiedby - modifiedby - datalakefolderpermission - modifiedby + lk_msdyn_aibdataset_createdonbehalfby + createdonbehalfby + msdyn_aibdataset + createdonbehalfby 0 - bb8de5db-b2ba-f011-bbd3-7c1e52365f30 + cba96771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_datalakefolderpermission_modifiedonbehalfby + lk_msdyn_aibdataset_modifiedby None - 1.0.0.11 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -375657,15 +425404,15 @@ false systemuserid systemuser - lk_datalakefolderpermission_modifiedonbehalfby - modifiedonbehalfby - datalakefolderpermission - modifiedonbehalfby + lk_msdyn_aibdataset_modifiedby + modifiedby + msdyn_aibdataset + modifiedby 0 - 828fe5db-b2ba-f011-bbd3-7c1e52365f30 + d1a96771-bfba-f011-bbd3-7c1e52365f30 false @@ -375675,7 +425422,7 @@ false true - lk_datalakeworkspace_createdby + lk_msdyn_aibdataset_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -375711,25 +425458,25 @@ false systemuserid systemuser - lk_datalakeworkspace_createdby - createdby - datalakeworkspace - createdby + lk_msdyn_aibdataset_modifiedonbehalfby + modifiedonbehalfby + msdyn_aibdataset + modifiedonbehalfby 0 - 888fe5db-b2ba-f011-bbd3-7c1e52365f30 + e3a96771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_datalakeworkspace_createdonbehalfby + user_msdyn_aibdataset None 1.0.0.0 OneToManyRelationship @@ -375765,25 +425512,25 @@ false systemuserid systemuser - lk_datalakeworkspace_createdonbehalfby - createdonbehalfby - datalakeworkspace - createdonbehalfby + user_msdyn_aibdataset + owninguser + msdyn_aibdataset + owninguser 0 - 8e8fe5db-b2ba-f011-bbd3-7c1e52365f30 + 94aa6771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_datalakeworkspace_modifiedby + lk_msdyn_aibdatasetfile_createdby None 1.0.0.0 OneToManyRelationship @@ -375819,15 +425566,15 @@ false systemuserid systemuser - lk_datalakeworkspace_modifiedby - modifiedby - datalakeworkspace - modifiedby + lk_msdyn_aibdatasetfile_createdby + createdby + msdyn_aibdatasetfile + createdby 0 - 948fe5db-b2ba-f011-bbd3-7c1e52365f30 + 9aaa6771-bfba-f011-bbd3-7c1e52365f30 false @@ -375837,7 +425584,7 @@ false true - lk_datalakeworkspace_modifiedonbehalfby + lk_msdyn_aibdatasetfile_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -375873,25 +425620,25 @@ false systemuserid systemuser - lk_datalakeworkspace_modifiedonbehalfby - modifiedonbehalfby - datalakeworkspace - modifiedonbehalfby + lk_msdyn_aibdatasetfile_createdonbehalfby + createdonbehalfby + msdyn_aibdatasetfile + createdonbehalfby 0 - 6391e5db-b2ba-f011-bbd3-7c1e52365f30 + a0aa6771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_datalakeworkspacepermission_createdby + lk_msdyn_aibdatasetfile_modifiedby None 1.0.0.0 OneToManyRelationship @@ -375927,15 +425674,15 @@ false systemuserid systemuser - lk_datalakeworkspacepermission_createdby - createdby - datalakeworkspacepermission - createdby + lk_msdyn_aibdatasetfile_modifiedby + modifiedby + msdyn_aibdatasetfile + modifiedby 0 - 6991e5db-b2ba-f011-bbd3-7c1e52365f30 + a6aa6771-bfba-f011-bbd3-7c1e52365f30 false @@ -375945,7 +425692,7 @@ false true - lk_datalakeworkspacepermission_createdonbehalfby + lk_msdyn_aibdatasetfile_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -375981,25 +425728,25 @@ false systemuserid systemuser - lk_datalakeworkspacepermission_createdonbehalfby - createdonbehalfby - datalakeworkspacepermission - createdonbehalfby + lk_msdyn_aibdatasetfile_modifiedonbehalfby + modifiedonbehalfby + msdyn_aibdatasetfile + modifiedonbehalfby 0 - 6f91e5db-b2ba-f011-bbd3-7c1e52365f30 + b9aa6771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_datalakeworkspacepermission_modifiedby + user_msdyn_aibdatasetfile None 1.0.0.0 OneToManyRelationship @@ -376035,25 +425782,25 @@ false systemuserid systemuser - lk_datalakeworkspacepermission_modifiedby - modifiedby - datalakeworkspacepermission - modifiedby + user_msdyn_aibdatasetfile + owninguser + msdyn_aibdatasetfile + owninguser 0 - 7591e5db-b2ba-f011-bbd3-7c1e52365f30 + a0ab6771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_datalakeworkspacepermission_modifiedonbehalfby + lk_msdyn_aibdatasetrecord_createdby None 1.0.0.0 OneToManyRelationship @@ -376089,15 +425836,15 @@ false systemuserid systemuser - lk_datalakeworkspacepermission_modifiedonbehalfby - modifiedonbehalfby - datalakeworkspacepermission - modifiedonbehalfby + lk_msdyn_aibdatasetrecord_createdby + createdby + msdyn_aibdatasetrecord + createdby 0 - 0bcc36e2-b2ba-f011-bbd3-7c1e52365f30 + a8ab6771-bfba-f011-bbd3-7c1e52365f30 false @@ -376107,7 +425854,7 @@ false true - lk_dataprocessingconfiguration_createdby + lk_msdyn_aibdatasetrecord_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -376143,25 +425890,25 @@ false systemuserid systemuser - lk_dataprocessingconfiguration_createdby - createdby - dataprocessingconfiguration - createdby + lk_msdyn_aibdatasetrecord_createdonbehalfby + createdonbehalfby + msdyn_aibdatasetrecord + createdonbehalfby 0 - 11cc36e2-b2ba-f011-bbd3-7c1e52365f30 + b0ab6771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_dataprocessingconfiguration_createdonbehalfby + lk_msdyn_aibdatasetrecord_modifiedby None 1.0.0.0 OneToManyRelationship @@ -376197,15 +425944,15 @@ false systemuserid systemuser - lk_dataprocessingconfiguration_createdonbehalfby - createdonbehalfby - dataprocessingconfiguration - createdonbehalfby + lk_msdyn_aibdatasetrecord_modifiedby + modifiedby + msdyn_aibdatasetrecord + modifiedby 0 - 17cc36e2-b2ba-f011-bbd3-7c1e52365f30 + b8ab6771-bfba-f011-bbd3-7c1e52365f30 false @@ -376215,7 +425962,7 @@ false true - lk_dataprocessingconfiguration_modifiedby + lk_msdyn_aibdatasetrecord_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -376251,25 +425998,25 @@ false systemuserid systemuser - lk_dataprocessingconfiguration_modifiedby - modifiedby - dataprocessingconfiguration - modifiedby + lk_msdyn_aibdatasetrecord_modifiedonbehalfby + modifiedonbehalfby + msdyn_aibdatasetrecord + modifiedonbehalfby 0 - 1dcc36e2-b2ba-f011-bbd3-7c1e52365f30 + ccab6771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_dataprocessingconfiguration_modifiedonbehalfby + user_msdyn_aibdatasetrecord None 1.0.0.0 OneToManyRelationship @@ -376305,27 +426052,27 @@ false systemuserid systemuser - lk_dataprocessingconfiguration_modifiedonbehalfby - modifiedonbehalfby - dataprocessingconfiguration - modifiedonbehalfby + user_msdyn_aibdatasetrecord + owninguser + msdyn_aibdatasetrecord + owninguser 0 - 17cd36e2-b2ba-f011-bbd3-7c1e52365f30 + d4ac6771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_exportedexcel_createdby + lk_msdyn_aibdatasetscontainer_createdby None - 1.0.30.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -376359,15 +426106,15 @@ false systemuserid systemuser - lk_exportedexcel_createdby + lk_msdyn_aibdatasetscontainer_createdby createdby - exportedexcel + msdyn_aibdatasetscontainer createdby 0 - 1fcd36e2-b2ba-f011-bbd3-7c1e52365f30 + dcac6771-bfba-f011-bbd3-7c1e52365f30 false @@ -376377,9 +426124,9 @@ false true - lk_exportedexcel_createdonbehalfby + lk_msdyn_aibdatasetscontainer_createdonbehalfby None - 1.0.30.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -376413,27 +426160,27 @@ false systemuserid systemuser - lk_exportedexcel_createdonbehalfby + lk_msdyn_aibdatasetscontainer_createdonbehalfby createdonbehalfby - exportedexcel + msdyn_aibdatasetscontainer createdonbehalfby 0 - 26cd36e2-b2ba-f011-bbd3-7c1e52365f30 + e3ac6771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_exportedexcel_modifiedby + lk_msdyn_aibdatasetscontainer_modifiedby None - 1.0.30.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -376467,15 +426214,15 @@ false systemuserid systemuser - lk_exportedexcel_modifiedby + lk_msdyn_aibdatasetscontainer_modifiedby modifiedby - exportedexcel + msdyn_aibdatasetscontainer modifiedby 0 - 2ccd36e2-b2ba-f011-bbd3-7c1e52365f30 + eaac6771-bfba-f011-bbd3-7c1e52365f30 false @@ -376485,9 +426232,9 @@ false true - lk_exportedexcel_modifiedonbehalfby + lk_msdyn_aibdatasetscontainer_modifiedonbehalfby None - 1.0.30.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -376521,27 +426268,27 @@ false systemuserid systemuser - lk_exportedexcel_modifiedonbehalfby + lk_msdyn_aibdatasetscontainer_modifiedonbehalfby modifiedonbehalfby - exportedexcel + msdyn_aibdatasetscontainer modifiedonbehalfby 0 - 3ecd36e2-b2ba-f011-bbd3-7c1e52365f30 + fdac6771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_exportedexcel + user_msdyn_aibdatasetscontainer None - 1.0.30.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -376575,27 +426322,27 @@ false systemuserid systemuser - user_exportedexcel + user_msdyn_aibdatasetscontainer owninguser - exportedexcel + msdyn_aibdatasetscontainer owninguser 0 - b0ce36e2-b2ba-f011-bbd3-7c1e52365f30 + 8e1fa371-9f94-41e2-b038-732a999f85b8 false - true + false iscustomizable - true + false - false + true true - lk_retaineddataexcel_createdby + lk_kbarticletemplate_createdonbehalfby None - 1.0.30.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -376629,15 +426376,15 @@ false systemuserid systemuser - lk_retaineddataexcel_createdby - createdby - retaineddataexcel - createdby + lk_kbarticletemplate_createdonbehalfby + createdonbehalfby + kbarticletemplate + createdonbehalfby 0 - b6ce36e2-b2ba-f011-bbd3-7c1e52365f30 + b108bd71-6901-f111-8406-6045bde1ab47 false @@ -376647,9 +426394,9 @@ false true - lk_retaineddataexcel_createdonbehalfby + lk_appnotificationsignal_createdby None - 1.0.30.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -376683,15 +426430,15 @@ false systemuserid systemuser - lk_retaineddataexcel_createdonbehalfby - createdonbehalfby - retaineddataexcel - createdonbehalfby + lk_appnotificationsignal_createdby + createdby + appnotificationsignal + createdby 0 - bcce36e2-b2ba-f011-bbd3-7c1e52365f30 + b808bd71-6901-f111-8406-6045bde1ab47 false @@ -376701,9 +426448,9 @@ false true - lk_retaineddataexcel_modifiedby + lk_appnotificationsignal_createdonbehalfby None - 1.0.30.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -376737,15 +426484,15 @@ false systemuserid systemuser - lk_retaineddataexcel_modifiedby - modifiedby - retaineddataexcel - modifiedby + lk_appnotificationsignal_createdonbehalfby + createdonbehalfby + appnotificationsignal + createdonbehalfby 0 - c2ce36e2-b2ba-f011-bbd3-7c1e52365f30 + be08bd71-6901-f111-8406-6045bde1ab47 false @@ -376755,9 +426502,9 @@ false true - lk_retaineddataexcel_modifiedonbehalfby + lk_appnotificationsignal_modifiedby None - 1.0.30.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -376791,15 +426538,15 @@ false systemuserid systemuser - lk_retaineddataexcel_modifiedonbehalfby - modifiedonbehalfby - retaineddataexcel - modifiedonbehalfby + lk_appnotificationsignal_modifiedby + modifiedby + appnotificationsignal + modifiedby 0 - d4ce36e2-b2ba-f011-bbd3-7c1e52365f30 + c408bd71-6901-f111-8406-6045bde1ab47 false @@ -376809,9 +426556,9 @@ false true - user_retaineddataexcel + lk_appnotificationsignal_modifiedonbehalfby None - 1.0.30.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -376845,27 +426592,27 @@ false systemuserid systemuser - user_retaineddataexcel - owninguser - retaineddataexcel - owninguser + lk_appnotificationsignal_modifiedonbehalfby + modifiedonbehalfby + appnotificationsignal + modifiedonbehalfby 0 - 6a842fe8-b2ba-f011-bbd3-7c1e52365f30 + 41cefa71-34dd-4c49-95ef-120b7c3e1f0a false - true + false iscustomizable true - false + true true - lk_synapsedatabase_createdby + lk_queueitembase_createdby None - 1.0.0.39 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -376899,27 +426646,27 @@ false systemuserid systemuser - lk_synapsedatabase_createdby + lk_queueitembase_createdby createdby - synapsedatabase + queueitem createdby 0 - 70842fe8-b2ba-f011-bbd3-7c1e52365f30 + afe85972-a3b0-49d0-9bed-b41f2dc4721b false - true + false iscustomizable - true + false - false - true - lk_synapsedatabase_createdonbehalfby + true + false + lk_syncerrorbase_createdonbehalfby None - 1.0.0.39 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -376953,27 +426700,27 @@ false systemuserid systemuser - lk_synapsedatabase_createdonbehalfby + lk_syncerrorbase_createdonbehalfby createdonbehalfby - synapsedatabase + syncerror createdonbehalfby 0 - 76842fe8-b2ba-f011-bbd3-7c1e52365f30 + 515db572-4a20-40fc-8c65-6969df462047 false - true + false iscustomizable true - false - true - lk_synapsedatabase_modifiedby + true + false + lk_businessunitbase_createdby None - 1.0.0.39 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -377007,27 +426754,27 @@ false systemuserid systemuser - lk_synapsedatabase_modifiedby - modifiedby - synapsedatabase - modifiedby + lk_businessunitbase_createdby + createdby + businessunit + createdby 0 - 7c842fe8-b2ba-f011-bbd3-7c1e52365f30 + 02861173-1335-4886-8699-993a3107f1d7 false - true + false iscustomizable - true + false - false - true - lk_synapsedatabase_modifiedonbehalfby + true + false + lk_import_createdonbehalfby None - 1.0.0.39 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -377061,27 +426808,27 @@ false systemuserid systemuser - lk_synapsedatabase_modifiedonbehalfby - modifiedonbehalfby - synapsedatabase - modifiedonbehalfby + lk_import_createdonbehalfby + createdonbehalfby + import + createdonbehalfby 0 - 8e842fe8-b2ba-f011-bbd3-7c1e52365f30 + 0b358c73-41fe-42d3-8af6-28eec8cb8166 false - true + false iscustomizable true - false + true true - user_synapsedatabase + lk_ribboncommand_createdby None - 1.0.0.39 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -377115,27 +426862,27 @@ false systemuserid systemuser - user_synapsedatabase - owninguser - synapsedatabase - owninguser + lk_ribboncommand_createdby + createdby + ribboncommand + createdby 0 - e5c25475-b3ba-f011-bbd3-7c1e52365f30 + 3d529673-0c95-4614-8ecc-2845a8b98398 false - true + false iscustomizable false - false - true - lk_synapselinkexternaltablestate_createdby + true + false + lk_integrationstatus_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -377169,27 +426916,27 @@ false systemuserid systemuser - lk_synapselinkexternaltablestate_createdby - createdby - synapselinkexternaltablestate - createdby + lk_integrationstatus_modifiedby + modifiedby + integrationstatus + modifiedby 0 - ebc25475-b3ba-f011-bbd3-7c1e52365f30 + 0a4d1d74-2c4a-44bc-9eb5-bf4eecba3fce false - true + false iscustomizable true - false + true true - lk_synapselinkexternaltablestate_createdonbehalfby + lk_teambase_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -377223,30 +426970,30 @@ false systemuserid systemuser - lk_synapselinkexternaltablestate_createdonbehalfby - createdonbehalfby - synapselinkexternaltablestate - createdonbehalfby + lk_teambase_createdby + createdby + team + createdby 0 - f1c25475-b3ba-f011-bbd3-7c1e52365f30 + 35643674-d498-4baa-8d8e-398cfa314ddd false - true + false iscustomizable false - false - true - lk_synapselinkexternaltablestate_modifiedby + true + false + lk_azureserviceconnection_createdonbehalfby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -377277,30 +427024,30 @@ false systemuserid systemuser - lk_synapselinkexternaltablestate_modifiedby - modifiedby - synapselinkexternaltablestate - modifiedby + lk_azureserviceconnection_createdonbehalfby + createdonbehalfby + azureserviceconnection + createdonbehalfby 0 - f7c25475-b3ba-f011-bbd3-7c1e52365f30 + 9c347f74-a8d4-e511-8a95-00219b619656 false - true + false iscustomizable true - false + true true - lk_synapselinkexternaltablestate_modifiedonbehalfby + lk_delveactionhub_createdby None - 1.0.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -377331,30 +427078,30 @@ false systemuserid systemuser - lk_synapselinkexternaltablestate_modifiedonbehalfby - modifiedonbehalfby - synapselinkexternaltablestate - modifiedonbehalfby + lk_delveactionhub_createdby + createdby + delveactionhub + createdbyname 0 - c5c35475-b3ba-f011-bbd3-7c1e52365f30 + a2347f74-a8d4-e511-8a95-00219b619656 false - true + false iscustomizable - false + true - false + true true - lk_synapselinkprofile_createdby + lk_delveactionhub_createdonbehalfby None - 1.0.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -377385,30 +427132,30 @@ false systemuserid systemuser - lk_synapselinkprofile_createdby - createdby - synapselinkprofile - createdby + lk_delveactionhub_createdonbehalfby + createdonbehalfby + delveactionhub + createdonbehalfbyname 0 - cbc35475-b3ba-f011-bbd3-7c1e52365f30 + a8347f74-a8d4-e511-8a95-00219b619656 false - true + false iscustomizable true - false + true true - lk_synapselinkprofile_createdonbehalfby + lk_delveactionhub_modifiedby None - 1.0.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -377439,30 +427186,30 @@ false systemuserid systemuser - lk_synapselinkprofile_createdonbehalfby - createdonbehalfby - synapselinkprofile - createdonbehalfby + lk_delveactionhub_modifiedby + modifiedby + delveactionhub + modifiedbyname 0 - d1c35475-b3ba-f011-bbd3-7c1e52365f30 + ae347f74-a8d4-e511-8a95-00219b619656 false - true + false iscustomizable - false + true - false + true true - lk_synapselinkprofile_modifiedby + lk_delveactionhub_modifiedonbehalfby None - 1.0.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -377493,27 +427240,27 @@ false systemuserid systemuser - lk_synapselinkprofile_modifiedby - modifiedby - synapselinkprofile - modifiedby + lk_delveactionhub_modifiedonbehalfby + modifiedonbehalfby + delveactionhub + modifiedonbehalfbyname 0 - d7c35475-b3ba-f011-bbd3-7c1e52365f30 + 7417c474-da13-4836-bd88-8fc739a1e877 false - true + false iscustomizable - true + false - false - true - lk_synapselinkprofile_modifiedonbehalfby + true + false + lk_timezonedefinition_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -377547,27 +427294,27 @@ false systemuserid systemuser - lk_synapselinkprofile_modifiedonbehalfby + lk_timezonedefinition_modifiedonbehalfby modifiedonbehalfby - synapselinkprofile + timezonedefinition modifiedonbehalfby 0 - fdc45475-b3ba-f011-bbd3-7c1e52365f30 + 3182c974-d2d4-f011-8548-000d3adc1b74 false true iscustomizable - false + true false true - lk_synapselinkprofileentity_createdby + lk_businessprocesslinkedartifact_createdby None - 1.0.0.0 + 1.9.7.0 OneToManyRelationship DoNotDisplay @@ -377601,15 +427348,15 @@ false systemuserid systemuser - lk_synapselinkprofileentity_createdby + lk_businessprocesslinkedartifact_createdby createdby - synapselinkprofileentity + businessprocesslinkedartifact createdby 0 - 03c55475-b3ba-f011-bbd3-7c1e52365f30 + 3782c974-d2d4-f011-8548-000d3adc1b74 false @@ -377619,9 +427366,9 @@ false true - lk_synapselinkprofileentity_createdonbehalfby + lk_businessprocesslinkedartifact_createdonbehalfby None - 1.0.0.0 + 1.9.7.0 OneToManyRelationship DoNotDisplay @@ -377655,27 +427402,27 @@ false systemuserid systemuser - lk_synapselinkprofileentity_createdonbehalfby + lk_businessprocesslinkedartifact_createdonbehalfby createdonbehalfby - synapselinkprofileentity + businessprocesslinkedartifact createdonbehalfby 0 - 09c55475-b3ba-f011-bbd3-7c1e52365f30 + 3d82c974-d2d4-f011-8548-000d3adc1b74 false true iscustomizable - false + true false true - lk_synapselinkprofileentity_modifiedby + lk_businessprocesslinkedartifact_modifiedby None - 1.0.0.0 + 1.9.7.0 OneToManyRelationship DoNotDisplay @@ -377709,15 +427456,15 @@ false systemuserid systemuser - lk_synapselinkprofileentity_modifiedby + lk_businessprocesslinkedartifact_modifiedby modifiedby - synapselinkprofileentity + businessprocesslinkedartifact modifiedby 0 - 0fc55475-b3ba-f011-bbd3-7c1e52365f30 + 4382c974-d2d4-f011-8548-000d3adc1b74 false @@ -377727,9 +427474,9 @@ false true - lk_synapselinkprofileentity_modifiedonbehalfby + lk_businessprocesslinkedartifact_modifiedonbehalfby None - 1.0.0.0 + 1.9.7.0 OneToManyRelationship DoNotDisplay @@ -377763,27 +427510,27 @@ false systemuserid systemuser - lk_synapselinkprofileentity_modifiedonbehalfby + lk_businessprocesslinkedartifact_modifiedonbehalfby modifiedonbehalfby - synapselinkprofileentity + businessprocesslinkedartifact modifiedonbehalfby 0 - 4cced981-b3ba-f011-bbd3-7c1e52365f30 + 5582c974-d2d4-f011-8548-000d3adc1b74 false true iscustomizable - false + true false true - lk_synapselinkprofileentitystate_createdby + user_businessprocesslinkedartifact None - 1.0.0.0 + 1.9.7.0 OneToManyRelationship DoNotDisplay @@ -377817,27 +427564,27 @@ false systemuserid systemuser - lk_synapselinkprofileentitystate_createdby - createdby - synapselinkprofileentitystate - createdby + user_businessprocesslinkedartifact + owninguser + businessprocesslinkedartifact + owninguser 0 - 52ced981-b3ba-f011-bbd3-7c1e52365f30 + afc5fc74-de25-4242-a010-7f8bda33957b false - true + false iscustomizable true - false + true true - lk_synapselinkprofileentitystate_createdonbehalfby + lk_ribbonrule_modifiedonbehalfby None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -377871,69 +427618,15 @@ false systemuserid systemuser - lk_synapselinkprofileentitystate_createdonbehalfby - createdonbehalfby - synapselinkprofileentitystate - createdonbehalfby - - 0 - - - 58ced981-b3ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - lk_synapselinkprofileentitystate_modifiedby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_synapselinkprofileentitystate_modifiedby - modifiedby - synapselinkprofileentitystate - modifiedby + lk_ribbonrule_modifiedonbehalfby + modifiedonbehalfby + ribbonrule + modifiedonbehalfby 0 - 5eced981-b3ba-f011-bbd3-7c1e52365f30 + 19993775-cbba-f011-bbd3-7c1e52365f30 false @@ -377943,9 +427636,9 @@ false true - lk_synapselinkprofileentitystate_modifiedonbehalfby + lk_msdyn_historicalcaseharvestbatch_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -377979,27 +427672,27 @@ false systemuserid systemuser - lk_synapselinkprofileentitystate_modifiedonbehalfby - modifiedonbehalfby - synapselinkprofileentitystate - modifiedonbehalfby + lk_msdyn_historicalcaseharvestbatch_createdby + createdby + msdyn_historicalcaseharvestbatch + createdby 0 - 42cfd981-b3ba-f011-bbd3-7c1e52365f30 + 1f993775-cbba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_synapselinkschedule_createdby + lk_msdyn_historicalcaseharvestbatch_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -378033,15 +427726,15 @@ false systemuserid systemuser - lk_synapselinkschedule_createdby - createdby - synapselinkschedule - createdby + lk_msdyn_historicalcaseharvestbatch_createdonbehalfby + createdonbehalfby + msdyn_historicalcaseharvestbatch + createdonbehalfby 0 - 48cfd981-b3ba-f011-bbd3-7c1e52365f30 + 25993775-cbba-f011-bbd3-7c1e52365f30 false @@ -378051,9 +427744,9 @@ false true - lk_synapselinkschedule_createdonbehalfby + lk_msdyn_historicalcaseharvestbatch_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -378087,27 +427780,27 @@ false systemuserid systemuser - lk_synapselinkschedule_createdonbehalfby - createdonbehalfby - synapselinkschedule - createdonbehalfby + lk_msdyn_historicalcaseharvestbatch_modifiedby + modifiedby + msdyn_historicalcaseharvestbatch + modifiedby 0 - 4ecfd981-b3ba-f011-bbd3-7c1e52365f30 + 2b993775-cbba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_synapselinkschedule_modifiedby + lk_msdyn_historicalcaseharvestbatch_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -378141,15 +427834,15 @@ false systemuserid systemuser - lk_synapselinkschedule_modifiedby - modifiedby - synapselinkschedule - modifiedby + lk_msdyn_historicalcaseharvestbatch_modifiedonbehalfby + modifiedonbehalfby + msdyn_historicalcaseharvestbatch + modifiedonbehalfby 0 - 54cfd981-b3ba-f011-bbd3-7c1e52365f30 + 3d993775-cbba-f011-bbd3-7c1e52365f30 false @@ -378159,9 +427852,9 @@ false true - lk_synapselinkschedule_modifiedonbehalfby + user_msdyn_historicalcaseharvestbatch None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -378195,27 +427888,27 @@ false systemuserid systemuser - lk_synapselinkschedule_modifiedonbehalfby - modifiedonbehalfby - synapselinkschedule - modifiedonbehalfby + user_msdyn_historicalcaseharvestbatch + owninguser + msdyn_historicalcaseharvestbatch + owninguser 0 - 35c102bb-b3ba-f011-bbd3-7c1e52365f30 + e5c25475-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_componentchangesetpayload_createdby + lk_synapselinkexternaltablestate_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -378249,15 +427942,15 @@ false systemuserid systemuser - lk_componentchangesetpayload_createdby + lk_synapselinkexternaltablestate_createdby createdby - componentchangesetpayload + synapselinkexternaltablestate createdby 0 - 3bc102bb-b3ba-f011-bbd3-7c1e52365f30 + ebc25475-b3ba-f011-bbd3-7c1e52365f30 false @@ -378267,9 +427960,9 @@ false true - lk_componentchangesetpayload_createdonbehalfby + lk_synapselinkexternaltablestate_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -378303,27 +427996,27 @@ false systemuserid systemuser - lk_componentchangesetpayload_createdonbehalfby + lk_synapselinkexternaltablestate_createdonbehalfby createdonbehalfby - componentchangesetpayload + synapselinkexternaltablestate createdonbehalfby 0 - 41c102bb-b3ba-f011-bbd3-7c1e52365f30 + f1c25475-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_componentchangesetpayload_modifiedby + lk_synapselinkexternaltablestate_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -378357,15 +428050,15 @@ false systemuserid systemuser - lk_componentchangesetpayload_modifiedby + lk_synapselinkexternaltablestate_modifiedby modifiedby - componentchangesetpayload + synapselinkexternaltablestate modifiedby 0 - 47c102bb-b3ba-f011-bbd3-7c1e52365f30 + f7c25475-b3ba-f011-bbd3-7c1e52365f30 false @@ -378375,9 +428068,9 @@ false true - lk_componentchangesetpayload_modifiedonbehalfby + lk_synapselinkexternaltablestate_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -378411,27 +428104,27 @@ false systemuserid systemuser - lk_componentchangesetpayload_modifiedonbehalfby + lk_synapselinkexternaltablestate_modifiedonbehalfby modifiedonbehalfby - componentchangesetpayload + synapselinkexternaltablestate modifiedonbehalfby 0 - aa87f9c0-b3ba-f011-bbd3-7c1e52365f30 + c5c35475-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_componentchangesetversion_createdby + lk_synapselinkprofile_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -378465,15 +428158,15 @@ false systemuserid systemuser - lk_componentchangesetversion_createdby + lk_synapselinkprofile_createdby createdby - componentchangesetversion + synapselinkprofile createdby 0 - b087f9c0-b3ba-f011-bbd3-7c1e52365f30 + cbc35475-b3ba-f011-bbd3-7c1e52365f30 false @@ -378483,9 +428176,9 @@ false true - lk_componentchangesetversion_createdonbehalfby + lk_synapselinkprofile_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -378519,81 +428212,27 @@ false systemuserid systemuser - lk_componentchangesetversion_createdonbehalfby + lk_synapselinkprofile_createdonbehalfby createdonbehalfby - componentchangesetversion + synapselinkprofile createdonbehalfby 0 - b687f9c0-b3ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_componentchangesetversion_modifiedby - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_componentchangesetversion_modifiedby - modifiedby - componentchangesetversion - modifiedby - - 0 - - - bc87f9c0-b3ba-f011-bbd3-7c1e52365f30 + d1c35475-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_componentchangesetversion_modifiedonbehalfby + lk_synapselinkprofile_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -378627,27 +428266,27 @@ false systemuserid systemuser - lk_componentchangesetversion_modifiedonbehalfby - modifiedonbehalfby - componentchangesetversion - modifiedonbehalfby + lk_synapselinkprofile_modifiedby + modifiedby + synapselinkprofile + modifiedby 0 - 8089f9c0-b3ba-f011-bbd3-7c1e52365f30 + d7c35475-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_componentversionnrddatasource_createdby + lk_synapselinkprofile_modifiedonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -378681,27 +428320,27 @@ false systemuserid systemuser - lk_componentversionnrddatasource_createdby - createdby - componentversionnrddatasource - createdby + lk_synapselinkprofile_modifiedonbehalfby + modifiedonbehalfby + synapselinkprofile + modifiedonbehalfby 0 - 8689f9c0-b3ba-f011-bbd3-7c1e52365f30 + fdc45475-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_componentversionnrddatasource_createdonbehalfby + lk_synapselinkprofileentity_createdby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -378735,27 +428374,27 @@ false systemuserid systemuser - lk_componentversionnrddatasource_createdonbehalfby - createdonbehalfby - componentversionnrddatasource - createdonbehalfby + lk_synapselinkprofileentity_createdby + createdby + synapselinkprofileentity + createdby 0 - 8c89f9c0-b3ba-f011-bbd3-7c1e52365f30 + 03c55475-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_componentversionnrddatasource_modifiedby + lk_synapselinkprofileentity_createdonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -378789,27 +428428,27 @@ false systemuserid systemuser - lk_componentversionnrddatasource_modifiedby - modifiedby - componentversionnrddatasource - modifiedby + lk_synapselinkprofileentity_createdonbehalfby + createdonbehalfby + synapselinkprofileentity + createdonbehalfby 0 - 9289f9c0-b3ba-f011-bbd3-7c1e52365f30 + 09c55475-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_componentversionnrddatasource_modifiedonbehalfby + lk_synapselinkprofileentity_modifiedby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -378843,53 +428482,39 @@ false systemuserid systemuser - lk_componentversionnrddatasource_modifiedonbehalfby - modifiedonbehalfby - componentversionnrddatasource - modifiedonbehalfby + lk_synapselinkprofileentity_modifiedby + modifiedby + synapselinkprofileentity + modifiedby 0 - ed89f9c0-b3ba-f011-bbd3-7c1e52365f30 + 0fc55475-b3ba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - lk_componentversion_createdby - Append - 9.1.0.0 + lk_synapselinkprofileentity_modifiedonbehalfby + None + 1.0.0.0 OneToManyRelationship DoNotDisplay Details - - - 905d8090-172f-4242-8787-cbc58765b909 - - true - Versions - 1033 - - - - 905d8090-172f-4242-8787-cbc58765b909 - - true - Versions - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -378911,17 +428536,17 @@ false systemuserid systemuser - lk_componentversion_createdby - createdby - componentversion - createdby + lk_synapselinkprofileentity_modifiedonbehalfby + modifiedonbehalfby + synapselinkprofileentity + modifiedonbehalfby - 1 + 0 - fd89f9c0-b3ba-f011-bbd3-7c1e52365f30 + 7599b175-89bf-4935-9f40-9598dd9e8e45 - true + false false iscustomizable @@ -378929,35 +428554,21 @@ true true - lk_componentversion_modifiedby - Append - 9.1.0.0 + lk_syncattributemappingprofile_modifiedonbehalfby + None + 7.0.0.0 OneToManyRelationship DoNotDisplay Details - - - 3c7da5c0-5dce-4f93-b2e2-544ac032cb0d - - true - Versions - 1033 - - - - 3c7da5c0-5dce-4f93-b2e2-544ac032cb0d - - true - Versions - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -378979,53 +428590,39 @@ false systemuserid systemuser - lk_componentversion_modifiedby - modifiedby - componentversion - modifiedby + lk_syncattributemappingprofile_modifiedonbehalfby + modifiedonbehalfby + syncattributemappingprofile + modifiedonbehalfby - 1 + 0 - 198af9c0-b3ba-f011-bbd3-7c1e52365f30 + 6a122676-3f66-469b-83e3-6bd192226897 - true + false false iscustomizable false true - true - user_componentversion - Append - 9.1.0.0 + false + lk_category_createdonbehalfby + None + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - - 7429a102-d4e3-4d54-aeba-e189ff342e11 - - true - Versions - 1033 - - - - 7429a102-d4e3-4d54-aeba-e189ff342e11 - - true - Versions - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -379047,30 +428644,30 @@ false systemuserid systemuser - user_componentversion - owninguser - componentversion - owninguser + lk_category_createdonbehalfby + createdonbehalfby + category + lk_category_createdonbehalfby - 1 + 0 - 32f88634-b4ba-f011-bbd3-7c1e52365f30 + b7df4b76-1c74-46e6-9a28-9b678c27ee8f false - true + false iscustomizable false - false + true true - lk_sourcecontrolbranchconfiguration_createdby + lk_customcontroldefaultconfig_modifiedby None - 9.1.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -379101,27 +428698,27 @@ false systemuserid systemuser - lk_sourcecontrolbranchconfiguration_createdby - createdby - sourcecontrolbranchconfiguration - createdby + lk_customcontroldefaultconfig_modifiedby + modifiedby + customcontroldefaultconfig + modifiedby 0 - 38f88634-b4ba-f011-bbd3-7c1e52365f30 + a80c9276-263f-467b-be92-4097ea28acfb false - true + false iscustomizable - true + false - false - true - lk_sourcecontrolbranchconfiguration_createdonbehalfby + true + false + lk_wizardpage_modifiedonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -379155,27 +428752,27 @@ false systemuserid systemuser - lk_sourcecontrolbranchconfiguration_createdonbehalfby - createdonbehalfby - sourcecontrolbranchconfiguration - createdonbehalfby + lk_wizardpage_modifiedonbehalfby + modifiedonbehalfby + wizardpage + modifiedonbehalfby 0 - 3ef88634-b4ba-f011-bbd3-7c1e52365f30 + 345db276-bc63-4bbf-90dd-b7a11035c07f false - true + false iscustomizable - false + true - false + true true - lk_sourcecontrolbranchconfiguration_modifiedby + lk_appointment_createdonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -379209,15 +428806,15 @@ false systemuserid systemuser - lk_sourcecontrolbranchconfiguration_modifiedby - modifiedby - sourcecontrolbranchconfiguration - modifiedby + lk_appointment_createdonbehalfby + createdonbehalfby + appointment + createdonbehalfby_appointment 0 - 44f88634-b4ba-f011-bbd3-7c1e52365f30 + 2db0d976-f2ba-f011-bbd3-7c1e52365f30 false @@ -379227,9 +428824,9 @@ false true - lk_sourcecontrolbranchconfiguration_modifiedonbehalfby + lk_powerpagessourcefile_createdonbehalfby None - 9.1.0.0 + 1.0.2505.1 OneToManyRelationship DoNotDisplay @@ -379263,15 +428860,15 @@ false systemuserid systemuser - lk_sourcecontrolbranchconfiguration_modifiedonbehalfby - modifiedonbehalfby - sourcecontrolbranchconfiguration - modifiedonbehalfby + lk_powerpagessourcefile_createdonbehalfby + createdonbehalfby + powerpagessourcefile + createdonbehalfby 0 - 57f98634-b4ba-f011-bbd3-7c1e52365f30 + 38b0d976-f2ba-f011-bbd3-7c1e52365f30 false @@ -379281,9 +428878,9 @@ false true - lk_sourcecontrolcomponent_createdby + lk_powerpagessourcefile_modifiedby None - 9.1.0.0 + 1.0.2505.1 OneToManyRelationship DoNotDisplay @@ -379317,15 +428914,15 @@ false systemuserid systemuser - lk_sourcecontrolcomponent_createdby - createdby - sourcecontrolcomponent - createdby + lk_powerpagessourcefile_modifiedby + modifiedby + powerpagessourcefile + modifiedby 0 - 5df98634-b4ba-f011-bbd3-7c1e52365f30 + 45b0d976-f2ba-f011-bbd3-7c1e52365f30 false @@ -379335,9 +428932,9 @@ false true - lk_sourcecontrolcomponent_createdonbehalfby + lk_powerpagessourcefile_modifiedonbehalfby None - 9.1.0.0 + 1.0.2505.1 OneToManyRelationship DoNotDisplay @@ -379371,15 +428968,15 @@ false systemuserid systemuser - lk_sourcecontrolcomponent_createdonbehalfby - createdonbehalfby - sourcecontrolcomponent - createdonbehalfby + lk_powerpagessourcefile_modifiedonbehalfby + modifiedonbehalfby + powerpagessourcefile + modifiedonbehalfby 0 - 63f98634-b4ba-f011-bbd3-7c1e52365f30 + 57b0d976-f2ba-f011-bbd3-7c1e52365f30 false @@ -379389,9 +428986,9 @@ false true - lk_sourcecontrolcomponent_modifiedby + user_powerpagessourcefile None - 9.1.0.0 + 1.0.2505.1 OneToManyRelationship DoNotDisplay @@ -379425,27 +429022,27 @@ false systemuserid systemuser - lk_sourcecontrolcomponent_modifiedby - modifiedby - sourcecontrolcomponent - modifiedby + user_powerpagessourcefile + owninguser + powerpagessourcefile + owninguser 0 - 69f98634-b4ba-f011-bbd3-7c1e52365f30 + ee62f176-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_sourcecontrolcomponent_modifiedonbehalfby + lk_msdyn_pmtemplate_createdby None - 9.1.0.0 + 1.2.0.14 OneToManyRelationship DoNotDisplay @@ -379479,27 +429076,27 @@ false systemuserid systemuser - lk_sourcecontrolcomponent_modifiedonbehalfby - modifiedonbehalfby - sourcecontrolcomponent - modifiedonbehalfby + lk_msdyn_pmtemplate_createdby + createdby + msdyn_pmtemplate + createdby 0 - 2ffa8634-b4ba-f011-bbd3-7c1e52365f30 + f462f176-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_sourcecontrolcomponentpayload_createdby + lk_msdyn_pmtemplate_createdonbehalfby None - 9.1.0.0 + 1.2.0.14 OneToManyRelationship DoNotDisplay @@ -379533,27 +429130,27 @@ false systemuserid systemuser - lk_sourcecontrolcomponentpayload_createdby - createdby - sourcecontrolcomponentpayload - createdby + lk_msdyn_pmtemplate_createdonbehalfby + createdonbehalfby + msdyn_pmtemplate + createdonbehalfby 0 - 35fa8634-b4ba-f011-bbd3-7c1e52365f30 + fa62f176-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_sourcecontrolcomponentpayload_createdonbehalfby + lk_msdyn_pmtemplate_modifiedby None - 9.1.0.0 + 1.2.0.14 OneToManyRelationship DoNotDisplay @@ -379587,27 +429184,27 @@ false systemuserid systemuser - lk_sourcecontrolcomponentpayload_createdonbehalfby - createdonbehalfby - sourcecontrolcomponentpayload - createdonbehalfby + lk_msdyn_pmtemplate_modifiedby + modifiedby + msdyn_pmtemplate + modifiedby 0 - 3bfa8634-b4ba-f011-bbd3-7c1e52365f30 + 0063f176-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_sourcecontrolcomponentpayload_modifiedby + lk_msdyn_pmtemplate_modifiedonbehalfby None - 9.1.0.0 + 1.2.0.14 OneToManyRelationship DoNotDisplay @@ -379641,27 +429238,27 @@ false systemuserid systemuser - lk_sourcecontrolcomponentpayload_modifiedby - modifiedby - sourcecontrolcomponentpayload - modifiedby + lk_msdyn_pmtemplate_modifiedonbehalfby + modifiedonbehalfby + msdyn_pmtemplate + modifiedonbehalfby 0 - 41fa8634-b4ba-f011-bbd3-7c1e52365f30 + 1263f176-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_sourcecontrolcomponentpayload_modifiedonbehalfby + user_msdyn_pmtemplate None - 9.1.0.0 + 1.2.0.14 OneToManyRelationship DoNotDisplay @@ -379695,27 +429292,27 @@ false systemuserid systemuser - lk_sourcecontrolcomponentpayload_modifiedonbehalfby - modifiedonbehalfby - sourcecontrolcomponentpayload - modifiedonbehalfby + user_msdyn_pmtemplate + owninguser + msdyn_pmtemplate + owninguser 0 - 4dfb8634-b4ba-f011-bbd3-7c1e52365f30 + d763f176-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_sourcecontrolconfiguration_createdby + lk_msdyn_pmview_createdby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -379749,15 +429346,15 @@ false systemuserid systemuser - lk_sourcecontrolconfiguration_createdby + lk_msdyn_pmview_createdby createdby - sourcecontrolconfiguration + msdyn_pmview createdby 0 - 59fb8634-b4ba-f011-bbd3-7c1e52365f30 + dd63f176-eeba-f011-bbd3-7c1e52365f30 false @@ -379767,9 +429364,9 @@ false true - lk_sourcecontrolconfiguration_createdonbehalfby + lk_msdyn_pmview_createdonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -379803,27 +429400,27 @@ false systemuserid systemuser - lk_sourcecontrolconfiguration_createdonbehalfby + lk_msdyn_pmview_createdonbehalfby createdonbehalfby - sourcecontrolconfiguration + msdyn_pmview createdonbehalfby 0 - 65fb8634-b4ba-f011-bbd3-7c1e52365f30 + e363f176-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_sourcecontrolconfiguration_modifiedby + lk_msdyn_pmview_modifiedby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -379857,15 +429454,15 @@ false systemuserid systemuser - lk_sourcecontrolconfiguration_modifiedby + lk_msdyn_pmview_modifiedby modifiedby - sourcecontrolconfiguration + msdyn_pmview modifiedby 0 - 6ffb8634-b4ba-f011-bbd3-7c1e52365f30 + e963f176-eeba-f011-bbd3-7c1e52365f30 false @@ -379875,9 +429472,9 @@ false true - lk_sourcecontrolconfiguration_modifiedonbehalfby + lk_msdyn_pmview_modifiedonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -379911,15 +429508,15 @@ false systemuserid systemuser - lk_sourcecontrolconfiguration_modifiedonbehalfby + lk_msdyn_pmview_modifiedonbehalfby modifiedonbehalfby - sourcecontrolconfiguration + msdyn_pmview modifiedonbehalfby 0 - cefb8634-b4ba-f011-bbd3-7c1e52365f30 + fb63f176-eeba-f011-bbd3-7c1e52365f30 false @@ -379929,9 +429526,9 @@ false true - lk_stagedsourcecontrolcomponent_createdby + user_msdyn_pmview None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -379965,15 +429562,69 @@ false systemuserid systemuser - lk_stagedsourcecontrolcomponent_createdby - createdby - stagedsourcecontrolcomponent - createdby + user_msdyn_pmview + owninguser + msdyn_pmview + owninguser 0 - d4fb8634-b4ba-f011-bbd3-7c1e52365f30 + 080a2877-e286-4804-8c57-cb3c404e9af6 + + false + + false + iscustomizable + false + + true + true + workflow_dependency_modifiedby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + workflow_dependency_modifiedby + modifiedby + workflowdependency + modifiedby + + 0 + + + 9b514577-524d-f111-bec7-002248a2a8d1 false @@ -379983,9 +429634,9 @@ false true - lk_stagedsourcecontrolcomponent_createdonbehalfby + lk_flowgroup_createdby None - 9.1.0.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -380019,27 +429670,27 @@ false systemuserid systemuser - lk_stagedsourcecontrolcomponent_createdonbehalfby - createdonbehalfby - stagedsourcecontrolcomponent - createdonbehalfby + lk_flowgroup_createdby + createdby + flowgroup + createdby 0 - dafb8634-b4ba-f011-bbd3-7c1e52365f30 + a1514577-524d-f111-bec7-002248a2a8d1 false true iscustomizable - false + true false true - lk_stagedsourcecontrolcomponent_modifiedby + lk_flowgroup_createdonbehalfby None - 9.1.0.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -380073,15 +429724,15 @@ false systemuserid systemuser - lk_stagedsourcecontrolcomponent_modifiedby - modifiedby - stagedsourcecontrolcomponent - modifiedby + lk_flowgroup_createdonbehalfby + createdonbehalfby + flowgroup + createdonbehalfby 0 - e0fb8634-b4ba-f011-bbd3-7c1e52365f30 + a7514577-524d-f111-bec7-002248a2a8d1 false @@ -380091,9 +429742,9 @@ false true - lk_stagedsourcecontrolcomponent_modifiedonbehalfby + lk_flowgroup_modifiedby None - 9.1.0.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -380127,15 +429778,15 @@ false systemuserid systemuser - lk_stagedsourcecontrolcomponent_modifiedonbehalfby - modifiedonbehalfby - stagedsourcecontrolcomponent - modifiedonbehalfby + lk_flowgroup_modifiedby + modifiedby + flowgroup + modifiedby 0 - 3362a098-b4ba-f011-bbd3-7c1e52365f30 + ad514577-524d-f111-bec7-002248a2a8d1 false @@ -380145,9 +429796,9 @@ false true - lk_msdyn_dataflow_createdby + lk_flowgroup_modifiedonbehalfby None - 1.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -380181,15 +429832,15 @@ false systemuserid systemuser - lk_msdyn_dataflow_createdby - createdby - msdyn_dataflow - createdby + lk_flowgroup_modifiedonbehalfby + modifiedonbehalfby + flowgroup + modifiedonbehalfby 0 - 3a62a098-b4ba-f011-bbd3-7c1e52365f30 + bf514577-524d-f111-bec7-002248a2a8d1 false @@ -380199,9 +429850,9 @@ false true - lk_msdyn_dataflow_createdonbehalfby + user_flowgroup None - 1.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -380235,15 +429886,15 @@ false systemuserid systemuser - lk_msdyn_dataflow_createdonbehalfby - createdonbehalfby - msdyn_dataflow - createdonbehalfby + user_flowgroup + owninguser + flowgroup + owninguser 0 - 4162a098-b4ba-f011-bbd3-7c1e52365f30 + d5e84f77-e1ba-f011-bbd3-7c1e52365f30 false @@ -380253,9 +429904,9 @@ false true - lk_msdyn_dataflow_modifiedby + lk_msdyn_entitylinkchatconfiguration_createdby None - 1.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -380289,15 +429940,15 @@ false systemuserid systemuser - lk_msdyn_dataflow_modifiedby - modifiedby - msdyn_dataflow - modifiedby + lk_msdyn_entitylinkchatconfiguration_createdby + createdby + msdyn_entitylinkchatconfiguration + createdby 0 - 4862a098-b4ba-f011-bbd3-7c1e52365f30 + dee84f77-e1ba-f011-bbd3-7c1e52365f30 false @@ -380307,9 +429958,9 @@ false true - lk_msdyn_dataflow_modifiedonbehalfby + lk_msdyn_entitylinkchatconfiguration_createdonbehalfby None - 1.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -380343,15 +429994,15 @@ false systemuserid systemuser - lk_msdyn_dataflow_modifiedonbehalfby - modifiedonbehalfby - msdyn_dataflow - modifiedonbehalfby + lk_msdyn_entitylinkchatconfiguration_createdonbehalfby + createdonbehalfby + msdyn_entitylinkchatconfiguration + createdonbehalfby 0 - 5c62a098-b4ba-f011-bbd3-7c1e52365f30 + e4e84f77-e1ba-f011-bbd3-7c1e52365f30 false @@ -380361,9 +430012,9 @@ false true - user_msdyn_dataflow + lk_msdyn_entitylinkchatconfiguration_modifiedby None - 1.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -380397,15 +430048,15 @@ false systemuserid systemuser - user_msdyn_dataflow - owninguser - msdyn_dataflow - owninguser + lk_msdyn_entitylinkchatconfiguration_modifiedby + modifiedby + msdyn_entitylinkchatconfiguration + modifiedby 0 - a566a098-b4ba-f011-bbd3-7c1e52365f30 + eae84f77-e1ba-f011-bbd3-7c1e52365f30 false @@ -380415,9 +430066,9 @@ false true - lk_msdyn_dataflowrefreshhistory_createdby + lk_msdyn_entitylinkchatconfiguration_modifiedonbehalfby None - 1.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -380451,15 +430102,15 @@ false systemuserid systemuser - lk_msdyn_dataflowrefreshhistory_createdby - createdby - msdyn_dataflowrefreshhistory - createdby + lk_msdyn_entitylinkchatconfiguration_modifiedonbehalfby + modifiedonbehalfby + msdyn_entitylinkchatconfiguration + modifiedonbehalfby 0 - ac66a098-b4ba-f011-bbd3-7c1e52365f30 + fce84f77-e1ba-f011-bbd3-7c1e52365f30 false @@ -380469,9 +430120,9 @@ false true - lk_msdyn_dataflowrefreshhistory_createdonbehalfby + user_msdyn_entitylinkchatconfiguration None - 1.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -380505,27 +430156,27 @@ false systemuserid systemuser - lk_msdyn_dataflowrefreshhistory_createdonbehalfby - createdonbehalfby - msdyn_dataflowrefreshhistory - createdonbehalfby + user_msdyn_entitylinkchatconfiguration + owninguser + msdyn_entitylinkchatconfiguration + owninguser 0 - b466a098-b4ba-f011-bbd3-7c1e52365f30 + 22246577-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_dataflowrefreshhistory_modifiedby + lk_msdyn_aibfile_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -380559,15 +430210,15 @@ false systemuserid systemuser - lk_msdyn_dataflowrefreshhistory_modifiedby - modifiedby - msdyn_dataflowrefreshhistory - modifiedby + lk_msdyn_aibfile_createdby + createdby + msdyn_aibfile + createdby 0 - bb66a098-b4ba-f011-bbd3-7c1e52365f30 + 28246577-bfba-f011-bbd3-7c1e52365f30 false @@ -380577,9 +430228,9 @@ false true - lk_msdyn_dataflowrefreshhistory_modifiedonbehalfby + lk_msdyn_aibfile_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -380613,27 +430264,27 @@ false systemuserid systemuser - lk_msdyn_dataflowrefreshhistory_modifiedonbehalfby - modifiedonbehalfby - msdyn_dataflowrefreshhistory - modifiedonbehalfby + lk_msdyn_aibfile_createdonbehalfby + createdonbehalfby + msdyn_aibfile + createdonbehalfby 0 - cf66a098-b4ba-f011-bbd3-7c1e52365f30 + 2e246577-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_msdyn_dataflowrefreshhistory + lk_msdyn_aibfile_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -380667,15 +430318,15 @@ false systemuserid systemuser - user_msdyn_dataflowrefreshhistory - owninguser - msdyn_dataflowrefreshhistory - owninguser + lk_msdyn_aibfile_modifiedby + modifiedby + msdyn_aibfile + modifiedby 0 - e267a098-b4ba-f011-bbd3-7c1e52365f30 + 34246577-bfba-f011-bbd3-7c1e52365f30 false @@ -380685,9 +430336,9 @@ false true - lk_msdyn_entityrefreshhistory_createdby + lk_msdyn_aibfile_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -380721,27 +430372,27 @@ false systemuserid systemuser - lk_msdyn_entityrefreshhistory_createdby - createdby - msdyn_entityrefreshhistory - createdby + lk_msdyn_aibfile_modifiedonbehalfby + modifiedonbehalfby + msdyn_aibfile + modifiedonbehalfby 0 - ea67a098-b4ba-f011-bbd3-7c1e52365f30 + 46246577-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_entityrefreshhistory_createdonbehalfby + user_msdyn_aibfile None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -380775,27 +430426,27 @@ false systemuserid systemuser - lk_msdyn_entityrefreshhistory_createdonbehalfby - createdonbehalfby - msdyn_entityrefreshhistory - createdonbehalfby + user_msdyn_aibfile + owninguser + msdyn_aibfile + owninguser 0 - f067a098-b4ba-f011-bbd3-7c1e52365f30 + f0246577-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_entityrefreshhistory_modifiedby + lk_msdyn_aibfileattacheddata_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -380829,15 +430480,15 @@ false systemuserid systemuser - lk_msdyn_entityrefreshhistory_modifiedby - modifiedby - msdyn_entityrefreshhistory - modifiedby + lk_msdyn_aibfileattacheddata_createdby + createdby + msdyn_aibfileattacheddata + createdby 0 - f767a098-b4ba-f011-bbd3-7c1e52365f30 + f6246577-bfba-f011-bbd3-7c1e52365f30 false @@ -380847,9 +430498,9 @@ false true - lk_msdyn_entityrefreshhistory_modifiedonbehalfby + lk_msdyn_aibfileattacheddata_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -380883,27 +430534,27 @@ false systemuserid systemuser - lk_msdyn_entityrefreshhistory_modifiedonbehalfby - modifiedonbehalfby - msdyn_entityrefreshhistory - modifiedonbehalfby + lk_msdyn_aibfileattacheddata_createdonbehalfby + createdonbehalfby + msdyn_aibfileattacheddata + createdonbehalfby 0 - 0b68a098-b4ba-f011-bbd3-7c1e52365f30 + fc246577-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_msdyn_entityrefreshhistory + lk_msdyn_aibfileattacheddata_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -380937,15 +430588,15 @@ false systemuserid systemuser - user_msdyn_entityrefreshhistory - owninguser - msdyn_entityrefreshhistory - owninguser + lk_msdyn_aibfileattacheddata_modifiedby + modifiedby + msdyn_aibfileattacheddata + modifiedby 0 - 89807ae5-b4ba-f011-bbd3-7c1e52365f30 + 02256577-bfba-f011-bbd3-7c1e52365f30 false @@ -380955,9 +430606,9 @@ false true - lk_sharedlinksetting_createdby + lk_msdyn_aibfileattacheddata_modifiedonbehalfby None - 1.69.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -380991,27 +430642,27 @@ false systemuserid systemuser - lk_sharedlinksetting_createdby - createdby - sharedlinksetting - createdby + lk_msdyn_aibfileattacheddata_modifiedonbehalfby + modifiedonbehalfby + msdyn_aibfileattacheddata + modifiedonbehalfby 0 - 8f807ae5-b4ba-f011-bbd3-7c1e52365f30 + 14256577-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_sharedlinksetting_createdonbehalfby + user_msdyn_aibfileattacheddata None - 1.69.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -381045,30 +430696,30 @@ false systemuserid systemuser - lk_sharedlinksetting_createdonbehalfby - createdonbehalfby - sharedlinksetting - createdonbehalfby + user_msdyn_aibfileattacheddata + owninguser + msdyn_aibfileattacheddata + owninguser 0 - 95807ae5-b4ba-f011-bbd3-7c1e52365f30 + 944a6577-777c-11e0-a0f5-1cc1de634cfe false - true + false iscustomizable - true + false - false + true true - lk_sharedlinksetting_modifiedby + lk_postlike_createdby None - 1.69.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -381099,27 +430750,27 @@ false systemuserid systemuser - lk_sharedlinksetting_modifiedby - modifiedby - sharedlinksetting - modifiedby + lk_postlike_createdby + createdby + postlike + createdby 0 - 9b807ae5-b4ba-f011-bbd3-7c1e52365f30 + 93f6d977-76be-40e7-8fa8-3577301573d4 false - true + false iscustomizable true - false + true true - lk_sharedlinksetting_modifiedonbehalfby + lk_systemuser_modifiedonbehalfby None - 1.69.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -381153,15 +430804,15 @@ false systemuserid systemuser - lk_sharedlinksetting_modifiedonbehalfby + lk_systemuser_modifiedonbehalfby modifiedonbehalfby - sharedlinksetting + systemuser modifiedonbehalfby 0 - 785dd714-b5ba-f011-bbd3-7c1e52365f30 + cd102b78-1fdd-4aaf-973c-c34552899c59 false @@ -381171,9 +430822,9 @@ true true - lk_entityrecordfilter_createdby + lk_ChannelProperty_createdby None - 9.2.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -381207,27 +430858,27 @@ false systemuserid systemuser - lk_entityrecordfilter_createdby + lk_ChannelProperty_createdby createdby - entityrecordfilter + channelproperty createdby 0 - 7e5dd714-b5ba-f011-bbd3-7c1e52365f30 + e509c878-8e00-4dc1-9643-50ad55924227 false false iscustomizable - true + false true true - lk_entityrecordfilter_createdonbehalfby + lk_publisheraddressbase_createdby None - 9.2.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -381261,27 +430912,27 @@ false systemuserid systemuser - lk_entityrecordfilter_createdonbehalfby - createdonbehalfby - entityrecordfilter - createdonbehalfby + lk_publisheraddressbase_createdby + createdby + publisheraddress + createdby 0 - 845dd714-b5ba-f011-bbd3-7c1e52365f30 + 3ca6eb78-ef90-4784-a92a-5a3aff9f2e5e false false iscustomizable - true + false true true - lk_entityrecordfilter_modifiedby + lk_processsession_createdby None - 9.2.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -381315,27 +430966,27 @@ false systemuserid systemuser - lk_entityrecordfilter_modifiedby - modifiedby - entityrecordfilter - modifiedby + lk_processsession_createdby + createdby + processsession + createdby 0 - 8a5dd714-b5ba-f011-bbd3-7c1e52365f30 + 62a2fa78-d3bb-4031-8688-f1370cde5e23 false false iscustomizable - true + false true - true - lk_entityrecordfilter_modifiedonbehalfby + false + lk_sdkmessageresponsefield_createdonbehalfby None - 9.2.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -381369,27 +431020,27 @@ false systemuserid systemuser - lk_entityrecordfilter_modifiedonbehalfby - modifiedonbehalfby - entityrecordfilter - modifiedonbehalfby + lk_sdkmessageresponsefield_createdonbehalfby + createdonbehalfby + sdkmessageresponsefield + createdonbehalfby 0 - 965ed714-b5ba-f011-bbd3-7c1e52365f30 + b87b3379-f5ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_privilegesremovalsetting_createdby + lk_mspcat_catalogsubmissionfiles_createdby None - 1.69.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -381423,27 +431074,27 @@ false systemuserid systemuser - lk_privilegesremovalsetting_createdby + lk_mspcat_catalogsubmissionfiles_createdby createdby - privilegesremovalsetting + mspcat_catalogsubmissionfiles createdby 0 - 9c5ed714-b5ba-f011-bbd3-7c1e52365f30 + be7b3379-f5ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_privilegesremovalsetting_createdonbehalfby + lk_mspcat_catalogsubmissionfiles_createdonbehalfby None - 1.69.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -381477,27 +431128,27 @@ false systemuserid systemuser - lk_privilegesremovalsetting_createdonbehalfby + lk_mspcat_catalogsubmissionfiles_createdonbehalfby createdonbehalfby - privilegesremovalsetting + mspcat_catalogsubmissionfiles createdonbehalfby 0 - a65ed714-b5ba-f011-bbd3-7c1e52365f30 + c47b3379-f5ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_privilegesremovalsetting_modifiedby + lk_mspcat_catalogsubmissionfiles_modifiedby None - 1.69.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -381531,27 +431182,27 @@ false systemuserid systemuser - lk_privilegesremovalsetting_modifiedby + lk_mspcat_catalogsubmissionfiles_modifiedby modifiedby - privilegesremovalsetting + mspcat_catalogsubmissionfiles modifiedby 0 - ac5ed714-b5ba-f011-bbd3-7c1e52365f30 + ca7b3379-f5ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_privilegesremovalsetting_modifiedonbehalfby + lk_mspcat_catalogsubmissionfiles_modifiedonbehalfby None - 1.69.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -381585,27 +431236,27 @@ false systemuserid systemuser - lk_privilegesremovalsetting_modifiedonbehalfby + lk_mspcat_catalogsubmissionfiles_modifiedonbehalfby modifiedonbehalfby - privilegesremovalsetting + mspcat_catalogsubmissionfiles modifiedonbehalfby 0 - 895fd714-b5ba-f011-bbd3-7c1e52365f30 + dc7b3379-f5ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_recordfilter_createdby + user_mspcat_catalogsubmissionfiles None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -381639,27 +431290,81 @@ false systemuserid systemuser - lk_recordfilter_createdby + user_mspcat_catalogsubmissionfiles + owninguser + mspcat_catalogsubmissionfiles + owninguser + + 0 + + + af7c3379-f5ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_mspcat_packagestore_createdby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_mspcat_packagestore_createdby createdby - recordfilter + mspcat_packagestore createdby 0 - 8f5fd714-b5ba-f011-bbd3-7c1e52365f30 + b57c3379-f5ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_recordfilter_createdonbehalfby + lk_mspcat_packagestore_createdonbehalfby None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -381693,27 +431398,27 @@ false systemuserid systemuser - lk_recordfilter_createdonbehalfby + lk_mspcat_packagestore_createdonbehalfby createdonbehalfby - recordfilter + mspcat_packagestore createdonbehalfby 0 - 955fd714-b5ba-f011-bbd3-7c1e52365f30 + bb7c3379-f5ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_recordfilter_modifiedby + lk_mspcat_packagestore_modifiedby None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -381747,27 +431452,27 @@ false systemuserid systemuser - lk_recordfilter_modifiedby + lk_mspcat_packagestore_modifiedby modifiedby - recordfilter + mspcat_packagestore modifiedby 0 - 9b5fd714-b5ba-f011-bbd3-7c1e52365f30 + c17c3379-f5ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_recordfilter_modifiedonbehalfby + lk_mspcat_packagestore_modifiedonbehalfby None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -381801,36 +431506,36 @@ false systemuserid systemuser - lk_recordfilter_modifiedonbehalfby + lk_mspcat_packagestore_modifiedonbehalfby modifiedonbehalfby - recordfilter + mspcat_packagestore modifiedonbehalfby 0 - 2bfbcf1a-b5ba-f011-bbd3-7c1e52365f30 + d37c3379-f5ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_userauthztracker - Append - 9.1.0.0 + user_mspcat_packagestore + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -381841,7 +431546,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -381855,15 +431560,15 @@ false systemuserid systemuser - user_userauthztracker - systemuserid - systemuserauthorizationchangetracker - systemuserid_userauthztracker + user_mspcat_packagestore + owninguser + mspcat_packagestore + owninguser - 1 + 0 - 14a6532a-27e9-4bcd-a1e2-94c82a2fdf1e + 6df03779-c53a-419a-9bc5-0a30d4d13bc0 false @@ -381873,8 +431578,8 @@ true true - user_settings - Append + lk_savedquerybase_modifiedby + None 5.0.0.0 OneToManyRelationship @@ -381895,7 +431600,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -381909,27 +431614,27 @@ false systemuserid systemuser - user_settings - systemuserid - usersettings - systemuserid_systemuser + lk_savedquerybase_modifiedby + modifiedby + savedquery + modifiedby - 1 + 0 - fc291316-be3b-485b-b2b0-55871c32a94d + 7ed67679-bc5d-f111-a826-7ced8d776baf false - false + true iscustomizable - false + true - true + false true - systemuser_internal_addresses + lk_msec_cleanup_createdby None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -381949,7 +431654,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -381963,15 +431668,15 @@ false systemuserid systemuser - systemuser_internal_addresses - parentid - internaladdress - parentid_systemuser + lk_msec_cleanup_createdby + createdby + msec_cleanup + createdby 0 - f5daae96-b5ba-f011-bbd3-7c1e52365f30 + 84d67679-bc5d-f111-a826-7ced8d776baf false @@ -381981,9 +431686,9 @@ false true - lk_delegatedauthorization_createdby + lk_msec_cleanup_createdonbehalfby None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -382017,15 +431722,15 @@ false systemuserid systemuser - lk_delegatedauthorization_createdby - createdby - delegatedauthorization - createdby + lk_msec_cleanup_createdonbehalfby + createdonbehalfby + msec_cleanup + createdonbehalfby 0 - fbdaae96-b5ba-f011-bbd3-7c1e52365f30 + 8ad67679-bc5d-f111-a826-7ced8d776baf false @@ -382035,9 +431740,9 @@ false true - lk_delegatedauthorization_createdonbehalfby + lk_msec_cleanup_modifiedby None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -382071,15 +431776,15 @@ false systemuserid systemuser - lk_delegatedauthorization_createdonbehalfby - createdonbehalfby - delegatedauthorization - createdonbehalfby + lk_msec_cleanup_modifiedby + modifiedby + msec_cleanup + modifiedby 0 - 01dbae96-b5ba-f011-bbd3-7c1e52365f30 + 90d67679-bc5d-f111-a826-7ced8d776baf false @@ -382089,9 +431794,9 @@ false true - lk_delegatedauthorization_modifiedby + lk_msec_cleanup_modifiedonbehalfby None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -382125,15 +431830,15 @@ false systemuserid systemuser - lk_delegatedauthorization_modifiedby - modifiedby - delegatedauthorization - modifiedby + lk_msec_cleanup_modifiedonbehalfby + modifiedonbehalfby + msec_cleanup + modifiedonbehalfby 0 - 07dbae96-b5ba-f011-bbd3-7c1e52365f30 + abd67679-bc5d-f111-a826-7ced8d776baf false @@ -382143,9 +431848,9 @@ false true - lk_delegatedauthorization_modifiedonbehalfby + user_msec_cleanup None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -382179,27 +431884,27 @@ false systemuserid systemuser - lk_delegatedauthorization_modifiedonbehalfby - modifiedonbehalfby - delegatedauthorization - modifiedonbehalfby + user_msec_cleanup + owninguser + msec_cleanup + owninguser 0 - 75fa85de-b5ba-f011-bbd3-7c1e52365f30 + ae5cc579-3684-4c3c-80e6-019f66d9dcd1 false - true + false iscustomizable - true + false - false + true true - lk_privilegecheckerlog_createdby + lk_userqueryvisualizationbase_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -382233,30 +431938,30 @@ false systemuserid systemuser - lk_privilegecheckerlog_createdby - createdby - privilegecheckerlog - createdby + lk_userqueryvisualizationbase_modifiedonbehalfby + modifiedonbehalfby + userqueryvisualization + modifiedonbehalfby 0 - 7bfa85de-b5ba-f011-bbd3-7c1e52365f30 + fb96fc79-febc-4845-aa13-a7364bfa8e02 false - true + false iscustomizable true - false + true true - lk_privilegecheckerlog_createdonbehalfby + lk_externalpartyitem_createdonbehalfby None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -382287,27 +431992,27 @@ false systemuserid systemuser - lk_privilegecheckerlog_createdonbehalfby + lk_externalpartyitem_createdonbehalfby createdonbehalfby - privilegecheckerlog + externalpartyitem createdonbehalfby 0 - 81fa85de-b5ba-f011-bbd3-7c1e52365f30 + f8e5337a-8ba2-477d-a332-9af19186397b false - true + false iscustomizable true - false + true true - lk_privilegecheckerlog_modifiedby + lk_sharepointdocumentbase_createdonbehalfby None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -382319,8 +432024,8 @@ true - false - + true + navSPDocuments 00000000-0000-0000-0000-000000000000 @@ -382341,27 +432046,27 @@ false systemuserid systemuser - lk_privilegecheckerlog_modifiedby - modifiedby - privilegecheckerlog - modifiedby + lk_sharepointdocumentbase_createdonbehalfby + createdonbehalfby + sharepointdocument + createdonbehalfby 0 - 87fa85de-b5ba-f011-bbd3-7c1e52365f30 + dffaad7a-8faf-43c9-8e99-8feb9d353552 false - true + false iscustomizable - true + false - false - true - lk_privilegecheckerlog_modifiedonbehalfby + true + false + lk_sdkmessagerequestfield_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -382395,27 +432100,27 @@ false systemuserid systemuser - lk_privilegecheckerlog_modifiedonbehalfby - modifiedonbehalfby - privilegecheckerlog - modifiedonbehalfby + lk_sdkmessagerequestfield_createdonbehalfby + createdonbehalfby + sdkmessagerequestfield + createdonbehalfby 0 - 11fb85de-b5ba-f011-bbd3-7c1e52365f30 + 2d58b57a-d664-44c7-81c7-f7c9b2b65b0a false - true + false iscustomizable - true + false - false - true - lk_privilegecheckerrun_createdby + true + false + lk_entitymap_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -382449,27 +432154,27 @@ false systemuserid systemuser - lk_privilegecheckerrun_createdby - createdby - privilegecheckerrun - createdby + lk_entitymap_modifiedonbehalfby + modifiedonbehalfby + entitymap + modifiedonbehalfby 0 - 17fb85de-b5ba-f011-bbd3-7c1e52365f30 + 88a1bb7a-667e-4358-8ad8-f309a967f993 false - true + false iscustomizable - true + false - false + true true - lk_privilegecheckerrun_createdonbehalfby + lk_businessunitnewsarticle_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -382503,27 +432208,27 @@ false systemuserid systemuser - lk_privilegecheckerrun_createdonbehalfby + lk_businessunitnewsarticle_createdonbehalfby createdonbehalfby - privilegecheckerrun + businessunitnewsarticle createdonbehalfby 0 - 1dfb85de-b5ba-f011-bbd3-7c1e52365f30 + 712bbd7a-3c81-4c51-bc4e-2e6d5c549b0f false - true + false iscustomizable - true + false - false + true true - lk_privilegecheckerrun_modifiedby + lk_teamtemplate_createdonbehalfby None - 1.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -382557,27 +432262,27 @@ false systemuserid systemuser - lk_privilegecheckerrun_modifiedby - modifiedby - privilegecheckerrun - modifiedby + lk_teamtemplate_createdonbehalfby + createdonbehalfby + teamtemplate + createdonbehalfby 0 - 23fb85de-b5ba-f011-bbd3-7c1e52365f30 + 31e8587b-ef7e-4913-aed6-ca809adb5051 false - true + false iscustomizable - true + false - false - true - lk_privilegecheckerrun_modifiedonbehalfby + true + false + lk_annualfiscalcalendar_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -382611,15 +432316,15 @@ false systemuserid systemuser - lk_privilegecheckerrun_modifiedonbehalfby + lk_annualfiscalcalendar_modifiedonbehalfby modifiedonbehalfby - privilegecheckerrun + annualfiscalcalendar modifiedonbehalfby 0 - 35fb85de-b5ba-f011-bbd3-7c1e52365f30 + 63d9a47b-cbba-f011-bbd3-7c1e52365f30 false @@ -382629,7 +432334,7 @@ false true - user_privilegecheckerrun + lk_msdyn_historicalcaseharvestrun_createdby None 1.0 OneToManyRelationship @@ -382665,69 +432370,15 @@ false systemuserid systemuser - user_privilegecheckerrun - owninguser - privilegecheckerrun - owninguser - - 0 - - - c87aa9e4-b5ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - privilegecheckerlog_CheckedUser_systemuser - None - 1.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - 10000 - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - RemoveLink - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - privilegecheckerlog_CheckedUser_systemuser - checkeduser - privilegecheckerlog - CheckedUser + lk_msdyn_historicalcaseharvestrun_createdby + createdby + msdyn_historicalcaseharvestrun + createdby 0 - d57aa9e4-b5ba-f011-bbd3-7c1e52365f30 + 69d9a47b-cbba-f011-bbd3-7c1e52365f30 false @@ -382737,18 +432388,18 @@ false true - privilegecheckerlog_ImpersonatingUser_systemuser + lk_msdyn_historicalcaseharvestrun_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -382757,9 +432408,9 @@ 00000000-0000-0000-0000-000000000000 - RemoveLink + NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -382773,15 +432424,15 @@ false systemuserid systemuser - privilegecheckerlog_ImpersonatingUser_systemuser - impersonatinguser - privilegecheckerlog - ImpersonatingUser + lk_msdyn_historicalcaseharvestrun_createdonbehalfby + createdonbehalfby + msdyn_historicalcaseharvestrun + createdonbehalfby 0 - dc7aa9e4-b5ba-f011-bbd3-7c1e52365f30 + 6fd9a47b-cbba-f011-bbd3-7c1e52365f30 false @@ -382791,18 +432442,18 @@ false true - privilegecheckerlog_SupportingCaller_systemuser + lk_msdyn_historicalcaseharvestrun_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -382811,9 +432462,9 @@ 00000000-0000-0000-0000-000000000000 - RemoveLink + NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -382827,15 +432478,15 @@ false systemuserid systemuser - privilegecheckerlog_SupportingCaller_systemuser - supportingcaller - privilegecheckerlog - SupportingCaller + lk_msdyn_historicalcaseharvestrun_modifiedby + modifiedby + msdyn_historicalcaseharvestrun + modifiedby 0 - ceb19e93-b6ba-f011-bbd3-7c1e52365f30 + 75d9a47b-cbba-f011-bbd3-7c1e52365f30 false @@ -382845,9 +432496,9 @@ false true - lk_revokeinheritedaccessrecordstracker_createdby + lk_msdyn_historicalcaseharvestrun_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -382881,15 +432532,15 @@ false systemuserid systemuser - lk_revokeinheritedaccessrecordstracker_createdby - createdby - revokeinheritedaccessrecordstracker - createdby + lk_msdyn_historicalcaseharvestrun_modifiedonbehalfby + modifiedonbehalfby + msdyn_historicalcaseharvestrun + modifiedonbehalfby 0 - d4b19e93-b6ba-f011-bbd3-7c1e52365f30 + 87d9a47b-cbba-f011-bbd3-7c1e52365f30 false @@ -382899,9 +432550,9 @@ false true - lk_revokeinheritedaccessrecordstracker_createdonbehalfby + user_msdyn_historicalcaseharvestrun None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -382935,15 +432586,15 @@ false systemuserid systemuser - lk_revokeinheritedaccessrecordstracker_createdonbehalfby - createdonbehalfby - revokeinheritedaccessrecordstracker - createdonbehalfby + user_msdyn_historicalcaseharvestrun + owninguser + msdyn_historicalcaseharvestrun + owninguser 0 - dab19e93-b6ba-f011-bbd3-7c1e52365f30 + 5ddaa47b-cbba-f011-bbd3-7c1e52365f30 false @@ -382953,9 +432604,9 @@ false true - lk_revokeinheritedaccessrecordstracker_modifiedby + lk_msdyn_interimupdateknowledgearticle_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -382989,15 +432640,15 @@ false systemuserid systemuser - lk_revokeinheritedaccessrecordstracker_modifiedby - modifiedby - revokeinheritedaccessrecordstracker - modifiedby + lk_msdyn_interimupdateknowledgearticle_createdby + createdby + msdyn_interimupdateknowledgearticle + createdby 0 - e0b19e93-b6ba-f011-bbd3-7c1e52365f30 + 63daa47b-cbba-f011-bbd3-7c1e52365f30 false @@ -383007,9 +432658,9 @@ false true - lk_revokeinheritedaccessrecordstracker_modifiedonbehalfby + lk_msdyn_interimupdateknowledgearticle_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -383043,15 +432694,15 @@ false systemuserid systemuser - lk_revokeinheritedaccessrecordstracker_modifiedonbehalfby - modifiedonbehalfby - revokeinheritedaccessrecordstracker - modifiedonbehalfby + lk_msdyn_interimupdateknowledgearticle_createdonbehalfby + createdonbehalfby + msdyn_interimupdateknowledgearticle + createdonbehalfby 0 - 877765d3-b6ba-f011-bbd3-7c1e52365f30 + 69daa47b-cbba-f011-bbd3-7c1e52365f30 false @@ -383061,7 +432712,7 @@ false true - lk_tdsmetadata_createdby + lk_msdyn_interimupdateknowledgearticle_modifiedby None 1.0 OneToManyRelationship @@ -383097,15 +432748,15 @@ false systemuserid systemuser - lk_tdsmetadata_createdby - createdby - tdsmetadata - createdby + lk_msdyn_interimupdateknowledgearticle_modifiedby + modifiedby + msdyn_interimupdateknowledgearticle + modifiedby 0 - 8d7765d3-b6ba-f011-bbd3-7c1e52365f30 + 6fdaa47b-cbba-f011-bbd3-7c1e52365f30 false @@ -383115,7 +432766,7 @@ false true - lk_tdsmetadata_createdonbehalfby + lk_msdyn_interimupdateknowledgearticle_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -383151,15 +432802,15 @@ false systemuserid systemuser - lk_tdsmetadata_createdonbehalfby - createdonbehalfby - tdsmetadata - createdonbehalfby + lk_msdyn_interimupdateknowledgearticle_modifiedonbehalfby + modifiedonbehalfby + msdyn_interimupdateknowledgearticle + modifiedonbehalfby 0 - 937765d3-b6ba-f011-bbd3-7c1e52365f30 + 81daa47b-cbba-f011-bbd3-7c1e52365f30 false @@ -383169,7 +432820,7 @@ false true - lk_tdsmetadata_modifiedby + user_msdyn_interimupdateknowledgearticle None 1.0 OneToManyRelationship @@ -383205,15 +432856,15 @@ false systemuserid systemuser - lk_tdsmetadata_modifiedby - modifiedby - tdsmetadata - modifiedby + user_msdyn_interimupdateknowledgearticle + owninguser + msdyn_interimupdateknowledgearticle + owninguser 0 - 997765d3-b6ba-f011-bbd3-7c1e52365f30 + 1cdba47b-cbba-f011-bbd3-7c1e52365f30 false @@ -383223,9 +432874,9 @@ false true - lk_tdsmetadata_modifiedonbehalfby + lk_msdyn_knowledgearticlecustomentity_createdby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -383259,15 +432910,15 @@ false systemuserid systemuser - lk_tdsmetadata_modifiedonbehalfby - modifiedonbehalfby - tdsmetadata - modifiedonbehalfby + lk_msdyn_knowledgearticlecustomentity_createdby + createdby + msdyn_knowledgearticlecustomentity + createdby 0 - ab7765d3-b6ba-f011-bbd3-7c1e52365f30 + 22dba47b-cbba-f011-bbd3-7c1e52365f30 false @@ -383277,9 +432928,9 @@ false true - user_tdsmetadata + lk_msdyn_knowledgearticlecustomentity_createdonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -383313,25 +432964,25 @@ false systemuserid systemuser - user_tdsmetadata - owninguser - tdsmetadata - owninguser + lk_msdyn_knowledgearticlecustomentity_createdonbehalfby + createdonbehalfby + msdyn_knowledgearticlecustomentity + createdonbehalfby 0 - 84aca606-b7ba-f011-bbd3-7c1e52365f30 + 28dba47b-cbba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_appelement_createdby + lk_msdyn_knowledgearticlecustomentity_modifiedby None 9.1.0.0 OneToManyRelationship @@ -383367,15 +433018,15 @@ false systemuserid systemuser - lk_appelement_createdby - createdby - appelement - createdby + lk_msdyn_knowledgearticlecustomentity_modifiedby + modifiedby + msdyn_knowledgearticlecustomentity + modifiedby 0 - 8aaca606-b7ba-f011-bbd3-7c1e52365f30 + 2edba47b-cbba-f011-bbd3-7c1e52365f30 false @@ -383385,7 +433036,7 @@ false true - lk_appelement_createdonbehalfby + lk_msdyn_knowledgearticlecustomentity_modifiedonbehalfby None 9.1.0.0 OneToManyRelationship @@ -383421,25 +433072,25 @@ false systemuserid systemuser - lk_appelement_createdonbehalfby - createdonbehalfby - appelement - createdonbehalfby + lk_msdyn_knowledgearticlecustomentity_modifiedonbehalfby + modifiedonbehalfby + msdyn_knowledgearticlecustomentity + modifiedonbehalfby 0 - 90aca606-b7ba-f011-bbd3-7c1e52365f30 + 40dba47b-cbba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_appelement_modifiedby + user_msdyn_knowledgearticlecustomentity None 9.1.0.0 OneToManyRelationship @@ -383475,15 +433126,15 @@ false systemuserid systemuser - lk_appelement_modifiedby - modifiedby - appelement - modifiedby + user_msdyn_knowledgearticlecustomentity + owninguser + msdyn_knowledgearticlecustomentity + owninguser 0 - 96aca606-b7ba-f011-bbd3-7c1e52365f30 + 3ddca47b-cbba-f011-bbd3-7c1e52365f30 false @@ -383493,9 +433144,9 @@ false true - lk_appelement_modifiedonbehalfby + lk_msdyn_knowledgeharvestjobrecord_createdby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -383529,27 +433180,27 @@ false systemuserid systemuser - lk_appelement_modifiedonbehalfby - modifiedonbehalfby - appelement - modifiedonbehalfby + lk_msdyn_knowledgeharvestjobrecord_createdby + createdby + msdyn_knowledgeharvestjobrecord + createdby 0 - 36ada606-b7ba-f011-bbd3-7c1e52365f30 + 43dca47b-cbba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_appmodulecomponentedge_createdby + lk_msdyn_knowledgeharvestjobrecord_createdonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -383583,15 +433234,15 @@ false systemuserid systemuser - lk_appmodulecomponentedge_createdby - createdby - appmodulecomponentedge - createdby + lk_msdyn_knowledgeharvestjobrecord_createdonbehalfby + createdonbehalfby + msdyn_knowledgeharvestjobrecord + createdonbehalfby 0 - 3cada606-b7ba-f011-bbd3-7c1e52365f30 + 49dca47b-cbba-f011-bbd3-7c1e52365f30 false @@ -383601,9 +433252,9 @@ false true - lk_appmodulecomponentedge_createdonbehalfby + lk_msdyn_knowledgeharvestjobrecord_modifiedby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -383637,27 +433288,27 @@ false systemuserid systemuser - lk_appmodulecomponentedge_createdonbehalfby - createdonbehalfby - appmodulecomponentedge - createdonbehalfby + lk_msdyn_knowledgeharvestjobrecord_modifiedby + modifiedby + msdyn_knowledgeharvestjobrecord + modifiedby 0 - 42ada606-b7ba-f011-bbd3-7c1e52365f30 + 4fdca47b-cbba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_appmodulecomponentedge_modifiedby + lk_msdyn_knowledgeharvestjobrecord_modifiedonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -383691,15 +433342,15 @@ false systemuserid systemuser - lk_appmodulecomponentedge_modifiedby - modifiedby - appmodulecomponentedge - modifiedby + lk_msdyn_knowledgeharvestjobrecord_modifiedonbehalfby + modifiedonbehalfby + msdyn_knowledgeharvestjobrecord + modifiedonbehalfby 0 - 48ada606-b7ba-f011-bbd3-7c1e52365f30 + 61dca47b-cbba-f011-bbd3-7c1e52365f30 false @@ -383709,9 +433360,9 @@ false true - lk_appmodulecomponentedge_modifiedonbehalfby + user_msdyn_knowledgeharvestjobrecord None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -383745,27 +433396,135 @@ false systemuserid systemuser - lk_appmodulecomponentedge_modifiedonbehalfby - modifiedonbehalfby - appmodulecomponentedge - modifiedonbehalfby + user_msdyn_knowledgeharvestjobrecord + owninguser + msdyn_knowledgeharvestjobrecord + owninguser 0 - daada606-b7ba-f011-bbd3-7c1e52365f30 + 51e84e7c-9d5a-4543-8b20-593a30e50a48 + + false + + false + iscustomizable + true + + true + true + lk_mailboxtrackingfolder_createdonbehalfby + None + 7.1.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_mailboxtrackingfolder_createdonbehalfby + createdonbehalfby + mailboxtrackingfolder + createdonbehalfby + + 0 + + + 480fba7c-106a-4f6f-9656-64fa09538fc6 + + false + + false + iscustomizable + true + + true + true + lk_sharepointsitebase_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_sharepointsitebase_createdonbehalfby + createdonbehalfby + sharepointsite + createdonbehalfby + + 0 + + + 834d507d-ec24-f111-88b5-002248a21393 false true iscustomizable - false + true false true - lk_appmodulecomponentnode_createdby + lk_msdyn_bulkharvestrunlog_createdby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -383799,15 +433558,15 @@ false systemuserid systemuser - lk_appmodulecomponentnode_createdby + lk_msdyn_bulkharvestrunlog_createdby createdby - appmodulecomponentnode + msdyn_bulkharvestrunlog createdby 0 - e0ada606-b7ba-f011-bbd3-7c1e52365f30 + 894d507d-ec24-f111-88b5-002248a21393 false @@ -383817,9 +433576,9 @@ false true - lk_appmodulecomponentnode_createdonbehalfby + lk_msdyn_bulkharvestrunlog_createdonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -383853,27 +433612,27 @@ false systemuserid systemuser - lk_appmodulecomponentnode_createdonbehalfby + lk_msdyn_bulkharvestrunlog_createdonbehalfby createdonbehalfby - appmodulecomponentnode + msdyn_bulkharvestrunlog createdonbehalfby 0 - e6ada606-b7ba-f011-bbd3-7c1e52365f30 + 8f4d507d-ec24-f111-88b5-002248a21393 false true iscustomizable - false + true false true - lk_appmodulecomponentnode_modifiedby + lk_msdyn_bulkharvestrunlog_modifiedby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -383907,15 +433666,15 @@ false systemuserid systemuser - lk_appmodulecomponentnode_modifiedby + lk_msdyn_bulkharvestrunlog_modifiedby modifiedby - appmodulecomponentnode + msdyn_bulkharvestrunlog modifiedby 0 - ecada606-b7ba-f011-bbd3-7c1e52365f30 + 954d507d-ec24-f111-88b5-002248a21393 false @@ -383925,9 +433684,9 @@ false true - lk_appmodulecomponentnode_modifiedonbehalfby + lk_msdyn_bulkharvestrunlog_modifiedonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -383961,27 +433720,27 @@ false systemuserid systemuser - lk_appmodulecomponentnode_modifiedonbehalfby + lk_msdyn_bulkharvestrunlog_modifiedonbehalfby modifiedonbehalfby - appmodulecomponentnode + msdyn_bulkharvestrunlog modifiedonbehalfby 0 - 79aea606-b7ba-f011-bbd3-7c1e52365f30 + a74d507d-ec24-f111-88b5-002248a21393 false true iscustomizable - false + true false true - lk_appsetting_createdby + user_msdyn_bulkharvestrunlog None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -384015,27 +433774,27 @@ false systemuserid systemuser - lk_appsetting_createdby - createdby - appsetting - createdby + user_msdyn_bulkharvestrunlog + owninguser + msdyn_bulkharvestrunlog + owninguser 0 - 7faea606-b7ba-f011-bbd3-7c1e52365f30 + a2e1797e-7543-42ee-9ee0-dd08e8e02465 false - true + false iscustomizable true - false + true true - lk_appsetting_createdonbehalfby + lk_recurringappointmentmaster_modifiedby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -384069,27 +433828,27 @@ false systemuserid systemuser - lk_appsetting_createdonbehalfby - createdonbehalfby - appsetting - createdonbehalfby + lk_recurringappointmentmaster_modifiedby + modifiedby + recurringappointmentmaster + modifiedby_recurringappointmentmaster 0 - 85aea606-b7ba-f011-bbd3-7c1e52365f30 + 65fc9d7e-6050-4c7f-8dd4-7537fc7aee50 false - true + false iscustomizable false - false - true - lk_appsetting_modifiedby + true + false + lk_sdkmessageprocessingstep_modifiedonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -384123,27 +433882,27 @@ false systemuserid systemuser - lk_appsetting_modifiedby - modifiedby - appsetting - modifiedby + lk_sdkmessageprocessingstep_modifiedonbehalfby + modifiedonbehalfby + sdkmessageprocessingstep + modifiedonbehalfby 0 - 8baea606-b7ba-f011-bbd3-7c1e52365f30 + 183a1d7f-f55e-4b96-ad8b-6f24d37604b1 false - true + false iscustomizable - true + false - false - true - lk_appsetting_modifiedonbehalfby + true + false + SystemUser_ImportFiles None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -384177,27 +433936,27 @@ false systemuserid systemuser - lk_appsetting_modifiedonbehalfby - modifiedonbehalfby - appsetting - modifiedonbehalfby + SystemUser_ImportFiles + owninguser + importfile + owninguser 0 - 28aa610d-b7ba-f011-bbd3-7c1e52365f30 + 1c3d437f-c8ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable - false + true - false + true true - lk_appusersetting_createdby + lk_activityfileattachment_createdby None - 9.1.0.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -384231,27 +433990,27 @@ false systemuserid systemuser - lk_appusersetting_createdby + lk_activityfileattachment_createdby createdby - appusersetting + activityfileattachment createdby 0 - 2eaa610d-b7ba-f011-bbd3-7c1e52365f30 + 263d437f-c8ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_appusersetting_createdonbehalfby + lk_activityfileattachment_createdonbehalfby None - 9.1.0.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -384285,27 +434044,27 @@ false systemuserid systemuser - lk_appusersetting_createdonbehalfby + lk_activityfileattachment_createdonbehalfby createdonbehalfby - appusersetting + activityfileattachment createdonbehalfby 0 - 34aa610d-b7ba-f011-bbd3-7c1e52365f30 + 303d437f-c8ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable - false + true - false + true true - lk_appusersetting_modifiedby + lk_activityfileattachment_modifiedby None - 9.1.0.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -384339,27 +434098,27 @@ false systemuserid systemuser - lk_appusersetting_modifiedby + lk_activityfileattachment_modifiedby modifiedby - appusersetting + activityfileattachment modifiedby 0 - 3aaa610d-b7ba-f011-bbd3-7c1e52365f30 + 393d437f-c8ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_appusersetting_modifiedonbehalfby + lk_activityfileattachment_modifiedonbehalfby None - 9.1.0.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -384393,27 +434152,27 @@ false systemuserid systemuser - lk_appusersetting_modifiedonbehalfby + lk_activityfileattachment_modifiedonbehalfby modifiedonbehalfby - appusersetting + activityfileattachment modifiedonbehalfby 0 - c2aa610d-b7ba-f011-bbd3-7c1e52365f30 + 4f3d437f-c8ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable - false + true - false + true true - lk_organizationsetting_createdby + user_activityfileattachment None - 9.1.0.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -384447,27 +434206,27 @@ false systemuserid systemuser - lk_organizationsetting_createdby - createdby - organizationsetting - createdby + user_activityfileattachment + owninguser + activityfileattachment + owninguser 0 - c8aa610d-b7ba-f011-bbd3-7c1e52365f30 + d9e1567f-c265-46b5-90ea-5c9506a510bb false - true + false iscustomizable - true + false - false - true - lk_organizationsetting_createdonbehalfby + true + false + lk_transactioncurrency_createdonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -384501,27 +434260,27 @@ false systemuserid systemuser - lk_organizationsetting_createdonbehalfby + lk_transactioncurrency_createdonbehalfby createdonbehalfby - organizationsetting + transactioncurrency createdonbehalfby 0 - ceaa610d-b7ba-f011-bbd3-7c1e52365f30 + bc0f867f-ebc9-4b6f-a2f4-e909fcd86621 false - true + false iscustomizable false - false + true true - lk_organizationsetting_modifiedby + webresource_createdby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -384555,27 +434314,27 @@ false systemuserid systemuser - lk_organizationsetting_modifiedby - modifiedby - organizationsetting - modifiedby + webresource_createdby + createdby + webresource + createdby 0 - d4aa610d-b7ba-f011-bbd3-7c1e52365f30 + 68ea867f-d122-4c8e-8353-a481357cedc5 false - true + false iscustomizable - true + false - false - true - lk_organizationsetting_modifiedonbehalfby + true + false + lk_quarterlyfiscalcalendar_modifiedonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -384609,27 +434368,27 @@ false systemuserid systemuser - lk_organizationsetting_modifiedonbehalfby + lk_quarterlyfiscalcalendar_modifiedonbehalfby modifiedonbehalfby - organizationsetting + quarterlyfiscalcalendar modifiedonbehalfby 0 - 9aab610d-b7ba-f011-bbd3-7c1e52365f30 + 2bde9a7f-5083-4509-9b22-7dc2e44789ca false - true + false iscustomizable false - false + true true - lk_settingdefinition_createdby + lk_routingrule_modifiedby None - 9.1.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -384663,27 +434422,27 @@ false systemuserid systemuser - lk_settingdefinition_createdby - createdby - settingdefinition - createdby + lk_routingrule_modifiedby + modifiedby + routingrule + modifiedby 0 - a0ab610d-b7ba-f011-bbd3-7c1e52365f30 + 74a1a27f-3ee1-4cbb-93da-e2caedb7211e false - true + false iscustomizable true - false + true true - lk_settingdefinition_createdonbehalfby + lk_businessprocessflowinstancebase_modifiedonbehalfby None - 9.1.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -384717,27 +434476,27 @@ false systemuserid systemuser - lk_settingdefinition_createdonbehalfby - createdonbehalfby - settingdefinition - createdonbehalfby + lk_businessprocessflowinstancebase_modifiedonbehalfby + modifiedonbehalfby + businessprocessflowinstance + modifiedonbehalfby 0 - a6ab610d-b7ba-f011-bbd3-7c1e52365f30 + 6d34ba7f-7e61-43b3-9a11-fedde3e2640a false - true + false iscustomizable false - false + true true - lk_settingdefinition_modifiedby + lk_emailsignaturebase_modifiedonbehalfby None - 9.1.0.0 + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -384771,27 +434530,27 @@ false systemuserid systemuser - lk_settingdefinition_modifiedby - modifiedby - settingdefinition - modifiedby + lk_emailsignaturebase_modifiedonbehalfby + modifiedonbehalfby + emailsignature + modifiedonbehalfby 0 - acab610d-b7ba-f011-bbd3-7c1e52365f30 + a908bc7f-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_settingdefinition_modifiedonbehalfby + lk_catalog_createdby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -384825,39 +434584,39 @@ false systemuserid systemuser - lk_settingdefinition_modifiedonbehalfby - modifiedonbehalfby - settingdefinition - modifiedonbehalfby + lk_catalog_createdby + createdby + catalog + createdby 0 - 48ac610d-b7ba-f011-bbd3-7c1e52365f30 + af08bc7f-aeba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable true - true + false true - systemuser_appusersetting_userId - Append + lk_catalog_createdonbehalfby + None 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -384865,7 +434624,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -384879,15 +434638,15 @@ false systemuserid systemuser - systemuser_appusersetting_userId - userid - appusersetting - UserId + lk_catalog_createdonbehalfby + createdonbehalfby + catalog + createdonbehalfby - 1 + 0 - 824815a8-b7ba-f011-bbd3-7c1e52365f30 + b508bc7f-aeba-f011-bbd3-7c1e52365f30 false @@ -384897,9 +434656,9 @@ false true - lk_canvasappextendedmetadata_createdby + lk_catalog_modifiedby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -384933,15 +434692,15 @@ false systemuserid systemuser - lk_canvasappextendedmetadata_createdby - createdby - canvasappextendedmetadata - createdby + lk_catalog_modifiedby + modifiedby + catalog + modifiedby 0 - 884815a8-b7ba-f011-bbd3-7c1e52365f30 + bc08bc7f-aeba-f011-bbd3-7c1e52365f30 false @@ -384951,9 +434710,9 @@ false true - lk_canvasappextendedmetadata_createdonbehalfby + lk_catalog_modifiedonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -384987,27 +434746,27 @@ false systemuserid systemuser - lk_canvasappextendedmetadata_createdonbehalfby - createdonbehalfby - canvasappextendedmetadata - createdonbehalfby + lk_catalog_modifiedonbehalfby + modifiedonbehalfby + catalog + modifiedonbehalfby 0 - 8e4815a8-b7ba-f011-bbd3-7c1e52365f30 + 29a9d27f-89b2-4266-b9ab-c45d57ec4c18 false - true + false iscustomizable - false + true - false + true true - lk_canvasappextendedmetadata_modifiedby + lk_mobileofflineprofileitem_modifiedby None - 9.1.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -385041,15 +434800,15 @@ false systemuserid systemuser - lk_canvasappextendedmetadata_modifiedby + lk_mobileofflineprofileitem_modifiedby modifiedby - canvasappextendedmetadata + mobileofflineprofileitem modifiedby 0 - 944815a8-b7ba-f011-bbd3-7c1e52365f30 + c61c8f80-d2ba-f011-bbd3-7c1e52365f30 false @@ -385059,9 +434818,9 @@ false true - lk_canvasappextendedmetadata_modifiedonbehalfby + lk_organizationdatasyncfnostate_createdby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -385095,27 +434854,27 @@ false systemuserid systemuser - lk_canvasappextendedmetadata_modifiedonbehalfby - modifiedonbehalfby - canvasappextendedmetadata - modifiedonbehalfby + lk_organizationdatasyncfnostate_createdby + createdby + organizationdatasyncfnostate + createdby 0 - a64815a8-b7ba-f011-bbd3-7c1e52365f30 + cc1c8f80-d2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_canvasappextendedmetadata + lk_organizationdatasyncfnostate_createdonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -385149,15 +434908,15 @@ false systemuserid systemuser - user_canvasappextendedmetadata - owninguser - canvasappextendedmetadata - owninguser + lk_organizationdatasyncfnostate_createdonbehalfby + createdonbehalfby + organizationdatasyncfnostate + createdonbehalfby 0 - e3f8c306-b8ba-f011-bbd3-7c1e52365f30 + d21c8f80-d2ba-f011-bbd3-7c1e52365f30 false @@ -385167,9 +434926,9 @@ false true - lk_serviceplan_createdby + lk_organizationdatasyncfnostate_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -385203,15 +434962,15 @@ false systemuserid systemuser - lk_serviceplan_createdby - createdby - serviceplan - createdby + lk_organizationdatasyncfnostate_modifiedby + modifiedby + organizationdatasyncfnostate + modifiedby 0 - e9f8c306-b8ba-f011-bbd3-7c1e52365f30 + d81c8f80-d2ba-f011-bbd3-7c1e52365f30 false @@ -385221,9 +434980,9 @@ false true - lk_serviceplan_createdonbehalfby + lk_organizationdatasyncfnostate_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -385257,15 +435016,15 @@ false systemuserid systemuser - lk_serviceplan_createdonbehalfby - createdonbehalfby - serviceplan - createdonbehalfby + lk_organizationdatasyncfnostate_modifiedonbehalfby + modifiedonbehalfby + organizationdatasyncfnostate + modifiedonbehalfby 0 - eff8c306-b8ba-f011-bbd3-7c1e52365f30 + d11d8f80-d2ba-f011-bbd3-7c1e52365f30 false @@ -385275,9 +435034,9 @@ false true - lk_serviceplan_modifiedby + lk_organizationdatasyncstate_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -385311,15 +435070,15 @@ false systemuserid systemuser - lk_serviceplan_modifiedby - modifiedby - serviceplan - modifiedby + lk_organizationdatasyncstate_createdby + createdby + organizationdatasyncstate + createdby 0 - f5f8c306-b8ba-f011-bbd3-7c1e52365f30 + d71d8f80-d2ba-f011-bbd3-7c1e52365f30 false @@ -385329,9 +435088,9 @@ false true - lk_serviceplan_modifiedonbehalfby + lk_organizationdatasyncstate_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -385365,15 +435124,15 @@ false systemuserid systemuser - lk_serviceplan_modifiedonbehalfby - modifiedonbehalfby - serviceplan - modifiedonbehalfby + lk_organizationdatasyncstate_createdonbehalfby + createdonbehalfby + organizationdatasyncstate + createdonbehalfby 0 - 71f9c306-b8ba-f011-bbd3-7c1e52365f30 + dd1d8f80-d2ba-f011-bbd3-7c1e52365f30 false @@ -385383,9 +435142,9 @@ false true - lk_serviceplanmapping_createdby + lk_organizationdatasyncstate_modifiedby None - 2.4.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -385419,15 +435178,15 @@ false systemuserid systemuser - lk_serviceplanmapping_createdby - createdby - serviceplanmapping - createdby + lk_organizationdatasyncstate_modifiedby + modifiedby + organizationdatasyncstate + modifiedby 0 - 77f9c306-b8ba-f011-bbd3-7c1e52365f30 + e31d8f80-d2ba-f011-bbd3-7c1e52365f30 false @@ -385437,9 +435196,9 @@ false true - lk_serviceplanmapping_createdonbehalfby + lk_organizationdatasyncstate_modifiedonbehalfby None - 2.4.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -385473,27 +435232,27 @@ false systemuserid systemuser - lk_serviceplanmapping_createdonbehalfby - createdonbehalfby - serviceplanmapping - createdonbehalfby + lk_organizationdatasyncstate_modifiedonbehalfby + modifiedonbehalfby + organizationdatasyncstate + modifiedonbehalfby 0 - 7df9c306-b8ba-f011-bbd3-7c1e52365f30 + 6189e380-1e6e-47da-b24e-eb64e2769961 false - true + false iscustomizable true - false + true true - lk_serviceplanmapping_modifiedby + lk_kbarticlebase_modifiedby None - 2.4.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -385527,27 +435286,27 @@ false systemuserid systemuser - lk_serviceplanmapping_modifiedby + lk_kbarticlebase_modifiedby modifiedby - serviceplanmapping + kbarticle modifiedby 0 - 83f9c306-b8ba-f011-bbd3-7c1e52365f30 + 84329e81-5e2b-4051-8f9e-e2ce7c055d50 false - true + false iscustomizable true - false + true true - lk_serviceplanmapping_modifiedonbehalfby + lk_slakpiinstancebase_modifiedonbehalfby None - 2.4.0.0 + 7.0.0.0 OneToManyRelationship DoNotDisplay @@ -385581,27 +435340,27 @@ false systemuserid systemuser - lk_serviceplanmapping_modifiedonbehalfby + lk_slakpiinstancebase_modifiedonbehalfby modifiedonbehalfby - serviceplanmapping + slakpiinstance modifiedonbehalfby 0 - f4f9c306-b8ba-f011-bbd3-7c1e52365f30 + 4cced981-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_serviceplancustomcontrol_createdby + lk_synapselinkprofileentitystate_createdby None - 9.2.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -385635,15 +435394,15 @@ false systemuserid systemuser - lk_serviceplancustomcontrol_createdby + lk_synapselinkprofileentitystate_createdby createdby - serviceplancustomcontrol + synapselinkprofileentitystate createdby 0 - faf9c306-b8ba-f011-bbd3-7c1e52365f30 + 52ced981-b3ba-f011-bbd3-7c1e52365f30 false @@ -385653,9 +435412,9 @@ false true - lk_serviceplancustomcontrol_createdonbehalfby + lk_synapselinkprofileentitystate_createdonbehalfby None - 9.2.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -385689,15 +435448,69 @@ false systemuserid systemuser - lk_serviceplancustomcontrol_createdonbehalfby + lk_synapselinkprofileentitystate_createdonbehalfby createdonbehalfby - serviceplancustomcontrol + synapselinkprofileentitystate createdonbehalfby 0 - 00fac306-b8ba-f011-bbd3-7c1e52365f30 + 58ced981-b3ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + lk_synapselinkprofileentitystate_modifiedby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_synapselinkprofileentitystate_modifiedby + modifiedby + synapselinkprofileentitystate + modifiedby + + 0 + + + 5eced981-b3ba-f011-bbd3-7c1e52365f30 false @@ -385707,9 +435520,9 @@ false true - lk_serviceplancustomcontrol_modifiedby + lk_synapselinkprofileentitystate_modifiedonbehalfby None - 9.2.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -385743,79 +435556,25 @@ false systemuserid systemuser - lk_serviceplancustomcontrol_modifiedby - modifiedby - serviceplancustomcontrol - modifiedby - - 0 - - - 06fac306-b8ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_serviceplancustomcontrol_modifiedonbehalfby - None - 9.2.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_serviceplancustomcontrol_modifiedonbehalfby + lk_synapselinkprofileentitystate_modifiedonbehalfby modifiedonbehalfby - serviceplancustomcontrol + synapselinkprofileentitystate modifiedonbehalfby 0 - a179678f-b8ba-f011-bbd3-7c1e52365f30 + 42cfd981-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_applicationuser_createdby + lk_synapselinkschedule_createdby None 1.0.0.0 OneToManyRelationship @@ -385851,15 +435610,15 @@ false systemuserid systemuser - lk_applicationuser_createdby + lk_synapselinkschedule_createdby createdby - applicationuser + synapselinkschedule createdby 0 - a779678f-b8ba-f011-bbd3-7c1e52365f30 + 48cfd981-b3ba-f011-bbd3-7c1e52365f30 false @@ -385869,7 +435628,7 @@ false true - lk_applicationuser_createdonbehalfby + lk_synapselinkschedule_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -385905,25 +435664,25 @@ false systemuserid systemuser - lk_applicationuser_createdonbehalfby + lk_synapselinkschedule_createdonbehalfby createdonbehalfby - applicationuser + synapselinkschedule createdonbehalfby 0 - ad79678f-b8ba-f011-bbd3-7c1e52365f30 + 4ecfd981-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_applicationuser_modifiedby + lk_synapselinkschedule_modifiedby None 1.0.0.0 OneToManyRelationship @@ -385959,15 +435718,15 @@ false systemuserid systemuser - lk_applicationuser_modifiedby + lk_synapselinkschedule_modifiedby modifiedby - applicationuser + synapselinkschedule modifiedby 0 - b379678f-b8ba-f011-bbd3-7c1e52365f30 + 54cfd981-b3ba-f011-bbd3-7c1e52365f30 false @@ -385977,7 +435736,7 @@ false true - lk_applicationuser_modifiedonbehalfby + lk_synapselinkschedule_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -386013,30 +435772,30 @@ false systemuserid systemuser - lk_applicationuser_modifiedonbehalfby + lk_synapselinkschedule_modifiedonbehalfby modifiedonbehalfby - applicationuser + synapselinkschedule modifiedonbehalfby 0 - 4faf9cae-b9ba-f011-bbd3-7c1e52365f30 + f8d5f082-6809-4da1-9125-33f20421bf93 false - true + false iscustomizable - true + false - false + true true - lk_connector_createdby + lk_customcontrol_createdby None - 9.1.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -386067,27 +435826,27 @@ false systemuserid systemuser - lk_connector_createdby + lk_customcontrol_createdby createdby - connector + customcontrol createdby 0 - 55af9cae-b9ba-f011-bbd3-7c1e52365f30 + d9340e83-dce6-4423-8b57-21f8f19dd097 false - true + false iscustomizable - true + false - false + true true - lk_connector_createdonbehalfby + lk_report_createdonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -386121,27 +435880,27 @@ false systemuserid systemuser - lk_connector_createdonbehalfby + lk_report_createdonbehalfby createdonbehalfby - connector + report createdonbehalfby 0 - 5baf9cae-b9ba-f011-bbd3-7c1e52365f30 + ae351483-88ca-44f6-a371-d64c6c6aabc1 false - true + false iscustomizable true - false + true true - lk_connector_modifiedby + lk_mailmergetemplatebase_createdby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -386175,27 +435934,27 @@ false systemuserid systemuser - lk_connector_modifiedby - modifiedby - connector - modifiedby + lk_mailmergetemplatebase_createdby + createdby + mailmergetemplate + createdby 0 - 61af9cae-b9ba-f011-bbd3-7c1e52365f30 + 6ef27883-ceb0-4ba4-be28-51d54b16976f false - true + false iscustomizable - true + false - false - true - lk_connector_modifiedonbehalfby + true + false + lk_lookupmapping_modifiedonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -386229,27 +435988,27 @@ false systemuserid systemuser - lk_connector_modifiedonbehalfby + lk_lookupmapping_modifiedonbehalfby modifiedonbehalfby - connector + lookupmapping modifiedonbehalfby 0 - 73af9cae-b9ba-f011-bbd3-7c1e52365f30 + f62a7c83-de3e-490b-94bf-f1e84dd58dcf false - true + false iscustomizable - true + false - false + true true - user_connector + lk_kbarticletemplatebase_modifiedby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -386283,15 +436042,15 @@ false systemuserid systemuser - user_connector - owninguser - connector - owninguser + lk_kbarticletemplatebase_modifiedby + modifiedby + kbarticletemplate + modifiedby 0 - 10b9b9d5-b9ba-f011-bbd3-7c1e52365f30 + c0669183-e7ba-f011-bbd3-7c1e52365f30 false @@ -386301,7 +436060,7 @@ false true - lk_environmentvariabledefinition_createdby + lk_msdyn_dataworkspace_createdby None 1.0.0.0 OneToManyRelationship @@ -386337,15 +436096,15 @@ false systemuserid systemuser - lk_environmentvariabledefinition_createdby + lk_msdyn_dataworkspace_createdby createdby - environmentvariabledefinition + msdyn_dataworkspace createdby 0 - 16b9b9d5-b9ba-f011-bbd3-7c1e52365f30 + c6669183-e7ba-f011-bbd3-7c1e52365f30 false @@ -386355,7 +436114,7 @@ false true - lk_environmentvariabledefinition_createdonbehalfby + lk_msdyn_dataworkspace_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -386391,15 +436150,15 @@ false systemuserid systemuser - lk_environmentvariabledefinition_createdonbehalfby + lk_msdyn_dataworkspace_createdonbehalfby createdonbehalfby - environmentvariabledefinition + msdyn_dataworkspace createdonbehalfby 0 - 1cb9b9d5-b9ba-f011-bbd3-7c1e52365f30 + cc669183-e7ba-f011-bbd3-7c1e52365f30 false @@ -386409,61 +436168,7 @@ false true - lk_environmentvariabledefinition_modifiedby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_environmentvariabledefinition_modifiedby - modifiedby - environmentvariabledefinition - modifiedby - - 0 - - - 22b9b9d5-b9ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_environmentvariabledefinition_modifiedonbehalfby + lk_msdyn_dataworkspace_modifiedby None 1.0.0.0 OneToManyRelationship @@ -386499,25 +436204,25 @@ false systemuserid systemuser - lk_environmentvariabledefinition_modifiedonbehalfby - modifiedonbehalfby - environmentvariabledefinition - modifiedonbehalfby + lk_msdyn_dataworkspace_modifiedby + modifiedby + msdyn_dataworkspace + modifiedby 0 - 34b9b9d5-b9ba-f011-bbd3-7c1e52365f30 + d2669183-e7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_environmentvariabledefinition + lk_msdyn_dataworkspace_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -386553,15 +436258,15 @@ false systemuserid systemuser - user_environmentvariabledefinition - owninguser - environmentvariabledefinition - owninguser + lk_msdyn_dataworkspace_modifiedonbehalfby + modifiedonbehalfby + msdyn_dataworkspace + modifiedonbehalfby 0 - edb9b9d5-b9ba-f011-bbd3-7c1e52365f30 + e4669183-e7ba-f011-bbd3-7c1e52365f30 false @@ -386571,7 +436276,7 @@ false true - lk_environmentvariablevalue_createdby + user_msdyn_dataworkspace None 1.0.0.0 OneToManyRelationship @@ -386607,27 +436312,27 @@ false systemuserid systemuser - lk_environmentvariablevalue_createdby - createdby - environmentvariablevalue - createdby + user_msdyn_dataworkspace + owninguser + msdyn_dataworkspace + owninguser 0 - f3b9b9d5-b9ba-f011-bbd3-7c1e52365f30 + 8f9d9583-9a83-4b0c-b9d2-f6500e076de5 false - true + false iscustomizable - true + false - false - true - lk_environmentvariablevalue_createdonbehalfby + true + false + lk_fixedmonthlyfiscalcalendar_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -386661,27 +436366,27 @@ false systemuserid systemuser - lk_environmentvariablevalue_createdonbehalfby - createdonbehalfby - environmentvariablevalue - createdonbehalfby + lk_fixedmonthlyfiscalcalendar_modifiedonbehalfby + modifiedonbehalfby + fixedmonthlyfiscalcalendar + modifiedonbehalfby 0 - f9b9b9d5-b9ba-f011-bbd3-7c1e52365f30 + 20aaa483-9f9c-4b50-9385-4c6b13e920f7 false - true + false iscustomizable false - false + true true - lk_environmentvariablevalue_modifiedby + modifiedonbehalfby_customer_relationship None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -386715,27 +436420,27 @@ false systemuserid systemuser - lk_environmentvariablevalue_modifiedby - modifiedby - environmentvariablevalue - modifiedby + modifiedonbehalfby_customer_relationship + modifiedonbehalfby + customerrelationship + modifiedonbehalfby 0 - ffb9b9d5-b9ba-f011-bbd3-7c1e52365f30 + 1076ae83-d8e2-413e-99fd-09fbd3b7eb7d false - true + false iscustomizable - true + false - false - true - lk_environmentvariablevalue_modifiedonbehalfby + true + false + lk_systemapplicationmetadata_modifiedonbehalfby None - 1.0.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -386769,27 +436474,27 @@ false systemuserid systemuser - lk_environmentvariablevalue_modifiedonbehalfby + lk_systemapplicationmetadata_modifiedonbehalfby modifiedonbehalfby - environmentvariablevalue + systemapplicationmetadata modifiedonbehalfby 0 - 07a3ec9f-baba-f011-bbd3-7c1e52365f30 + 68310d84-c16c-4241-81f6-fe8d6c4a57b9 false - true + false iscustomizable false - false - true - lk_workflowbinary_createdby + true + false + lk_importlog_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -386823,15 +436528,15 @@ false systemuserid systemuser - lk_workflowbinary_createdby - createdby - workflowbinary - createdby + lk_importlog_modifiedonbehalfby + modifiedonbehalfby + importlog + modifiedonbehalfby 0 - 0da3ec9f-baba-f011-bbd3-7c1e52365f30 + 3d303084-ec24-f111-88b5-002248a21393 false @@ -386841,63 +436546,9 @@ false true - lk_workflowbinary_createdonbehalfby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_workflowbinary_createdonbehalfby - createdonbehalfby - workflowbinary - createdonbehalfby - - 0 - - - 13a3ec9f-baba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - lk_workflowbinary_modifiedby + lk_msdyn_harvestworkitem_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -386931,15 +436582,15 @@ false systemuserid systemuser - lk_workflowbinary_modifiedby - modifiedby - workflowbinary - modifiedby + lk_msdyn_harvestworkitem_createdby + createdby + msdyn_harvestworkitem + createdby 0 - 19a3ec9f-baba-f011-bbd3-7c1e52365f30 + 43303084-ec24-f111-88b5-002248a21393 false @@ -386949,9 +436600,9 @@ false true - lk_workflowbinary_modifiedonbehalfby + lk_msdyn_harvestworkitem_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -386985,27 +436636,27 @@ false systemuserid systemuser - lk_workflowbinary_modifiedonbehalfby - modifiedonbehalfby - workflowbinary - modifiedonbehalfby + lk_msdyn_harvestworkitem_createdonbehalfby + createdonbehalfby + msdyn_harvestworkitem + createdonbehalfby 0 - 2ba3ec9f-baba-f011-bbd3-7c1e52365f30 + 49303084-ec24-f111-88b5-002248a21393 false true iscustomizable - false + true false true - user_workflowbinary + lk_msdyn_harvestworkitem_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -387039,69 +436690,15 @@ false systemuserid systemuser - user_workflowbinary - owninguser - workflowbinary - owninguser - - 0 - - - 94b41fc2-baba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - Workflow_licensee - None - 1.9.2.1 - OneToManyRelationship - - UseCollectionName - Details - - - - - 10000 - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - Workflow_licensee - licensee - workflow - licensee_systemuserid + lk_msdyn_harvestworkitem_modifiedby + modifiedby + msdyn_harvestworkitem + modifiedby 0 - eaef27e4-baba-f011-bbd3-7c1e52365f30 + 4f303084-ec24-f111-88b5-002248a21393 false @@ -387111,9 +436708,9 @@ false true - lk_businessprocess_createdby + lk_msdyn_harvestworkitem_modifiedonbehalfby None - 1.9.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -387147,15 +436744,15 @@ false systemuserid systemuser - lk_businessprocess_createdby - createdby - businessprocess - createdby + lk_msdyn_harvestworkitem_modifiedonbehalfby + modifiedonbehalfby + msdyn_harvestworkitem + modifiedonbehalfby 0 - f0ef27e4-baba-f011-bbd3-7c1e52365f30 + 61303084-ec24-f111-88b5-002248a21393 false @@ -387165,9 +436762,9 @@ false true - lk_businessprocess_createdonbehalfby + user_msdyn_harvestworkitem None - 1.9.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -387201,27 +436798,27 @@ false systemuserid systemuser - lk_businessprocess_createdonbehalfby - createdonbehalfby - businessprocess - createdonbehalfby + user_msdyn_harvestworkitem + owninguser + msdyn_harvestworkitem + owninguser 0 - f6ef27e4-baba-f011-bbd3-7c1e52365f30 + e0008584-99ef-44e9-8ef4-9bfb825e1adb false - true + false iscustomizable - true + false - false + true true - lk_businessprocess_modifiedby + user_convertrule None - 1.9.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -387255,27 +436852,27 @@ false systemuserid systemuser - lk_businessprocess_modifiedby - modifiedby - businessprocess - modifiedby + user_convertrule + owninguser + convertrule + owninguser 0 - fcef27e4-baba-f011-bbd3-7c1e52365f30 + d8bb8a84-8734-459e-9c99-6e5e53e63f87 false - true + false iscustomizable - true + false - false - true - lk_businessprocess_modifiedonbehalfby + true + false + lk_DisplayStringbase_createdonbehalfby None - 1.9.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -387309,27 +436906,27 @@ false systemuserid systemuser - lk_businessprocess_modifiedonbehalfby - modifiedonbehalfby - businessprocess - modifiedonbehalfby + lk_DisplayStringbase_createdonbehalfby + createdonbehalfby + displaystring + createdonbehalfby 0 - 0ef027e4-baba-f011-bbd3-7c1e52365f30 + 630fd784-f29d-4d51-81c4-00ad2ea5d0cd false - true + false iscustomizable true - false + true true - user_businessprocess + lk_slakpiinstancebase_createdonbehalfby None - 1.9.0.0 + 7.0.0.0 OneToManyRelationship DoNotDisplay @@ -387363,15 +436960,15 @@ false systemuserid systemuser - user_businessprocess - owninguser - businessprocess - owninguser + lk_slakpiinstancebase_createdonbehalfby + createdonbehalfby + slakpiinstance + createdonbehalfby 0 - 61f127e4-baba-f011-bbd3-7c1e52365f30 + 8f04e384-3010-f111-8345-7c1e52216fd8 false @@ -387381,9 +436978,9 @@ false true - lk_credential_createdby + lk_skill_createdby None - 1.6.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -387417,15 +437014,15 @@ false systemuserid systemuser - lk_credential_createdby + lk_skill_createdby createdby - credential + skill createdby 0 - 67f127e4-baba-f011-bbd3-7c1e52365f30 + 9504e384-3010-f111-8345-7c1e52216fd8 false @@ -387435,9 +437032,9 @@ false true - lk_credential_createdonbehalfby + lk_skill_createdonbehalfby None - 1.6.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -387471,15 +437068,15 @@ false systemuserid systemuser - lk_credential_createdonbehalfby + lk_skill_createdonbehalfby createdonbehalfby - credential + skill createdonbehalfby 0 - 6df127e4-baba-f011-bbd3-7c1e52365f30 + 9b04e384-3010-f111-8345-7c1e52216fd8 false @@ -387489,9 +437086,9 @@ false true - lk_credential_modifiedby + lk_skill_modifiedby None - 1.6.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -387525,15 +437122,15 @@ false systemuserid systemuser - lk_credential_modifiedby + lk_skill_modifiedby modifiedby - credential + skill modifiedby 0 - 73f127e4-baba-f011-bbd3-7c1e52365f30 + a104e384-3010-f111-8345-7c1e52216fd8 false @@ -387543,9 +437140,9 @@ false true - lk_credential_modifiedonbehalfby + lk_skill_modifiedonbehalfby None - 1.6.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -387579,15 +437176,15 @@ false systemuserid systemuser - lk_credential_modifiedonbehalfby + lk_skill_modifiedonbehalfby modifiedonbehalfby - credential + skill modifiedonbehalfby 0 - 85f127e4-baba-f011-bbd3-7c1e52365f30 + b304e384-3010-f111-8345-7c1e52216fd8 false @@ -387597,9 +437194,9 @@ false true - user_credential + user_skill None - 1.6.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -387633,27 +437230,27 @@ false systemuserid systemuser - user_credential + user_skill owninguser - credential + skill owninguser 0 - 4cf227e4-baba-f011-bbd3-7c1e52365f30 + c1d6f984-49e5-4541-b7da-429c374043ff false - true + false iscustomizable true - false + true true - lk_desktopflowmodule_createdby + lk_customeraddressbase_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -387687,15 +437284,15 @@ false systemuserid systemuser - lk_desktopflowmodule_createdby + lk_customeraddressbase_createdby createdby - desktopflowmodule + customeraddress createdby 0 - 52f227e4-baba-f011-bbd3-7c1e52365f30 + 390b3e85-c8ba-f011-bbd3-7c1e52365f30 false @@ -387705,9 +437302,9 @@ false true - lk_desktopflowmodule_createdonbehalfby + chat_systemuser_createdby None - 1.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -387741,15 +437338,15 @@ false systemuserid systemuser - lk_desktopflowmodule_createdonbehalfby - createdonbehalfby - desktopflowmodule - createdonbehalfby + chat_systemuser_createdby + createdby + chat + createdby_chat 0 - 58f227e4-baba-f011-bbd3-7c1e52365f30 + 3e0b3e85-c8ba-f011-bbd3-7c1e52365f30 false @@ -387759,9 +437356,9 @@ false true - lk_desktopflowmodule_modifiedby + chat_systemuser_owninguser None - 1.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -387795,15 +437392,15 @@ false systemuserid systemuser - lk_desktopflowmodule_modifiedby - modifiedby - desktopflowmodule - modifiedby + chat_systemuser_owninguser + owninguser + chat + owninguser_chat 0 - 5ef227e4-baba-f011-bbd3-7c1e52365f30 + 420b3e85-c8ba-f011-bbd3-7c1e52365f30 false @@ -387813,9 +437410,9 @@ false true - lk_desktopflowmodule_modifiedonbehalfby + chat_systemuser_modifiedonbehalfby None - 1.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -387849,69 +437446,15 @@ false systemuserid systemuser - lk_desktopflowmodule_modifiedonbehalfby + chat_systemuser_modifiedonbehalfby modifiedonbehalfby - desktopflowmodule - modifiedonbehalfby - - 0 - - - 70f227e4-baba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - user_desktopflowmodule - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - user_desktopflowmodule - owninguser - desktopflowmodule - owninguser + chat + modifiedonbehalfby_chat 0 - 79182aea-baba-f011-bbd3-7c1e52365f30 + 430b3e85-c8ba-f011-bbd3-7c1e52365f30 false @@ -387921,9 +437464,9 @@ false true - lk_flowcapacityassignment_createdby + chat_systemuser_createdonbehalfby None - 1.7.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -387957,15 +437500,15 @@ false systemuserid systemuser - lk_flowcapacityassignment_createdby - createdby - flowcapacityassignment - createdby + chat_systemuser_createdonbehalfby + createdonbehalfby + chat + createdonbehalfby_chat 0 - 7f182aea-baba-f011-bbd3-7c1e52365f30 + 440b3e85-c8ba-f011-bbd3-7c1e52365f30 false @@ -387975,9 +437518,9 @@ false true - lk_flowcapacityassignment_createdonbehalfby + chat_systemuser_modifiedby None - 1.7.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -388011,27 +437554,27 @@ false systemuserid systemuser - lk_flowcapacityassignment_createdonbehalfby - createdonbehalfby - flowcapacityassignment - createdonbehalfby + chat_systemuser_modifiedby + modifiedby + chat + modifiedby_chat 0 - 85182aea-baba-f011-bbd3-7c1e52365f30 + 93ca4a85-9e31-45ef-9e6f-f390916e37d8 false - true + false iscustomizable true - false + true true - lk_flowcapacityassignment_modifiedby + lk_kbarticle_modifiedonbehalfby None - 1.7.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -388065,27 +437608,27 @@ false systemuserid systemuser - lk_flowcapacityassignment_modifiedby - modifiedby - flowcapacityassignment - modifiedby + lk_kbarticle_modifiedonbehalfby + modifiedonbehalfby + kbarticle + modifiedonbehalfby 0 - 8b182aea-baba-f011-bbd3-7c1e52365f30 + 3e3f5585-c073-419b-be7b-ae67aac30a57 false - true + false iscustomizable - true + false - false + true true - lk_flowcapacityassignment_modifiedonbehalfby + lk_ConvertRule_createdonbehalfby None - 1.7.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -388119,30 +437662,30 @@ false systemuserid systemuser - lk_flowcapacityassignment_modifiedonbehalfby - modifiedonbehalfby - flowcapacityassignment - modifiedonbehalfby + lk_ConvertRule_createdonbehalfby + createdonbehalfby + convertrule + createdonbehalfby 0 - 9d182aea-baba-f011-bbd3-7c1e52365f30 + 5e185885-3922-431f-b17f-1a3ce755f30f false - true + false iscustomizable true - false + true true - user_flowcapacityassignment + lk_appmodulecomponent_modifiedby None - 1.7.0.0 + 8.2.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -388173,27 +437716,27 @@ false systemuserid systemuser - user_flowcapacityassignment - owninguser - flowcapacityassignment - owninguser + appmodulecomponent_modifiedby + modifiedby + appmodulecomponent + appmodulecomponent_modifiedby 0 - 4b192aea-baba-f011-bbd3-7c1e52365f30 + a604ba85-08e4-4ae6-bf51-841a478d3568 false - true + false iscustomizable true - false - true - lk_flowcredentialapplication_createdby + true + false + lk_sharepointdocumentlocationbase_createdby None - 1.7.11.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -388227,27 +437770,27 @@ false systemuserid systemuser - lk_flowcredentialapplication_createdby + lk_sharepointdocumentlocationbase_createdby createdby - flowcredentialapplication + sharepointdocumentlocation createdby 0 - 51192aea-baba-f011-bbd3-7c1e52365f30 + f1eedf85-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_flowcredentialapplication_createdonbehalfby + lk_catalogassignment_createdby None - 1.7.11.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -388281,15 +437824,15 @@ false systemuserid systemuser - lk_flowcredentialapplication_createdonbehalfby - createdonbehalfby - flowcredentialapplication - createdonbehalfby + lk_catalogassignment_createdby + createdby + catalogassignment + createdby 0 - 57192aea-baba-f011-bbd3-7c1e52365f30 + f7eedf85-aeba-f011-bbd3-7c1e52365f30 false @@ -388299,9 +437842,9 @@ false true - lk_flowcredentialapplication_modifiedby + lk_catalogassignment_createdonbehalfby None - 1.7.11.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -388335,27 +437878,27 @@ false systemuserid systemuser - lk_flowcredentialapplication_modifiedby - modifiedby - flowcredentialapplication - modifiedby + lk_catalogassignment_createdonbehalfby + createdonbehalfby + catalogassignment + createdonbehalfby 0 - 5d192aea-baba-f011-bbd3-7c1e52365f30 + fdeedf85-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_flowcredentialapplication_modifiedonbehalfby + lk_catalogassignment_modifiedby None - 1.7.11.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -388389,15 +437932,15 @@ false systemuserid systemuser - lk_flowcredentialapplication_modifiedonbehalfby - modifiedonbehalfby - flowcredentialapplication - modifiedonbehalfby + lk_catalogassignment_modifiedby + modifiedby + catalogassignment + modifiedby 0 - 6f192aea-baba-f011-bbd3-7c1e52365f30 + 03efdf85-aeba-f011-bbd3-7c1e52365f30 false @@ -388407,9 +437950,9 @@ false true - user_flowcredentialapplication + lk_catalogassignment_modifiedonbehalfby None - 1.7.11.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -388443,27 +437986,27 @@ false systemuserid systemuser - user_flowcredentialapplication - owninguser - flowcredentialapplication - owninguser + lk_catalogassignment_modifiedonbehalfby + modifiedonbehalfby + catalogassignment + modifiedonbehalfby 0 - 2b1a2aea-baba-f011-bbd3-7c1e52365f30 + a3efdf85-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_flowevent_createdby + lk_internalcatalogassignment_createdby None - 1.5.13.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -388497,15 +438040,15 @@ false systemuserid systemuser - lk_flowevent_createdby + lk_internalcatalogassignment_createdby createdby - flowevent + internalcatalogassignment createdby 0 - 311a2aea-baba-f011-bbd3-7c1e52365f30 + a9efdf85-aeba-f011-bbd3-7c1e52365f30 false @@ -388515,9 +438058,9 @@ false true - lk_flowevent_createdonbehalfby + lk_internalcatalogassignment_createdonbehalfby None - 1.5.13.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -388551,27 +438094,27 @@ false systemuserid systemuser - lk_flowevent_createdonbehalfby + lk_internalcatalogassignment_createdonbehalfby createdonbehalfby - flowevent + internalcatalogassignment createdonbehalfby 0 - 371a2aea-baba-f011-bbd3-7c1e52365f30 + afefdf85-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_flowevent_modifiedby + lk_internalcatalogassignment_modifiedby None - 1.5.13.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -388605,15 +438148,15 @@ false systemuserid systemuser - lk_flowevent_modifiedby + lk_internalcatalogassignment_modifiedby modifiedby - flowevent + internalcatalogassignment modifiedby 0 - 3d1a2aea-baba-f011-bbd3-7c1e52365f30 + b5efdf85-aeba-f011-bbd3-7c1e52365f30 false @@ -388623,9 +438166,9 @@ false true - lk_flowevent_modifiedonbehalfby + lk_internalcatalogassignment_modifiedonbehalfby None - 1.5.13.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -388659,27 +438202,27 @@ false systemuserid systemuser - lk_flowevent_modifiedonbehalfby + lk_internalcatalogassignment_modifiedonbehalfby modifiedonbehalfby - flowevent + internalcatalogassignment modifiedonbehalfby 0 - 4f1a2aea-baba-f011-bbd3-7c1e52365f30 + 9ab5ef85-65e8-4a64-9bfc-d3bd2fe6eefd false - true + false iscustomizable - true + false - false - true - user_flowevent + true + false + lk_userform_createdby None - 1.5.13.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -388713,27 +438256,81 @@ false systemuserid systemuser - user_flowevent - owninguser - flowevent - owninguser + lk_userform_createdby + createdby + userform + createdby 0 - 76f665f0-baba-f011-bbd3-7c1e52365f30 + 77eaf085-1edc-4bb6-91a4-e85ceccc7e89 false - true + false iscustomizable false + true + false + lk_usersettingsbase_createdby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_usersettingsbase_createdby + createdby + usersettings + createdby + + 0 + + + 58cf0c86-bdba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + false true - lk_flowmachine_createdby + lk_knowledgesourceconsumer_createdby None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -388767,15 +438364,15 @@ false systemuserid systemuser - lk_flowmachine_createdby + lk_knowledgesourceconsumer_createdby createdby - flowmachine + knowledgesourceconsumer createdby 0 - 7cf665f0-baba-f011-bbd3-7c1e52365f30 + 5ecf0c86-bdba-f011-bbd3-7c1e52365f30 false @@ -388785,9 +438382,9 @@ false true - lk_flowmachine_createdonbehalfby + lk_knowledgesourceconsumer_createdonbehalfby None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -388821,27 +438418,27 @@ false systemuserid systemuser - lk_flowmachine_createdonbehalfby + lk_knowledgesourceconsumer_createdonbehalfby createdonbehalfby - flowmachine + knowledgesourceconsumer createdonbehalfby 0 - 82f665f0-baba-f011-bbd3-7c1e52365f30 + 64cf0c86-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_flowmachine_modifiedby + lk_knowledgesourceconsumer_modifiedby None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -388875,15 +438472,15 @@ false systemuserid systemuser - lk_flowmachine_modifiedby + lk_knowledgesourceconsumer_modifiedby modifiedby - flowmachine + knowledgesourceconsumer modifiedby 0 - 88f665f0-baba-f011-bbd3-7c1e52365f30 + 6acf0c86-bdba-f011-bbd3-7c1e52365f30 false @@ -388893,9 +438490,9 @@ false true - lk_flowmachine_modifiedonbehalfby + lk_knowledgesourceconsumer_modifiedonbehalfby None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -388929,27 +438526,27 @@ false systemuserid systemuser - lk_flowmachine_modifiedonbehalfby + lk_knowledgesourceconsumer_modifiedonbehalfby modifiedonbehalfby - flowmachine + knowledgesourceconsumer modifiedonbehalfby 0 - 9af665f0-baba-f011-bbd3-7c1e52365f30 + 7ccf0c86-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_flowmachine + user_knowledgesourceconsumer None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -388983,27 +438580,27 @@ false systemuserid systemuser - user_flowmachine + user_knowledgesourceconsumer owninguser - flowmachine + knowledgesourceconsumer owninguser 0 - 96f765f0-baba-f011-bbd3-7c1e52365f30 + 20d00c86-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_flowmachinegroup_createdby + lk_knowledgesourceprofile_createdby None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389037,15 +438634,15 @@ false systemuserid systemuser - lk_flowmachinegroup_createdby + lk_knowledgesourceprofile_createdby createdby - flowmachinegroup + knowledgesourceprofile createdby 0 - 9cf765f0-baba-f011-bbd3-7c1e52365f30 + 26d00c86-bdba-f011-bbd3-7c1e52365f30 false @@ -389055,9 +438652,9 @@ false true - lk_flowmachinegroup_createdonbehalfby + lk_knowledgesourceprofile_createdonbehalfby None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389091,27 +438688,27 @@ false systemuserid systemuser - lk_flowmachinegroup_createdonbehalfby + lk_knowledgesourceprofile_createdonbehalfby createdonbehalfby - flowmachinegroup + knowledgesourceprofile createdonbehalfby 0 - a2f765f0-baba-f011-bbd3-7c1e52365f30 + 2cd00c86-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_flowmachinegroup_modifiedby + lk_knowledgesourceprofile_modifiedby None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389145,15 +438742,15 @@ false systemuserid systemuser - lk_flowmachinegroup_modifiedby + lk_knowledgesourceprofile_modifiedby modifiedby - flowmachinegroup + knowledgesourceprofile modifiedby 0 - a8f765f0-baba-f011-bbd3-7c1e52365f30 + 32d00c86-bdba-f011-bbd3-7c1e52365f30 false @@ -389163,9 +438760,9 @@ false true - lk_flowmachinegroup_modifiedonbehalfby + lk_knowledgesourceprofile_modifiedonbehalfby None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389199,27 +438796,27 @@ false systemuserid systemuser - lk_flowmachinegroup_modifiedonbehalfby + lk_knowledgesourceprofile_modifiedonbehalfby modifiedonbehalfby - flowmachinegroup + knowledgesourceprofile modifiedonbehalfby 0 - baf765f0-baba-f011-bbd3-7c1e52365f30 + 44d00c86-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_flowmachinegroup + user_knowledgesourceprofile None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389253,15 +438850,15 @@ false systemuserid systemuser - user_flowmachinegroup + user_knowledgesourceprofile owninguser - flowmachinegroup + knowledgesourceprofile owninguser 0 - 86f865f0-baba-f011-bbd3-7c1e52365f30 + f1d00c86-bdba-f011-bbd3-7c1e52365f30 false @@ -389271,9 +438868,9 @@ false true - lk_flowmachineimage_createdby + lk_unstructuredfilesearchentity_createdby None - 1.3.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389307,15 +438904,15 @@ false systemuserid systemuser - lk_flowmachineimage_createdby + lk_unstructuredfilesearchentity_createdby createdby - flowmachineimage + unstructuredfilesearchentity createdby 0 - 8cf865f0-baba-f011-bbd3-7c1e52365f30 + f7d00c86-bdba-f011-bbd3-7c1e52365f30 false @@ -389325,9 +438922,9 @@ false true - lk_flowmachineimage_createdonbehalfby + lk_unstructuredfilesearchentity_createdonbehalfby None - 1.3.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389361,15 +438958,15 @@ false systemuserid systemuser - lk_flowmachineimage_createdonbehalfby + lk_unstructuredfilesearchentity_createdonbehalfby createdonbehalfby - flowmachineimage + unstructuredfilesearchentity createdonbehalfby 0 - 92f865f0-baba-f011-bbd3-7c1e52365f30 + fdd00c86-bdba-f011-bbd3-7c1e52365f30 false @@ -389379,9 +438976,9 @@ false true - lk_flowmachineimage_modifiedby + lk_unstructuredfilesearchentity_modifiedby None - 1.3.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389415,15 +439012,15 @@ false systemuserid systemuser - lk_flowmachineimage_modifiedby + lk_unstructuredfilesearchentity_modifiedby modifiedby - flowmachineimage + unstructuredfilesearchentity modifiedby 0 - 98f865f0-baba-f011-bbd3-7c1e52365f30 + 03d10c86-bdba-f011-bbd3-7c1e52365f30 false @@ -389433,9 +439030,9 @@ false true - lk_flowmachineimage_modifiedonbehalfby + lk_unstructuredfilesearchentity_modifiedonbehalfby None - 1.3.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389469,15 +439066,15 @@ false systemuserid systemuser - lk_flowmachineimage_modifiedonbehalfby + lk_unstructuredfilesearchentity_modifiedonbehalfby modifiedonbehalfby - flowmachineimage + unstructuredfilesearchentity modifiedonbehalfby 0 - aaf865f0-baba-f011-bbd3-7c1e52365f30 + 15d10c86-bdba-f011-bbd3-7c1e52365f30 false @@ -389487,9 +439084,9 @@ false true - user_flowmachineimage + user_unstructuredfilesearchentity None - 1.3.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389523,15 +439120,15 @@ false systemuserid systemuser - user_flowmachineimage + user_unstructuredfilesearchentity owninguser - flowmachineimage + unstructuredfilesearchentity owninguser 0 - 720674f6-baba-f011-bbd3-7c1e52365f30 + d5d10c86-bdba-f011-bbd3-7c1e52365f30 false @@ -389541,9 +439138,9 @@ false true - lk_flowmachineimageversion_createdby + lk_unstructuredfilesearchrecord_createdby None - 1.3.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389577,15 +439174,15 @@ false systemuserid systemuser - lk_flowmachineimageversion_createdby + lk_unstructuredfilesearchrecord_createdby createdby - flowmachineimageversion + unstructuredfilesearchrecord createdby 0 - 780674f6-baba-f011-bbd3-7c1e52365f30 + dbd10c86-bdba-f011-bbd3-7c1e52365f30 false @@ -389595,9 +439192,9 @@ false true - lk_flowmachineimageversion_createdonbehalfby + lk_unstructuredfilesearchrecord_createdonbehalfby None - 1.3.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389631,15 +439228,15 @@ false systemuserid systemuser - lk_flowmachineimageversion_createdonbehalfby + lk_unstructuredfilesearchrecord_createdonbehalfby createdonbehalfby - flowmachineimageversion + unstructuredfilesearchrecord createdonbehalfby 0 - 7e0674f6-baba-f011-bbd3-7c1e52365f30 + e1d10c86-bdba-f011-bbd3-7c1e52365f30 false @@ -389649,9 +439246,9 @@ false true - lk_flowmachineimageversion_modifiedby + lk_unstructuredfilesearchrecord_modifiedby None - 1.3.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389685,15 +439282,15 @@ false systemuserid systemuser - lk_flowmachineimageversion_modifiedby + lk_unstructuredfilesearchrecord_modifiedby modifiedby - flowmachineimageversion + unstructuredfilesearchrecord modifiedby 0 - 840674f6-baba-f011-bbd3-7c1e52365f30 + e7d10c86-bdba-f011-bbd3-7c1e52365f30 false @@ -389703,9 +439300,9 @@ false true - lk_flowmachineimageversion_modifiedonbehalfby + lk_unstructuredfilesearchrecord_modifiedonbehalfby None - 1.3.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389739,15 +439336,15 @@ false systemuserid systemuser - lk_flowmachineimageversion_modifiedonbehalfby + lk_unstructuredfilesearchrecord_modifiedonbehalfby modifiedonbehalfby - flowmachineimageversion + unstructuredfilesearchrecord modifiedonbehalfby 0 - 960674f6-baba-f011-bbd3-7c1e52365f30 + f9d10c86-bdba-f011-bbd3-7c1e52365f30 false @@ -389757,9 +439354,9 @@ false true - user_flowmachineimageversion + user_unstructuredfilesearchrecord None - 1.3.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389793,15 +439390,15 @@ false systemuserid systemuser - user_flowmachineimageversion + user_unstructuredfilesearchrecord owninguser - flowmachineimageversion + unstructuredfilesearchrecord owninguser 0 - 700774f6-baba-f011-bbd3-7c1e52365f30 + 13463986-bc5d-f111-a826-7ced8d776baf false @@ -389811,9 +439408,9 @@ false true - lk_flowmachinenetwork_createdby + lk_new_eventaggregator_createdby None - 1.4.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389847,15 +439444,15 @@ false systemuserid systemuser - lk_flowmachinenetwork_createdby + lk_new_eventaggregator_createdby createdby - flowmachinenetwork + new_eventaggregator createdby 0 - 760774f6-baba-f011-bbd3-7c1e52365f30 + 19463986-bc5d-f111-a826-7ced8d776baf false @@ -389865,9 +439462,9 @@ false true - lk_flowmachinenetwork_createdonbehalfby + lk_new_eventaggregator_createdonbehalfby None - 1.4.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389901,15 +439498,15 @@ false systemuserid systemuser - lk_flowmachinenetwork_createdonbehalfby + lk_new_eventaggregator_createdonbehalfby createdonbehalfby - flowmachinenetwork + new_eventaggregator createdonbehalfby 0 - 7c0774f6-baba-f011-bbd3-7c1e52365f30 + 1f463986-bc5d-f111-a826-7ced8d776baf false @@ -389919,9 +439516,9 @@ false true - lk_flowmachinenetwork_modifiedby + lk_new_eventaggregator_modifiedby None - 1.4.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -389955,15 +439552,15 @@ false systemuserid systemuser - lk_flowmachinenetwork_modifiedby + lk_new_eventaggregator_modifiedby modifiedby - flowmachinenetwork + new_eventaggregator modifiedby 0 - 820774f6-baba-f011-bbd3-7c1e52365f30 + 25463986-bc5d-f111-a826-7ced8d776baf false @@ -389973,9 +439570,9 @@ false true - lk_flowmachinenetwork_modifiedonbehalfby + lk_new_eventaggregator_modifiedonbehalfby None - 1.4.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -390009,15 +439606,15 @@ false systemuserid systemuser - lk_flowmachinenetwork_modifiedonbehalfby + lk_new_eventaggregator_modifiedonbehalfby modifiedonbehalfby - flowmachinenetwork + new_eventaggregator modifiedonbehalfby 0 - 940774f6-baba-f011-bbd3-7c1e52365f30 + 40463986-bc5d-f111-a826-7ced8d776baf false @@ -390027,9 +439624,9 @@ false true - user_flowmachinenetwork + user_new_eventaggregator None - 1.4.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -390063,27 +439660,81 @@ false systemuserid systemuser - user_flowmachinenetwork + user_new_eventaggregator owninguser - flowmachinenetwork + new_eventaggregator owninguser 0 - dfa0c0fd-baba-f011-bbd3-7c1e52365f30 + 06473986-bc5d-f111-a826-7ced8d776baf false true iscustomizable - false + true false true - lk_flowsessionbinary_createdby + lk_new_eventaggregatorscans_createdby None - 1.9.28.0 + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_new_eventaggregatorscans_createdby + createdby + new_eventaggregatorscans + createdby + + 0 + + + 0c473986-bc5d-f111-a826-7ced8d776baf + + false + + true + iscustomizable + true + + false + true + lk_new_eventaggregatorscans_createdonbehalfby + None + 1.0 OneToManyRelationship DoNotDisplay @@ -390117,15 +439768,15 @@ false systemuserid systemuser - lk_flowsessionbinary_createdby - createdby - flowsessionbinary - createdby + lk_new_eventaggregatorscans_createdonbehalfby + createdonbehalfby + new_eventaggregatorscans + createdonbehalfby 0 - e5a0c0fd-baba-f011-bbd3-7c1e52365f30 + 12473986-bc5d-f111-a826-7ced8d776baf false @@ -390135,9 +439786,9 @@ false true - lk_flowsessionbinary_createdonbehalfby + lk_new_eventaggregatorscans_modifiedby None - 1.9.28.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -390171,27 +439822,27 @@ false systemuserid systemuser - lk_flowsessionbinary_createdonbehalfby - createdonbehalfby - flowsessionbinary - createdonbehalfby + lk_new_eventaggregatorscans_modifiedby + modifiedby + new_eventaggregatorscans + modifiedby 0 - eba0c0fd-baba-f011-bbd3-7c1e52365f30 + 18473986-bc5d-f111-a826-7ced8d776baf false true iscustomizable - false + true false true - lk_flowsessionbinary_modifiedby + lk_new_eventaggregatorscans_modifiedonbehalfby None - 1.9.28.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -390225,15 +439876,15 @@ false systemuserid systemuser - lk_flowsessionbinary_modifiedby - modifiedby - flowsessionbinary - modifiedby + lk_new_eventaggregatorscans_modifiedonbehalfby + modifiedonbehalfby + new_eventaggregatorscans + modifiedonbehalfby 0 - f1a0c0fd-baba-f011-bbd3-7c1e52365f30 + 33473986-bc5d-f111-a826-7ced8d776baf false @@ -390243,9 +439894,9 @@ false true - lk_flowsessionbinary_modifiedonbehalfby + user_new_eventaggregatorscans None - 1.9.28.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -390279,27 +439930,81 @@ false systemuserid systemuser - lk_flowsessionbinary_modifiedonbehalfby + user_new_eventaggregatorscans + owninguser + new_eventaggregatorscans + owninguser + + 0 + + + 99e08986-2a02-4802-973c-e4243e834d8c + + false + + false + iscustomizable + true + + true + true + lk_task_modifiedonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_task_modifiedonbehalfby modifiedonbehalfby - flowsessionbinary - modifiedonbehalfby + task + modifiedonbehalfby_task 0 - 03a1c0fd-baba-f011-bbd3-7c1e52365f30 + 1b1d8b86-11c2-4e4e-9bfb-2b988ff2678d false - true + false iscustomizable false - false + true true - user_flowsessionbinary + lk_savedorginsightsconfiguration_createdby None - 1.9.28.0 + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -390333,27 +440038,27 @@ false systemuserid systemuser - user_flowsessionbinary - owninguser - flowsessionbinary - owninguser + lk_savedorginsightsconfiguration_createdby + createdby + savedorginsightsconfiguration + lk_savedorginsightsconfiguration_createdby 0 - 7da2c0fd-baba-f011-bbd3-7c1e52365f30 + acb7f986-0d2f-f111-88b5-7c1e5287d1d8 false true iscustomizable - true + false false true - lk_processstageparameter_createdby + lk_uxagentproject_createdby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -390387,15 +440092,15 @@ false systemuserid systemuser - lk_processstageparameter_createdby + lk_uxagentproject_createdby createdby - processstageparameter + uxagentproject createdby 0 - 83a2c0fd-baba-f011-bbd3-7c1e52365f30 + b3b7f986-0d2f-f111-88b5-7c1e5287d1d8 false @@ -390405,9 +440110,9 @@ false true - lk_processstageparameter_createdonbehalfby + lk_uxagentproject_createdonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -390441,27 +440146,27 @@ false systemuserid systemuser - lk_processstageparameter_createdonbehalfby + lk_uxagentproject_createdonbehalfby createdonbehalfby - processstageparameter + uxagentproject createdonbehalfby 0 - 89a2c0fd-baba-f011-bbd3-7c1e52365f30 + b9b7f986-0d2f-f111-88b5-7c1e5287d1d8 false true iscustomizable - true + false false true - lk_processstageparameter_modifiedby + lk_uxagentproject_modifiedby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -390495,27 +440200,27 @@ false systemuserid systemuser - lk_processstageparameter_modifiedby + lk_uxagentproject_modifiedby modifiedby - processstageparameter + uxagentproject modifiedby 0 - 8fa2c0fd-baba-f011-bbd3-7c1e52365f30 + 90c58987-d925-4a10-89bf-a4caf35f7db7 false - true + false iscustomizable - true + false - false - true - lk_processstageparameter_modifiedonbehalfby + true + false + lk_sdkmessageresponse_createdonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -390549,27 +440254,27 @@ false systemuserid systemuser - lk_processstageparameter_modifiedonbehalfby - modifiedonbehalfby - processstageparameter - modifiedonbehalfby + lk_sdkmessageresponse_createdonbehalfby + createdonbehalfby + sdkmessageresponse + createdonbehalfby 0 - a1a2c0fd-baba-f011-bbd3-7c1e52365f30 + c5201388-01e4-438e-8025-2eee63c67b74 false - true + false iscustomizable false - false - true - user_processstageparameter + true + false + SystemUser_ImportLogs None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -390603,27 +440308,27 @@ false systemuserid systemuser - user_processstageparameter + SystemUser_ImportLogs owninguser - processstageparameter + importlog owninguser 0 - 3ba3c0fd-baba-f011-bbd3-7c1e52365f30 + 536b2488-7a4a-4ab4-9da8-7fc9da4d3970 false - true + false iscustomizable - true + false - false - true - lk_savingrule_createdby + true + false + modifiedby_sdkmessageprocessingstep None - 1.9.2.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -390657,30 +440362,30 @@ false systemuserid systemuser - lk_savingrule_createdby - createdby - savingrule - createdby + modifiedby_sdkmessageprocessingstep + modifiedby + sdkmessageprocessingstep + modifiedby 0 - 41a3c0fd-baba-f011-bbd3-7c1e52365f30 + 92e04b88-2ee3-e411-a1ed-00219b3e91e8 false - true + false iscustomizable true - false + true true - lk_savingrule_createdonbehalfby + lk_officegraphdocument_createdonbehalfby None - 1.9.2.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -390711,30 +440416,30 @@ false systemuserid systemuser - lk_savingrule_createdonbehalfby + lk_officegraphdocument_createdonbehalfby createdonbehalfby - savingrule + officegraphdocument createdonbehalfby 0 - 47a3c0fd-baba-f011-bbd3-7c1e52365f30 + 9ee04b88-2ee3-e411-a1ed-00219b3e91e8 false - true + false iscustomizable true - false + true true - lk_savingrule_modifiedby + lk_officegraphdocument_modifiedonbehalfby None - 1.9.2.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -390765,15 +440470,15 @@ false systemuserid systemuser - lk_savingrule_modifiedby - modifiedby - savingrule - modifiedby + lk_officegraphdocument_modifiedonbehalfby + modifiedonbehalfby + officegraphdocument + modifiedonbehalfby 0 - 4da3c0fd-baba-f011-bbd3-7c1e52365f30 + dd7b5088-d5ba-f011-bbd3-7c1e52365f30 false @@ -390783,9 +440488,9 @@ false true - lk_savingrule_modifiedonbehalfby + lk_certificatecredential_createdby None - 1.9.2.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -390819,15 +440524,15 @@ false systemuserid systemuser - lk_savingrule_modifiedonbehalfby - modifiedonbehalfby - savingrule - modifiedonbehalfby + lk_certificatecredential_createdby + createdby + certificatecredential + createdby 0 - 5fa3c0fd-baba-f011-bbd3-7c1e52365f30 + e37b5088-d5ba-f011-bbd3-7c1e52365f30 false @@ -390837,9 +440542,9 @@ false true - user_savingrule + lk_certificatecredential_createdonbehalfby None - 1.9.2.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -390873,15 +440578,15 @@ false systemuserid systemuser - user_savingrule - owninguser - savingrule - owninguser + lk_certificatecredential_createdonbehalfby + createdonbehalfby + certificatecredential + createdonbehalfby 0 - db5edc04-bbba-f011-bbd3-7c1e52365f30 + e97b5088-d5ba-f011-bbd3-7c1e52365f30 false @@ -390891,9 +440596,9 @@ false true - lk_tag_createdby + lk_certificatecredential_modifiedby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -390927,15 +440632,15 @@ false systemuserid systemuser - lk_tag_createdby - createdby - tag - createdby + lk_certificatecredential_modifiedby + modifiedby + certificatecredential + modifiedby 0 - e15edc04-bbba-f011-bbd3-7c1e52365f30 + ef7b5088-d5ba-f011-bbd3-7c1e52365f30 false @@ -390945,9 +440650,9 @@ false true - lk_tag_createdonbehalfby + lk_certificatecredential_modifiedonbehalfby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -390981,15 +440686,15 @@ false systemuserid systemuser - lk_tag_createdonbehalfby - createdonbehalfby - tag - createdonbehalfby + lk_certificatecredential_modifiedonbehalfby + modifiedonbehalfby + certificatecredential + modifiedonbehalfby 0 - e75edc04-bbba-f011-bbd3-7c1e52365f30 + 017c5088-d5ba-f011-bbd3-7c1e52365f30 false @@ -390999,9 +440704,9 @@ false true - lk_tag_modifiedby + user_certificatecredential None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -391035,27 +440740,27 @@ false systemuserid systemuser - lk_tag_modifiedby - modifiedby - tag - modifiedby + user_certificatecredential + owninguser + certificatecredential + owninguser 0 - ed5edc04-bbba-f011-bbd3-7c1e52365f30 + ff5a9688-1b31-4460-97d0-5a3f00a33d17 false - true + false iscustomizable - true + false - false + true true - lk_tag_modifiedonbehalfby + lk_audit_callinguserid None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -391089,27 +440794,27 @@ false systemuserid systemuser - lk_tag_modifiedonbehalfby - modifiedonbehalfby - tag - modifiedonbehalfby + lk_audit_callinguserid + callinguserid + audit + callinguserid 0 - ff5edc04-bbba-f011-bbd3-7c1e52365f30 + 6761d288-c523-47a8-bae7-63ae6a04e651 false - true + false iscustomizable - true + false - false - true - user_tag + true + false + modifiedby_sdkmessagefilter None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -391143,25 +440848,25 @@ false systemuserid systemuser - user_tag - owninguser - tag - owninguser + modifiedby_sdkmessagefilter + modifiedby + sdkmessagefilter + modifiedby 0 - 6d60dc04-bbba-f011-bbd3-7c1e52365f30 + ae968f89-e7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_taggedflowsession_createdby + lk_msdyn_plan_createdby None 1.0 OneToManyRelationship @@ -391197,15 +440902,15 @@ false systemuserid systemuser - lk_taggedflowsession_createdby + lk_msdyn_plan_createdby createdby - taggedflowsession + msdyn_plan createdby 0 - 7360dc04-bbba-f011-bbd3-7c1e52365f30 + b4968f89-e7ba-f011-bbd3-7c1e52365f30 false @@ -391215,7 +440920,7 @@ false true - lk_taggedflowsession_createdonbehalfby + lk_msdyn_plan_createdonbehalfby None 1.0 OneToManyRelationship @@ -391251,25 +440956,25 @@ false systemuserid systemuser - lk_taggedflowsession_createdonbehalfby + lk_msdyn_plan_createdonbehalfby createdonbehalfby - taggedflowsession + msdyn_plan createdonbehalfby 0 - 7960dc04-bbba-f011-bbd3-7c1e52365f30 + ba968f89-e7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_taggedflowsession_modifiedby + lk_msdyn_plan_modifiedby None 1.0 OneToManyRelationship @@ -391305,15 +441010,15 @@ false systemuserid systemuser - lk_taggedflowsession_modifiedby + lk_msdyn_plan_modifiedby modifiedby - taggedflowsession + msdyn_plan modifiedby 0 - 7f60dc04-bbba-f011-bbd3-7c1e52365f30 + c0968f89-e7ba-f011-bbd3-7c1e52365f30 false @@ -391323,7 +441028,7 @@ false true - lk_taggedflowsession_modifiedonbehalfby + lk_msdyn_plan_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -391359,25 +441064,25 @@ false systemuserid systemuser - lk_taggedflowsession_modifiedonbehalfby + lk_msdyn_plan_modifiedonbehalfby modifiedonbehalfby - taggedflowsession + msdyn_plan modifiedonbehalfby 0 - 9160dc04-bbba-f011-bbd3-7c1e52365f30 + d2968f89-e7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_taggedflowsession + user_msdyn_plan None 1.0 OneToManyRelationship @@ -391413,25 +441118,25 @@ false systemuserid systemuser - user_taggedflowsession + user_msdyn_plan owninguser - taggedflowsession + msdyn_plan owninguser 0 - 3762dc04-bbba-f011-bbd3-7c1e52365f30 + 91978f89-e7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_taggedprocess_createdby + lk_msdyn_planartifact_createdby None 1.0 OneToManyRelationship @@ -391467,15 +441172,15 @@ false systemuserid systemuser - lk_taggedprocess_createdby + lk_msdyn_planartifact_createdby createdby - taggedprocess + msdyn_planartifact createdby 0 - 3d62dc04-bbba-f011-bbd3-7c1e52365f30 + 97978f89-e7ba-f011-bbd3-7c1e52365f30 false @@ -391485,7 +441190,7 @@ false true - lk_taggedprocess_createdonbehalfby + lk_msdyn_planartifact_createdonbehalfby None 1.0 OneToManyRelationship @@ -391521,25 +441226,25 @@ false systemuserid systemuser - lk_taggedprocess_createdonbehalfby + lk_msdyn_planartifact_createdonbehalfby createdonbehalfby - taggedprocess + msdyn_planartifact createdonbehalfby 0 - 4362dc04-bbba-f011-bbd3-7c1e52365f30 + 9d978f89-e7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_taggedprocess_modifiedby + lk_msdyn_planartifact_modifiedby None 1.0 OneToManyRelationship @@ -391575,15 +441280,15 @@ false systemuserid systemuser - lk_taggedprocess_modifiedby + lk_msdyn_planartifact_modifiedby modifiedby - taggedprocess + msdyn_planartifact modifiedby 0 - 4962dc04-bbba-f011-bbd3-7c1e52365f30 + a3978f89-e7ba-f011-bbd3-7c1e52365f30 false @@ -391593,7 +441298,7 @@ false true - lk_taggedprocess_modifiedonbehalfby + lk_msdyn_planartifact_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -391629,25 +441334,25 @@ false systemuserid systemuser - lk_taggedprocess_modifiedonbehalfby + lk_msdyn_planartifact_modifiedonbehalfby modifiedonbehalfby - taggedprocess + msdyn_planartifact modifiedonbehalfby 0 - 5b62dc04-bbba-f011-bbd3-7c1e52365f30 + b5978f89-e7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_taggedprocess + user_msdyn_planartifact None 1.0 OneToManyRelationship @@ -391683,27 +441388,27 @@ false systemuserid systemuser - user_taggedprocess + user_msdyn_planartifact owninguser - taggedprocess + msdyn_planartifact owninguser 0 - 00105f0b-bbba-f011-bbd3-7c1e52365f30 + 8282448a-a08c-468d-906c-ebd8d9de9a48 false - true + false iscustomizable - true + false - false + true true - lk_workflowmetadata_createdby + lk_workflowlog_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -391737,15 +441442,15 @@ false systemuserid systemuser - lk_workflowmetadata_createdby + lk_workflowlog_createdby createdby - workflowmetadata + workflowlog createdby 0 - 06105f0b-bbba-f011-bbd3-7c1e52365f30 + 688a848a-a9ba-f011-bbd3-7c1e52365f30 false @@ -391755,9 +441460,9 @@ false true - lk_workflowmetadata_createdonbehalfby + lk_solutioncomponentattributeconfiguration_createdby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -391791,15 +441496,15 @@ false systemuserid systemuser - lk_workflowmetadata_createdonbehalfby - createdonbehalfby - workflowmetadata - createdonbehalfby + lk_solutioncomponentattributeconfiguration_createdby + createdby + solutioncomponentattributeconfiguration + createdby 0 - 0c105f0b-bbba-f011-bbd3-7c1e52365f30 + 6e8a848a-a9ba-f011-bbd3-7c1e52365f30 false @@ -391809,9 +441514,9 @@ false true - lk_workflowmetadata_modifiedby + lk_solutioncomponentattributeconfiguration_createdonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -391845,15 +441550,15 @@ false systemuserid systemuser - lk_workflowmetadata_modifiedby - modifiedby - workflowmetadata - modifiedby + lk_solutioncomponentattributeconfiguration_createdonbehalfby + createdonbehalfby + solutioncomponentattributeconfiguration + createdonbehalfby 0 - 12105f0b-bbba-f011-bbd3-7c1e52365f30 + 748a848a-a9ba-f011-bbd3-7c1e52365f30 false @@ -391863,9 +441568,9 @@ false true - lk_workflowmetadata_modifiedonbehalfby + lk_solutioncomponentattributeconfiguration_modifiedby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -391899,15 +441604,15 @@ false systemuserid systemuser - lk_workflowmetadata_modifiedonbehalfby - modifiedonbehalfby - workflowmetadata - modifiedonbehalfby + lk_solutioncomponentattributeconfiguration_modifiedby + modifiedby + solutioncomponentattributeconfiguration + modifiedby 0 - 24105f0b-bbba-f011-bbd3-7c1e52365f30 + 7a8a848a-a9ba-f011-bbd3-7c1e52365f30 false @@ -391917,9 +441622,9 @@ false true - user_workflowmetadata + lk_solutioncomponentattributeconfiguration_modifiedonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -391953,15 +441658,15 @@ false systemuserid systemuser - user_workflowmetadata - owninguser - workflowmetadata - owninguser + lk_solutioncomponentattributeconfiguration_modifiedonbehalfby + modifiedonbehalfby + solutioncomponentattributeconfiguration + modifiedonbehalfby 0 - 1a125f0b-bbba-f011-bbd3-7c1e52365f30 + 898b848a-a9ba-f011-bbd3-7c1e52365f30 false @@ -391971,9 +441676,9 @@ false true - lk_workqueue_createdby + lk_solutioncomponentbatchconfiguration_createdby None - 1.5.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -392007,15 +441712,15 @@ false systemuserid systemuser - lk_workqueue_createdby + lk_solutioncomponentbatchconfiguration_createdby createdby - workqueue + solutioncomponentbatchconfiguration createdby 0 - 2c125f0b-bbba-f011-bbd3-7c1e52365f30 + 8f8b848a-a9ba-f011-bbd3-7c1e52365f30 false @@ -392025,9 +441730,9 @@ false true - lk_workqueue_createdonbehalfby + lk_solutioncomponentbatchconfiguration_createdonbehalfby None - 1.5.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -392061,15 +441766,15 @@ false systemuserid systemuser - lk_workqueue_createdonbehalfby + lk_solutioncomponentbatchconfiguration_createdonbehalfby createdonbehalfby - workqueue + solutioncomponentbatchconfiguration createdonbehalfby 0 - 3e125f0b-bbba-f011-bbd3-7c1e52365f30 + 958b848a-a9ba-f011-bbd3-7c1e52365f30 false @@ -392079,9 +441784,9 @@ false true - lk_workqueue_modifiedby + lk_solutioncomponentbatchconfiguration_modifiedby None - 1.5.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -392115,15 +441820,15 @@ false systemuserid systemuser - lk_workqueue_modifiedby + lk_solutioncomponentbatchconfiguration_modifiedby modifiedby - workqueue + solutioncomponentbatchconfiguration modifiedby 0 - 53125f0b-bbba-f011-bbd3-7c1e52365f30 + 9b8b848a-a9ba-f011-bbd3-7c1e52365f30 false @@ -392133,9 +441838,9 @@ false true - lk_workqueue_modifiedonbehalfby + lk_solutioncomponentbatchconfiguration_modifiedonbehalfby None - 1.5.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -392169,15 +441874,15 @@ false systemuserid systemuser - lk_workqueue_modifiedonbehalfby + lk_solutioncomponentbatchconfiguration_modifiedonbehalfby modifiedonbehalfby - workqueue + solutioncomponentbatchconfiguration modifiedonbehalfby 0 - 70125f0b-bbba-f011-bbd3-7c1e52365f30 + ad8b848a-a9ba-f011-bbd3-7c1e52365f30 false @@ -392187,9 +441892,9 @@ false true - user_workqueue + user_solutioncomponentbatchconfiguration None - 1.5.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -392223,27 +441928,27 @@ false systemuserid systemuser - user_workqueue + user_solutioncomponentbatchconfiguration owninguser - workqueue + solutioncomponentbatchconfiguration owninguser 0 - c5145f0b-bbba-f011-bbd3-7c1e52365f30 + 4077008b-c4c9-486c-a694-8dd76e21a8f9 false - true + false iscustomizable - true + false - false - true - lk_workqueueitem_createdby + true + false + modifiedby_sdkmessagerequestfield None - 1.5.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -392277,30 +441982,30 @@ false systemuserid systemuser - lk_workqueueitem_createdby - createdby - workqueueitem - createdby + modifiedby_sdkmessagerequestfield + modifiedby + sdkmessagerequestfield + modifiedby 0 - cb145f0b-bbba-f011-bbd3-7c1e52365f30 + 5dae358b-888e-46c4-b066-84deca1e4ff8 false - true + false iscustomizable true - false + true true - lk_workqueueitem_createdonbehalfby + lk_appconfiginstance_createdonbehalfby None - 1.5.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -392331,27 +442036,27 @@ false systemuserid systemuser - lk_workqueueitem_createdonbehalfby + systemuser_appconfiginstance_createdonbehalfby createdonbehalfby - workqueueitem - createdonbehalfby + appconfiginstance + appconfiginstance_createdonbehalfby 0 - d3145f0b-bbba-f011-bbd3-7c1e52365f30 + fb8f3e8b-dd34-40b9-8248-dc66c540c476 false - true + false iscustomizable - true + false - false + true true - lk_workqueueitem_modifiedby + lk_publisherbase_createdonbehalfby None - 1.5.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -392385,27 +442090,27 @@ false systemuserid systemuser - lk_workqueueitem_modifiedby - modifiedby - workqueueitem - modifiedby + lk_publisherbase_createdonbehalfby + createdonbehalfby + publisher + createdonbehalfby 0 - d9145f0b-bbba-f011-bbd3-7c1e52365f30 + 8e4e6b8b-b575-4764-a47b-515de45dd09d false - true + false iscustomizable true - false + true true - lk_workqueueitem_modifiedonbehalfby + lk_MobileOfflineProfile_modifiedonbehalfby None - 1.5.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -392439,27 +442144,27 @@ false systemuserid systemuser - lk_workqueueitem_modifiedonbehalfby + lk_MobileOfflineProfile_modifiedonbehalfby modifiedonbehalfby - workqueueitem + mobileofflineprofile modifiedonbehalfby 0 - fc145f0b-bbba-f011-bbd3-7c1e52365f30 + 65b0958b-ceba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_workqueueitem + mailbox_emailaddressapprovedby_systemuser None - 1.5.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -392479,7 +442184,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -392493,15 +442198,15 @@ false systemuserid systemuser - user_workqueueitem - owninguser - workqueueitem - owninguser + systemuser_mailbox_emailaddressapprovedby + emailaddressapprovedby + mailbox + emailaddressapprovedby_mailbox 0 - 70165811-bbba-f011-bbd3-7c1e52365f30 + 6db0958b-ceba-f011-bbd3-7c1e52365f30 false @@ -392511,9 +442216,9 @@ false true - lk_desktopflowbinary_createdby + mailbox_testandenablelastattemptedby_systemuser None - 1.3.8.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -392533,7 +442238,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -392547,30 +442252,30 @@ false systemuserid systemuser - lk_desktopflowbinary_createdby - createdby - desktopflowbinary - createdby + systemuser_mailbox_testandenablelastattemptedby + testandenablelastattemptedby + mailbox + testandenablelastattemptedby_mailbox 0 - 76165811-bbba-f011-bbd3-7c1e52365f30 + 835beb8b-d162-42ae-a18f-945b6c9cf677 false - true + false iscustomizable true - false + true true - lk_desktopflowbinary_createdonbehalfby + lk_appconfig_createdby None - 1.3.8.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -392601,27 +442306,27 @@ false systemuserid systemuser - lk_desktopflowbinary_createdonbehalfby - createdonbehalfby - desktopflowbinary - createdonbehalfby + systemuser_appconfig_createdby + createdby + appconfig + appconfig_createdby 0 - 7c165811-bbba-f011-bbd3-7c1e52365f30 + 72f8fb8b-5f25-4854-86eb-5100b27c4e26 false - true + false iscustomizable false - false + true true - lk_desktopflowbinary_modifiedby + lk_templatebase_modifiedby None - 1.3.8.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -392655,15 +442360,15 @@ false systemuserid systemuser - lk_desktopflowbinary_modifiedby + lk_templatebase_modifiedby modifiedby - desktopflowbinary + template modifiedby 0 - 82165811-bbba-f011-bbd3-7c1e52365f30 + 162f168c-bdba-f011-bbd3-7c1e52365f30 false @@ -392673,63 +442378,9 @@ false true - lk_desktopflowbinary_modifiedonbehalfby - None - 1.3.8.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_desktopflowbinary_modifiedonbehalfby - modifiedonbehalfby - desktopflowbinary - modifiedonbehalfby - - 0 - - - 94165811-bbba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - user_desktopflowbinary + lk_unstructuredfilesearchrecordstatus_createdby None - 1.3.8.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -392763,25 +442414,25 @@ false systemuserid systemuser - user_desktopflowbinary - owninguser - desktopflowbinary - owninguser + lk_unstructuredfilesearchrecordstatus_createdby + createdby + unstructuredfilesearchrecordstatus + createdby 0 - 85185811-bbba-f011-bbd3-7c1e52365f30 + 1c2f168c-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_flowsession_createdby + lk_unstructuredfilesearchrecordstatus_createdonbehalfby None 1.0 OneToManyRelationship @@ -392817,15 +442468,15 @@ false systemuserid systemuser - lk_flowsession_createdby - createdby - flowsession - createdby + lk_unstructuredfilesearchrecordstatus_createdonbehalfby + createdonbehalfby + unstructuredfilesearchrecordstatus + createdonbehalfby 0 - 8b185811-bbba-f011-bbd3-7c1e52365f30 + 222f168c-bdba-f011-bbd3-7c1e52365f30 false @@ -392835,7 +442486,7 @@ false true - lk_flowsession_createdonbehalfby + lk_unstructuredfilesearchrecordstatus_modifiedby None 1.0 OneToManyRelationship @@ -392871,25 +442522,25 @@ false systemuserid systemuser - lk_flowsession_createdonbehalfby - createdonbehalfby - flowsession - createdonbehalfby + lk_unstructuredfilesearchrecordstatus_modifiedby + modifiedby + unstructuredfilesearchrecordstatus + modifiedby 0 - 91185811-bbba-f011-bbd3-7c1e52365f30 + 282f168c-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_flowsession_modifiedby + lk_unstructuredfilesearchrecordstatus_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -392925,15 +442576,15 @@ false systemuserid systemuser - lk_flowsession_modifiedby - modifiedby - flowsession - modifiedby + lk_unstructuredfilesearchrecordstatus_modifiedonbehalfby + modifiedonbehalfby + unstructuredfilesearchrecordstatus + modifiedonbehalfby 0 - 97185811-bbba-f011-bbd3-7c1e52365f30 + 3c2f168c-bdba-f011-bbd3-7c1e52365f30 false @@ -392943,7 +442594,7 @@ false true - lk_flowsession_modifiedonbehalfby + user_unstructuredfilesearchrecordstatus None 1.0 OneToManyRelationship @@ -392979,15 +442630,15 @@ false systemuserid systemuser - lk_flowsession_modifiedonbehalfby - modifiedonbehalfby - flowsession - modifiedonbehalfby + user_unstructuredfilesearchrecordstatus + owninguser + unstructuredfilesearchrecordstatus + owninguser 0 - a9185811-bbba-f011-bbd3-7c1e52365f30 + 1132168c-bdba-f011-bbd3-7c1e52365f30 false @@ -392997,9 +442648,9 @@ false true - user_flowsession + lk_dvfilesearch_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -393033,36 +442684,36 @@ false systemuserid systemuser - user_flowsession - owninguser - flowsession - owninguser + lk_dvfilesearch_createdby + createdby + dvfilesearch + createdby 0 - 408f891d-bbba-f011-bbd3-7c1e52365f30 + 1732168c-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - flowmachinegroup_PasswordChangedBy + lk_dvfilesearch_createdonbehalfby None - 1.3.8.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -393073,7 +442724,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -393087,15 +442738,15 @@ false systemuserid systemuser - flowmachinegroup_PasswordChangedBy - passwordchangedby - flowmachinegroup - PasswordChangedBy + lk_dvfilesearch_createdonbehalfby + createdonbehalfby + dvfilesearch + createdonbehalfby 0 - 488f891d-bbba-f011-bbd3-7c1e52365f30 + 1d32168c-bdba-f011-bbd3-7c1e52365f30 false @@ -393105,18 +442756,18 @@ false true - flowmachinegroup_RotationStartedBy + lk_dvfilesearch_modifiedby None - 1.3.8.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -393127,7 +442778,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -393141,15 +442792,15 @@ false systemuserid systemuser - flowmachinegroup_RotationStartedBy - rotationstartedby - flowmachinegroup - RotationStartedBy + lk_dvfilesearch_modifiedby + modifiedby + dvfilesearch + modifiedby 0 - 901b8123-bbba-f011-bbd3-7c1e52365f30 + 2332168c-bdba-f011-bbd3-7c1e52365f30 false @@ -393159,32 +442810,18 @@ false true - workqueueitem_processinguser + lk_dvfilesearch_modifiedonbehalfby None - 1.5.15.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 84bcaaa6-4989-43cd-8883-3e2eca570f40 - - false - - 1033 - - - - 84bcaaa6-4989-43cd-8883-3e2eca570f40 - - false - - 1033 - + + - 10000 + true false @@ -393209,27 +442846,27 @@ false systemuserid systemuser - workqueueitem_processinguser - processinguser - workqueueitem - processinguser + lk_dvfilesearch_modifiedonbehalfby + modifiedonbehalfby + dvfilesearch + modifiedonbehalfby 0 - 1d166cf7-bbba-f011-bbd3-7c1e52365f30 + 3532168c-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_flowaggregation_createdby + user_dvfilesearch None - 1.8.45.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -393263,27 +442900,27 @@ false systemuserid systemuser - lk_flowaggregation_createdby - createdby - flowaggregation - createdby + user_dvfilesearch + owninguser + dvfilesearch + owninguser 0 - 23166cf7-bbba-f011-bbd3-7c1e52365f30 + bb9b2b8c-6c7b-4f16-80a5-ee4a8cb4f0c4 false - true + false iscustomizable - true + false - false + true true - lk_flowaggregation_createdonbehalfby + workflow_modifiedby None - 1.8.45.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -393317,15 +442954,15 @@ false systemuserid systemuser - lk_flowaggregation_createdonbehalfby - createdonbehalfby - flowaggregation - createdonbehalfby + workflow_modifiedby + modifiedby + workflow + modifiedby 0 - 29166cf7-bbba-f011-bbd3-7c1e52365f30 + 2696318c-bc5d-f111-a826-7ced8d776baf false @@ -393335,9 +442972,9 @@ false true - lk_flowaggregation_modifiedby + lk_new_gaurdianfullscan_createdby None - 1.8.45.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -393371,15 +443008,15 @@ false systemuserid systemuser - lk_flowaggregation_modifiedby - modifiedby - flowaggregation - modifiedby + lk_new_gaurdianfullscan_createdby + createdby + new_gaurdianfullscan + createdby 0 - 2f166cf7-bbba-f011-bbd3-7c1e52365f30 + 2c96318c-bc5d-f111-a826-7ced8d776baf false @@ -393389,9 +443026,9 @@ false true - lk_flowaggregation_modifiedonbehalfby + lk_new_gaurdianfullscan_createdonbehalfby None - 1.8.45.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -393425,15 +443062,15 @@ false systemuserid systemuser - lk_flowaggregation_modifiedonbehalfby - modifiedonbehalfby - flowaggregation - modifiedonbehalfby + lk_new_gaurdianfullscan_createdonbehalfby + createdonbehalfby + new_gaurdianfullscan + createdonbehalfby 0 - 41166cf7-bbba-f011-bbd3-7c1e52365f30 + 3296318c-bc5d-f111-a826-7ced8d776baf false @@ -393443,9 +443080,9 @@ false true - user_flowaggregation + lk_new_gaurdianfullscan_modifiedby None - 1.8.45.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -393479,27 +443116,27 @@ false systemuserid systemuser - user_flowaggregation - owninguser - flowaggregation - owninguser + lk_new_gaurdianfullscan_modifiedby + modifiedby + new_gaurdianfullscan + modifiedby 0 - d3166cf7-bbba-f011-bbd3-7c1e52365f30 + 3896318c-bc5d-f111-a826-7ced8d776baf false true iscustomizable - false + true false true - lk_flowlog_createdby + lk_new_gaurdianfullscan_modifiedonbehalfby None - 1.8.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -393533,15 +443170,15 @@ false systemuserid systemuser - lk_flowlog_createdby - createdby - flowlog - createdby + lk_new_gaurdianfullscan_modifiedonbehalfby + modifiedonbehalfby + new_gaurdianfullscan + modifiedonbehalfby 0 - d9166cf7-bbba-f011-bbd3-7c1e52365f30 + 5396318c-bc5d-f111-a826-7ced8d776baf false @@ -393551,9 +443188,9 @@ false true - lk_flowlog_createdonbehalfby + user_new_gaurdianfullscan None - 1.8.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -393587,27 +443224,27 @@ false systemuserid systemuser - lk_flowlog_createdonbehalfby - createdonbehalfby - flowlog - createdonbehalfby + user_new_gaurdianfullscan + owninguser + new_gaurdianfullscan + owninguser 0 - df166cf7-bbba-f011-bbd3-7c1e52365f30 + 2897318c-bc5d-f111-a826-7ced8d776baf false true iscustomizable - false + true false true - lk_flowlog_modifiedby + lk_new_gaurdianhealthchecks_createdby None - 1.8.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -393641,15 +443278,15 @@ false systemuserid systemuser - lk_flowlog_modifiedby - modifiedby - flowlog - modifiedby + lk_new_gaurdianhealthchecks_createdby + createdby + new_gaurdianhealthchecks + createdby 0 - e5166cf7-bbba-f011-bbd3-7c1e52365f30 + 2e97318c-bc5d-f111-a826-7ced8d776baf false @@ -393659,9 +443296,9 @@ false true - lk_flowlog_modifiedonbehalfby + lk_new_gaurdianhealthchecks_createdonbehalfby None - 1.8.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -393695,15 +443332,15 @@ false systemuserid systemuser - lk_flowlog_modifiedonbehalfby - modifiedonbehalfby - flowlog - modifiedonbehalfby + lk_new_gaurdianhealthchecks_createdonbehalfby + createdonbehalfby + new_gaurdianhealthchecks + createdonbehalfby 0 - 60176cf7-bbba-f011-bbd3-7c1e52365f30 + 3497318c-bc5d-f111-a826-7ced8d776baf false @@ -393713,9 +443350,9 @@ false true - lk_flowrun_createdby + lk_new_gaurdianhealthchecks_modifiedby None - 1.5.24.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -393749,15 +443386,15 @@ false systemuserid systemuser - lk_flowrun_createdby - createdby - flowrun - createdby + lk_new_gaurdianhealthchecks_modifiedby + modifiedby + new_gaurdianhealthchecks + modifiedby 0 - 66176cf7-bbba-f011-bbd3-7c1e52365f30 + 3a97318c-bc5d-f111-a826-7ced8d776baf false @@ -393767,9 +443404,9 @@ false true - lk_flowrun_createdonbehalfby + lk_new_gaurdianhealthchecks_modifiedonbehalfby None - 1.5.24.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -393803,15 +443440,15 @@ false systemuserid systemuser - lk_flowrun_createdonbehalfby - createdonbehalfby - flowrun - createdonbehalfby + lk_new_gaurdianhealthchecks_modifiedonbehalfby + modifiedonbehalfby + new_gaurdianhealthchecks + modifiedonbehalfby 0 - 6c176cf7-bbba-f011-bbd3-7c1e52365f30 + 5597318c-bc5d-f111-a826-7ced8d776baf false @@ -393821,9 +443458,9 @@ false true - lk_flowrun_modifiedby + user_new_gaurdianhealthchecks None - 1.5.24.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -393857,15 +443494,15 @@ false systemuserid systemuser - lk_flowrun_modifiedby - modifiedby - flowrun - modifiedby + user_new_gaurdianhealthchecks + owninguser + new_gaurdianhealthchecks + owninguser 0 - 72176cf7-bbba-f011-bbd3-7c1e52365f30 + e26d428c-f6ba-f011-bbd3-7c1e52365f30 false @@ -393875,9 +443512,9 @@ false true - lk_flowrun_modifiedonbehalfby + lk_ctx_invoice_createdby None - 1.5.24.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -393911,15 +443548,15 @@ false systemuserid systemuser - lk_flowrun_modifiedonbehalfby - modifiedonbehalfby - flowrun - modifiedonbehalfby + lk_ctx_invoice_createdby + createdby + ctx_invoice + createdby 0 - 84176cf7-bbba-f011-bbd3-7c1e52365f30 + e86d428c-f6ba-f011-bbd3-7c1e52365f30 false @@ -393929,9 +443566,9 @@ false true - user_flowrun + lk_ctx_invoice_createdonbehalfby None - 1.5.24.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -393965,15 +443602,15 @@ false systemuserid systemuser - user_flowrun - owninguser - flowrun - owninguser + lk_ctx_invoice_createdonbehalfby + createdonbehalfby + ctx_invoice + createdonbehalfby 0 - 685a4445-bcba-f011-bbd3-7c1e52365f30 + ee6d428c-f6ba-f011-bbd3-7c1e52365f30 false @@ -393983,9 +443620,9 @@ false true - lk_approvalprocess_createdby + lk_ctx_invoice_modifiedby None - 2.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -394019,15 +443656,15 @@ false systemuserid systemuser - lk_approvalprocess_createdby - createdby - approvalprocess - createdby + lk_ctx_invoice_modifiedby + modifiedby + ctx_invoice + modifiedby 0 - 6e5a4445-bcba-f011-bbd3-7c1e52365f30 + f56d428c-f6ba-f011-bbd3-7c1e52365f30 false @@ -394037,9 +443674,9 @@ false true - lk_approvalprocess_createdonbehalfby + lk_ctx_invoice_modifiedonbehalfby None - 2.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -394073,15 +443710,15 @@ false systemuserid systemuser - lk_approvalprocess_createdonbehalfby - createdonbehalfby - approvalprocess - createdonbehalfby + lk_ctx_invoice_modifiedonbehalfby + modifiedonbehalfby + ctx_invoice + modifiedonbehalfby 0 - 745a4445-bcba-f011-bbd3-7c1e52365f30 + 076e428c-f6ba-f011-bbd3-7c1e52365f30 false @@ -394091,9 +443728,9 @@ false true - lk_approvalprocess_modifiedby + user_ctx_invoice None - 2.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -394127,15 +443764,15 @@ false systemuserid systemuser - lk_approvalprocess_modifiedby - modifiedby - approvalprocess - modifiedby + user_ctx_invoice + owninguser + ctx_invoice + owninguser 0 - 7a5a4445-bcba-f011-bbd3-7c1e52365f30 + 2357848c-2f10-f111-8345-7c1e52216fd8 false @@ -394145,9 +443782,9 @@ false true - lk_approvalprocess_modifiedonbehalfby + lk_mcpprompt_createdby None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -394181,15 +443818,15 @@ false systemuserid systemuser - lk_approvalprocess_modifiedonbehalfby - modifiedonbehalfby - approvalprocess - modifiedonbehalfby + lk_mcpprompt_createdby + createdby + mcpprompt + createdby 0 - 8c5a4445-bcba-f011-bbd3-7c1e52365f30 + 2d57848c-2f10-f111-8345-7c1e52216fd8 false @@ -394199,9 +443836,9 @@ false true - user_approvalprocess + lk_mcpprompt_createdonbehalfby None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -394235,15 +443872,15 @@ false systemuserid systemuser - user_approvalprocess - owninguser - approvalprocess - owninguser + lk_mcpprompt_createdonbehalfby + createdonbehalfby + mcpprompt + createdonbehalfby 0 - 675b4445-bcba-f011-bbd3-7c1e52365f30 + 3357848c-2f10-f111-8345-7c1e52216fd8 false @@ -394253,9 +443890,9 @@ false true - lk_approvalstageapproval_createdby + lk_mcpprompt_modifiedby None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -394289,15 +443926,15 @@ false systemuserid systemuser - lk_approvalstageapproval_createdby - createdby - approvalstageapproval - createdby + lk_mcpprompt_modifiedby + modifiedby + mcpprompt + modifiedby 0 - 6d5b4445-bcba-f011-bbd3-7c1e52365f30 + 3a57848c-2f10-f111-8345-7c1e52216fd8 false @@ -394307,9 +443944,9 @@ false true - lk_approvalstageapproval_createdonbehalfby + lk_mcpprompt_modifiedonbehalfby None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -394343,15 +443980,15 @@ false systemuserid systemuser - lk_approvalstageapproval_createdonbehalfby - createdonbehalfby - approvalstageapproval - createdonbehalfby + lk_mcpprompt_modifiedonbehalfby + modifiedonbehalfby + mcpprompt + modifiedonbehalfby 0 - 735b4445-bcba-f011-bbd3-7c1e52365f30 + 5157848c-2f10-f111-8345-7c1e52216fd8 false @@ -394361,9 +443998,9 @@ false true - lk_approvalstageapproval_modifiedby + user_mcpprompt None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -394397,27 +444034,27 @@ false systemuserid systemuser - lk_approvalstageapproval_modifiedby - modifiedby - approvalstageapproval - modifiedby + user_mcpprompt + owninguser + mcpprompt + owninguser 0 - 795b4445-bcba-f011-bbd3-7c1e52365f30 + 8349de8c-1fc6-462e-8472-85607f4475fb false - true + false iscustomizable - true + false - false + true true - lk_approvalstageapproval_modifiedonbehalfby + lk_savedquery_modifiedonbehalfby None - 2.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -394451,15 +444088,15 @@ false systemuserid systemuser - lk_approvalstageapproval_modifiedonbehalfby + lk_savedquery_modifiedonbehalfby modifiedonbehalfby - approvalstageapproval + savedquery modifiedonbehalfby 0 - 8b5b4445-bcba-f011-bbd3-7c1e52365f30 + 7243f28c-0d2f-f111-88b5-7c1e5287d1d8 false @@ -394469,9 +444106,9 @@ false true - user_approvalstageapproval + lk_uxagentproject_modifiedonbehalfby None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -394505,27 +444142,81 @@ false systemuserid systemuser - user_approvalstageapproval - owninguser - approvalstageapproval - owninguser + lk_uxagentproject_modifiedonbehalfby + modifiedonbehalfby + uxagentproject + modifiedonbehalfby 0 - 445c4445-bcba-f011-bbd3-7c1e52365f30 + 931df98c-0a65-4353-8b20-8e78e2c51983 + + false + + false + iscustomizable + false + + true + true + lk_offlinecommanddefinition_modifiedby + None + 9.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_offlinecommanddefinition_modifiedby + modifiedby + offlinecommanddefinition + modifiedby + + 0 + + + d393138d-f4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_approvalstagecondition_createdby + lk_powerpagesscanreport_createdby None - 2.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -394559,15 +444250,15 @@ false systemuserid systemuser - lk_approvalstagecondition_createdby + lk_powerpagesscanreport_createdby createdby - approvalstagecondition + powerpagesscanreport createdby 0 - 4a5c4445-bcba-f011-bbd3-7c1e52365f30 + d993138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -394577,9 +444268,9 @@ false true - lk_approvalstagecondition_createdonbehalfby + lk_powerpagesscanreport_createdonbehalfby None - 2.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -394613,27 +444304,27 @@ false systemuserid systemuser - lk_approvalstagecondition_createdonbehalfby + lk_powerpagesscanreport_createdonbehalfby createdonbehalfby - approvalstagecondition + powerpagesscanreport createdonbehalfby 0 - 505c4445-bcba-f011-bbd3-7c1e52365f30 + df93138d-f4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_approvalstagecondition_modifiedby + lk_powerpagesscanreport_modifiedby None - 2.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -394667,15 +444358,15 @@ false systemuserid systemuser - lk_approvalstagecondition_modifiedby + lk_powerpagesscanreport_modifiedby modifiedby - approvalstagecondition + powerpagesscanreport modifiedby 0 - 565c4445-bcba-f011-bbd3-7c1e52365f30 + e593138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -394685,9 +444376,9 @@ false true - lk_approvalstagecondition_modifiedonbehalfby + lk_powerpagesscanreport_modifiedonbehalfby None - 2.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -394721,27 +444412,27 @@ false systemuserid systemuser - lk_approvalstagecondition_modifiedonbehalfby + lk_powerpagesscanreport_modifiedonbehalfby modifiedonbehalfby - approvalstagecondition + powerpagesscanreport modifiedonbehalfby 0 - 685c4445-bcba-f011-bbd3-7c1e52365f30 + f793138d-f4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_approvalstagecondition + user_powerpagesscanreport None - 2.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -394775,15 +444466,15 @@ false systemuserid systemuser - user_approvalstagecondition + user_powerpagesscanreport owninguser - approvalstagecondition + powerpagesscanreport owninguser 0 - 195d4445-bcba-f011-bbd3-7c1e52365f30 + da94138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -394793,7 +444484,7 @@ false true - lk_approvalstageintelligent_createdby + lk_powerpagesddosalert_createdby None 1.0 OneToManyRelationship @@ -394829,15 +444520,15 @@ false systemuserid systemuser - lk_approvalstageintelligent_createdby + lk_powerpagesddosalert_createdby createdby - approvalstageintelligent + powerpagesddosalert createdby 0 - 1f5d4445-bcba-f011-bbd3-7c1e52365f30 + e094138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -394847,7 +444538,7 @@ false true - lk_approvalstageintelligent_createdonbehalfby + lk_powerpagesddosalert_createdonbehalfby None 1.0 OneToManyRelationship @@ -394883,15 +444574,15 @@ false systemuserid systemuser - lk_approvalstageintelligent_createdonbehalfby + lk_powerpagesddosalert_createdonbehalfby createdonbehalfby - approvalstageintelligent + powerpagesddosalert createdonbehalfby 0 - 255d4445-bcba-f011-bbd3-7c1e52365f30 + e694138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -394901,7 +444592,7 @@ false true - lk_approvalstageintelligent_modifiedby + lk_powerpagesddosalert_modifiedby None 1.0 OneToManyRelationship @@ -394937,15 +444628,15 @@ false systemuserid systemuser - lk_approvalstageintelligent_modifiedby + lk_powerpagesddosalert_modifiedby modifiedby - approvalstageintelligent + powerpagesddosalert modifiedby 0 - 2b5d4445-bcba-f011-bbd3-7c1e52365f30 + ec94138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -394955,7 +444646,7 @@ false true - lk_approvalstageintelligent_modifiedonbehalfby + lk_powerpagesddosalert_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -394991,15 +444682,15 @@ false systemuserid systemuser - lk_approvalstageintelligent_modifiedonbehalfby + lk_powerpagesddosalert_modifiedonbehalfby modifiedonbehalfby - approvalstageintelligent + powerpagesddosalert modifiedonbehalfby 0 - 3d5d4445-bcba-f011-bbd3-7c1e52365f30 + fe94138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -395009,7 +444700,7 @@ false true - user_approvalstageintelligent + user_powerpagesddosalert None 1.0 OneToManyRelationship @@ -395045,27 +444736,27 @@ false systemuserid systemuser - user_approvalstageintelligent + user_powerpagesddosalert owninguser - approvalstageintelligent + powerpagesddosalert owninguser 0 - fa5d4445-bcba-f011-bbd3-7c1e52365f30 + a995138d-f4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_approvalstageorder_createdby + lk_powerpageslog_createdby None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -395099,15 +444790,15 @@ false systemuserid systemuser - lk_approvalstageorder_createdby + lk_powerpageslog_createdby createdby - approvalstageorder + powerpageslog createdby 0 - 005e4445-bcba-f011-bbd3-7c1e52365f30 + af95138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -395117,9 +444808,9 @@ false true - lk_approvalstageorder_createdonbehalfby + lk_powerpageslog_createdonbehalfby None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -395153,27 +444844,27 @@ false systemuserid systemuser - lk_approvalstageorder_createdonbehalfby + lk_powerpageslog_createdonbehalfby createdonbehalfby - approvalstageorder + powerpageslog createdonbehalfby 0 - 065e4445-bcba-f011-bbd3-7c1e52365f30 + b595138d-f4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_approvalstageorder_modifiedby + lk_powerpageslog_modifiedby None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -395207,15 +444898,15 @@ false systemuserid systemuser - lk_approvalstageorder_modifiedby + lk_powerpageslog_modifiedby modifiedby - approvalstageorder + powerpageslog modifiedby 0 - 0c5e4445-bcba-f011-bbd3-7c1e52365f30 + bb95138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -395225,9 +444916,9 @@ false true - lk_approvalstageorder_modifiedonbehalfby + lk_powerpageslog_modifiedonbehalfby None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -395261,27 +444952,27 @@ false systemuserid systemuser - lk_approvalstageorder_modifiedonbehalfby + lk_powerpageslog_modifiedonbehalfby modifiedonbehalfby - approvalstageorder + powerpageslog modifiedonbehalfby 0 - 1e5e4445-bcba-f011-bbd3-7c1e52365f30 + cd95138d-f4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_approvalstageorder + user_powerpageslog None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -395315,15 +445006,15 @@ false systemuserid systemuser - user_approvalstageorder + user_powerpageslog owninguser - approvalstageorder + powerpageslog owninguser 0 - bb5e4445-bcba-f011-bbd3-7c1e52365f30 + 3496138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -395333,9 +445024,9 @@ false true - lk_msdyn_flow_actionapprovalmodel_createdby + lk_powerpagesmanagedidentity_createdby None - 2.0.0.15 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -395369,15 +445060,15 @@ false systemuserid systemuser - lk_msdyn_flow_actionapprovalmodel_createdby + lk_powerpagesmanagedidentity_createdby createdby - msdyn_flow_actionapprovalmodel + powerpagesmanagedidentity createdby 0 - c15e4445-bcba-f011-bbd3-7c1e52365f30 + 3a96138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -395387,9 +445078,9 @@ false true - lk_msdyn_flow_actionapprovalmodel_createdonbehalfby + lk_powerpagesmanagedidentity_createdonbehalfby None - 2.0.0.15 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -395423,15 +445114,15 @@ false systemuserid systemuser - lk_msdyn_flow_actionapprovalmodel_createdonbehalfby + lk_powerpagesmanagedidentity_createdonbehalfby createdonbehalfby - msdyn_flow_actionapprovalmodel + powerpagesmanagedidentity createdonbehalfby 0 - c75e4445-bcba-f011-bbd3-7c1e52365f30 + 4096138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -395441,9 +445132,9 @@ false true - lk_msdyn_flow_actionapprovalmodel_modifiedby + lk_powerpagesmanagedidentity_modifiedby None - 2.0.0.15 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -395477,15 +445168,15 @@ false systemuserid systemuser - lk_msdyn_flow_actionapprovalmodel_modifiedby + lk_powerpagesmanagedidentity_modifiedby modifiedby - msdyn_flow_actionapprovalmodel + powerpagesmanagedidentity modifiedby 0 - cd5e4445-bcba-f011-bbd3-7c1e52365f30 + 4696138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -395495,9 +445186,9 @@ false true - lk_msdyn_flow_actionapprovalmodel_modifiedonbehalfby + lk_powerpagesmanagedidentity_modifiedonbehalfby None - 2.0.0.15 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -395531,15 +445222,15 @@ false systemuserid systemuser - lk_msdyn_flow_actionapprovalmodel_modifiedonbehalfby + lk_powerpagesmanagedidentity_modifiedonbehalfby modifiedonbehalfby - msdyn_flow_actionapprovalmodel + powerpagesmanagedidentity modifiedonbehalfby 0 - df5e4445-bcba-f011-bbd3-7c1e52365f30 + 5896138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -395549,9 +445240,9 @@ false true - user_msdyn_flow_actionapprovalmodel + user_powerpagesmanagedidentity None - 2.0.0.15 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -395585,27 +445276,27 @@ false systemuserid systemuser - user_msdyn_flow_actionapprovalmodel + user_powerpagesmanagedidentity owninguser - msdyn_flow_actionapprovalmodel + powerpagesmanagedidentity owninguser 0 - c7bd3c4b-bcba-f011-bbd3-7c1e52365f30 + 5708908d-335e-4dcb-a4b1-4cd1971af72d false - true + false iscustomizable - true + false - false + true true - lk_msdyn_flow_approval_createdby + lk_kbarticlecomment_createdonbehalfby None - 2.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -395639,15 +445330,15 @@ false systemuserid systemuser - lk_msdyn_flow_approval_createdby - createdby - msdyn_flow_approval - createdby + lk_kbarticlecomment_createdonbehalfby + createdonbehalfby + kbarticlecomment + createdonbehalfby 0 - cdbd3c4b-bcba-f011-bbd3-7c1e52365f30 + 6dd9b08d-d8ba-f011-bbd3-7c1e52365f30 false @@ -395657,9 +445348,9 @@ false true - lk_msdyn_flow_approval_createdonbehalfby + lk_msdyn_insightsstorevirtualentity_createdby None - 2.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -395693,15 +445384,15 @@ false systemuserid systemuser - lk_msdyn_flow_approval_createdonbehalfby - createdonbehalfby - msdyn_flow_approval - createdonbehalfby + lk_msdyn_insightsstorevirtualentity_createdby + createdby + msdyn_insightsstorevirtualentity + createdby 0 - d3bd3c4b-bcba-f011-bbd3-7c1e52365f30 + 73d9b08d-d8ba-f011-bbd3-7c1e52365f30 false @@ -395711,9 +445402,9 @@ false true - lk_msdyn_flow_approval_modifiedby + lk_msdyn_insightsstorevirtualentity_createdonbehalfby None - 2.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -395747,15 +445438,15 @@ false systemuserid systemuser - lk_msdyn_flow_approval_modifiedby - modifiedby - msdyn_flow_approval - modifiedby + lk_msdyn_insightsstorevirtualentity_createdonbehalfby + createdonbehalfby + msdyn_insightsstorevirtualentity + createdonbehalfby 0 - d9bd3c4b-bcba-f011-bbd3-7c1e52365f30 + 79d9b08d-d8ba-f011-bbd3-7c1e52365f30 false @@ -395765,9 +445456,9 @@ false true - lk_msdyn_flow_approval_modifiedonbehalfby + lk_msdyn_insightsstorevirtualentity_modifiedby None - 2.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -395801,15 +445492,15 @@ false systemuserid systemuser - lk_msdyn_flow_approval_modifiedonbehalfby - modifiedonbehalfby - msdyn_flow_approval - modifiedonbehalfby + lk_msdyn_insightsstorevirtualentity_modifiedby + modifiedby + msdyn_insightsstorevirtualentity + modifiedby 0 - ebbd3c4b-bcba-f011-bbd3-7c1e52365f30 + 7fd9b08d-d8ba-f011-bbd3-7c1e52365f30 false @@ -395819,9 +445510,9 @@ false true - user_msdyn_flow_approval + lk_msdyn_insightsstorevirtualentity_modifiedonbehalfby None - 2.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -395855,27 +445546,27 @@ false systemuserid systemuser - user_msdyn_flow_approval - owninguser - msdyn_flow_approval - owninguser + lk_msdyn_insightsstorevirtualentity_modifiedonbehalfby + modifiedonbehalfby + msdyn_insightsstorevirtualentity + modifiedonbehalfby 0 - bbbe3c4b-bcba-f011-bbd3-7c1e52365f30 + ad780f8e-cff9-4e6d-ba87-0eb174f65ed9 false - true + false iscustomizable true - false + true true - lk_msdyn_flow_approvalrequest_createdby + modifiedby_connection None - 2.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -395909,15 +445600,15 @@ false systemuserid systemuser - lk_msdyn_flow_approvalrequest_createdby - createdby - msdyn_flow_approvalrequest - createdby + modifiedby_connection + modifiedby + connection + modifiedby 0 - c1be3c4b-bcba-f011-bbd3-7c1e52365f30 + 746d678e-b1ba-f011-bbd3-7c1e52365f30 false @@ -395927,9 +445618,9 @@ false true - lk_msdyn_flow_approvalrequest_createdonbehalfby + lk_purviewlabelinfo_createdby None - 2.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -395963,15 +445654,15 @@ false systemuserid systemuser - lk_msdyn_flow_approvalrequest_createdonbehalfby - createdonbehalfby - msdyn_flow_approvalrequest - createdonbehalfby + lk_purviewlabelinfo_createdby + createdby + purviewlabelinfo + createdby 0 - c7be3c4b-bcba-f011-bbd3-7c1e52365f30 + 7a6d678e-b1ba-f011-bbd3-7c1e52365f30 false @@ -395981,9 +445672,9 @@ false true - lk_msdyn_flow_approvalrequest_modifiedby + lk_purviewlabelinfo_createdonbehalfby None - 2.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -396017,15 +445708,15 @@ false systemuserid systemuser - lk_msdyn_flow_approvalrequest_modifiedby - modifiedby - msdyn_flow_approvalrequest - modifiedby + lk_purviewlabelinfo_createdonbehalfby + createdonbehalfby + purviewlabelinfo + createdonbehalfby 0 - cdbe3c4b-bcba-f011-bbd3-7c1e52365f30 + 806d678e-b1ba-f011-bbd3-7c1e52365f30 false @@ -396035,9 +445726,9 @@ false true - lk_msdyn_flow_approvalrequest_modifiedonbehalfby + lk_purviewlabelinfo_modifiedby None - 2.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -396071,15 +445762,15 @@ false systemuserid systemuser - lk_msdyn_flow_approvalrequest_modifiedonbehalfby - modifiedonbehalfby - msdyn_flow_approvalrequest - modifiedonbehalfby + lk_purviewlabelinfo_modifiedby + modifiedby + purviewlabelinfo + modifiedby 0 - dfbe3c4b-bcba-f011-bbd3-7c1e52365f30 + 866d678e-b1ba-f011-bbd3-7c1e52365f30 false @@ -396089,9 +445780,9 @@ false true - user_msdyn_flow_approvalrequest + lk_purviewlabelinfo_modifiedonbehalfby None - 2.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -396125,15 +445816,15 @@ false systemuserid systemuser - user_msdyn_flow_approvalrequest - owninguser - msdyn_flow_approvalrequest - owninguser + lk_purviewlabelinfo_modifiedonbehalfby + modifiedonbehalfby + purviewlabelinfo + modifiedonbehalfby 0 - 91bf3c4b-bcba-f011-bbd3-7c1e52365f30 + 086f678e-b1ba-f011-bbd3-7c1e52365f30 false @@ -396143,9 +445834,9 @@ false true - lk_msdyn_flow_approvalresponse_createdby + lk_purviewlabelsynccache_createdby None - 2.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -396179,15 +445870,15 @@ false systemuserid systemuser - lk_msdyn_flow_approvalresponse_createdby + lk_purviewlabelsynccache_createdby createdby - msdyn_flow_approvalresponse + purviewlabelsynccache createdby 0 - 97bf3c4b-bcba-f011-bbd3-7c1e52365f30 + 0e6f678e-b1ba-f011-bbd3-7c1e52365f30 false @@ -396197,9 +445888,9 @@ false true - lk_msdyn_flow_approvalresponse_createdonbehalfby + lk_purviewlabelsynccache_createdonbehalfby None - 2.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -396233,15 +445924,15 @@ false systemuserid systemuser - lk_msdyn_flow_approvalresponse_createdonbehalfby + lk_purviewlabelsynccache_createdonbehalfby createdonbehalfby - msdyn_flow_approvalresponse + purviewlabelsynccache createdonbehalfby 0 - 9dbf3c4b-bcba-f011-bbd3-7c1e52365f30 + 146f678e-b1ba-f011-bbd3-7c1e52365f30 false @@ -396251,9 +445942,9 @@ false true - lk_msdyn_flow_approvalresponse_modifiedby + lk_purviewlabelsynccache_modifiedby None - 2.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -396287,15 +445978,15 @@ false systemuserid systemuser - lk_msdyn_flow_approvalresponse_modifiedby + lk_purviewlabelsynccache_modifiedby modifiedby - msdyn_flow_approvalresponse + purviewlabelsynccache modifiedby 0 - a3bf3c4b-bcba-f011-bbd3-7c1e52365f30 + 1a6f678e-b1ba-f011-bbd3-7c1e52365f30 false @@ -396305,9 +445996,9 @@ false true - lk_msdyn_flow_approvalresponse_modifiedonbehalfby + lk_purviewlabelsynccache_modifiedonbehalfby None - 2.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -396341,27 +446032,27 @@ false systemuserid systemuser - lk_msdyn_flow_approvalresponse_modifiedonbehalfby + lk_purviewlabelsynccache_modifiedonbehalfby modifiedonbehalfby - msdyn_flow_approvalresponse + purviewlabelsynccache modifiedonbehalfby 0 - b5bf3c4b-bcba-f011-bbd3-7c1e52365f30 + ed91688e-604a-4d47-9f61-3f2dc2f3577d false - true + false iscustomizable - true + false - false - true - user_msdyn_flow_approvalresponse + true + false + lk_expanderevent_modifiedonbehalfby None - 2.0.0.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -396395,30 +446086,30 @@ false systemuserid systemuser - user_msdyn_flow_approvalresponse - owninguser - msdyn_flow_approvalresponse - owninguser + lk_expanderevent_modifiedonbehalfby + modifiedonbehalfby + expanderevent + modifiedonbehalfby 0 - 5bc03c4b-bcba-f011-bbd3-7c1e52365f30 + c908b78e-8892-4267-82a0-81e736e5d307 false - true + false iscustomizable false - false + true true - lk_msdyn_flow_approvalstep_createdby + lk_customcontroldefaultconfig_createdonbehalfby None - 2.0.4.4 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -396449,30 +446140,30 @@ false systemuserid systemuser - lk_msdyn_flow_approvalstep_createdby - createdby - msdyn_flow_approvalstep - createdby + lk_customcontroldefaultconfig_createdonbehalfby + createdonbehalfby + customcontroldefaultconfig + createdonbehalfby 0 - 61c03c4b-bcba-f011-bbd3-7c1e52365f30 + b0eb248f-1a95-4a33-89c6-5a1195ee6faa false - true + false iscustomizable true - false + true true - lk_msdyn_flow_approvalstep_createdonbehalfby + lk_appmodule_createdby None - 2.0.4.4 + 8.2.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -396503,30 +446194,30 @@ false systemuserid systemuser - lk_msdyn_flow_approvalstep_createdonbehalfby - createdonbehalfby - msdyn_flow_approvalstep - createdonbehalfby + systemuser_appmodule_createdby + createdby + appmodule + appmodule_createdby 0 - 67c03c4b-bcba-f011-bbd3-7c1e52365f30 + d5ca438f-8bfe-4d55-bff9-2994894c9078 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_flow_approvalstep_modifiedby + lk_partnerapplication_modifiedby None - 2.0.4.4 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -396557,15 +446248,15 @@ false systemuserid systemuser - lk_msdyn_flow_approvalstep_modifiedby + lk_partnerapplication_modifiedby modifiedby - msdyn_flow_approvalstep + partnerapplication modifiedby 0 - 6dc03c4b-bcba-f011-bbd3-7c1e52365f30 + a179678f-b8ba-f011-bbd3-7c1e52365f30 false @@ -396575,9 +446266,9 @@ false true - lk_msdyn_flow_approvalstep_modifiedonbehalfby + lk_applicationuser_createdby None - 2.0.4.4 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -396611,27 +446302,27 @@ false systemuserid systemuser - lk_msdyn_flow_approvalstep_modifiedonbehalfby - modifiedonbehalfby - msdyn_flow_approvalstep - modifiedonbehalfby + lk_applicationuser_createdby + createdby + applicationuser + createdby 0 - 7fc03c4b-bcba-f011-bbd3-7c1e52365f30 + a779678f-b8ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_flow_approvalstep + lk_applicationuser_createdonbehalfby None - 2.0.4.4 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -396665,15 +446356,15 @@ false systemuserid systemuser - user_msdyn_flow_approvalstep - owninguser - msdyn_flow_approvalstep - owninguser + lk_applicationuser_createdonbehalfby + createdonbehalfby + applicationuser + createdonbehalfby 0 - 19c13c4b-bcba-f011-bbd3-7c1e52365f30 + ad79678f-b8ba-f011-bbd3-7c1e52365f30 false @@ -396683,9 +446374,9 @@ false true - lk_msdyn_flow_awaitallactionapprovalmodel_createdby + lk_applicationuser_modifiedby None - 2.0.0.16 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -396719,15 +446410,15 @@ false systemuserid systemuser - lk_msdyn_flow_awaitallactionapprovalmodel_createdby - createdby - msdyn_flow_awaitallactionapprovalmodel - createdby + lk_applicationuser_modifiedby + modifiedby + applicationuser + modifiedby 0 - 1fc13c4b-bcba-f011-bbd3-7c1e52365f30 + b379678f-b8ba-f011-bbd3-7c1e52365f30 false @@ -396737,9 +446428,63 @@ false true - lk_msdyn_flow_awaitallactionapprovalmodel_createdonbehalfby + lk_applicationuser_modifiedonbehalfby None - 2.0.0.16 + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_applicationuser_modifiedonbehalfby + modifiedonbehalfby + applicationuser + modifiedonbehalfby + + 0 + + + 941e7d8f-57b6-4a53-af73-b7bc7fc6066b + + false + + false + iscustomizable + true + + true + true + lk_MobileOfflineProfileItemAssociation_createdby + None + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -396773,27 +446518,27 @@ false systemuserid systemuser - lk_msdyn_flow_awaitallactionapprovalmodel_createdonbehalfby - createdonbehalfby - msdyn_flow_awaitallactionapprovalmodel - createdonbehalfby + lk_MobileOfflineProfileItemAssociation_createdby + createdby + mobileofflineprofileitemassociation + createdby 0 - 25c13c4b-bcba-f011-bbd3-7c1e52365f30 + dd2aaf8f-4b72-4f66-a3bf-7bc088208e19 false - true + false iscustomizable - true + false - false - true - lk_msdyn_flow_awaitallactionapprovalmodel_modifiedby + true + false + lk_bulkdeleteoperationbase_createdby None - 2.0.0.16 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -396827,27 +446572,27 @@ false systemuserid systemuser - lk_msdyn_flow_awaitallactionapprovalmodel_modifiedby - modifiedby - msdyn_flow_awaitallactionapprovalmodel - modifiedby + lk_bulkdeleteoperationbase_createdby + createdby + bulkdeleteoperation + createdby 0 - 2bc13c4b-bcba-f011-bbd3-7c1e52365f30 + a896fa8f-3ce2-44e1-80f1-fc36bb0de846 false - true + false iscustomizable - true + false - false - true - lk_msdyn_flow_awaitallactionapprovalmodel_modifiedonbehalfby + true + false + lk_duplicateruleconditionbase_createdby None - 2.0.0.16 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -396881,30 +446626,30 @@ false systemuserid systemuser - lk_msdyn_flow_awaitallactionapprovalmodel_modifiedonbehalfby - modifiedonbehalfby - msdyn_flow_awaitallactionapprovalmodel - modifiedonbehalfby + lk_duplicateruleconditionbase_createdby + createdby + duplicaterulecondition + createdby 0 - 3dc13c4b-bcba-f011-bbd3-7c1e52365f30 + 04e51790-1fee-4b5d-834d-24cf46a020b8 false - true + false iscustomizable - true + false - false - true - user_msdyn_flow_awaitallactionapprovalmodel + true + false + lk_tracelog_modifiedby None - 2.0.0.16 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -396935,27 +446680,27 @@ false systemuserid systemuser - user_msdyn_flow_awaitallactionapprovalmodel - owninguser - msdyn_flow_awaitallactionapprovalmodel - owninguser + lk_tracelog_modifiedby + modifiedby + tracelog + modifiedby 0 - d5c13c4b-bcba-f011-bbd3-7c1e52365f30 + a5db1c90-e7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_flow_awaitallapprovalmodel_createdby + lk_msdyn_planattachment_createdby None - 2.0.0.5 + 1.0 OneToManyRelationship DoNotDisplay @@ -396989,15 +446734,15 @@ false systemuserid systemuser - lk_msdyn_flow_awaitallapprovalmodel_createdby + lk_msdyn_planattachment_createdby createdby - msdyn_flow_awaitallapprovalmodel + msdyn_planattachment createdby 0 - dbc13c4b-bcba-f011-bbd3-7c1e52365f30 + abdb1c90-e7ba-f011-bbd3-7c1e52365f30 false @@ -397007,9 +446752,9 @@ false true - lk_msdyn_flow_awaitallapprovalmodel_createdonbehalfby + lk_msdyn_planattachment_createdonbehalfby None - 2.0.0.5 + 1.0 OneToManyRelationship DoNotDisplay @@ -397043,27 +446788,27 @@ false systemuserid systemuser - lk_msdyn_flow_awaitallapprovalmodel_createdonbehalfby + lk_msdyn_planattachment_createdonbehalfby createdonbehalfby - msdyn_flow_awaitallapprovalmodel + msdyn_planattachment createdonbehalfby 0 - e1c13c4b-bcba-f011-bbd3-7c1e52365f30 + b1db1c90-e7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_flow_awaitallapprovalmodel_modifiedby + lk_msdyn_planattachment_modifiedby None - 2.0.0.5 + 1.0 OneToManyRelationship DoNotDisplay @@ -397097,15 +446842,15 @@ false systemuserid systemuser - lk_msdyn_flow_awaitallapprovalmodel_modifiedby + lk_msdyn_planattachment_modifiedby modifiedby - msdyn_flow_awaitallapprovalmodel + msdyn_planattachment modifiedby 0 - e7c13c4b-bcba-f011-bbd3-7c1e52365f30 + b7db1c90-e7ba-f011-bbd3-7c1e52365f30 false @@ -397115,9 +446860,9 @@ false true - lk_msdyn_flow_awaitallapprovalmodel_modifiedonbehalfby + lk_msdyn_planattachment_modifiedonbehalfby None - 2.0.0.5 + 1.0 OneToManyRelationship DoNotDisplay @@ -397151,27 +446896,27 @@ false systemuserid systemuser - lk_msdyn_flow_awaitallapprovalmodel_modifiedonbehalfby + lk_msdyn_planattachment_modifiedonbehalfby modifiedonbehalfby - msdyn_flow_awaitallapprovalmodel + msdyn_planattachment modifiedonbehalfby 0 - f9c13c4b-bcba-f011-bbd3-7c1e52365f30 + c9db1c90-e7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_msdyn_flow_awaitallapprovalmodel + user_msdyn_planattachment None - 2.0.0.5 + 1.0 OneToManyRelationship DoNotDisplay @@ -397205,30 +446950,30 @@ false systemuserid systemuser - user_msdyn_flow_awaitallapprovalmodel + user_msdyn_planattachment owninguser - msdyn_flow_awaitallapprovalmodel + msdyn_planattachment owninguser 0 - 97c23c4b-bcba-f011-bbd3-7c1e52365f30 + 984b5a90-7f3a-4545-ac24-7616a02a16b9 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_flow_basicapprovalmodel_createdby + lk_offlinecommanddefinition_createdby None - 2.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -397259,15 +447004,15 @@ false systemuserid systemuser - lk_msdyn_flow_basicapprovalmodel_createdby + lk_offlinecommanddefinition_createdby createdby - msdyn_flow_basicapprovalmodel + offlinecommanddefinition createdby 0 - 9dc23c4b-bcba-f011-bbd3-7c1e52365f30 + 2f488790-a9ba-f011-bbd3-7c1e52365f30 false @@ -397277,9 +447022,9 @@ false true - lk_msdyn_flow_basicapprovalmodel_createdonbehalfby + lk_solutioncomponentconfiguration_createdby None - 2.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -397313,15 +447058,15 @@ false systemuserid systemuser - lk_msdyn_flow_basicapprovalmodel_createdonbehalfby - createdonbehalfby - msdyn_flow_basicapprovalmodel - createdonbehalfby + lk_solutioncomponentconfiguration_createdby + createdby + solutioncomponentconfiguration + createdby 0 - a3c23c4b-bcba-f011-bbd3-7c1e52365f30 + 35488790-a9ba-f011-bbd3-7c1e52365f30 false @@ -397331,9 +447076,9 @@ false true - lk_msdyn_flow_basicapprovalmodel_modifiedby + lk_solutioncomponentconfiguration_createdonbehalfby None - 2.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -397367,15 +447112,15 @@ false systemuserid systemuser - lk_msdyn_flow_basicapprovalmodel_modifiedby - modifiedby - msdyn_flow_basicapprovalmodel - modifiedby + lk_solutioncomponentconfiguration_createdonbehalfby + createdonbehalfby + solutioncomponentconfiguration + createdonbehalfby 0 - a9c23c4b-bcba-f011-bbd3-7c1e52365f30 + 3b488790-a9ba-f011-bbd3-7c1e52365f30 false @@ -397385,9 +447130,9 @@ false true - lk_msdyn_flow_basicapprovalmodel_modifiedonbehalfby + lk_solutioncomponentconfiguration_modifiedby None - 2.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -397421,15 +447166,15 @@ false systemuserid systemuser - lk_msdyn_flow_basicapprovalmodel_modifiedonbehalfby - modifiedonbehalfby - msdyn_flow_basicapprovalmodel - modifiedonbehalfby + lk_solutioncomponentconfiguration_modifiedby + modifiedby + solutioncomponentconfiguration + modifiedby 0 - bbc23c4b-bcba-f011-bbd3-7c1e52365f30 + 41488790-a9ba-f011-bbd3-7c1e52365f30 false @@ -397439,9 +447184,9 @@ false true - user_msdyn_flow_basicapprovalmodel + lk_solutioncomponentconfiguration_modifiedonbehalfby None - 2.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -397475,27 +447220,27 @@ false systemuserid systemuser - user_msdyn_flow_basicapprovalmodel - owninguser - msdyn_flow_basicapprovalmodel - owninguser + lk_solutioncomponentconfiguration_modifiedonbehalfby + modifiedonbehalfby + solutioncomponentconfiguration + modifiedonbehalfby 0 - 70c33c4b-bcba-f011-bbd3-7c1e52365f30 + 21498790-a9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_flow_flowapproval_createdby + lk_solutioncomponentrelationshipconfiguration_createdby None - 2.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -397529,15 +447274,15 @@ false systemuserid systemuser - lk_msdyn_flow_flowapproval_createdby + lk_solutioncomponentrelationshipconfiguration_createdby createdby - msdyn_flow_flowapproval + solutioncomponentrelationshipconfiguration createdby 0 - 76c33c4b-bcba-f011-bbd3-7c1e52365f30 + 27498790-a9ba-f011-bbd3-7c1e52365f30 false @@ -397547,9 +447292,9 @@ false true - lk_msdyn_flow_flowapproval_createdonbehalfby + lk_solutioncomponentrelationshipconfiguration_createdonbehalfby None - 2.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -397583,27 +447328,27 @@ false systemuserid systemuser - lk_msdyn_flow_flowapproval_createdonbehalfby + lk_solutioncomponentrelationshipconfiguration_createdonbehalfby createdonbehalfby - msdyn_flow_flowapproval + solutioncomponentrelationshipconfiguration createdonbehalfby 0 - 7cc33c4b-bcba-f011-bbd3-7c1e52365f30 + 2d498790-a9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_flow_flowapproval_modifiedby + lk_solutioncomponentrelationshipconfiguration_modifiedby None - 2.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -397637,15 +447382,15 @@ false systemuserid systemuser - lk_msdyn_flow_flowapproval_modifiedby + lk_solutioncomponentrelationshipconfiguration_modifiedby modifiedby - msdyn_flow_flowapproval + solutioncomponentrelationshipconfiguration modifiedby 0 - 82c33c4b-bcba-f011-bbd3-7c1e52365f30 + 33498790-a9ba-f011-bbd3-7c1e52365f30 false @@ -397655,9 +447400,9 @@ false true - lk_msdyn_flow_flowapproval_modifiedonbehalfby + lk_solutioncomponentrelationshipconfiguration_modifiedonbehalfby None - 2.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -397691,27 +447436,27 @@ false systemuserid systemuser - lk_msdyn_flow_flowapproval_modifiedonbehalfby + lk_solutioncomponentrelationshipconfiguration_modifiedonbehalfby modifiedonbehalfby - msdyn_flow_flowapproval + solutioncomponentrelationshipconfiguration modifiedonbehalfby 0 - 94c33c4b-bcba-f011-bbd3-7c1e52365f30 + 39968f90-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_msdyn_flow_flowapproval + lk_msdyn_aiconfiguration_createdby None - 2.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -397745,25 +447490,25 @@ false systemuserid systemuser - user_msdyn_flow_flowapproval - owninguser - msdyn_flow_flowapproval - owninguser + lk_msdyn_aiconfiguration_createdby + createdby + msdyn_aiconfiguration + createdby 0 - e052b8c6-bcba-f011-bbd3-7c1e52365f30 + 3f968f90-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_connectionreference_createdby + lk_msdyn_aiconfiguration_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -397799,25 +447544,25 @@ false systemuserid systemuser - lk_connectionreference_createdby - createdby - connectionreference - createdby + lk_msdyn_aiconfiguration_createdonbehalfby + createdonbehalfby + msdyn_aiconfiguration + createdonbehalfby 0 - e652b8c6-bcba-f011-bbd3-7c1e52365f30 + 45968f90-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_connectionreference_createdonbehalfby + lk_msdyn_aiconfiguration_modifiedby None 1.0.0.0 OneToManyRelationship @@ -397853,15 +447598,15 @@ false systemuserid systemuser - lk_connectionreference_createdonbehalfby - createdonbehalfby - connectionreference - createdonbehalfby + lk_msdyn_aiconfiguration_modifiedby + modifiedby + msdyn_aiconfiguration + modifiedby 0 - ec52b8c6-bcba-f011-bbd3-7c1e52365f30 + 4b968f90-beba-f011-bbd3-7c1e52365f30 false @@ -397871,7 +447616,7 @@ false true - lk_connectionreference_modifiedby + lk_msdyn_aiconfiguration_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -397907,27 +447652,27 @@ false systemuserid systemuser - lk_connectionreference_modifiedby - modifiedby - connectionreference - modifiedby + lk_msdyn_aiconfiguration_modifiedonbehalfby + modifiedonbehalfby + msdyn_aiconfiguration + modifiedonbehalfby 0 - f252b8c6-bcba-f011-bbd3-7c1e52365f30 + 2e998f90-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_connectionreference_modifiedonbehalfby + lk_msdyn_aiconfigurationsearch_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -397961,15 +447706,15 @@ false systemuserid systemuser - lk_connectionreference_modifiedonbehalfby - modifiedonbehalfby - connectionreference - modifiedonbehalfby + lk_msdyn_aiconfigurationsearch_createdby + createdby + msdyn_aiconfigurationsearch + createdby 0 - 0453b8c6-bcba-f011-bbd3-7c1e52365f30 + 3a998f90-beba-f011-bbd3-7c1e52365f30 false @@ -397979,9 +447724,9 @@ false true - user_connectionreference + lk_msdyn_aiconfigurationsearch_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -398015,25 +447760,25 @@ false systemuserid systemuser - user_connectionreference - owninguser - connectionreference - owninguser + lk_msdyn_aiconfigurationsearch_createdonbehalfby + createdonbehalfby + msdyn_aiconfigurationsearch + createdonbehalfby 0 - be5ca011-bdba-f011-bbd3-7c1e52365f30 + 40998f90-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_connectioninstance_createdby + lk_msdyn_aiconfigurationsearch_modifiedby None 1.0 OneToManyRelationship @@ -398069,15 +447814,15 @@ false systemuserid systemuser - lk_connectioninstance_createdby - createdby - connectioninstance - createdby + lk_msdyn_aiconfigurationsearch_modifiedby + modifiedby + msdyn_aiconfigurationsearch + modifiedby 0 - c45ca011-bdba-f011-bbd3-7c1e52365f30 + 46998f90-beba-f011-bbd3-7c1e52365f30 false @@ -398087,7 +447832,7 @@ false true - lk_connectioninstance_createdonbehalfby + lk_msdyn_aiconfigurationsearch_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -398123,25 +447868,25 @@ false systemuserid systemuser - lk_connectioninstance_createdonbehalfby - createdonbehalfby - connectioninstance - createdonbehalfby + lk_msdyn_aiconfigurationsearch_modifiedonbehalfby + modifiedonbehalfby + msdyn_aiconfigurationsearch + modifiedonbehalfby 0 - ca5ca011-bdba-f011-bbd3-7c1e52365f30 + 58998f90-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_connectioninstance_modifiedby + user_msdyn_aiconfigurationsearch None 1.0 OneToManyRelationship @@ -398177,15 +447922,15 @@ false systemuserid systemuser - lk_connectioninstance_modifiedby - modifiedby - connectioninstance - modifiedby + user_msdyn_aiconfigurationsearch + owninguser + msdyn_aiconfigurationsearch + owninguser 0 - d05ca011-bdba-f011-bbd3-7c1e52365f30 + 859b8f90-beba-f011-bbd3-7c1e52365f30 false @@ -398195,7 +447940,7 @@ false true - lk_connectioninstance_modifiedonbehalfby + lk_msdyn_aidataprocessingevent_createdby None 1.0 OneToManyRelationship @@ -398231,15 +447976,15 @@ false systemuserid systemuser - lk_connectioninstance_modifiedonbehalfby - modifiedonbehalfby - connectioninstance - modifiedonbehalfby + lk_msdyn_aidataprocessingevent_createdby + createdby + msdyn_aidataprocessingevent + createdby 0 - e25ca011-bdba-f011-bbd3-7c1e52365f30 + 8b9b8f90-beba-f011-bbd3-7c1e52365f30 false @@ -398249,7 +447994,7 @@ false true - user_connectioninstance + lk_msdyn_aidataprocessingevent_createdonbehalfby None 1.0 OneToManyRelationship @@ -398285,15 +448030,15 @@ false systemuserid systemuser - user_connectioninstance - owninguser - connectioninstance - owninguser + lk_msdyn_aidataprocessingevent_createdonbehalfby + createdonbehalfby + msdyn_aidataprocessingevent + createdonbehalfby 0 - 58cf0c86-bdba-f011-bbd3-7c1e52365f30 + 919b8f90-beba-f011-bbd3-7c1e52365f30 false @@ -398303,7 +448048,7 @@ false true - lk_knowledgesourceconsumer_createdby + lk_msdyn_aidataprocessingevent_modifiedby None 1.0 OneToManyRelationship @@ -398339,15 +448084,15 @@ false systemuserid systemuser - lk_knowledgesourceconsumer_createdby - createdby - knowledgesourceconsumer - createdby + lk_msdyn_aidataprocessingevent_modifiedby + modifiedby + msdyn_aidataprocessingevent + modifiedby 0 - 5ecf0c86-bdba-f011-bbd3-7c1e52365f30 + 979b8f90-beba-f011-bbd3-7c1e52365f30 false @@ -398357,7 +448102,7 @@ false true - lk_knowledgesourceconsumer_createdonbehalfby + lk_msdyn_aidataprocessingevent_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -398393,15 +448138,15 @@ false systemuserid systemuser - lk_knowledgesourceconsumer_createdonbehalfby - createdonbehalfby - knowledgesourceconsumer - createdonbehalfby + lk_msdyn_aidataprocessingevent_modifiedonbehalfby + modifiedonbehalfby + msdyn_aidataprocessingevent + modifiedonbehalfby 0 - 64cf0c86-bdba-f011-bbd3-7c1e52365f30 + a99b8f90-beba-f011-bbd3-7c1e52365f30 false @@ -398411,7 +448156,7 @@ false true - lk_knowledgesourceconsumer_modifiedby + user_msdyn_aidataprocessingevent None 1.0 OneToManyRelationship @@ -398447,27 +448192,27 @@ false systemuserid systemuser - lk_knowledgesourceconsumer_modifiedby - modifiedby - knowledgesourceconsumer - modifiedby + user_msdyn_aidataprocessingevent + owninguser + msdyn_aidataprocessingevent + owninguser 0 - 6acf0c86-bdba-f011-bbd3-7c1e52365f30 + 42eace90-70dd-468f-8b12-055139ac7c70 false - true + false iscustomizable - true + false - false - true - lk_knowledgesourceconsumer_modifiedonbehalfby + true + false + lk_importbase_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -398501,15 +448246,15 @@ false systemuserid systemuser - lk_knowledgesourceconsumer_modifiedonbehalfby - modifiedonbehalfby - knowledgesourceconsumer - modifiedonbehalfby + lk_importbase_createdby + createdby + import + createdby 0 - 7ccf0c86-bdba-f011-bbd3-7c1e52365f30 + 83905f91-aaba-f011-bbd3-7c1e52365f30 false @@ -398519,9 +448264,9 @@ false true - user_knowledgesourceconsumer + lk_package_createdby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -398555,15 +448300,15 @@ false systemuserid systemuser - user_knowledgesourceconsumer - owninguser - knowledgesourceconsumer - owninguser + lk_package_createdby + createdby + package + createdby 0 - 20d00c86-bdba-f011-bbd3-7c1e52365f30 + 89905f91-aaba-f011-bbd3-7c1e52365f30 false @@ -398573,9 +448318,9 @@ false true - lk_knowledgesourceprofile_createdby + lk_package_createdonbehalfby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -398609,15 +448354,15 @@ false systemuserid systemuser - lk_knowledgesourceprofile_createdby - createdby - knowledgesourceprofile - createdby + lk_package_createdonbehalfby + createdonbehalfby + package + createdonbehalfby 0 - 26d00c86-bdba-f011-bbd3-7c1e52365f30 + 8f905f91-aaba-f011-bbd3-7c1e52365f30 false @@ -398627,9 +448372,9 @@ false true - lk_knowledgesourceprofile_createdonbehalfby + lk_package_modifiedby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -398663,15 +448408,15 @@ false systemuserid systemuser - lk_knowledgesourceprofile_createdonbehalfby - createdonbehalfby - knowledgesourceprofile - createdonbehalfby + lk_package_modifiedby + modifiedby + package + modifiedby 0 - 2cd00c86-bdba-f011-bbd3-7c1e52365f30 + 95905f91-aaba-f011-bbd3-7c1e52365f30 false @@ -398681,9 +448426,9 @@ false true - lk_knowledgesourceprofile_modifiedby + lk_package_modifiedonbehalfby None - 1.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -398717,15 +448462,15 @@ false systemuserid systemuser - lk_knowledgesourceprofile_modifiedby - modifiedby - knowledgesourceprofile - modifiedby + lk_package_modifiedonbehalfby + modifiedonbehalfby + package + modifiedonbehalfby 0 - 32d00c86-bdba-f011-bbd3-7c1e52365f30 + 77915f91-aaba-f011-bbd3-7c1e52365f30 false @@ -398735,9 +448480,9 @@ false true - lk_knowledgesourceprofile_modifiedonbehalfby + lk_packagehistory_createdby None - 1.0 + 9.0.0.4 OneToManyRelationship DoNotDisplay @@ -398771,15 +448516,15 @@ false systemuserid systemuser - lk_knowledgesourceprofile_modifiedonbehalfby - modifiedonbehalfby - knowledgesourceprofile - modifiedonbehalfby + lk_packagehistory_createdby + createdby + packagehistory + createdby 0 - 44d00c86-bdba-f011-bbd3-7c1e52365f30 + 7d915f91-aaba-f011-bbd3-7c1e52365f30 false @@ -398789,9 +448534,9 @@ false true - user_knowledgesourceprofile + lk_packagehistory_createdonbehalfby None - 1.0 + 9.0.0.4 OneToManyRelationship DoNotDisplay @@ -398825,15 +448570,15 @@ false systemuserid systemuser - user_knowledgesourceprofile - owninguser - knowledgesourceprofile - owninguser + lk_packagehistory_createdonbehalfby + createdonbehalfby + packagehistory + createdonbehalfby 0 - f1d00c86-bdba-f011-bbd3-7c1e52365f30 + 83915f91-aaba-f011-bbd3-7c1e52365f30 false @@ -398843,9 +448588,9 @@ false true - lk_unstructuredfilesearchentity_createdby + lk_packagehistory_modifiedby None - 1.0 + 9.0.0.4 OneToManyRelationship DoNotDisplay @@ -398879,15 +448624,15 @@ false systemuserid systemuser - lk_unstructuredfilesearchentity_createdby - createdby - unstructuredfilesearchentity - createdby + lk_packagehistory_modifiedby + modifiedby + packagehistory + modifiedby 0 - f7d00c86-bdba-f011-bbd3-7c1e52365f30 + 89915f91-aaba-f011-bbd3-7c1e52365f30 false @@ -398897,9 +448642,9 @@ false true - lk_unstructuredfilesearchentity_createdonbehalfby + lk_packagehistory_modifiedonbehalfby None - 1.0 + 9.0.0.4 OneToManyRelationship DoNotDisplay @@ -398933,27 +448678,27 @@ false systemuserid systemuser - lk_unstructuredfilesearchentity_createdonbehalfby - createdonbehalfby - unstructuredfilesearchentity - createdonbehalfby + lk_packagehistory_modifiedonbehalfby + modifiedonbehalfby + packagehistory + modifiedonbehalfby 0 - fdd00c86-bdba-f011-bbd3-7c1e52365f30 + 5c239191-c8ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_unstructuredfilesearchentity_modifiedby + teams_chat_activity_linkrecord_systemUser None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -398973,7 +448718,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -398987,27 +448732,27 @@ false systemuserid systemuser - lk_unstructuredfilesearchentity_modifiedby - modifiedby - unstructuredfilesearchentity - modifiedby + teams_chat_activity_linkrecord + linkedby + chat + LinkedBy 0 - 03d10c86-bdba-f011-bbd3-7c1e52365f30 + 77239191-c8ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_unstructuredfilesearchentity_modifiedonbehalfby + teams_chat_activity_unlinkrecord_systemUser None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -399027,7 +448772,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -399041,27 +448786,27 @@ false systemuserid systemuser - lk_unstructuredfilesearchentity_modifiedonbehalfby - modifiedonbehalfby - unstructuredfilesearchentity - modifiedonbehalfby + teams_chat_activity_unlinkrecord + unlinkedby + chat + UnLinkedBy 0 - 15d10c86-bdba-f011-bbd3-7c1e52365f30 + f4083492-d329-4cfe-aedb-a159f7bacee5 false - true + false iscustomizable - true + false - false + true true - user_unstructuredfilesearchentity + lk_kbarticlecomment_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -399095,27 +448840,27 @@ false systemuserid systemuser - user_unstructuredfilesearchentity - owninguser - unstructuredfilesearchentity - owninguser + lk_kbarticlecomment_modifiedonbehalfby + modifiedonbehalfby + kbarticlecomment + modifiedonbehalfby 0 - d5d10c86-bdba-f011-bbd3-7c1e52365f30 + 0f7a3792-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_unstructuredfilesearchrecord_createdby + lk_dvfilesearchattribute_createdby None - 1.0 + 1.0.0.56 OneToManyRelationship DoNotDisplay @@ -399149,15 +448894,15 @@ false systemuserid systemuser - lk_unstructuredfilesearchrecord_createdby + lk_dvfilesearchattribute_createdby createdby - unstructuredfilesearchrecord + dvfilesearchattribute createdby 0 - dbd10c86-bdba-f011-bbd3-7c1e52365f30 + 157a3792-bdba-f011-bbd3-7c1e52365f30 false @@ -399167,9 +448912,9 @@ false true - lk_unstructuredfilesearchrecord_createdonbehalfby + lk_dvfilesearchattribute_createdonbehalfby None - 1.0 + 1.0.0.56 OneToManyRelationship DoNotDisplay @@ -399203,27 +448948,27 @@ false systemuserid systemuser - lk_unstructuredfilesearchrecord_createdonbehalfby + lk_dvfilesearchattribute_createdonbehalfby createdonbehalfby - unstructuredfilesearchrecord + dvfilesearchattribute createdonbehalfby 0 - e1d10c86-bdba-f011-bbd3-7c1e52365f30 + 1b7a3792-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_unstructuredfilesearchrecord_modifiedby + lk_dvfilesearchattribute_modifiedby None - 1.0 + 1.0.0.56 OneToManyRelationship DoNotDisplay @@ -399257,15 +449002,15 @@ false systemuserid systemuser - lk_unstructuredfilesearchrecord_modifiedby + lk_dvfilesearchattribute_modifiedby modifiedby - unstructuredfilesearchrecord + dvfilesearchattribute modifiedby 0 - e7d10c86-bdba-f011-bbd3-7c1e52365f30 + 217a3792-bdba-f011-bbd3-7c1e52365f30 false @@ -399275,9 +449020,117 @@ false true - lk_unstructuredfilesearchrecord_modifiedonbehalfby + lk_dvfilesearchattribute_modifiedonbehalfby None - 1.0 + 1.0.0.56 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_dvfilesearchattribute_modifiedonbehalfby + modifiedonbehalfby + dvfilesearchattribute + modifiedonbehalfby + + 0 + + + 337a3792-bdba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + user_dvfilesearchattribute + None + 1.0.0.56 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_dvfilesearchattribute + owninguser + dvfilesearchattribute + owninguser + + 0 + + + 597c3792-bdba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + lk_dvfilesearchentity_createdby + None + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -399311,15 +449164,15 @@ false systemuserid systemuser - lk_unstructuredfilesearchrecord_modifiedonbehalfby - modifiedonbehalfby - unstructuredfilesearchrecord - modifiedonbehalfby + lk_dvfilesearchentity_createdby + createdby + dvfilesearchentity + createdby 0 - f9d10c86-bdba-f011-bbd3-7c1e52365f30 + 5f7c3792-bdba-f011-bbd3-7c1e52365f30 false @@ -399329,9 +449182,9 @@ false true - user_unstructuredfilesearchrecord + lk_dvfilesearchentity_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -399365,27 +449218,27 @@ false systemuserid systemuser - user_unstructuredfilesearchrecord - owninguser - unstructuredfilesearchrecord - owninguser + lk_dvfilesearchentity_createdonbehalfby + createdonbehalfby + dvfilesearchentity + createdonbehalfby 0 - 162f168c-bdba-f011-bbd3-7c1e52365f30 + 657c3792-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_unstructuredfilesearchrecordstatus_createdby + lk_dvfilesearchentity_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -399419,15 +449272,15 @@ false systemuserid systemuser - lk_unstructuredfilesearchrecordstatus_createdby - createdby - unstructuredfilesearchrecordstatus - createdby + lk_dvfilesearchentity_modifiedby + modifiedby + dvfilesearchentity + modifiedby 0 - 1c2f168c-bdba-f011-bbd3-7c1e52365f30 + 6b7c3792-bdba-f011-bbd3-7c1e52365f30 false @@ -399437,9 +449290,9 @@ false true - lk_unstructuredfilesearchrecordstatus_createdonbehalfby + lk_dvfilesearchentity_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -399473,27 +449326,27 @@ false systemuserid systemuser - lk_unstructuredfilesearchrecordstatus_createdonbehalfby - createdonbehalfby - unstructuredfilesearchrecordstatus - createdonbehalfby + lk_dvfilesearchentity_modifiedonbehalfby + modifiedonbehalfby + dvfilesearchentity + modifiedonbehalfby 0 - 222f168c-bdba-f011-bbd3-7c1e52365f30 + 7d7c3792-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_unstructuredfilesearchrecordstatus_modifiedby + user_dvfilesearchentity None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -399527,27 +449380,27 @@ false systemuserid systemuser - lk_unstructuredfilesearchrecordstatus_modifiedby - modifiedby - unstructuredfilesearchrecordstatus - modifiedby + user_dvfilesearchentity + owninguser + dvfilesearchentity + owninguser 0 - 282f168c-bdba-f011-bbd3-7c1e52365f30 + 207e3792-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_unstructuredfilesearchrecordstatus_modifiedonbehalfby + lk_dvtablesearch_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -399581,15 +449434,15 @@ false systemuserid systemuser - lk_unstructuredfilesearchrecordstatus_modifiedonbehalfby - modifiedonbehalfby - unstructuredfilesearchrecordstatus - modifiedonbehalfby + lk_dvtablesearch_createdby + createdby + dvtablesearch + createdby 0 - 3c2f168c-bdba-f011-bbd3-7c1e52365f30 + 267e3792-bdba-f011-bbd3-7c1e52365f30 false @@ -399599,9 +449452,9 @@ false true - user_unstructuredfilesearchrecordstatus + lk_dvtablesearch_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -399635,15 +449488,15 @@ false systemuserid systemuser - user_unstructuredfilesearchrecordstatus - owninguser - unstructuredfilesearchrecordstatus - owninguser + lk_dvtablesearch_createdonbehalfby + createdonbehalfby + dvtablesearch + createdonbehalfby 0 - 1132168c-bdba-f011-bbd3-7c1e52365f30 + 2c7e3792-bdba-f011-bbd3-7c1e52365f30 false @@ -399653,7 +449506,7 @@ false true - lk_dvfilesearch_createdby + lk_dvtablesearch_modifiedby None 1.0.0.0 OneToManyRelationship @@ -399689,15 +449542,15 @@ false systemuserid systemuser - lk_dvfilesearch_createdby - createdby - dvfilesearch - createdby + lk_dvtablesearch_modifiedby + modifiedby + dvtablesearch + modifiedby 0 - 1732168c-bdba-f011-bbd3-7c1e52365f30 + 327e3792-bdba-f011-bbd3-7c1e52365f30 false @@ -399707,7 +449560,7 @@ false true - lk_dvfilesearch_createdonbehalfby + lk_dvtablesearch_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -399743,15 +449596,15 @@ false systemuserid systemuser - lk_dvfilesearch_createdonbehalfby - createdonbehalfby - dvfilesearch - createdonbehalfby + lk_dvtablesearch_modifiedonbehalfby + modifiedonbehalfby + dvtablesearch + modifiedonbehalfby 0 - 1d32168c-bdba-f011-bbd3-7c1e52365f30 + 467e3792-bdba-f011-bbd3-7c1e52365f30 false @@ -399761,7 +449614,7 @@ false true - lk_dvfilesearch_modifiedby + user_dvtablesearch None 1.0.0.0 OneToManyRelationship @@ -399797,27 +449650,27 @@ false systemuserid systemuser - lk_dvfilesearch_modifiedby - modifiedby - dvfilesearch - modifiedby + user_dvtablesearch + owninguser + dvtablesearch + owninguser 0 - 2332168c-bdba-f011-bbd3-7c1e52365f30 + 21745492-36c2-4c3a-bb81-47b6ff6365ac false - true + false iscustomizable true - false + true true - lk_dvfilesearch_modifiedonbehalfby + lk_phonecall_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -399851,27 +449704,27 @@ false systemuserid systemuser - lk_dvfilesearch_modifiedonbehalfby + lk_phonecall_modifiedonbehalfby modifiedonbehalfby - dvfilesearch - modifiedonbehalfby + phonecall + modifiedonbehalfby_phonecall 0 - 3532168c-bdba-f011-bbd3-7c1e52365f30 + 67a7b892-47ac-45b1-baae-8a204d15d96e false - true + false iscustomizable false - false - true - user_dvfilesearch + true + false + lk_transformationmapping_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -399905,27 +449758,27 @@ false systemuserid systemuser - user_dvfilesearch - owninguser - dvfilesearch - owninguser + lk_transformationmapping_createdonbehalfby + createdonbehalfby + transformationmapping + createdonbehalfby 0 - 0f7a3792-bdba-f011-bbd3-7c1e52365f30 + 22e3fc92-4c27-4924-92e3-13479ae1ffb5 false - true + false iscustomizable - false + true - false + true true - lk_dvfilesearchattribute_createdby + lk_ribbonrule_createdonbehalfby None - 1.0.0.56 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -399959,27 +449812,27 @@ false systemuserid systemuser - lk_dvfilesearchattribute_createdby - createdby - dvfilesearchattribute - createdby + lk_ribbonrule_createdonbehalfby + createdonbehalfby + ribbonrule + createdonbehalfby 0 - 157a3792-bdba-f011-bbd3-7c1e52365f30 + 51fffd92-4a74-44ba-86a6-7f7ca656f02d false - true + false iscustomizable - true + false - false - true - lk_dvfilesearchattribute_createdonbehalfby + true + false + lk_sdkmessageresponse_modifiedonbehalfby None - 1.0.0.56 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -400013,15 +449866,15 @@ false systemuserid systemuser - lk_dvfilesearchattribute_createdonbehalfby - createdonbehalfby - dvfilesearchattribute - createdonbehalfby + lk_sdkmessageresponse_modifiedonbehalfby + modifiedonbehalfby + sdkmessageresponse + modifiedonbehalfby 0 - 1b7a3792-bdba-f011-bbd3-7c1e52365f30 + 30d11393-f4ba-f011-bbd3-7c1e52365f30 false @@ -400031,9 +449884,9 @@ false true - lk_dvfilesearchattribute_modifiedby + lk_powerpagessiteaifeedback_createdby None - 1.0.0.56 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -400067,15 +449920,15 @@ false systemuserid systemuser - lk_dvfilesearchattribute_modifiedby - modifiedby - dvfilesearchattribute - modifiedby + lk_powerpagessiteaifeedback_createdby + createdby + powerpagessiteaifeedback + createdby 0 - 217a3792-bdba-f011-bbd3-7c1e52365f30 + 36d11393-f4ba-f011-bbd3-7c1e52365f30 false @@ -400085,9 +449938,9 @@ false true - lk_dvfilesearchattribute_modifiedonbehalfby + lk_powerpagessiteaifeedback_createdonbehalfby None - 1.0.0.56 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -400121,15 +449974,15 @@ false systemuserid systemuser - lk_dvfilesearchattribute_modifiedonbehalfby - modifiedonbehalfby - dvfilesearchattribute - modifiedonbehalfby + lk_powerpagessiteaifeedback_createdonbehalfby + createdonbehalfby + powerpagessiteaifeedback + createdonbehalfby 0 - 337a3792-bdba-f011-bbd3-7c1e52365f30 + 3cd11393-f4ba-f011-bbd3-7c1e52365f30 false @@ -400139,9 +449992,9 @@ false true - user_dvfilesearchattribute + lk_powerpagessiteaifeedback_modifiedby None - 1.0.0.56 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -400175,25 +450028,25 @@ false systemuserid systemuser - user_dvfilesearchattribute - owninguser - dvfilesearchattribute - owninguser + lk_powerpagessiteaifeedback_modifiedby + modifiedby + powerpagessiteaifeedback + modifiedby 0 - 597c3792-bdba-f011-bbd3-7c1e52365f30 + 42d11393-f4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_dvfilesearchentity_createdby + lk_powerpagessiteaifeedback_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -400229,25 +450082,25 @@ false systemuserid systemuser - lk_dvfilesearchentity_createdby - createdby - dvfilesearchentity - createdby + lk_powerpagessiteaifeedback_modifiedonbehalfby + modifiedonbehalfby + powerpagessiteaifeedback + modifiedonbehalfby 0 - 5f7c3792-bdba-f011-bbd3-7c1e52365f30 + 54d11393-f4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_dvfilesearchentity_createdonbehalfby + user_powerpagessiteaifeedback None 1.0.0.0 OneToManyRelationship @@ -400283,27 +450136,27 @@ false systemuserid systemuser - lk_dvfilesearchentity_createdonbehalfby - createdonbehalfby - dvfilesearchentity - createdonbehalfby + user_powerpagessiteaifeedback + owninguser + powerpagessiteaifeedback + owninguser 0 - 657c3792-bdba-f011-bbd3-7c1e52365f30 + c41f3a93-604a-4bbb-8a63-668122cc0bf7 false - true + false iscustomizable - false + true - false + true true - lk_dvfilesearchentity_modifiedby + user_email None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -400337,15 +450190,15 @@ false systemuserid systemuser - lk_dvfilesearchentity_modifiedby - modifiedby - dvfilesearchentity - modifiedby + user_email + owninguser + email + owninguser_email 0 - 6b7c3792-bdba-f011-bbd3-7c1e52365f30 + 68728193-bc51-f111-a824-e4fb1efa3784 false @@ -400355,9 +450208,9 @@ false true - lk_dvfilesearchentity_modifiedonbehalfby + lk_msdyn_historicalcaseharvestrunlog_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -400391,27 +450244,27 @@ false systemuserid systemuser - lk_dvfilesearchentity_modifiedonbehalfby - modifiedonbehalfby - dvfilesearchentity - modifiedonbehalfby + lk_msdyn_historicalcaseharvestrunlog_createdby + createdby + msdyn_historicalcaseharvestrunlog + createdby 0 - 7d7c3792-bdba-f011-bbd3-7c1e52365f30 + 73728193-bc51-f111-a824-e4fb1efa3784 false true iscustomizable - false + true false true - user_dvfilesearchentity + lk_msdyn_historicalcaseharvestrunlog_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -400445,27 +450298,27 @@ false systemuserid systemuser - user_dvfilesearchentity - owninguser - dvfilesearchentity - owninguser + lk_msdyn_historicalcaseharvestrunlog_createdonbehalfby + createdonbehalfby + msdyn_historicalcaseharvestrunlog + createdonbehalfby 0 - 207e3792-bdba-f011-bbd3-7c1e52365f30 + 7d728193-bc51-f111-a824-e4fb1efa3784 false true iscustomizable - false + true false true - lk_dvtablesearch_createdby + lk_msdyn_historicalcaseharvestrunlog_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -400499,15 +450352,15 @@ false systemuserid systemuser - lk_dvtablesearch_createdby - createdby - dvtablesearch - createdby + lk_msdyn_historicalcaseharvestrunlog_modifiedby + modifiedby + msdyn_historicalcaseharvestrunlog + modifiedby 0 - 267e3792-bdba-f011-bbd3-7c1e52365f30 + 85728193-bc51-f111-a824-e4fb1efa3784 false @@ -400517,9 +450370,9 @@ false true - lk_dvtablesearch_createdonbehalfby + lk_msdyn_historicalcaseharvestrunlog_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -400553,27 +450406,27 @@ false systemuserid systemuser - lk_dvtablesearch_createdonbehalfby - createdonbehalfby - dvtablesearch - createdonbehalfby + lk_msdyn_historicalcaseharvestrunlog_modifiedonbehalfby + modifiedonbehalfby + msdyn_historicalcaseharvestrunlog + modifiedonbehalfby 0 - 2c7e3792-bdba-f011-bbd3-7c1e52365f30 + 9d728193-bc51-f111-a824-e4fb1efa3784 false true iscustomizable - false + true false true - lk_dvtablesearch_modifiedby + user_msdyn_historicalcaseharvestrunlog None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -400607,27 +450460,27 @@ false systemuserid systemuser - lk_dvtablesearch_modifiedby - modifiedby - dvtablesearch - modifiedby + user_msdyn_historicalcaseharvestrunlog + owninguser + msdyn_historicalcaseharvestrunlog + owninguser 0 - 327e3792-bdba-f011-bbd3-7c1e52365f30 + b6928293-c433-4da5-8f25-208338bcaac4 false - true + false iscustomizable - true + false - false + true true - lk_dvtablesearch_modifiedonbehalfby + lk_templatebase_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -400661,30 +450514,30 @@ false systemuserid systemuser - lk_dvtablesearch_modifiedonbehalfby - modifiedonbehalfby - dvtablesearch - modifiedonbehalfby + lk_templatebase_createdby + createdby + template + createdby 0 - 467e3792-bdba-f011-bbd3-7c1e52365f30 + 9be19293-38f1-4cbf-a192-541bd011cbbb false - true + false iscustomizable false - false + true true - user_dvtablesearch + lk_authorizationserver_modifiedonbehalfby None - 1.0.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -400715,27 +450568,27 @@ false systemuserid systemuser - user_dvtablesearch - owninguser - dvtablesearch - owninguser + lk_authorizationserver_modifiedonbehalfby + modifiedonbehalfby + authorizationserver + modifiedonbehalfby 0 - f8413798-bdba-f011-bbd3-7c1e52365f30 + ceb19e93-b6ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_dvtablesearchattribute_createdby + lk_revokeinheritedaccessrecordstracker_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -400769,15 +450622,15 @@ false systemuserid systemuser - lk_dvtablesearchattribute_createdby + lk_revokeinheritedaccessrecordstracker_createdby createdby - dvtablesearchattribute + revokeinheritedaccessrecordstracker createdby 0 - 0c423798-bdba-f011-bbd3-7c1e52365f30 + d4b19e93-b6ba-f011-bbd3-7c1e52365f30 false @@ -400787,9 +450640,9 @@ false true - lk_dvtablesearchattribute_createdonbehalfby + lk_revokeinheritedaccessrecordstracker_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -400823,27 +450676,27 @@ false systemuserid systemuser - lk_dvtablesearchattribute_createdonbehalfby + lk_revokeinheritedaccessrecordstracker_createdonbehalfby createdonbehalfby - dvtablesearchattribute + revokeinheritedaccessrecordstracker createdonbehalfby 0 - 1a423798-bdba-f011-bbd3-7c1e52365f30 + dab19e93-b6ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_dvtablesearchattribute_modifiedby + lk_revokeinheritedaccessrecordstracker_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -400877,15 +450730,15 @@ false systemuserid systemuser - lk_dvtablesearchattribute_modifiedby + lk_revokeinheritedaccessrecordstracker_modifiedby modifiedby - dvtablesearchattribute + revokeinheritedaccessrecordstracker modifiedby 0 - 24423798-bdba-f011-bbd3-7c1e52365f30 + e0b19e93-b6ba-f011-bbd3-7c1e52365f30 false @@ -400895,9 +450748,9 @@ false true - lk_dvtablesearchattribute_modifiedonbehalfby + lk_revokeinheritedaccessrecordstracker_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -400931,81 +450784,27 @@ false systemuserid systemuser - lk_dvtablesearchattribute_modifiedonbehalfby + lk_revokeinheritedaccessrecordstracker_modifiedonbehalfby modifiedonbehalfby - dvtablesearchattribute + revokeinheritedaccessrecordstracker modifiedonbehalfby 0 - 3f423798-bdba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - user_dvtablesearchattribute - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - user_dvtablesearchattribute - owninguser - dvtablesearchattribute - owninguser - - 0 - - - 4f443798-bdba-f011-bbd3-7c1e52365f30 + ff0c5994-33c9-454c-bdc8-b33968d724c7 false - true + false iscustomizable - false + true - false + true true - lk_dvtablesearchentity_createdby + lk_ChannelPropertyGroup_createdby None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -401039,15 +450838,15 @@ false systemuserid systemuser - lk_dvtablesearchentity_createdby + lk_ChannelPropertyGroup_createdby createdby - dvtablesearchentity + channelpropertygroup createdby 0 - 55443798-bdba-f011-bbd3-7c1e52365f30 + 99276094-b1ba-f011-bbd3-7c1e52365f30 false @@ -401057,9 +450856,9 @@ false true - lk_dvtablesearchentity_createdonbehalfby + lk_sensitivitylabelattributemapping_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -401093,27 +450892,27 @@ false systemuserid systemuser - lk_dvtablesearchentity_createdonbehalfby - createdonbehalfby - dvtablesearchentity - createdonbehalfby + lk_sensitivitylabelattributemapping_createdby + createdby + sensitivitylabelattributemapping + createdby 0 - 5b443798-bdba-f011-bbd3-7c1e52365f30 + 9f276094-b1ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_dvtablesearchentity_modifiedby + lk_sensitivitylabelattributemapping_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -401147,15 +450946,15 @@ false systemuserid systemuser - lk_dvtablesearchentity_modifiedby - modifiedby - dvtablesearchentity - modifiedby + lk_sensitivitylabelattributemapping_createdonbehalfby + createdonbehalfby + sensitivitylabelattributemapping + createdonbehalfby 0 - 61443798-bdba-f011-bbd3-7c1e52365f30 + a5276094-b1ba-f011-bbd3-7c1e52365f30 false @@ -401165,9 +450964,9 @@ false true - lk_dvtablesearchentity_modifiedonbehalfby + lk_sensitivitylabelattributemapping_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -401201,27 +451000,27 @@ false systemuserid systemuser - lk_dvtablesearchentity_modifiedonbehalfby - modifiedonbehalfby - dvtablesearchentity - modifiedonbehalfby + lk_sensitivitylabelattributemapping_modifiedby + modifiedby + sensitivitylabelattributemapping + modifiedby 0 - 73443798-bdba-f011-bbd3-7c1e52365f30 + ab276094-b1ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_dvtablesearchentity + lk_sensitivitylabelattributemapping_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -401255,27 +451054,27 @@ false systemuserid systemuser - user_dvtablesearchentity - owninguser - dvtablesearchentity - owninguser + lk_sensitivitylabelattributemapping_modifiedonbehalfby + modifiedonbehalfby + sensitivitylabelattributemapping + modifiedonbehalfby 0 - 487d18de-bdba-f011-bbd3-7c1e52365f30 + 33c78994-2e02-4f2c-9f5d-b95416c6578d false - true + false iscustomizable - true + false - false + true true - lk_aicopilot_createdby + lk_businessunitnewsarticlebase_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -401309,30 +451108,30 @@ false systemuserid systemuser - lk_aicopilot_createdby - createdby - aicopilot - createdby + lk_businessunitnewsarticlebase_modifiedby + modifiedby + businessunitnewsarticle + modifiedby 0 - 5d7d18de-bdba-f011-bbd3-7c1e52365f30 + f8da9994-b122-4116-81bc-f2ee47b0b9e9 false - true + false iscustomizable true - false + true true - lk_aicopilot_createdonbehalfby + lk_appmodule_createdonbehalfby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -401363,27 +451162,27 @@ false systemuserid systemuser - lk_aicopilot_createdonbehalfby + systemuser_appmodule_createdonbehalfby createdonbehalfby - aicopilot - createdonbehalfby + appmodule + appmodule_createdonbehalfby 0 - 697d18de-bdba-f011-bbd3-7c1e52365f30 + a123c794-d679-43a7-a1ce-28d42de980cf false - true + false iscustomizable - true + false - false - true - lk_aicopilot_modifiedby + true + false + createdby_sdkmessageprocessingstepimage None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -401417,27 +451216,27 @@ false systemuserid systemuser - lk_aicopilot_modifiedby - modifiedby - aicopilot - modifiedby + createdby_sdkmessageprocessingstepimage + createdby + sdkmessageprocessingstepimage + createdby 0 - 757d18de-bdba-f011-bbd3-7c1e52365f30 + 7df20695-d74c-498e-8683-a80de4f0f0e3 false - true + false iscustomizable true - false + true true - lk_aicopilot_modifiedonbehalfby + lk_ChannelPropertyGroup_modifiedby None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -401471,25 +451270,25 @@ false systemuserid systemuser - lk_aicopilot_modifiedonbehalfby - modifiedonbehalfby - aicopilot - modifiedonbehalfby + lk_ChannelPropertyGroup_modifiedby + modifiedby + channelpropertygroup + modifiedby 0 - 787e18de-bdba-f011-bbd3-7c1e52365f30 + 4ca57395-0d2f-f111-88b5-7c1e5287d1d8 false true iscustomizable - true + false false true - lk_aipluginauth_createdby + lk_uxagentprojectfile_createdby None 1.0.0.0 OneToManyRelationship @@ -401525,15 +451324,15 @@ false systemuserid systemuser - lk_aipluginauth_createdby + lk_uxagentprojectfile_createdby createdby - aipluginauth + uxagentprojectfile createdby 0 - 807e18de-bdba-f011-bbd3-7c1e52365f30 + 52a57395-0d2f-f111-88b5-7c1e5287d1d8 false @@ -401543,7 +451342,7 @@ false true - lk_aipluginauth_createdonbehalfby + lk_uxagentprojectfile_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -401579,25 +451378,25 @@ false systemuserid systemuser - lk_aipluginauth_createdonbehalfby + lk_uxagentprojectfile_createdonbehalfby createdonbehalfby - aipluginauth + uxagentprojectfile createdonbehalfby 0 - 867e18de-bdba-f011-bbd3-7c1e52365f30 + 58a57395-0d2f-f111-88b5-7c1e5287d1d8 false true iscustomizable - true + false false true - lk_aipluginauth_modifiedby + lk_uxagentprojectfile_modifiedby None 1.0.0.0 OneToManyRelationship @@ -401633,15 +451432,15 @@ false systemuserid systemuser - lk_aipluginauth_modifiedby + lk_uxagentprojectfile_modifiedby modifiedby - aipluginauth + uxagentprojectfile modifiedby 0 - e97e18de-bdba-f011-bbd3-7c1e52365f30 + 5ea57395-0d2f-f111-88b5-7c1e5287d1d8 false @@ -401651,7 +451450,7 @@ false true - lk_aipluginauth_modifiedonbehalfby + lk_uxagentprojectfile_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -401687,27 +451486,81 @@ false systemuserid systemuser - lk_aipluginauth_modifiedonbehalfby + lk_uxagentprojectfile_modifiedonbehalfby modifiedonbehalfby - aipluginauth + uxagentprojectfile modifiedonbehalfby 0 - 177f18de-bdba-f011-bbd3-7c1e52365f30 + f44fa895-7063-4dcc-8f6f-750ada181dec false - true + false iscustomizable true - false + true true - user_aipluginauth + lk_externalpartyitem_createdby None - 1.0.0.0 + 8.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_externalpartyitem_createdby + createdby + externalpartyitem + lk_externalpartyitem_createdby + + 0 + + + f9370696-1182-4442-9490-14fbfb537956 + + false + + false + iscustomizable + true + + true + true + user_recurringappointmentmaster + None + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -401741,15 +451594,15 @@ false systemuserid systemuser - user_aipluginauth + user_recurringappointmentmaster owninguser - aipluginauth - owninguser + recurringappointmentmaster + owninguser_recurringappointmentmaster 0 - a78018de-bdba-f011-bbd3-7c1e52365f30 + f68e6396-42bf-f011-bbd5-7ced8d470ac7 false @@ -401759,7 +451612,7 @@ false true - lk_aipluginconversationstarter_createdby + lk_cpr_cprdata_createdby None 1.0 OneToManyRelationship @@ -401795,15 +451648,15 @@ false systemuserid systemuser - lk_aipluginconversationstarter_createdby + lk_cpr_cprdata_createdby createdby - aipluginconversationstarter + cpr_cprdata createdby 0 - b68018de-bdba-f011-bbd3-7c1e52365f30 + fd8e6396-42bf-f011-bbd5-7ced8d470ac7 false @@ -401813,7 +451666,7 @@ false true - lk_aipluginconversationstarter_createdonbehalfby + lk_cpr_cprdata_createdonbehalfby None 1.0 OneToManyRelationship @@ -401849,15 +451702,15 @@ false systemuserid systemuser - lk_aipluginconversationstarter_createdonbehalfby + lk_cpr_cprdata_createdonbehalfby createdonbehalfby - aipluginconversationstarter + cpr_cprdata createdonbehalfby 0 - c08018de-bdba-f011-bbd3-7c1e52365f30 + 038f6396-42bf-f011-bbd5-7ced8d470ac7 false @@ -401867,7 +451720,7 @@ false true - lk_aipluginconversationstarter_modifiedby + lk_cpr_cprdata_modifiedby None 1.0 OneToManyRelationship @@ -401903,15 +451756,15 @@ false systemuserid systemuser - lk_aipluginconversationstarter_modifiedby + lk_cpr_cprdata_modifiedby modifiedby - aipluginconversationstarter + cpr_cprdata modifiedby 0 - d28018de-bdba-f011-bbd3-7c1e52365f30 + 0a8f6396-42bf-f011-bbd5-7ced8d470ac7 false @@ -401921,7 +451774,7 @@ false true - lk_aipluginconversationstarter_modifiedonbehalfby + lk_cpr_cprdata_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -401957,15 +451810,15 @@ false systemuserid systemuser - lk_aipluginconversationstarter_modifiedonbehalfby + lk_cpr_cprdata_modifiedonbehalfby modifiedonbehalfby - aipluginconversationstarter + cpr_cprdata modifiedonbehalfby 0 - f48018de-bdba-f011-bbd3-7c1e52365f30 + 1d8f6396-42bf-f011-bbd5-7ced8d470ac7 false @@ -401975,7 +451828,7 @@ false true - user_aipluginconversationstarter + user_cpr_cprdata None 1.0 OneToManyRelationship @@ -402011,15 +451864,15 @@ false systemuserid systemuser - user_aipluginconversationstarter + user_cpr_cprdata owninguser - aipluginconversationstarter + cpr_cprdata owninguser 0 - d68218de-bdba-f011-bbd3-7c1e52365f30 + 23588996-beba-f011-bbd3-7c1e52365f30 false @@ -402029,7 +451882,7 @@ false true - lk_aipluginconversationstartermapping_createdby + lk_msdyn_aidocumenttemplate_createdby None 1.0 OneToManyRelationship @@ -402065,15 +451918,15 @@ false systemuserid systemuser - lk_aipluginconversationstartermapping_createdby + lk_msdyn_aidocumenttemplate_createdby createdby - aipluginconversationstartermapping + msdyn_aidocumenttemplate createdby 0 - e28218de-bdba-f011-bbd3-7c1e52365f30 + 29588996-beba-f011-bbd3-7c1e52365f30 false @@ -402083,7 +451936,7 @@ false true - lk_aipluginconversationstartermapping_createdonbehalfby + lk_msdyn_aidocumenttemplate_createdonbehalfby None 1.0 OneToManyRelationship @@ -402119,15 +451972,15 @@ false systemuserid systemuser - lk_aipluginconversationstartermapping_createdonbehalfby + lk_msdyn_aidocumenttemplate_createdonbehalfby createdonbehalfby - aipluginconversationstartermapping + msdyn_aidocumenttemplate createdonbehalfby 0 - e88218de-bdba-f011-bbd3-7c1e52365f30 + 2f588996-beba-f011-bbd3-7c1e52365f30 false @@ -402137,7 +451990,7 @@ false true - lk_aipluginconversationstartermapping_modifiedby + lk_msdyn_aidocumenttemplate_modifiedby None 1.0 OneToManyRelationship @@ -402173,15 +452026,15 @@ false systemuserid systemuser - lk_aipluginconversationstartermapping_modifiedby + lk_msdyn_aidocumenttemplate_modifiedby modifiedby - aipluginconversationstartermapping + msdyn_aidocumenttemplate modifiedby 0 - ee8218de-bdba-f011-bbd3-7c1e52365f30 + 35588996-beba-f011-bbd3-7c1e52365f30 false @@ -402191,7 +452044,7 @@ false true - lk_aipluginconversationstartermapping_modifiedonbehalfby + lk_msdyn_aidocumenttemplate_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -402227,25 +452080,25 @@ false systemuserid systemuser - lk_aipluginconversationstartermapping_modifiedonbehalfby + lk_msdyn_aidocumenttemplate_modifiedonbehalfby modifiedonbehalfby - aipluginconversationstartermapping + msdyn_aidocumenttemplate modifiedonbehalfby 0 - 008318de-bdba-f011-bbd3-7c1e52365f30 + 47588996-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_aipluginconversationstartermapping + user_msdyn_aidocumenttemplate None 1.0 OneToManyRelationship @@ -402281,15 +452134,15 @@ false systemuserid systemuser - user_aipluginconversationstartermapping + user_msdyn_aidocumenttemplate owninguser - aipluginconversationstartermapping + msdyn_aidocumenttemplate owninguser 0 - ce4d9ee4-bdba-f011-bbd3-7c1e52365f30 + b25a8996-beba-f011-bbd3-7c1e52365f30 false @@ -402299,7 +452152,7 @@ false true - lk_aiplugingovernance_createdby + lk_msdyn_aievent_createdby None 1.0 OneToManyRelationship @@ -402335,15 +452188,15 @@ false systemuserid systemuser - lk_aiplugingovernance_createdby + lk_msdyn_aievent_createdby createdby - aiplugingovernance + msdyn_aievent createdby 0 - d44d9ee4-bdba-f011-bbd3-7c1e52365f30 + bf5a8996-beba-f011-bbd3-7c1e52365f30 false @@ -402353,7 +452206,7 @@ false true - lk_aiplugingovernance_createdonbehalfby + lk_msdyn_aievent_createdonbehalfby None 1.0 OneToManyRelationship @@ -402389,15 +452242,15 @@ false systemuserid systemuser - lk_aiplugingovernance_createdonbehalfby + lk_msdyn_aievent_createdonbehalfby createdonbehalfby - aiplugingovernance + msdyn_aievent createdonbehalfby 0 - da4d9ee4-bdba-f011-bbd3-7c1e52365f30 + c85a8996-beba-f011-bbd3-7c1e52365f30 false @@ -402407,7 +452260,7 @@ false true - lk_aiplugingovernance_modifiedby + lk_msdyn_aievent_modifiedby None 1.0 OneToManyRelationship @@ -402443,15 +452296,15 @@ false systemuserid systemuser - lk_aiplugingovernance_modifiedby + lk_msdyn_aievent_modifiedby modifiedby - aiplugingovernance + msdyn_aievent modifiedby 0 - e04d9ee4-bdba-f011-bbd3-7c1e52365f30 + ce5a8996-beba-f011-bbd3-7c1e52365f30 false @@ -402461,7 +452314,7 @@ false true - lk_aiplugingovernance_modifiedonbehalfby + lk_msdyn_aievent_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -402497,15 +452350,15 @@ false systemuserid systemuser - lk_aiplugingovernance_modifiedonbehalfby + lk_msdyn_aievent_modifiedonbehalfby modifiedonbehalfby - aiplugingovernance + msdyn_aievent modifiedonbehalfby 0 - f24d9ee4-bdba-f011-bbd3-7c1e52365f30 + e05a8996-beba-f011-bbd3-7c1e52365f30 false @@ -402515,7 +452368,7 @@ false true - user_aiplugingovernance + user_msdyn_aievent None 1.0 OneToManyRelationship @@ -402551,27 +452404,27 @@ false systemuserid systemuser - user_aiplugingovernance + user_msdyn_aievent owninguser - aiplugingovernance + msdyn_aievent owninguser 0 - 9d4f9ee4-bdba-f011-bbd3-7c1e52365f30 + d85c8996-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_aiplugingovernanceext_createdby + lk_msdyn_aimodel_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -402605,15 +452458,15 @@ false systemuserid systemuser - lk_aiplugingovernanceext_createdby + lk_msdyn_aimodel_createdby createdby - aiplugingovernanceext + msdyn_aimodel createdby 0 - a34f9ee4-bdba-f011-bbd3-7c1e52365f30 + de5c8996-beba-f011-bbd3-7c1e52365f30 false @@ -402623,9 +452476,9 @@ false true - lk_aiplugingovernanceext_createdonbehalfby + lk_msdyn_aimodel_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -402659,27 +452512,27 @@ false systemuserid systemuser - lk_aiplugingovernanceext_createdonbehalfby + lk_msdyn_aimodel_createdonbehalfby createdonbehalfby - aiplugingovernanceext + msdyn_aimodel createdonbehalfby 0 - a94f9ee4-bdba-f011-bbd3-7c1e52365f30 + e45c8996-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_aiplugingovernanceext_modifiedby + lk_msdyn_aimodel_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -402713,15 +452566,15 @@ false systemuserid systemuser - lk_aiplugingovernanceext_modifiedby + lk_msdyn_aimodel_modifiedby modifiedby - aiplugingovernanceext + msdyn_aimodel modifiedby 0 - af4f9ee4-bdba-f011-bbd3-7c1e52365f30 + ea5c8996-beba-f011-bbd3-7c1e52365f30 false @@ -402731,9 +452584,9 @@ false true - lk_aiplugingovernanceext_modifiedonbehalfby + lk_msdyn_aimodel_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -402767,27 +452620,27 @@ false systemuserid systemuser - lk_aiplugingovernanceext_modifiedonbehalfby + lk_msdyn_aimodel_modifiedonbehalfby modifiedonbehalfby - aiplugingovernanceext + msdyn_aimodel modifiedonbehalfby 0 - c14f9ee4-bdba-f011-bbd3-7c1e52365f30 + fc5c8996-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_aiplugingovernanceext + user_msdyn_aimodel None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -402821,25 +452674,25 @@ false systemuserid systemuser - user_aiplugingovernanceext + user_msdyn_aimodel owninguser - aiplugingovernanceext + msdyn_aimodel owninguser 0 - 32519ee4-bdba-f011-bbd3-7c1e52365f30 + bb5e8996-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_aipluginoperationresponsetemplate_createdby + lk_msdyn_aimodelcatalog_createdby None 1.0 OneToManyRelationship @@ -402875,15 +452728,15 @@ false systemuserid systemuser - lk_aipluginoperationresponsetemplate_createdby + lk_msdyn_aimodelcatalog_createdby createdby - aipluginoperationresponsetemplate + msdyn_aimodelcatalog createdby 0 - 38519ee4-bdba-f011-bbd3-7c1e52365f30 + c15e8996-beba-f011-bbd3-7c1e52365f30 false @@ -402893,7 +452746,7 @@ false true - lk_aipluginoperationresponsetemplate_createdonbehalfby + lk_msdyn_aimodelcatalog_createdonbehalfby None 1.0 OneToManyRelationship @@ -402929,25 +452782,25 @@ false systemuserid systemuser - lk_aipluginoperationresponsetemplate_createdonbehalfby + lk_msdyn_aimodelcatalog_createdonbehalfby createdonbehalfby - aipluginoperationresponsetemplate + msdyn_aimodelcatalog createdonbehalfby 0 - 3e519ee4-bdba-f011-bbd3-7c1e52365f30 + c75e8996-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_aipluginoperationresponsetemplate_modifiedby + lk_msdyn_aimodelcatalog_modifiedby None 1.0 OneToManyRelationship @@ -402983,15 +452836,15 @@ false systemuserid systemuser - lk_aipluginoperationresponsetemplate_modifiedby + lk_msdyn_aimodelcatalog_modifiedby modifiedby - aipluginoperationresponsetemplate + msdyn_aimodelcatalog modifiedby 0 - 44519ee4-bdba-f011-bbd3-7c1e52365f30 + cd5e8996-beba-f011-bbd3-7c1e52365f30 false @@ -403001,7 +452854,7 @@ false true - lk_aipluginoperationresponsetemplate_modifiedonbehalfby + lk_msdyn_aimodelcatalog_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -403037,15 +452890,15 @@ false systemuserid systemuser - lk_aipluginoperationresponsetemplate_modifiedonbehalfby + lk_msdyn_aimodelcatalog_modifiedonbehalfby modifiedonbehalfby - aipluginoperationresponsetemplate + msdyn_aimodelcatalog modifiedonbehalfby 0 - 56519ee4-bdba-f011-bbd3-7c1e52365f30 + df5e8996-beba-f011-bbd3-7c1e52365f30 false @@ -403055,7 +452908,7 @@ false true - user_aipluginoperationresponsetemplate + user_msdyn_aimodelcatalog None 1.0 OneToManyRelationship @@ -403091,15 +452944,15 @@ false systemuserid systemuser - user_aipluginoperationresponsetemplate + user_msdyn_aimodelcatalog owninguser - aipluginoperationresponsetemplate + msdyn_aimodelcatalog owninguser 0 - 3d539ee4-bdba-f011-bbd3-7c1e52365f30 + f5daae96-b5ba-f011-bbd3-7c1e52365f30 false @@ -403109,9 +452962,9 @@ false true - lk_aiplugintitle_createdby + lk_delegatedauthorization_createdby None - 1.0.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -403145,15 +452998,15 @@ false systemuserid systemuser - lk_aiplugintitle_createdby + lk_delegatedauthorization_createdby createdby - aiplugintitle + delegatedauthorization createdby 0 - 44539ee4-bdba-f011-bbd3-7c1e52365f30 + fbdaae96-b5ba-f011-bbd3-7c1e52365f30 false @@ -403163,9 +453016,9 @@ false true - lk_aiplugintitle_createdonbehalfby + lk_delegatedauthorization_createdonbehalfby None - 1.0.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -403199,15 +453052,15 @@ false systemuserid systemuser - lk_aiplugintitle_createdonbehalfby + lk_delegatedauthorization_createdonbehalfby createdonbehalfby - aiplugintitle + delegatedauthorization createdonbehalfby 0 - 4b539ee4-bdba-f011-bbd3-7c1e52365f30 + 01dbae96-b5ba-f011-bbd3-7c1e52365f30 false @@ -403217,9 +453070,9 @@ false true - lk_aiplugintitle_modifiedby + lk_delegatedauthorization_modifiedby None - 1.0.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -403253,15 +453106,15 @@ false systemuserid systemuser - lk_aiplugintitle_modifiedby + lk_delegatedauthorization_modifiedby modifiedby - aiplugintitle + delegatedauthorization modifiedby 0 - 51539ee4-bdba-f011-bbd3-7c1e52365f30 + 07dbae96-b5ba-f011-bbd3-7c1e52365f30 false @@ -403271,9 +453124,9 @@ false true - lk_aiplugintitle_modifiedonbehalfby + lk_delegatedauthorization_modifiedonbehalfby None - 1.0.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -403307,15 +453160,15 @@ false systemuserid systemuser - lk_aiplugintitle_modifiedonbehalfby + lk_delegatedauthorization_modifiedonbehalfby modifiedonbehalfby - aiplugintitle + delegatedauthorization modifiedonbehalfby 0 - 81b1c1ea-bdba-f011-bbd3-7c1e52365f30 + 2d712097-cfba-f011-bbd3-7c1e52365f30 false @@ -403325,9 +453178,9 @@ false true - lk_sideloadedaiplugin_createdby + lk_backgroundoperation_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -403361,15 +453214,15 @@ false systemuserid systemuser - lk_sideloadedaiplugin_createdby + lk_backgroundoperation_createdby createdby - sideloadedaiplugin + backgroundoperation createdby 0 - 87b1c1ea-bdba-f011-bbd3-7c1e52365f30 + 33712097-cfba-f011-bbd3-7c1e52365f30 false @@ -403379,9 +453232,9 @@ false true - lk_sideloadedaiplugin_createdonbehalfby + lk_backgroundoperation_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -403415,15 +453268,15 @@ false systemuserid systemuser - lk_sideloadedaiplugin_createdonbehalfby + lk_backgroundoperation_createdonbehalfby createdonbehalfby - sideloadedaiplugin + backgroundoperation createdonbehalfby 0 - 8db1c1ea-bdba-f011-bbd3-7c1e52365f30 + 39712097-cfba-f011-bbd3-7c1e52365f30 false @@ -403433,9 +453286,9 @@ false true - lk_sideloadedaiplugin_modifiedby + lk_backgroundoperation_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -403469,15 +453322,15 @@ false systemuserid systemuser - lk_sideloadedaiplugin_modifiedby + lk_backgroundoperation_modifiedby modifiedby - sideloadedaiplugin + backgroundoperation modifiedby 0 - 93b1c1ea-bdba-f011-bbd3-7c1e52365f30 + 3f712097-cfba-f011-bbd3-7c1e52365f30 false @@ -403487,9 +453340,9 @@ false true - lk_sideloadedaiplugin_modifiedonbehalfby + lk_backgroundoperation_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -403523,27 +453376,27 @@ false systemuserid systemuser - lk_sideloadedaiplugin_modifiedonbehalfby + lk_backgroundoperation_modifiedonbehalfby modifiedonbehalfby - sideloadedaiplugin + backgroundoperation modifiedonbehalfby 0 - a5b1c1ea-bdba-f011-bbd3-7c1e52365f30 + 28e37497-60e2-4e61-9be8-c1ba1383021c false - true + false iscustomizable - true + false - false + true true - user_sideloadedaiplugin + lk_calendarrule_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -403577,15 +453430,15 @@ false systemuserid systemuser - user_sideloadedaiplugin - owninguser - sideloadedaiplugin - owninguser + lk_calendarrule_createdby + createdby + calendarrule + createdby 0 - 71b3c1ea-bdba-f011-bbd3-7c1e52365f30 + f8413798-bdba-f011-bbd3-7c1e52365f30 false @@ -403595,9 +453448,9 @@ false true - lk_aiplugin_createdby + lk_dvtablesearchattribute_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -403631,15 +453484,15 @@ false systemuserid systemuser - lk_aiplugin_createdby + lk_dvtablesearchattribute_createdby createdby - aiplugin + dvtablesearchattribute createdby 0 - 7fb3c1ea-bdba-f011-bbd3-7c1e52365f30 + 0c423798-bdba-f011-bbd3-7c1e52365f30 false @@ -403649,9 +453502,9 @@ false true - lk_aiplugin_createdonbehalfby + lk_dvtablesearchattribute_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -403685,15 +453538,15 @@ false systemuserid systemuser - lk_aiplugin_createdonbehalfby + lk_dvtablesearchattribute_createdonbehalfby createdonbehalfby - aiplugin + dvtablesearchattribute createdonbehalfby 0 - 8db3c1ea-bdba-f011-bbd3-7c1e52365f30 + 1a423798-bdba-f011-bbd3-7c1e52365f30 false @@ -403703,9 +453556,9 @@ false true - lk_aiplugin_modifiedby + lk_dvtablesearchattribute_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -403739,15 +453592,15 @@ false systemuserid systemuser - lk_aiplugin_modifiedby + lk_dvtablesearchattribute_modifiedby modifiedby - aiplugin + dvtablesearchattribute modifiedby 0 - 9ab3c1ea-bdba-f011-bbd3-7c1e52365f30 + 24423798-bdba-f011-bbd3-7c1e52365f30 false @@ -403757,9 +453610,9 @@ false true - lk_aiplugin_modifiedonbehalfby + lk_dvtablesearchattribute_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -403793,15 +453646,15 @@ false systemuserid systemuser - lk_aiplugin_modifiedonbehalfby + lk_dvtablesearchattribute_modifiedonbehalfby modifiedonbehalfby - aiplugin + dvtablesearchattribute modifiedonbehalfby 0 - adb3c1ea-bdba-f011-bbd3-7c1e52365f30 + 3f423798-bdba-f011-bbd3-7c1e52365f30 false @@ -403811,9 +453664,9 @@ false true - user_aiplugin + user_dvtablesearchattribute None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -403847,15 +453700,15 @@ false systemuserid systemuser - user_aiplugin + user_dvtablesearchattribute owninguser - aiplugin + dvtablesearchattribute owninguser 0 - 40b5c1ea-bdba-f011-bbd3-7c1e52365f30 + 4f443798-bdba-f011-bbd3-7c1e52365f30 false @@ -403865,7 +453718,7 @@ false true - lk_aipluginexternalschema_createdby + lk_dvtablesearchentity_createdby None 1.0.0.0 OneToManyRelationship @@ -403901,15 +453754,15 @@ false systemuserid systemuser - lk_aipluginexternalschema_createdby + lk_dvtablesearchentity_createdby createdby - aipluginexternalschema + dvtablesearchentity createdby 0 - 46b5c1ea-bdba-f011-bbd3-7c1e52365f30 + 55443798-bdba-f011-bbd3-7c1e52365f30 false @@ -403919,7 +453772,7 @@ false true - lk_aipluginexternalschema_createdonbehalfby + lk_dvtablesearchentity_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -403955,15 +453808,15 @@ false systemuserid systemuser - lk_aipluginexternalschema_createdonbehalfby + lk_dvtablesearchentity_createdonbehalfby createdonbehalfby - aipluginexternalschema + dvtablesearchentity createdonbehalfby 0 - 4cb5c1ea-bdba-f011-bbd3-7c1e52365f30 + 5b443798-bdba-f011-bbd3-7c1e52365f30 false @@ -403973,7 +453826,7 @@ false true - lk_aipluginexternalschema_modifiedby + lk_dvtablesearchentity_modifiedby None 1.0.0.0 OneToManyRelationship @@ -404009,15 +453862,15 @@ false systemuserid systemuser - lk_aipluginexternalschema_modifiedby + lk_dvtablesearchentity_modifiedby modifiedby - aipluginexternalschema + dvtablesearchentity modifiedby 0 - 52b5c1ea-bdba-f011-bbd3-7c1e52365f30 + 61443798-bdba-f011-bbd3-7c1e52365f30 false @@ -404027,7 +453880,7 @@ false true - lk_aipluginexternalschema_modifiedonbehalfby + lk_dvtablesearchentity_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -404063,15 +453916,15 @@ false systemuserid systemuser - lk_aipluginexternalschema_modifiedonbehalfby + lk_dvtablesearchentity_modifiedonbehalfby modifiedonbehalfby - aipluginexternalschema + dvtablesearchentity modifiedonbehalfby 0 - 64b5c1ea-bdba-f011-bbd3-7c1e52365f30 + 73443798-bdba-f011-bbd3-7c1e52365f30 false @@ -404081,7 +453934,7 @@ false true - user_aipluginexternalschema + user_dvtablesearchentity None 1.0.0.0 OneToManyRelationship @@ -404117,25 +453970,25 @@ false systemuserid systemuser - user_aipluginexternalschema + user_dvtablesearchentity owninguser - aipluginexternalschema + dvtablesearchentity owninguser 0 - f1b6c1ea-bdba-f011-bbd3-7c1e52365f30 + e0936398-5566-f111-ab0c-70a8a52b6964 false true iscustomizable - false + true false true - lk_aipluginexternalschemaproperty_createdby + lk_ctx_parent_createdby None 1.0.0.0 OneToManyRelationship @@ -404171,15 +454024,15 @@ false systemuserid systemuser - lk_aipluginexternalschemaproperty_createdby + lk_ctx_parent_createdby createdby - aipluginexternalschemaproperty + ctx_parent createdby 0 - f7b6c1ea-bdba-f011-bbd3-7c1e52365f30 + e6936398-5566-f111-ab0c-70a8a52b6964 false @@ -404189,7 +454042,7 @@ false true - lk_aipluginexternalschemaproperty_createdonbehalfby + lk_ctx_parent_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -404225,25 +454078,25 @@ false systemuserid systemuser - lk_aipluginexternalschemaproperty_createdonbehalfby + lk_ctx_parent_createdonbehalfby createdonbehalfby - aipluginexternalschemaproperty + ctx_parent createdonbehalfby 0 - fdb6c1ea-bdba-f011-bbd3-7c1e52365f30 + ec936398-5566-f111-ab0c-70a8a52b6964 false true iscustomizable - false + true false true - lk_aipluginexternalschemaproperty_modifiedby + lk_ctx_parent_modifiedby None 1.0.0.0 OneToManyRelationship @@ -404279,15 +454132,15 @@ false systemuserid systemuser - lk_aipluginexternalschemaproperty_modifiedby + lk_ctx_parent_modifiedby modifiedby - aipluginexternalschemaproperty + ctx_parent modifiedby 0 - 03b7c1ea-bdba-f011-bbd3-7c1e52365f30 + f2936398-5566-f111-ab0c-70a8a52b6964 false @@ -404297,7 +454150,7 @@ false true - lk_aipluginexternalschemaproperty_modifiedonbehalfby + lk_ctx_parent_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -404333,25 +454186,25 @@ false systemuserid systemuser - lk_aipluginexternalschemaproperty_modifiedonbehalfby + lk_ctx_parent_modifiedonbehalfby modifiedonbehalfby - aipluginexternalschemaproperty + ctx_parent modifiedonbehalfby 0 - 15b7c1ea-bdba-f011-bbd3-7c1e52365f30 + 0d946398-5566-f111-ab0c-70a8a52b6964 false true iscustomizable - false + true false true - user_aipluginexternalschemaproperty + user_ctx_parent None 1.0.0.0 OneToManyRelationship @@ -404387,25 +454240,25 @@ false systemuserid systemuser - user_aipluginexternalschemaproperty + user_ctx_parent owninguser - aipluginexternalschemaproperty + ctx_parent owninguser 0 - ebe9c3f0-bdba-f011-bbd3-7c1e52365f30 + a3557798-2f10-f111-8345-7c1e52216fd8 false true iscustomizable - false + true false true - lk_aiplugininstance_createdby + lk_mcpresource_createdby None 1.0.0.0 OneToManyRelationship @@ -404441,15 +454294,15 @@ false systemuserid systemuser - lk_aiplugininstance_createdby + lk_mcpresource_createdby createdby - aiplugininstance + mcpresource createdby 0 - f1e9c3f0-bdba-f011-bbd3-7c1e52365f30 + a9557798-2f10-f111-8345-7c1e52216fd8 false @@ -404459,7 +454312,7 @@ false true - lk_aiplugininstance_createdonbehalfby + lk_mcpresource_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -404495,25 +454348,25 @@ false systemuserid systemuser - lk_aiplugininstance_createdonbehalfby + lk_mcpresource_createdonbehalfby createdonbehalfby - aiplugininstance + mcpresource createdonbehalfby 0 - f7e9c3f0-bdba-f011-bbd3-7c1e52365f30 + b0557798-2f10-f111-8345-7c1e52216fd8 false true iscustomizable - false + true false true - lk_aiplugininstance_modifiedby + lk_mcpresource_modifiedby None 1.0.0.0 OneToManyRelationship @@ -404549,15 +454402,15 @@ false systemuserid systemuser - lk_aiplugininstance_modifiedby + lk_mcpresource_modifiedby modifiedby - aiplugininstance + mcpresource modifiedby 0 - fde9c3f0-bdba-f011-bbd3-7c1e52365f30 + b6557798-2f10-f111-8345-7c1e52216fd8 false @@ -404567,7 +454420,7 @@ false true - lk_aiplugininstance_modifiedonbehalfby + lk_mcpresource_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -404603,25 +454456,25 @@ false systemuserid systemuser - lk_aiplugininstance_modifiedonbehalfby + lk_mcpresource_modifiedonbehalfby modifiedonbehalfby - aiplugininstance + mcpresource modifiedonbehalfby 0 - 0feac3f0-bdba-f011-bbd3-7c1e52365f30 + c9557798-2f10-f111-8345-7c1e52216fd8 false true iscustomizable - false + true false true - user_aiplugininstance + user_mcpresource None 1.0.0.0 OneToManyRelationship @@ -404657,27 +454510,27 @@ false systemuserid systemuser - user_aiplugininstance + user_mcpresource owninguser - aiplugininstance + mcpresource owninguser 0 - d8ebc3f0-bdba-f011-bbd3-7c1e52365f30 + c7699598-d50d-4c10-b81a-73f641762f49 false - true + false iscustomizable false - false + true true - lk_aipluginoperation_createdby + lk_documenttemplatebase_modifiedonbehalfby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -404711,15 +454564,15 @@ false systemuserid systemuser - lk_aipluginoperation_createdby - createdby - aipluginoperation - createdby + lk_documenttemplatebase_modifiedonbehalfby + modifiedonbehalfby + documenttemplate + modifiedonbehalfby 0 - deebc3f0-bdba-f011-bbd3-7c1e52365f30 + 3362a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -404729,63 +454582,9 @@ false true - lk_aipluginoperation_createdonbehalfby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_aipluginoperation_createdonbehalfby - createdonbehalfby - aipluginoperation - createdonbehalfby - - 0 - - - e4ebc3f0-bdba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - lk_aipluginoperation_modifiedby + lk_msdyn_dataflow_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -404819,15 +454618,15 @@ false systemuserid systemuser - lk_aipluginoperation_modifiedby - modifiedby - aipluginoperation - modifiedby + lk_msdyn_dataflow_createdby + createdby + msdyn_dataflow + createdby 0 - eaebc3f0-bdba-f011-bbd3-7c1e52365f30 + 3a62a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -404837,9 +454636,9 @@ false true - lk_aipluginoperation_modifiedonbehalfby + lk_msdyn_dataflow_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -404873,27 +454672,27 @@ false systemuserid systemuser - lk_aipluginoperation_modifiedonbehalfby - modifiedonbehalfby - aipluginoperation - modifiedonbehalfby + lk_msdyn_dataflow_createdonbehalfby + createdonbehalfby + msdyn_dataflow + createdonbehalfby 0 - fcebc3f0-bdba-f011-bbd3-7c1e52365f30 + 4162a098-b4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_aipluginoperation + lk_msdyn_dataflow_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -404927,25 +454726,25 @@ false systemuserid systemuser - user_aipluginoperation - owninguser - aipluginoperation - owninguser + lk_msdyn_dataflow_modifiedby + modifiedby + msdyn_dataflow + modifiedby 0 - caedc3f0-bdba-f011-bbd3-7c1e52365f30 + 4862a098-b4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_aipluginoperationparameter_createdby + lk_msdyn_dataflow_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -404981,15 +454780,15 @@ false systemuserid systemuser - lk_aipluginoperationparameter_createdby - createdby - aipluginoperationparameter - createdby + lk_msdyn_dataflow_modifiedonbehalfby + modifiedonbehalfby + msdyn_dataflow + modifiedonbehalfby 0 - d0edc3f0-bdba-f011-bbd3-7c1e52365f30 + 5c62a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -404999,7 +454798,7 @@ false true - lk_aipluginoperationparameter_createdonbehalfby + user_msdyn_dataflow None 1.0 OneToManyRelationship @@ -405035,25 +454834,25 @@ false systemuserid systemuser - lk_aipluginoperationparameter_createdonbehalfby - createdonbehalfby - aipluginoperationparameter - createdonbehalfby + user_msdyn_dataflow + owninguser + msdyn_dataflow + owninguser 0 - d6edc3f0-bdba-f011-bbd3-7c1e52365f30 + a566a098-b4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_aipluginoperationparameter_modifiedby + lk_msdyn_dataflowrefreshhistory_createdby None 1.0 OneToManyRelationship @@ -405089,15 +454888,15 @@ false systemuserid systemuser - lk_aipluginoperationparameter_modifiedby - modifiedby - aipluginoperationparameter - modifiedby + lk_msdyn_dataflowrefreshhistory_createdby + createdby + msdyn_dataflowrefreshhistory + createdby 0 - dcedc3f0-bdba-f011-bbd3-7c1e52365f30 + ac66a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -405107,7 +454906,7 @@ false true - lk_aipluginoperationparameter_modifiedonbehalfby + lk_msdyn_dataflowrefreshhistory_createdonbehalfby None 1.0 OneToManyRelationship @@ -405143,25 +454942,25 @@ false systemuserid systemuser - lk_aipluginoperationparameter_modifiedonbehalfby - modifiedonbehalfby - aipluginoperationparameter - modifiedonbehalfby + lk_msdyn_dataflowrefreshhistory_createdonbehalfby + createdonbehalfby + msdyn_dataflowrefreshhistory + createdonbehalfby 0 - eeedc3f0-bdba-f011-bbd3-7c1e52365f30 + b466a098-b4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_aipluginoperationparameter + lk_msdyn_dataflowrefreshhistory_modifiedby None 1.0 OneToManyRelationship @@ -405197,25 +454996,25 @@ false systemuserid systemuser - user_aipluginoperationparameter - owninguser - aipluginoperationparameter - owninguser + lk_msdyn_dataflowrefreshhistory_modifiedby + modifiedby + msdyn_dataflowrefreshhistory + modifiedby 0 - 7e2ef8f6-bdba-f011-bbd3-7c1e52365f30 + bb66a098-b4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_aipluginusersetting_createdby + lk_msdyn_dataflowrefreshhistory_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -405251,15 +455050,15 @@ false systemuserid systemuser - lk_aipluginusersetting_createdby - createdby - aipluginusersetting - createdby + lk_msdyn_dataflowrefreshhistory_modifiedonbehalfby + modifiedonbehalfby + msdyn_dataflowrefreshhistory + modifiedonbehalfby 0 - 862ef8f6-bdba-f011-bbd3-7c1e52365f30 + cf66a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -405269,7 +455068,7 @@ false true - lk_aipluginusersetting_createdonbehalfby + user_msdyn_dataflowrefreshhistory None 1.0 OneToManyRelationship @@ -405305,25 +455104,25 @@ false systemuserid systemuser - lk_aipluginusersetting_createdonbehalfby - createdonbehalfby - aipluginusersetting - createdonbehalfby + user_msdyn_dataflowrefreshhistory + owninguser + msdyn_dataflowrefreshhistory + owninguser 0 - 8c2ef8f6-bdba-f011-bbd3-7c1e52365f30 + e267a098-b4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_aipluginusersetting_modifiedby + lk_msdyn_entityrefreshhistory_createdby None 1.0 OneToManyRelationship @@ -405359,15 +455158,15 @@ false systemuserid systemuser - lk_aipluginusersetting_modifiedby - modifiedby - aipluginusersetting - modifiedby + lk_msdyn_entityrefreshhistory_createdby + createdby + msdyn_entityrefreshhistory + createdby 0 - 922ef8f6-bdba-f011-bbd3-7c1e52365f30 + ea67a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -405377,7 +455176,7 @@ false true - lk_aipluginusersetting_modifiedonbehalfby + lk_msdyn_entityrefreshhistory_createdonbehalfby None 1.0 OneToManyRelationship @@ -405413,25 +455212,25 @@ false systemuserid systemuser - lk_aipluginusersetting_modifiedonbehalfby - modifiedonbehalfby - aipluginusersetting - modifiedonbehalfby + lk_msdyn_entityrefreshhistory_createdonbehalfby + createdonbehalfby + msdyn_entityrefreshhistory + createdonbehalfby 0 - a62ef8f6-bdba-f011-bbd3-7c1e52365f30 + f067a098-b4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_aipluginusersetting + lk_msdyn_entityrefreshhistory_modifiedby None 1.0 OneToManyRelationship @@ -405467,69 +455266,15 @@ false systemuserid systemuser - user_aipluginusersetting - owninguser - aipluginusersetting - owninguser - - 0 - - - 8a30f8f6-bdba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - AIPluginUserSetting_SystemUser_Syst - None - 1.0.0.62 - OneToManyRelationship - - UseCollectionName - Details - - - - - 10000 - true - - true - - - 00000000-0000-0000-0000-000000000000 - - - RemoveLink - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - AIPluginUserSetting_SystemUser_Syst - systemuser - aipluginusersetting - SystemUser + lk_msdyn_entityrefreshhistory_modifiedby + modifiedby + msdyn_entityrefreshhistory + modifiedby 0 - 011d1dfe-bdba-f011-bbd3-7c1e52365f30 + f767a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -405539,18 +455284,18 @@ false true - sideloadedaiplugin_sideloadedpluginownerid + lk_msdyn_entityrefreshhistory_modifiedonbehalfby None 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -405559,9 +455304,9 @@ 00000000-0000-0000-0000-000000000000 - RemoveLink + NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -405575,27 +455320,27 @@ false systemuserid systemuser - sideloadedaiplugin_sideloadedpluginownerid - sideloadedpluginownerid - sideloadedaiplugin - sideloadedpluginownerid + lk_msdyn_entityrefreshhistory_modifiedonbehalfby + modifiedonbehalfby + msdyn_entityrefreshhistory + modifiedonbehalfby 0 - 39968f90-beba-f011-bbd3-7c1e52365f30 + 0b68a098-b4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_aiconfiguration_createdby + user_msdyn_entityrefreshhistory None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -405629,27 +455374,27 @@ false systemuserid systemuser - lk_msdyn_aiconfiguration_createdby - createdby - msdyn_aiconfiguration - createdby + user_msdyn_entityrefreshhistory + owninguser + msdyn_entityrefreshhistory + owninguser 0 - 3f968f90-beba-f011-bbd3-7c1e52365f30 + 6287aa98-8202-4768-bf74-ed4c576104dd false - true + false iscustomizable - true + false - false - true - lk_msdyn_aiconfiguration_createdonbehalfby + true + false + lk_importfilebase_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -405683,27 +455428,27 @@ false systemuserid systemuser - lk_msdyn_aiconfiguration_createdonbehalfby - createdonbehalfby - msdyn_aiconfiguration - createdonbehalfby + lk_importfilebase_createdby + createdby + importfile + createdby 0 - 45968f90-beba-f011-bbd3-7c1e52365f30 + d958b898-b644-4ac6-937c-b2f79493f7e0 false - true + false iscustomizable false - false - true - lk_msdyn_aiconfiguration_modifiedby + true + false + lk_integrationstatus_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -405737,27 +455482,27 @@ false systemuserid systemuser - lk_msdyn_aiconfiguration_modifiedby - modifiedby - msdyn_aiconfiguration - modifiedby + lk_integrationstatus_modifiedonbehalfby + modifiedonbehalfby + integrationstatus + modifiedonbehalfby 0 - 4b968f90-beba-f011-bbd3-7c1e52365f30 + 2b7ac098-bf63-423a-82ba-c7b4de8bfc60 false - true + false iscustomizable - true + false - false - true - lk_msdyn_aiconfiguration_modifiedonbehalfby + true + false + lk_applicationfile_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -405791,27 +455536,27 @@ false systemuserid systemuser - lk_msdyn_aiconfiguration_modifiedonbehalfby + lk_applicationfile_modifiedonbehalfby modifiedonbehalfby - msdyn_aiconfiguration + applicationfile modifiedonbehalfby 0 - 2e998f90-beba-f011-bbd3-7c1e52365f30 + 3c59c398-f460-443e-94f9-2ba1e582b4ae false - true + false iscustomizable - false + true - false + true true - lk_msdyn_aiconfigurationsearch_createdby + lk_socialactivitybase_createdonbehalfby None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -405845,27 +455590,27 @@ false systemuserid systemuser - lk_msdyn_aiconfigurationsearch_createdby - createdby - msdyn_aiconfigurationsearch - createdby + lk_socialactivitybase_createdonbehalfby + createdonbehalfby + socialactivity + createdonbehalfby_socialactivity 0 - 3a998f90-beba-f011-bbd3-7c1e52365f30 + 953a0299-fe0f-42cf-9ab0-4b3885620120 false - true + false iscustomizable true - false + true true - lk_msdyn_aiconfigurationsearch_createdonbehalfby + lk_systemuserbase_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -405899,30 +455644,30 @@ false systemuserid systemuser - lk_msdyn_aiconfigurationsearch_createdonbehalfby - createdonbehalfby - msdyn_aiconfigurationsearch - createdonbehalfby + lk_systemuserbase_modifiedby + modifiedby + systemuser + modifiedby 0 - 40998f90-beba-f011-bbd3-7c1e52365f30 + 8d0c2b99-3d7c-41ad-9911-952b176e8a18 false - true + false iscustomizable - false + true - false + true true - lk_msdyn_aiconfigurationsearch_modifiedby + lk_appconfiginstance_modifiedby None - 1.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -405953,27 +455698,27 @@ false systemuserid systemuser - lk_msdyn_aiconfigurationsearch_modifiedby + systemuser_appconfiginstance_modifiedby modifiedby - msdyn_aiconfigurationsearch - modifiedby + appconfiginstance + appconfiginstance_modifiedby 0 - 46998f90-beba-f011-bbd3-7c1e52365f30 + 0397d599-6881-48ae-ad92-27d6937e3e49 false - true + false iscustomizable true - false + true true - lk_msdyn_aiconfigurationsearch_modifiedonbehalfby + lk_newprocess_createdby None - 1.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -406007,27 +455752,27 @@ false systemuserid systemuser - lk_msdyn_aiconfigurationsearch_modifiedonbehalfby - modifiedonbehalfby - msdyn_aiconfigurationsearch - modifiedonbehalfby + lk_newprocess_createdby + createdby + newprocess + createdbyname 0 - 58998f90-beba-f011-bbd3-7c1e52365f30 + 0394329a-d99e-4892-b35b-68499e71473f false - true + false iscustomizable - false + true - false + true true - user_msdyn_aiconfigurationsearch + lk_phonecall_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -406061,27 +455806,27 @@ false systemuserid systemuser - user_msdyn_aiconfigurationsearch - owninguser - msdyn_aiconfigurationsearch - owninguser + lk_phonecall_createdonbehalfby + createdonbehalfby + phonecall + createdonbehalfby_phonecall 0 - 859b8f90-beba-f011-bbd3-7c1e52365f30 + 30e3529a-80af-4582-81b0-6c6dcb363451 false - true + false iscustomizable true - false + true true - lk_msdyn_aidataprocessingevent_createdby + lk_slakpiinstancebase_modifiedby None - 1.0 + 7.0.0.0 OneToManyRelationship DoNotDisplay @@ -406115,27 +455860,27 @@ false systemuserid systemuser - lk_msdyn_aidataprocessingevent_createdby - createdby - msdyn_aidataprocessingevent - createdby + lk_slakpiinstancebase_modifiedby + modifiedby + slakpiinstance + modifiedby 0 - 8b9b8f90-beba-f011-bbd3-7c1e52365f30 + 18bd829a-ea4d-464b-884a-f2be12b6dfa8 false - true + false iscustomizable true - false + true true - lk_msdyn_aidataprocessingevent_createdonbehalfby + lk_letter_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -406169,27 +455914,27 @@ false systemuserid systemuser - lk_msdyn_aidataprocessingevent_createdonbehalfby - createdonbehalfby - msdyn_aidataprocessingevent - createdonbehalfby + lk_letter_createdby + createdby + letter + createdby_letter 0 - 919b8f90-beba-f011-bbd3-7c1e52365f30 + 08b9849a-6218-4128-b7df-c69d25f6344d false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aidataprocessingevent_modifiedby + lk_emailsignaturebase_modifiedby None - 1.0 + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -406223,27 +455968,27 @@ false systemuserid systemuser - lk_msdyn_aidataprocessingevent_modifiedby + lk_emailsignaturebase_modifiedby modifiedby - msdyn_aidataprocessingevent + emailsignature modifiedby 0 - 979b8f90-beba-f011-bbd3-7c1e52365f30 + 2c5a989a-7c0b-4cf1-abb9-36d449942e28 false - true + false iscustomizable true - false + true true - lk_msdyn_aidataprocessingevent_modifiedonbehalfby + user_untrackedemail None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -406277,27 +456022,27 @@ false systemuserid systemuser - lk_msdyn_aidataprocessingevent_modifiedonbehalfby - modifiedonbehalfby - msdyn_aidataprocessingevent - modifiedonbehalfby + user_untrackedemail + owninguser + untrackedemail + owninguser_untrackedemail 0 - a99b8f90-beba-f011-bbd3-7c1e52365f30 + 34a0e69a-d0b7-4dd4-913c-22f6d44630ae false - true + false iscustomizable - true + false - false - true - user_msdyn_aidataprocessingevent + true + false + createdby_plugintracelog None - 1.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -406331,27 +456076,27 @@ false systemuserid systemuser - user_msdyn_aidataprocessingevent - owninguser - msdyn_aidataprocessingevent - owninguser + createdby_plugintracelog + createdby + plugintracelog + createdby 0 - 23588996-beba-f011-bbd3-7c1e52365f30 + 1e1a059b-d005-410a-8b12-558e3a757955 false - true + false iscustomizable - true + false - false - true - lk_msdyn_aidocumenttemplate_createdby + true + false + lk_columnmapping_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -406385,27 +456130,27 @@ false systemuserid systemuser - lk_msdyn_aidocumenttemplate_createdby + lk_columnmapping_createdby createdby - msdyn_aidocumenttemplate + columnmapping createdby 0 - 29588996-beba-f011-bbd3-7c1e52365f30 + 39af169b-2833-44e9-8d63-aec11ba4038c false - true + false iscustomizable - true + false - false - true - lk_msdyn_aidocumenttemplate_createdonbehalfby + true + false + lk_sdkmessagepair_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -406439,27 +456184,27 @@ false systemuserid systemuser - lk_msdyn_aidocumenttemplate_createdonbehalfby - createdonbehalfby - msdyn_aidocumenttemplate - createdonbehalfby + lk_sdkmessagepair_modifiedonbehalfby + modifiedonbehalfby + sdkmessagepair + modifiedonbehalfby 0 - 2f588996-beba-f011-bbd3-7c1e52365f30 + 7e3ea29b-d426-48c2-b973-f090ea827e76 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aidocumenttemplate_modifiedby + lk_actioncardbase_modifiedby None - 1.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -406493,27 +456238,27 @@ false systemuserid systemuser - lk_msdyn_aidocumenttemplate_modifiedby + lk_actioncardbase_modifiedby modifiedby - msdyn_aidocumenttemplate + actioncard modifiedby 0 - 35588996-beba-f011-bbd3-7c1e52365f30 + db38eb9b-1b95-44a4-8db6-8f31711c939d false - true + false iscustomizable true - false + true true - lk_msdyn_aidocumenttemplate_modifiedonbehalfby + lk_task_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -406547,27 +456292,27 @@ false systemuserid systemuser - lk_msdyn_aidocumenttemplate_modifiedonbehalfby - modifiedonbehalfby - msdyn_aidocumenttemplate - modifiedonbehalfby + lk_task_createdby + createdby + task + createdby_task 0 - 47588996-beba-f011-bbd3-7c1e52365f30 + 6ba8039c-e79e-448a-aac0-8d1b3b6d3804 false - true + false iscustomizable false - false + true true - user_msdyn_aidocumenttemplate + lk_reportvisibilitybase_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -406601,27 +456346,27 @@ false systemuserid systemuser - user_msdyn_aidocumenttemplate - owninguser - msdyn_aidocumenttemplate - owninguser + lk_reportvisibilitybase_createdby + createdby + reportvisibility + createdby 0 - b25a8996-beba-f011-bbd3-7c1e52365f30 + 7b19249c-460b-4894-9899-8c9656ebc713 false - true + false iscustomizable - true + false - false - true - lk_msdyn_aievent_createdby + true + false + lk_transformationmapping_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -406655,27 +456400,27 @@ false systemuserid systemuser - lk_msdyn_aievent_createdby + lk_transformationmapping_createdby createdby - msdyn_aievent + transformationmapping createdby 0 - bf5a8996-beba-f011-bbd3-7c1e52365f30 + 1656409c-a71d-4bdf-9d8e-b10ef0cf71f0 false - true + false iscustomizable - true + false - false - true - lk_msdyn_aievent_createdonbehalfby + true + false + lk_annualfiscalcalendar_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -406709,27 +456454,27 @@ false systemuserid systemuser - lk_msdyn_aievent_createdonbehalfby + lk_annualfiscalcalendar_createdonbehalfby createdonbehalfby - msdyn_aievent + annualfiscalcalendar createdonbehalfby 0 - c85a8996-beba-f011-bbd3-7c1e52365f30 + e23e529c-9b96-4b22-ba80-7bfc35c7af77 false - true + false iscustomizable - true + false - false - true - lk_msdyn_aievent_modifiedby + true + false + lk_transformationmapping_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -406763,27 +456508,27 @@ false systemuserid systemuser - lk_msdyn_aievent_modifiedby - modifiedby - msdyn_aievent - modifiedby + lk_transformationmapping_modifiedonbehalfby + modifiedonbehalfby + transformationmapping + modifiedonbehalfby 0 - ce5a8996-beba-f011-bbd3-7c1e52365f30 + 982f159d-54b3-436d-b119-fde01880a2d5 false - true + false iscustomizable - true + false - false - true - lk_msdyn_aievent_modifiedonbehalfby + true + false + lk_duplicaterulebase_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -406817,27 +456562,27 @@ false systemuserid systemuser - lk_msdyn_aievent_modifiedonbehalfby - modifiedonbehalfby - msdyn_aievent - modifiedonbehalfby + lk_duplicaterulebase_createdby + createdby + duplicaterule + createdby 0 - e05a8996-beba-f011-bbd3-7c1e52365f30 + 8be02a9d-0776-4c76-b35f-1c92dd791d9e false - true + false iscustomizable true - false + true true - user_msdyn_aievent + lk_accountbase_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -406871,30 +456616,30 @@ false systemuserid systemuser - user_msdyn_aievent - owninguser - msdyn_aievent - owninguser + lk_accountbase_modifiedby + modifiedby + account + modifiedby 0 - d85c8996-beba-f011-bbd3-7c1e52365f30 + c839519d-d2e8-4223-9b74-d45253bd73a7 false - true + false iscustomizable false - false + true true - lk_msdyn_aimodel_createdby + lk_authorizationserver_createdby None - 1.0.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -406925,30 +456670,30 @@ false systemuserid systemuser - lk_msdyn_aimodel_createdby + lk_authorizationserver_createdby createdby - msdyn_aimodel + authorizationserver createdby 0 - de5c8996-beba-f011-bbd3-7c1e52365f30 + 65da6b9d-8419-e411-8e13-0024e8412450 false - true + false iscustomizable true - false + true true - lk_msdyn_aimodel_createdonbehalfby + lk_KnowledgeBaseRecord_createdby None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -406979,30 +456724,84 @@ false systemuserid systemuser - lk_msdyn_aimodel_createdonbehalfby + lk_KnowledgeBaseRecord_createdby + createdby + knowledgebaserecord + createdby + + 0 + + + 6bda6b9d-8419-e411-8e13-0024e8412450 + + false + + false + iscustomizable + true + + true + true + lk_KnowledgeBaseRecord_createdonbehalfby + None + 7.1.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_KnowledgeBaseRecord_createdonbehalfby createdonbehalfby - msdyn_aimodel + knowledgebaserecord createdonbehalfby 0 - e45c8996-beba-f011-bbd3-7c1e52365f30 + 71da6b9d-8419-e411-8e13-0024e8412450 false - true + false iscustomizable - false + true - false + true true - lk_msdyn_aimodel_modifiedby + lk_KnowledgeBaseRecord_modifiedby None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -407033,30 +456832,30 @@ false systemuserid systemuser - lk_msdyn_aimodel_modifiedby + lk_KnowledgeBaseRecord_modifiedby modifiedby - msdyn_aimodel + knowledgebaserecord modifiedby 0 - ea5c8996-beba-f011-bbd3-7c1e52365f30 + 77da6b9d-8419-e411-8e13-0024e8412450 false - true + false iscustomizable true - false + true true - lk_msdyn_aimodel_modifiedonbehalfby + lk_KnowledgeBaseRecord_modifiedonbehalfby None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -407087,27 +456886,27 @@ false systemuserid systemuser - lk_msdyn_aimodel_modifiedonbehalfby + lk_KnowledgeBaseRecord_modifiedonbehalfby modifiedonbehalfby - msdyn_aimodel + knowledgebaserecord modifiedonbehalfby 0 - fc5c8996-beba-f011-bbd3-7c1e52365f30 + 3921d59d-f66d-4dea-a4c1-f71556a995f7 false - true + false iscustomizable false - false - true - user_msdyn_aimodel + true + false + lk_sdkmessageprocessingstepsecureconfig_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -407141,15 +456940,15 @@ false systemuserid systemuser - user_msdyn_aimodel - owninguser - msdyn_aimodel - owninguser + lk_sdkmessageprocessingstepsecureconfig_createdonbehalfby + createdonbehalfby + sdkmessageprocessingstepsecureconfig + createdonbehalfby 0 - bb5e8996-beba-f011-bbd3-7c1e52365f30 + 0836d99d-beba-f011-bbd3-7c1e52365f30 false @@ -407159,9 +456958,9 @@ false true - lk_msdyn_aimodelcatalog_createdby + lk_msdyn_aitemplate_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -407195,15 +456994,15 @@ false systemuserid systemuser - lk_msdyn_aimodelcatalog_createdby + lk_msdyn_aitemplate_createdby createdby - msdyn_aimodelcatalog + msdyn_aitemplate createdby 0 - c15e8996-beba-f011-bbd3-7c1e52365f30 + 1236d99d-beba-f011-bbd3-7c1e52365f30 false @@ -407213,9 +457012,9 @@ false true - lk_msdyn_aimodelcatalog_createdonbehalfby + lk_msdyn_aitemplate_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -407249,15 +457048,15 @@ false systemuserid systemuser - lk_msdyn_aimodelcatalog_createdonbehalfby + lk_msdyn_aitemplate_createdonbehalfby createdonbehalfby - msdyn_aimodelcatalog + msdyn_aitemplate createdonbehalfby 0 - c75e8996-beba-f011-bbd3-7c1e52365f30 + 1c36d99d-beba-f011-bbd3-7c1e52365f30 false @@ -407267,9 +457066,9 @@ false true - lk_msdyn_aimodelcatalog_modifiedby + lk_msdyn_aitemplate_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -407303,15 +457102,15 @@ false systemuserid systemuser - lk_msdyn_aimodelcatalog_modifiedby + lk_msdyn_aitemplate_modifiedby modifiedby - msdyn_aimodelcatalog + msdyn_aitemplate modifiedby 0 - cd5e8996-beba-f011-bbd3-7c1e52365f30 + 2536d99d-beba-f011-bbd3-7c1e52365f30 false @@ -407321,9 +457120,9 @@ false true - lk_msdyn_aimodelcatalog_modifiedonbehalfby + lk_msdyn_aitemplate_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -407357,15 +457156,15 @@ false systemuserid systemuser - lk_msdyn_aimodelcatalog_modifiedonbehalfby + lk_msdyn_aitemplate_modifiedonbehalfby modifiedonbehalfby - msdyn_aimodelcatalog + msdyn_aitemplate modifiedonbehalfby 0 - df5e8996-beba-f011-bbd3-7c1e52365f30 + 3736d99d-beba-f011-bbd3-7c1e52365f30 false @@ -407375,9 +457174,9 @@ false true - user_msdyn_aimodelcatalog + user_msdyn_aitemplate None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -407411,25 +457210,79 @@ false systemuserid systemuser - user_msdyn_aimodelcatalog + user_msdyn_aitemplate owninguser - msdyn_aimodelcatalog + msdyn_aitemplate owninguser 0 - 0836d99d-beba-f011-bbd3-7c1e52365f30 + 0702199e-f456-4d89-8c29-3595863b9318 false - true + false iscustomizable false + true + false + lk_importlogbase_createdby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_importlogbase_createdby + createdby + importlog + createdby + + 0 + + + 21b63d9e-e0ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + false true - lk_msdyn_aitemplate_createdby + lk_card_createdby None 1.0.0.0 OneToManyRelationship @@ -407465,15 +457318,15 @@ false systemuserid systemuser - lk_msdyn_aitemplate_createdby + lk_card_createdby createdby - msdyn_aitemplate + card createdby 0 - 1236d99d-beba-f011-bbd3-7c1e52365f30 + 27b63d9e-e0ba-f011-bbd3-7c1e52365f30 false @@ -407483,7 +457336,7 @@ false true - lk_msdyn_aitemplate_createdonbehalfby + lk_card_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -407519,25 +457372,25 @@ false systemuserid systemuser - lk_msdyn_aitemplate_createdonbehalfby + lk_card_createdonbehalfby createdonbehalfby - msdyn_aitemplate + card createdonbehalfby 0 - 1c36d99d-beba-f011-bbd3-7c1e52365f30 + 2db63d9e-e0ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_aitemplate_modifiedby + lk_card_modifiedby None 1.0.0.0 OneToManyRelationship @@ -407573,15 +457426,15 @@ false systemuserid systemuser - lk_msdyn_aitemplate_modifiedby + lk_card_modifiedby modifiedby - msdyn_aitemplate + card modifiedby 0 - 2536d99d-beba-f011-bbd3-7c1e52365f30 + 33b63d9e-e0ba-f011-bbd3-7c1e52365f30 false @@ -407591,7 +457444,7 @@ false true - lk_msdyn_aitemplate_modifiedonbehalfby + lk_card_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -407627,25 +457480,25 @@ false systemuserid systemuser - lk_msdyn_aitemplate_modifiedonbehalfby + lk_card_modifiedonbehalfby modifiedonbehalfby - msdyn_aitemplate + card modifiedonbehalfby 0 - 3736d99d-beba-f011-bbd3-7c1e52365f30 + 45b63d9e-e0ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_aitemplate + user_card None 1.0.0.0 OneToManyRelationship @@ -407681,15 +457534,69 @@ false systemuserid systemuser - user_msdyn_aitemplate + user_card owninguser - msdyn_aitemplate + card owninguser 0 - 9290b11f-bfba-f011-bbd3-7c1e52365f30 + eed4e49e-2ebe-49bf-97f9-be5d3b814f86 + + false + + false + iscustomizable + true + + true + true + lk_task_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_task_createdonbehalfby + createdonbehalfby + task + createdonbehalfby_task + + 0 + + + 07a3ec9f-baba-f011-bbd3-7c1e52365f30 false @@ -407699,9 +457606,9 @@ false true - lk_msdyn_aibfeedbackloop_createdby + lk_workflowbinary_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -407735,27 +457642,27 @@ false systemuserid systemuser - lk_msdyn_aibfeedbackloop_createdby + lk_workflowbinary_createdby createdby - msdyn_aibfeedbackloop + workflowbinary createdby 0 - 9890b11f-bfba-f011-bbd3-7c1e52365f30 + 0da3ec9f-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_aibfeedbackloop_createdonbehalfby + lk_workflowbinary_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -407789,15 +457696,15 @@ false systemuserid systemuser - lk_msdyn_aibfeedbackloop_createdonbehalfby + lk_workflowbinary_createdonbehalfby createdonbehalfby - msdyn_aibfeedbackloop + workflowbinary createdonbehalfby 0 - 9e90b11f-bfba-f011-bbd3-7c1e52365f30 + 13a3ec9f-baba-f011-bbd3-7c1e52365f30 false @@ -407807,9 +457714,9 @@ false true - lk_msdyn_aibfeedbackloop_modifiedby + lk_workflowbinary_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -407843,27 +457750,27 @@ false systemuserid systemuser - lk_msdyn_aibfeedbackloop_modifiedby + lk_workflowbinary_modifiedby modifiedby - msdyn_aibfeedbackloop + workflowbinary modifiedby 0 - a490b11f-bfba-f011-bbd3-7c1e52365f30 + 19a3ec9f-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_aibfeedbackloop_modifiedonbehalfby + lk_workflowbinary_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -407897,15 +457804,15 @@ false systemuserid systemuser - lk_msdyn_aibfeedbackloop_modifiedonbehalfby + lk_workflowbinary_modifiedonbehalfby modifiedonbehalfby - msdyn_aibfeedbackloop + workflowbinary modifiedonbehalfby 0 - b690b11f-bfba-f011-bbd3-7c1e52365f30 + 2ba3ec9f-baba-f011-bbd3-7c1e52365f30 false @@ -407915,9 +457822,9 @@ false true - user_msdyn_aibfeedbackloop + user_workflowbinary None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -407951,27 +457858,27 @@ false systemuserid systemuser - user_msdyn_aibfeedbackloop + user_workflowbinary owninguser - msdyn_aibfeedbackloop + workflowbinary owninguser 0 - 98186d44-bfba-f011-bbd3-7c1e52365f30 + 850ff99f-c1f9-4a1e-ad54-8ff532431440 false - true + false iscustomizable false - false - true - lk_msdyn_aifptrainingdocument_createdby + true + false + lk_duplicaterulecondition_modifiedonbehalfby None - 0.0.0.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -408005,30 +457912,30 @@ false systemuserid systemuser - lk_msdyn_aifptrainingdocument_createdby - createdby - msdyn_aifptrainingdocument - createdby + lk_duplicaterulecondition_modifiedonbehalfby + modifiedonbehalfby + duplicaterulecondition + modifiedonbehalfby 0 - a0186d44-bfba-f011-bbd3-7c1e52365f30 + 152afc9f-4c8c-48d8-99b0-0a02954a2a4d false - true + false iscustomizable - true + false - false - true - lk_msdyn_aifptrainingdocument_createdonbehalfby + true + false + lk_knowledgesearchmodel_createdby None - 0.0.0.1 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -408059,27 +457966,27 @@ false systemuserid systemuser - lk_msdyn_aifptrainingdocument_createdonbehalfby - createdonbehalfby - msdyn_aifptrainingdocument - createdonbehalfby + lk_knowledgesearchmodel_createdby + createdby + knowledgesearchmodel + createdby 0 - a7186d44-bfba-f011-bbd3-7c1e52365f30 + 893b41a0-3d1e-471b-9926-78663529daeb false - true + false iscustomizable false - false + true true - lk_msdyn_aifptrainingdocument_modifiedby + lk_subject_createdonbehalfby None - 0.0.0.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -408113,27 +458020,27 @@ false systemuserid systemuser - lk_msdyn_aifptrainingdocument_modifiedby - modifiedby - msdyn_aifptrainingdocument - modifiedby + lk_subject_createdonbehalfby + createdonbehalfby + subject + createdonbehalfby 0 - ad186d44-bfba-f011-bbd3-7c1e52365f30 + cbb768a0-ad0f-44ac-a222-980e593bc149 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aifptrainingdocument_modifiedonbehalfby + lk_annotationbase_createdonbehalfby None - 0.0.0.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -408167,27 +458074,27 @@ false systemuserid systemuser - lk_msdyn_aifptrainingdocument_modifiedonbehalfby - modifiedonbehalfby - msdyn_aifptrainingdocument - modifiedonbehalfby + lk_annotationbase_createdonbehalfby + createdonbehalfby + annotation + createdonbehalfby 0 - bf186d44-bfba-f011-bbd3-7c1e52365f30 + 124375a0-9531-f111-88b4-002248a0fb54 false true iscustomizable - false + true false true - user_msdyn_aifptrainingdocument + lk_msdyn_harvesteligibilitycondition_createdby None - 0.0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -408221,27 +458128,27 @@ false systemuserid systemuser - user_msdyn_aifptrainingdocument - owninguser - msdyn_aifptrainingdocument - owninguser + lk_msdyn_harvesteligibilitycondition_createdby + createdby + msdyn_harvesteligibilitycondition + createdby 0 - b6196d44-bfba-f011-bbd3-7c1e52365f30 + 184375a0-9531-f111-88b4-002248a0fb54 false true iscustomizable - false + true false true - lk_msdyn_aiodimage_createdby + lk_msdyn_harvesteligibilitycondition_createdonbehalfby None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -408275,15 +458182,15 @@ false systemuserid systemuser - lk_msdyn_aiodimage_createdby - createdby - msdyn_aiodimage - createdby + lk_msdyn_harvesteligibilitycondition_createdonbehalfby + createdonbehalfby + msdyn_harvesteligibilitycondition + createdonbehalfby 0 - c0196d44-bfba-f011-bbd3-7c1e52365f30 + 1e4375a0-9531-f111-88b4-002248a0fb54 false @@ -408293,9 +458200,9 @@ false true - lk_msdyn_aiodimage_createdonbehalfby + lk_msdyn_harvesteligibilitycondition_modifiedby None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -408329,27 +458236,27 @@ false systemuserid systemuser - lk_msdyn_aiodimage_createdonbehalfby - createdonbehalfby - msdyn_aiodimage - createdonbehalfby + lk_msdyn_harvesteligibilitycondition_modifiedby + modifiedby + msdyn_harvesteligibilitycondition + modifiedby 0 - c8196d44-bfba-f011-bbd3-7c1e52365f30 + 244375a0-9531-f111-88b4-002248a0fb54 false true iscustomizable - false + true false true - lk_msdyn_aiodimage_modifiedby + lk_msdyn_harvesteligibilitycondition_modifiedonbehalfby None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -408383,15 +458290,15 @@ false systemuserid systemuser - lk_msdyn_aiodimage_modifiedby - modifiedby - msdyn_aiodimage - modifiedby + lk_msdyn_harvesteligibilitycondition_modifiedonbehalfby + modifiedonbehalfby + msdyn_harvesteligibilitycondition + modifiedonbehalfby 0 - d1196d44-bfba-f011-bbd3-7c1e52365f30 + 364375a0-9531-f111-88b4-002248a0fb54 false @@ -408401,9 +458308,9 @@ false true - lk_msdyn_aiodimage_modifiedonbehalfby + user_msdyn_harvesteligibilitycondition None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -408437,27 +458344,27 @@ false systemuserid systemuser - lk_msdyn_aiodimage_modifiedonbehalfby - modifiedonbehalfby - msdyn_aiodimage - modifiedonbehalfby + user_msdyn_harvesteligibilitycondition + owninguser + msdyn_harvesteligibilitycondition + owninguser 0 - e6196d44-bfba-f011-bbd3-7c1e52365f30 + 125078a0-d26c-4d00-9712-887002dd52aa false - true + false iscustomizable false - false - true - user_msdyn_aiodimage + true + false + lk_timezonelocalizedname_modifiedby None - 0.0.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -408491,30 +458398,30 @@ false systemuserid systemuser - user_msdyn_aiodimage - owninguser - msdyn_aiodimage - owninguser + lk_timezonelocalizedname_modifiedby + modifiedby + timezonelocalizedname + modifiedby 0 - 2d1b6d44-bfba-f011-bbd3-7c1e52365f30 + 2ea984a0-f513-df11-a16e-00155d7aa40d false - true + false iscustomizable false - false + true true - lk_msdyn_aiodlabel_createdby + lk_metric_createdby None - 0.0.1 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -408545,30 +458452,30 @@ false systemuserid systemuser - lk_msdyn_aiodlabel_createdby + lk_metric_createdby createdby - msdyn_aiodlabel + metric createdby 0 - 351b6d44-bfba-f011-bbd3-7c1e52365f30 + 32a984a0-f513-df11-a16e-00155d7aa40d false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aiodlabel_createdonbehalfby + lk_metric_createdonbehalfby None - 0.0.1 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -408599,30 +458506,30 @@ false systemuserid systemuser - lk_msdyn_aiodlabel_createdonbehalfby + lk_metric_createdonbehalfby createdonbehalfby - msdyn_aiodlabel + metric createdonbehalfby 0 - 3c1b6d44-bfba-f011-bbd3-7c1e52365f30 + 36a984a0-f513-df11-a16e-00155d7aa40d false - true + false iscustomizable false - false + true true - lk_msdyn_aiodlabel_modifiedby + lk_metric_modifiedby None - 0.0.1 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -408653,30 +458560,30 @@ false systemuserid systemuser - lk_msdyn_aiodlabel_modifiedby + lk_metric_modifiedby modifiedby - msdyn_aiodlabel + metric modifiedby 0 - 431b6d44-bfba-f011-bbd3-7c1e52365f30 + 3aa984a0-f513-df11-a16e-00155d7aa40d false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aiodlabel_modifiedonbehalfby + lk_metric_modifiedonbehalfby None - 0.0.1 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -408707,27 +458614,27 @@ false systemuserid systemuser - lk_msdyn_aiodlabel_modifiedonbehalfby + lk_metric_modifiedonbehalfby modifiedonbehalfby - msdyn_aiodlabel + metric modifiedonbehalfby 0 - 571b6d44-bfba-f011-bbd3-7c1e52365f30 + 3da8a6a0-d01a-4265-ab76-9a05af9d7f09 false - true + false iscustomizable - false + true - false + true true - user_msdyn_aiodlabel + lk_ribboncommand_createdonbehalfby None - 0.0.1 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -408761,81 +458668,27 @@ false systemuserid systemuser - user_msdyn_aiodlabel - owninguser - msdyn_aiodlabel - owninguser + lk_ribboncommand_createdonbehalfby + createdonbehalfby + ribboncommand + createdonbehalfby 0 - 441c6d44-bfba-f011-bbd3-7c1e52365f30 + 11401aa1-f89c-4287-bb4c-e8b5260190c3 false - true + false iscustomizable false - false - true - lk_msdyn_aiodtrainingboundingbox_createdby - None - 0.0.1 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_msdyn_aiodtrainingboundingbox_createdby - createdby - msdyn_aiodtrainingboundingbox - createdby - - 0 - - - 4a1c6d44-bfba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false + true true - lk_msdyn_aiodtrainingboundingbox_createdonbehalfby + lk_webresourcebase_modifiedonbehalfby None - 0.0.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -408869,30 +458722,30 @@ false systemuserid systemuser - lk_msdyn_aiodtrainingboundingbox_createdonbehalfby - createdonbehalfby - msdyn_aiodtrainingboundingbox - createdonbehalfby + lk_webresourcebase_modifiedonbehalfby + modifiedonbehalfby + webresource + modifiedonbehalfby 0 - 511c6d44-bfba-f011-bbd3-7c1e52365f30 + 0c732aa1-5a38-4f3a-ac9b-1f38500be0df false - true + false iscustomizable false - false + true true - lk_msdyn_aiodtrainingboundingbox_modifiedby + multientitysearch_modifiedby None - 0.0.1 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -408923,30 +458776,30 @@ false systemuserid systemuser - lk_msdyn_aiodtrainingboundingbox_modifiedby + multientitysearch_modifiedby modifiedby - msdyn_aiodtrainingboundingbox + multientitysearch modifiedby 0 - 571c6d44-bfba-f011-bbd3-7c1e52365f30 + 508359a1-a773-4452-97cc-57dc4d89a3ce false - true + false iscustomizable true - false + true true - lk_msdyn_aiodtrainingboundingbox_modifiedonbehalfby + lk_appconfig_modifiedby None - 0.0.1 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -408977,27 +458830,27 @@ false systemuserid systemuser - lk_msdyn_aiodtrainingboundingbox_modifiedonbehalfby - modifiedonbehalfby - msdyn_aiodtrainingboundingbox - modifiedonbehalfby + systemuser_appconfig_modifiedby + modifiedby + appconfig + appconfig_modifiedby 0 - 691c6d44-bfba-f011-bbd3-7c1e52365f30 + e31162a1-ee43-4fcc-97d9-1d7cb1a51f89 false - true + false iscustomizable - false + true - false + true true - user_msdyn_aiodtrainingboundingbox + lk_sharepointdocumentlocationbase_createdonbehalfby None - 0.0.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -409031,27 +458884,27 @@ false systemuserid systemuser - user_msdyn_aiodtrainingboundingbox - owninguser - msdyn_aiodtrainingboundingbox - owninguser + lk_sharepointdocumentlocationbase_createdonbehalfby + createdonbehalfby + sharepointdocumentlocation + createdonbehalfby 0 - f81d984a-bfba-f011-bbd3-7c1e52365f30 + 25397fa1-a03e-4310-988c-4c64224eed04 false - true + false iscustomizable false - false + true true - lk_msdyn_aiodtrainingimage_createdby + lk_reportlink_modifiedonbehalfby None - 0.0.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -409085,27 +458938,27 @@ false systemuserid systemuser - lk_msdyn_aiodtrainingimage_createdby - createdby - msdyn_aiodtrainingimage - createdby + lk_reportlink_modifiedonbehalfby + modifiedonbehalfby + reportlink + modifiedonbehalfby 0 - fe1d984a-bfba-f011-bbd3-7c1e52365f30 + a47b9ba1-b011-4861-ba8c-04cc4a77e131 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aiodtrainingimage_createdonbehalfby + lk_fieldsecurityprofile_createdonbehalfby None - 0.0.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -409139,27 +458992,27 @@ false systemuserid systemuser - lk_msdyn_aiodtrainingimage_createdonbehalfby + lk_fieldsecurityprofile_createdonbehalfby createdonbehalfby - msdyn_aiodtrainingimage + fieldsecurityprofile createdonbehalfby 0 - 041e984a-bfba-f011-bbd3-7c1e52365f30 + 38e3b0a1-a1a3-4c8d-bede-04190ba910b9 false - true + false iscustomizable false - false - true - lk_msdyn_aiodtrainingimage_modifiedby + true + false + SystemUser_ImportData None - 0.0.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -409193,15 +459046,15 @@ false systemuserid systemuser - lk_msdyn_aiodtrainingimage_modifiedby - modifiedby - msdyn_aiodtrainingimage - modifiedby + SystemUser_ImportData + owninguser + importdata + owninguser 0 - 0a1e984a-bfba-f011-bbd3-7c1e52365f30 + c3cc55a2-42bf-f011-bbd5-7ced8d470ac7 false @@ -409211,9 +459064,9 @@ false true - lk_msdyn_aiodtrainingimage_modifiedonbehalfby + lk_cpr_cprconfiguration_createdby None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -409247,27 +459100,27 @@ false systemuserid systemuser - lk_msdyn_aiodtrainingimage_modifiedonbehalfby - modifiedonbehalfby - msdyn_aiodtrainingimage - modifiedonbehalfby + lk_cpr_cprconfiguration_createdby + createdby + cpr_cprconfiguration + createdby 0 - 1c1e984a-bfba-f011-bbd3-7c1e52365f30 + c9cc55a2-42bf-f011-bbd5-7ced8d470ac7 false true iscustomizable - false + true false true - user_msdyn_aiodtrainingimage + lk_cpr_cprconfiguration_createdonbehalfby None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -409301,27 +459154,27 @@ false systemuserid systemuser - user_msdyn_aiodtrainingimage - owninguser - msdyn_aiodtrainingimage - owninguser + lk_cpr_cprconfiguration_createdonbehalfby + createdonbehalfby + cpr_cprconfiguration + createdonbehalfby 0 - bfa96771-bfba-f011-bbd3-7c1e52365f30 + d0cc55a2-42bf-f011-bbd5-7ced8d470ac7 false true iscustomizable - false + true false true - lk_msdyn_aibdataset_createdby + lk_cpr_cprconfiguration_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -409355,15 +459208,15 @@ false systemuserid systemuser - lk_msdyn_aibdataset_createdby - createdby - msdyn_aibdataset - createdby + lk_cpr_cprconfiguration_modifiedby + modifiedby + cpr_cprconfiguration + modifiedby 0 - c5a96771-bfba-f011-bbd3-7c1e52365f30 + d6cc55a2-42bf-f011-bbd5-7ced8d470ac7 false @@ -409373,9 +459226,9 @@ false true - lk_msdyn_aibdataset_createdonbehalfby + lk_cpr_cprconfiguration_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -409409,27 +459262,27 @@ false systemuserid systemuser - lk_msdyn_aibdataset_createdonbehalfby - createdonbehalfby - msdyn_aibdataset - createdonbehalfby + lk_cpr_cprconfiguration_modifiedonbehalfby + modifiedonbehalfby + cpr_cprconfiguration + modifiedonbehalfby 0 - cba96771-bfba-f011-bbd3-7c1e52365f30 + e9cc55a2-42bf-f011-bbd5-7ced8d470ac7 false true iscustomizable - false + true false true - lk_msdyn_aibdataset_modifiedby + user_cpr_cprconfiguration None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -409463,27 +459316,27 @@ false systemuserid systemuser - lk_msdyn_aibdataset_modifiedby - modifiedby - msdyn_aibdataset - modifiedby + user_cpr_cprconfiguration + owninguser + cpr_cprconfiguration + owninguser 0 - d1a96771-bfba-f011-bbd3-7c1e52365f30 + 13d596a2-7c9b-45ca-ac04-c9d57c4b8456 false - true + false iscustomizable - true + false - false - true - lk_msdyn_aibdataset_modifiedonbehalfby + true + false + lk_fixedmonthlyfiscalcalendar_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -409517,30 +459370,30 @@ false systemuserid systemuser - lk_msdyn_aibdataset_modifiedonbehalfby - modifiedonbehalfby - msdyn_aibdataset - modifiedonbehalfby + lk_fixedmonthlyfiscalcalendar_modifiedby + modifiedby + fixedmonthlyfiscalcalendar + modifiedby 0 - e3a96771-bfba-f011-bbd3-7c1e52365f30 + 4cbfcaa2-40fc-4bd9-8483-3def73a3c0cc false - true + false iscustomizable - false + true - false + true true - user_msdyn_aibdataset + lk_knowledgearticleviews_createdonbehalfby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -409571,15 +459424,15 @@ false systemuserid systemuser - user_msdyn_aibdataset - owninguser - msdyn_aibdataset - owninguser + lk_knowledgearticleviews_createdonbehalfby + createdonbehalfby + knowledgearticleviews + createdonbehalfby 0 - 94aa6771-bfba-f011-bbd3-7c1e52365f30 + 028216a3-c0ba-f011-bbd3-7c1e52365f30 false @@ -409589,9 +459442,9 @@ false true - lk_msdyn_aibdatasetfile_createdby + lk_msdynce_botcontent_createdby None - 1.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -409625,15 +459478,15 @@ false systemuserid systemuser - lk_msdyn_aibdatasetfile_createdby + lk_msdynce_botcontent_createdby createdby - msdyn_aibdatasetfile + msdynce_botcontent createdby 0 - 9aaa6771-bfba-f011-bbd3-7c1e52365f30 + 088216a3-c0ba-f011-bbd3-7c1e52365f30 false @@ -409643,9 +459496,9 @@ false true - lk_msdyn_aibdatasetfile_createdonbehalfby + lk_msdynce_botcontent_createdonbehalfby None - 1.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -409679,15 +459532,15 @@ false systemuserid systemuser - lk_msdyn_aibdatasetfile_createdonbehalfby + lk_msdynce_botcontent_createdonbehalfby createdonbehalfby - msdyn_aibdatasetfile + msdynce_botcontent createdonbehalfby 0 - a0aa6771-bfba-f011-bbd3-7c1e52365f30 + 0e8216a3-c0ba-f011-bbd3-7c1e52365f30 false @@ -409697,9 +459550,9 @@ false true - lk_msdyn_aibdatasetfile_modifiedby + lk_msdynce_botcontent_modifiedby None - 1.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -409733,15 +459586,15 @@ false systemuserid systemuser - lk_msdyn_aibdatasetfile_modifiedby + lk_msdynce_botcontent_modifiedby modifiedby - msdyn_aibdatasetfile + msdynce_botcontent modifiedby 0 - a6aa6771-bfba-f011-bbd3-7c1e52365f30 + 148216a3-c0ba-f011-bbd3-7c1e52365f30 false @@ -409751,9 +459604,9 @@ false true - lk_msdyn_aibdatasetfile_modifiedonbehalfby + lk_msdynce_botcontent_modifiedonbehalfby None - 1.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -409787,15 +459640,15 @@ false systemuserid systemuser - lk_msdyn_aibdatasetfile_modifiedonbehalfby + lk_msdynce_botcontent_modifiedonbehalfby modifiedonbehalfby - msdyn_aibdatasetfile + msdynce_botcontent modifiedonbehalfby 0 - b9aa6771-bfba-f011-bbd3-7c1e52365f30 + 268216a3-c0ba-f011-bbd3-7c1e52365f30 false @@ -409805,9 +459658,9 @@ false true - user_msdyn_aibdatasetfile + user_msdynce_botcontent None - 1.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -409841,27 +459694,81 @@ false systemuserid systemuser - user_msdyn_aibdatasetfile + user_msdynce_botcontent owninguser - msdyn_aibdatasetfile + msdynce_botcontent owninguser 0 - a0ab6771-bfba-f011-bbd3-7c1e52365f30 + ca7e45a3-37fe-4b14-90ba-1194f3b7ad83 false - true + false iscustomizable false - false + true true - lk_msdyn_aibdatasetrecord_createdby + lk_offlinecommanddefinition_modifiedonbehalfby None - 1.0.0.0 + 9.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_offlinecommanddefinition_modifiedonbehalfby + modifiedonbehalfby + offlinecommanddefinition + modifiedonbehalfby + + 0 + + + 174b65a3-9b3b-4729-8ea2-f06c97bdc2ab + + false + + false + iscustomizable + false + + true + false + SystemUser_DuplicateRules + None + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -409895,27 +459802,81 @@ false systemuserid systemuser - lk_msdyn_aibdatasetrecord_createdby - createdby - msdyn_aibdatasetrecord - createdby + SystemUser_DuplicateRules + owninguser + duplicaterule + owninguser 0 - a8ab6771-bfba-f011-bbd3-7c1e52365f30 + b1b980a3-5013-44a3-a35d-a9c4318af6af false - true + false iscustomizable - true + false - false - true - lk_msdyn_aibdatasetrecord_createdonbehalfby + true + false + lk_sdkmessagefilter_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_sdkmessagefilter_createdonbehalfby + createdonbehalfby + sdkmessagefilter + createdonbehalfby + + 0 + + + dd8ddda3-68e4-4bf0-b7da-6ffcc3d3717f + + false + + false + iscustomizable + false + + true + false + createdonbehalfby_attributemap + None + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -409949,27 +459910,27 @@ false systemuserid systemuser - lk_msdyn_aibdatasetrecord_createdonbehalfby + createdonbehalfby_attributemap createdonbehalfby - msdyn_aibdatasetrecord + attributemap createdonbehalfby 0 - b0ab6771-bfba-f011-bbd3-7c1e52365f30 + e75640a4-0171-44f1-bcf7-e47047a1aa08 false - true + false iscustomizable false - false - true - lk_msdyn_aibdatasetrecord_modifiedby + true + false + lk_DisplayStringbase_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -410003,15 +459964,15 @@ false systemuserid systemuser - lk_msdyn_aibdatasetrecord_modifiedby + lk_DisplayStringbase_modifiedby modifiedby - msdyn_aibdatasetrecord + displaystring modifiedby 0 - b8ab6771-bfba-f011-bbd3-7c1e52365f30 + 9cc271a4-e0ba-f011-bbd3-7c1e52365f30 false @@ -410021,7 +459982,7 @@ false true - lk_msdyn_aibdatasetrecord_modifiedonbehalfby + lk_cardstateitem_createdby None 1.0.0.0 OneToManyRelationship @@ -410057,25 +460018,25 @@ false systemuserid systemuser - lk_msdyn_aibdatasetrecord_modifiedonbehalfby - modifiedonbehalfby - msdyn_aibdatasetrecord - modifiedonbehalfby + lk_cardstateitem_createdby + createdby + cardstateitem + createdby 0 - ccab6771-bfba-f011-bbd3-7c1e52365f30 + a2c271a4-e0ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_aibdatasetrecord + lk_cardstateitem_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -410111,25 +460072,25 @@ false systemuserid systemuser - user_msdyn_aibdatasetrecord - owninguser - msdyn_aibdatasetrecord - owninguser + lk_cardstateitem_createdonbehalfby + createdonbehalfby + cardstateitem + createdonbehalfby 0 - d4ac6771-bfba-f011-bbd3-7c1e52365f30 + a8c271a4-e0ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_aibdatasetscontainer_createdby + lk_cardstateitem_modifiedby None 1.0.0.0 OneToManyRelationship @@ -410165,15 +460126,15 @@ false systemuserid systemuser - lk_msdyn_aibdatasetscontainer_createdby - createdby - msdyn_aibdatasetscontainer - createdby + lk_cardstateitem_modifiedby + modifiedby + cardstateitem + modifiedby 0 - dcac6771-bfba-f011-bbd3-7c1e52365f30 + aec271a4-e0ba-f011-bbd3-7c1e52365f30 false @@ -410183,7 +460144,7 @@ false true - lk_msdyn_aibdatasetscontainer_createdonbehalfby + lk_cardstateitem_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -410219,27 +460180,27 @@ false systemuserid systemuser - lk_msdyn_aibdatasetscontainer_createdonbehalfby - createdonbehalfby - msdyn_aibdatasetscontainer - createdonbehalfby + lk_cardstateitem_modifiedonbehalfby + modifiedonbehalfby + cardstateitem + modifiedonbehalfby 0 - e3ac6771-bfba-f011-bbd3-7c1e52365f30 + 4b0da5a4-14c9-4358-8f41-f24906bab556 false - true + false iscustomizable false - false - true - lk_msdyn_aibdatasetscontainer_modifiedby + true + false + lk_savedqueryvisualizationbase_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -410273,27 +460234,27 @@ false systemuserid systemuser - lk_msdyn_aibdatasetscontainer_modifiedby + lk_savedqueryvisualizationbase_modifiedby modifiedby - msdyn_aibdatasetscontainer + savedqueryvisualization modifiedby 0 - eaac6771-bfba-f011-bbd3-7c1e52365f30 + d577aca4-433c-4e68-9271-3fa501b6f12f false - true + false iscustomizable - true + false - false - true - lk_msdyn_aibdatasetscontainer_modifiedonbehalfby + true + false + lk_wizardaccessprivilege_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -410327,25 +460288,25 @@ false systemuserid systemuser - lk_msdyn_aibdatasetscontainer_modifiedonbehalfby - modifiedonbehalfby - msdyn_aibdatasetscontainer - modifiedonbehalfby + lk_wizardaccessprivilege_createdonbehalfby + createdonbehalfby + wizardaccessprivilege + createdonbehalfby 0 - fdac6771-bfba-f011-bbd3-7c1e52365f30 + bb89b4a4-2f10-f111-8345-7c1e52216fd8 false true iscustomizable - false + true false true - user_msdyn_aibdatasetscontainer + lk_mcpresourcecontent_createdby None 1.0.0.0 OneToManyRelationship @@ -410381,25 +460342,25 @@ false systemuserid systemuser - user_msdyn_aibdatasetscontainer - owninguser - msdyn_aibdatasetscontainer - owninguser + lk_mcpresourcecontent_createdby + createdby + mcpresourcecontent + createdby 0 - 22246577-bfba-f011-bbd3-7c1e52365f30 + c189b4a4-2f10-f111-8345-7c1e52216fd8 false true iscustomizable - false + true false true - lk_msdyn_aibfile_createdby + lk_mcpresourcecontent_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -410435,15 +460396,15 @@ false systemuserid systemuser - lk_msdyn_aibfile_createdby - createdby - msdyn_aibfile - createdby + lk_mcpresourcecontent_createdonbehalfby + createdonbehalfby + mcpresourcecontent + createdonbehalfby 0 - 28246577-bfba-f011-bbd3-7c1e52365f30 + c789b4a4-2f10-f111-8345-7c1e52216fd8 false @@ -410453,7 +460414,7 @@ false true - lk_msdyn_aibfile_createdonbehalfby + lk_mcpresourcecontent_modifiedby None 1.0.0.0 OneToManyRelationship @@ -410489,25 +460450,25 @@ false systemuserid systemuser - lk_msdyn_aibfile_createdonbehalfby - createdonbehalfby - msdyn_aibfile - createdonbehalfby + lk_mcpresourcecontent_modifiedby + modifiedby + mcpresourcecontent + modifiedby 0 - 2e246577-bfba-f011-bbd3-7c1e52365f30 + cd89b4a4-2f10-f111-8345-7c1e52216fd8 false true iscustomizable - false + true false true - lk_msdyn_aibfile_modifiedby + lk_mcpresourcecontent_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -410543,15 +460504,15 @@ false systemuserid systemuser - lk_msdyn_aibfile_modifiedby - modifiedby - msdyn_aibfile - modifiedby + lk_mcpresourcecontent_modifiedonbehalfby + modifiedonbehalfby + mcpresourcecontent + modifiedonbehalfby 0 - 34246577-bfba-f011-bbd3-7c1e52365f30 + e189b4a4-2f10-f111-8345-7c1e52216fd8 false @@ -410561,7 +460522,7 @@ false true - lk_msdyn_aibfile_modifiedonbehalfby + user_mcpresourcecontent None 1.0.0.0 OneToManyRelationship @@ -410597,27 +460558,27 @@ false systemuserid systemuser - lk_msdyn_aibfile_modifiedonbehalfby - modifiedonbehalfby - msdyn_aibfile - modifiedonbehalfby + user_mcpresourcecontent + owninguser + mcpresourcecontent + owninguser 0 - 46246577-bfba-f011-bbd3-7c1e52365f30 + 6686e7a4-84c4-433b-82f0-7151df5d8efd false - true + false iscustomizable false - false - true - user_msdyn_aibfile + true + false + lk_appmodulecomponent_createdonbehalfby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -410651,27 +460612,27 @@ false systemuserid systemuser - user_msdyn_aibfile - owninguser - msdyn_aibfile - owninguser + lk_appmodulecomponent_createdonbehalfby + createdonbehalfby + appmodulecomponent + createdonbehalfby 0 - f0246577-bfba-f011-bbd3-7c1e52365f30 + b6ea19a5-162c-4db1-92b8-4335401ccfa3 false - true + false iscustomizable false - false - true - lk_msdyn_aibfileattacheddata_createdby + true + false + lk_timezonedefinition_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -410705,27 +460666,27 @@ false systemuserid systemuser - lk_msdyn_aibfileattacheddata_createdby + lk_timezonedefinition_createdby createdby - msdyn_aibfileattacheddata + timezonedefinition createdby 0 - f6246577-bfba-f011-bbd3-7c1e52365f30 + 2ef6d4a5-70d5-4414-a869-cebf47db6363 false - true + false iscustomizable - true + false - false - true - lk_msdyn_aibfileattacheddata_createdonbehalfby + true + false + modifiedby_expanderevent None - 1.0.0.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -410759,27 +460720,27 @@ false systemuserid systemuser - lk_msdyn_aibfileattacheddata_createdonbehalfby - createdonbehalfby - msdyn_aibfileattacheddata - createdonbehalfby + modifiedby_expanderevent + modifiedby + expanderevent + modifiedby 0 - fc246577-bfba-f011-bbd3-7c1e52365f30 + 3d9d9ea6-d826-46c6-b5ab-5f4e021650ba false - true + false iscustomizable - false + true - false + true true - lk_msdyn_aibfileattacheddata_modifiedby + lk_contact_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -410813,27 +460774,27 @@ false systemuserid systemuser - lk_msdyn_aibfileattacheddata_modifiedby - modifiedby - msdyn_aibfileattacheddata - modifiedby + lk_contact_modifiedonbehalfby + modifiedonbehalfby + contact + modifiedonbehalfby 0 - 02256577-bfba-f011-bbd3-7c1e52365f30 + 0a69c7a6-b6bb-4ce0-b2ac-8df94ee5f147 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aibfileattacheddata_modifiedonbehalfby + lk_documenttemplatebase_modifiedby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -410867,15 +460828,15 @@ false systemuserid systemuser - lk_msdyn_aibfileattacheddata_modifiedonbehalfby - modifiedonbehalfby - msdyn_aibfileattacheddata - modifiedonbehalfby + lk_documenttemplatebase_modifiedby + modifiedby + documenttemplate + modifiedby 0 - 14256577-bfba-f011-bbd3-7c1e52365f30 + b903dda6-dbba-f011-bbd3-7c1e52365f30 false @@ -410885,9 +460846,9 @@ false true - user_msdyn_aibfileattacheddata + lk_appaction_createdby None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -410921,15 +460882,15 @@ false systemuserid systemuser - user_msdyn_aibfileattacheddata - owninguser - msdyn_aibfileattacheddata - owninguser + lk_appaction_createdby + createdby + appaction + createdby 0 - 0a8a5ce9-bfba-f011-bbd3-7c1e52365f30 + bf03dda6-dbba-f011-bbd3-7c1e52365f30 false @@ -410939,9 +460900,9 @@ false true - lk_msdyn_aievaluationconfiguration_createdby + lk_appaction_createdonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -410975,27 +460936,27 @@ false systemuserid systemuser - lk_msdyn_aievaluationconfiguration_createdby - createdby - msdyn_aievaluationconfiguration - createdby + lk_appaction_createdonbehalfby + createdonbehalfby + appaction + createdonbehalfby 0 - 108a5ce9-bfba-f011-bbd3-7c1e52365f30 + c503dda6-dbba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_aievaluationconfiguration_createdonbehalfby + lk_appaction_modifiedby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -411029,15 +460990,15 @@ false systemuserid systemuser - lk_msdyn_aievaluationconfiguration_createdonbehalfby - createdonbehalfby - msdyn_aievaluationconfiguration - createdonbehalfby + lk_appaction_modifiedby + modifiedby + appaction + modifiedby 0 - 168a5ce9-bfba-f011-bbd3-7c1e52365f30 + cb03dda6-dbba-f011-bbd3-7c1e52365f30 false @@ -411047,9 +461008,9 @@ false true - lk_msdyn_aievaluationconfiguration_modifiedby + lk_appaction_modifiedonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -411083,27 +461044,27 @@ false systemuserid systemuser - lk_msdyn_aievaluationconfiguration_modifiedby - modifiedby - msdyn_aievaluationconfiguration - modifiedby + lk_appaction_modifiedonbehalfby + modifiedonbehalfby + appaction + modifiedonbehalfby 0 - 1c8a5ce9-bfba-f011-bbd3-7c1e52365f30 + 8004dda6-dbba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_aievaluationconfiguration_modifiedonbehalfby + lk_appactionmigration_createdby None - 1.0 + 9.1.0.13 OneToManyRelationship DoNotDisplay @@ -411137,15 +461098,15 @@ false systemuserid systemuser - lk_msdyn_aievaluationconfiguration_modifiedonbehalfby - modifiedonbehalfby - msdyn_aievaluationconfiguration - modifiedonbehalfby + lk_appactionmigration_createdby + createdby + appactionmigration + createdby 0 - 2e8a5ce9-bfba-f011-bbd3-7c1e52365f30 + 8604dda6-dbba-f011-bbd3-7c1e52365f30 false @@ -411155,9 +461116,9 @@ false true - user_msdyn_aievaluationconfiguration + lk_appactionmigration_createdonbehalfby None - 1.0 + 9.1.0.13 OneToManyRelationship DoNotDisplay @@ -411191,27 +461152,27 @@ false systemuserid systemuser - user_msdyn_aievaluationconfiguration - owninguser - msdyn_aievaluationconfiguration - owninguser + lk_appactionmigration_createdonbehalfby + createdonbehalfby + appactionmigration + createdonbehalfby 0 - a48b5ce9-bfba-f011-bbd3-7c1e52365f30 + 8c04dda6-dbba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_aievaluationmetric_createdby + lk_appactionmigration_modifiedby None - 1.0 + 9.1.0.13 OneToManyRelationship DoNotDisplay @@ -411245,15 +461206,15 @@ false systemuserid systemuser - lk_msdyn_aievaluationmetric_createdby - createdby - msdyn_aievaluationmetric - createdby + lk_appactionmigration_modifiedby + modifiedby + appactionmigration + modifiedby 0 - aa8b5ce9-bfba-f011-bbd3-7c1e52365f30 + 9204dda6-dbba-f011-bbd3-7c1e52365f30 false @@ -411263,9 +461224,9 @@ false true - lk_msdyn_aievaluationmetric_createdonbehalfby + lk_appactionmigration_modifiedonbehalfby None - 1.0 + 9.1.0.13 OneToManyRelationship DoNotDisplay @@ -411299,27 +461260,27 @@ false systemuserid systemuser - lk_msdyn_aievaluationmetric_createdonbehalfby - createdonbehalfby - msdyn_aievaluationmetric - createdonbehalfby + lk_appactionmigration_modifiedonbehalfby + modifiedonbehalfby + appactionmigration + modifiedonbehalfby 0 - b08b5ce9-bfba-f011-bbd3-7c1e52365f30 + 5a999fa7-cf66-4e34-a903-89f446619400 false - true + false iscustomizable - true + false - false - true - lk_msdyn_aievaluationmetric_modifiedby + true + false + lk_importdata_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -411353,27 +461314,27 @@ false systemuserid systemuser - lk_msdyn_aievaluationmetric_modifiedby - modifiedby - msdyn_aievaluationmetric - modifiedby + lk_importdata_modifiedonbehalfby + modifiedonbehalfby + importdata + modifiedonbehalfby 0 - b68b5ce9-bfba-f011-bbd3-7c1e52365f30 + 1eefefa7-7063-4fbb-a2a3-0a466073d921 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aievaluationmetric_modifiedonbehalfby + lk_teamtemplate_createdby None - 1.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -411407,27 +461368,27 @@ false systemuserid systemuser - lk_msdyn_aievaluationmetric_modifiedonbehalfby - modifiedonbehalfby - msdyn_aievaluationmetric - modifiedonbehalfby + lk_teamtemplate_createdby + createdby + teamtemplate + createdby 0 - 2c8d5ce9-bfba-f011-bbd3-7c1e52365f30 + 824815a8-b7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_aievaluationrun_createdby + lk_canvasappextendedmetadata_createdby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -411461,15 +461422,15 @@ false systemuserid systemuser - lk_msdyn_aievaluationrun_createdby + lk_canvasappextendedmetadata_createdby createdby - msdyn_aievaluationrun + canvasappextendedmetadata createdby 0 - 328d5ce9-bfba-f011-bbd3-7c1e52365f30 + 884815a8-b7ba-f011-bbd3-7c1e52365f30 false @@ -411479,9 +461440,9 @@ false true - lk_msdyn_aievaluationrun_createdonbehalfby + lk_canvasappextendedmetadata_createdonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -411515,27 +461476,27 @@ false systemuserid systemuser - lk_msdyn_aievaluationrun_createdonbehalfby + lk_canvasappextendedmetadata_createdonbehalfby createdonbehalfby - msdyn_aievaluationrun + canvasappextendedmetadata createdonbehalfby 0 - 388d5ce9-bfba-f011-bbd3-7c1e52365f30 + 8e4815a8-b7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_aievaluationrun_modifiedby + lk_canvasappextendedmetadata_modifiedby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -411569,15 +461530,15 @@ false systemuserid systemuser - lk_msdyn_aievaluationrun_modifiedby + lk_canvasappextendedmetadata_modifiedby modifiedby - msdyn_aievaluationrun + canvasappextendedmetadata modifiedby 0 - 3e8d5ce9-bfba-f011-bbd3-7c1e52365f30 + 944815a8-b7ba-f011-bbd3-7c1e52365f30 false @@ -411587,9 +461548,9 @@ false true - lk_msdyn_aievaluationrun_modifiedonbehalfby + lk_canvasappextendedmetadata_modifiedonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -411623,27 +461584,27 @@ false systemuserid systemuser - lk_msdyn_aievaluationrun_modifiedonbehalfby + lk_canvasappextendedmetadata_modifiedonbehalfby modifiedonbehalfby - msdyn_aievaluationrun + canvasappextendedmetadata modifiedonbehalfby 0 - 508d5ce9-bfba-f011-bbd3-7c1e52365f30 + a64815a8-b7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_msdyn_aievaluationrun + user_canvasappextendedmetadata None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -411677,27 +461638,27 @@ false systemuserid systemuser - user_msdyn_aievaluationrun + user_canvasappextendedmetadata owninguser - msdyn_aievaluationrun + canvasappextendedmetadata owninguser 0 - 178f5ce9-bfba-f011-bbd3-7c1e52365f30 + 97c468a8-e7ab-4f94-99bd-4325619f1b6b false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aioptimization_createdby + lk_RoutingRuleItem_createdby None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -411731,25 +461692,25 @@ false systemuserid systemuser - lk_msdyn_aioptimization_createdby + lk_RoutingRuleItem_createdby createdby - msdyn_aioptimization + routingruleitem createdby 0 - 1d8f5ce9-bfba-f011-bbd3-7c1e52365f30 + e2f30fa9-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - lk_msdyn_aioptimization_createdonbehalfby + lk_agentfeeditem_createdby None 1.0 OneToManyRelationship @@ -411785,15 +461746,15 @@ false systemuserid systemuser - lk_msdyn_aioptimization_createdonbehalfby - createdonbehalfby - msdyn_aioptimization - createdonbehalfby + lk_agentfeeditem_createdby + createdby + agentfeeditem + createdby 0 - 238f5ce9-bfba-f011-bbd3-7c1e52365f30 + eaf30fa9-b6ea-f011-8409-000d3adc1cd9 false @@ -411803,7 +461764,7 @@ false true - lk_msdyn_aioptimization_modifiedby + lk_agentfeeditem_createdonbehalfby None 1.0 OneToManyRelationship @@ -411839,25 +461800,25 @@ false systemuserid systemuser - lk_msdyn_aioptimization_modifiedby - modifiedby - msdyn_aioptimization - modifiedby + lk_agentfeeditem_createdonbehalfby + createdonbehalfby + agentfeeditem + createdonbehalfby 0 - 298f5ce9-bfba-f011-bbd3-7c1e52365f30 + f0f30fa9-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - lk_msdyn_aioptimization_modifiedonbehalfby + lk_agentfeeditem_modifiedby None 1.0 OneToManyRelationship @@ -411893,15 +461854,15 @@ false systemuserid systemuser - lk_msdyn_aioptimization_modifiedonbehalfby - modifiedonbehalfby - msdyn_aioptimization - modifiedonbehalfby + lk_agentfeeditem_modifiedby + modifiedby + agentfeeditem + modifiedby 0 - 3b8f5ce9-bfba-f011-bbd3-7c1e52365f30 + f7f30fa9-b6ea-f011-8409-000d3adc1cd9 false @@ -411911,7 +461872,7 @@ false true - user_msdyn_aioptimization + lk_agentfeeditem_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -411947,25 +461908,25 @@ false systemuserid systemuser - user_msdyn_aioptimization - owninguser - msdyn_aioptimization - owninguser + lk_agentfeeditem_modifiedonbehalfby + modifiedonbehalfby + agentfeeditem + modifiedonbehalfby 0 - 680f9aef-bfba-f011-bbd3-7c1e52365f30 + 09f40fa9-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - lk_msdyn_aioptimizationprivatedata_createdby + user_agentfeeditem None 1.0 OneToManyRelationship @@ -412001,27 +461962,81 @@ false systemuserid systemuser - lk_msdyn_aioptimizationprivatedata_createdby + user_agentfeeditem + owninguser + agentfeeditem + owninguser + + 0 + + + 83da2da9-7947-4e73-b56d-5436e036d3c4 + + false + + false + iscustomizable + false + + true + true + lk_partnerapplication_createdby + None + 6.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_partnerapplication_createdby createdby - msdyn_aioptimizationprivatedata + partnerapplication createdby 0 - 720f9aef-bfba-f011-bbd3-7c1e52365f30 + 067996a9-b324-4eed-929e-624422ba0bb1 false - true + false iscustomizable - true + false - false - true - lk_msdyn_aioptimizationprivatedata_createdonbehalfby + true + false + lk_internaladdress_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -412055,27 +462070,27 @@ false systemuserid systemuser - lk_msdyn_aioptimizationprivatedata_createdonbehalfby - createdonbehalfby - msdyn_aioptimizationprivatedata - createdonbehalfby + lk_internaladdress_modifiedonbehalfby + modifiedonbehalfby + internaladdress + modifiedonbehalfby 0 - 780f9aef-bfba-f011-bbd3-7c1e52365f30 + 42ac9da9-a1ff-4a60-8800-0e24d77fbb10 false - true + false iscustomizable true - false + true true - lk_msdyn_aioptimizationprivatedata_modifiedby + lk_ChannelProperty_createdonbehalfby None - 1.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -412109,27 +462124,27 @@ false systemuserid systemuser - lk_msdyn_aioptimizationprivatedata_modifiedby - modifiedby - msdyn_aioptimizationprivatedata - modifiedby + lk_ChannelProperty_createdonbehalfby + createdonbehalfby + channelproperty + createdonbehalfby 0 - 7e0f9aef-bfba-f011-bbd3-7c1e52365f30 + 381f28aa-fbb5-4ee6-b546-581b4e5d26ba false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aioptimizationprivatedata_modifiedonbehalfby + lk_calendar_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -412163,27 +462178,27 @@ false systemuserid systemuser - lk_msdyn_aioptimizationprivatedata_modifiedonbehalfby - modifiedonbehalfby - msdyn_aioptimizationprivatedata - modifiedonbehalfby + lk_calendar_createdby + createdby + calendar + createdby 0 - 900f9aef-bfba-f011-bbd3-7c1e52365f30 + aab338aa-3350-4d64-a1d6-83e7749ee13a false - true + false iscustomizable - true + false - false - true - user_msdyn_aioptimizationprivatedata + true + false + lk_usersettingsbase_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -412217,30 +462232,30 @@ false systemuserid systemuser - user_msdyn_aioptimizationprivatedata - owninguser - msdyn_aioptimizationprivatedata - owninguser + lk_usersettingsbase_modifiedby + modifiedby + usersettings + modifiedby 0 - 65109aef-bfba-f011-bbd3-7c1e52365f30 + 7a39ddaa-2555-e411-80cf-00155d211b05 false - true + false iscustomizable true - false + true true - lk_msdyn_aitestcase_createdby + lk_usermapping_createdby None - 1.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -412271,30 +462286,30 @@ false systemuserid systemuser - lk_msdyn_aitestcase_createdby + lk_usermapping_createdby createdby - msdyn_aitestcase + usermapping createdby 0 - 6b109aef-bfba-f011-bbd3-7c1e52365f30 + 8039ddaa-2555-e411-80cf-00155d211b05 false - true + false iscustomizable true - false + true true - lk_msdyn_aitestcase_createdonbehalfby + lk_usermapping_createdonbehalfby None - 1.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -412325,30 +462340,30 @@ false systemuserid systemuser - lk_msdyn_aitestcase_createdonbehalfby + lk_usermapping_createdonbehalfby createdonbehalfby - msdyn_aitestcase + usermapping createdonbehalfby 0 - 71109aef-bfba-f011-bbd3-7c1e52365f30 + 8639ddaa-2555-e411-80cf-00155d211b05 false - true + false iscustomizable true - false + true true - lk_msdyn_aitestcase_modifiedby + lk_usermapping_modifiedby None - 1.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -412379,30 +462394,30 @@ false systemuserid systemuser - lk_msdyn_aitestcase_modifiedby + lk_usermapping_modifiedby modifiedby - msdyn_aitestcase + usermapping modifiedby 0 - 77109aef-bfba-f011-bbd3-7c1e52365f30 + 8c39ddaa-2555-e411-80cf-00155d211b05 false - true + false iscustomizable true - false + true true - lk_msdyn_aitestcase_modifiedonbehalfby + lk_usermapping_modifiedonbehalfby None - 1.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -412433,15 +462448,15 @@ false systemuserid systemuser - lk_msdyn_aitestcase_modifiedonbehalfby + lk_usermapping_modifiedonbehalfby modifiedonbehalfby - msdyn_aitestcase + usermapping modifiedonbehalfby 0 - 89109aef-bfba-f011-bbd3-7c1e52365f30 + 60052dab-f31f-f111-88b4-7c1e5235b3a0 false @@ -412451,9 +462466,9 @@ false true - user_msdyn_aitestcase + user_agentrule None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -412487,27 +462502,27 @@ false systemuserid systemuser - user_msdyn_aitestcase + user_agentrule owninguser - msdyn_aitestcase + agentrule owninguser 0 - 9d119aef-bfba-f011-bbd3-7c1e52365f30 + 7dfe85ab-7822-432f-bb65-9ad58cc26b34 false - true + false iscustomizable true - false + true true - lk_msdyn_aitestcasedocument_createdby + lk_mailmergetemplate_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -412541,27 +462556,27 @@ false systemuserid systemuser - lk_msdyn_aitestcasedocument_createdby - createdby - msdyn_aitestcasedocument - createdby + lk_mailmergetemplate_modifiedonbehalfby + modifiedonbehalfby + mailmergetemplate + modifiedonbehalfby 0 - a3119aef-bfba-f011-bbd3-7c1e52365f30 + 348592ab-76b6-4ec3-9bd3-e31aeb79560a false - true + false iscustomizable true - false + true true - lk_msdyn_aitestcasedocument_createdonbehalfby + lk_letter_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -412595,27 +462610,27 @@ false systemuserid systemuser - lk_msdyn_aitestcasedocument_createdonbehalfby - createdonbehalfby - msdyn_aitestcasedocument - createdonbehalfby + lk_letter_modifiedby + modifiedby + letter + modifiedby_letter 0 - a9119aef-bfba-f011-bbd3-7c1e52365f30 + cce9acab-7944-4e1e-aec2-80e18fb0835d false - true + false iscustomizable - true + false - false - true - lk_msdyn_aitestcasedocument_modifiedby + true + false + createdby_plugintype None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -412649,27 +462664,27 @@ false systemuserid systemuser - lk_msdyn_aitestcasedocument_modifiedby - modifiedby - msdyn_aitestcasedocument - modifiedby + createdby_plugintype + createdby + plugintype + createdby 0 - af119aef-bfba-f011-bbd3-7c1e52365f30 + 653c24ac-53d6-4b09-b96e-c58bf1bd90b5 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aitestcasedocument_modifiedonbehalfby + lk_personaldocumenttemplatebase_modifiedby None - 1.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -412703,27 +462718,27 @@ false systemuserid systemuser - lk_msdyn_aitestcasedocument_modifiedonbehalfby - modifiedonbehalfby - msdyn_aitestcasedocument - modifiedonbehalfby + lk_personaldocumenttemplatebase_modifiedby + modifiedby + personaldocumenttemplate + modifiedby 0 - c1119aef-bfba-f011-bbd3-7c1e52365f30 + b50431ac-397c-4ba8-b1c8-7d53203a2dd9 false - true + false iscustomizable - true + false - false + true true - user_msdyn_aitestcasedocument + lk_activitypointer_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -412757,30 +462772,30 @@ false systemuserid systemuser - user_msdyn_aitestcasedocument - owninguser - msdyn_aitestcasedocument - owninguser + lk_activitypointer_modifiedonbehalfby + modifiedonbehalfby + activitypointer + modifiedonbehalfby 0 - 62129aef-bfba-f011-bbd3-7c1e52365f30 + 8cf23aac-4c2b-4e64-a9b9-afbac609e6cc false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aitestcaseinput_createdby + lk_customcontroldefaultconfig_createdby None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -412811,27 +462826,27 @@ false systemuserid systemuser - lk_msdyn_aitestcaseinput_createdby + lk_customcontroldefaultconfig_createdby createdby - msdyn_aitestcaseinput + customcontroldefaultconfig createdby 0 - 68129aef-bfba-f011-bbd3-7c1e52365f30 + 754355ac-362a-4644-b8d8-0ca9b7f76382 false - true + false iscustomizable true - false + true true - lk_msdyn_aitestcaseinput_createdonbehalfby + lk_kbarticle_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -412865,30 +462880,30 @@ false systemuserid systemuser - lk_msdyn_aitestcaseinput_createdonbehalfby + lk_kbarticle_createdonbehalfby createdonbehalfby - msdyn_aitestcaseinput + kbarticle createdonbehalfby 0 - 6e129aef-bfba-f011-bbd3-7c1e52365f30 + a3215dac-2fee-e411-80d9-00155dcf6500 false - true + false iscustomizable true - false + true true - lk_msdyn_aitestcaseinput_modifiedby + lk_externalparty_createdby None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -412919,30 +462934,30 @@ false systemuserid systemuser - lk_msdyn_aitestcaseinput_modifiedby - modifiedby - msdyn_aitestcaseinput - modifiedby + systemuser_externalparty_createdby + createdby + externalparty + externalparty_createdby 0 - 74129aef-bfba-f011-bbd3-7c1e52365f30 + a9215dac-2fee-e411-80d9-00155dcf6500 false - true + false iscustomizable true - false + true true - lk_msdyn_aitestcaseinput_modifiedonbehalfby + lk_externalparty_createdonbehalfby None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -412973,30 +462988,30 @@ false systemuserid systemuser - lk_msdyn_aitestcaseinput_modifiedonbehalfby - modifiedonbehalfby - msdyn_aitestcaseinput - modifiedonbehalfby + systemuser_externalparty_createdonbehalfby + createdonbehalfby + externalparty + externalparty_createdonbehalfby 0 - 86129aef-bfba-f011-bbd3-7c1e52365f30 + af215dac-2fee-e411-80d9-00155dcf6500 false - true + false iscustomizable true - false + true true - user_msdyn_aitestcaseinput + lk_externalparty_modifiedby None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -413027,30 +463042,30 @@ false systemuserid systemuser - user_msdyn_aitestcaseinput - owninguser - msdyn_aitestcaseinput - owninguser + systemuser_externalparty_modifiedby + modifiedby + externalparty + externalparty_modifiedby 0 - 565e90f5-bfba-f011-bbd3-7c1e52365f30 + b5215dac-2fee-e411-80d9-00155dcf6500 false - true + false iscustomizable true - false + true true - lk_msdyn_aitestrun_createdby + lk_externalparty_modifiedonbehalfby None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -413081,30 +463096,30 @@ false systemuserid systemuser - lk_msdyn_aitestrun_createdby - createdby - msdyn_aitestrun - createdby + systemuser_externalparty_modifiedonbehalfby + modifiedonbehalfby + externalparty + externalparty_modifiedonbehalfby 0 - 5f5e90f5-bfba-f011-bbd3-7c1e52365f30 + c7215dac-2fee-e411-80d9-00155dcf6500 false - true + false iscustomizable true - false + true true - lk_msdyn_aitestrun_createdonbehalfby + user_externalparty None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -413135,27 +463150,27 @@ false systemuserid systemuser - lk_msdyn_aitestrun_createdonbehalfby - createdonbehalfby - msdyn_aitestrun - createdonbehalfby + systemuser_user_externalparty + owninguser + externalparty + user_externalparty 0 - 665e90f5-bfba-f011-bbd3-7c1e52365f30 + db5398ac-19ef-4462-8dc6-779835f9acca false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aitestrun_modifiedby + lk_reportbase_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -413189,27 +463204,27 @@ false systemuserid systemuser - lk_msdyn_aitestrun_modifiedby - modifiedby - msdyn_aitestrun - modifiedby + lk_reportbase_createdby + createdby + report + createdby 0 - 6f5e90f5-bfba-f011-bbd3-7c1e52365f30 + 7164a1ac-d8f2-423f-9557-0dbf2bd4f0aa false - true + false iscustomizable - true + false - false + true true - lk_msdyn_aitestrun_modifiedonbehalfby + lk_solutionbase_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -413243,27 +463258,27 @@ false systemuserid systemuser - lk_msdyn_aitestrun_modifiedonbehalfby + lk_solutionbase_modifiedonbehalfby modifiedonbehalfby - msdyn_aitestrun + solution modifiedonbehalfby 0 - 845e90f5-bfba-f011-bbd3-7c1e52365f30 + b906bdac-aeb2-4a23-af6f-a1c0cf7ba5fc false - true + false iscustomizable - true + false - false + true true - user_msdyn_aitestrun + lk_rolebase_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -413297,27 +463312,27 @@ false systemuserid systemuser - user_msdyn_aitestrun - owninguser - msdyn_aitestrun - owninguser + lk_rolebase_createdby + createdby + role + createdby 0 - 995f90f5-bfba-f011-bbd3-7c1e52365f30 + 4ea3d5ac-dbba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_aitestrunbatch_createdby + lk_appactionrule_createdby None - 1.0 + 9.1.0.10 OneToManyRelationship DoNotDisplay @@ -413351,15 +463366,15 @@ false systemuserid systemuser - lk_msdyn_aitestrunbatch_createdby + lk_appactionrule_createdby createdby - msdyn_aitestrunbatch + appactionrule createdby 0 - a05f90f5-bfba-f011-bbd3-7c1e52365f30 + 54a3d5ac-dbba-f011-bbd3-7c1e52365f30 false @@ -413369,9 +463384,9 @@ false true - lk_msdyn_aitestrunbatch_createdonbehalfby + lk_appactionrule_createdonbehalfby None - 1.0 + 9.1.0.10 OneToManyRelationship DoNotDisplay @@ -413405,27 +463420,27 @@ false systemuserid systemuser - lk_msdyn_aitestrunbatch_createdonbehalfby + lk_appactionrule_createdonbehalfby createdonbehalfby - msdyn_aitestrunbatch + appactionrule createdonbehalfby 0 - a85f90f5-bfba-f011-bbd3-7c1e52365f30 + 5aa3d5ac-dbba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_aitestrunbatch_modifiedby + lk_appactionrule_modifiedby None - 1.0 + 9.1.0.10 OneToManyRelationship DoNotDisplay @@ -413459,15 +463474,15 @@ false systemuserid systemuser - lk_msdyn_aitestrunbatch_modifiedby + lk_appactionrule_modifiedby modifiedby - msdyn_aitestrunbatch + appactionrule modifiedby 0 - af5f90f5-bfba-f011-bbd3-7c1e52365f30 + 60a3d5ac-dbba-f011-bbd3-7c1e52365f30 false @@ -413477,9 +463492,9 @@ false true - lk_msdyn_aitestrunbatch_modifiedonbehalfby + lk_appactionrule_modifiedonbehalfby None - 1.0 + 9.1.0.10 OneToManyRelationship DoNotDisplay @@ -413513,30 +463528,30 @@ false systemuserid systemuser - lk_msdyn_aitestrunbatch_modifiedonbehalfby + lk_appactionrule_modifiedonbehalfby modifiedonbehalfby - msdyn_aitestrunbatch + appactionrule modifiedonbehalfby 0 - c15f90f5-bfba-f011-bbd3-7c1e52365f30 + ccad66ad-c841-4b22-a174-2494cc590063 false - true + false iscustomizable true - false + true true - user_msdyn_aitestrunbatch + lk_SiteMap_modifiedby None - 1.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -413567,27 +463582,27 @@ false systemuserid systemuser - user_msdyn_aitestrunbatch - owninguser - msdyn_aitestrunbatch - owninguser + systemuser_SiteMap_modifiedby + modifiedby + sitemap + SiteMap_modifiedby 0 - 2f954456-c0ba-f011-bbd3-7c1e52365f30 + fab46aad-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable - false + true - false + true true - lk_msdyn_helppage_createdby + lk_stagedattributelookupvalue_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -413621,27 +463636,27 @@ false systemuserid systemuser - lk_msdyn_helppage_createdby + lk_stagedattributelookupvalue_createdby createdby - msdyn_helppage + stagedattributelookupvalue createdby 0 - 35954456-c0ba-f011-bbd3-7c1e52365f30 + 10b56aad-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_helppage_createdonbehalfby + lk_stagedattributelookupvalue_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -413675,27 +463690,27 @@ false systemuserid systemuser - lk_msdyn_helppage_createdonbehalfby + lk_stagedattributelookupvalue_createdonbehalfby createdonbehalfby - msdyn_helppage + stagedattributelookupvalue createdonbehalfby 0 - 3b954456-c0ba-f011-bbd3-7c1e52365f30 + 1ab56aad-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable - false + true - false + true true - lk_msdyn_helppage_modifiedby + lk_stagedattributelookupvalue_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -413729,27 +463744,27 @@ false systemuserid systemuser - lk_msdyn_helppage_modifiedby + lk_stagedattributelookupvalue_modifiedby modifiedby - msdyn_helppage + stagedattributelookupvalue modifiedby 0 - 41954456-c0ba-f011-bbd3-7c1e52365f30 + 23b56aad-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_helppage_modifiedonbehalfby + lk_stagedattributelookupvalue_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -413783,15 +463798,15 @@ false systemuserid systemuser - lk_msdyn_helppage_modifiedonbehalfby + lk_stagedattributelookupvalue_modifiedonbehalfby modifiedonbehalfby - msdyn_helppage + stagedattributelookupvalue modifiedonbehalfby 0 - 74a8bb5c-c0ba-f011-bbd3-7c1e52365f30 + bac577ad-b561-f111-ab0c-7ced8d2cc7ed false @@ -413801,9 +463816,9 @@ false true - lk_msdyn_tour_createdby + lk_agentprompt_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -413837,15 +463852,15 @@ false systemuserid systemuser - lk_msdyn_tour_createdby + lk_agentprompt_createdby createdby - msdyn_tour + agentprompt createdby 0 - 7aa8bb5c-c0ba-f011-bbd3-7c1e52365f30 + c0c577ad-b561-f111-ab0c-7ced8d2cc7ed false @@ -413855,9 +463870,9 @@ false true - lk_msdyn_tour_createdonbehalfby + lk_agentprompt_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -413891,15 +463906,15 @@ false systemuserid systemuser - lk_msdyn_tour_createdonbehalfby + lk_agentprompt_createdonbehalfby createdonbehalfby - msdyn_tour + agentprompt createdonbehalfby 0 - 80a8bb5c-c0ba-f011-bbd3-7c1e52365f30 + c6c577ad-b561-f111-ab0c-7ced8d2cc7ed false @@ -413909,9 +463924,9 @@ false true - lk_msdyn_tour_modifiedby + lk_agentprompt_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -413945,15 +463960,15 @@ false systemuserid systemuser - lk_msdyn_tour_modifiedby + lk_agentprompt_modifiedby modifiedby - msdyn_tour + agentprompt modifiedby 0 - 86a8bb5c-c0ba-f011-bbd3-7c1e52365f30 + cec577ad-b561-f111-ab0c-7ced8d2cc7ed false @@ -413963,9 +463978,9 @@ false true - lk_msdyn_tour_modifiedonbehalfby + lk_agentprompt_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -413999,15 +464014,15 @@ false systemuserid systemuser - lk_msdyn_tour_modifiedonbehalfby + lk_agentprompt_modifiedonbehalfby modifiedonbehalfby - msdyn_tour + agentprompt modifiedonbehalfby 0 - 028216a3-c0ba-f011-bbd3-7c1e52365f30 + e0c577ad-b561-f111-ab0c-7ced8d2cc7ed false @@ -414017,9 +464032,9 @@ false true - lk_msdynce_botcontent_createdby + user_agentprompt None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -414053,15 +464068,15 @@ false systemuserid systemuser - lk_msdynce_botcontent_createdby - createdby - msdynce_botcontent - createdby + user_agentprompt + owninguser + agentprompt + owninguser 0 - 088216a3-c0ba-f011-bbd3-7c1e52365f30 + 18be7ead-caba-f011-bbd3-7c1e52365f30 false @@ -414071,9 +464086,9 @@ false true - lk_msdynce_botcontent_createdonbehalfby + lk_msdyn_federatedarticle_createdby None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -414107,27 +464122,27 @@ false systemuserid systemuser - lk_msdynce_botcontent_createdonbehalfby - createdonbehalfby - msdynce_botcontent - createdonbehalfby + lk_msdyn_federatedarticle_createdby + createdby + msdyn_federatedarticle + createdby 0 - 0e8216a3-c0ba-f011-bbd3-7c1e52365f30 + 1ebe7ead-caba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdynce_botcontent_modifiedby + lk_msdyn_federatedarticle_createdonbehalfby None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -414161,15 +464176,15 @@ false systemuserid systemuser - lk_msdynce_botcontent_modifiedby - modifiedby - msdynce_botcontent - modifiedby + lk_msdyn_federatedarticle_createdonbehalfby + createdonbehalfby + msdyn_federatedarticle + createdonbehalfby 0 - 148216a3-c0ba-f011-bbd3-7c1e52365f30 + 24be7ead-caba-f011-bbd3-7c1e52365f30 false @@ -414179,9 +464194,9 @@ false true - lk_msdynce_botcontent_modifiedonbehalfby + lk_msdyn_federatedarticle_modifiedby None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -414215,27 +464230,27 @@ false systemuserid systemuser - lk_msdynce_botcontent_modifiedonbehalfby - modifiedonbehalfby - msdynce_botcontent - modifiedonbehalfby + lk_msdyn_federatedarticle_modifiedby + modifiedby + msdyn_federatedarticle + modifiedby 0 - 268216a3-c0ba-f011-bbd3-7c1e52365f30 + 2abe7ead-caba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdynce_botcontent + lk_msdyn_federatedarticle_modifiedonbehalfby None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -414269,15 +464284,15 @@ false systemuserid systemuser - user_msdynce_botcontent - owninguser - msdynce_botcontent - owninguser + lk_msdyn_federatedarticle_modifiedonbehalfby + modifiedonbehalfby + msdyn_federatedarticle + modifiedonbehalfby 0 - 35ae83c4-c0ba-f011-bbd3-7c1e52365f30 + 3cbe7ead-caba-f011-bbd3-7c1e52365f30 false @@ -414287,9 +464302,9 @@ false true - lk_conversationtranscript_createdby + user_msdyn_federatedarticle None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -414323,15 +464338,15 @@ false systemuserid systemuser - lk_conversationtranscript_createdby - createdby - conversationtranscript - createdby + user_msdyn_federatedarticle + owninguser + msdyn_federatedarticle + owninguser 0 - 3bae83c4-c0ba-f011-bbd3-7c1e52365f30 + 30bf7ead-caba-f011-bbd3-7c1e52365f30 false @@ -414341,9 +464356,9 @@ false true - lk_conversationtranscript_createdonbehalfby + lk_msdyn_federatedarticleincident_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -414377,15 +464392,15 @@ false systemuserid systemuser - lk_conversationtranscript_createdonbehalfby - createdonbehalfby - conversationtranscript - createdonbehalfby + lk_msdyn_federatedarticleincident_createdby + createdby + msdyn_federatedarticleincident + createdby 0 - 41ae83c4-c0ba-f011-bbd3-7c1e52365f30 + 39bf7ead-caba-f011-bbd3-7c1e52365f30 false @@ -414395,9 +464410,9 @@ false true - lk_conversationtranscript_modifiedby + lk_msdyn_federatedarticleincident_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -414431,15 +464446,15 @@ false systemuserid systemuser - lk_conversationtranscript_modifiedby - modifiedby - conversationtranscript - modifiedby + lk_msdyn_federatedarticleincident_createdonbehalfby + createdonbehalfby + msdyn_federatedarticleincident + createdonbehalfby 0 - 47ae83c4-c0ba-f011-bbd3-7c1e52365f30 + 43bf7ead-caba-f011-bbd3-7c1e52365f30 false @@ -414449,9 +464464,9 @@ false true - lk_conversationtranscript_modifiedonbehalfby + lk_msdyn_federatedarticleincident_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -414485,15 +464500,15 @@ false systemuserid systemuser - lk_conversationtranscript_modifiedonbehalfby - modifiedonbehalfby - conversationtranscript - modifiedonbehalfby + lk_msdyn_federatedarticleincident_modifiedby + modifiedby + msdyn_federatedarticleincident + modifiedby 0 - 59ae83c4-c0ba-f011-bbd3-7c1e52365f30 + 4cbf7ead-caba-f011-bbd3-7c1e52365f30 false @@ -414503,9 +464518,9 @@ false true - user_conversationtranscript + lk_msdyn_federatedarticleincident_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -414539,27 +464554,27 @@ false systemuserid systemuser - user_conversationtranscript - owninguser - conversationtranscript - owninguser + lk_msdyn_federatedarticleincident_modifiedonbehalfby + modifiedonbehalfby + msdyn_federatedarticleincident + modifiedonbehalfby 0 - 06885ee6-c0ba-f011-bbd3-7c1e52365f30 + 3651ccad-78fa-4c01-863a-2a12eb55d9bc false - true + false iscustomizable false - false + true true - lk_bot_createdby + lk_syncattributemappingprofile_createdby None - 1.0.0.0 + 7.0.0.0 OneToManyRelationship DoNotDisplay @@ -414593,81 +464608,27 @@ false systemuserid systemuser - lk_bot_createdby + lk_syncattributemappingprofile_createdby createdby - bot + syncattributemappingprofile createdby 0 - 0c885ee6-c0ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_bot_createdonbehalfby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_bot_createdonbehalfby - createdonbehalfby - bot - createdonbehalfby - - 0 - - - 12885ee6-c0ba-f011-bbd3-7c1e52365f30 + 2ba6ddad-2d8a-11df-8176-00137299e1c2 false - true + false iscustomizable false - false - true - lk_bot_modifiedby - None - 1.0.0.0 + true + false + systemuser_principalobjectattributeaccess_principalid + Append + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -414701,15 +464662,15 @@ false systemuserid systemuser - lk_bot_modifiedby - modifiedby - bot - modifiedby + systemuser_principalobjectattributeaccess_principalid + principalid + principalobjectattributeaccess + principalid_systemuser - 0 + 1 - 18885ee6-c0ba-f011-bbd3-7c1e52365f30 + 68e1e0ad-c9ba-f011-bbd3-7c1e52365f30 false @@ -414719,9 +464680,9 @@ false true - lk_bot_modifiedonbehalfby + lk_msdyn_serviceconfiguration_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -414755,27 +464716,27 @@ false systemuserid systemuser - lk_bot_modifiedonbehalfby - modifiedonbehalfby - bot - modifiedonbehalfby + lk_msdyn_serviceconfiguration_createdby + createdby + msdyn_serviceconfiguration + createdby 0 - 2a885ee6-c0ba-f011-bbd3-7c1e52365f30 + 6ee1e0ad-c9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_bot + lk_msdyn_serviceconfiguration_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -414809,27 +464770,27 @@ false systemuserid systemuser - user_bot - owninguser - bot - owninguser + lk_msdyn_serviceconfiguration_createdonbehalfby + createdonbehalfby + msdyn_serviceconfiguration + createdonbehalfby 0 - 548a5ee6-c0ba-f011-bbd3-7c1e52365f30 + 74e1e0ad-c9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_botcomponent_createdby + lk_msdyn_serviceconfiguration_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -414863,15 +464824,15 @@ false systemuserid systemuser - lk_botcomponent_createdby - createdby - botcomponent - createdby + lk_msdyn_serviceconfiguration_modifiedby + modifiedby + msdyn_serviceconfiguration + modifiedby 0 - 5b8a5ee6-c0ba-f011-bbd3-7c1e52365f30 + 7ae1e0ad-c9ba-f011-bbd3-7c1e52365f30 false @@ -414881,9 +464842,9 @@ false true - lk_botcomponent_createdonbehalfby + lk_msdyn_serviceconfiguration_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -414917,27 +464878,27 @@ false systemuserid systemuser - lk_botcomponent_createdonbehalfby - createdonbehalfby - botcomponent - createdonbehalfby + lk_msdyn_serviceconfiguration_modifiedonbehalfby + modifiedonbehalfby + msdyn_serviceconfiguration + modifiedonbehalfby 0 - 638a5ee6-c0ba-f011-bbd3-7c1e52365f30 + 8ce1e0ad-c9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_botcomponent_modifiedby + user_msdyn_serviceconfiguration None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -414971,15 +464932,15 @@ false systemuserid systemuser - lk_botcomponent_modifiedby - modifiedby - botcomponent - modifiedby + user_msdyn_serviceconfiguration + owninguser + msdyn_serviceconfiguration + owninguser 0 - 698a5ee6-c0ba-f011-bbd3-7c1e52365f30 + 6fe2e0ad-c9ba-f011-bbd3-7c1e52365f30 false @@ -414989,9 +464950,9 @@ false true - lk_botcomponent_modifiedonbehalfby + lk_msdyn_slakpi_createdby None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -415025,27 +464986,27 @@ false systemuserid systemuser - lk_botcomponent_modifiedonbehalfby - modifiedonbehalfby - botcomponent - modifiedonbehalfby + lk_msdyn_slakpi_createdby + createdby + msdyn_slakpi + createdby 0 - 7b8a5ee6-c0ba-f011-bbd3-7c1e52365f30 + 75e2e0ad-c9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_botcomponent + lk_msdyn_slakpi_createdonbehalfby None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -415079,27 +465040,27 @@ false systemuserid systemuser - user_botcomponent - owninguser - botcomponent - owninguser + lk_msdyn_slakpi_createdonbehalfby + createdonbehalfby + msdyn_slakpi + createdonbehalfby 0 - abe656ec-c0ba-f011-bbd3-7c1e52365f30 + 7be2e0ad-c9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_botcomponentcollection_createdby + lk_msdyn_slakpi_modifiedby None - 2.2.12.13735069 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -415133,15 +465094,15 @@ false systemuserid systemuser - lk_botcomponentcollection_createdby - createdby - botcomponentcollection - createdby + lk_msdyn_slakpi_modifiedby + modifiedby + msdyn_slakpi + modifiedby 0 - b2e656ec-c0ba-f011-bbd3-7c1e52365f30 + 81e2e0ad-c9ba-f011-bbd3-7c1e52365f30 false @@ -415151,9 +465112,9 @@ false true - lk_botcomponentcollection_createdonbehalfby + lk_msdyn_slakpi_modifiedonbehalfby None - 2.2.12.13735069 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -415187,27 +465148,27 @@ false systemuserid systemuser - lk_botcomponentcollection_createdonbehalfby - createdonbehalfby - botcomponentcollection - createdonbehalfby + lk_msdyn_slakpi_modifiedonbehalfby + modifiedonbehalfby + msdyn_slakpi + modifiedonbehalfby 0 - b9e656ec-c0ba-f011-bbd3-7c1e52365f30 + 93e2e0ad-c9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_botcomponentcollection_modifiedby + user_msdyn_slakpi None - 2.2.12.13735069 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -415241,27 +465202,27 @@ false systemuserid systemuser - lk_botcomponentcollection_modifiedby - modifiedby - botcomponentcollection - modifiedby + user_msdyn_slakpi + owninguser + msdyn_slakpi + owninguser 0 - c2e656ec-c0ba-f011-bbd3-7c1e52365f30 + 2bf4e2ad-8d38-49dc-9758-20bcf2160149 false - true + false iscustomizable - true + false - false - true - lk_botcomponentcollection_modifiedonbehalfby + true + false + lk_plugintracelogbase_createdonbehalfby None - 2.2.12.13735069 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -415295,27 +465256,27 @@ false systemuserid systemuser - lk_botcomponentcollection_modifiedonbehalfby - modifiedonbehalfby - botcomponentcollection - modifiedonbehalfby + lk_plugintracelogbase_createdonbehalfby + createdonbehalfby + plugintracelog + createdonbehalfby 0 - d8e656ec-c0ba-f011-bbd3-7c1e52365f30 + a28d42ae-3440-4b4f-b685-b91480817f7d false - true + false iscustomizable false - false - true - user_botcomponentcollection + true + false + lk_recurrencerule_createdby None - 2.2.12.13735069 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -415349,39 +465310,39 @@ false systemuserid systemuser - user_botcomponentcollection - owninguser - botcomponentcollection - owninguser + lk_recurrencerule_createdby + createdby + recurrencerule + createdby 0 - 63a84ff2-c0ba-f011-bbd3-7c1e52365f30 + 464e63ae-a4d5-4ef2-995f-9fafbf14a932 - true + false false iscustomizable - true + false true true - systemuser_bot_publishedby - Append - 1.0.0.50 + lk_processsession_modifiedby + None + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -415389,7 +465350,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -415403,27 +465364,27 @@ false systemuserid systemuser - systemuser_bot_publishedby - publishedby - bot - publishedby + lk_processsession_modifiedby + modifiedby + processsession + modifiedby - 1 + 0 - e9a690c0-c1ba-f011-bbd3-7c1e52365f30 + 8d4683ae-42bf-f011-bbd5-7ced8d470ac7 false true iscustomizable - false + true false true - lk_comment_createdby + lk_cpr_cprsubscription_createdby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -415457,15 +465418,15 @@ false systemuserid systemuser - lk_comment_createdby + lk_cpr_cprsubscription_createdby createdby - comment + cpr_cprsubscription createdby 0 - f0a690c0-c1ba-f011-bbd3-7c1e52365f30 + 944683ae-42bf-f011-bbd5-7ced8d470ac7 false @@ -415475,9 +465436,9 @@ false true - lk_comment_createdonbehalfby + lk_cpr_cprsubscription_createdonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -415511,27 +465472,27 @@ false systemuserid systemuser - lk_comment_createdonbehalfby + lk_cpr_cprsubscription_createdonbehalfby createdonbehalfby - comment + cpr_cprsubscription createdonbehalfby 0 - f7a690c0-c1ba-f011-bbd3-7c1e52365f30 + 9a4683ae-42bf-f011-bbd5-7ced8d470ac7 false true iscustomizable - false + true false true - lk_comment_modifiedby + lk_cpr_cprsubscription_modifiedby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -415565,15 +465526,15 @@ false systemuserid systemuser - lk_comment_modifiedby + lk_cpr_cprsubscription_modifiedby modifiedby - comment + cpr_cprsubscription modifiedby 0 - fda690c0-c1ba-f011-bbd3-7c1e52365f30 + a04683ae-42bf-f011-bbd5-7ced8d470ac7 false @@ -415583,9 +465544,9 @@ false true - lk_comment_modifiedonbehalfby + lk_cpr_cprsubscription_modifiedonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -415619,15 +465580,15 @@ false systemuserid systemuser - lk_comment_modifiedonbehalfby + lk_cpr_cprsubscription_modifiedonbehalfby modifiedonbehalfby - comment + cpr_cprsubscription modifiedonbehalfby 0 - 0fa790c0-c1ba-f011-bbd3-7c1e52365f30 + b34683ae-42bf-f011-bbd5-7ced8d470ac7 false @@ -415637,9 +465598,9 @@ false true - user_comment + user_cpr_cprsubscription None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -415673,27 +465634,27 @@ false systemuserid systemuser - user_comment + user_cpr_cprsubscription owninguser - comment + cpr_cprsubscription owninguser 0 - d954320a-c2ba-f011-bbd3-7c1e52365f30 + 4faf9cae-b9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_governanceconfiguration_createdby + lk_connector_createdby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -415727,123 +465688,15 @@ false systemuserid systemuser - lk_governanceconfiguration_createdby + lk_connector_createdby createdby - governanceconfiguration + connector createdby 0 - df54320a-c2ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_governanceconfiguration_createdonbehalfby - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_governanceconfiguration_createdonbehalfby - createdonbehalfby - governanceconfiguration - createdonbehalfby - - 0 - - - e654320a-c2ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - lk_governanceconfiguration_modifiedby - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_governanceconfiguration_modifiedby - modifiedby - governanceconfiguration - modifiedby - - 0 - - - ec54320a-c2ba-f011-bbd3-7c1e52365f30 + 55af9cae-b9ba-f011-bbd3-7c1e52365f30 false @@ -415853,9 +465706,9 @@ false true - lk_governanceconfiguration_modifiedonbehalfby + lk_connector_createdonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -415889,27 +465742,27 @@ false systemuserid systemuser - lk_governanceconfiguration_modifiedonbehalfby - modifiedonbehalfby - governanceconfiguration - modifiedonbehalfby + lk_connector_createdonbehalfby + createdonbehalfby + connector + createdonbehalfby 0 - fe54320a-c2ba-f011-bbd3-7c1e52365f30 + 5baf9cae-b9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_governanceconfiguration + lk_connector_modifiedby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -415943,15 +465796,15 @@ false systemuserid systemuser - user_governanceconfiguration - owninguser - governanceconfiguration - owninguser + lk_connector_modifiedby + modifiedby + connector + modifiedby 0 - 5655473b-c3ba-f011-bbd3-7c1e52365f30 + 61af9cae-b9ba-f011-bbd3-7c1e52365f30 false @@ -415961,9 +465814,9 @@ false true - lk_fabricaiskill_createdby + lk_connector_modifiedonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -415997,15 +465850,15 @@ false systemuserid systemuser - lk_fabricaiskill_createdby - createdby - fabricaiskill - createdby + lk_connector_modifiedonbehalfby + modifiedonbehalfby + connector + modifiedonbehalfby 0 - 5c55473b-c3ba-f011-bbd3-7c1e52365f30 + 73af9cae-b9ba-f011-bbd3-7c1e52365f30 false @@ -416015,9 +465868,9 @@ false true - lk_fabricaiskill_createdonbehalfby + user_connector None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -416051,27 +465904,27 @@ false systemuserid systemuser - lk_fabricaiskill_createdonbehalfby - createdonbehalfby - fabricaiskill - createdonbehalfby + user_connector + owninguser + connector + owninguser 0 - 6255473b-c3ba-f011-bbd3-7c1e52365f30 + 3fc532af-f4c1-40bb-a490-6e7d16e00e4c false - true + false iscustomizable - true + false - false + true true - lk_fabricaiskill_modifiedby + lk_calendarrule_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -416105,27 +465958,27 @@ false systemuserid systemuser - lk_fabricaiskill_modifiedby - modifiedby - fabricaiskill - modifiedby + lk_calendarrule_modifiedonbehalfby + modifiedonbehalfby + calendarrule + modifiedonbehalfby 0 - 6855473b-c3ba-f011-bbd3-7c1e52365f30 + c25f5eaf-8f92-4ec9-8ed1-65f310fffdc2 false - true + false iscustomizable - true + false - false + true true - lk_fabricaiskill_modifiedonbehalfby + lk_templatebase_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -416159,27 +466012,27 @@ false systemuserid systemuser - lk_fabricaiskill_modifiedonbehalfby - modifiedonbehalfby - fabricaiskill - modifiedonbehalfby + lk_templatebase_createdonbehalfby + createdonbehalfby + template + createdonbehalfby 0 - 7a55473b-c3ba-f011-bbd3-7c1e52365f30 + 878eadaf-ca1f-4e77-857c-46b86afc2776 false - true + false iscustomizable true - false + true true - user_fabricaiskill + lk_recurringappointmentmaster_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -416213,27 +466066,27 @@ false systemuserid systemuser - user_fabricaiskill - owninguser - fabricaiskill - owninguser + lk_recurringappointmentmaster_createdby + createdby + recurringappointmentmaster + createdby_recurringappointmentmaster 0 - 11e35843-c3ba-f011-bbd3-7c1e52365f30 + 027b02b0-a75c-4206-9b7b-52898a2da6c3 false - true + false iscustomizable true - false + true true - lk_msdyn_appinsightsmetadata_createdby + lk_customeraddress_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -416267,25 +466120,25 @@ false systemuserid systemuser - lk_msdyn_appinsightsmetadata_createdby - createdby - msdyn_appinsightsmetadata - createdby + lk_customeraddress_createdonbehalfby + createdonbehalfby + customeraddress + createdonbehalfby 0 - 17e35843-c3ba-f011-bbd3-7c1e52365f30 + bb3327b0-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_appinsightsmetadata_createdonbehalfby + lk_customapi_createdby None 1.0.0.0 OneToManyRelationship @@ -416321,15 +466174,15 @@ false systemuserid systemuser - lk_msdyn_appinsightsmetadata_createdonbehalfby - createdonbehalfby - msdyn_appinsightsmetadata - createdonbehalfby + lk_customapi_createdby + createdby + customapi + createdby 0 - 1de35843-c3ba-f011-bbd3-7c1e52365f30 + c13327b0-aeba-f011-bbd3-7c1e52365f30 false @@ -416339,7 +466192,7 @@ false true - lk_msdyn_appinsightsmetadata_modifiedby + lk_customapi_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -416375,25 +466228,25 @@ false systemuserid systemuser - lk_msdyn_appinsightsmetadata_modifiedby - modifiedby - msdyn_appinsightsmetadata - modifiedby + lk_customapi_createdonbehalfby + createdonbehalfby + customapi + createdonbehalfby 0 - 23e35843-c3ba-f011-bbd3-7c1e52365f30 + c73327b0-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_appinsightsmetadata_modifiedonbehalfby + lk_customapi_modifiedby None 1.0.0.0 OneToManyRelationship @@ -416429,15 +466282,15 @@ false systemuserid systemuser - lk_msdyn_appinsightsmetadata_modifiedonbehalfby - modifiedonbehalfby - msdyn_appinsightsmetadata - modifiedonbehalfby + lk_customapi_modifiedby + modifiedby + customapi + modifiedby 0 - 5ce55843-c3ba-f011-bbd3-7c1e52365f30 + cd3327b0-aeba-f011-bbd3-7c1e52365f30 false @@ -416447,9 +466300,9 @@ false true - lk_msdyn_dataflowconnectionreference_createdby + lk_customapi_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -416483,27 +466336,27 @@ false systemuserid systemuser - lk_msdyn_dataflowconnectionreference_createdby - createdby - msdyn_dataflowconnectionreference - createdby + lk_customapi_modifiedonbehalfby + modifiedonbehalfby + customapi + modifiedonbehalfby 0 - 62e55843-c3ba-f011-bbd3-7c1e52365f30 + df3327b0-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_dataflowconnectionreference_createdonbehalfby + user_customapi None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -416537,30 +466390,30 @@ false systemuserid systemuser - lk_msdyn_dataflowconnectionreference_createdonbehalfby - createdonbehalfby - msdyn_dataflowconnectionreference - createdonbehalfby + user_customapi + owninguser + customapi + owninguser 0 - 68e55843-c3ba-f011-bbd3-7c1e52365f30 + ea0371b0-027b-4e83-b306-708364565c7e false - true + false iscustomizable true - false + true true - lk_msdyn_dataflowconnectionreference_modifiedby + lk_mailboxtrackingfolder_createdby None - 1.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -416591,15 +466444,15 @@ false systemuserid systemuser - lk_msdyn_dataflowconnectionreference_modifiedby - modifiedby - msdyn_dataflowconnectionreference - modifiedby + lk_mailboxtrackingfolder_createdby + createdby + mailboxtrackingfolder + createdby 0 - 6ee55843-c3ba-f011-bbd3-7c1e52365f30 + 3cca71b0-d7ba-f011-bbd3-7c1e52365f30 false @@ -416609,7 +466462,7 @@ false true - lk_msdyn_dataflowconnectionreference_modifiedonbehalfby + lk_userrating_createdby None 1.0 OneToManyRelationship @@ -416645,15 +466498,15 @@ false systemuserid systemuser - lk_msdyn_dataflowconnectionreference_modifiedonbehalfby - modifiedonbehalfby - msdyn_dataflowconnectionreference - modifiedonbehalfby + lk_userrating_createdby + createdby + userrating + createdby 0 - 80e55843-c3ba-f011-bbd3-7c1e52365f30 + 42ca71b0-d7ba-f011-bbd3-7c1e52365f30 false @@ -416663,7 +466516,7 @@ false true - user_msdyn_dataflowconnectionreference + lk_userrating_createdonbehalfby None 1.0 OneToManyRelationship @@ -416699,15 +466552,15 @@ false systemuserid systemuser - user_msdyn_dataflowconnectionreference - owninguser - msdyn_dataflowconnectionreference - owninguser + lk_userrating_createdonbehalfby + createdonbehalfby + userrating + createdonbehalfby 0 - 50b2124a-c3ba-f011-bbd3-7c1e52365f30 + 48ca71b0-d7ba-f011-bbd3-7c1e52365f30 false @@ -416717,7 +466570,7 @@ false true - lk_msdyn_schedule_createdby + lk_userrating_modifiedby None 1.0 OneToManyRelationship @@ -416753,15 +466606,15 @@ false systemuserid systemuser - lk_msdyn_schedule_createdby - createdby - msdyn_schedule - createdby + lk_userrating_modifiedby + modifiedby + userrating + modifiedby 0 - 56b2124a-c3ba-f011-bbd3-7c1e52365f30 + 4eca71b0-d7ba-f011-bbd3-7c1e52365f30 false @@ -416771,7 +466624,7 @@ false true - lk_msdyn_schedule_createdonbehalfby + lk_userrating_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -416807,27 +466660,27 @@ false systemuserid systemuser - lk_msdyn_schedule_createdonbehalfby - createdonbehalfby - msdyn_schedule - createdonbehalfby + lk_userrating_modifiedonbehalfby + modifiedonbehalfby + userrating + modifiedonbehalfby 0 - 5cb2124a-c3ba-f011-bbd3-7c1e52365f30 + 08287fb0-4d8a-4aa7-859c-4b9914723df2 false - true + false iscustomizable - true + false - false - true - lk_msdyn_schedule_modifiedby + true + false + lk_userfiscalcalendar_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -416861,27 +466714,27 @@ false systemuserid systemuser - lk_msdyn_schedule_modifiedby + lk_userfiscalcalendar_modifiedby modifiedby - msdyn_schedule + userfiscalcalendar modifiedby 0 - 62b2124a-c3ba-f011-bbd3-7c1e52365f30 + be6719b1-4fa4-46e0-8b90-e42d13e33ff9 false - true + false iscustomizable - true + false - false - true - lk_msdyn_schedule_modifiedonbehalfby + true + false + lk_userform_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -416915,30 +466768,30 @@ false systemuserid systemuser - lk_msdyn_schedule_modifiedonbehalfby - modifiedonbehalfby - msdyn_schedule - modifiedonbehalfby + lk_userform_modifiedby + modifiedby + userform + modifiedby 0 - 74b2124a-c3ba-f011-bbd3-7c1e52365f30 + 131460b1-1e82-46cd-b60c-0f056cb55cb4 false - true + false iscustomizable true - false + true true - user_msdyn_schedule + lk_advancedsimilarityrule_createdonbehalfby None - 1.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -416969,15 +466822,15 @@ false systemuserid systemuser - user_msdyn_schedule - owninguser - msdyn_schedule - owninguser + lk_advancedsimilarityrule_createdonbehalfby + createdonbehalfby + advancedsimilarityrule + createdonbehalfby 0 - 6bb4124a-c3ba-f011-bbd3-7c1e52365f30 + ca6461b1-e6ba-f011-bbd3-7c1e52365f30 false @@ -416987,9 +466840,9 @@ false true - lk_msdyn_dataflowtemplate_createdby + lk_sa_suggestedaction_createdby None - 1.0 + 9.2.0.5 OneToManyRelationship DoNotDisplay @@ -417023,15 +466876,15 @@ false systemuserid systemuser - lk_msdyn_dataflowtemplate_createdby + lk_sa_suggestedaction_createdby createdby - msdyn_dataflowtemplate + sa_suggestedaction createdby 0 - 71b4124a-c3ba-f011-bbd3-7c1e52365f30 + d06461b1-e6ba-f011-bbd3-7c1e52365f30 false @@ -417041,9 +466894,9 @@ false true - lk_msdyn_dataflowtemplate_createdonbehalfby + lk_sa_suggestedaction_createdonbehalfby None - 1.0 + 9.2.0.5 OneToManyRelationship DoNotDisplay @@ -417077,15 +466930,15 @@ false systemuserid systemuser - lk_msdyn_dataflowtemplate_createdonbehalfby + lk_sa_suggestedaction_createdonbehalfby createdonbehalfby - msdyn_dataflowtemplate + sa_suggestedaction createdonbehalfby 0 - 77b4124a-c3ba-f011-bbd3-7c1e52365f30 + d66461b1-e6ba-f011-bbd3-7c1e52365f30 false @@ -417095,9 +466948,9 @@ false true - lk_msdyn_dataflowtemplate_modifiedby + lk_sa_suggestedaction_modifiedby None - 1.0 + 9.2.0.5 OneToManyRelationship DoNotDisplay @@ -417131,15 +466984,15 @@ false systemuserid systemuser - lk_msdyn_dataflowtemplate_modifiedby + lk_sa_suggestedaction_modifiedby modifiedby - msdyn_dataflowtemplate + sa_suggestedaction modifiedby 0 - 7fb4124a-c3ba-f011-bbd3-7c1e52365f30 + dc6461b1-e6ba-f011-bbd3-7c1e52365f30 false @@ -417149,9 +467002,9 @@ false true - lk_msdyn_dataflowtemplate_modifiedonbehalfby + lk_sa_suggestedaction_modifiedonbehalfby None - 1.0 + 9.2.0.5 OneToManyRelationship DoNotDisplay @@ -417185,15 +467038,15 @@ false systemuserid systemuser - lk_msdyn_dataflowtemplate_modifiedonbehalfby + lk_sa_suggestedaction_modifiedonbehalfby modifiedonbehalfby - msdyn_dataflowtemplate + sa_suggestedaction modifiedonbehalfby 0 - 96b4124a-c3ba-f011-bbd3-7c1e52365f30 + 8c6561b1-e6ba-f011-bbd3-7c1e52365f30 false @@ -417203,9 +467056,9 @@ false true - user_msdyn_dataflowtemplate + lk_sa_suggestedactioncriteria_createdby None - 1.0 + 9.2.0.5 OneToManyRelationship DoNotDisplay @@ -417239,15 +467092,15 @@ false systemuserid systemuser - user_msdyn_dataflowtemplate - owninguser - msdyn_dataflowtemplate - owninguser + lk_sa_suggestedactioncriteria_createdby + createdby + sa_suggestedactioncriteria + createdby 0 - 89b6124a-c3ba-f011-bbd3-7c1e52365f30 + 926561b1-e6ba-f011-bbd3-7c1e52365f30 false @@ -417257,9 +467110,9 @@ false true - lk_msdyn_dataflow_datalakefolder_createdby + lk_sa_suggestedactioncriteria_createdonbehalfby None - 1.0 + 9.2.0.5 OneToManyRelationship DoNotDisplay @@ -417293,15 +467146,15 @@ false systemuserid systemuser - lk_msdyn_dataflow_datalakefolder_createdby - createdby - msdyn_dataflow_datalakefolder - createdby + lk_sa_suggestedactioncriteria_createdonbehalfby + createdonbehalfby + sa_suggestedactioncriteria + createdonbehalfby 0 - 8fb6124a-c3ba-f011-bbd3-7c1e52365f30 + 986561b1-e6ba-f011-bbd3-7c1e52365f30 false @@ -417311,9 +467164,9 @@ false true - lk_msdyn_dataflow_datalakefolder_createdonbehalfby + lk_sa_suggestedactioncriteria_modifiedby None - 1.0 + 9.2.0.5 OneToManyRelationship DoNotDisplay @@ -417347,15 +467200,15 @@ false systemuserid systemuser - lk_msdyn_dataflow_datalakefolder_createdonbehalfby - createdonbehalfby - msdyn_dataflow_datalakefolder - createdonbehalfby + lk_sa_suggestedactioncriteria_modifiedby + modifiedby + sa_suggestedactioncriteria + modifiedby 0 - 95b6124a-c3ba-f011-bbd3-7c1e52365f30 + 9e6561b1-e6ba-f011-bbd3-7c1e52365f30 false @@ -417365,9 +467218,9 @@ false true - lk_msdyn_dataflow_datalakefolder_modifiedby + lk_sa_suggestedactioncriteria_modifiedonbehalfby None - 1.0 + 9.2.0.5 OneToManyRelationship DoNotDisplay @@ -417401,30 +467254,30 @@ false systemuserid systemuser - lk_msdyn_dataflow_datalakefolder_modifiedby - modifiedby - msdyn_dataflow_datalakefolder - modifiedby + lk_sa_suggestedactioncriteria_modifiedonbehalfby + modifiedonbehalfby + sa_suggestedactioncriteria + modifiedonbehalfby 0 - 9bb6124a-c3ba-f011-bbd3-7c1e52365f30 + a9c47cb1-657d-11e0-834f-1cc1de634cfe false - true + false iscustomizable - true + false - false - true - lk_msdyn_dataflow_datalakefolder_modifiedonbehalfby + true + false + systemuser_PostRegardings None - 1.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -417455,27 +467308,27 @@ false systemuserid systemuser - lk_msdyn_dataflow_datalakefolder_modifiedonbehalfby - modifiedonbehalfby - msdyn_dataflow_datalakefolder - modifiedonbehalfby + systemuser_PostRegardings + regardingobjectid + postregarding + regardingobjectid_systemuser 0 - adb6124a-c3ba-f011-bbd3-7c1e52365f30 + cdf698b1-443a-4355-a8c0-ac9221d15bb8 false - true + false iscustomizable - true + false - false + true true - user_msdyn_dataflow_datalakefolder + lk_fieldsecurityprofile_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -417509,30 +467362,30 @@ false systemuserid systemuser - user_msdyn_dataflow_datalakefolder - owninguser - msdyn_dataflow_datalakefolder - owninguser + lk_fieldsecurityprofile_modifiedonbehalfby + modifiedonbehalfby + fieldsecurityprofile + modifiedonbehalfby 0 - 7a4e5550-c3ba-f011-bbd3-7c1e52365f30 + aeb0c8b1-925d-4dfa-b08a-6fb772aa22b8 false - true + false iscustomizable true - false + true true - lk_msdyn_dmsrequest_createdby + lk_externalpartyitem_modifiedby None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -417563,27 +467416,27 @@ false systemuserid systemuser - lk_msdyn_dmsrequest_createdby - createdby - msdyn_dmsrequest - createdby + lk_externalpartyitem_modifiedby + modifiedby + externalpartyitem + lk_externalpartyitem_modifiedby 0 - 804e5550-c3ba-f011-bbd3-7c1e52365f30 + 114a65b2-bb15-4d55-b1d2-b90f445bd4bb false - true + false iscustomizable - true + false - false - true - lk_msdyn_dmsrequest_createdonbehalfby + true + false + lk_importlogbase_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -417617,27 +467470,27 @@ false systemuserid systemuser - lk_msdyn_dmsrequest_createdonbehalfby - createdonbehalfby - msdyn_dmsrequest - createdonbehalfby + lk_importlogbase_modifiedby + modifiedby + importlog + modifiedby 0 - 864e5550-c3ba-f011-bbd3-7c1e52365f30 + c3956eb2-c191-4941-ab67-fee7ca8a3040 false - true + false iscustomizable true - false + true true - lk_msdyn_dmsrequest_modifiedby + user_appointment None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -417671,15 +467524,15 @@ false systemuserid systemuser - lk_msdyn_dmsrequest_modifiedby - modifiedby - msdyn_dmsrequest - modifiedby + user_appointment + owninguser + appointment + owninguser_appointment 0 - 8c4e5550-c3ba-f011-bbd3-7c1e52365f30 + c44fe3b2-f1ba-f011-bbd3-7c1e52365f30 false @@ -417689,7 +467542,7 @@ false true - lk_msdyn_dmsrequest_modifiedonbehalfby + lk_appentitysearchview_createdby None 1.0 OneToManyRelationship @@ -417725,15 +467578,15 @@ false systemuserid systemuser - lk_msdyn_dmsrequest_modifiedonbehalfby - modifiedonbehalfby - msdyn_dmsrequest - modifiedonbehalfby + lk_appentitysearchview_createdby + createdby + appentitysearchview + createdby 0 - 9e4e5550-c3ba-f011-bbd3-7c1e52365f30 + ca4fe3b2-f1ba-f011-bbd3-7c1e52365f30 false @@ -417743,7 +467596,7 @@ false true - user_msdyn_dmsrequest + lk_appentitysearchview_createdonbehalfby None 1.0 OneToManyRelationship @@ -417779,15 +467632,15 @@ false systemuserid systemuser - user_msdyn_dmsrequest - owninguser - msdyn_dmsrequest - owninguser + lk_appentitysearchview_createdonbehalfby + createdonbehalfby + appentitysearchview + createdonbehalfby 0 - c8525550-c3ba-f011-bbd3-7c1e52365f30 + d04fe3b2-f1ba-f011-bbd3-7c1e52365f30 false @@ -417797,7 +467650,7 @@ false true - lk_msdyn_dmsrequeststatus_createdby + lk_appentitysearchview_modifiedby None 1.0 OneToManyRelationship @@ -417833,15 +467686,15 @@ false systemuserid systemuser - lk_msdyn_dmsrequeststatus_createdby - createdby - msdyn_dmsrequeststatus - createdby + lk_appentitysearchview_modifiedby + modifiedby + appentitysearchview + modifiedby 0 - d6525550-c3ba-f011-bbd3-7c1e52365f30 + d64fe3b2-f1ba-f011-bbd3-7c1e52365f30 false @@ -417851,7 +467704,7 @@ false true - lk_msdyn_dmsrequeststatus_createdonbehalfby + lk_appentitysearchview_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -417887,27 +467740,27 @@ false systemuserid systemuser - lk_msdyn_dmsrequeststatus_createdonbehalfby - createdonbehalfby - msdyn_dmsrequeststatus - createdonbehalfby + lk_appentitysearchview_modifiedonbehalfby + modifiedonbehalfby + appentitysearchview + modifiedonbehalfby 0 - e4525550-c3ba-f011-bbd3-7c1e52365f30 + 5ce5f8b2-5fb9-47ae-98f3-bd6ac504dd55 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_dmsrequeststatus_modifiedby + lk_reportentitybase_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -417941,25 +467794,25 @@ false systemuserid systemuser - lk_msdyn_dmsrequeststatus_modifiedby + lk_reportentitybase_modifiedby modifiedby - msdyn_dmsrequeststatus + reportentity modifiedby 0 - f0525550-c3ba-f011-bbd3-7c1e52365f30 + a3a664b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_dmsrequeststatus_modifiedonbehalfby + lk_stagedattributepicklistvalue_createdby None 1.0 OneToManyRelationship @@ -417995,25 +467848,25 @@ false systemuserid systemuser - lk_msdyn_dmsrequeststatus_modifiedonbehalfby - modifiedonbehalfby - msdyn_dmsrequeststatus - modifiedonbehalfby + lk_stagedattributepicklistvalue_createdby + createdby + stagedattributepicklistvalue + createdby 0 - 02535550-c3ba-f011-bbd3-7c1e52365f30 + bba664b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - user_msdyn_dmsrequeststatus + lk_stagedattributepicklistvalue_createdonbehalfby None 1.0 OneToManyRelationship @@ -418049,25 +467902,25 @@ false systemuserid systemuser - user_msdyn_dmsrequeststatus - owninguser - msdyn_dmsrequeststatus - owninguser + lk_stagedattributepicklistvalue_createdonbehalfby + createdonbehalfby + stagedattributepicklistvalue + createdonbehalfby 0 - 5a1c6456-c3ba-f011-bbd3-7c1e52365f30 + cea664b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_dmssyncrequest_createdby + lk_stagedattributepicklistvalue_modifiedby None 1.0 OneToManyRelationship @@ -418103,25 +467956,25 @@ false systemuserid systemuser - lk_msdyn_dmssyncrequest_createdby - createdby - msdyn_dmssyncrequest - createdby + lk_stagedattributepicklistvalue_modifiedby + modifiedby + stagedattributepicklistvalue + modifiedby 0 - 601c6456-c3ba-f011-bbd3-7c1e52365f30 + daa664b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_dmssyncrequest_createdonbehalfby + lk_stagedattributepicklistvalue_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -418157,25 +468010,25 @@ false systemuserid systemuser - lk_msdyn_dmssyncrequest_createdonbehalfby - createdonbehalfby - msdyn_dmssyncrequest - createdonbehalfby + lk_stagedattributepicklistvalue_modifiedonbehalfby + modifiedonbehalfby + stagedattributepicklistvalue + modifiedonbehalfby 0 - 661c6456-c3ba-f011-bbd3-7c1e52365f30 + aba764b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_dmssyncrequest_modifiedby + lk_stagedentity_createdby None 1.0 OneToManyRelationship @@ -418211,25 +468064,25 @@ false systemuserid systemuser - lk_msdyn_dmssyncrequest_modifiedby - modifiedby - msdyn_dmssyncrequest - modifiedby + lk_stagedentity_createdby + createdby + stagedentity + createdby 0 - 6c1c6456-c3ba-f011-bbd3-7c1e52365f30 + b1a764b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_dmssyncrequest_modifiedonbehalfby + lk_stagedentity_createdonbehalfby None 1.0 OneToManyRelationship @@ -418265,25 +468118,25 @@ false systemuserid systemuser - lk_msdyn_dmssyncrequest_modifiedonbehalfby - modifiedonbehalfby - msdyn_dmssyncrequest - modifiedonbehalfby + lk_stagedentity_createdonbehalfby + createdonbehalfby + stagedentity + createdonbehalfby 0 - 7e1c6456-c3ba-f011-bbd3-7c1e52365f30 + b7a764b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - user_msdyn_dmssyncrequest + lk_stagedentity_modifiedby None 1.0 OneToManyRelationship @@ -418319,25 +468172,25 @@ false systemuserid systemuser - user_msdyn_dmssyncrequest - owninguser - msdyn_dmssyncrequest - owninguser + lk_stagedentity_modifiedby + modifiedby + stagedentity + modifiedby 0 - 3c1d6456-c3ba-f011-bbd3-7c1e52365f30 + c3a764b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_dmssyncstatus_createdby + lk_stagedentity_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -418373,25 +468226,79 @@ false systemuserid systemuser - lk_msdyn_dmssyncstatus_createdby + lk_stagedentity_modifiedonbehalfby + modifiedonbehalfby + stagedentity + modifiedonbehalfby + + 0 + + + 22a964b3-acba-f011-bbd3-7c1e52365f30 + + false + + false + iscustomizable + true + + true + true + lk_stagedentityattribute_createdby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_stagedentityattribute_createdby createdby - msdyn_dmssyncstatus + stagedentityattribute createdby 0 - 421d6456-c3ba-f011-bbd3-7c1e52365f30 + 2ea964b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_dmssyncstatus_createdonbehalfby + lk_stagedentityattribute_createdonbehalfby None 1.0 OneToManyRelationship @@ -418427,25 +468334,25 @@ false systemuserid systemuser - lk_msdyn_dmssyncstatus_createdonbehalfby + lk_stagedentityattribute_createdonbehalfby createdonbehalfby - msdyn_dmssyncstatus + stagedentityattribute createdonbehalfby 0 - 481d6456-c3ba-f011-bbd3-7c1e52365f30 + 48a964b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_dmssyncstatus_modifiedby + lk_stagedentityattribute_modifiedby None 1.0 OneToManyRelationship @@ -418481,25 +468388,25 @@ false systemuserid systemuser - lk_msdyn_dmssyncstatus_modifiedby + lk_stagedentityattribute_modifiedby modifiedby - msdyn_dmssyncstatus + stagedentityattribute modifiedby 0 - 4e1d6456-c3ba-f011-bbd3-7c1e52365f30 + 5ba964b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_dmssyncstatus_modifiedonbehalfby + lk_stagedentityattribute_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -418535,79 +468442,25 @@ false systemuserid systemuser - lk_msdyn_dmssyncstatus_modifiedonbehalfby + lk_stagedentityattribute_modifiedonbehalfby modifiedonbehalfby - msdyn_dmssyncstatus + stagedentityattribute modifiedonbehalfby 0 - 601d6456-c3ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - user_msdyn_dmssyncstatus - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - user_msdyn_dmssyncstatus - owninguser - msdyn_dmssyncstatus - owninguser - - 0 - - - 031f6456-c3ba-f011-bbd3-7c1e52365f30 + 7eaa64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgeassetconfiguration_createdby + lk_stagedentityrelationship_createdby None 1.0 OneToManyRelationship @@ -418643,25 +468496,25 @@ false systemuserid systemuser - lk_msdyn_knowledgeassetconfiguration_createdby + lk_stagedentityrelationship_createdby createdby - msdyn_knowledgeassetconfiguration + stagedentityrelationship createdby 0 - 1d1f6456-c3ba-f011-bbd3-7c1e52365f30 + 86aa64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgeassetconfiguration_createdonbehalfby + lk_stagedentityrelationship_createdonbehalfby None 1.0 OneToManyRelationship @@ -418697,25 +468550,25 @@ false systemuserid systemuser - lk_msdyn_knowledgeassetconfiguration_createdonbehalfby + lk_stagedentityrelationship_createdonbehalfby createdonbehalfby - msdyn_knowledgeassetconfiguration + stagedentityrelationship createdonbehalfby 0 - 231f6456-c3ba-f011-bbd3-7c1e52365f30 + 8caa64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgeassetconfiguration_modifiedby + lk_stagedentityrelationship_modifiedby None 1.0 OneToManyRelationship @@ -418751,25 +468604,25 @@ false systemuserid systemuser - lk_msdyn_knowledgeassetconfiguration_modifiedby + lk_stagedentityrelationship_modifiedby modifiedby - msdyn_knowledgeassetconfiguration + stagedentityrelationship modifiedby 0 - 311f6456-c3ba-f011-bbd3-7c1e52365f30 + 92aa64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgeassetconfiguration_modifiedonbehalfby + lk_stagedentityrelationship_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -418805,25 +468658,25 @@ false systemuserid systemuser - lk_msdyn_knowledgeassetconfiguration_modifiedonbehalfby + lk_stagedentityrelationship_modifiedonbehalfby modifiedonbehalfby - msdyn_knowledgeassetconfiguration + stagedentityrelationship modifiedonbehalfby 0 - 4d1f6456-c3ba-f011-bbd3-7c1e52365f30 + 8cab64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - user_msdyn_knowledgeassetconfiguration + lk_stagedentityrelationshiprelationships_createdby None 1.0 OneToManyRelationship @@ -418859,81 +468712,27 @@ false systemuserid systemuser - user_msdyn_knowledgeassetconfiguration - owninguser - msdyn_knowledgeassetconfiguration - owninguser - - 0 - - - 5a216456-c3ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_msdyn_modulerundetail_createdby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_msdyn_modulerundetail_createdby + lk_stagedentityrelationshiprelationships_createdby createdby - msdyn_modulerundetail + stagedentityrelationshiprelationships createdby 0 - 60216456-c3ba-f011-bbd3-7c1e52365f30 + 96ab64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_modulerundetail_createdonbehalfby + lk_stagedentityrelationshiprelationships_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -418967,27 +468766,27 @@ false systemuserid systemuser - lk_msdyn_modulerundetail_createdonbehalfby + lk_stagedentityrelationshiprelationships_createdonbehalfby createdonbehalfby - msdyn_modulerundetail + stagedentityrelationshiprelationships createdonbehalfby 0 - 66216456-c3ba-f011-bbd3-7c1e52365f30 + 9cab64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_modulerundetail_modifiedby + lk_stagedentityrelationshiprelationships_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -419021,27 +468820,27 @@ false systemuserid systemuser - lk_msdyn_modulerundetail_modifiedby + lk_stagedentityrelationshiprelationships_modifiedby modifiedby - msdyn_modulerundetail + stagedentityrelationshiprelationships modifiedby 0 - 6c216456-c3ba-f011-bbd3-7c1e52365f30 + a2ab64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_modulerundetail_modifiedonbehalfby + lk_stagedentityrelationshiprelationships_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -419075,27 +468874,27 @@ false systemuserid systemuser - lk_msdyn_modulerundetail_modifiedonbehalfby + lk_stagedentityrelationshiprelationships_modifiedonbehalfby modifiedonbehalfby - msdyn_modulerundetail + stagedentityrelationshiprelationships modifiedonbehalfby 0 - 68236456-c3ba-f011-bbd3-7c1e52365f30 + caac64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_qna_createdby + lk_stagedentityrelationshiprole_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -419129,27 +468928,27 @@ false systemuserid systemuser - lk_msdyn_qna_createdby + lk_stagedentityrelationshiprole_createdby createdby - msdyn_qna + stagedentityrelationshiprole createdby 0 - 6e236456-c3ba-f011-bbd3-7c1e52365f30 + d8ac64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_qna_createdonbehalfby + lk_stagedentityrelationshiprole_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -419183,27 +468982,27 @@ false systemuserid systemuser - lk_msdyn_qna_createdonbehalfby + lk_stagedentityrelationshiprole_createdonbehalfby createdonbehalfby - msdyn_qna + stagedentityrelationshiprole createdonbehalfby 0 - 74236456-c3ba-f011-bbd3-7c1e52365f30 + e4ac64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_qna_modifiedby + lk_stagedentityrelationshiprole_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -419237,27 +469036,27 @@ false systemuserid systemuser - lk_msdyn_qna_modifiedby + lk_stagedentityrelationshiprole_modifiedby modifiedby - msdyn_qna + stagedentityrelationshiprole modifiedby 0 - 7a236456-c3ba-f011-bbd3-7c1e52365f30 + edac64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_qna_modifiedonbehalfby + lk_stagedentityrelationshiprole_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -419291,27 +469090,27 @@ false systemuserid systemuser - lk_msdyn_qna_modifiedonbehalfby + lk_stagedentityrelationshiprole_modifiedonbehalfby modifiedonbehalfby - msdyn_qna + stagedentityrelationshiprole modifiedonbehalfby 0 - 8c236456-c3ba-f011-bbd3-7c1e52365f30 + 6aad64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - user_msdyn_qna + lk_stagedmetadataasyncoperation_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -419345,25 +469144,25 @@ false systemuserid systemuser - user_msdyn_qna - owninguser - msdyn_qna - owninguser + lk_stagedmetadataasyncoperation_createdby + createdby + stagedmetadataasyncoperation + createdby 0 - cf04cb5c-c3ba-f011-bbd3-7c1e52365f30 + 70ad64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_salesforcestructuredobject_createdby + lk_stagedmetadataasyncoperation_createdonbehalfby None 1.0 OneToManyRelationship @@ -419399,25 +469198,25 @@ false systemuserid systemuser - lk_msdyn_salesforcestructuredobject_createdby - createdby - msdyn_salesforcestructuredobject - createdby + lk_stagedmetadataasyncoperation_createdonbehalfby + createdonbehalfby + stagedmetadataasyncoperation + createdonbehalfby 0 - d504cb5c-c3ba-f011-bbd3-7c1e52365f30 + 76ad64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_salesforcestructuredobject_createdonbehalfby + lk_stagedmetadataasyncoperation_modifiedby None 1.0 OneToManyRelationship @@ -419453,25 +469252,25 @@ false systemuserid systemuser - lk_msdyn_salesforcestructuredobject_createdonbehalfby - createdonbehalfby - msdyn_salesforcestructuredobject - createdonbehalfby + lk_stagedmetadataasyncoperation_modifiedby + modifiedby + stagedmetadataasyncoperation + modifiedby 0 - dd04cb5c-c3ba-f011-bbd3-7c1e52365f30 + 7cad64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_salesforcestructuredobject_modifiedby + lk_stagedmetadataasyncoperation_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -419507,25 +469306,25 @@ false systemuserid systemuser - lk_msdyn_salesforcestructuredobject_modifiedby - modifiedby - msdyn_salesforcestructuredobject - modifiedby + lk_stagedmetadataasyncoperation_modifiedonbehalfby + modifiedonbehalfby + stagedmetadataasyncoperation + modifiedonbehalfby 0 - e704cb5c-c3ba-f011-bbd3-7c1e52365f30 + 7bae64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_salesforcestructuredobject_modifiedonbehalfby + lk_stagedoptionset_createdby None 1.0 OneToManyRelationship @@ -419561,25 +469360,25 @@ false systemuserid systemuser - lk_msdyn_salesforcestructuredobject_modifiedonbehalfby - modifiedonbehalfby - msdyn_salesforcestructuredobject - modifiedonbehalfby + lk_stagedoptionset_createdby + createdby + stagedoptionset + createdby 0 - 1705cb5c-c3ba-f011-bbd3-7c1e52365f30 + 81ae64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - user_msdyn_salesforcestructuredobject + lk_stagedoptionset_createdonbehalfby None 1.0 OneToManyRelationship @@ -419615,25 +469414,25 @@ false systemuserid systemuser - user_msdyn_salesforcestructuredobject - owninguser - msdyn_salesforcestructuredobject - owninguser + lk_stagedoptionset_createdonbehalfby + createdonbehalfby + stagedoptionset + createdonbehalfby 0 - 2706cb5c-c3ba-f011-bbd3-7c1e52365f30 + 87ae64b3-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_salesforcestructuredqnaconfig_createdby + lk_stagedoptionset_modifiedby None 1.0 OneToManyRelationship @@ -419669,15 +469468,123 @@ false systemuserid systemuser - lk_msdyn_salesforcestructuredqnaconfig_createdby - createdby - msdyn_salesforcestructuredqnaconfig - createdby + lk_stagedoptionset_modifiedby + modifiedby + stagedoptionset + modifiedby 0 - 2d06cb5c-c3ba-f011-bbd3-7c1e52365f30 + 8dae64b3-acba-f011-bbd3-7c1e52365f30 + + false + + false + iscustomizable + true + + true + true + lk_stagedoptionset_modifiedonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_stagedoptionset_modifiedonbehalfby + modifiedonbehalfby + stagedoptionset + modifiedonbehalfby + + 0 + + + f97794b3-be88-44b0-b4dc-4b623347519b + + false + + false + iscustomizable + true + + true + true + lk_knowledgearticleviews_modifiedonbehalfby + None + 8.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_knowledgearticleviews_modifiedonbehalfby + modifiedonbehalfby + knowledgearticleviews + modifiedonbehalfby + + 0 + + + c473b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -419687,7 +469594,7 @@ false true - lk_msdyn_salesforcestructuredqnaconfig_createdonbehalfby + lk_msdyn_kmfederatedsearchconfig_createdby None 1.0 OneToManyRelationship @@ -419723,15 +469630,69 @@ false systemuserid systemuser - lk_msdyn_salesforcestructuredqnaconfig_createdonbehalfby + lk_msdyn_kmfederatedsearchconfig_createdby + createdby + msdyn_kmfederatedsearchconfig + createdby + + 0 + + + ca73b0b3-caba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_msdyn_kmfederatedsearchconfig_createdonbehalfby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_msdyn_kmfederatedsearchconfig_createdonbehalfby createdonbehalfby - msdyn_salesforcestructuredqnaconfig + msdyn_kmfederatedsearchconfig createdonbehalfby 0 - 3306cb5c-c3ba-f011-bbd3-7c1e52365f30 + d073b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -419741,7 +469702,7 @@ false true - lk_msdyn_salesforcestructuredqnaconfig_modifiedby + lk_msdyn_kmfederatedsearchconfig_modifiedby None 1.0 OneToManyRelationship @@ -419777,15 +469738,15 @@ false systemuserid systemuser - lk_msdyn_salesforcestructuredqnaconfig_modifiedby + lk_msdyn_kmfederatedsearchconfig_modifiedby modifiedby - msdyn_salesforcestructuredqnaconfig + msdyn_kmfederatedsearchconfig modifiedby 0 - 3906cb5c-c3ba-f011-bbd3-7c1e52365f30 + d673b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -419795,7 +469756,7 @@ false true - lk_msdyn_salesforcestructuredqnaconfig_modifiedonbehalfby + lk_msdyn_kmfederatedsearchconfig_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -419831,15 +469792,15 @@ false systemuserid systemuser - lk_msdyn_salesforcestructuredqnaconfig_modifiedonbehalfby + lk_msdyn_kmfederatedsearchconfig_modifiedonbehalfby modifiedonbehalfby - msdyn_salesforcestructuredqnaconfig + msdyn_kmfederatedsearchconfig modifiedonbehalfby 0 - 4b06cb5c-c3ba-f011-bbd3-7c1e52365f30 + e873b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -419849,7 +469810,7 @@ false true - user_msdyn_salesforcestructuredqnaconfig + user_msdyn_kmfederatedsearchconfig None 1.0 OneToManyRelationship @@ -419885,15 +469846,15 @@ false systemuserid systemuser - user_msdyn_salesforcestructuredqnaconfig + user_msdyn_kmfederatedsearchconfig owninguser - msdyn_salesforcestructuredqnaconfig + msdyn_kmfederatedsearchconfig owninguser 0 - 9a07cb5c-c3ba-f011-bbd3-7c1e52365f30 + 8974b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -419903,7 +469864,7 @@ false true - lk_msdyn_workflowactionstatus_createdby + lk_msdyn_knowledgearticleimage_createdby None 1.0.0.0 OneToManyRelationship @@ -419939,15 +469900,15 @@ false systemuserid systemuser - lk_msdyn_workflowactionstatus_createdby + lk_msdyn_knowledgearticleimage_createdby createdby - msdyn_workflowactionstatus + msdyn_knowledgearticleimage createdby 0 - a007cb5c-c3ba-f011-bbd3-7c1e52365f30 + 8f74b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -419957,7 +469918,7 @@ false true - lk_msdyn_workflowactionstatus_createdonbehalfby + lk_msdyn_knowledgearticleimage_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -419993,15 +469954,15 @@ false systemuserid systemuser - lk_msdyn_workflowactionstatus_createdonbehalfby + lk_msdyn_knowledgearticleimage_createdonbehalfby createdonbehalfby - msdyn_workflowactionstatus + msdyn_knowledgearticleimage createdonbehalfby 0 - a607cb5c-c3ba-f011-bbd3-7c1e52365f30 + 9574b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -420011,7 +469972,7 @@ false true - lk_msdyn_workflowactionstatus_modifiedby + lk_msdyn_knowledgearticleimage_modifiedby None 1.0.0.0 OneToManyRelationship @@ -420047,15 +470008,15 @@ false systemuserid systemuser - lk_msdyn_workflowactionstatus_modifiedby + lk_msdyn_knowledgearticleimage_modifiedby modifiedby - msdyn_workflowactionstatus + msdyn_knowledgearticleimage modifiedby 0 - ad07cb5c-c3ba-f011-bbd3-7c1e52365f30 + 9b74b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -420065,7 +470026,7 @@ false true - lk_msdyn_workflowactionstatus_modifiedonbehalfby + lk_msdyn_knowledgearticleimage_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -420101,25 +470062,25 @@ false systemuserid systemuser - lk_msdyn_workflowactionstatus_modifiedonbehalfby + lk_msdyn_knowledgearticleimage_modifiedonbehalfby modifiedonbehalfby - msdyn_workflowactionstatus + msdyn_knowledgearticleimage modifiedonbehalfby 0 - 5c091424-c4ba-f011-bbd3-7c1e52365f30 + ad74b0b3-caba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_allowedmcpclient_createdby + user_msdyn_knowledgearticleimage None 1.0.0.0 OneToManyRelationship @@ -420155,15 +470116,15 @@ false systemuserid systemuser - lk_allowedmcpclient_createdby - createdby - allowedmcpclient - createdby + user_msdyn_knowledgearticleimage + owninguser + msdyn_knowledgearticleimage + owninguser 0 - 62091424-c4ba-f011-bbd3-7c1e52365f30 + 5b75b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -420173,7 +470134,7 @@ false true - lk_allowedmcpclient_createdonbehalfby + lk_msdyn_knowledgeconfiguration_createdby None 1.0.0.0 OneToManyRelationship @@ -420209,25 +470170,25 @@ false systemuserid systemuser - lk_allowedmcpclient_createdonbehalfby - createdonbehalfby - allowedmcpclient - createdonbehalfby + lk_msdyn_knowledgeconfiguration_createdby + createdby + msdyn_knowledgeconfiguration + createdby 0 - 68091424-c4ba-f011-bbd3-7c1e52365f30 + 6175b0b3-caba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_allowedmcpclient_modifiedby + lk_msdyn_knowledgeconfiguration_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -420263,15 +470224,15 @@ false systemuserid systemuser - lk_allowedmcpclient_modifiedby - modifiedby - allowedmcpclient - modifiedby + lk_msdyn_knowledgeconfiguration_createdonbehalfby + createdonbehalfby + msdyn_knowledgeconfiguration + createdonbehalfby 0 - 6e091424-c4ba-f011-bbd3-7c1e52365f30 + 6775b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -420281,7 +470242,7 @@ false true - lk_allowedmcpclient_modifiedonbehalfby + lk_msdyn_knowledgeconfiguration_modifiedby None 1.0.0.0 OneToManyRelationship @@ -420317,15 +470278,15 @@ false systemuserid systemuser - lk_allowedmcpclient_modifiedonbehalfby - modifiedonbehalfby - allowedmcpclient - modifiedonbehalfby + lk_msdyn_knowledgeconfiguration_modifiedby + modifiedby + msdyn_knowledgeconfiguration + modifiedby 0 - 9e0a1424-c4ba-f011-bbd3-7c1e52365f30 + 6d75b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -420335,9 +470296,9 @@ false true - lk_federatedknowledgecitation_createdby + lk_msdyn_knowledgeconfiguration_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -420371,15 +470332,15 @@ false systemuserid systemuser - lk_federatedknowledgecitation_createdby - createdby - federatedknowledgecitation - createdby + lk_msdyn_knowledgeconfiguration_modifiedonbehalfby + modifiedonbehalfby + msdyn_knowledgeconfiguration + modifiedonbehalfby 0 - a40a1424-c4ba-f011-bbd3-7c1e52365f30 + 0b76b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -420389,9 +470350,9 @@ false true - lk_federatedknowledgecitation_createdonbehalfby + lk_msdyn_knowledgeinteractioninsight_createdby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -420425,15 +470386,15 @@ false systemuserid systemuser - lk_federatedknowledgecitation_createdonbehalfby - createdonbehalfby - federatedknowledgecitation - createdonbehalfby + lk_msdyn_knowledgeinteractioninsight_createdby + createdby + msdyn_knowledgeinteractioninsight + createdby 0 - aa0a1424-c4ba-f011-bbd3-7c1e52365f30 + 1176b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -420443,9 +470404,9 @@ false true - lk_federatedknowledgecitation_modifiedby + lk_msdyn_knowledgeinteractioninsight_createdonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -420479,15 +470440,15 @@ false systemuserid systemuser - lk_federatedknowledgecitation_modifiedby - modifiedby - federatedknowledgecitation - modifiedby + lk_msdyn_knowledgeinteractioninsight_createdonbehalfby + createdonbehalfby + msdyn_knowledgeinteractioninsight + createdonbehalfby 0 - b00a1424-c4ba-f011-bbd3-7c1e52365f30 + 1776b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -420497,9 +470458,9 @@ false true - lk_federatedknowledgecitation_modifiedonbehalfby + lk_msdyn_knowledgeinteractioninsight_modifiedby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -420533,15 +470494,15 @@ false systemuserid systemuser - lk_federatedknowledgecitation_modifiedonbehalfby - modifiedonbehalfby - federatedknowledgecitation - modifiedonbehalfby + lk_msdyn_knowledgeinteractioninsight_modifiedby + modifiedby + msdyn_knowledgeinteractioninsight + modifiedby 0 - c20a1424-c4ba-f011-bbd3-7c1e52365f30 + 1d76b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -420551,9 +470512,9 @@ false true - user_federatedknowledgecitation + lk_msdyn_knowledgeinteractioninsight_modifiedonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -420587,27 +470548,27 @@ false systemuserid systemuser - user_federatedknowledgecitation - owninguser - federatedknowledgecitation - owninguser + lk_msdyn_knowledgeinteractioninsight_modifiedonbehalfby + modifiedonbehalfby + msdyn_knowledgeinteractioninsight + modifiedonbehalfby 0 - 300c1424-c4ba-f011-bbd3-7c1e52365f30 + 2f76b0b3-caba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_federatedknowledgeconfiguration_createdby + user_msdyn_knowledgeinteractioninsight None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -420641,15 +470602,15 @@ false systemuserid systemuser - lk_federatedknowledgeconfiguration_createdby - createdby - federatedknowledgeconfiguration - createdby + user_msdyn_knowledgeinteractioninsight + owninguser + msdyn_knowledgeinteractioninsight + owninguser 0 - 380c1424-c4ba-f011-bbd3-7c1e52365f30 + dd76b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -420659,9 +470620,9 @@ false true - lk_federatedknowledgeconfiguration_createdonbehalfby + lk_msdyn_knowledgesearchinsight_createdby None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -420695,27 +470656,27 @@ false systemuserid systemuser - lk_federatedknowledgeconfiguration_createdonbehalfby - createdonbehalfby - federatedknowledgeconfiguration - createdonbehalfby + lk_msdyn_knowledgesearchinsight_createdby + createdby + msdyn_knowledgesearchinsight + createdby 0 - 410c1424-c4ba-f011-bbd3-7c1e52365f30 + e376b0b3-caba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_federatedknowledgeconfiguration_modifiedby + lk_msdyn_knowledgesearchinsight_createdonbehalfby None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -420749,15 +470710,15 @@ false systemuserid systemuser - lk_federatedknowledgeconfiguration_modifiedby - modifiedby - federatedknowledgeconfiguration - modifiedby + lk_msdyn_knowledgesearchinsight_createdonbehalfby + createdonbehalfby + msdyn_knowledgesearchinsight + createdonbehalfby 0 - 490c1424-c4ba-f011-bbd3-7c1e52365f30 + e976b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -420767,9 +470728,9 @@ false true - lk_federatedknowledgeconfiguration_modifiedonbehalfby + lk_msdyn_knowledgesearchinsight_modifiedby None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -420803,27 +470764,27 @@ false systemuserid systemuser - lk_federatedknowledgeconfiguration_modifiedonbehalfby - modifiedonbehalfby - federatedknowledgeconfiguration - modifiedonbehalfby + lk_msdyn_knowledgesearchinsight_modifiedby + modifiedby + msdyn_knowledgesearchinsight + modifiedby 0 - 5f0c1424-c4ba-f011-bbd3-7c1e52365f30 + ef76b0b3-caba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_federatedknowledgeconfiguration + lk_msdyn_knowledgesearchinsight_modifiedonbehalfby None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -420857,27 +470818,27 @@ false systemuserid systemuser - user_federatedknowledgeconfiguration - owninguser - federatedknowledgeconfiguration - owninguser + lk_msdyn_knowledgesearchinsight_modifiedonbehalfby + modifiedonbehalfby + msdyn_knowledgesearchinsight + modifiedonbehalfby 0 - 060e1424-c4ba-f011-bbd3-7c1e52365f30 + 0177b0b3-caba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_federatedknowledgeentityconfiguration_createdby + user_msdyn_knowledgesearchinsight None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -420911,27 +470872,27 @@ false systemuserid systemuser - lk_federatedknowledgeentityconfiguration_createdby - createdby - federatedknowledgeentityconfiguration - createdby + user_msdyn_knowledgesearchinsight + owninguser + msdyn_knowledgesearchinsight + owninguser 0 - 0c0e1424-c4ba-f011-bbd3-7c1e52365f30 + 56b7fdb3-87cd-4e6a-bcbe-30e218c24d93 false - true + false iscustomizable - true + false - false - true - lk_federatedknowledgeentityconfiguration_createdonbehalfby + true + false + lk_timezonedefinition_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -420965,27 +470926,27 @@ false systemuserid systemuser - lk_federatedknowledgeentityconfiguration_createdonbehalfby + lk_timezonedefinition_createdonbehalfby createdonbehalfby - federatedknowledgeentityconfiguration + timezonedefinition createdonbehalfby 0 - 120e1424-c4ba-f011-bbd3-7c1e52365f30 + 810f8db4-9acc-4b26-bfde-36476a5eb072 false - true + false iscustomizable false - false - true - lk_federatedknowledgeentityconfiguration_modifiedby + true + false + lk_wizardaccessprivilege_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -421019,27 +470980,27 @@ false systemuserid systemuser - lk_federatedknowledgeentityconfiguration_modifiedby - modifiedby - federatedknowledgeentityconfiguration - modifiedby + lk_wizardaccessprivilege_createdby + createdby + wizardaccessprivilege + createdby 0 - 180e1424-c4ba-f011-bbd3-7c1e52365f30 + 7fb6b1b4-2293-4c6f-8ff5-bab0dcc31216 false - true + false iscustomizable - true + false - false - true - lk_federatedknowledgeentityconfiguration_modifiedonbehalfby + true + false + modifiedby_sdkmessageprocessingstepsecureconfig None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -421073,27 +471034,27 @@ false systemuserid systemuser - lk_federatedknowledgeentityconfiguration_modifiedonbehalfby - modifiedonbehalfby - federatedknowledgeentityconfiguration - modifiedonbehalfby + modifiedby_sdkmessageprocessingstepsecureconfig + modifiedby + sdkmessageprocessingstepsecureconfig + modifiedby 0 - 2a0e1424-c4ba-f011-bbd3-7c1e52365f30 + c01dc0b4-e173-430b-aea4-859f30e1d355 false - true + false iscustomizable false - false + true true - user_federatedknowledgeentityconfiguration + lk_processtriggerbase_modifiedonbehalfby None - 1.0.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -421127,30 +471088,30 @@ false systemuserid systemuser - user_federatedknowledgeentityconfiguration - owninguser - federatedknowledgeentityconfiguration - owninguser + lk_processtriggerbase_modifiedonbehalfby + modifiedonbehalfby + processtrigger + modifiedonbehalfby 0 - 2dab3d2a-c4ba-f011-bbd3-7c1e52365f30 + 32c001b5-ee30-4745-aa69-4669690d7eaa false - true + false iscustomizable true - false + true true - lk_federatedknowledgemetadatarefresh_createdby + lk_mailboxtrackingfolder_modifiedonbehalfby None - 1.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -421181,27 +471142,27 @@ false systemuserid systemuser - lk_federatedknowledgemetadatarefresh_createdby - createdby - federatedknowledgemetadatarefresh - createdby + lk_mailboxtrackingfolder_modifiedonbehalfby + modifiedonbehalfby + mailboxtrackingfolder + modifiedonbehalfby 0 - 33ab3d2a-c4ba-f011-bbd3-7c1e52365f30 + de6142b5-b050-4535-8729-0d63aaa32aad false - true + false iscustomizable true - false + true true - lk_federatedknowledgemetadatarefresh_createdonbehalfby + lk_ChannelProperty_modifiedonbehalfby None - 1.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -421235,27 +471196,27 @@ false systemuserid systemuser - lk_federatedknowledgemetadatarefresh_createdonbehalfby - createdonbehalfby - federatedknowledgemetadatarefresh - createdonbehalfby + lk_ChannelProperty_modifiedonbehalfby + modifiedonbehalfby + channelproperty + modifiedonbehalfby 0 - 39ab3d2a-c4ba-f011-bbd3-7c1e52365f30 + e6ec4ab5-8135-408c-b6f1-5a095cfbdbd4 false - true + false iscustomizable - true + false - false + true true - lk_federatedknowledgemetadatarefresh_modifiedby + lk_asyncoperation_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -421289,27 +471250,27 @@ false systemuserid systemuser - lk_federatedknowledgemetadatarefresh_modifiedby - modifiedby - federatedknowledgemetadatarefresh - modifiedby + lk_asyncoperation_createdby + createdby + asyncoperation + createdby 0 - 3fab3d2a-c4ba-f011-bbd3-7c1e52365f30 + c31a47b6-2fd4-4d38-92c4-03b690f447ef false - true + false iscustomizable - true + false - false + true true - lk_federatedknowledgemetadatarefresh_modifiedonbehalfby + lk_emailsignaturebase_createdonbehalfby None - 1.0 + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -421343,27 +471304,27 @@ false systemuserid systemuser - lk_federatedknowledgemetadatarefresh_modifiedonbehalfby - modifiedonbehalfby - federatedknowledgemetadatarefresh - modifiedonbehalfby + lk_emailsignaturebase_createdonbehalfby + createdonbehalfby + emailsignature + createdonbehalfby 0 - 51ab3d2a-c4ba-f011-bbd3-7c1e52365f30 + c18951b6-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_federatedknowledgemetadatarefresh + lk_customapirequestparameter_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -421397,15 +471358,15 @@ false systemuserid systemuser - user_federatedknowledgemetadatarefresh - owninguser - federatedknowledgemetadatarefresh - owninguser + lk_customapirequestparameter_createdby + createdby + customapirequestparameter + createdby 0 - adac3d2a-c4ba-f011-bbd3-7c1e52365f30 + c88951b6-aeba-f011-bbd3-7c1e52365f30 false @@ -421415,7 +471376,7 @@ false true - lk_intelligentmemory_createdby + lk_customapirequestparameter_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -421451,25 +471412,25 @@ false systemuserid systemuser - lk_intelligentmemory_createdby - createdby - intelligentmemory - createdby + lk_customapirequestparameter_createdonbehalfby + createdonbehalfby + customapirequestparameter + createdonbehalfby 0 - b3ac3d2a-c4ba-f011-bbd3-7c1e52365f30 + ce8951b6-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_intelligentmemory_createdonbehalfby + lk_customapirequestparameter_modifiedby None 1.0.0.0 OneToManyRelationship @@ -421505,15 +471466,15 @@ false systemuserid systemuser - lk_intelligentmemory_createdonbehalfby - createdonbehalfby - intelligentmemory - createdonbehalfby + lk_customapirequestparameter_modifiedby + modifiedby + customapirequestparameter + modifiedby 0 - c1ac3d2a-c4ba-f011-bbd3-7c1e52365f30 + d48951b6-aeba-f011-bbd3-7c1e52365f30 false @@ -421523,7 +471484,7 @@ false true - lk_intelligentmemory_modifiedby + lk_customapirequestparameter_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -421559,25 +471520,25 @@ false systemuserid systemuser - lk_intelligentmemory_modifiedby - modifiedby - intelligentmemory - modifiedby + lk_customapirequestparameter_modifiedonbehalfby + modifiedonbehalfby + customapirequestparameter + modifiedonbehalfby 0 - cbac3d2a-c4ba-f011-bbd3-7c1e52365f30 + be8a51b6-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_intelligentmemory_modifiedonbehalfby + lk_customapiresponseproperty_createdby None 1.0.0.0 OneToManyRelationship @@ -421613,15 +471574,15 @@ false systemuserid systemuser - lk_intelligentmemory_modifiedonbehalfby - modifiedonbehalfby - intelligentmemory - modifiedonbehalfby + lk_customapiresponseproperty_createdby + createdby + customapiresponseproperty + createdby 0 - e5ac3d2a-c4ba-f011-bbd3-7c1e52365f30 + c48a51b6-aeba-f011-bbd3-7c1e52365f30 false @@ -421631,7 +471592,7 @@ false true - user_intelligentmemory + lk_customapiresponseproperty_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -421667,27 +471628,27 @@ false systemuserid systemuser - user_intelligentmemory - owninguser - intelligentmemory - owninguser + lk_customapiresponseproperty_createdonbehalfby + createdonbehalfby + customapiresponseproperty + createdonbehalfby 0 - 96ad3d2a-c4ba-f011-bbd3-7c1e52365f30 + ca8a51b6-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_knowledgefaq_createdby + lk_customapiresponseproperty_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -421721,27 +471682,27 @@ false systemuserid systemuser - lk_knowledgefaq_createdby - createdby - knowledgefaq - createdby + lk_customapiresponseproperty_modifiedby + modifiedby + customapiresponseproperty + modifiedby 0 - 9ead3d2a-c4ba-f011-bbd3-7c1e52365f30 + fc4363b6-6e0a-49da-b2d2-95db79921b95 false - true + false iscustomizable true - false + true true - lk_knowledgefaq_createdonbehalfby + lk_translationprocess_createdby None - 1.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -421775,27 +471736,27 @@ false systemuserid systemuser - lk_knowledgefaq_createdonbehalfby - createdonbehalfby - knowledgefaq - createdonbehalfby + lk_translationprocess_createdby + createdby + translationprocess + createdbyname 0 - a7ad3d2a-c4ba-f011-bbd3-7c1e52365f30 + 5ed693b6-44ce-46d8-bb93-8f4c5a6ab47e false - true + false iscustomizable - true + false - false + true true - lk_knowledgefaq_modifiedby + lk_routingrule_createdonbehalfby None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -421829,27 +471790,27 @@ false systemuserid systemuser - lk_knowledgefaq_modifiedby - modifiedby - knowledgefaq - modifiedby + lk_routingrule_createdonbehalfby + createdonbehalfby + routingrule + createdonbehalfby 0 - afad3d2a-c4ba-f011-bbd3-7c1e52365f30 + 89d9acb6-4ce5-41d1-864f-1af7c05b86f4 false - true + false iscustomizable - true + false - false - true - lk_knowledgefaq_modifiedonbehalfby + true + false + lk_importentitymapping_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -421883,27 +471844,27 @@ false systemuserid systemuser - lk_knowledgefaq_modifiedonbehalfby - modifiedonbehalfby - knowledgefaq - modifiedonbehalfby + lk_importentitymapping_modifiedby + modifiedby + importentitymapping + modifiedby 0 - c6ad3d2a-c4ba-f011-bbd3-7c1e52365f30 + b2e7b0b6-2d37-df11-8c67-00155d2a9007 false - true + false iscustomizable true - false + true true - user_knowledgefaq + user_sharepointdocumentlocation None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -421937,47 +471898,47 @@ false systemuserid systemuser - user_knowledgefaq + user_sharepointdocumentlocation owninguser - knowledgefaq + sharepointdocumentlocation owninguser 0 - 47af3d2a-c4ba-f011-bbd3-7c1e52365f30 + 6c4a5cb7-e6ba-f011-bbd3-7c1e52365f30 - false + true - true + false iscustomizable - false + true - false + true true - lk_msdyn_formmapping_createdby - None - 1.0 + sa_suggestedaction_CompletedBy_systemuser + Append + 9.2.0.5 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 - NoCascade + RemoveLink NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -421991,27 +471952,27 @@ false systemuserid systemuser - lk_msdyn_formmapping_createdby - createdby - msdyn_formmapping - createdby + sa_suggestedaction_CompletedBy_systemuser + sa_completedby + sa_suggestedaction + sa_CompletedBy - 0 + 1 - 5daf3d2a-c4ba-f011-bbd3-7c1e52365f30 + 62756db7-3435-4e38-be42-631fa3aee9bd false - true + false iscustomizable - true + false - false + true true - lk_msdyn_formmapping_createdonbehalfby + lk_subject_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -422045,27 +472006,27 @@ false systemuserid systemuser - lk_msdyn_formmapping_createdonbehalfby - createdonbehalfby - msdyn_formmapping - createdonbehalfby + lk_subject_modifiedonbehalfby + modifiedonbehalfby + subject + modifiedonbehalfby 0 - 73af3d2a-c4ba-f011-bbd3-7c1e52365f30 + 2468bdb7-d841-46af-b237-e53e3099640f false - true + false iscustomizable - false + true - false + true true - lk_msdyn_formmapping_modifiedby + user_slabase None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -422099,27 +472060,27 @@ false systemuserid systemuser - lk_msdyn_formmapping_modifiedby - modifiedby - msdyn_formmapping - modifiedby + user_slabase + owninguser + sla + owninguser 0 - 87af3d2a-c4ba-f011-bbd3-7c1e52365f30 + c1b0c7b7-3433-428c-86a2-c9650d56d355 false - true + false iscustomizable true - false + true true - lk_msdyn_formmapping_modifiedonbehalfby + lk_email_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -422153,27 +472114,27 @@ false systemuserid systemuser - lk_msdyn_formmapping_modifiedonbehalfby + lk_email_modifiedonbehalfby modifiedonbehalfby - msdyn_formmapping - modifiedonbehalfby + email + modifiedonbehalfby_email 0 - a2af3d2a-c4ba-f011-bbd3-7c1e52365f30 + 8fb6f1b7-b0b9-4513-a563-fc9257137f25 false - true + false iscustomizable false - false - true - user_msdyn_formmapping + true + false + lk_importentitymapping_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -422207,27 +472168,27 @@ false systemuserid systemuser - user_msdyn_formmapping - owninguser - msdyn_formmapping - owninguser + lk_importentitymapping_modifiedonbehalfby + modifiedonbehalfby + importentitymapping + modifiedonbehalfby 0 - 5d79b208-c5ba-f011-bbd3-7c1e52365f30 + c81c08b8-698e-4195-babc-2fc7d011db50 false - true + false iscustomizable false - false + true true - lk_msdyn_copilotinteractions_createdby + lk_teamtemplate_modifiedby None - 2.0.0.100 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -422261,15 +472222,15 @@ false systemuserid systemuser - lk_msdyn_copilotinteractions_createdby - createdby - msdyn_copilotinteractions - createdby + lk_teamtemplate_modifiedby + modifiedby + teamtemplate + modifiedby 0 - 6379b208-c5ba-f011-bbd3-7c1e52365f30 + 780733b8-cdba-f011-bbd3-7c1e52365f30 false @@ -422279,9 +472240,9 @@ false true - lk_msdyn_copilotinteractions_createdonbehalfby + lk_mcpserver_createdby None - 2.0.0.100 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -422315,27 +472276,27 @@ false systemuserid systemuser - lk_msdyn_copilotinteractions_createdonbehalfby - createdonbehalfby - msdyn_copilotinteractions - createdonbehalfby + lk_mcpserver_createdby + createdby + mcpserver + createdby 0 - 6979b208-c5ba-f011-bbd3-7c1e52365f30 + 7e0733b8-cdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_copilotinteractions_modifiedby + lk_mcpserver_createdonbehalfby None - 2.0.0.100 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -422369,15 +472330,15 @@ false systemuserid systemuser - lk_msdyn_copilotinteractions_modifiedby - modifiedby - msdyn_copilotinteractions - modifiedby + lk_mcpserver_createdonbehalfby + createdonbehalfby + mcpserver + createdonbehalfby 0 - 6f79b208-c5ba-f011-bbd3-7c1e52365f30 + 840733b8-cdba-f011-bbd3-7c1e52365f30 false @@ -422387,9 +472348,9 @@ false true - lk_msdyn_copilotinteractions_modifiedonbehalfby + lk_mcpserver_modifiedby None - 2.0.0.100 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -422423,27 +472384,27 @@ false systemuserid systemuser - lk_msdyn_copilotinteractions_modifiedonbehalfby - modifiedonbehalfby - msdyn_copilotinteractions - modifiedonbehalfby + lk_mcpserver_modifiedby + modifiedby + mcpserver + modifiedby 0 - 8179b208-c5ba-f011-bbd3-7c1e52365f30 + 8a0733b8-cdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_copilotinteractions + lk_mcpserver_modifiedonbehalfby None - 2.0.0.100 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -422477,27 +472438,27 @@ false systemuserid systemuser - user_msdyn_copilotinteractions - owninguser - msdyn_copilotinteractions - owninguser + lk_mcpserver_modifiedonbehalfby + modifiedonbehalfby + mcpserver + modifiedonbehalfby 0 - 6f48e5c5-c5ba-f011-bbd3-7c1e52365f30 + 9c0733b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_territorybase_createdby + user_mcpserver None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -422531,27 +472492,27 @@ false systemuserid systemuser - lk_territorybase_createdby - createdby - territory - createdby + user_mcpserver + owninguser + mcpserver + owninguser 0 - 7548e5c5-c5ba-f011-bbd3-7c1e52365f30 + 360833b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_territory_createdonbehalfby + lk_mcptool_createdby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -422585,27 +472546,27 @@ false systemuserid systemuser - lk_territorybase_createdonbehalfby - createdonbehalfby - territory - createdonbehalfby + lk_mcptool_createdby + createdby + mcptool + createdby 0 - 7b48e5c5-c5ba-f011-bbd3-7c1e52365f30 + 3c0833b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_territorybase_modifiedby + lk_mcptool_createdonbehalfby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -422639,27 +472600,27 @@ false systemuserid systemuser - lk_territorybase_modifiedby - modifiedby - territory - modifiedby + lk_mcptool_createdonbehalfby + createdonbehalfby + mcptool + createdonbehalfby 0 - 8148e5c5-c5ba-f011-bbd3-7c1e52365f30 + 420833b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_territory_modifiedonbehalfby + lk_mcptool_modifiedby None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -422693,81 +472654,27 @@ false systemuserid systemuser - lk_territorybase_modifiedonbehalfby - modifiedonbehalfby - territory - modifiedonbehalfby + lk_mcptool_modifiedby + modifiedby + mcptool + modifiedby 0 - c963b2de-c5ba-f011-bbd3-7c1e52365f30 - - false - - false - iscustomizable - true - - true - true - system_user_territories - Append - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - system_user_territories - managerid - territory - managerid - - 1 - - - 047797cd-c6ba-f011-bbd3-7c1e52365f30 + 480833b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_pdfsetting_createdby + lk_mcptool_modifiedonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -422801,27 +472708,27 @@ false systemuserid systemuser - lk_pdfsetting_createdby - createdby - pdfsetting - createdby + lk_mcptool_modifiedonbehalfby + modifiedonbehalfby + mcptool + modifiedonbehalfby 0 - 0a7797cd-c6ba-f011-bbd3-7c1e52365f30 + 5a0833b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_pdfsetting_createdonbehalfby + user_mcptool None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -422855,27 +472762,27 @@ false systemuserid systemuser - lk_pdfsetting_createdonbehalfby - createdonbehalfby - pdfsetting - createdonbehalfby + user_mcptool + owninguser + mcptool + owninguser 0 - 107797cd-c6ba-f011-bbd3-7c1e52365f30 + e30833b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_pdfsetting_modifiedby + lk_toolinggateway_createdby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -422909,27 +472816,27 @@ false systemuserid systemuser - lk_pdfsetting_modifiedby - modifiedby - pdfsetting - modifiedby + lk_toolinggateway_createdby + createdby + toolinggateway + createdby 0 - 167797cd-c6ba-f011-bbd3-7c1e52365f30 + e90833b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_pdfsetting_modifiedonbehalfby + lk_toolinggateway_createdonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -422963,27 +472870,27 @@ false systemuserid systemuser - lk_pdfsetting_modifiedonbehalfby - modifiedonbehalfby - pdfsetting - modifiedonbehalfby + lk_toolinggateway_createdonbehalfby + createdonbehalfby + toolinggateway + createdonbehalfby 0 - 287797cd-c6ba-f011-bbd3-7c1e52365f30 + ef0833b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_pdfsetting + lk_toolinggateway_modifiedby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -423017,27 +472924,27 @@ false systemuserid systemuser - user_pdfsetting - owninguser - pdfsetting - owninguser + lk_toolinggateway_modifiedby + modifiedby + toolinggateway + modifiedby 0 - 475705cb-c7ba-f011-bbd3-7c1e52365f30 + f50833b8-cdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - email_acceptingentity_systemuser - Append - 9.2.0.0 + lk_toolinggateway_modifiedonbehalfby + None + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -423071,27 +472978,27 @@ false systemuserid systemuser - email_acceptingentity_systemuser - acceptingentityid - email - acceptingentityid + lk_toolinggateway_modifiedonbehalfby + modifiedonbehalfby + toolinggateway + modifiedonbehalfby - 1 + 0 - 1c3d437f-c8ba-f011-bbd3-7c1e52365f30 + 070933b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_activityfileattachment_createdby + user_toolinggateway None - 1.0.0.1 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -423125,27 +473032,27 @@ false systemuserid systemuser - lk_activityfileattachment_createdby - createdby - activityfileattachment - createdby + user_toolinggateway + owninguser + toolinggateway + owninguser 0 - 263d437f-c8ba-f011-bbd3-7c1e52365f30 + 820933b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_activityfileattachment_createdonbehalfby + lk_toolinggatewaymcpserver_createdby None - 1.0.0.1 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -423179,27 +473086,27 @@ false systemuserid systemuser - lk_activityfileattachment_createdonbehalfby - createdonbehalfby - activityfileattachment - createdonbehalfby + lk_toolinggatewaymcpserver_createdby + createdby + toolinggatewaymcpserver + createdby 0 - 303d437f-c8ba-f011-bbd3-7c1e52365f30 + 880933b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_activityfileattachment_modifiedby + lk_toolinggatewaymcpserver_createdonbehalfby None - 1.0.0.1 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -423233,27 +473140,27 @@ false systemuserid systemuser - lk_activityfileattachment_modifiedby - modifiedby - activityfileattachment - modifiedby + lk_toolinggatewaymcpserver_createdonbehalfby + createdonbehalfby + toolinggatewaymcpserver + createdonbehalfby 0 - 393d437f-c8ba-f011-bbd3-7c1e52365f30 + 8e0933b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_activityfileattachment_modifiedonbehalfby + lk_toolinggatewaymcpserver_modifiedby None - 1.0.0.1 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -423287,27 +473194,27 @@ false systemuserid systemuser - lk_activityfileattachment_modifiedonbehalfby - modifiedonbehalfby - activityfileattachment - modifiedonbehalfby + lk_toolinggatewaymcpserver_modifiedby + modifiedby + toolinggatewaymcpserver + modifiedby 0 - 4f3d437f-c8ba-f011-bbd3-7c1e52365f30 + 940933b8-cdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - user_activityfileattachment + lk_toolinggatewaymcpserver_modifiedonbehalfby None - 1.0.0.1 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -423341,15 +473248,15 @@ false systemuserid systemuser - user_activityfileattachment - owninguser - activityfileattachment - owninguser + lk_toolinggatewaymcpserver_modifiedonbehalfby + modifiedonbehalfby + toolinggatewaymcpserver + modifiedonbehalfby 0 - 390b3e85-c8ba-f011-bbd3-7c1e52365f30 + a60933b8-cdba-f011-bbd3-7c1e52365f30 false @@ -423359,9 +473266,9 @@ false true - chat_systemuser_createdby + user_toolinggatewaymcpserver None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -423395,30 +473302,30 @@ false systemuserid systemuser - chat_systemuser_createdby - createdby - chat - createdby_chat + user_toolinggatewaymcpserver + owninguser + toolinggatewaymcpserver + owninguser 0 - 3e0b3e85-c8ba-f011-bbd3-7c1e52365f30 + 70ce37b8-2507-4bf7-85b9-e44e8946cfef false - true + false iscustomizable - true + false - false + true true - chat_systemuser_owninguser + lk_partnerapplication_createdonbehalfby None 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -423449,27 +473356,27 @@ false systemuserid systemuser - chat_systemuser_owninguser - owninguser - chat - owninguser_chat + lk_partnerapplication_createdonbehalfby + createdonbehalfby + partnerapplication + createdonbehalfby 0 - 420b3e85-c8ba-f011-bbd3-7c1e52365f30 + 270055b8-0508-4d07-b9b1-075a89d79c79 false - true + false iscustomizable - true + false - false - true - chat_systemuser_modifiedonbehalfby + true + false + createdby_sdkmessage None - 6.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -423503,15 +473410,15 @@ false systemuserid systemuser - chat_systemuser_modifiedonbehalfby - modifiedonbehalfby - chat - modifiedonbehalfby_chat + createdby_sdkmessage + createdby + sdkmessage + createdby 0 - 430b3e85-c8ba-f011-bbd3-7c1e52365f30 + a13061b8-ccba-f011-bbd3-7c1e52365f30 false @@ -423521,9 +473428,9 @@ false true - chat_systemuser_createdonbehalfby + lk_fxexpression_createdby None - 6.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -423557,15 +473464,15 @@ false systemuserid systemuser - chat_systemuser_createdonbehalfby - createdonbehalfby - chat - createdonbehalfby_chat + lk_fxexpression_createdby + createdby + fxexpression + createdby 0 - 440b3e85-c8ba-f011-bbd3-7c1e52365f30 + a73061b8-ccba-f011-bbd3-7c1e52365f30 false @@ -423575,9 +473482,9 @@ false true - chat_systemuser_modifiedby + lk_fxexpression_createdonbehalfby None - 6.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -423611,27 +473518,27 @@ false systemuserid systemuser - chat_systemuser_modifiedby - modifiedby - chat - modifiedby_chat + lk_fxexpression_createdonbehalfby + createdonbehalfby + fxexpression + createdonbehalfby 0 - 5c239191-c8ba-f011-bbd3-7c1e52365f30 + ad3061b8-ccba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - teams_chat_activity_linkrecord_systemUser + lk_fxexpression_modifiedby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -423651,7 +473558,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -423665,27 +473572,27 @@ false systemuserid systemuser - teams_chat_activity_linkrecord - linkedby - chat - LinkedBy + lk_fxexpression_modifiedby + modifiedby + fxexpression + modifiedby 0 - 77239191-c8ba-f011-bbd3-7c1e52365f30 + b33061b8-ccba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - teams_chat_activity_unlinkrecord_systemUser + lk_fxexpression_modifiedonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -423705,7 +473612,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -423719,15 +473626,15 @@ false systemuserid systemuser - teams_chat_activity_unlinkrecord - unlinkedby - chat - UnLinkedBy + lk_fxexpression_modifiedonbehalfby + modifiedonbehalfby + fxexpression + modifiedonbehalfby 0 - 68e1e0ad-c9ba-f011-bbd3-7c1e52365f30 + c53061b8-ccba-f011-bbd3-7c1e52365f30 false @@ -423737,7 +473644,7 @@ false true - lk_msdyn_serviceconfiguration_createdby + user_fxexpression None 1.0 OneToManyRelationship @@ -423773,15 +473680,15 @@ false systemuserid systemuser - lk_msdyn_serviceconfiguration_createdby - createdby - msdyn_serviceconfiguration - createdby + user_fxexpression + owninguser + fxexpression + owninguser 0 - 6ee1e0ad-c9ba-f011-bbd3-7c1e52365f30 + 773161b8-ccba-f011-bbd3-7c1e52365f30 false @@ -423791,9 +473698,9 @@ false true - lk_msdyn_serviceconfiguration_createdonbehalfby + lk_msdyn_function_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -423827,15 +473734,15 @@ false systemuserid systemuser - lk_msdyn_serviceconfiguration_createdonbehalfby - createdonbehalfby - msdyn_serviceconfiguration - createdonbehalfby + lk_msdyn_function_createdby + createdby + msdyn_function + createdby 0 - 74e1e0ad-c9ba-f011-bbd3-7c1e52365f30 + 7d3161b8-ccba-f011-bbd3-7c1e52365f30 false @@ -423845,9 +473752,9 @@ false true - lk_msdyn_serviceconfiguration_modifiedby + lk_msdyn_function_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -423881,15 +473788,15 @@ false systemuserid systemuser - lk_msdyn_serviceconfiguration_modifiedby - modifiedby - msdyn_serviceconfiguration - modifiedby + lk_msdyn_function_createdonbehalfby + createdonbehalfby + msdyn_function + createdonbehalfby 0 - 7ae1e0ad-c9ba-f011-bbd3-7c1e52365f30 + 833161b8-ccba-f011-bbd3-7c1e52365f30 false @@ -423899,9 +473806,9 @@ false true - lk_msdyn_serviceconfiguration_modifiedonbehalfby + lk_msdyn_function_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -423935,15 +473842,15 @@ false systemuserid systemuser - lk_msdyn_serviceconfiguration_modifiedonbehalfby - modifiedonbehalfby - msdyn_serviceconfiguration - modifiedonbehalfby + lk_msdyn_function_modifiedby + modifiedby + msdyn_function + modifiedby 0 - 8ce1e0ad-c9ba-f011-bbd3-7c1e52365f30 + 893161b8-ccba-f011-bbd3-7c1e52365f30 false @@ -423953,9 +473860,9 @@ false true - user_msdyn_serviceconfiguration + lk_msdyn_function_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -423989,15 +473896,15 @@ false systemuserid systemuser - user_msdyn_serviceconfiguration - owninguser - msdyn_serviceconfiguration - owninguser + lk_msdyn_function_modifiedonbehalfby + modifiedonbehalfby + msdyn_function + modifiedonbehalfby 0 - 6fe2e0ad-c9ba-f011-bbd3-7c1e52365f30 + 9b3161b8-ccba-f011-bbd3-7c1e52365f30 false @@ -424007,9 +473914,9 @@ false true - lk_msdyn_slakpi_createdby + user_msdyn_function None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -424043,15 +473950,15 @@ false systemuserid systemuser - lk_msdyn_slakpi_createdby - createdby - msdyn_slakpi - createdby + user_msdyn_function + owninguser + msdyn_function + owninguser 0 - 75e2e0ad-c9ba-f011-bbd3-7c1e52365f30 + 613261b8-ccba-f011-bbd3-7c1e52365f30 false @@ -424061,9 +473968,9 @@ false true - lk_msdyn_slakpi_createdonbehalfby + lk_plugin_createdby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -424097,15 +474004,15 @@ false systemuserid systemuser - lk_msdyn_slakpi_createdonbehalfby - createdonbehalfby - msdyn_slakpi - createdonbehalfby + lk_plugin_createdby + createdby + plugin + createdby 0 - 7be2e0ad-c9ba-f011-bbd3-7c1e52365f30 + 673261b8-ccba-f011-bbd3-7c1e52365f30 false @@ -424115,9 +474022,9 @@ false true - lk_msdyn_slakpi_modifiedby + lk_plugin_createdonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -424151,15 +474058,15 @@ false systemuserid systemuser - lk_msdyn_slakpi_modifiedby - modifiedby - msdyn_slakpi - modifiedby + lk_plugin_createdonbehalfby + createdonbehalfby + plugin + createdonbehalfby 0 - 81e2e0ad-c9ba-f011-bbd3-7c1e52365f30 + 6d3261b8-ccba-f011-bbd3-7c1e52365f30 false @@ -424169,9 +474076,9 @@ false true - lk_msdyn_slakpi_modifiedonbehalfby + lk_plugin_modifiedby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -424205,15 +474112,15 @@ false systemuserid systemuser - lk_msdyn_slakpi_modifiedonbehalfby - modifiedonbehalfby - msdyn_slakpi - modifiedonbehalfby + lk_plugin_modifiedby + modifiedby + plugin + modifiedby 0 - 93e2e0ad-c9ba-f011-bbd3-7c1e52365f30 + 733261b8-ccba-f011-bbd3-7c1e52365f30 false @@ -424223,61 +474130,7 @@ false true - user_msdyn_slakpi - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - user_msdyn_slakpi - owninguser - msdyn_slakpi - owninguser - - 0 - - - 10f5cb42-caba-f011-bbd3-7c1e52365f30 - - false - - false - iscustomizable - true - - true - true - lk_msdyn_integratedsearchprovider_createdby + lk_plugin_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -424313,25 +474166,25 @@ false systemuserid systemuser - lk_msdyn_integratedsearchprovider_createdby - createdby - msdyn_integratedsearchprovider - createdby + lk_plugin_modifiedonbehalfby + modifiedonbehalfby + plugin + modifiedonbehalfby 0 - 16f5cb42-caba-f011-bbd3-7c1e52365f30 + 853261b8-ccba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_msdyn_integratedsearchprovider_createdonbehalfby + user_plugin None 1.0.0.0 OneToManyRelationship @@ -424367,15 +474220,15 @@ false systemuserid systemuser - lk_msdyn_integratedsearchprovider_createdonbehalfby - createdonbehalfby - msdyn_integratedsearchprovider - createdonbehalfby + user_plugin + owninguser + plugin + owninguser 0 - 1cf5cb42-caba-f011-bbd3-7c1e52365f30 + 264467b8-cf44-40d5-93b3-829fab876cc0 false @@ -424385,12 +474238,12 @@ true true - lk_msdyn_integratedsearchprovider_modifiedby + lk_knowledgearticleviews_modifiedby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -424421,15 +474274,15 @@ false systemuserid systemuser - lk_msdyn_integratedsearchprovider_modifiedby + lk_knowledgearticleviews_modifiedby modifiedby - msdyn_integratedsearchprovider + knowledgearticleviews modifiedby 0 - 22f5cb42-caba-f011-bbd3-7c1e52365f30 + b2ffcab8-952b-49a4-a3a0-18694633bf48 false @@ -424439,9 +474292,9 @@ true true - lk_msdyn_integratedsearchprovider_modifiedonbehalfby + lk_slabase_createdby None - 1.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -424475,27 +474328,27 @@ false systemuserid systemuser - lk_msdyn_integratedsearchprovider_modifiedonbehalfby - modifiedonbehalfby - msdyn_integratedsearchprovider - modifiedonbehalfby + lk_slabase_createdby + createdby + sla + createdby 0 - 34f5cb42-caba-f011-bbd3-7c1e52365f30 + 2675f8b8-d974-454b-9534-f64ab09e45ed false false iscustomizable - true + false true true - user_msdyn_integratedsearchprovider + lk_fieldsecurityprofile_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -424529,25 +474382,25 @@ false systemuserid systemuser - user_msdyn_integratedsearchprovider - owninguser - msdyn_integratedsearchprovider - owninguser + lk_fieldsecurityprofile_createdby + createdby + fieldsecurityprofile + createdby 0 - 04f6cb42-caba-f011-bbd3-7c1e52365f30 + 66eafdb8-f1ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_msdyn_knowledgemanagementsetting_createdby + lk_mainfewshot_createdby None 1.0.0.0 OneToManyRelationship @@ -424583,25 +474436,25 @@ false systemuserid systemuser - lk_msdyn_knowledgemanagementsetting_createdby + lk_mainfewshot_createdby createdby - msdyn_knowledgemanagementsetting + mainfewshot createdby 0 - 0af6cb42-caba-f011-bbd3-7c1e52365f30 + 6ceafdb8-f1ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_msdyn_knowledgemanagementsetting_createdonbehalfby + lk_mainfewshot_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -424637,25 +474490,25 @@ false systemuserid systemuser - lk_msdyn_knowledgemanagementsetting_createdonbehalfby + lk_mainfewshot_createdonbehalfby createdonbehalfby - msdyn_knowledgemanagementsetting + mainfewshot createdonbehalfby 0 - 10f6cb42-caba-f011-bbd3-7c1e52365f30 + 72eafdb8-f1ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_msdyn_knowledgemanagementsetting_modifiedby + lk_mainfewshot_modifiedby None 1.0.0.0 OneToManyRelationship @@ -424691,25 +474544,25 @@ false systemuserid systemuser - lk_msdyn_knowledgemanagementsetting_modifiedby + lk_mainfewshot_modifiedby modifiedby - msdyn_knowledgemanagementsetting + mainfewshot modifiedby 0 - 16f6cb42-caba-f011-bbd3-7c1e52365f30 + 78eafdb8-f1ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_msdyn_knowledgemanagementsetting_modifiedonbehalfby + lk_mainfewshot_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -424745,69 +474598,15 @@ false systemuserid systemuser - lk_msdyn_knowledgemanagementsetting_modifiedonbehalfby + lk_mainfewshot_modifiedonbehalfby modifiedonbehalfby - msdyn_knowledgemanagementsetting + mainfewshot modifiedonbehalfby 0 - 28f6cb42-caba-f011-bbd3-7c1e52365f30 - - false - - false - iscustomizable - true - - true - true - user_msdyn_knowledgemanagementsetting - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - user_msdyn_knowledgemanagementsetting - owninguser - msdyn_knowledgemanagementsetting - owninguser - - 0 - - - 18be7ead-caba-f011-bbd3-7c1e52365f30 + a8ebfdb8-f1ba-f011-bbd3-7c1e52365f30 false @@ -424817,9 +474616,9 @@ false true - lk_msdyn_federatedarticle_createdby + lk_makerfewshot_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -424853,15 +474652,15 @@ false systemuserid systemuser - lk_msdyn_federatedarticle_createdby + lk_makerfewshot_createdby createdby - msdyn_federatedarticle + makerfewshot createdby 0 - 1ebe7ead-caba-f011-bbd3-7c1e52365f30 + b0ebfdb8-f1ba-f011-bbd3-7c1e52365f30 false @@ -424871,9 +474670,9 @@ false true - lk_msdyn_federatedarticle_createdonbehalfby + lk_makerfewshot_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -424907,15 +474706,15 @@ false systemuserid systemuser - lk_msdyn_federatedarticle_createdonbehalfby + lk_makerfewshot_createdonbehalfby createdonbehalfby - msdyn_federatedarticle + makerfewshot createdonbehalfby 0 - 24be7ead-caba-f011-bbd3-7c1e52365f30 + b7ebfdb8-f1ba-f011-bbd3-7c1e52365f30 false @@ -424925,9 +474724,9 @@ false true - lk_msdyn_federatedarticle_modifiedby + lk_makerfewshot_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -424961,15 +474760,15 @@ false systemuserid systemuser - lk_msdyn_federatedarticle_modifiedby + lk_makerfewshot_modifiedby modifiedby - msdyn_federatedarticle + makerfewshot modifiedby 0 - 2abe7ead-caba-f011-bbd3-7c1e52365f30 + beebfdb8-f1ba-f011-bbd3-7c1e52365f30 false @@ -424979,9 +474778,9 @@ false true - lk_msdyn_federatedarticle_modifiedonbehalfby + lk_makerfewshot_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -425015,69 +474814,15 @@ false systemuserid systemuser - lk_msdyn_federatedarticle_modifiedonbehalfby + lk_makerfewshot_modifiedonbehalfby modifiedonbehalfby - msdyn_federatedarticle + makerfewshot modifiedonbehalfby 0 - 3cbe7ead-caba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - user_msdyn_federatedarticle - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - user_msdyn_federatedarticle - owninguser - msdyn_federatedarticle - owninguser - - 0 - - - 30bf7ead-caba-f011-bbd3-7c1e52365f30 + 5decfdb8-f1ba-f011-bbd3-7c1e52365f30 false @@ -425087,7 +474832,7 @@ false true - lk_msdyn_federatedarticleincident_createdby + lk_nlsqregistration_createdby None 1.0 OneToManyRelationship @@ -425123,15 +474868,15 @@ false systemuserid systemuser - lk_msdyn_federatedarticleincident_createdby + lk_nlsqregistration_createdby createdby - msdyn_federatedarticleincident + nlsqregistration createdby 0 - 39bf7ead-caba-f011-bbd3-7c1e52365f30 + 63ecfdb8-f1ba-f011-bbd3-7c1e52365f30 false @@ -425141,7 +474886,7 @@ false true - lk_msdyn_federatedarticleincident_createdonbehalfby + lk_nlsqregistration_createdonbehalfby None 1.0 OneToManyRelationship @@ -425177,15 +474922,15 @@ false systemuserid systemuser - lk_msdyn_federatedarticleincident_createdonbehalfby + lk_nlsqregistration_createdonbehalfby createdonbehalfby - msdyn_federatedarticleincident + nlsqregistration createdonbehalfby 0 - 43bf7ead-caba-f011-bbd3-7c1e52365f30 + 69ecfdb8-f1ba-f011-bbd3-7c1e52365f30 false @@ -425195,7 +474940,7 @@ false true - lk_msdyn_federatedarticleincident_modifiedby + lk_nlsqregistration_modifiedby None 1.0 OneToManyRelationship @@ -425231,69 +474976,15 @@ false systemuserid systemuser - lk_msdyn_federatedarticleincident_modifiedby + lk_nlsqregistration_modifiedby modifiedby - msdyn_federatedarticleincident + nlsqregistration modifiedby 0 - 4cbf7ead-caba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_msdyn_federatedarticleincident_modifiedonbehalfby - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_msdyn_federatedarticleincident_modifiedonbehalfby - modifiedonbehalfby - msdyn_federatedarticleincident - modifiedonbehalfby - - 0 - - - c473b0b3-caba-f011-bbd3-7c1e52365f30 + 6fecfdb8-f1ba-f011-bbd3-7c1e52365f30 false @@ -425303,7 +474994,7 @@ false true - lk_msdyn_kmfederatedsearchconfig_createdby + lk_nlsqregistration_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -425339,15 +475030,15 @@ false systemuserid systemuser - lk_msdyn_kmfederatedsearchconfig_createdby - createdby - msdyn_kmfederatedsearchconfig - createdby + lk_nlsqregistration_modifiedonbehalfby + modifiedonbehalfby + nlsqregistration + modifiedonbehalfby 0 - ca73b0b3-caba-f011-bbd3-7c1e52365f30 + 81ecfdb8-f1ba-f011-bbd3-7c1e52365f30 false @@ -425357,7 +475048,7 @@ false true - lk_msdyn_kmfederatedsearchconfig_createdonbehalfby + user_nlsqregistration None 1.0 OneToManyRelationship @@ -425393,25 +475084,25 @@ false systemuserid systemuser - lk_msdyn_kmfederatedsearchconfig_createdonbehalfby - createdonbehalfby - msdyn_kmfederatedsearchconfig - createdonbehalfby + user_nlsqregistration + owninguser + nlsqregistration + owninguser 0 - d073b0b3-caba-f011-bbd3-7c1e52365f30 + 783863b9-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_kmfederatedsearchconfig_modifiedby + lk_stagedrelationship_createdby None 1.0 OneToManyRelationship @@ -425447,25 +475138,25 @@ false systemuserid systemuser - lk_msdyn_kmfederatedsearchconfig_modifiedby - modifiedby - msdyn_kmfederatedsearchconfig - modifiedby + lk_stagedrelationship_createdby + createdby + stagedrelationship + createdby 0 - d673b0b3-caba-f011-bbd3-7c1e52365f30 + 7e3863b9-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_kmfederatedsearchconfig_modifiedonbehalfby + lk_stagedrelationship_createdonbehalfby None 1.0 OneToManyRelationship @@ -425501,25 +475192,25 @@ false systemuserid systemuser - lk_msdyn_kmfederatedsearchconfig_modifiedonbehalfby - modifiedonbehalfby - msdyn_kmfederatedsearchconfig - modifiedonbehalfby + lk_stagedrelationship_createdonbehalfby + createdonbehalfby + stagedrelationship + createdonbehalfby 0 - e873b0b3-caba-f011-bbd3-7c1e52365f30 + 843863b9-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - user_msdyn_kmfederatedsearchconfig + lk_stagedrelationship_modifiedby None 1.0 OneToManyRelationship @@ -425555,27 +475246,27 @@ false systemuserid systemuser - user_msdyn_kmfederatedsearchconfig - owninguser - msdyn_kmfederatedsearchconfig - owninguser + lk_stagedrelationship_modifiedby + modifiedby + stagedrelationship + modifiedby 0 - 8974b0b3-caba-f011-bbd3-7c1e52365f30 + 8a3863b9-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgearticleimage_createdby + lk_stagedrelationship_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -425609,27 +475300,27 @@ false systemuserid systemuser - lk_msdyn_knowledgearticleimage_createdby - createdby - msdyn_knowledgearticleimage - createdby + lk_stagedrelationship_modifiedonbehalfby + modifiedonbehalfby + stagedrelationship + modifiedonbehalfby 0 - 8f74b0b3-caba-f011-bbd3-7c1e52365f30 + 313963b9-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgearticleimage_createdonbehalfby + lk_stagedrelationshipextracondition_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -425663,27 +475354,27 @@ false systemuserid systemuser - lk_msdyn_knowledgearticleimage_createdonbehalfby - createdonbehalfby - msdyn_knowledgearticleimage - createdonbehalfby + lk_stagedrelationshipextracondition_createdby + createdby + stagedrelationshipextracondition + createdby 0 - 9574b0b3-caba-f011-bbd3-7c1e52365f30 + 373963b9-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgearticleimage_modifiedby + lk_stagedrelationshipextracondition_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -425717,27 +475408,27 @@ false systemuserid systemuser - lk_msdyn_knowledgearticleimage_modifiedby - modifiedby - msdyn_knowledgearticleimage - modifiedby + lk_stagedrelationshipextracondition_createdonbehalfby + createdonbehalfby + stagedrelationshipextracondition + createdonbehalfby 0 - 9b74b0b3-caba-f011-bbd3-7c1e52365f30 + 3d3963b9-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgearticleimage_modifiedonbehalfby + lk_stagedrelationshipextracondition_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -425771,27 +475462,27 @@ false systemuserid systemuser - lk_msdyn_knowledgearticleimage_modifiedonbehalfby - modifiedonbehalfby - msdyn_knowledgearticleimage - modifiedonbehalfby + lk_stagedrelationshipextracondition_modifiedby + modifiedby + stagedrelationshipextracondition + modifiedby 0 - ad74b0b3-caba-f011-bbd3-7c1e52365f30 + 433963b9-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - user_msdyn_knowledgearticleimage + lk_stagedrelationshipextracondition_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -425825,27 +475516,27 @@ false systemuserid systemuser - user_msdyn_knowledgearticleimage - owninguser - msdyn_knowledgearticleimage - owninguser + lk_stagedrelationshipextracondition_modifiedonbehalfby + modifiedonbehalfby + stagedrelationshipextracondition + modifiedonbehalfby 0 - 5b75b0b3-caba-f011-bbd3-7c1e52365f30 + d83963b9-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgeconfiguration_createdby + lk_stagedviewattribute_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -425879,27 +475570,27 @@ false systemuserid systemuser - lk_msdyn_knowledgeconfiguration_createdby + lk_stagedviewattribute_createdby createdby - msdyn_knowledgeconfiguration + stagedviewattribute createdby 0 - 6175b0b3-caba-f011-bbd3-7c1e52365f30 + de3963b9-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgeconfiguration_createdonbehalfby + lk_stagedviewattribute_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -425933,27 +475624,27 @@ false systemuserid systemuser - lk_msdyn_knowledgeconfiguration_createdonbehalfby + lk_stagedviewattribute_createdonbehalfby createdonbehalfby - msdyn_knowledgeconfiguration + stagedviewattribute createdonbehalfby 0 - 6775b0b3-caba-f011-bbd3-7c1e52365f30 + e43963b9-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgeconfiguration_modifiedby + lk_stagedviewattribute_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -425987,27 +475678,27 @@ false systemuserid systemuser - lk_msdyn_knowledgeconfiguration_modifiedby + lk_stagedviewattribute_modifiedby modifiedby - msdyn_knowledgeconfiguration + stagedviewattribute modifiedby 0 - 6d75b0b3-caba-f011-bbd3-7c1e52365f30 + ea3963b9-acba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgeconfiguration_modifiedonbehalfby + lk_stagedviewattribute_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -426041,27 +475732,27 @@ false systemuserid systemuser - lk_msdyn_knowledgeconfiguration_modifiedonbehalfby + lk_stagedviewattribute_modifiedonbehalfby modifiedonbehalfby - msdyn_knowledgeconfiguration + stagedviewattribute modifiedonbehalfby 0 - 0b76b0b3-caba-f011-bbd3-7c1e52365f30 + 8c9a88b9-2a13-484d-bc39-0845d9272b59 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgeinteractioninsight_createdby + lk_businessprocessflowinstancebase_createdby None - 9.1.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -426095,27 +475786,27 @@ false systemuserid systemuser - lk_msdyn_knowledgeinteractioninsight_createdby + lk_businessprocessflowinstancebase_createdby createdby - msdyn_knowledgeinteractioninsight + businessprocessflowinstance createdby 0 - 1176b0b3-caba-f011-bbd3-7c1e52365f30 + 8057c0b9-c3f3-45f3-9f29-517551f5392f false - true + false iscustomizable - true + false - false + true true - lk_msdyn_knowledgeinteractioninsight_createdonbehalfby + lk_syncattributemappingprofile_createdonbehalfby None - 9.1.0.0 + 7.0.0.0 OneToManyRelationship DoNotDisplay @@ -426149,27 +475840,27 @@ false systemuserid systemuser - lk_msdyn_knowledgeinteractioninsight_createdonbehalfby + lk_syncattributemappingprofile_createdonbehalfby createdonbehalfby - msdyn_knowledgeinteractioninsight + syncattributemappingprofile createdonbehalfby 0 - 1776b0b3-caba-f011-bbd3-7c1e52365f30 + 4117c6b9-8fe5-4945-8c06-4f6791e2d554 false - true + false iscustomizable - true + false - false - true - lk_msdyn_knowledgeinteractioninsight_modifiedby + true + false + lk_internaladdress_createdonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -426203,27 +475894,27 @@ false systemuserid systemuser - lk_msdyn_knowledgeinteractioninsight_modifiedby - modifiedby - msdyn_knowledgeinteractioninsight - modifiedby + lk_internaladdress_createdonbehalfby + createdonbehalfby + internaladdress + createdonbehalfby 0 - 1d76b0b3-caba-f011-bbd3-7c1e52365f30 + 25215cba-bf18-4768-9a9d-3f63bcc97853 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_knowledgeinteractioninsight_modifiedonbehalfby + lk_documentindex_createdonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -426257,27 +475948,27 @@ false systemuserid systemuser - lk_msdyn_knowledgeinteractioninsight_modifiedonbehalfby - modifiedonbehalfby - msdyn_knowledgeinteractioninsight - modifiedonbehalfby + lk_documentindex_createdonbehalfby + createdonbehalfby + documentindex + createdonbehalfby 0 - 2f76b0b3-caba-f011-bbd3-7c1e52365f30 + b767a6ba-c83c-4658-98f5-30f1b4d20e9c false - true + false iscustomizable true - false + true true - user_msdyn_knowledgeinteractioninsight + lk_reportcategory_modifiedonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -426311,15 +476002,15 @@ false systemuserid systemuser - user_msdyn_knowledgeinteractioninsight - owninguser - msdyn_knowledgeinteractioninsight - owninguser + lk_reportcategory_modifiedonbehalfby + modifiedonbehalfby + reportcategory + modifiedonbehalfby 0 - dd76b0b3-caba-f011-bbd3-7c1e52365f30 + 9854fcba-b6ea-f011-8409-000d3adc1cd9 false @@ -426329,9 +476020,9 @@ false true - lk_msdyn_knowledgesearchinsight_createdby + lk_agenthubgoal_createdby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -426365,15 +476056,15 @@ false systemuserid systemuser - lk_msdyn_knowledgesearchinsight_createdby + lk_agenthubgoal_createdby createdby - msdyn_knowledgesearchinsight + agenthubgoal createdby 0 - e376b0b3-caba-f011-bbd3-7c1e52365f30 + 9e54fcba-b6ea-f011-8409-000d3adc1cd9 false @@ -426383,9 +476074,9 @@ false true - lk_msdyn_knowledgesearchinsight_createdonbehalfby + lk_agenthubgoal_createdonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -426419,15 +476110,15 @@ false systemuserid systemuser - lk_msdyn_knowledgesearchinsight_createdonbehalfby + lk_agenthubgoal_createdonbehalfby createdonbehalfby - msdyn_knowledgesearchinsight + agenthubgoal createdonbehalfby 0 - e976b0b3-caba-f011-bbd3-7c1e52365f30 + a454fcba-b6ea-f011-8409-000d3adc1cd9 false @@ -426437,9 +476128,9 @@ false true - lk_msdyn_knowledgesearchinsight_modifiedby + lk_agenthubgoal_modifiedby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -426473,15 +476164,15 @@ false systemuserid systemuser - lk_msdyn_knowledgesearchinsight_modifiedby + lk_agenthubgoal_modifiedby modifiedby - msdyn_knowledgesearchinsight + agenthubgoal modifiedby 0 - ef76b0b3-caba-f011-bbd3-7c1e52365f30 + aa54fcba-b6ea-f011-8409-000d3adc1cd9 false @@ -426491,9 +476182,9 @@ false true - lk_msdyn_knowledgesearchinsight_modifiedonbehalfby + lk_agenthubgoal_modifiedonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -426527,15 +476218,15 @@ false systemuserid systemuser - lk_msdyn_knowledgesearchinsight_modifiedonbehalfby + lk_agenthubgoal_modifiedonbehalfby modifiedonbehalfby - msdyn_knowledgesearchinsight + agenthubgoal modifiedonbehalfby 0 - 0177b0b3-caba-f011-bbd3-7c1e52365f30 + bc54fcba-b6ea-f011-8409-000d3adc1cd9 false @@ -426545,9 +476236,9 @@ false true - user_msdyn_knowledgesearchinsight + user_agenthubgoal None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -426581,15 +476272,15 @@ false systemuserid systemuser - user_msdyn_knowledgesearchinsight + user_agenthubgoal owninguser - msdyn_knowledgesearchinsight + agenthubgoal owninguser 0 - 31f8f7fb-caba-f011-bbd3-7c1e52365f30 + 35c102bb-b3ba-f011-bbd3-7c1e52365f30 false @@ -426599,7 +476290,7 @@ false true - lk_msdyn_favoriteknowledgearticle_createdby + lk_componentchangesetpayload_createdby None 1.0 OneToManyRelationship @@ -426635,15 +476326,15 @@ false systemuserid systemuser - lk_msdyn_favoriteknowledgearticle_createdby + lk_componentchangesetpayload_createdby createdby - msdyn_favoriteknowledgearticle + componentchangesetpayload createdby 0 - 3af8f7fb-caba-f011-bbd3-7c1e52365f30 + 3bc102bb-b3ba-f011-bbd3-7c1e52365f30 false @@ -426653,7 +476344,7 @@ false true - lk_msdyn_favoriteknowledgearticle_createdonbehalfby + lk_componentchangesetpayload_createdonbehalfby None 1.0 OneToManyRelationship @@ -426689,15 +476380,15 @@ false systemuserid systemuser - lk_msdyn_favoriteknowledgearticle_createdonbehalfby + lk_componentchangesetpayload_createdonbehalfby createdonbehalfby - msdyn_favoriteknowledgearticle + componentchangesetpayload createdonbehalfby 0 - 40f8f7fb-caba-f011-bbd3-7c1e52365f30 + 41c102bb-b3ba-f011-bbd3-7c1e52365f30 false @@ -426707,7 +476398,7 @@ false true - lk_msdyn_favoriteknowledgearticle_modifiedby + lk_componentchangesetpayload_modifiedby None 1.0 OneToManyRelationship @@ -426743,15 +476434,15 @@ false systemuserid systemuser - lk_msdyn_favoriteknowledgearticle_modifiedby + lk_componentchangesetpayload_modifiedby modifiedby - msdyn_favoriteknowledgearticle + componentchangesetpayload modifiedby 0 - 46f8f7fb-caba-f011-bbd3-7c1e52365f30 + 47c102bb-b3ba-f011-bbd3-7c1e52365f30 false @@ -426761,7 +476452,7 @@ false true - lk_msdyn_favoriteknowledgearticle_modifiedonbehalfby + lk_componentchangesetpayload_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -426797,27 +476488,27 @@ false systemuserid systemuser - lk_msdyn_favoriteknowledgearticle_modifiedonbehalfby + lk_componentchangesetpayload_modifiedonbehalfby modifiedonbehalfby - msdyn_favoriteknowledgearticle + componentchangesetpayload modifiedonbehalfby 0 - 58f8f7fb-caba-f011-bbd3-7c1e52365f30 + 66258bbb-a303-4547-af4c-5e3e97f6e085 false - true + false iscustomizable true - false + true true - user_msdyn_favoriteknowledgearticle + lk_slaitembase_createdonbehalfby None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -426851,15 +476542,15 @@ false systemuserid systemuser - user_msdyn_favoriteknowledgearticle - owninguser - msdyn_favoriteknowledgearticle - owninguser + lk_slaitembase_createdonbehalfby + createdonbehalfby + slaitem + createdonbehalfby 0 - b913f801-cbba-f011-bbd3-7c1e52365f30 + c12648bc-aeba-f011-bbd3-7c1e52365f30 false @@ -426869,9 +476560,117 @@ false true - lk_msdyn_kalanguagesetting_createdby + lk_customapiresponseproperty_modifiedonbehalfby None - 9.1.0.0 + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_customapiresponseproperty_modifiedonbehalfby + modifiedonbehalfby + customapiresponseproperty + modifiedonbehalfby + + 0 + + + 6bd683bc-0053-44ca-9ded-6d07cc0e3185 + + false + + false + iscustomizable + false + + true + true + SystemUser_AsyncOperations + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + SystemUser_AsyncOperations + regardingobjectid + asyncoperation + regardingobjectid_systemuser + + 0 + + + 4433d4bc-3bb8-42f1-82fe-ac022a9e8ef5 + + false + + false + iscustomizable + false + + true + true + lk_webresourcebase_createdonbehalfby + None + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -426905,27 +476704,27 @@ false systemuserid systemuser - lk_msdyn_kalanguagesetting_createdby - createdby - msdyn_kalanguagesetting - createdby + lk_webresourcebase_createdonbehalfby + createdonbehalfby + webresource + createdonbehalfby 0 - bf13f801-cbba-f011-bbd3-7c1e52365f30 + 24f616bd-ec72-4a41-b2fb-d28d4f396092 false - true + false iscustomizable - true + false - false - true - lk_msdyn_kalanguagesetting_createdonbehalfby + true + false + lk_userquery_modifiedonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -426959,30 +476758,30 @@ false systemuserid systemuser - lk_msdyn_kalanguagesetting_createdonbehalfby - createdonbehalfby - msdyn_kalanguagesetting - createdonbehalfby + lk_userquery_modifiedonbehalfby + modifiedonbehalfby + userquery + modifiedonbehalfby 0 - c513f801-cbba-f011-bbd3-7c1e52365f30 + 23444fbd-f1bc-4b9e-83bf-990c7f12f343 false - true + false iscustomizable true - false + true true - lk_msdyn_kalanguagesetting_modifiedby + lk_appconfiginstance_modifiedonbehalfby None - 9.1.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -427013,30 +476812,30 @@ false systemuserid systemuser - lk_msdyn_kalanguagesetting_modifiedby - modifiedby - msdyn_kalanguagesetting - modifiedby + systemuser_appconfiginstance_modifiedonbehalfby + modifiedonbehalfby + appconfiginstance + appconfiginstance_modifiedonbehalfby 0 - cb13f801-cbba-f011-bbd3-7c1e52365f30 + f523b4bd-f013-df11-a16e-00155d7aa40d false - true + false iscustomizable true - false + true true - lk_msdyn_kalanguagesetting_modifiedonbehalfby + lk_goal_createdby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -427067,30 +476866,30 @@ false systemuserid systemuser - lk_msdyn_kalanguagesetting_modifiedonbehalfby - modifiedonbehalfby - msdyn_kalanguagesetting - modifiedonbehalfby + lk_goal_createdby + createdby + goal + createdby 0 - de13f801-cbba-f011-bbd3-7c1e52365f30 + f923b4bd-f013-df11-a16e-00155d7aa40d false - true + false iscustomizable true - false + true true - user_msdyn_kalanguagesetting + lk_goal_createdonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -427121,30 +476920,30 @@ false systemuserid systemuser - user_msdyn_kalanguagesetting - owninguser - msdyn_kalanguagesetting - owninguser + lk_goal_createdonbehalfby + createdonbehalfby + goal + createdonbehalfby 0 - e514f801-cbba-f011-bbd3-7c1e52365f30 + fd23b4bd-f013-df11-a16e-00155d7aa40d false - true + false iscustomizable true - false + true true - lk_msdyn_kbattachment_createdby + lk_goal_modifiedby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -427175,30 +476974,30 @@ false systemuserid systemuser - lk_msdyn_kbattachment_createdby - createdby - msdyn_kbattachment - createdby + lk_goal_modifiedby + modifiedby + goal + modifiedby 0 - eb14f801-cbba-f011-bbd3-7c1e52365f30 + 0124b4bd-f013-df11-a16e-00155d7aa40d false - true + false iscustomizable true - false + true true - lk_msdyn_kbattachment_createdonbehalfby + lk_goal_modifiedonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -427229,30 +477028,30 @@ false systemuserid systemuser - lk_msdyn_kbattachment_createdonbehalfby - createdonbehalfby - msdyn_kbattachment - createdonbehalfby + lk_goal_modifiedonbehalfby + modifiedonbehalfby + goal + modifiedonbehalfby 0 - f314f801-cbba-f011-bbd3-7c1e52365f30 + 1124b4bd-f013-df11-a16e-00155d7aa40d false - true + false iscustomizable true - false + true true - lk_msdyn_kbattachment_modifiedby + user_goal None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -427283,27 +477082,27 @@ false systemuserid systemuser - lk_msdyn_kbattachment_modifiedby - modifiedby - msdyn_kbattachment - modifiedby + user_goal + owninguser + goal + owninguser 0 - fc14f801-cbba-f011-bbd3-7c1e52365f30 + 927c0fbe-9376-4eca-8906-f2bdbfeaa44d false - true + false iscustomizable - true + false - false - true - lk_msdyn_kbattachment_modifiedonbehalfby + true + false + modifiedby_plugintypestatistic None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -427337,15 +477136,15 @@ false systemuserid systemuser - lk_msdyn_kbattachment_modifiedonbehalfby - modifiedonbehalfby - msdyn_kbattachment - modifiedonbehalfby + modifiedby_plugintypestatistic + modifiedby + plugintypestatistic + modifiedby 0 - 1115f801-cbba-f011-bbd3-7c1e52365f30 + 362a68be-ccba-f011-bbd3-7c1e52365f30 false @@ -427355,9 +477154,9 @@ false true - user_msdyn_kbattachment + lk_powerfxrule_createdby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -427391,15 +477190,15 @@ false systemuserid systemuser - user_msdyn_kbattachment - owninguser - msdyn_kbattachment - owninguser + lk_powerfxrule_createdby + createdby + powerfxrule + createdby 0 - a215f801-cbba-f011-bbd3-7c1e52365f30 + 3c2a68be-ccba-f011-bbd3-7c1e52365f30 false @@ -427409,9 +477208,9 @@ false true - lk_msdyn_kmpersonalizationsetting_createdby + lk_powerfxrule_createdonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -427445,15 +477244,15 @@ false systemuserid systemuser - lk_msdyn_kmpersonalizationsetting_createdby - createdby - msdyn_kmpersonalizationsetting - createdby + lk_powerfxrule_createdonbehalfby + createdonbehalfby + powerfxrule + createdonbehalfby 0 - a815f801-cbba-f011-bbd3-7c1e52365f30 + 422a68be-ccba-f011-bbd3-7c1e52365f30 false @@ -427463,9 +477262,9 @@ false true - lk_msdyn_kmpersonalizationsetting_createdonbehalfby + lk_powerfxrule_modifiedby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -427499,15 +477298,15 @@ false systemuserid systemuser - lk_msdyn_kmpersonalizationsetting_createdonbehalfby - createdonbehalfby - msdyn_kmpersonalizationsetting - createdonbehalfby + lk_powerfxrule_modifiedby + modifiedby + powerfxrule + modifiedby 0 - af15f801-cbba-f011-bbd3-7c1e52365f30 + 482a68be-ccba-f011-bbd3-7c1e52365f30 false @@ -427517,9 +477316,9 @@ false true - lk_msdyn_kmpersonalizationsetting_modifiedby + lk_powerfxrule_modifiedonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -427553,15 +477352,15 @@ false systemuserid systemuser - lk_msdyn_kmpersonalizationsetting_modifiedby - modifiedby - msdyn_kmpersonalizationsetting - modifiedby + lk_powerfxrule_modifiedonbehalfby + modifiedonbehalfby + powerfxrule + modifiedonbehalfby 0 - b515f801-cbba-f011-bbd3-7c1e52365f30 + 5a2a68be-ccba-f011-bbd3-7c1e52365f30 false @@ -427571,9 +477370,9 @@ false true - lk_msdyn_kmpersonalizationsetting_modifiedonbehalfby + user_powerfxrule None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -427607,15 +477406,15 @@ false systemuserid systemuser - lk_msdyn_kmpersonalizationsetting_modifiedonbehalfby - modifiedonbehalfby - msdyn_kmpersonalizationsetting - modifiedonbehalfby + user_powerfxrule + owninguser + powerfxrule + owninguser 0 - 7316f801-cbba-f011-bbd3-7c1e52365f30 + faa4f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -427625,9 +477424,9 @@ false true - lk_msdyn_knowledgearticletemplate_createdby + lk_recentlyused_createdby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -427661,15 +477460,15 @@ false systemuserid systemuser - lk_msdyn_knowledgearticletemplate_createdby + lk_recentlyused_createdby createdby - msdyn_knowledgearticletemplate + recentlyused createdby 0 - 7916f801-cbba-f011-bbd3-7c1e52365f30 + 00a5f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -427679,9 +477478,9 @@ false true - lk_msdyn_knowledgearticletemplate_createdonbehalfby + lk_recentlyused_createdonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -427715,15 +477514,15 @@ false systemuserid systemuser - lk_msdyn_knowledgearticletemplate_createdonbehalfby + lk_recentlyused_createdonbehalfby createdonbehalfby - msdyn_knowledgearticletemplate + recentlyused createdonbehalfby 0 - 7f16f801-cbba-f011-bbd3-7c1e52365f30 + 06a5f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -427733,9 +477532,9 @@ false true - lk_msdyn_knowledgearticletemplate_modifiedby + lk_recentlyused_modifiedby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -427769,15 +477568,15 @@ false systemuserid systemuser - lk_msdyn_knowledgearticletemplate_modifiedby + lk_recentlyused_modifiedby modifiedby - msdyn_knowledgearticletemplate + recentlyused modifiedby 0 - 8516f801-cbba-f011-bbd3-7c1e52365f30 + 0ca5f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -427787,9 +477586,9 @@ false true - lk_msdyn_knowledgearticletemplate_modifiedonbehalfby + lk_recentlyused_modifiedonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -427823,15 +477622,15 @@ false systemuserid systemuser - lk_msdyn_knowledgearticletemplate_modifiedonbehalfby + lk_recentlyused_modifiedonbehalfby modifiedonbehalfby - msdyn_knowledgearticletemplate + recentlyused modifiedonbehalfby 0 - 9716f801-cbba-f011-bbd3-7c1e52365f30 + 1ea5f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -427841,9 +477640,9 @@ false true - user_msdyn_knowledgearticletemplate + user_recentlyused None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -427877,15 +477676,15 @@ false systemuserid systemuser - user_msdyn_knowledgearticletemplate + user_recentlyused owninguser - msdyn_knowledgearticletemplate + recentlyused owninguser 0 - 2217f801-cbba-f011-bbd3-7c1e52365f30 + cda5f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -427895,9 +477694,9 @@ false true - lk_msdyn_knowledgepersonalfilter_createdby + lk_searchattributesettings_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -427931,15 +477730,15 @@ false systemuserid systemuser - lk_msdyn_knowledgepersonalfilter_createdby + lk_searchattributesettings_createdby createdby - msdyn_knowledgepersonalfilter + searchattributesettings createdby 0 - 2817f801-cbba-f011-bbd3-7c1e52365f30 + d6a5f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -427949,9 +477748,9 @@ false true - lk_msdyn_knowledgepersonalfilter_createdonbehalfby + lk_searchattributesettings_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -427985,15 +477784,15 @@ false systemuserid systemuser - lk_msdyn_knowledgepersonalfilter_createdonbehalfby + lk_searchattributesettings_createdonbehalfby createdonbehalfby - msdyn_knowledgepersonalfilter + searchattributesettings createdonbehalfby 0 - 2e17f801-cbba-f011-bbd3-7c1e52365f30 + dda5f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428003,9 +477802,9 @@ false true - lk_msdyn_knowledgepersonalfilter_modifiedby + lk_searchattributesettings_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428039,15 +477838,15 @@ false systemuserid systemuser - lk_msdyn_knowledgepersonalfilter_modifiedby + lk_searchattributesettings_modifiedby modifiedby - msdyn_knowledgepersonalfilter + searchattributesettings modifiedby 0 - 3417f801-cbba-f011-bbd3-7c1e52365f30 + e5a5f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428057,9 +477856,9 @@ false true - lk_msdyn_knowledgepersonalfilter_modifiedonbehalfby + lk_searchattributesettings_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428093,15 +477892,15 @@ false systemuserid systemuser - lk_msdyn_knowledgepersonalfilter_modifiedonbehalfby + lk_searchattributesettings_modifiedonbehalfby modifiedonbehalfby - msdyn_knowledgepersonalfilter + searchattributesettings modifiedonbehalfby 0 - 4617f801-cbba-f011-bbd3-7c1e52365f30 + f3a6f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428111,9 +477910,9 @@ false true - user_msdyn_knowledgepersonalfilter + lk_searchcustomanalyzer_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428147,15 +477946,15 @@ false systemuserid systemuser - user_msdyn_knowledgepersonalfilter - owninguser - msdyn_knowledgepersonalfilter - owninguser + lk_searchcustomanalyzer_createdby + createdby + searchcustomanalyzer + createdby 0 - f317f801-cbba-f011-bbd3-7c1e52365f30 + faa6f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428165,9 +477964,9 @@ false true - lk_msdyn_knowledgesearchfilter_createdby + lk_searchcustomanalyzer_createdonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428201,15 +478000,15 @@ false systemuserid systemuser - lk_msdyn_knowledgesearchfilter_createdby - createdby - msdyn_knowledgesearchfilter - createdby + lk_searchcustomanalyzer_createdonbehalfby + createdonbehalfby + searchcustomanalyzer + createdonbehalfby 0 - f917f801-cbba-f011-bbd3-7c1e52365f30 + 02a7f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428219,9 +478018,9 @@ false true - lk_msdyn_knowledgesearchfilter_createdonbehalfby + lk_searchcustomanalyzer_modifiedby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428255,15 +478054,15 @@ false systemuserid systemuser - lk_msdyn_knowledgesearchfilter_createdonbehalfby - createdonbehalfby - msdyn_knowledgesearchfilter - createdonbehalfby + lk_searchcustomanalyzer_modifiedby + modifiedby + searchcustomanalyzer + modifiedby 0 - ff17f801-cbba-f011-bbd3-7c1e52365f30 + 0ba7f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428273,9 +478072,9 @@ false true - lk_msdyn_knowledgesearchfilter_modifiedby + lk_searchcustomanalyzer_modifiedonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428309,15 +478108,15 @@ false systemuserid systemuser - lk_msdyn_knowledgesearchfilter_modifiedby - modifiedby - msdyn_knowledgesearchfilter - modifiedby + lk_searchcustomanalyzer_modifiedonbehalfby + modifiedonbehalfby + searchcustomanalyzer + modifiedonbehalfby 0 - 0518f801-cbba-f011-bbd3-7c1e52365f30 + 2fa8f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428327,9 +478126,9 @@ false true - lk_msdyn_knowledgesearchfilter_modifiedonbehalfby + lk_searchrelationshipsettings_createdby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428363,15 +478162,15 @@ false systemuserid systemuser - lk_msdyn_knowledgesearchfilter_modifiedonbehalfby - modifiedonbehalfby - msdyn_knowledgesearchfilter - modifiedonbehalfby + lk_searchrelationshipsettings_createdby + createdby + searchrelationshipsettings + createdby 0 - 1718f801-cbba-f011-bbd3-7c1e52365f30 + 35a8f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428381,9 +478180,9 @@ false true - user_msdyn_knowledgesearchfilter + lk_searchrelationshipsettings_createdonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428417,15 +478216,15 @@ false systemuserid systemuser - user_msdyn_knowledgesearchfilter - owninguser - msdyn_knowledgesearchfilter - owninguser + lk_searchrelationshipsettings_createdonbehalfby + createdonbehalfby + searchrelationshipsettings + createdonbehalfby 0 - 19993775-cbba-f011-bbd3-7c1e52365f30 + 3ba8f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428435,9 +478234,9 @@ false true - lk_msdyn_historicalcaseharvestbatch_createdby + lk_searchrelationshipsettings_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428471,15 +478270,15 @@ false systemuserid systemuser - lk_msdyn_historicalcaseharvestbatch_createdby - createdby - msdyn_historicalcaseharvestbatch - createdby + lk_searchrelationshipsettings_modifiedby + modifiedby + searchrelationshipsettings + modifiedby 0 - 1f993775-cbba-f011-bbd3-7c1e52365f30 + 41a8f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428489,9 +478288,9 @@ false true - lk_msdyn_historicalcaseharvestbatch_createdonbehalfby + lk_searchrelationshipsettings_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428525,15 +478324,15 @@ false systemuserid systemuser - lk_msdyn_historicalcaseharvestbatch_createdonbehalfby - createdonbehalfby - msdyn_historicalcaseharvestbatch - createdonbehalfby + lk_searchrelationshipsettings_modifiedonbehalfby + modifiedonbehalfby + searchrelationshipsettings + modifiedonbehalfby 0 - 25993775-cbba-f011-bbd3-7c1e52365f30 + d9a8f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428543,9 +478342,9 @@ false true - lk_msdyn_historicalcaseharvestbatch_modifiedby + lk_searchresultscache_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428579,15 +478378,15 @@ false systemuserid systemuser - lk_msdyn_historicalcaseharvestbatch_modifiedby - modifiedby - msdyn_historicalcaseharvestbatch - modifiedby + lk_searchresultscache_createdby + createdby + searchresultscache + createdby 0 - 2b993775-cbba-f011-bbd3-7c1e52365f30 + dfa8f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428597,9 +478396,63 @@ false true - lk_msdyn_historicalcaseharvestbatch_modifiedonbehalfby + lk_searchresultscache_createdonbehalfby None - 1.0 + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_searchresultscache_createdonbehalfby + createdonbehalfby + searchresultscache + createdonbehalfby + + 0 + + + e5a8f9be-f1ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_searchresultscache_modifiedby + None + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428633,15 +478486,15 @@ false systemuserid systemuser - lk_msdyn_historicalcaseharvestbatch_modifiedonbehalfby - modifiedonbehalfby - msdyn_historicalcaseharvestbatch - modifiedonbehalfby + lk_searchresultscache_modifiedby + modifiedby + searchresultscache + modifiedby 0 - 3d993775-cbba-f011-bbd3-7c1e52365f30 + eba8f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428651,9 +478504,9 @@ false true - user_msdyn_historicalcaseharvestbatch + lk_searchresultscache_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428687,15 +478540,15 @@ false systemuserid systemuser - user_msdyn_historicalcaseharvestbatch - owninguser - msdyn_historicalcaseharvestbatch - owninguser + lk_searchresultscache_modifiedonbehalfby + modifiedonbehalfby + searchresultscache + modifiedonbehalfby 0 - 63d9a47b-cbba-f011-bbd3-7c1e52365f30 + 72a9f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428705,9 +478558,9 @@ false true - lk_msdyn_historicalcaseharvestrun_createdby + lk_textdatarecordsindexingstatus_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428741,15 +478594,15 @@ false systemuserid systemuser - lk_msdyn_historicalcaseharvestrun_createdby + lk_textdatarecordsindexingstatus_createdby createdby - msdyn_historicalcaseharvestrun + textdatarecordsindexingstatus createdby 0 - 69d9a47b-cbba-f011-bbd3-7c1e52365f30 + 78a9f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428759,9 +478612,9 @@ false true - lk_msdyn_historicalcaseharvestrun_createdonbehalfby + lk_textdatarecordsindexingstatus_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428795,15 +478648,15 @@ false systemuserid systemuser - lk_msdyn_historicalcaseharvestrun_createdonbehalfby + lk_textdatarecordsindexingstatus_createdonbehalfby createdonbehalfby - msdyn_historicalcaseharvestrun + textdatarecordsindexingstatus createdonbehalfby 0 - 6fd9a47b-cbba-f011-bbd3-7c1e52365f30 + 7ea9f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428813,9 +478666,9 @@ false true - lk_msdyn_historicalcaseharvestrun_modifiedby + lk_textdatarecordsindexingstatus_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428849,15 +478702,15 @@ false systemuserid systemuser - lk_msdyn_historicalcaseharvestrun_modifiedby + lk_textdatarecordsindexingstatus_modifiedby modifiedby - msdyn_historicalcaseharvestrun + textdatarecordsindexingstatus modifiedby 0 - 75d9a47b-cbba-f011-bbd3-7c1e52365f30 + 84a9f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -428867,9 +478720,9 @@ false true - lk_msdyn_historicalcaseharvestrun_modifiedonbehalfby + lk_textdatarecordsindexingstatus_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -428903,69 +478756,15 @@ false systemuserid systemuser - lk_msdyn_historicalcaseharvestrun_modifiedonbehalfby + lk_textdatarecordsindexingstatus_modifiedonbehalfby modifiedonbehalfby - msdyn_historicalcaseharvestrun + textdatarecordsindexingstatus modifiedonbehalfby 0 - 87d9a47b-cbba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - user_msdyn_historicalcaseharvestrun - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - user_msdyn_historicalcaseharvestrun - owninguser - msdyn_historicalcaseharvestrun - owninguser - - 0 - - - 5ddaa47b-cbba-f011-bbd3-7c1e52365f30 + 21a9babf-2de0-f011-840b-0022489ebb55 false @@ -428975,7 +478774,7 @@ false true - lk_msdyn_interimupdateknowledgearticle_createdby + lk_cpr_cprsubrun_createdby None 1.0 OneToManyRelationship @@ -429011,15 +478810,15 @@ false systemuserid systemuser - lk_msdyn_interimupdateknowledgearticle_createdby + lk_cpr_cprsubrun_createdby createdby - msdyn_interimupdateknowledgearticle + cpr_cprsubrun createdby 0 - 63daa47b-cbba-f011-bbd3-7c1e52365f30 + 27a9babf-2de0-f011-840b-0022489ebb55 false @@ -429029,7 +478828,7 @@ false true - lk_msdyn_interimupdateknowledgearticle_createdonbehalfby + lk_cpr_cprsubrun_createdonbehalfby None 1.0 OneToManyRelationship @@ -429065,15 +478864,15 @@ false systemuserid systemuser - lk_msdyn_interimupdateknowledgearticle_createdonbehalfby + lk_cpr_cprsubrun_createdonbehalfby createdonbehalfby - msdyn_interimupdateknowledgearticle + cpr_cprsubrun createdonbehalfby 0 - 69daa47b-cbba-f011-bbd3-7c1e52365f30 + 2da9babf-2de0-f011-840b-0022489ebb55 false @@ -429083,7 +478882,7 @@ false true - lk_msdyn_interimupdateknowledgearticle_modifiedby + lk_cpr_cprsubrun_modifiedby None 1.0 OneToManyRelationship @@ -429119,15 +478918,15 @@ false systemuserid systemuser - lk_msdyn_interimupdateknowledgearticle_modifiedby + lk_cpr_cprsubrun_modifiedby modifiedby - msdyn_interimupdateknowledgearticle + cpr_cprsubrun modifiedby 0 - 6fdaa47b-cbba-f011-bbd3-7c1e52365f30 + 33a9babf-2de0-f011-840b-0022489ebb55 false @@ -429137,7 +478936,7 @@ false true - lk_msdyn_interimupdateknowledgearticle_modifiedonbehalfby + lk_cpr_cprsubrun_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -429173,15 +478972,15 @@ false systemuserid systemuser - lk_msdyn_interimupdateknowledgearticle_modifiedonbehalfby + lk_cpr_cprsubrun_modifiedonbehalfby modifiedonbehalfby - msdyn_interimupdateknowledgearticle + cpr_cprsubrun modifiedonbehalfby 0 - 81daa47b-cbba-f011-bbd3-7c1e52365f30 + 45a9babf-2de0-f011-840b-0022489ebb55 false @@ -429191,7 +478990,7 @@ false true - user_msdyn_interimupdateknowledgearticle + user_cpr_cprsubrun None 1.0 OneToManyRelationship @@ -429227,15 +479026,15 @@ false systemuserid systemuser - user_msdyn_interimupdateknowledgearticle + user_cpr_cprsubrun owninguser - msdyn_interimupdateknowledgearticle + cpr_cprsubrun owninguser 0 - 1cdba47b-cbba-f011-bbd3-7c1e52365f30 + 5882c8bf-aaba-f011-bbd3-7c1e52365f30 false @@ -429245,9 +479044,9 @@ false true - lk_msdyn_knowledgearticlecustomentity_createdby + lk_stagesolutionupload_createdby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -429281,123 +479080,15 @@ false systemuserid systemuser - lk_msdyn_knowledgearticlecustomentity_createdby + lk_stagesolutionupload_createdby createdby - msdyn_knowledgearticlecustomentity + stagesolutionupload createdby 0 - 22dba47b-cbba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_msdyn_knowledgearticlecustomentity_createdonbehalfby - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_msdyn_knowledgearticlecustomentity_createdonbehalfby - createdonbehalfby - msdyn_knowledgearticlecustomentity - createdonbehalfby - - 0 - - - 28dba47b-cbba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_msdyn_knowledgearticlecustomentity_modifiedby - None - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_msdyn_knowledgearticlecustomentity_modifiedby - modifiedby - msdyn_knowledgearticlecustomentity - modifiedby - - 0 - - - 2edba47b-cbba-f011-bbd3-7c1e52365f30 + 5e82c8bf-aaba-f011-bbd3-7c1e52365f30 false @@ -429407,9 +479098,9 @@ false true - lk_msdyn_knowledgearticlecustomentity_modifiedonbehalfby + lk_stagesolutionupload_createdonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -429443,15 +479134,15 @@ false systemuserid systemuser - lk_msdyn_knowledgearticlecustomentity_modifiedonbehalfby - modifiedonbehalfby - msdyn_knowledgearticlecustomentity - modifiedonbehalfby + lk_stagesolutionupload_createdonbehalfby + createdonbehalfby + stagesolutionupload + createdonbehalfby 0 - 40dba47b-cbba-f011-bbd3-7c1e52365f30 + 6482c8bf-aaba-f011-bbd3-7c1e52365f30 false @@ -429461,9 +479152,9 @@ false true - user_msdyn_knowledgearticlecustomentity + lk_stagesolutionupload_modifiedby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -429497,15 +479188,15 @@ false systemuserid systemuser - user_msdyn_knowledgearticlecustomentity - owninguser - msdyn_knowledgearticlecustomentity - owninguser + lk_stagesolutionupload_modifiedby + modifiedby + stagesolutionupload + modifiedby 0 - 3ddca47b-cbba-f011-bbd3-7c1e52365f30 + 6a82c8bf-aaba-f011-bbd3-7c1e52365f30 false @@ -429515,9 +479206,9 @@ false true - lk_msdyn_knowledgeharvestjobrecord_createdby + lk_stagesolutionupload_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -429551,15 +479242,15 @@ false systemuserid systemuser - lk_msdyn_knowledgeharvestjobrecord_createdby - createdby - msdyn_knowledgeharvestjobrecord - createdby + lk_stagesolutionupload_modifiedonbehalfby + modifiedonbehalfby + stagesolutionupload + modifiedonbehalfby 0 - 43dca47b-cbba-f011-bbd3-7c1e52365f30 + 7c82c8bf-aaba-f011-bbd3-7c1e52365f30 false @@ -429569,9 +479260,9 @@ false true - lk_msdyn_knowledgeharvestjobrecord_createdonbehalfby + user_stagesolutionupload None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -429605,30 +479296,30 @@ false systemuserid systemuser - lk_msdyn_knowledgeharvestjobrecord_createdonbehalfby - createdonbehalfby - msdyn_knowledgeharvestjobrecord - createdonbehalfby + user_stagesolutionupload + owninguser + stagesolutionupload + owninguser 0 - 49dca47b-cbba-f011-bbd3-7c1e52365f30 + 28b14bc0-12f5-4dc4-b4a0-ded099c253a9 false - true + false iscustomizable true - false + true true - lk_msdyn_knowledgeharvestjobrecord_modifiedby + lk_callbackregistration_createdby None - 1.0 + 9.0.2.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -429659,27 +479350,27 @@ false systemuserid systemuser - lk_msdyn_knowledgeharvestjobrecord_modifiedby - modifiedby - msdyn_knowledgeharvestjobrecord - modifiedby + systemuser_callbackregistration_createdby + createdby + callbackregistration + callbackregistration_createdby 0 - 4fdca47b-cbba-f011-bbd3-7c1e52365f30 + e9a690c0-c1ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_msdyn_knowledgeharvestjobrecord_modifiedonbehalfby + lk_comment_createdby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -429713,15 +479404,15 @@ false systemuserid systemuser - lk_msdyn_knowledgeharvestjobrecord_modifiedonbehalfby - modifiedonbehalfby - msdyn_knowledgeharvestjobrecord - modifiedonbehalfby + lk_comment_createdby + createdby + comment + createdby 0 - 61dca47b-cbba-f011-bbd3-7c1e52365f30 + f0a690c0-c1ba-f011-bbd3-7c1e52365f30 false @@ -429731,9 +479422,9 @@ false true - user_msdyn_knowledgeharvestjobrecord + lk_comment_createdonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -429767,27 +479458,27 @@ false systemuserid systemuser - user_msdyn_knowledgeharvestjobrecord - owninguser - msdyn_knowledgeharvestjobrecord - owninguser + lk_comment_createdonbehalfby + createdonbehalfby + comment + createdonbehalfby 0 - 0a9dbbfd-cbba-f011-bbd3-7c1e52365f30 + f7a690c0-c1ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_attributeclusterconfig_createdby + lk_comment_modifiedby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -429821,15 +479512,15 @@ false systemuserid systemuser - lk_attributeclusterconfig_createdby - createdby - attributeclusterconfig - createdby + lk_comment_modifiedby + modifiedby + comment + modifiedby 0 - 109dbbfd-cbba-f011-bbd3-7c1e52365f30 + fda690c0-c1ba-f011-bbd3-7c1e52365f30 false @@ -429839,9 +479530,9 @@ false true - lk_attributeclusterconfig_createdonbehalfby + lk_comment_modifiedonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -429875,15 +479566,15 @@ false systemuserid systemuser - lk_attributeclusterconfig_createdonbehalfby - createdonbehalfby - attributeclusterconfig - createdonbehalfby + lk_comment_modifiedonbehalfby + modifiedonbehalfby + comment + modifiedonbehalfby 0 - 169dbbfd-cbba-f011-bbd3-7c1e52365f30 + 0fa790c0-c1ba-f011-bbd3-7c1e52365f30 false @@ -429893,9 +479584,9 @@ false true - lk_attributeclusterconfig_modifiedby + user_comment None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -429929,27 +479620,81 @@ false systemuserid systemuser - lk_attributeclusterconfig_modifiedby - modifiedby - attributeclusterconfig - modifiedby + user_comment + owninguser + comment + owninguser 0 - 1c9dbbfd-cbba-f011-bbd3-7c1e52365f30 + 8ef294c0-9b73-4f50-a5cd-2d1d986c9b90 false - true + false iscustomizable - true + false - false + true true - lk_attributeclusterconfig_modifiedonbehalfby + lk_reportlinkbase_createdby None - 1.0 + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_reportlinkbase_createdby + createdby + reportlink + createdby + + 0 + + + c33de3c0-c7ab-4a3e-95c5-12c00fe0fe43 + + false + + false + iscustomizable + false + + true + true + lk_annotationbase_modifiedonbehalfby + None + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -429983,15 +479728,69 @@ false systemuserid systemuser - lk_attributeclusterconfig_modifiedonbehalfby + lk_annotationbase_modifiedonbehalfby + modifiedonbehalfby + annotation + modifiedonbehalfby + + 0 + + + 4b5ceac0-5b41-4917-960d-c4de6fca7fcd + + false + + false + iscustomizable + false + + true + true + lk_partnerapplication_modifiedonbehalfby + None + 6.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_partnerapplication_modifiedonbehalfby modifiedonbehalfby - attributeclusterconfig + partnerapplication modifiedonbehalfby 0 - bf9dbbfd-cbba-f011-bbd3-7c1e52365f30 + a992f2c0-b6ea-f011-8409-000d3adc1cd9 false @@ -430001,7 +479800,7 @@ false true - lk_entityclusterconfig_createdby + lk_agenthubinsight_createdby None 1.0 OneToManyRelationship @@ -430037,15 +479836,15 @@ false systemuserid systemuser - lk_entityclusterconfig_createdby + lk_agenthubinsight_createdby createdby - entityclusterconfig + agenthubinsight createdby 0 - c59dbbfd-cbba-f011-bbd3-7c1e52365f30 + b092f2c0-b6ea-f011-8409-000d3adc1cd9 false @@ -430055,7 +479854,7 @@ false true - lk_entityclusterconfig_createdonbehalfby + lk_agenthubinsight_createdonbehalfby None 1.0 OneToManyRelationship @@ -430091,15 +479890,15 @@ false systemuserid systemuser - lk_entityclusterconfig_createdonbehalfby + lk_agenthubinsight_createdonbehalfby createdonbehalfby - entityclusterconfig + agenthubinsight createdonbehalfby 0 - cb9dbbfd-cbba-f011-bbd3-7c1e52365f30 + b792f2c0-b6ea-f011-8409-000d3adc1cd9 false @@ -430109,7 +479908,7 @@ false true - lk_entityclusterconfig_modifiedby + lk_agenthubinsight_modifiedby None 1.0 OneToManyRelationship @@ -430145,15 +479944,15 @@ false systemuserid systemuser - lk_entityclusterconfig_modifiedby + lk_agenthubinsight_modifiedby modifiedby - entityclusterconfig + agenthubinsight modifiedby 0 - d19dbbfd-cbba-f011-bbd3-7c1e52365f30 + be92f2c0-b6ea-f011-8409-000d3adc1cd9 false @@ -430163,7 +479962,7 @@ false true - lk_entityclusterconfig_modifiedonbehalfby + lk_agenthubinsight_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -430199,69 +479998,15 @@ false systemuserid systemuser - lk_entityclusterconfig_modifiedonbehalfby + lk_agenthubinsight_modifiedonbehalfby modifiedonbehalfby - entityclusterconfig + agenthubinsight modifiedonbehalfby 0 - 363fd738-ccba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_supportusertable_createdby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_supportusertable_createdby - createdby - supportusertable - createdby - - 0 - - - 3c3fd738-ccba-f011-bbd3-7c1e52365f30 + d192f2c0-b6ea-f011-8409-000d3adc1cd9 false @@ -430271,9 +480016,9 @@ false true - lk_supportusertable_createdonbehalfby + user_agenthubinsight None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -430307,15 +480052,15 @@ false systemuserid systemuser - lk_supportusertable_createdonbehalfby - createdonbehalfby - supportusertable - createdonbehalfby + user_agenthubinsight + owninguser + agenthubinsight + owninguser 0 - 423fd738-ccba-f011-bbd3-7c1e52365f30 + aa87f9c0-b3ba-f011-bbd3-7c1e52365f30 false @@ -430325,9 +480070,9 @@ false true - lk_supportusertable_modifiedby + lk_componentchangesetversion_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -430361,15 +480106,15 @@ false systemuserid systemuser - lk_supportusertable_modifiedby - modifiedby - supportusertable - modifiedby + lk_componentchangesetversion_createdby + createdby + componentchangesetversion + createdby 0 - 483fd738-ccba-f011-bbd3-7c1e52365f30 + b087f9c0-b3ba-f011-bbd3-7c1e52365f30 false @@ -430379,9 +480124,9 @@ false true - lk_supportusertable_modifiedonbehalfby + lk_componentchangesetversion_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -430415,15 +480160,15 @@ false systemuserid systemuser - lk_supportusertable_modifiedonbehalfby - modifiedonbehalfby - supportusertable - modifiedonbehalfby + lk_componentchangesetversion_createdonbehalfby + createdonbehalfby + componentchangesetversion + createdonbehalfby 0 - a13061b8-ccba-f011-bbd3-7c1e52365f30 + b687f9c0-b3ba-f011-bbd3-7c1e52365f30 false @@ -430433,7 +480178,7 @@ false true - lk_fxexpression_createdby + lk_componentchangesetversion_modifiedby None 1.0 OneToManyRelationship @@ -430469,15 +480214,15 @@ false systemuserid systemuser - lk_fxexpression_createdby - createdby - fxexpression - createdby + lk_componentchangesetversion_modifiedby + modifiedby + componentchangesetversion + modifiedby 0 - a73061b8-ccba-f011-bbd3-7c1e52365f30 + bc87f9c0-b3ba-f011-bbd3-7c1e52365f30 false @@ -430487,7 +480232,7 @@ false true - lk_fxexpression_createdonbehalfby + lk_componentchangesetversion_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -430523,27 +480268,27 @@ false systemuserid systemuser - lk_fxexpression_createdonbehalfby - createdonbehalfby - fxexpression - createdonbehalfby + lk_componentchangesetversion_modifiedonbehalfby + modifiedonbehalfby + componentchangesetversion + modifiedonbehalfby 0 - ad3061b8-ccba-f011-bbd3-7c1e52365f30 + 8089f9c0-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_fxexpression_modifiedby + lk_componentversionnrddatasource_createdby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -430577,15 +480322,15 @@ false systemuserid systemuser - lk_fxexpression_modifiedby - modifiedby - fxexpression - modifiedby + lk_componentversionnrddatasource_createdby + createdby + componentversionnrddatasource + createdby 0 - b33061b8-ccba-f011-bbd3-7c1e52365f30 + 8689f9c0-b3ba-f011-bbd3-7c1e52365f30 false @@ -430595,9 +480340,9 @@ false true - lk_fxexpression_modifiedonbehalfby + lk_componentversionnrddatasource_createdonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -430631,27 +480376,27 @@ false systemuserid systemuser - lk_fxexpression_modifiedonbehalfby - modifiedonbehalfby - fxexpression - modifiedonbehalfby + lk_componentversionnrddatasource_createdonbehalfby + createdonbehalfby + componentversionnrddatasource + createdonbehalfby 0 - c53061b8-ccba-f011-bbd3-7c1e52365f30 + 8c89f9c0-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_fxexpression + lk_componentversionnrddatasource_modifiedby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -430685,15 +480430,15 @@ false systemuserid systemuser - user_fxexpression - owninguser - fxexpression - owninguser + lk_componentversionnrddatasource_modifiedby + modifiedby + componentversionnrddatasource + modifiedby 0 - 773161b8-ccba-f011-bbd3-7c1e52365f30 + 9289f9c0-b3ba-f011-bbd3-7c1e52365f30 false @@ -430703,9 +480448,9 @@ false true - lk_msdyn_function_createdby + lk_componentversionnrddatasource_modifiedonbehalfby None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -430739,39 +480484,60 @@ false systemuserid systemuser - lk_msdyn_function_createdby - createdby - msdyn_function - createdby + lk_componentversionnrddatasource_modifiedonbehalfby + modifiedonbehalfby + componentversionnrddatasource + modifiedonbehalfby 0 - 7d3161b8-ccba-f011-bbd3-7c1e52365f30 + ed89f9c0-b3ba-f011-bbd3-7c1e52365f30 - false + true - true + false iscustomizable - true + false - false + true true - lk_msdyn_function_createdonbehalfby - None - 1.0.0.0 + lk_componentversion_createdby + Append + 9.1.0.0 OneToManyRelationship DoNotDisplay Details - - + + + 905d8090-172f-4242-8787-cbc58765b909 + + true + Versions + 1033 + + + d88d5882-d19c-4491-a75d-365f76f05e0b + + true + Versioner + 1030 + + + + 905d8090-172f-4242-8787-cbc58765b909 + + true + Versions + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -430793,39 +480559,60 @@ false systemuserid systemuser - lk_msdyn_function_createdonbehalfby - createdonbehalfby - msdyn_function - createdonbehalfby + lk_componentversion_createdby + createdby + componentversion + createdby - 0 + 1 - 833161b8-ccba-f011-bbd3-7c1e52365f30 + fd89f9c0-b3ba-f011-bbd3-7c1e52365f30 - false + true - true + false iscustomizable - true + false - false + true true - lk_msdyn_function_modifiedby - None - 1.0.0.0 + lk_componentversion_modifiedby + Append + 9.1.0.0 OneToManyRelationship DoNotDisplay Details - - + + + 3c7da5c0-5dce-4f93-b2e2-544ac032cb0d + + true + Versions + 1033 + + + 523c3038-6669-498f-92f3-1c8c054c2d16 + + true + Versioner + 1030 + + + + 3c7da5c0-5dce-4f93-b2e2-544ac032cb0d + + true + Versions + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -430847,39 +480634,60 @@ false systemuserid systemuser - lk_msdyn_function_modifiedby + lk_componentversion_modifiedby modifiedby - msdyn_function + componentversion modifiedby - 0 + 1 - 893161b8-ccba-f011-bbd3-7c1e52365f30 + 198af9c0-b3ba-f011-bbd3-7c1e52365f30 - false + true - true + false iscustomizable - true + false - false + true true - lk_msdyn_function_modifiedonbehalfby - None - 1.0.0.0 + user_componentversion + Append + 9.1.0.0 OneToManyRelationship DoNotDisplay Details - - + + + 7429a102-d4e3-4d54-aeba-e189ff342e11 + + true + Versions + 1033 + + + 388958a0-77c2-47f2-a799-1d9b6beadbd4 + + true + Versioner + 1030 + + + + 7429a102-d4e3-4d54-aeba-e189ff342e11 + + true + Versions + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -430901,36 +480709,36 @@ false systemuserid systemuser - lk_msdyn_function_modifiedonbehalfby - modifiedonbehalfby - msdyn_function - modifiedonbehalfby + user_componentversion + owninguser + componentversion + owninguser - 0 + 1 - 9b3161b8-ccba-f011-bbd3-7c1e52365f30 + 94b41fc2-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_msdyn_function + Workflow_licensee None - 1.0.0.0 + 1.9.2.1 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true false @@ -430941,7 +480749,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -430955,30 +480763,30 @@ false systemuserid systemuser - user_msdyn_function - owninguser - msdyn_function - owninguser + Workflow_licensee + licensee + workflow + licensee_systemuserid 0 - 613261b8-ccba-f011-bbd3-7c1e52365f30 + 84ed81c2-0c55-4e68-98e8-b7c56f688aec false - true + false iscustomizable - true + false - false - true - lk_plugin_createdby + true + false + userentityuisettings_owning_user None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -431009,27 +480817,27 @@ false systemuserid systemuser - lk_plugin_createdby - createdby - plugin - createdby + userentityuisettings_owning_user + owninguser + userentityuisettings + owninguser 0 - 673261b8-ccba-f011-bbd3-7c1e52365f30 + 53dd90c2-4e35-4be3-8398-76b693c49fd2 false - true + false iscustomizable - true + false - false - true - lk_plugin_createdonbehalfby + true + false + lk_syncerrorbase_modifiedby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -431063,27 +480871,27 @@ false systemuserid systemuser - lk_plugin_createdonbehalfby - createdonbehalfby - plugin - createdonbehalfby + lk_syncerrorbase_modifiedby + modifiedby + syncerror + modifiedby 0 - 6d3261b8-ccba-f011-bbd3-7c1e52365f30 + 79e0aac2-7c63-46ff-b2d1-4ca481826f97 false - true + false iscustomizable - true + false - false - true - lk_plugin_modifiedby + true + false + lk_importentitymapping_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -431117,27 +480925,27 @@ false systemuserid systemuser - lk_plugin_modifiedby - modifiedby - plugin - modifiedby + lk_importentitymapping_createdby + createdby + importentitymapping + createdby 0 - 733261b8-ccba-f011-bbd3-7c1e52365f30 + ab59f9c2-b9f1-4959-af66-b0b025815cbd false - true + false iscustomizable true - false + true true - lk_plugin_modifiedonbehalfby + lk_mobileofflineprofileitem_modifiedonbehalfby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -431171,27 +480979,27 @@ false systemuserid systemuser - lk_plugin_modifiedonbehalfby + lk_mobileofflineprofileitem_modifiedonbehalfby modifiedonbehalfby - plugin + mobileofflineprofileitem modifiedonbehalfby 0 - 853261b8-ccba-f011-bbd3-7c1e52365f30 + 2f367cc3-0231-4087-9fdb-f0bb9b692eb5 false - true + false iscustomizable - true + false - false - true - user_plugin + true + false + lk_applicationfile_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -431225,15 +481033,15 @@ false systemuserid systemuser - user_plugin - owninguser - plugin - owninguser + lk_applicationfile_modifiedby + modifiedby + applicationfile + modifiedby 0 - 362a68be-ccba-f011-bbd3-7c1e52365f30 + 3dfe94c3-d1ba-f011-bbd3-7c1e52365f30 false @@ -431243,9 +481051,9 @@ false true - lk_powerfxrule_createdby + lk_teammobileofflineprofilemembership_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -431279,15 +481087,15 @@ false systemuserid systemuser - lk_powerfxrule_createdby + lk_teammobileofflineprofilemembership_createdby createdby - powerfxrule + teammobileofflineprofilemembership createdby 0 - 3c2a68be-ccba-f011-bbd3-7c1e52365f30 + 43fe94c3-d1ba-f011-bbd3-7c1e52365f30 false @@ -431297,9 +481105,9 @@ false true - lk_powerfxrule_createdonbehalfby + lk_teammobileofflineprofilemembership_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -431333,15 +481141,15 @@ false systemuserid systemuser - lk_powerfxrule_createdonbehalfby + lk_teammobileofflineprofilemembership_createdonbehalfby createdonbehalfby - powerfxrule + teammobileofflineprofilemembership createdonbehalfby 0 - 422a68be-ccba-f011-bbd3-7c1e52365f30 + 49fe94c3-d1ba-f011-bbd3-7c1e52365f30 false @@ -431351,9 +481159,9 @@ false true - lk_powerfxrule_modifiedby + lk_teammobileofflineprofilemembership_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -431387,15 +481195,15 @@ false systemuserid systemuser - lk_powerfxrule_modifiedby + lk_teammobileofflineprofilemembership_modifiedby modifiedby - powerfxrule + teammobileofflineprofilemembership modifiedby 0 - 482a68be-ccba-f011-bbd3-7c1e52365f30 + 4ffe94c3-d1ba-f011-bbd3-7c1e52365f30 false @@ -431405,9 +481213,9 @@ false true - lk_powerfxrule_modifiedonbehalfby + lk_teammobileofflineprofilemembership_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -431441,27 +481249,27 @@ false systemuserid systemuser - lk_powerfxrule_modifiedonbehalfby + lk_teammobileofflineprofilemembership_modifiedonbehalfby modifiedonbehalfby - powerfxrule + teammobileofflineprofilemembership modifiedonbehalfby 0 - 5a2a68be-ccba-f011-bbd3-7c1e52365f30 + 459cc6c3-68f6-4e2b-9034-77dd30ddcf5e false - true + false iscustomizable - true + false - false + true true - user_powerfxrule + lk_documenttemplatebase_createdby None - 1.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -431495,27 +481303,27 @@ false systemuserid systemuser - user_powerfxrule - owninguser - powerfxrule - owninguser + lk_documenttemplatebase_createdby + createdby + documenttemplate + createdby 0 - bd2b0e6a-cdba-f011-bbd3-7c1e52365f30 + ee0bcac3-36f3-4fd1-b72a-5a6180e37d11 false - true + false iscustomizable - true + false - false - true - user_plannerbusinessscenario + true + false + SystemUser_Imports None - 9.1.62 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -431549,27 +481357,27 @@ false systemuserid systemuser - user_plannerbusinessscenario + SystemUser_Imports owninguser - plannerbusinessscenario + import owninguser 0 - 3d2c0e6a-cdba-f011-bbd3-7c1e52365f30 + 7f59d1c3-97a1-435b-afb8-4a225b62facb false - true + false iscustomizable - true + false - false - true - user_plannersyncaction + true + false + lk_duplicaterulebase_modifiedby None - 9.1.62 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -431603,27 +481411,27 @@ false systemuserid systemuser - user_plannersyncaction - owninguser - plannersyncaction - owninguser + lk_duplicaterulebase_modifiedby + modifiedby + duplicaterule + modifiedby 0 - 780733b8-cdba-f011-bbd3-7c1e52365f30 + 7939e4c3-742f-4ce7-8059-e8372d245b19 false - true + false iscustomizable true - false + true true - lk_mcpserver_createdby + lk_newprocess_modifiedonbehalfby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -431657,27 +481465,27 @@ false systemuserid systemuser - lk_mcpserver_createdby - createdby - mcpserver - createdby + lk_newprocess_modifiedonbehalfby + modifiedonbehalfby + newprocess + modifiedonbehalfbyname 0 - 7e0733b8-cdba-f011-bbd3-7c1e52365f30 + d7b301c4-2a41-4bfe-9955-7f3f30dd8f41 false - true + false iscustomizable true - false + true true - lk_mcpserver_createdonbehalfby + lk_fax_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -431711,27 +481519,27 @@ false systemuserid systemuser - lk_mcpserver_createdonbehalfby - createdonbehalfby - mcpserver - createdonbehalfby + lk_fax_modifiedby + modifiedby + fax + modifiedby_fax 0 - 840733b8-cdba-f011-bbd3-7c1e52365f30 + 98a844c4-6621-461e-bdce-10a33e01def8 false - true + false iscustomizable - true + false - false + true true - lk_mcpserver_modifiedby + lk_calendar_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -431765,27 +481573,27 @@ false systemuserid systemuser - lk_mcpserver_modifiedby - modifiedby - mcpserver - modifiedby + lk_calendar_createdonbehalfby + createdonbehalfby + calendar + createdonbehalfby 0 - 8a0733b8-cdba-f011-bbd3-7c1e52365f30 + b5b24ac4-6da6-4250-afa3-ff818a57beed false - true + false iscustomizable - true + false - false + true true - lk_mcpserver_modifiedonbehalfby + workflow_dependency_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -431819,15 +481627,15 @@ false systemuserid systemuser - lk_mcpserver_modifiedonbehalfby - modifiedonbehalfby - mcpserver - modifiedonbehalfby + workflow_dependency_createdonbehalfby + createdonbehalfby + workflowdependency + createdonbehalfby 0 - 9c0733b8-cdba-f011-bbd3-7c1e52365f30 + 35ae83c4-c0ba-f011-bbd3-7c1e52365f30 false @@ -431837,7 +481645,7 @@ false true - user_mcpserver + lk_conversationtranscript_createdby None 1.0.0.0 OneToManyRelationship @@ -431873,15 +481681,15 @@ false systemuserid systemuser - user_mcpserver - owninguser - mcpserver - owninguser + lk_conversationtranscript_createdby + createdby + conversationtranscript + createdby 0 - 360833b8-cdba-f011-bbd3-7c1e52365f30 + 3bae83c4-c0ba-f011-bbd3-7c1e52365f30 false @@ -431891,7 +481699,7 @@ false true - lk_mcptool_createdby + lk_conversationtranscript_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -431927,15 +481735,15 @@ false systemuserid systemuser - lk_mcptool_createdby - createdby - mcptool - createdby + lk_conversationtranscript_createdonbehalfby + createdonbehalfby + conversationtranscript + createdonbehalfby 0 - 3c0833b8-cdba-f011-bbd3-7c1e52365f30 + 41ae83c4-c0ba-f011-bbd3-7c1e52365f30 false @@ -431945,7 +481753,7 @@ false true - lk_mcptool_createdonbehalfby + lk_conversationtranscript_modifiedby None 1.0.0.0 OneToManyRelationship @@ -431981,15 +481789,15 @@ false systemuserid systemuser - lk_mcptool_createdonbehalfby - createdonbehalfby - mcptool - createdonbehalfby + lk_conversationtranscript_modifiedby + modifiedby + conversationtranscript + modifiedby 0 - 420833b8-cdba-f011-bbd3-7c1e52365f30 + 47ae83c4-c0ba-f011-bbd3-7c1e52365f30 false @@ -431999,7 +481807,7 @@ false true - lk_mcptool_modifiedby + lk_conversationtranscript_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -432035,15 +481843,15 @@ false systemuserid systemuser - lk_mcptool_modifiedby - modifiedby - mcptool - modifiedby + lk_conversationtranscript_modifiedonbehalfby + modifiedonbehalfby + conversationtranscript + modifiedonbehalfby 0 - 480833b8-cdba-f011-bbd3-7c1e52365f30 + 59ae83c4-c0ba-f011-bbd3-7c1e52365f30 false @@ -432053,7 +481861,7 @@ false true - lk_mcptool_modifiedonbehalfby + user_conversationtranscript None 1.0.0.0 OneToManyRelationship @@ -432089,30 +481897,30 @@ false systemuserid systemuser - lk_mcptool_modifiedonbehalfby - modifiedonbehalfby - mcptool - modifiedonbehalfby + user_conversationtranscript + owninguser + conversationtranscript + owninguser 0 - 5a0833b8-cdba-f011-bbd3-7c1e52365f30 + 812484c4-9c81-43cf-84f0-c34ba52af95f false - true + false iscustomizable - true + false - false + true true - user_mcptool + lk_customcontrolresource_modifiedonbehalfby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -432143,15 +481951,15 @@ false systemuserid systemuser - user_mcptool - owninguser - mcptool - owninguser + lk_customcontrolresource_modifiedonbehalfby + modifiedonbehalfby + customcontrolresource + modifiedonbehalfby 0 - e30833b8-cdba-f011-bbd3-7c1e52365f30 + be5716c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432161,7 +481969,7 @@ false true - lk_toolinggateway_createdby + lk_viewasexamplequestion_createdby None 1.0.0.0 OneToManyRelationship @@ -432197,15 +482005,15 @@ false systemuserid systemuser - lk_toolinggateway_createdby + lk_viewasexamplequestion_createdby createdby - toolinggateway + viewasexamplequestion createdby 0 - e90833b8-cdba-f011-bbd3-7c1e52365f30 + c45716c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432215,7 +482023,7 @@ false true - lk_toolinggateway_createdonbehalfby + lk_viewasexamplequestion_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -432251,15 +482059,15 @@ false systemuserid systemuser - lk_toolinggateway_createdonbehalfby + lk_viewasexamplequestion_createdonbehalfby createdonbehalfby - toolinggateway + viewasexamplequestion createdonbehalfby 0 - ef0833b8-cdba-f011-bbd3-7c1e52365f30 + ca5716c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432269,7 +482077,7 @@ false true - lk_toolinggateway_modifiedby + lk_viewasexamplequestion_modifiedby None 1.0.0.0 OneToManyRelationship @@ -432305,15 +482113,15 @@ false systemuserid systemuser - lk_toolinggateway_modifiedby + lk_viewasexamplequestion_modifiedby modifiedby - toolinggateway + viewasexamplequestion modifiedby 0 - f50833b8-cdba-f011-bbd3-7c1e52365f30 + d05716c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432323,7 +482131,7 @@ false true - lk_toolinggateway_modifiedonbehalfby + lk_viewasexamplequestion_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -432359,15 +482167,15 @@ false systemuserid systemuser - lk_toolinggateway_modifiedonbehalfby + lk_viewasexamplequestion_modifiedonbehalfby modifiedonbehalfby - toolinggateway + viewasexamplequestion modifiedonbehalfby 0 - 070933b8-cdba-f011-bbd3-7c1e52365f30 + 755816c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432377,7 +482185,7 @@ false true - user_toolinggateway + lk_copilotexamplequestion_createdby None 1.0.0.0 OneToManyRelationship @@ -432413,15 +482221,15 @@ false systemuserid systemuser - user_toolinggateway - owninguser - toolinggateway - owninguser + lk_copilotexamplequestion_createdby + createdby + copilotexamplequestion + createdby 0 - 820933b8-cdba-f011-bbd3-7c1e52365f30 + 7b5816c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432431,7 +482239,7 @@ false true - lk_toolinggatewaymcpserver_createdby + lk_copilotexamplequestion_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -432467,15 +482275,15 @@ false systemuserid systemuser - lk_toolinggatewaymcpserver_createdby - createdby - toolinggatewaymcpserver - createdby + lk_copilotexamplequestion_createdonbehalfby + createdonbehalfby + copilotexamplequestion + createdonbehalfby 0 - 880933b8-cdba-f011-bbd3-7c1e52365f30 + 815816c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432485,7 +482293,7 @@ false true - lk_toolinggatewaymcpserver_createdonbehalfby + lk_copilotexamplequestion_modifiedby None 1.0.0.0 OneToManyRelationship @@ -432521,15 +482329,15 @@ false systemuserid systemuser - lk_toolinggatewaymcpserver_createdonbehalfby - createdonbehalfby - toolinggatewaymcpserver - createdonbehalfby + lk_copilotexamplequestion_modifiedby + modifiedby + copilotexamplequestion + modifiedby 0 - 8e0933b8-cdba-f011-bbd3-7c1e52365f30 + 875816c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432539,7 +482347,7 @@ false true - lk_toolinggatewaymcpserver_modifiedby + lk_copilotexamplequestion_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -432575,15 +482383,15 @@ false systemuserid systemuser - lk_toolinggatewaymcpserver_modifiedby - modifiedby - toolinggatewaymcpserver - modifiedby + lk_copilotexamplequestion_modifiedonbehalfby + modifiedonbehalfby + copilotexamplequestion + modifiedonbehalfby 0 - 940933b8-cdba-f011-bbd3-7c1e52365f30 + 275916c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432593,9 +482401,9 @@ false true - lk_toolinggatewaymcpserver_modifiedonbehalfby + lk_copilotglossaryterm_createdby None - 1.0.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -432629,15 +482437,15 @@ false systemuserid systemuser - lk_toolinggatewaymcpserver_modifiedonbehalfby - modifiedonbehalfby - toolinggatewaymcpserver - modifiedonbehalfby + lk_copilotglossaryterm_createdby + createdby + copilotglossaryterm + createdby 0 - a60933b8-cdba-f011-bbd3-7c1e52365f30 + 2d5916c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432647,9 +482455,9 @@ false true - user_toolinggatewaymcpserver + lk_copilotglossaryterm_createdonbehalfby None - 1.0.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -432683,15 +482491,15 @@ false systemuserid systemuser - user_toolinggatewaymcpserver - owninguser - toolinggatewaymcpserver - owninguser + lk_copilotglossaryterm_createdonbehalfby + createdonbehalfby + copilotglossaryterm + createdonbehalfby 0 - df83b50a-ceba-f011-bbd3-7c1e52365f30 + 335916c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432701,9 +482509,9 @@ false true - lk_emailaddressconfiguration_createdby + lk_copilotglossaryterm_modifiedby None - 9.2.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -432737,15 +482545,15 @@ false systemuserid systemuser - lk_emailaddressconfiguration_createdby - createdby - emailaddressconfiguration - createdby + lk_copilotglossaryterm_modifiedby + modifiedby + copilotglossaryterm + modifiedby 0 - e583b50a-ceba-f011-bbd3-7c1e52365f30 + 395916c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432755,9 +482563,9 @@ false true - lk_emailaddressconfiguration_createdonbehalfby + lk_copilotglossaryterm_modifiedonbehalfby None - 9.2.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -432791,15 +482599,15 @@ false systemuserid systemuser - lk_emailaddressconfiguration_createdonbehalfby - createdonbehalfby - emailaddressconfiguration - createdonbehalfby + lk_copilotglossaryterm_modifiedonbehalfby + modifiedonbehalfby + copilotglossaryterm + modifiedonbehalfby 0 - eb83b50a-ceba-f011-bbd3-7c1e52365f30 + 4b5916c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -432809,9 +482617,9 @@ false true - lk_emailaddressconfiguration_modifiedby + user_copilotglossaryterm None - 9.2.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -432845,27 +482653,27 @@ false systemuserid systemuser - lk_emailaddressconfiguration_modifiedby - modifiedby - emailaddressconfiguration - modifiedby + user_copilotglossaryterm + owninguser + copilotglossaryterm + owninguser 0 - f183b50a-ceba-f011-bbd3-7c1e52365f30 + ea6e6ec5-42c9-4a48-8789-662efdf20a00 false - true + false iscustomizable - true + false - false + true true - lk_emailaddressconfiguration_modifiedonbehalfby + user_routingruleitem None - 9.2.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -432899,15 +482707,15 @@ false systemuserid systemuser - lk_emailaddressconfiguration_modifiedonbehalfby - modifiedonbehalfby - emailaddressconfiguration - modifiedonbehalfby + user_routingruleitem + assignobjectid + routingruleitem + assignobjectid_systemuser 0 - 32d1c8ce-897c-e011-b3dc-00155d7b4422 + 3506bdc5-0984-4f8e-9cab-1702d7f5f5a2 false @@ -432917,9 +482725,9 @@ true true - mailbox_regarding_systemuser - Append - 6.0.0.0 + lk_savedorginsightsconfiguration_createdonbehalfby + None + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -432938,10 +482746,10 @@ NoCascade - Cascade - Cascade - Cascade - Cascade + NoCascade + NoCascade + NoCascade + NoCascade NoCascade NoCascade NoCascade @@ -432953,27 +482761,81 @@ false systemuserid systemuser - mailbox_regarding_systemuser - regardingobjectid - mailbox - regardingobjectid + lk_savedorginsightsconfiguration_createdonbehalfby + createdonbehalfby + savedorginsightsconfiguration + lk_savedorginsightsconfiguration_createdonbehalfby - 1 + 0 - 65b0958b-ceba-f011-bbd3-7c1e52365f30 + f538d5c5-8863-4749-8a00-dd8e35f17191 false - true + false iscustomizable false - false + true + false + SystemUser_ImportMaps + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + SystemUser_ImportMaps + owninguser + importmap + owninguser + + 0 + + + 6f48e5c5-c5ba-f011-bbd3-7c1e52365f30 + + false + + false + iscustomizable + true + + true true - mailbox_emailaddressapprovedby_systemuser + lk_territorybase_createdby None - 9.2.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -432993,7 +482855,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -433007,27 +482869,27 @@ false systemuserid systemuser - systemuser_mailbox_emailaddressapprovedby - emailaddressapprovedby - mailbox - emailaddressapprovedby_mailbox + lk_territorybase_createdby + createdby + territory + createdby 0 - 6db0958b-ceba-f011-bbd3-7c1e52365f30 + 7548e5c5-c5ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable - false + true - false + true true - mailbox_testandenablelastattemptedby_systemuser + lk_territory_createdonbehalfby None - 9.2.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -433047,7 +482909,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -433061,27 +482923,27 @@ false systemuserid systemuser - systemuser_mailbox_testandenablelastattemptedby - testandenablelastattemptedby - mailbox - testandenablelastattemptedby_mailbox + lk_territorybase_createdonbehalfby + createdonbehalfby + territory + createdonbehalfby 0 - b5fab61c-cfba-f011-bbd3-7c1e52365f30 + 7b48e5c5-c5ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable - false + true - false + true true - lk_virtualentitymetadata_createdby + lk_territorybase_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -433115,27 +482977,27 @@ false systemuserid systemuser - lk_virtualentitymetadata_createdby - createdby - virtualentitymetadata - createdby + lk_territorybase_modifiedby + modifiedby + territory + modifiedby 0 - bbfab61c-cfba-f011-bbd3-7c1e52365f30 + 8148e5c5-c5ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_virtualentitymetadata_createdonbehalfby + lk_territory_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -433169,27 +483031,27 @@ false systemuserid systemuser - lk_virtualentitymetadata_createdonbehalfby - createdonbehalfby - virtualentitymetadata - createdonbehalfby + lk_territorybase_modifiedonbehalfby + modifiedonbehalfby + territory + modifiedonbehalfby 0 - c1fab61c-cfba-f011-bbd3-7c1e52365f30 + d48f4fc6-eb51-40b5-a061-306d0bd73179 false - true + false iscustomizable false - false - true - lk_virtualentitymetadata_modifiedby + true + false + lk_columnmapping_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -433223,79 +483085,25 @@ false systemuserid systemuser - lk_virtualentitymetadata_modifiedby + lk_columnmapping_modifiedby modifiedby - virtualentitymetadata + columnmapping modifiedby 0 - c7fab61c-cfba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_virtualentitymetadata_modifiedonbehalfby - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_virtualentitymetadata_modifiedonbehalfby - modifiedonbehalfby - virtualentitymetadata - modifiedonbehalfby - - 0 - - - 2d712097-cfba-f011-bbd3-7c1e52365f30 + e052b8c6-bcba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_backgroundoperation_createdby + lk_connectionreference_createdby None 1.0.0.0 OneToManyRelationship @@ -433331,15 +483139,15 @@ false systemuserid systemuser - lk_backgroundoperation_createdby + lk_connectionreference_createdby createdby - backgroundoperation + connectionreference createdby 0 - 33712097-cfba-f011-bbd3-7c1e52365f30 + e652b8c6-bcba-f011-bbd3-7c1e52365f30 false @@ -433349,7 +483157,7 @@ false true - lk_backgroundoperation_createdonbehalfby + lk_connectionreference_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -433385,15 +483193,15 @@ false systemuserid systemuser - lk_backgroundoperation_createdonbehalfby + lk_connectionreference_createdonbehalfby createdonbehalfby - backgroundoperation + connectionreference createdonbehalfby 0 - 39712097-cfba-f011-bbd3-7c1e52365f30 + ec52b8c6-bcba-f011-bbd3-7c1e52365f30 false @@ -433403,7 +483211,7 @@ false true - lk_backgroundoperation_modifiedby + lk_connectionreference_modifiedby None 1.0.0.0 OneToManyRelationship @@ -433439,15 +483247,15 @@ false systemuserid systemuser - lk_backgroundoperation_modifiedby + lk_connectionreference_modifiedby modifiedby - backgroundoperation + connectionreference modifiedby 0 - 3f712097-cfba-f011-bbd3-7c1e52365f30 + f252b8c6-bcba-f011-bbd3-7c1e52365f30 false @@ -433457,7 +483265,7 @@ false true - lk_backgroundoperation_modifiedonbehalfby + lk_connectionreference_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -433493,15 +483301,15 @@ false systemuserid systemuser - lk_backgroundoperation_modifiedonbehalfby + lk_connectionreference_modifiedonbehalfby modifiedonbehalfby - backgroundoperation + connectionreference modifiedonbehalfby 0 - db63ceec-cfba-f011-bbd3-7c1e52365f30 + 0453b8c6-bcba-f011-bbd3-7c1e52365f30 false @@ -433511,9 +483319,9 @@ false true - lk_reportparameter_createdby + user_connectionreference None - 1.0.0.5 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -433547,27 +483355,27 @@ false systemuserid systemuser - lk_reportparameter_createdby - createdby - reportparameter - createdby + user_connectionreference + owninguser + connectionreference + owninguser 0 - e163ceec-cfba-f011-bbd3-7c1e52365f30 + 8d9edfc6-0ae5-43a8-b9b9-36555fba5f17 false - true + false iscustomizable - true + false - false + true true - lk_reportparameter_createdonbehalfby + lk_solutioncomponentbase_createdonbehalfby None - 1.0.0.5 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -433601,27 +483409,27 @@ false systemuserid systemuser - lk_reportparameter_createdonbehalfby + lk_solutioncomponentbase_createdonbehalfby createdonbehalfby - reportparameter + solutioncomponent createdonbehalfby 0 - e763ceec-cfba-f011-bbd3-7c1e52365f30 + 89eae0c6-f9fe-4fba-8b13-78b6baf91d62 false - true + false iscustomizable true - false + true true - lk_reportparameter_modifiedby + lk_recurringappointmentmaster_modifiedonbehalfby None - 1.0.0.5 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -433655,15 +483463,15 @@ false systemuserid systemuser - lk_reportparameter_modifiedby - modifiedby - reportparameter - modifiedby + lk_recurringappointmentmaster_modifiedonbehalfby + modifiedonbehalfby + recurringappointmentmaster + modifiedonbehalfby_recurringappointmentmaster 0 - ed63ceec-cfba-f011-bbd3-7c1e52365f30 + a86debc6-b6ea-f011-8409-000d3adc1cd9 false @@ -433673,9 +483481,9 @@ false true - lk_reportparameter_modifiedonbehalfby + lk_agenthubmetric_createdby None - 1.0.0.5 + 1.0 OneToManyRelationship DoNotDisplay @@ -433709,15 +483517,15 @@ false systemuserid systemuser - lk_reportparameter_modifiedonbehalfby - modifiedonbehalfby - reportparameter - modifiedonbehalfby + lk_agenthubmetric_createdby + createdby + agenthubmetric + createdby 0 - 30314862-d1ba-f011-bbd3-7c1e52365f30 + b16debc6-b6ea-f011-8409-000d3adc1cd9 false @@ -433727,9 +483535,9 @@ false true - lk_mobileofflineprofileextension_createdby + lk_agenthubmetric_createdonbehalfby None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -433763,15 +483571,15 @@ false systemuserid systemuser - lk_mobileofflineprofileextension_createdby - createdby - mobileofflineprofileextension - createdby + lk_agenthubmetric_createdonbehalfby + createdonbehalfby + agenthubmetric + createdonbehalfby 0 - 36314862-d1ba-f011-bbd3-7c1e52365f30 + ba6debc6-b6ea-f011-8409-000d3adc1cd9 false @@ -433781,9 +483589,9 @@ false true - lk_mobileofflineprofileextension_createdonbehalfby + lk_agenthubmetric_modifiedby None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -433817,15 +483625,15 @@ false systemuserid systemuser - lk_mobileofflineprofileextension_createdonbehalfby - createdonbehalfby - mobileofflineprofileextension - createdonbehalfby + lk_agenthubmetric_modifiedby + modifiedby + agenthubmetric + modifiedby 0 - 3c314862-d1ba-f011-bbd3-7c1e52365f30 + c26debc6-b6ea-f011-8409-000d3adc1cd9 false @@ -433835,9 +483643,9 @@ false true - lk_mobileofflineprofileextension_modifiedby + lk_agenthubmetric_modifiedonbehalfby None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -433871,15 +483679,15 @@ false systemuserid systemuser - lk_mobileofflineprofileextension_modifiedby - modifiedby - mobileofflineprofileextension - modifiedby + lk_agenthubmetric_modifiedonbehalfby + modifiedonbehalfby + agenthubmetric + modifiedonbehalfby 0 - 42314862-d1ba-f011-bbd3-7c1e52365f30 + d76debc6-b6ea-f011-8409-000d3adc1cd9 false @@ -433889,9 +483697,9 @@ false true - lk_mobileofflineprofileextension_modifiedonbehalfby + user_agenthubmetric None - 1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -433925,27 +483733,27 @@ false systemuserid systemuser - lk_mobileofflineprofileextension_modifiedonbehalfby - modifiedonbehalfby - mobileofflineprofileextension - modifiedonbehalfby + user_agenthubmetric + owninguser + agenthubmetric + owninguser 0 - 3dfe94c3-d1ba-f011-bbd3-7c1e52365f30 + 145c14c7-c931-4c3a-8c59-3bf57b9630a4 false - true + false iscustomizable true - false + true true - lk_teammobileofflineprofilemembership_createdby + lk_sharepointdocumentbase_modifiedonbehalfby None - 1.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -433957,8 +483765,8 @@ true - false - + true + navSPDocuments 00000000-0000-0000-0000-000000000000 @@ -433979,27 +483787,27 @@ false systemuserid systemuser - lk_teammobileofflineprofilemembership_createdby - createdby - teammobileofflineprofilemembership - createdby + lk_sharepointdocumentbase_modifiedonbehalfby + modifiedonbehalfby + sharepointdocument + modifiedonbehalfby 0 - 43fe94c3-d1ba-f011-bbd3-7c1e52365f30 + adeb1fc7-3b81-4ef6-b4cb-f643662f98eb false - true + false iscustomizable true - false + true true - lk_teammobileofflineprofilemembership_createdonbehalfby + lk_teambase_administratorid None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -434033,27 +483841,27 @@ false systemuserid systemuser - lk_teammobileofflineprofilemembership_createdonbehalfby - createdonbehalfby - teammobileofflineprofilemembership - createdonbehalfby + lk_teambase_administratorid + administratorid + team + administratorid 0 - 49fe94c3-d1ba-f011-bbd3-7c1e52365f30 + 65bc8ac7-95ae-44be-847a-d2b5e97380e1 false - true + false iscustomizable - true + false - false - true - lk_teammobileofflineprofilemembership_modifiedby + true + false + lk_timezonerule_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -434087,27 +483895,27 @@ false systemuserid systemuser - lk_teammobileofflineprofilemembership_modifiedby - modifiedby - teammobileofflineprofilemembership - modifiedby + lk_timezonerule_modifiedonbehalfby + modifiedonbehalfby + timezonerule + modifiedonbehalfby 0 - 4ffe94c3-d1ba-f011-bbd3-7c1e52365f30 + 24f3a7c7-2f67-4186-92da-cb388d2c0f6b false - true + false iscustomizable - true + false - false + true true - lk_teammobileofflineprofilemembership_modifiedonbehalfby + lk_kbarticletemplate_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -434141,27 +483949,27 @@ false systemuserid systemuser - lk_teammobileofflineprofilemembership_modifiedonbehalfby + lk_kbarticletemplate_modifiedonbehalfby modifiedonbehalfby - teammobileofflineprofilemembership + kbarticletemplate modifiedonbehalfby 0 - 49dfcbc9-d1ba-f011-bbd3-7c1e52365f30 + 5828adc7-2226-4c40-b8f7-4e1ba83863cc false - true + false iscustomizable true - false + true true - lk_usermobileofflineprofilemembership_createdby + lk_savedorginsightsconfiguration_modifiedby None - 1.0.0.0 + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -434195,27 +484003,27 @@ false systemuserid systemuser - lk_usermobileofflineprofilemembership_createdby - createdby - usermobileofflineprofilemembership - createdby + lk_savedorginsightsconfiguration_modifiedby + modifiedby + savedorginsightsconfiguration + lk_savedorginsightsconfiguration_modifiedby 0 - 4fdfcbc9-d1ba-f011-bbd3-7c1e52365f30 + 16b235c8-f9a9-4a4a-b383-725dd0c55535 false - true + false iscustomizable - true + false - false - true - lk_usermobileofflineprofilemembership_createdonbehalfby + true + false + lk_ACIViewMapper_createdonbehalfby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -434249,15 +484057,15 @@ false systemuserid systemuser - lk_usermobileofflineprofilemembership_createdonbehalfby + lk_ACIViewMapper_createdonbehalfby createdonbehalfby - usermobileofflineprofilemembership + aciviewmapper createdonbehalfby 0 - 55dfcbc9-d1ba-f011-bbd3-7c1e52365f30 + 9ff26fc8-5566-f111-ab0c-70a8a52b6964 false @@ -434267,7 +484075,7 @@ false true - lk_usermobileofflineprofilemembership_modifiedby + lk_ctx_child_createdby None 1.0.0.0 OneToManyRelationship @@ -434303,15 +484111,15 @@ false systemuserid systemuser - lk_usermobileofflineprofilemembership_modifiedby - modifiedby - usermobileofflineprofilemembership - modifiedby + lk_ctx_child_createdby + createdby + ctx_child + createdby 0 - 5bdfcbc9-d1ba-f011-bbd3-7c1e52365f30 + a5f26fc8-5566-f111-ab0c-70a8a52b6964 false @@ -434321,115 +484129,7 @@ false true - lk_usermobileofflineprofilemembership_modifiedonbehalfby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_usermobileofflineprofilemembership_modifiedonbehalfby - modifiedonbehalfby - usermobileofflineprofilemembership - modifiedonbehalfby - - 0 - - - b7dfcbc9-d1ba-f011-bbd3-7c1e52365f30 - - true - - false - iscustomizable - false - - true - false - systemuser_usermobileofflineprofilemembership_SystemUserId - Append - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - 10000 - true - - true - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - systemuser_usermobileofflineprofilemembership_SystemUserId - systemuserid - usermobileofflineprofilemembership - SystemUserId - - 1 - - - f3fa6451-d2ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - lk_organizationdatasyncsubscription_createdby + lk_ctx_child_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -434465,15 +484165,15 @@ false systemuserid systemuser - lk_organizationdatasyncsubscription_createdby - createdby - organizationdatasyncsubscription - createdby + lk_ctx_child_createdonbehalfby + createdonbehalfby + ctx_child + createdonbehalfby 0 - f9fa6451-d2ba-f011-bbd3-7c1e52365f30 + abf26fc8-5566-f111-ab0c-70a8a52b6964 false @@ -434483,7 +484183,7 @@ false true - lk_organizationdatasyncsubscription_createdonbehalfby + lk_ctx_child_modifiedby None 1.0.0.0 OneToManyRelationship @@ -434519,25 +484219,25 @@ false systemuserid systemuser - lk_organizationdatasyncsubscription_createdonbehalfby - createdonbehalfby - organizationdatasyncsubscription - createdonbehalfby + lk_ctx_child_modifiedby + modifiedby + ctx_child + modifiedby 0 - fffa6451-d2ba-f011-bbd3-7c1e52365f30 + b1f26fc8-5566-f111-ab0c-70a8a52b6964 false true iscustomizable - false + true false true - lk_organizationdatasyncsubscription_modifiedby + lk_ctx_child_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -434573,15 +484273,15 @@ false systemuserid systemuser - lk_organizationdatasyncsubscription_modifiedby - modifiedby - organizationdatasyncsubscription - modifiedby + lk_ctx_child_modifiedonbehalfby + modifiedonbehalfby + ctx_child + modifiedonbehalfby 0 - 05fb6451-d2ba-f011-bbd3-7c1e52365f30 + ccf26fc8-5566-f111-ab0c-70a8a52b6964 false @@ -434591,7 +484291,7 @@ false true - lk_organizationdatasyncsubscription_modifiedonbehalfby + user_ctx_child None 1.0.0.0 OneToManyRelationship @@ -434627,27 +484327,27 @@ false systemuserid systemuser - lk_organizationdatasyncsubscription_modifiedonbehalfby - modifiedonbehalfby - organizationdatasyncsubscription - modifiedonbehalfby + user_ctx_child + owninguser + ctx_child + owninguser 0 - c5fb6451-d2ba-f011-bbd3-7c1e52365f30 + 7a8489c8-88db-491c-b87b-7d775099d061 false - true + false iscustomizable - false + true - false + true true - lk_organizationdatasyncsubscriptionentity_createdby + lk_socialactivity_createdby None - 1.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -434681,30 +484381,30 @@ false systemuserid systemuser - lk_organizationdatasyncsubscriptionentity_createdby + lk_socialactivity_createdby createdby - organizationdatasyncsubscriptionentity - createdby + socialactivity + createdby_socialactivity 0 - cbfb6451-d2ba-f011-bbd3-7c1e52365f30 + 7583c5c8-2c21-4a9e-8d60-bb5cb0a35f63 false - true + false iscustomizable true - false + true true - lk_organizationdatasyncsubscriptionentity_createdonbehalfby + lk_appmodule_modifiedby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -434735,27 +484435,27 @@ false systemuserid systemuser - lk_organizationdatasyncsubscriptionentity_createdonbehalfby - createdonbehalfby - organizationdatasyncsubscriptionentity - createdonbehalfby + systemuser_appmodule_modifiedby + modifiedby + appmodule + appmodule_modifiedby 0 - d1fb6451-d2ba-f011-bbd3-7c1e52365f30 + a868cec8-1cce-4b39-bbe8-f466bf6555a7 false - true + false iscustomizable false - false + true true - lk_organizationdatasyncsubscriptionentity_modifiedby + system_user_workflow None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -434789,27 +484489,27 @@ false systemuserid systemuser - lk_organizationdatasyncsubscriptionentity_modifiedby - modifiedby - organizationdatasyncsubscriptionentity - modifiedby + system_user_workflow + owninguser + workflow + owninguser 0 - d7fb6451-d2ba-f011-bbd3-7c1e52365f30 + c3c24ac9-451d-4b5f-84aa-caf8e2f73145 false - true + false iscustomizable true - false + true true - lk_organizationdatasyncsubscriptionentity_modifiedonbehalfby + lk_ChannelPropertyGroup_createdonbehalfby None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -434843,30 +484543,30 @@ false systemuserid systemuser - lk_organizationdatasyncsubscriptionentity_modifiedonbehalfby - modifiedonbehalfby - organizationdatasyncsubscriptionentity - modifiedonbehalfby + lk_ChannelPropertyGroup_createdonbehalfby + createdonbehalfby + channelpropertygroup + createdonbehalfby 0 - 7ffc6451-d2ba-f011-bbd3-7c1e52365f30 + 43988fc9-feee-4b3f-8221-273348b0483d false - true + false iscustomizable false - false - true - lk_organizationdatasyncsubscriptionfnotable_createdby + true + false + lk_knowledgesearchmodel_createdonbehalfby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -434897,30 +484597,30 @@ false systemuserid systemuser - lk_organizationdatasyncsubscriptionfnotable_createdby - createdby - organizationdatasyncsubscriptionfnotable - createdby + lk_knowledgesearchmodel_createdonbehalfby + createdonbehalfby + knowledgesearchmodel + createdonbehalfby 0 - 85fc6451-d2ba-f011-bbd3-7c1e52365f30 + ddd2abc9-6764-4e9b-bf52-35b6ef6f880a false - true + false iscustomizable - true + false - false - true - lk_organizationdatasyncsubscriptionfnotable_createdonbehalfby + true + false + lk_azureserviceconnection_modifiedby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -434951,27 +484651,27 @@ false systemuserid systemuser - lk_organizationdatasyncsubscriptionfnotable_createdonbehalfby - createdonbehalfby - organizationdatasyncsubscriptionfnotable - createdonbehalfby + lk_azureserviceconnection_modifiedby + modifiedby + azureserviceconnection + modifiedby 0 - 8bfc6451-d2ba-f011-bbd3-7c1e52365f30 + 0726c3c9-e13a-4871-9e6a-bd167662ef9a false - true + false iscustomizable - false + true - false + true true - lk_organizationdatasyncsubscriptionfnotable_modifiedby + lk_newprocess_createdonbehalfby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -435005,15 +484705,15 @@ false systemuserid systemuser - lk_organizationdatasyncsubscriptionfnotable_modifiedby - modifiedby - organizationdatasyncsubscriptionfnotable - modifiedby + lk_newprocess_createdonbehalfby + createdonbehalfby + newprocess + createdonbehalfbyname 0 - 91fc6451-d2ba-f011-bbd3-7c1e52365f30 + 49dfcbc9-d1ba-f011-bbd3-7c1e52365f30 false @@ -435023,7 +484723,7 @@ false true - lk_organizationdatasyncsubscriptionfnotable_modifiedonbehalfby + lk_usermobileofflineprofilemembership_createdby None 1.0.0.0 OneToManyRelationship @@ -435059,15 +484759,15 @@ false systemuserid systemuser - lk_organizationdatasyncsubscriptionfnotable_modifiedonbehalfby - modifiedonbehalfby - organizationdatasyncsubscriptionfnotable - modifiedonbehalfby + lk_usermobileofflineprofilemembership_createdby + createdby + usermobileofflineprofilemembership + createdby 0 - c61c8f80-d2ba-f011-bbd3-7c1e52365f30 + 4fdfcbc9-d1ba-f011-bbd3-7c1e52365f30 false @@ -435077,7 +484777,7 @@ false true - lk_organizationdatasyncfnostate_createdby + lk_usermobileofflineprofilemembership_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -435113,15 +484813,15 @@ false systemuserid systemuser - lk_organizationdatasyncfnostate_createdby - createdby - organizationdatasyncfnostate - createdby + lk_usermobileofflineprofilemembership_createdonbehalfby + createdonbehalfby + usermobileofflineprofilemembership + createdonbehalfby 0 - cc1c8f80-d2ba-f011-bbd3-7c1e52365f30 + 55dfcbc9-d1ba-f011-bbd3-7c1e52365f30 false @@ -435131,7 +484831,7 @@ false true - lk_organizationdatasyncfnostate_createdonbehalfby + lk_usermobileofflineprofilemembership_modifiedby None 1.0.0.0 OneToManyRelationship @@ -435167,15 +484867,15 @@ false systemuserid systemuser - lk_organizationdatasyncfnostate_createdonbehalfby - createdonbehalfby - organizationdatasyncfnostate - createdonbehalfby + lk_usermobileofflineprofilemembership_modifiedby + modifiedby + usermobileofflineprofilemembership + modifiedby 0 - d21c8f80-d2ba-f011-bbd3-7c1e52365f30 + 5bdfcbc9-d1ba-f011-bbd3-7c1e52365f30 false @@ -435185,7 +484885,7 @@ false true - lk_organizationdatasyncfnostate_modifiedby + lk_usermobileofflineprofilemembership_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -435221,30 +484921,84 @@ false systemuserid systemuser - lk_organizationdatasyncfnostate_modifiedby - modifiedby - organizationdatasyncfnostate - modifiedby + lk_usermobileofflineprofilemembership_modifiedonbehalfby + modifiedonbehalfby + usermobileofflineprofilemembership + modifiedonbehalfby 0 - d81c8f80-d2ba-f011-bbd3-7c1e52365f30 + b7dfcbc9-d1ba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + false + systemuser_usermobileofflineprofilemembership_SystemUserId + Append + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + systemuser_usermobileofflineprofilemembership_SystemUserId + systemuserid + usermobileofflineprofilemembership + SystemUserId + + 1 + + + b828f5c9-9442-455c-ba51-772cfe3ccb03 false - true + false iscustomizable true - false + true true - lk_organizationdatasyncfnostate_modifiedonbehalfby + lk_appconfig_modifiedonbehalfby None - 1.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -435275,27 +485029,27 @@ false systemuserid systemuser - lk_organizationdatasyncfnostate_modifiedonbehalfby + systemuser_appconfig_modifiedonbehalfby modifiedonbehalfby - organizationdatasyncfnostate - modifiedonbehalfby + appconfig + appconfig_modifiedonbehalfby 0 - d11d8f80-d2ba-f011-bbd3-7c1e52365f30 + a163f5c9-b437-4a90-b73a-06309d293efd false - true + false iscustomizable true - false + true true - lk_organizationdatasyncstate_createdby + lk_slaitembase_modifiedonbehalfby None - 1.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -435329,27 +485083,27 @@ false systemuserid systemuser - lk_organizationdatasyncstate_createdby - createdby - organizationdatasyncstate - createdby + lk_slaitembase_modifiedonbehalfby + modifiedonbehalfby + slaitem + modifiedonbehalfby 0 - d71d8f80-d2ba-f011-bbd3-7c1e52365f30 + 1bdc02ca-9d21-496f-8b93-c5f0da9b2b16 false - true + false iscustomizable - true + false - false - true - lk_organizationdatasyncstate_createdonbehalfby + true + false + SystemUser_DuplicateMatchingRecord None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -435383,27 +485137,27 @@ false systemuserid systemuser - lk_organizationdatasyncstate_createdonbehalfby - createdonbehalfby - organizationdatasyncstate - createdonbehalfby + SystemUser_DuplicateMatchingRecord + duplicaterecordid + duplicaterecord + duplicaterecordid_systemuser 0 - dd1d8f80-d2ba-f011-bbd3-7c1e52365f30 + 8c7697ca-2483-4e45-8696-98551e1e8aa0 false - true + false iscustomizable - true + false - false - true - lk_organizationdatasyncstate_modifiedby + true + false + lk_timezonelocalizedname_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -435437,27 +485191,27 @@ false systemuserid systemuser - lk_organizationdatasyncstate_modifiedby - modifiedby - organizationdatasyncstate - modifiedby + lk_timezonelocalizedname_createdby + createdby + timezonelocalizedname + createdby 0 - e31d8f80-d2ba-f011-bbd3-7c1e52365f30 + 4a98a7ca-d8ed-4016-9274-18441a5f976c false - true + false iscustomizable - true + false - false + true true - lk_organizationdatasyncstate_modifiedonbehalfby + workflow_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -435491,30 +485245,30 @@ false systemuserid systemuser - lk_organizationdatasyncstate_modifiedonbehalfby - modifiedonbehalfby - organizationdatasyncstate - modifiedonbehalfby + workflow_createdonbehalfby + createdonbehalfby + workflow + createdonbehalfby 0 - 85325dce-d3ba-f011-bbd3-7c1e52365f30 + 9ae1c5ca-9c5e-4634-911f-9779a6b58299 false - true + false iscustomizable true - false + true true - lk_archivecleanupinfo_createdby + lk_navigationsetting_modifiedonbehalfby None - 1.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -435545,27 +485299,27 @@ false systemuserid systemuser - lk_archivecleanupinfo_createdby - createdby - archivecleanupinfo - createdby + systemuser_navigationsetting_modifiedonbehalfby + modifiedonbehalfby + navigationsetting + navigationsetting_modifiedonbehalfby 0 - 8b325dce-d3ba-f011-bbd3-7c1e52365f30 + 8286d8ca-2ef7-4e37-8985-aa992258b5bd false - true + false iscustomizable true - false + true true - lk_archivecleanupinfo_createdonbehalfby + lk_queue_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -435599,27 +485353,27 @@ false systemuserid systemuser - lk_archivecleanupinfo_createdonbehalfby - createdonbehalfby - archivecleanupinfo - createdonbehalfby + lk_queue_modifiedonbehalfby + modifiedonbehalfby + queue + modifiedonbehalfby 0 - 91325dce-d3ba-f011-bbd3-7c1e52365f30 + 475705cb-c7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_archivecleanupinfo_modifiedby - None - 1.0.0.0 + email_acceptingentity_systemuser + Append + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -435653,30 +485407,30 @@ false systemuserid systemuser - lk_archivecleanupinfo_modifiedby - modifiedby - archivecleanupinfo - modifiedby + email_acceptingentity_systemuser + acceptingentityid + email + acceptingentityid - 0 + 1 - 97325dce-d3ba-f011-bbd3-7c1e52365f30 + c16731cb-2cee-e411-80d9-00155dcf6500 false - true + false iscustomizable true - false + true true - lk_archivecleanupinfo_modifiedonbehalfby + lk_channelaccessprofile_createdby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -435707,30 +485461,30 @@ false systemuserid systemuser - lk_archivecleanupinfo_modifiedonbehalfby - modifiedonbehalfby - archivecleanupinfo - modifiedonbehalfby + channelaccessprofile_createdby + createdby + channelaccessprofile + channelaccessprofile_createdby 0 - ab325dce-d3ba-f011-bbd3-7c1e52365f30 + c76731cb-2cee-e411-80d9-00155dcf6500 false - true + false iscustomizable true - false + true true - user_archivecleanupinfo + lk_channelaccessprofile_createdonbehalfby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -435761,30 +485515,30 @@ false systemuserid systemuser - user_archivecleanupinfo - owninguser - archivecleanupinfo - owninguser + channelaccessprofile_createdonbehalfby + createdonbehalfby + channelaccessprofile + channelaccessprofile_createdonbehalfby 0 - 6e335dce-d3ba-f011-bbd3-7c1e52365f30 + cd6731cb-2cee-e411-80d9-00155dcf6500 false - true + false iscustomizable true - false + true true - lk_archivecleanupoperation_createdby + lk_channelaccessprofile_modifiedby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -435815,30 +485569,30 @@ false systemuserid systemuser - lk_archivecleanupoperation_createdby - createdby - archivecleanupoperation - createdby + channelaccessprofile_modifiedby + modifiedby + channelaccessprofile + channelaccessprofile_modifiedby 0 - 74335dce-d3ba-f011-bbd3-7c1e52365f30 + d36731cb-2cee-e411-80d9-00155dcf6500 false - true + false iscustomizable true - false + true true - lk_archivecleanupoperation_createdonbehalfby + lk_channelaccessprofile_modifiedonbehalfby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -435869,30 +485623,30 @@ false systemuserid systemuser - lk_archivecleanupoperation_createdonbehalfby - createdonbehalfby - archivecleanupoperation - createdonbehalfby + channelaccessprofile_modifiedonbehalfby + modifiedonbehalfby + channelaccessprofile + channelaccessprofile_modifiedonbehalfby 0 - 7a335dce-d3ba-f011-bbd3-7c1e52365f30 + e56731cb-2cee-e411-80d9-00155dcf6500 false - true + false iscustomizable true - false + true true - lk_archivecleanupoperation_modifiedby + user_channelaccessprofile None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -435923,27 +485677,27 @@ false systemuserid systemuser - lk_archivecleanupoperation_modifiedby - modifiedby - archivecleanupoperation - modifiedby + user_channelaccessprofile + owninguser + channelaccessprofile + user_channelaccessprofile 0 - 80335dce-d3ba-f011-bbd3-7c1e52365f30 + 44384acb-78c7-4062-9f44-b814cc9830e0 false - true + false iscustomizable - true + false - false - true - lk_archivecleanupoperation_modifiedonbehalfby - None - 1.0.0.0 + true + false + lk_quarterlyfiscalcalendar_salespersonid + ParentChild + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -435977,27 +485731,27 @@ false systemuserid systemuser - lk_archivecleanupoperation_modifiedonbehalfby - modifiedonbehalfby - archivecleanupoperation - modifiedonbehalfby + lk_quarterlyfiscalcalendar_salespersonid + salespersonid + quarterlyfiscalcalendar + salespersonid - 0 + 2 - 92335dce-d3ba-f011-bbd3-7c1e52365f30 + 13d091cb-8dbf-46fc-a021-921fba869b8b false - true + false iscustomizable - true + false - false + true true - user_archivecleanupoperation + lk_reportentitybase_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -436031,15 +485785,15 @@ false systemuserid systemuser - user_archivecleanupoperation - owninguser - archivecleanupoperation - owninguser + lk_reportentitybase_createdby + createdby + reportentity + createdby 0 - 4b345dce-d3ba-f011-bbd3-7c1e52365f30 + f2f3f5cb-524d-f111-bec7-002248a2a8d1 false @@ -436049,9 +485803,9 @@ false true - lk_bulkarchiveconfig_createdby + lk_computeruseagent_createdby None - 1.0.0.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -436085,15 +485839,15 @@ false systemuserid systemuser - lk_bulkarchiveconfig_createdby + lk_computeruseagent_createdby createdby - bulkarchiveconfig + computeruseagent createdby 0 - 51345dce-d3ba-f011-bbd3-7c1e52365f30 + f8f3f5cb-524d-f111-bec7-002248a2a8d1 false @@ -436103,9 +485857,9 @@ false true - lk_bulkarchiveconfig_createdonbehalfby + lk_computeruseagent_createdonbehalfby None - 1.0.0.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -436139,15 +485893,15 @@ false systemuserid systemuser - lk_bulkarchiveconfig_createdonbehalfby + lk_computeruseagent_createdonbehalfby createdonbehalfby - bulkarchiveconfig + computeruseagent createdonbehalfby 0 - 57345dce-d3ba-f011-bbd3-7c1e52365f30 + fef3f5cb-524d-f111-bec7-002248a2a8d1 false @@ -436157,9 +485911,9 @@ false true - lk_bulkarchiveconfig_modifiedby + lk_computeruseagent_modifiedby None - 1.0.0.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -436193,15 +485947,15 @@ false systemuserid systemuser - lk_bulkarchiveconfig_modifiedby + lk_computeruseagent_modifiedby modifiedby - bulkarchiveconfig + computeruseagent modifiedby 0 - 5d345dce-d3ba-f011-bbd3-7c1e52365f30 + 04f4f5cb-524d-f111-bec7-002248a2a8d1 false @@ -436211,9 +485965,9 @@ false true - lk_bulkarchiveconfig_modifiedonbehalfby + lk_computeruseagent_modifiedonbehalfby None - 1.0.0.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -436247,15 +486001,15 @@ false systemuserid systemuser - lk_bulkarchiveconfig_modifiedonbehalfby + lk_computeruseagent_modifiedonbehalfby modifiedonbehalfby - bulkarchiveconfig + computeruseagent modifiedonbehalfby 0 - 6f345dce-d3ba-f011-bbd3-7c1e52365f30 + 16f4f5cb-524d-f111-bec7-002248a2a8d1 false @@ -436265,9 +486019,9 @@ false true - user_bulkarchiveconfig + user_computeruseagent None - 1.0.0.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -436301,15 +486055,15 @@ false systemuserid systemuser - user_bulkarchiveconfig + user_computeruseagent owninguser - bulkarchiveconfig + computeruseagent owninguser 0 - 4c355dce-d3ba-f011-bbd3-7c1e52365f30 + bbcdffcb-f1ba-f011-bbd3-7c1e52365f30 false @@ -436319,9 +486073,9 @@ false true - lk_bulkarchivefailuredetail_createdby + lk_copilotsynonyms_createdby None - 1.0.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -436355,15 +486109,15 @@ false systemuserid systemuser - lk_bulkarchivefailuredetail_createdby + lk_copilotsynonyms_createdby createdby - bulkarchivefailuredetail + copilotsynonyms createdby 0 - 52355dce-d3ba-f011-bbd3-7c1e52365f30 + c1cdffcb-f1ba-f011-bbd3-7c1e52365f30 false @@ -436373,9 +486127,9 @@ false true - lk_bulkarchivefailuredetail_createdonbehalfby + lk_copilotsynonyms_createdonbehalfby None - 1.0.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -436409,15 +486163,15 @@ false systemuserid systemuser - lk_bulkarchivefailuredetail_createdonbehalfby + lk_copilotsynonyms_createdonbehalfby createdonbehalfby - bulkarchivefailuredetail + copilotsynonyms createdonbehalfby 0 - 58355dce-d3ba-f011-bbd3-7c1e52365f30 + c7cdffcb-f1ba-f011-bbd3-7c1e52365f30 false @@ -436427,9 +486181,9 @@ false true - lk_bulkarchivefailuredetail_modifiedby + lk_copilotsynonyms_modifiedby None - 1.0.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -436463,15 +486217,15 @@ false systemuserid systemuser - lk_bulkarchivefailuredetail_modifiedby + lk_copilotsynonyms_modifiedby modifiedby - bulkarchivefailuredetail + copilotsynonyms modifiedby 0 - 5e355dce-d3ba-f011-bbd3-7c1e52365f30 + cdcdffcb-f1ba-f011-bbd3-7c1e52365f30 false @@ -436481,9 +486235,9 @@ false true - lk_bulkarchivefailuredetail_modifiedonbehalfby + lk_copilotsynonyms_modifiedonbehalfby None - 1.0.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -436517,15 +486271,15 @@ false systemuserid systemuser - lk_bulkarchivefailuredetail_modifiedonbehalfby + lk_copilotsynonyms_modifiedonbehalfby modifiedonbehalfby - bulkarchivefailuredetail + copilotsynonyms modifiedonbehalfby 0 - 70355dce-d3ba-f011-bbd3-7c1e52365f30 + dfcdffcb-f1ba-f011-bbd3-7c1e52365f30 false @@ -436535,9 +486289,9 @@ false true - user_bulkarchivefailuredetail + user_copilotsynonyms None - 1.0.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -436571,27 +486325,27 @@ false systemuserid systemuser - user_bulkarchivefailuredetail + user_copilotsynonyms owninguser - bulkarchivefailuredetail + copilotsynonyms owninguser 0 - db5d54d4-d3ba-f011-bbd3-7c1e52365f30 + fdaa08cc-cd11-4bd4-a2a4-769898647baa false - true + false iscustomizable - true + false - false - true - lk_bulkarchiveoperation_createdby + true + false + lk_monthlyfiscalcalendar_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -436625,189 +486379,27 @@ false systemuserid systemuser - lk_bulkarchiveoperation_createdby + lk_monthlyfiscalcalendar_createdby createdby - bulkarchiveoperation + monthlyfiscalcalendar createdby 0 - e15d54d4-d3ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_bulkarchiveoperation_createdonbehalfby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_bulkarchiveoperation_createdonbehalfby - createdonbehalfby - bulkarchiveoperation - createdonbehalfby - - 0 - - - e75d54d4-d3ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_bulkarchiveoperation_modifiedby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_bulkarchiveoperation_modifiedby - modifiedby - bulkarchiveoperation - modifiedby - - 0 - - - ed5d54d4-d3ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_bulkarchiveoperation_modifiedonbehalfby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_bulkarchiveoperation_modifiedonbehalfby - modifiedonbehalfby - bulkarchiveoperation - modifiedonbehalfby - - 0 - - - ff5d54d4-d3ba-f011-bbd3-7c1e52365f30 + 14231bcc-6197-4bce-8ccb-e3594c18e4bb false - true + false iscustomizable - true + false - false + true true - user_bulkarchiveoperation + workflow_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -436841,27 +486433,27 @@ false systemuserid systemuser - user_bulkarchiveoperation - owninguser - bulkarchiveoperation - owninguser + workflow_createdby + createdby + workflow + createdby 0 - ac5e54d4-d3ba-f011-bbd3-7c1e52365f30 + 10c133cc-816d-4a08-b821-44f8fdb02c0e false - true + false iscustomizable true - false + true true - lk_bulkarchiveoperationdetail_createdby + lk_personaldocumenttemplatebase_createdby None - 1.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -436895,30 +486487,30 @@ false systemuserid systemuser - lk_bulkarchiveoperationdetail_createdby + lk_personaldocumenttemplatebase_createdby createdby - bulkarchiveoperationdetail + personaldocumenttemplate createdby 0 - b25e54d4-d3ba-f011-bbd3-7c1e52365f30 + c9d045cc-8774-4ee0-bd6f-57e6de9dc713 false - true + false iscustomizable - true + false - false - true - lk_bulkarchiveoperationdetail_createdonbehalfby + true + false + lk_advancedsimilarityrule_modifiedonbehalfby None - 1.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -436949,25 +486541,25 @@ false systemuserid systemuser - lk_bulkarchiveoperationdetail_createdonbehalfby - createdonbehalfby - bulkarchiveoperationdetail - createdonbehalfby + lk_advancedsimilarityrule_modifiedonbehalfby + modifiedonbehalfby + advancedsimilarityrule + modifiedonbehalfby 0 - b95e54d4-d3ba-f011-bbd3-7c1e52365f30 + c54ee4cc-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - lk_bulkarchiveoperationdetail_modifiedby + lk_agenticscenario_createdby None 1.0 OneToManyRelationship @@ -437003,15 +486595,15 @@ false systemuserid systemuser - lk_bulkarchiveoperationdetail_modifiedby - modifiedby - bulkarchiveoperationdetail - modifiedby + lk_agenticscenario_createdby + createdby + agenticscenario + createdby 0 - bf5e54d4-d3ba-f011-bbd3-7c1e52365f30 + cb4ee4cc-b6ea-f011-8409-000d3adc1cd9 false @@ -437021,7 +486613,7 @@ false true - lk_bulkarchiveoperationdetail_modifiedonbehalfby + lk_agenticscenario_createdonbehalfby None 1.0 OneToManyRelationship @@ -437057,25 +486649,25 @@ false systemuserid systemuser - lk_bulkarchiveoperationdetail_modifiedonbehalfby - modifiedonbehalfby - bulkarchiveoperationdetail - modifiedonbehalfby + lk_agenticscenario_createdonbehalfby + createdonbehalfby + agenticscenario + createdonbehalfby 0 - 655f54d4-d3ba-f011-bbd3-7c1e52365f30 + d14ee4cc-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - lk_enablearchivalrequest_createdby + lk_agenticscenario_modifiedby None 1.0 OneToManyRelationship @@ -437111,15 +486703,15 @@ false systemuserid systemuser - lk_enablearchivalrequest_createdby - createdby - enablearchivalrequest - createdby + lk_agenticscenario_modifiedby + modifiedby + agenticscenario + modifiedby 0 - 6b5f54d4-d3ba-f011-bbd3-7c1e52365f30 + d74ee4cc-b6ea-f011-8409-000d3adc1cd9 false @@ -437129,7 +486721,7 @@ false true - lk_enablearchivalrequest_createdonbehalfby + lk_agenticscenario_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -437165,25 +486757,25 @@ false systemuserid systemuser - lk_enablearchivalrequest_createdonbehalfby - createdonbehalfby - enablearchivalrequest - createdonbehalfby + lk_agenticscenario_modifiedonbehalfby + modifiedonbehalfby + agenticscenario + modifiedonbehalfby 0 - 715f54d4-d3ba-f011-bbd3-7c1e52365f30 + e94ee4cc-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - lk_enablearchivalrequest_modifiedby + user_agenticscenario None 1.0 OneToManyRelationship @@ -437219,25 +486811,25 @@ false systemuserid systemuser - lk_enablearchivalrequest_modifiedby - modifiedby - enablearchivalrequest - modifiedby + user_agenticscenario + owninguser + agenticscenario + owninguser 0 - 775f54d4-d3ba-f011-bbd3-7c1e52365f30 + 4951e4cc-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - lk_enablearchivalrequest_modifiedonbehalfby + lk_agentmemory_createdby None 1.0 OneToManyRelationship @@ -437273,15 +486865,15 @@ false systemuserid systemuser - lk_enablearchivalrequest_modifiedonbehalfby - modifiedonbehalfby - enablearchivalrequest - modifiedonbehalfby + lk_agentmemory_createdby + createdby + agentmemory + createdby 0 - 895f54d4-d3ba-f011-bbd3-7c1e52365f30 + 5151e4cc-b6ea-f011-8409-000d3adc1cd9 false @@ -437291,7 +486883,7 @@ false true - user_enablearchivalrequest + lk_agentmemory_createdonbehalfby None 1.0 OneToManyRelationship @@ -437327,25 +486919,25 @@ false systemuserid systemuser - user_enablearchivalrequest - owninguser - enablearchivalrequest - owninguser + lk_agentmemory_createdonbehalfby + createdonbehalfby + agentmemory + createdonbehalfby 0 - 3b6054d4-d3ba-f011-bbd3-7c1e52365f30 + 5851e4cc-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - lk_metadataforarchival_createdby + lk_agentmemory_modifiedby None 1.0 OneToManyRelationship @@ -437381,15 +486973,15 @@ false systemuserid systemuser - lk_metadataforarchival_createdby - createdby - metadataforarchival - createdby + lk_agentmemory_modifiedby + modifiedby + agentmemory + modifiedby 0 - 416054d4-d3ba-f011-bbd3-7c1e52365f30 + 6151e4cc-b6ea-f011-8409-000d3adc1cd9 false @@ -437399,7 +486991,7 @@ false true - lk_metadataforarchival_createdonbehalfby + lk_agentmemory_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -437435,25 +487027,25 @@ false systemuserid systemuser - lk_metadataforarchival_createdonbehalfby - createdonbehalfby - metadataforarchival - createdonbehalfby + lk_agentmemory_modifiedonbehalfby + modifiedonbehalfby + agentmemory + modifiedonbehalfby 0 - 476054d4-d3ba-f011-bbd3-7c1e52365f30 + 7551e4cc-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - lk_metadataforarchival_modifiedby + user_agentmemory None 1.0 OneToManyRelationship @@ -437489,27 +487081,27 @@ false systemuserid systemuser - lk_metadataforarchival_modifiedby - modifiedby - metadataforarchival - modifiedby + user_agentmemory + owninguser + agentmemory + owninguser 0 - 4d6054d4-d3ba-f011-bbd3-7c1e52365f30 + 047797cd-c6ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_metadataforarchival_modifiedonbehalfby + lk_pdfsetting_createdby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -437543,27 +487135,27 @@ false systemuserid systemuser - lk_metadataforarchival_modifiedonbehalfby - modifiedonbehalfby - metadataforarchival - modifiedonbehalfby + lk_pdfsetting_createdby + createdby + pdfsetting + createdby 0 - fc7bc9da-d3ba-f011-bbd3-7c1e52365f30 + 0a7797cd-c6ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_reconciliationentityinfo_createdby + lk_pdfsetting_createdonbehalfby None - 1.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -437597,27 +487189,27 @@ false systemuserid systemuser - lk_reconciliationentityinfo_createdby - createdby - reconciliationentityinfo - createdby + lk_pdfsetting_createdonbehalfby + createdonbehalfby + pdfsetting + createdonbehalfby 0 - 027cc9da-d3ba-f011-bbd3-7c1e52365f30 + 107797cd-c6ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_reconciliationentityinfo_createdonbehalfby + lk_pdfsetting_modifiedby None - 1.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -437651,27 +487243,27 @@ false systemuserid systemuser - lk_reconciliationentityinfo_createdonbehalfby - createdonbehalfby - reconciliationentityinfo - createdonbehalfby + lk_pdfsetting_modifiedby + modifiedby + pdfsetting + modifiedby 0 - 087cc9da-d3ba-f011-bbd3-7c1e52365f30 + 167797cd-c6ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_reconciliationentityinfo_modifiedby + lk_pdfsetting_modifiedonbehalfby None - 1.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -437705,27 +487297,27 @@ false systemuserid systemuser - lk_reconciliationentityinfo_modifiedby - modifiedby - reconciliationentityinfo - modifiedby + lk_pdfsetting_modifiedonbehalfby + modifiedonbehalfby + pdfsetting + modifiedonbehalfby 0 - 0e7cc9da-d3ba-f011-bbd3-7c1e52365f30 + 287797cd-c6ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_reconciliationentityinfo_modifiedonbehalfby + user_pdfsetting None - 1.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -437759,30 +487351,30 @@ false systemuserid systemuser - lk_reconciliationentityinfo_modifiedonbehalfby - modifiedonbehalfby - reconciliationentityinfo - modifiedonbehalfby + user_pdfsetting + owninguser + pdfsetting + owninguser 0 - 207cc9da-d3ba-f011-bbd3-7c1e52365f30 + 0c5135ce-f9ea-494e-a807-8355f2f71eea false - true + false iscustomizable true - false + true true - user_reconciliationentityinfo + lk_feedback_closedby None - 1.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -437813,15 +487405,15 @@ false systemuserid systemuser - user_reconciliationentityinfo - owninguser - reconciliationentityinfo - owninguser + lk_feedback_closedby + closedby + feedback + closedby 0 - 747dc9da-d3ba-f011-bbd3-7c1e52365f30 + 85325dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -437831,9 +487423,9 @@ false true - lk_reconciliationentitystepinfo_createdby + lk_archivecleanupinfo_createdby None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -437867,15 +487459,15 @@ false systemuserid systemuser - lk_reconciliationentitystepinfo_createdby + lk_archivecleanupinfo_createdby createdby - reconciliationentitystepinfo + archivecleanupinfo createdby 0 - 7b7dc9da-d3ba-f011-bbd3-7c1e52365f30 + 8b325dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -437885,9 +487477,9 @@ false true - lk_reconciliationentitystepinfo_createdonbehalfby + lk_archivecleanupinfo_createdonbehalfby None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -437921,15 +487513,15 @@ false systemuserid systemuser - lk_reconciliationentitystepinfo_createdonbehalfby + lk_archivecleanupinfo_createdonbehalfby createdonbehalfby - reconciliationentitystepinfo + archivecleanupinfo createdonbehalfby 0 - 827dc9da-d3ba-f011-bbd3-7c1e52365f30 + 91325dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -437939,9 +487531,9 @@ false true - lk_reconciliationentitystepinfo_modifiedby + lk_archivecleanupinfo_modifiedby None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -437975,15 +487567,15 @@ false systemuserid systemuser - lk_reconciliationentitystepinfo_modifiedby + lk_archivecleanupinfo_modifiedby modifiedby - reconciliationentitystepinfo + archivecleanupinfo modifiedby 0 - 897dc9da-d3ba-f011-bbd3-7c1e52365f30 + 97325dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -437993,9 +487585,9 @@ false true - lk_reconciliationentitystepinfo_modifiedonbehalfby + lk_archivecleanupinfo_modifiedonbehalfby None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438029,15 +487621,15 @@ false systemuserid systemuser - lk_reconciliationentitystepinfo_modifiedonbehalfby + lk_archivecleanupinfo_modifiedonbehalfby modifiedonbehalfby - reconciliationentitystepinfo + archivecleanupinfo modifiedonbehalfby 0 - 9d7dc9da-d3ba-f011-bbd3-7c1e52365f30 + ab325dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438047,9 +487639,9 @@ false true - user_reconciliationentitystepinfo + user_archivecleanupinfo None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438083,15 +487675,15 @@ false systemuserid systemuser - user_reconciliationentitystepinfo + user_archivecleanupinfo owninguser - reconciliationentitystepinfo + archivecleanupinfo owninguser 0 - a67ec9da-d3ba-f011-bbd3-7c1e52365f30 + 6e335dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438101,9 +487693,9 @@ false true - lk_reconciliationinfo_createdby + lk_archivecleanupoperation_createdby None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438137,15 +487729,15 @@ false systemuserid systemuser - lk_reconciliationinfo_createdby + lk_archivecleanupoperation_createdby createdby - reconciliationinfo + archivecleanupoperation createdby 0 - ae7ec9da-d3ba-f011-bbd3-7c1e52365f30 + 74335dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438155,9 +487747,9 @@ false true - lk_reconciliationinfo_createdonbehalfby + lk_archivecleanupoperation_createdonbehalfby None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438191,15 +487783,15 @@ false systemuserid systemuser - lk_reconciliationinfo_createdonbehalfby + lk_archivecleanupoperation_createdonbehalfby createdonbehalfby - reconciliationinfo + archivecleanupoperation createdonbehalfby 0 - b57ec9da-d3ba-f011-bbd3-7c1e52365f30 + 7a335dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438209,9 +487801,9 @@ false true - lk_reconciliationinfo_modifiedby + lk_archivecleanupoperation_modifiedby None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438245,15 +487837,15 @@ false systemuserid systemuser - lk_reconciliationinfo_modifiedby + lk_archivecleanupoperation_modifiedby modifiedby - reconciliationinfo + archivecleanupoperation modifiedby 0 - bc7ec9da-d3ba-f011-bbd3-7c1e52365f30 + 80335dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438263,9 +487855,9 @@ false true - lk_reconciliationinfo_modifiedonbehalfby + lk_archivecleanupoperation_modifiedonbehalfby None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438299,15 +487891,15 @@ false systemuserid systemuser - lk_reconciliationinfo_modifiedonbehalfby + lk_archivecleanupoperation_modifiedonbehalfby modifiedonbehalfby - reconciliationinfo + archivecleanupoperation modifiedonbehalfby 0 - cf7ec9da-d3ba-f011-bbd3-7c1e52365f30 + 92335dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438317,9 +487909,9 @@ false true - user_reconciliationinfo + user_archivecleanupoperation None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438353,15 +487945,15 @@ false systemuserid systemuser - user_reconciliationinfo + user_archivecleanupoperation owninguser - reconciliationinfo + archivecleanupoperation owninguser 0 - 1480c9da-d3ba-f011-bbd3-7c1e52365f30 + 4b345dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438371,9 +487963,9 @@ false true - lk_retentioncleanupinfo_createdby + lk_bulkarchiveconfig_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438407,15 +487999,15 @@ false systemuserid systemuser - lk_retentioncleanupinfo_createdby + lk_bulkarchiveconfig_createdby createdby - retentioncleanupinfo + bulkarchiveconfig createdby 0 - 1b80c9da-d3ba-f011-bbd3-7c1e52365f30 + 51345dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438425,9 +488017,9 @@ false true - lk_retentioncleanupinfo_createdonbehalfby + lk_bulkarchiveconfig_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438461,15 +488053,15 @@ false systemuserid systemuser - lk_retentioncleanupinfo_createdonbehalfby + lk_bulkarchiveconfig_createdonbehalfby createdonbehalfby - retentioncleanupinfo + bulkarchiveconfig createdonbehalfby 0 - 2280c9da-d3ba-f011-bbd3-7c1e52365f30 + 57345dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438479,9 +488071,117 @@ false true - lk_retentioncleanupinfo_modifiedby + lk_bulkarchiveconfig_modifiedby None - 1.0 + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_bulkarchiveconfig_modifiedby + modifiedby + bulkarchiveconfig + modifiedby + + 0 + + + 5d345dce-d3ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_bulkarchiveconfig_modifiedonbehalfby + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_bulkarchiveconfig_modifiedonbehalfby + modifiedonbehalfby + bulkarchiveconfig + modifiedonbehalfby + + 0 + + + 6f345dce-d3ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + user_bulkarchiveconfig + None + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438515,15 +488215,15 @@ false systemuserid systemuser - lk_retentioncleanupinfo_modifiedby - modifiedby - retentioncleanupinfo - modifiedby + user_bulkarchiveconfig + owninguser + bulkarchiveconfig + owninguser 0 - 2a80c9da-d3ba-f011-bbd3-7c1e52365f30 + 4c355dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438533,9 +488233,9 @@ false true - lk_retentioncleanupinfo_modifiedonbehalfby + lk_bulkarchivefailuredetail_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438569,15 +488269,15 @@ false systemuserid systemuser - lk_retentioncleanupinfo_modifiedonbehalfby - modifiedonbehalfby - retentioncleanupinfo - modifiedonbehalfby + lk_bulkarchivefailuredetail_createdby + createdby + bulkarchivefailuredetail + createdby 0 - 3e80c9da-d3ba-f011-bbd3-7c1e52365f30 + 52355dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438587,9 +488287,9 @@ false true - user_retentioncleanupinfo + lk_bulkarchivefailuredetail_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438623,15 +488323,15 @@ false systemuserid systemuser - user_retentioncleanupinfo - owninguser - retentioncleanupinfo - owninguser + lk_bulkarchivefailuredetail_createdonbehalfby + createdonbehalfby + bulkarchivefailuredetail + createdonbehalfby 0 - 7381c9da-d3ba-f011-bbd3-7c1e52365f30 + 58355dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438641,9 +488341,9 @@ false true - lk_retentioncleanupoperation_createdby + lk_bulkarchivefailuredetail_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438677,15 +488377,15 @@ false systemuserid systemuser - lk_retentioncleanupoperation_createdby - createdby - retentioncleanupoperation - createdby + lk_bulkarchivefailuredetail_modifiedby + modifiedby + bulkarchivefailuredetail + modifiedby 0 - 7b81c9da-d3ba-f011-bbd3-7c1e52365f30 + 5e355dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438695,9 +488395,9 @@ false true - lk_retentioncleanupoperation_createdonbehalfby + lk_bulkarchivefailuredetail_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438731,15 +488431,15 @@ false systemuserid systemuser - lk_retentioncleanupoperation_createdonbehalfby - createdonbehalfby - retentioncleanupoperation - createdonbehalfby + lk_bulkarchivefailuredetail_modifiedonbehalfby + modifiedonbehalfby + bulkarchivefailuredetail + modifiedonbehalfby 0 - 8281c9da-d3ba-f011-bbd3-7c1e52365f30 + 70355dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -438749,9 +488449,9 @@ false true - lk_retentioncleanupoperation_modifiedby + user_bulkarchivefailuredetail None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -438785,27 +488485,27 @@ false systemuserid systemuser - lk_retentioncleanupoperation_modifiedby - modifiedby - retentioncleanupoperation - modifiedby + user_bulkarchivefailuredetail + owninguser + bulkarchivefailuredetail + owninguser 0 - 8a81c9da-d3ba-f011-bbd3-7c1e52365f30 + ba4d91ce-e6ca-4a3d-ad26-d61218ae3e7c false - true + false iscustomizable - true + false - false - true - lk_retentioncleanupoperation_modifiedonbehalfby + true + false + lk_webwizard_createdby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -438839,27 +488539,27 @@ false systemuserid systemuser - lk_retentioncleanupoperation_modifiedonbehalfby - modifiedonbehalfby - retentioncleanupoperation - modifiedonbehalfby + lk_webwizard_createdby + createdby + webwizard + createdby 0 - 9e81c9da-d3ba-f011-bbd3-7c1e52365f30 + ad58b4ce-a1e6-47cc-91fc-3b1bb49a81c9 false - true + false iscustomizable - true + false - false - true - user_retentioncleanupoperation + true + false + lk_SharePointData_modifiedby None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -438893,27 +488593,27 @@ false systemuserid systemuser - user_retentioncleanupoperation - owninguser - retentioncleanupoperation - owninguser + lk_SharePointData_modifiedby + modifiedby + sharepointdata + modifiedby 0 - f282c9da-d3ba-f011-bbd3-7c1e52365f30 + 32d1c8ce-897c-e011-b3dc-00155d7b4422 false - true + false iscustomizable - true + false - false + true true - lk_retentionconfig_createdby - None - 1.0.0.0 + mailbox_regarding_systemuser + Append + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -438932,10 +488632,10 @@ NoCascade - NoCascade - NoCascade - NoCascade - NoCascade + Cascade + Cascade + Cascade + Cascade NoCascade NoCascade NoCascade @@ -438947,27 +488647,27 @@ false systemuserid systemuser - lk_retentionconfig_createdby - createdby - retentionconfig - createdby + mailbox_regarding_systemuser + regardingobjectid + mailbox + regardingobjectid - 0 + 1 - fc82c9da-d3ba-f011-bbd3-7c1e52365f30 + 27934bcf-ebe9-41d1-8ecc-8c4940650504 false - true + false iscustomizable true - false + true true - lk_retentionconfig_createdonbehalfby + lk_connectionbase_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -439001,27 +488701,27 @@ false systemuserid systemuser - lk_retentionconfig_createdonbehalfby - createdonbehalfby - retentionconfig - createdonbehalfby + lk_connectionbase_modifiedonbehalfby + modifiedonbehalfby + connection + modifiedonbehalfby 0 - 0583c9da-d3ba-f011-bbd3-7c1e52365f30 + ab1064cf-d830-4477-9f02-52a4dac3adea false - true + false iscustomizable - true + false - false + true true - lk_retentionconfig_modifiedby + lk_calendarrule_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -439055,84 +488755,30 @@ false systemuserid systemuser - lk_retentionconfig_modifiedby + lk_calendarrule_modifiedby modifiedby - retentionconfig + calendarrule modifiedby 0 - 0d83c9da-d3ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_retentionconfig_modifiedonbehalfby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_retentionconfig_modifiedonbehalfby - modifiedonbehalfby - retentionconfig - modifiedonbehalfby - - 0 - - - 2283c9da-d3ba-f011-bbd3-7c1e52365f30 + 0a838dcf-ea3d-41b5-ac3e-a46f95daff82 false - true + false iscustomizable - true + false - false - true - user_retentionconfig + true + false + lk_category_modifiedby None - 1.0.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -439163,27 +488809,27 @@ false systemuserid systemuser - user_retentionconfig - owninguser - retentionconfig - owninguser + lk_category_modifiedby + modifiedby + category + lk_category_modifiedby 0 - 7422c2e0-d3ba-f011-bbd3-7c1e52365f30 + 8adcadcf-439d-4a58-a6fe-85ba1831fa8a false - true + false iscustomizable - true + false - false - true - lk_retentionfailuredetail_createdby + true + false + lk_webwizard_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -439217,30 +488863,30 @@ false systemuserid systemuser - lk_retentionfailuredetail_createdby - createdby - retentionfailuredetail - createdby + lk_webwizard_createdonbehalfby + createdonbehalfby + webwizard + createdonbehalfby 0 - 7a22c2e0-d3ba-f011-bbd3-7c1e52365f30 + 13d7c6cf-0956-4a06-b0b6-62c61b6a159c false - true + false iscustomizable - true + false - false - true - lk_retentionfailuredetail_createdonbehalfby + true + false + lk_tracelog_modifiedonbehalfby None - 1.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -439271,30 +488917,30 @@ false systemuserid systemuser - lk_retentionfailuredetail_createdonbehalfby - createdonbehalfby - retentionfailuredetail - createdonbehalfby + lk_tracelog_modifiedonbehalfby + modifiedonbehalfby + tracelog + modifiedonbehalfby 0 - 8022c2e0-d3ba-f011-bbd3-7c1e52365f30 + 9aee21d0-3343-4373-9730-28e9e049de6b false - true + false iscustomizable true - false + true true - lk_retentionfailuredetail_modifiedby + lk_SiteMap_createdonbehalfby None - 1.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -439325,30 +488971,30 @@ false systemuserid systemuser - lk_retentionfailuredetail_modifiedby - modifiedby - retentionfailuredetail - modifiedby + systemuser_SiteMap_createdonbehalfby + createdonbehalfby + sitemap + SiteMap_createdonbehalfby 0 - 8622c2e0-d3ba-f011-bbd3-7c1e52365f30 + 4e5b6fd0-6567-11e0-834f-1cc1de634cfe false - true + false iscustomizable - true + false - false + true true - lk_retentionfailuredetail_modifiedonbehalfby + systemuser_PostFollows None - 1.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -439379,27 +489025,27 @@ false systemuserid systemuser - lk_retentionfailuredetail_modifiedonbehalfby - modifiedonbehalfby - retentionfailuredetail - modifiedonbehalfby + systemuser_PostFollows + regardingobjectid + postfollow + regardingobjectid_systemuser 0 - 9822c2e0-d3ba-f011-bbd3-7c1e52365f30 + d7fb0ed1-d2c8-4767-a2b1-25b153cb4905 false - true + false iscustomizable - true + false - false + true true - user_retentionfailuredetail + lk_savedquery_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -439433,27 +489079,27 @@ false systemuserid systemuser - user_retentionfailuredetail - owninguser - retentionfailuredetail - owninguser + lk_savedquery_createdonbehalfby + createdonbehalfby + savedquery + createdonbehalfby 0 - 4f23c2e0-d3ba-f011-bbd3-7c1e52365f30 + 79459bd1-6308-4790-853c-9cb5cafc91e2 false - true + false iscustomizable - true + false - false - true - lk_retentionoperation_createdby + true + false + lk_ownermapping_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -439487,30 +489133,30 @@ false systemuserid systemuser - lk_retentionoperation_createdby - createdby - retentionoperation - createdby + lk_ownermapping_modifiedonbehalfby + modifiedonbehalfby + ownermapping + modifiedonbehalfby 0 - 5523c2e0-d3ba-f011-bbd3-7c1e52365f30 + a95746d2-2fb5-49d2-9ae1-0d897a3ead12 false - true + false iscustomizable - true + false - false - true - lk_retentionoperation_createdonbehalfby + true + false + lk_knowledgesearchmodel_modifiedonbehalfby None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -439541,27 +489187,27 @@ false systemuserid systemuser - lk_retentionoperation_createdonbehalfby - createdonbehalfby - retentionoperation - createdonbehalfby + lk_knowledgesearchmodel_modifiedonbehalfby + modifiedonbehalfby + knowledgesearchmodel + modifiedonbehalfby 0 - 5b23c2e0-d3ba-f011-bbd3-7c1e52365f30 + 2d666dd2-9b21-48bc-847c-b6815bc6d303 false - true + false iscustomizable - true + false - false + true true - lk_retentionoperation_modifiedby + lk_publisheraddressbase_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -439595,27 +489241,27 @@ false systemuserid systemuser - lk_retentionoperation_modifiedby - modifiedby - retentionoperation - modifiedby + lk_publisheraddressbase_createdonbehalfby + createdonbehalfby + publisheraddress + createdonbehalfby 0 - 6123c2e0-d3ba-f011-bbd3-7c1e52365f30 + 0b429ed2-c08a-41d5-a212-68784205b2c4 false - true + false iscustomizable - true + false - false - true - lk_retentionoperation_modifiedonbehalfby + true + false + modifiedonbehalfby_attributemap None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -439649,25 +489295,25 @@ false systemuserid systemuser - lk_retentionoperation_modifiedonbehalfby + modifiedonbehalfby_attributemap modifiedonbehalfby - retentionoperation + attributemap modifiedonbehalfby 0 - 7323c2e0-d3ba-f011-bbd3-7c1e52365f30 + f2ccdcd2-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - user_retentionoperation + lk_agenttask_createdby None 1.0 OneToManyRelationship @@ -439703,15 +489349,15 @@ false systemuserid systemuser - user_retentionoperation - owninguser - retentionoperation - owninguser + lk_agenttask_createdby + createdby + agenttask + createdby 0 - 1224c2e0-d3ba-f011-bbd3-7c1e52365f30 + f8ccdcd2-b6ea-f011-8409-000d3adc1cd9 false @@ -439721,7 +489367,7 @@ false true - lk_retentionoperationdetail_createdby + lk_agenttask_createdonbehalfby None 1.0 OneToManyRelationship @@ -439757,25 +489403,25 @@ false systemuserid systemuser - lk_retentionoperationdetail_createdby - createdby - retentionoperationdetail - createdby + lk_agenttask_createdonbehalfby + createdonbehalfby + agenttask + createdonbehalfby 0 - 1d24c2e0-d3ba-f011-bbd3-7c1e52365f30 + feccdcd2-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - lk_retentionoperationdetail_createdonbehalfby + lk_agenttask_modifiedby None 1.0 OneToManyRelationship @@ -439811,15 +489457,15 @@ false systemuserid systemuser - lk_retentionoperationdetail_createdonbehalfby - createdonbehalfby - retentionoperationdetail - createdonbehalfby + lk_agenttask_modifiedby + modifiedby + agenttask + modifiedby 0 - 2724c2e0-d3ba-f011-bbd3-7c1e52365f30 + 04cddcd2-b6ea-f011-8409-000d3adc1cd9 false @@ -439829,7 +489475,7 @@ false true - lk_retentionoperationdetail_modifiedby + lk_agenttask_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -439865,25 +489511,25 @@ false systemuserid systemuser - lk_retentionoperationdetail_modifiedby - modifiedby - retentionoperationdetail - modifiedby + lk_agenttask_modifiedonbehalfby + modifiedonbehalfby + agenttask + modifiedonbehalfby 0 - 3124c2e0-d3ba-f011-bbd3-7c1e52365f30 + 16cddcd2-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - lk_retentionoperationdetail_modifiedonbehalfby + user_agenttask None 1.0 OneToManyRelationship @@ -439919,15 +489565,69 @@ false systemuserid systemuser - lk_retentionoperationdetail_modifiedonbehalfby - modifiedonbehalfby - retentionoperationdetail - modifiedonbehalfby + user_agenttask + owninguser + agenttask + owninguser 0 - f224c2e0-d3ba-f011-bbd3-7c1e52365f30 + 10bd42d3-95f1-48ff-b1ce-e2a8155f6b65 + + false + + false + iscustomizable + true + + true + true + lk_emailserverprofile_modifiedby + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_emailserverprofile_modifiedby + modifiedby + emailserverprofile + modifiedby + + 0 + + + 877765d3-b6ba-f011-bbd3-7c1e52365f30 false @@ -439937,7 +489637,7 @@ false true - lk_retentionsuccessdetail_createdby + lk_tdsmetadata_createdby None 1.0 OneToManyRelationship @@ -439973,15 +489673,15 @@ false systemuserid systemuser - lk_retentionsuccessdetail_createdby + lk_tdsmetadata_createdby createdby - retentionsuccessdetail + tdsmetadata createdby 0 - f824c2e0-d3ba-f011-bbd3-7c1e52365f30 + 8d7765d3-b6ba-f011-bbd3-7c1e52365f30 false @@ -439991,7 +489691,7 @@ false true - lk_retentionsuccessdetail_createdonbehalfby + lk_tdsmetadata_createdonbehalfby None 1.0 OneToManyRelationship @@ -440027,15 +489727,15 @@ false systemuserid systemuser - lk_retentionsuccessdetail_createdonbehalfby + lk_tdsmetadata_createdonbehalfby createdonbehalfby - retentionsuccessdetail + tdsmetadata createdonbehalfby 0 - fe24c2e0-d3ba-f011-bbd3-7c1e52365f30 + 937765d3-b6ba-f011-bbd3-7c1e52365f30 false @@ -440045,7 +489745,7 @@ false true - lk_retentionsuccessdetail_modifiedby + lk_tdsmetadata_modifiedby None 1.0 OneToManyRelationship @@ -440081,15 +489781,15 @@ false systemuserid systemuser - lk_retentionsuccessdetail_modifiedby + lk_tdsmetadata_modifiedby modifiedby - retentionsuccessdetail + tdsmetadata modifiedby 0 - 0425c2e0-d3ba-f011-bbd3-7c1e52365f30 + 997765d3-b6ba-f011-bbd3-7c1e52365f30 false @@ -440099,7 +489799,7 @@ false true - lk_retentionsuccessdetail_modifiedonbehalfby + lk_tdsmetadata_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -440135,15 +489835,15 @@ false systemuserid systemuser - lk_retentionsuccessdetail_modifiedonbehalfby + lk_tdsmetadata_modifiedonbehalfby modifiedonbehalfby - retentionsuccessdetail + tdsmetadata modifiedonbehalfby 0 - 1625c2e0-d3ba-f011-bbd3-7c1e52365f30 + ab7765d3-b6ba-f011-bbd3-7c1e52365f30 false @@ -440153,7 +489853,7 @@ false true - user_retentionsuccessdetail + user_tdsmetadata None 1.0 OneToManyRelationship @@ -440189,30 +489889,30 @@ false systemuserid systemuser - user_retentionsuccessdetail + user_tdsmetadata owninguser - retentionsuccessdetail + tdsmetadata owninguser 0 - dd7b5088-d5ba-f011-bbd3-7c1e52365f30 + 95d868d3-e9a9-47d7-9ad6-31e20dea6814 false - true + false iscustomizable true - false + true true - lk_certificatecredential_createdby + lk_expiredprocess_createdby None - 9.0.0.0 + 8.2.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -440243,39 +489943,39 @@ false systemuserid systemuser - lk_certificatecredential_createdby + lk_expiredprocess_createdby createdby - certificatecredential - createdby + expiredprocess + createdbyname 0 - e37b5088-d5ba-f011-bbd3-7c1e52365f30 + 6af2d9d3-f113-df11-a16e-00155d7aa40d false - true + false iscustomizable true - false + true true - lk_certificatecredential_createdonbehalfby - None - 9.0.0.0 + user_goal_goalowner + Append + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 100 true - false + true 00000000-0000-0000-0000-000000000000 @@ -440297,15 +489997,15 @@ false systemuserid systemuser - lk_certificatecredential_createdonbehalfby - createdonbehalfby - certificatecredential - createdonbehalfby + user_goal_goalowner + goalownerid + goal + goalownerid_systemuser - 0 + 1 - e97b5088-d5ba-f011-bbd3-7c1e52365f30 + db5d54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -440315,9 +490015,9 @@ false true - lk_certificatecredential_modifiedby + lk_bulkarchiveoperation_createdby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -440351,15 +490051,15 @@ false systemuserid systemuser - lk_certificatecredential_modifiedby - modifiedby - certificatecredential - modifiedby + lk_bulkarchiveoperation_createdby + createdby + bulkarchiveoperation + createdby 0 - ef7b5088-d5ba-f011-bbd3-7c1e52365f30 + e15d54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -440369,9 +490069,9 @@ false true - lk_certificatecredential_modifiedonbehalfby + lk_bulkarchiveoperation_createdonbehalfby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -440405,15 +490105,15 @@ false systemuserid systemuser - lk_certificatecredential_modifiedonbehalfby - modifiedonbehalfby - certificatecredential - modifiedonbehalfby + lk_bulkarchiveoperation_createdonbehalfby + createdonbehalfby + bulkarchiveoperation + createdonbehalfby 0 - 017c5088-d5ba-f011-bbd3-7c1e52365f30 + e75d54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -440423,9 +490123,9 @@ false true - user_certificatecredential + lk_bulkarchiveoperation_modifiedby None - 9.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -440459,15 +490159,15 @@ false systemuserid systemuser - user_certificatecredential - owninguser - certificatecredential - owninguser + lk_bulkarchiveoperation_modifiedby + modifiedby + bulkarchiveoperation + modifiedby 0 - a6225142-d7ba-f011-bbd3-7c1e52365f30 + ed5d54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -440477,7 +490177,7 @@ false true - lk_appnotification_createdby + lk_bulkarchiveoperation_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -440513,15 +490213,15 @@ false systemuserid systemuser - lk_appnotification_createdby - createdby - appnotification - createdby + lk_bulkarchiveoperation_modifiedonbehalfby + modifiedonbehalfby + bulkarchiveoperation + modifiedonbehalfby 0 - ac225142-d7ba-f011-bbd3-7c1e52365f30 + ff5d54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -440531,7 +490231,7 @@ false true - lk_appnotification_createdonbehalfby + user_bulkarchiveoperation None 1.0.0.0 OneToManyRelationship @@ -440567,15 +490267,15 @@ false systemuserid systemuser - lk_appnotification_createdonbehalfby - createdonbehalfby - appnotification - createdonbehalfby + user_bulkarchiveoperation + owninguser + bulkarchiveoperation + owninguser 0 - b2225142-d7ba-f011-bbd3-7c1e52365f30 + ac5e54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -440585,9 +490285,9 @@ false true - lk_appnotification_modifiedby + lk_bulkarchiveoperationdetail_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -440621,15 +490321,15 @@ false systemuserid systemuser - lk_appnotification_modifiedby - modifiedby - appnotification - modifiedby + lk_bulkarchiveoperationdetail_createdby + createdby + bulkarchiveoperationdetail + createdby 0 - b8225142-d7ba-f011-bbd3-7c1e52365f30 + b25e54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -440639,9 +490339,9 @@ false true - lk_appnotification_modifiedonbehalfby + lk_bulkarchiveoperationdetail_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -440675,15 +490375,15 @@ false systemuserid systemuser - lk_appnotification_modifiedonbehalfby - modifiedonbehalfby - appnotification - modifiedonbehalfby + lk_bulkarchiveoperationdetail_createdonbehalfby + createdonbehalfby + bulkarchiveoperationdetail + createdonbehalfby 0 - ca225142-d7ba-f011-bbd3-7c1e52365f30 + b95e54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -440693,9 +490393,9 @@ false true - user_appnotification + lk_bulkarchiveoperationdetail_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -440729,15 +490429,15 @@ false systemuserid systemuser - user_appnotification - owninguser - appnotification - owninguser + lk_bulkarchiveoperationdetail_modifiedby + modifiedby + bulkarchiveoperationdetail + modifiedby 0 - 3cca71b0-d7ba-f011-bbd3-7c1e52365f30 + bf5e54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -440747,7 +490447,7 @@ false true - lk_userrating_createdby + lk_bulkarchiveoperationdetail_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -440783,15 +490483,15 @@ false systemuserid systemuser - lk_userrating_createdby - createdby - userrating - createdby + lk_bulkarchiveoperationdetail_modifiedonbehalfby + modifiedonbehalfby + bulkarchiveoperationdetail + modifiedonbehalfby 0 - 42ca71b0-d7ba-f011-bbd3-7c1e52365f30 + 655f54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -440801,7 +490501,7 @@ false true - lk_userrating_createdonbehalfby + lk_enablearchivalrequest_createdby None 1.0 OneToManyRelationship @@ -440837,15 +490537,15 @@ false systemuserid systemuser - lk_userrating_createdonbehalfby - createdonbehalfby - userrating - createdonbehalfby + lk_enablearchivalrequest_createdby + createdby + enablearchivalrequest + createdby 0 - 48ca71b0-d7ba-f011-bbd3-7c1e52365f30 + 6b5f54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -440855,7 +490555,7 @@ false true - lk_userrating_modifiedby + lk_enablearchivalrequest_createdonbehalfby None 1.0 OneToManyRelationship @@ -440891,15 +490591,15 @@ false systemuserid systemuser - lk_userrating_modifiedby - modifiedby - userrating - modifiedby + lk_enablearchivalrequest_createdonbehalfby + createdonbehalfby + enablearchivalrequest + createdonbehalfby 0 - 4eca71b0-d7ba-f011-bbd3-7c1e52365f30 + 715f54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -440909,7 +490609,7 @@ false true - lk_userrating_modifiedonbehalfby + lk_enablearchivalrequest_modifiedby None 1.0 OneToManyRelationship @@ -440945,27 +490645,27 @@ false systemuserid systemuser - lk_userrating_modifiedonbehalfby - modifiedonbehalfby - userrating - modifiedonbehalfby + lk_enablearchivalrequest_modifiedby + modifiedby + enablearchivalrequest + modifiedby 0 - dd211a0f-d8ba-f011-bbd3-7c1e52365f30 + 775f54d4-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_mobileapp_createdby + lk_enablearchivalrequest_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -440999,15 +490699,15 @@ false systemuserid systemuser - lk_msdyn_mobileapp_createdby - createdby - msdyn_mobileapp - createdby + lk_enablearchivalrequest_modifiedonbehalfby + modifiedonbehalfby + enablearchivalrequest + modifiedonbehalfby 0 - e3211a0f-d8ba-f011-bbd3-7c1e52365f30 + 895f54d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -441017,9 +490717,9 @@ false true - lk_msdyn_mobileapp_createdonbehalfby + user_enablearchivalrequest None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -441053,27 +490753,27 @@ false systemuserid systemuser - lk_msdyn_mobileapp_createdonbehalfby - createdonbehalfby - msdyn_mobileapp - createdonbehalfby + user_enablearchivalrequest + owninguser + enablearchivalrequest + owninguser 0 - e9211a0f-d8ba-f011-bbd3-7c1e52365f30 + 3b6054d4-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_mobileapp_modifiedby + lk_metadataforarchival_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -441107,15 +490807,15 @@ false systemuserid systemuser - lk_msdyn_mobileapp_modifiedby - modifiedby - msdyn_mobileapp - modifiedby + lk_metadataforarchival_createdby + createdby + metadataforarchival + createdby 0 - ef211a0f-d8ba-f011-bbd3-7c1e52365f30 + 416054d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -441125,9 +490825,9 @@ false true - lk_msdyn_mobileapp_modifiedonbehalfby + lk_metadataforarchival_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -441161,27 +490861,27 @@ false systemuserid systemuser - lk_msdyn_mobileapp_modifiedonbehalfby - modifiedonbehalfby - msdyn_mobileapp - modifiedonbehalfby + lk_metadataforarchival_createdonbehalfby + createdonbehalfby + metadataforarchival + createdonbehalfby 0 - 01221a0f-d8ba-f011-bbd3-7c1e52365f30 + 476054d4-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_mobileapp + lk_metadataforarchival_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -441215,15 +490915,15 @@ false systemuserid systemuser - user_msdyn_mobileapp - owninguser - msdyn_mobileapp - owninguser + lk_metadataforarchival_modifiedby + modifiedby + metadataforarchival + modifiedby 0 - 6dd9b08d-d8ba-f011-bbd3-7c1e52365f30 + 4d6054d4-d3ba-f011-bbd3-7c1e52365f30 false @@ -441233,9 +490933,9 @@ false true - lk_msdyn_insightsstorevirtualentity_createdby + lk_metadataforarchival_modifiedonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -441269,30 +490969,30 @@ false systemuserid systemuser - lk_msdyn_insightsstorevirtualentity_createdby - createdby - msdyn_insightsstorevirtualentity - createdby + lk_metadataforarchival_modifiedonbehalfby + modifiedonbehalfby + metadataforarchival + modifiedonbehalfby 0 - 73d9b08d-d8ba-f011-bbd3-7c1e52365f30 + d75a97d4-096e-4bce-9d4e-ec8c2c6c2988 false - true + false iscustomizable - true + false - false - true - lk_msdyn_insightsstorevirtualentity_createdonbehalfby + true + false + actioncardusersettings_owning_user None - 9.1.0.0 + 8.2.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -441323,15 +491023,15 @@ false systemuserid systemuser - lk_msdyn_insightsstorevirtualentity_createdonbehalfby - createdonbehalfby - msdyn_insightsstorevirtualentity - createdonbehalfby + actioncardusersettings_owning_user + owninguser + actioncardusersettings + owninguser 0 - 79d9b08d-d8ba-f011-bbd3-7c1e52365f30 + de2515d5-42bf-f011-bbd5-7ced8d470ac7 false @@ -441341,9 +491041,9 @@ false true - lk_msdyn_insightsstorevirtualentity_modifiedby + lk_cpr_cprrun_createdby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -441377,15 +491077,15 @@ false systemuserid systemuser - lk_msdyn_insightsstorevirtualentity_modifiedby - modifiedby - msdyn_insightsstorevirtualentity - modifiedby + lk_cpr_cprrun_createdby + createdby + cpr_cprrun + createdby 0 - 7fd9b08d-d8ba-f011-bbd3-7c1e52365f30 + e52515d5-42bf-f011-bbd5-7ced8d470ac7 false @@ -441395,9 +491095,9 @@ false true - lk_msdyn_insightsstorevirtualentity_modifiedonbehalfby + lk_cpr_cprrun_createdonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -441431,15 +491131,15 @@ false systemuserid systemuser - lk_msdyn_insightsstorevirtualentity_modifiedonbehalfby - modifiedonbehalfby - msdyn_insightsstorevirtualentity - modifiedonbehalfby + lk_cpr_cprrun_createdonbehalfby + createdonbehalfby + cpr_cprrun + createdonbehalfby 0 - 5ae09116-daba-f011-bbd3-7c1e52365f30 + ec2515d5-42bf-f011-bbd5-7ced8d470ac7 false @@ -441449,9 +491149,9 @@ false true - lk_deleteditemreference_createdby + lk_cpr_cprrun_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -441485,15 +491185,15 @@ false systemuserid systemuser - lk_deleteditemreference_createdby - createdby - deleteditemreference - createdby + lk_cpr_cprrun_modifiedby + modifiedby + cpr_cprrun + modifiedby 0 - 60e09116-daba-f011-bbd3-7c1e52365f30 + f32515d5-42bf-f011-bbd5-7ced8d470ac7 false @@ -441503,9 +491203,9 @@ false true - lk_deleteditemreference_createdonbehalfby + lk_cpr_cprrun_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -441539,15 +491239,15 @@ false systemuserid systemuser - lk_deleteditemreference_createdonbehalfby - createdonbehalfby - deleteditemreference - createdonbehalfby + lk_cpr_cprrun_modifiedonbehalfby + modifiedonbehalfby + cpr_cprrun + modifiedonbehalfby 0 - 66e09116-daba-f011-bbd3-7c1e52365f30 + 052615d5-42bf-f011-bbd5-7ced8d470ac7 false @@ -441557,9 +491257,9 @@ false true - lk_deleteditemreference_modifiedby + user_cpr_cprrun None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -441593,27 +491293,27 @@ false systemuserid systemuser - lk_deleteditemreference_modifiedby - modifiedby - deleteditemreference - modifiedby + user_cpr_cprrun + owninguser + cpr_cprrun + owninguser 0 - 6ce09116-daba-f011-bbd3-7c1e52365f30 + 8a4889d5-45ee-4441-aebe-70348dcad57a false - true + false iscustomizable - true + false - false - true - lk_deleteditemreference_modifiedonbehalfby + true + false + lk_columnmapping_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -441647,27 +491347,27 @@ false systemuserid systemuser - lk_deleteditemreference_modifiedonbehalfby - modifiedonbehalfby - deleteditemreference - modifiedonbehalfby + lk_columnmapping_createdonbehalfby + createdonbehalfby + columnmapping + createdonbehalfby 0 - f7e09116-daba-f011-bbd3-7c1e52365f30 + 10b9b9d5-b9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_recyclebinconfig_createdby + lk_environmentvariabledefinition_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -441701,15 +491401,15 @@ false systemuserid systemuser - lk_recyclebinconfig_createdby + lk_environmentvariabledefinition_createdby createdby - recyclebinconfig + environmentvariabledefinition createdby 0 - fde09116-daba-f011-bbd3-7c1e52365f30 + 16b9b9d5-b9ba-f011-bbd3-7c1e52365f30 false @@ -441719,9 +491419,9 @@ false true - lk_recyclebinconfig_createdonbehalfby + lk_environmentvariabledefinition_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -441755,27 +491455,27 @@ false systemuserid systemuser - lk_recyclebinconfig_createdonbehalfby + lk_environmentvariabledefinition_createdonbehalfby createdonbehalfby - recyclebinconfig + environmentvariabledefinition createdonbehalfby 0 - 03e19116-daba-f011-bbd3-7c1e52365f30 + 1cb9b9d5-b9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_recyclebinconfig_modifiedby + lk_environmentvariabledefinition_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -441809,15 +491509,15 @@ false systemuserid systemuser - lk_recyclebinconfig_modifiedby + lk_environmentvariabledefinition_modifiedby modifiedby - recyclebinconfig + environmentvariabledefinition modifiedby 0 - 09e19116-daba-f011-bbd3-7c1e52365f30 + 22b9b9d5-b9ba-f011-bbd3-7c1e52365f30 false @@ -441827,9 +491527,9 @@ false true - lk_recyclebinconfig_modifiedonbehalfby + lk_environmentvariabledefinition_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -441863,15 +491563,15 @@ false systemuserid systemuser - lk_recyclebinconfig_modifiedonbehalfby + lk_environmentvariabledefinition_modifiedonbehalfby modifiedonbehalfby - recyclebinconfig + environmentvariabledefinition modifiedonbehalfby 0 - b903dda6-dbba-f011-bbd3-7c1e52365f30 + 34b9b9d5-b9ba-f011-bbd3-7c1e52365f30 false @@ -441881,9 +491581,9 @@ false true - lk_appaction_createdby + user_environmentvariabledefinition None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -441917,27 +491617,27 @@ false systemuserid systemuser - lk_appaction_createdby - createdby - appaction - createdby + user_environmentvariabledefinition + owninguser + environmentvariabledefinition + owninguser 0 - bf03dda6-dbba-f011-bbd3-7c1e52365f30 + edb9b9d5-b9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_appaction_createdonbehalfby + lk_environmentvariablevalue_createdby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -441971,27 +491671,27 @@ false systemuserid systemuser - lk_appaction_createdonbehalfby - createdonbehalfby - appaction - createdonbehalfby + lk_environmentvariablevalue_createdby + createdby + environmentvariablevalue + createdby 0 - c503dda6-dbba-f011-bbd3-7c1e52365f30 + f3b9b9d5-b9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_appaction_modifiedby + lk_environmentvariablevalue_createdonbehalfby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -442025,27 +491725,27 @@ false systemuserid systemuser - lk_appaction_modifiedby - modifiedby - appaction - modifiedby + lk_environmentvariablevalue_createdonbehalfby + createdonbehalfby + environmentvariablevalue + createdonbehalfby 0 - cb03dda6-dbba-f011-bbd3-7c1e52365f30 + f9b9b9d5-b9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_appaction_modifiedonbehalfby + lk_environmentvariablevalue_modifiedby None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -442079,27 +491779,27 @@ false systemuserid systemuser - lk_appaction_modifiedonbehalfby - modifiedonbehalfby - appaction - modifiedonbehalfby + lk_environmentvariablevalue_modifiedby + modifiedby + environmentvariablevalue + modifiedby 0 - 8004dda6-dbba-f011-bbd3-7c1e52365f30 + ffb9b9d5-b9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_appactionmigration_createdby + lk_environmentvariablevalue_modifiedonbehalfby None - 9.1.0.13 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -442133,27 +491833,27 @@ false systemuserid systemuser - lk_appactionmigration_createdby - createdby - appactionmigration - createdby + lk_environmentvariablevalue_modifiedonbehalfby + modifiedonbehalfby + environmentvariablevalue + modifiedonbehalfby 0 - 8604dda6-dbba-f011-bbd3-7c1e52365f30 + 79f0c2d5-2a35-4b58-82f6-6803df31ad5b false - true + false iscustomizable - true + false - false - true - lk_appactionmigration_createdonbehalfby + true + false + lk_SharePointData_createdby None - 9.1.0.13 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -442187,27 +491887,27 @@ false systemuserid systemuser - lk_appactionmigration_createdonbehalfby - createdonbehalfby - appactionmigration - createdonbehalfby + lk_SharePointData_createdby + createdby + sharepointdata + createdby 0 - 8c04dda6-dbba-f011-bbd3-7c1e52365f30 + 795dcdd5-c08c-4f7e-b78d-1d27a91a4156 false - true + false iscustomizable false - false + true true - lk_appactionmigration_modifiedby + lk_calendar_modifiedby None - 9.1.0.13 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -442241,15 +491941,15 @@ false systemuserid systemuser - lk_appactionmigration_modifiedby + lk_calendar_modifiedby modifiedby - appactionmigration + calendar modifiedby 0 - 9204dda6-dbba-f011-bbd3-7c1e52365f30 + 5277e6d5-b2ba-f011-bbd3-7c1e52365f30 false @@ -442259,9 +491959,9 @@ false true - lk_appactionmigration_modifiedonbehalfby + lk_datalakefolder_createdby None - 9.1.0.13 + 1.0.0.11 OneToManyRelationship DoNotDisplay @@ -442295,27 +491995,27 @@ false systemuserid systemuser - lk_appactionmigration_modifiedonbehalfby - modifiedonbehalfby - appactionmigration - modifiedonbehalfby + lk_datalakefolder_createdby + createdby + datalakefolder + createdby 0 - 4ea3d5ac-dbba-f011-bbd3-7c1e52365f30 + 5877e6d5-b2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_appactionrule_createdby + lk_datalakefolder_createdonbehalfby None - 9.1.0.10 + 1.0.0.11 OneToManyRelationship DoNotDisplay @@ -442349,15 +492049,15 @@ false systemuserid systemuser - lk_appactionrule_createdby - createdby - appactionrule - createdby + lk_datalakefolder_createdonbehalfby + createdonbehalfby + datalakefolder + createdonbehalfby 0 - 54a3d5ac-dbba-f011-bbd3-7c1e52365f30 + 5e77e6d5-b2ba-f011-bbd3-7c1e52365f30 false @@ -442367,9 +492067,9 @@ false true - lk_appactionrule_createdonbehalfby + lk_datalakefolder_modifiedby None - 9.1.0.10 + 1.0.0.11 OneToManyRelationship DoNotDisplay @@ -442403,27 +492103,27 @@ false systemuserid systemuser - lk_appactionrule_createdonbehalfby - createdonbehalfby - appactionrule - createdonbehalfby + lk_datalakefolder_modifiedby + modifiedby + datalakefolder + modifiedby 0 - 5aa3d5ac-dbba-f011-bbd3-7c1e52365f30 + 6477e6d5-b2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_appactionrule_modifiedby + lk_datalakefolder_modifiedonbehalfby None - 9.1.0.10 + 1.0.0.11 OneToManyRelationship DoNotDisplay @@ -442457,15 +492157,15 @@ false systemuserid systemuser - lk_appactionrule_modifiedby - modifiedby - appactionrule - modifiedby + lk_datalakefolder_modifiedonbehalfby + modifiedonbehalfby + datalakefolder + modifiedonbehalfby 0 - 60a3d5ac-dbba-f011-bbd3-7c1e52365f30 + 7677e6d5-b2ba-f011-bbd3-7c1e52365f30 false @@ -442475,9 +492175,9 @@ false true - lk_appactionrule_modifiedonbehalfby + user_datalakefolder None - 9.1.0.10 + 1.0.0.11 OneToManyRelationship DoNotDisplay @@ -442511,27 +492211,27 @@ false systemuserid systemuser - lk_appactionrule_modifiedonbehalfby - modifiedonbehalfby - appactionrule - modifiedonbehalfby + user_datalakefolder + owninguser + datalakefolder + owninguser 0 - 21b63d9e-e0ba-f011-bbd3-7c1e52365f30 + 24be02d6-a23d-4b8d-a026-706b9b9c1c5b false - true + false iscustomizable - true + false - false - true - lk_card_createdby + true + false + lk_importfilebase_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -442565,27 +492265,27 @@ false systemuserid systemuser - lk_card_createdby - createdby - card - createdby + lk_importfilebase_modifiedonbehalfby + modifiedonbehalfby + importfile + modifiedonbehalfby 0 - 27b63d9e-e0ba-f011-bbd3-7c1e52365f30 + 01e593d6-f7e2-4ef6-b821-ee167695a5eb false - true + false iscustomizable - true + false - false + true true - lk_card_createdonbehalfby + lk_reportvisibility_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -442619,27 +492319,27 @@ false systemuserid systemuser - lk_card_createdonbehalfby + lk_reportvisibility_createdonbehalfby createdonbehalfby - card + reportvisibility createdonbehalfby 0 - 2db63d9e-e0ba-f011-bbd3-7c1e52365f30 + 0ea2dbd6-da71-4dc3-a5e2-4ad95a9463e9 false - true + false iscustomizable - true + false - false - true - lk_card_modifiedby + true + false + lk_semiannualfiscalcalendar_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -442673,27 +492373,27 @@ false systemuserid systemuser - lk_card_modifiedby - modifiedby - card - modifiedby + lk_semiannualfiscalcalendar_createdby + createdby + semiannualfiscalcalendar + createdby 0 - 33b63d9e-e0ba-f011-bbd3-7c1e52365f30 + 212a8cd7-eb4b-45c8-b580-15af4c8824b9 false - true + false iscustomizable - true + false - false - true - lk_card_modifiedonbehalfby + true + false + modifiedby_plugintype None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -442727,27 +492427,27 @@ false systemuserid systemuser - lk_card_modifiedonbehalfby - modifiedonbehalfby - card - modifiedonbehalfby + modifiedby_plugintype + modifiedby + plugintype + modifiedby 0 - 45b63d9e-e0ba-f011-bbd3-7c1e52365f30 + 27828cd7-3c21-408d-81fc-d5cd1e78747f false - true + false iscustomizable true - false + true true - user_card + lk_MobileOfflineProfile_createdonbehalfby None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -442781,27 +492481,27 @@ false systemuserid systemuser - user_card - owninguser - card - owninguser + lk_MobileOfflineProfile_createdonbehalfby + createdonbehalfby + mobileofflineprofile + createdonbehalfby 0 - 9cc271a4-e0ba-f011-bbd3-7c1e52365f30 + 4ab194d7-092c-4e02-86a3-885b5e8cb8cb false - true + false iscustomizable - true + false - false - true - lk_cardstateitem_createdby + true + false + lk_organizationbase_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -442835,27 +492535,27 @@ false systemuserid systemuser - lk_cardstateitem_createdby + lk_organizationbase_createdby createdby - cardstateitem + organization createdby 0 - a2c271a4-e0ba-f011-bbd3-7c1e52365f30 + fc68a8d7-1149-42a5-bb96-8ee7b6e3d1a2 false - true + false iscustomizable true - false + true true - lk_cardstateitem_createdonbehalfby + lk_kbarticlebase_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -442889,27 +492589,27 @@ false systemuserid systemuser - lk_cardstateitem_createdonbehalfby - createdonbehalfby - cardstateitem - createdonbehalfby + lk_kbarticlebase_createdby + createdby + kbarticle + createdby 0 - a8c271a4-e0ba-f011-bbd3-7c1e52365f30 + 0b901fd8-73be-42ac-8e9f-37e6fa910a64 false - true + false iscustomizable - true + false - false - true - lk_cardstateitem_modifiedby + true + false + lk_ACIViewMapper_createdby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -442943,30 +492643,30 @@ false systemuserid systemuser - lk_cardstateitem_modifiedby - modifiedby - cardstateitem - modifiedby + lk_ACIViewMapper_createdby + createdby + aciviewmapper + createdby 0 - aec271a4-e0ba-f011-bbd3-7c1e52365f30 + eb3451d8-ef60-4ddc-a142-850fe3d8e566 false - true + false iscustomizable true - false + true true - lk_cardstateitem_modifiedonbehalfby + lk_SiteMap_createdby None - 1.0.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -442997,15 +492697,15 @@ false systemuserid systemuser - lk_cardstateitem_modifiedonbehalfby - modifiedonbehalfby - cardstateitem - modifiedonbehalfby + systemuser_SiteMap_createdby + createdby + sitemap + SiteMap_createdby 0 - d5e84f77-e1ba-f011-bbd3-7c1e52365f30 + 36a7f6d8-f7ba-f011-bbd3-7c1e52365f30 false @@ -443015,9 +492715,9 @@ false true - lk_msdyn_entitylinkchatconfiguration_createdby + lk_ctx_subscription_createdby None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -443051,15 +492751,15 @@ false systemuserid systemuser - lk_msdyn_entitylinkchatconfiguration_createdby + lk_ctx_subscription_createdby createdby - msdyn_entitylinkchatconfiguration + ctx_subscription createdby 0 - dee84f77-e1ba-f011-bbd3-7c1e52365f30 + 3ca7f6d8-f7ba-f011-bbd3-7c1e52365f30 false @@ -443069,9 +492769,9 @@ false true - lk_msdyn_entitylinkchatconfiguration_createdonbehalfby + lk_ctx_subscription_createdonbehalfby None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -443105,15 +492805,15 @@ false systemuserid systemuser - lk_msdyn_entitylinkchatconfiguration_createdonbehalfby + lk_ctx_subscription_createdonbehalfby createdonbehalfby - msdyn_entitylinkchatconfiguration + ctx_subscription createdonbehalfby 0 - e4e84f77-e1ba-f011-bbd3-7c1e52365f30 + 42a7f6d8-f7ba-f011-bbd3-7c1e52365f30 false @@ -443123,9 +492823,9 @@ false true - lk_msdyn_entitylinkchatconfiguration_modifiedby + lk_ctx_subscription_modifiedby None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -443159,15 +492859,15 @@ false systemuserid systemuser - lk_msdyn_entitylinkchatconfiguration_modifiedby + lk_ctx_subscription_modifiedby modifiedby - msdyn_entitylinkchatconfiguration + ctx_subscription modifiedby 0 - eae84f77-e1ba-f011-bbd3-7c1e52365f30 + 48a7f6d8-f7ba-f011-bbd3-7c1e52365f30 false @@ -443177,9 +492877,9 @@ false true - lk_msdyn_entitylinkchatconfiguration_modifiedonbehalfby + lk_ctx_subscription_modifiedonbehalfby None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -443213,15 +492913,15 @@ false systemuserid systemuser - lk_msdyn_entitylinkchatconfiguration_modifiedonbehalfby + lk_ctx_subscription_modifiedonbehalfby modifiedonbehalfby - msdyn_entitylinkchatconfiguration + ctx_subscription modifiedonbehalfby 0 - fce84f77-e1ba-f011-bbd3-7c1e52365f30 + 5aa7f6d8-f7ba-f011-bbd3-7c1e52365f30 false @@ -443231,9 +492931,9 @@ false true - user_msdyn_entitylinkchatconfiguration + user_ctx_subscription None - 9.2.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -443267,27 +492967,27 @@ false systemuserid systemuser - user_msdyn_entitylinkchatconfiguration + user_ctx_subscription owninguser - msdyn_entitylinkchatconfiguration + ctx_subscription owninguser 0 - 160c7722-e4ba-f011-bbd3-7c1e52365f30 + 4e2ff9d8-7ced-4fe4-9ef6-c63e6e26fa12 false - true + false iscustomizable false - false - true - lk_sharepointmanagedidentity_createdby + true + false + createdby_sdkmessagepair None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -443321,30 +493021,30 @@ false systemuserid systemuser - lk_sharepointmanagedidentity_createdby + createdby_sdkmessagepair createdby - sharepointmanagedidentity + sdkmessagepair createdby 0 - 1c0c7722-e4ba-f011-bbd3-7c1e52365f30 + a7e81dd9-aece-4f89-b9fd-5e1729c6813c false - true + false iscustomizable - true + false - false + true true - lk_sharepointmanagedidentity_createdonbehalfby + multientitysearch_createdonbehalfby None - 9.1.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -443375,30 +493075,30 @@ false systemuserid systemuser - lk_sharepointmanagedidentity_createdonbehalfby + multientitysearch_createdonbehalfby createdonbehalfby - sharepointmanagedidentity + multientitysearch createdonbehalfby 0 - 220c7722-e4ba-f011-bbd3-7c1e52365f30 + 23d93dd9-7863-11e0-a0f5-1cc1de634cfe false - true + false iscustomizable false - false + true true - lk_sharepointmanagedidentity_modifiedby + lk_postlike_createdonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -443429,27 +493129,27 @@ false systemuserid systemuser - lk_sharepointmanagedidentity_modifiedby - modifiedby - sharepointmanagedidentity - modifiedby + lk_postlike_createdonbehalfby + createdonbehalfby + postlike + createdonbehalfby 0 - 280c7722-e4ba-f011-bbd3-7c1e52365f30 + abd54ad9-63ee-4817-89b0-f9f566c04d54 false - true + false iscustomizable - true + false - false + true true - lk_sharepointmanagedidentity_modifiedonbehalfby + lk_transactioncurrency_modifiedonbehalfby None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -443483,27 +493183,27 @@ false systemuserid systemuser - lk_sharepointmanagedidentity_modifiedonbehalfby + lk_transactioncurrency_modifiedonbehalfby modifiedonbehalfby - sharepointmanagedidentity + transactioncurrency modifiedonbehalfby 0 - a4534125-e6ba-f011-bbd3-7c1e52365f30 + 85cfc7d9-6419-4749-a44f-1fe3bc6baf9f false - true + false iscustomizable - true + false - false - true - lk_aiinsightcard_createdby + true + false + lk_picklistmapping_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -443537,27 +493237,27 @@ false systemuserid systemuser - lk_aiinsightcard_createdby - createdby - aiinsightcard - createdby + lk_picklistmapping_modifiedby + modifiedby + picklistmapping + modifiedby 0 - aa534125-e6ba-f011-bbd3-7c1e52365f30 + b68332da-4844-4b22-a9ce-f0bfb9e082d9 false - true + false iscustomizable - true + false - false - true - lk_aiinsightcard_createdonbehalfby + true + false + lk_ACIViewMapper_modifiedby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -443591,27 +493291,27 @@ false systemuserid systemuser - lk_aiinsightcard_createdonbehalfby - createdonbehalfby - aiinsightcard - createdonbehalfby + lk_ACIViewMapper_modifiedby + modifiedby + aciviewmapper + modifiedby 0 - b0534125-e6ba-f011-bbd3-7c1e52365f30 + b2a145da-f7a2-4810-87af-da3f9ac11a47 false - true + false iscustomizable - true + false - false + true true - lk_aiinsightcard_modifiedby + lk_fieldsecurityprofile_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -443645,27 +493345,27 @@ false systemuserid systemuser - lk_aiinsightcard_modifiedby + lk_fieldsecurityprofile_modifiedby modifiedby - aiinsightcard + fieldsecurityprofile modifiedby 0 - b6534125-e6ba-f011-bbd3-7c1e52365f30 + 66715cda-65c4-4c44-95f4-e68ecb284369 false - true + false iscustomizable - true + false - false + true true - lk_aiinsightcard_modifiedonbehalfby + lk_templatebase_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -443699,30 +493399,30 @@ false systemuserid systemuser - lk_aiinsightcard_modifiedonbehalfby + lk_templatebase_modifiedonbehalfby modifiedonbehalfby - aiinsightcard + template modifiedonbehalfby 0 - c8534125-e6ba-f011-bbd3-7c1e52365f30 + ec209eda-7f48-11e0-a0f5-1cc1de634cfe false - true + false iscustomizable - true + false - false + true true - user_aiinsightcard + user_owner_postfollows None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -443753,15 +493453,15 @@ false systemuserid systemuser - user_aiinsightcard + user_owner_postfollows owninguser - aiinsightcard + postfollow owninguser 0 - 4e2d8b2b-e6ba-f011-bbd3-7c1e52365f30 + fc7bc9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -443771,9 +493471,9 @@ false true - lk_aiskillconfig_createdby + lk_reconciliationentityinfo_createdby None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -443807,15 +493507,15 @@ false systemuserid systemuser - lk_aiskillconfig_createdby + lk_reconciliationentityinfo_createdby createdby - aiskillconfig + reconciliationentityinfo createdby 0 - 542d8b2b-e6ba-f011-bbd3-7c1e52365f30 + 027cc9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -443825,9 +493525,9 @@ false true - lk_aiskillconfig_createdonbehalfby + lk_reconciliationentityinfo_createdonbehalfby None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -443861,15 +493561,15 @@ false systemuserid systemuser - lk_aiskillconfig_createdonbehalfby + lk_reconciliationentityinfo_createdonbehalfby createdonbehalfby - aiskillconfig + reconciliationentityinfo createdonbehalfby 0 - 5a2d8b2b-e6ba-f011-bbd3-7c1e52365f30 + 087cc9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -443879,9 +493579,9 @@ false true - lk_aiskillconfig_modifiedby + lk_reconciliationentityinfo_modifiedby None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -443915,15 +493615,15 @@ false systemuserid systemuser - lk_aiskillconfig_modifiedby + lk_reconciliationentityinfo_modifiedby modifiedby - aiskillconfig + reconciliationentityinfo modifiedby 0 - 602d8b2b-e6ba-f011-bbd3-7c1e52365f30 + 0e7cc9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -443933,9 +493633,9 @@ false true - lk_aiskillconfig_modifiedonbehalfby + lk_reconciliationentityinfo_modifiedonbehalfby None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -443969,15 +493669,15 @@ false systemuserid systemuser - lk_aiskillconfig_modifiedonbehalfby + lk_reconciliationentityinfo_modifiedonbehalfby modifiedonbehalfby - aiskillconfig + reconciliationentityinfo modifiedonbehalfby 0 - 722d8b2b-e6ba-f011-bbd3-7c1e52365f30 + 207cc9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -443987,9 +493687,9 @@ false true - user_aiskillconfig + user_reconciliationentityinfo None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -444023,123 +493723,15 @@ false systemuserid systemuser - user_aiskillconfig + user_reconciliationentityinfo owninguser - aiskillconfig + reconciliationentityinfo owninguser 0 - ca6461b1-e6ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_sa_suggestedaction_createdby - None - 9.2.0.5 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_sa_suggestedaction_createdby - createdby - sa_suggestedaction - createdby - - 0 - - - d06461b1-e6ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_sa_suggestedaction_createdonbehalfby - None - 9.2.0.5 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_sa_suggestedaction_createdonbehalfby - createdonbehalfby - sa_suggestedaction - createdonbehalfby - - 0 - - - d66461b1-e6ba-f011-bbd3-7c1e52365f30 + 747dc9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -444149,9 +493741,9 @@ false true - lk_sa_suggestedaction_modifiedby + lk_reconciliationentitystepinfo_createdby None - 9.2.0.5 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -444185,15 +493777,15 @@ false systemuserid systemuser - lk_sa_suggestedaction_modifiedby - modifiedby - sa_suggestedaction - modifiedby + lk_reconciliationentitystepinfo_createdby + createdby + reconciliationentitystepinfo + createdby 0 - dc6461b1-e6ba-f011-bbd3-7c1e52365f30 + 7b7dc9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -444203,9 +493795,9 @@ false true - lk_sa_suggestedaction_modifiedonbehalfby + lk_reconciliationentitystepinfo_createdonbehalfby None - 9.2.0.5 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -444239,15 +493831,15 @@ false systemuserid systemuser - lk_sa_suggestedaction_modifiedonbehalfby - modifiedonbehalfby - sa_suggestedaction - modifiedonbehalfby + lk_reconciliationentitystepinfo_createdonbehalfby + createdonbehalfby + reconciliationentitystepinfo + createdonbehalfby 0 - 8c6561b1-e6ba-f011-bbd3-7c1e52365f30 + 827dc9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -444257,9 +493849,9 @@ false true - lk_sa_suggestedactioncriteria_createdby + lk_reconciliationentitystepinfo_modifiedby None - 9.2.0.5 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -444293,15 +493885,15 @@ false systemuserid systemuser - lk_sa_suggestedactioncriteria_createdby - createdby - sa_suggestedactioncriteria - createdby + lk_reconciliationentitystepinfo_modifiedby + modifiedby + reconciliationentitystepinfo + modifiedby 0 - 926561b1-e6ba-f011-bbd3-7c1e52365f30 + 897dc9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -444311,9 +493903,9 @@ false true - lk_sa_suggestedactioncriteria_createdonbehalfby + lk_reconciliationentitystepinfo_modifiedonbehalfby None - 9.2.0.5 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -444347,15 +493939,15 @@ false systemuserid systemuser - lk_sa_suggestedactioncriteria_createdonbehalfby - createdonbehalfby - sa_suggestedactioncriteria - createdonbehalfby + lk_reconciliationentitystepinfo_modifiedonbehalfby + modifiedonbehalfby + reconciliationentitystepinfo + modifiedonbehalfby 0 - 986561b1-e6ba-f011-bbd3-7c1e52365f30 + 9d7dc9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -444365,9 +493957,9 @@ false true - lk_sa_suggestedactioncriteria_modifiedby + user_reconciliationentitystepinfo None - 9.2.0.5 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -444401,15 +493993,15 @@ false systemuserid systemuser - lk_sa_suggestedactioncriteria_modifiedby - modifiedby - sa_suggestedactioncriteria - modifiedby + user_reconciliationentitystepinfo + owninguser + reconciliationentitystepinfo + owninguser 0 - 9e6561b1-e6ba-f011-bbd3-7c1e52365f30 + a67ec9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -444419,117 +494011,9 @@ false true - lk_sa_suggestedactioncriteria_modifiedonbehalfby - None - 9.2.0.5 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_sa_suggestedactioncriteria_modifiedonbehalfby - modifiedonbehalfby - sa_suggestedactioncriteria - modifiedonbehalfby - - 0 - - - 6c4a5cb7-e6ba-f011-bbd3-7c1e52365f30 - - true - - false - iscustomizable - true - - true - true - sa_suggestedaction_CompletedBy_systemuser - Append - 9.2.0.5 - OneToManyRelationship - - UseCollectionName - Details - - - - - 10000 - true - - true - - - 00000000-0000-0000-0000-000000000000 - - - RemoveLink - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - sa_suggestedaction_CompletedBy_systemuser - sa_completedby - sa_suggestedaction - sa_CompletedBy - - 1 - - - c0669183-e7ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - lk_msdyn_dataworkspace_createdby + lk_reconciliationinfo_createdby None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -444563,15 +494047,15 @@ false systemuserid systemuser - lk_msdyn_dataworkspace_createdby + lk_reconciliationinfo_createdby createdby - msdyn_dataworkspace + reconciliationinfo createdby 0 - c6669183-e7ba-f011-bbd3-7c1e52365f30 + ae7ec9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -444581,9 +494065,9 @@ false true - lk_msdyn_dataworkspace_createdonbehalfby + lk_reconciliationinfo_createdonbehalfby None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -444617,27 +494101,27 @@ false systemuserid systemuser - lk_msdyn_dataworkspace_createdonbehalfby + lk_reconciliationinfo_createdonbehalfby createdonbehalfby - msdyn_dataworkspace + reconciliationinfo createdonbehalfby 0 - cc669183-e7ba-f011-bbd3-7c1e52365f30 + b57ec9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_dataworkspace_modifiedby + lk_reconciliationinfo_modifiedby None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -444671,15 +494155,15 @@ false systemuserid systemuser - lk_msdyn_dataworkspace_modifiedby + lk_reconciliationinfo_modifiedby modifiedby - msdyn_dataworkspace + reconciliationinfo modifiedby 0 - d2669183-e7ba-f011-bbd3-7c1e52365f30 + bc7ec9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -444689,9 +494173,9 @@ false true - lk_msdyn_dataworkspace_modifiedonbehalfby + lk_reconciliationinfo_modifiedonbehalfby None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -444725,27 +494209,27 @@ false systemuserid systemuser - lk_msdyn_dataworkspace_modifiedonbehalfby + lk_reconciliationinfo_modifiedonbehalfby modifiedonbehalfby - msdyn_dataworkspace + reconciliationinfo modifiedonbehalfby 0 - e4669183-e7ba-f011-bbd3-7c1e52365f30 + cf7ec9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_dataworkspace + user_reconciliationinfo None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -444779,25 +494263,25 @@ false systemuserid systemuser - user_msdyn_dataworkspace + user_reconciliationinfo owninguser - msdyn_dataworkspace + reconciliationinfo owninguser 0 - ae968f89-e7ba-f011-bbd3-7c1e52365f30 + 1480c9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_plan_createdby + lk_retentioncleanupinfo_createdby None 1.0 OneToManyRelationship @@ -444833,15 +494317,15 @@ false systemuserid systemuser - lk_msdyn_plan_createdby + lk_retentioncleanupinfo_createdby createdby - msdyn_plan + retentioncleanupinfo createdby 0 - b4968f89-e7ba-f011-bbd3-7c1e52365f30 + 1b80c9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -444851,7 +494335,7 @@ false true - lk_msdyn_plan_createdonbehalfby + lk_retentioncleanupinfo_createdonbehalfby None 1.0 OneToManyRelationship @@ -444887,25 +494371,25 @@ false systemuserid systemuser - lk_msdyn_plan_createdonbehalfby + lk_retentioncleanupinfo_createdonbehalfby createdonbehalfby - msdyn_plan + retentioncleanupinfo createdonbehalfby 0 - ba968f89-e7ba-f011-bbd3-7c1e52365f30 + 2280c9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_plan_modifiedby + lk_retentioncleanupinfo_modifiedby None 1.0 OneToManyRelationship @@ -444941,15 +494425,15 @@ false systemuserid systemuser - lk_msdyn_plan_modifiedby + lk_retentioncleanupinfo_modifiedby modifiedby - msdyn_plan + retentioncleanupinfo modifiedby 0 - c0968f89-e7ba-f011-bbd3-7c1e52365f30 + 2a80c9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -444959,7 +494443,7 @@ false true - lk_msdyn_plan_modifiedonbehalfby + lk_retentioncleanupinfo_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -444995,25 +494479,25 @@ false systemuserid systemuser - lk_msdyn_plan_modifiedonbehalfby + lk_retentioncleanupinfo_modifiedonbehalfby modifiedonbehalfby - msdyn_plan + retentioncleanupinfo modifiedonbehalfby 0 - d2968f89-e7ba-f011-bbd3-7c1e52365f30 + 3e80c9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_plan + user_retentioncleanupinfo None 1.0 OneToManyRelationship @@ -445049,25 +494533,25 @@ false systemuserid systemuser - user_msdyn_plan + user_retentioncleanupinfo owninguser - msdyn_plan + retentioncleanupinfo owninguser 0 - 91978f89-e7ba-f011-bbd3-7c1e52365f30 + 7381c9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_planartifact_createdby + lk_retentioncleanupoperation_createdby None 1.0 OneToManyRelationship @@ -445103,15 +494587,15 @@ false systemuserid systemuser - lk_msdyn_planartifact_createdby + lk_retentioncleanupoperation_createdby createdby - msdyn_planartifact + retentioncleanupoperation createdby 0 - 97978f89-e7ba-f011-bbd3-7c1e52365f30 + 7b81c9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -445121,7 +494605,7 @@ false true - lk_msdyn_planartifact_createdonbehalfby + lk_retentioncleanupoperation_createdonbehalfby None 1.0 OneToManyRelationship @@ -445157,25 +494641,25 @@ false systemuserid systemuser - lk_msdyn_planartifact_createdonbehalfby + lk_retentioncleanupoperation_createdonbehalfby createdonbehalfby - msdyn_planartifact + retentioncleanupoperation createdonbehalfby 0 - 9d978f89-e7ba-f011-bbd3-7c1e52365f30 + 8281c9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_planartifact_modifiedby + lk_retentioncleanupoperation_modifiedby None 1.0 OneToManyRelationship @@ -445211,15 +494695,15 @@ false systemuserid systemuser - lk_msdyn_planartifact_modifiedby + lk_retentioncleanupoperation_modifiedby modifiedby - msdyn_planartifact + retentioncleanupoperation modifiedby 0 - a3978f89-e7ba-f011-bbd3-7c1e52365f30 + 8a81c9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -445229,7 +494713,7 @@ false true - lk_msdyn_planartifact_modifiedonbehalfby + lk_retentioncleanupoperation_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -445265,25 +494749,25 @@ false systemuserid systemuser - lk_msdyn_planartifact_modifiedonbehalfby + lk_retentioncleanupoperation_modifiedonbehalfby modifiedonbehalfby - msdyn_planartifact + retentioncleanupoperation modifiedonbehalfby 0 - b5978f89-e7ba-f011-bbd3-7c1e52365f30 + 9e81c9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_planartifact + user_retentioncleanupoperation None 1.0 OneToManyRelationship @@ -445319,27 +494803,27 @@ false systemuserid systemuser - user_msdyn_planartifact + user_retentioncleanupoperation owninguser - msdyn_planartifact + retentioncleanupoperation owninguser 0 - a5db1c90-e7ba-f011-bbd3-7c1e52365f30 + f282c9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_planattachment_createdby + lk_retentionconfig_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -445373,15 +494857,15 @@ false systemuserid systemuser - lk_msdyn_planattachment_createdby + lk_retentionconfig_createdby createdby - msdyn_planattachment + retentionconfig createdby 0 - abdb1c90-e7ba-f011-bbd3-7c1e52365f30 + fc82c9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -445391,9 +494875,9 @@ false true - lk_msdyn_planattachment_createdonbehalfby + lk_retentionconfig_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -445427,27 +494911,27 @@ false systemuserid systemuser - lk_msdyn_planattachment_createdonbehalfby + lk_retentionconfig_createdonbehalfby createdonbehalfby - msdyn_planattachment + retentionconfig createdonbehalfby 0 - b1db1c90-e7ba-f011-bbd3-7c1e52365f30 + 0583c9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_planattachment_modifiedby + lk_retentionconfig_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -445481,15 +494965,15 @@ false systemuserid systemuser - lk_msdyn_planattachment_modifiedby + lk_retentionconfig_modifiedby modifiedby - msdyn_planattachment + retentionconfig modifiedby 0 - b7db1c90-e7ba-f011-bbd3-7c1e52365f30 + 0d83c9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -445499,9 +494983,9 @@ false true - lk_msdyn_planattachment_modifiedonbehalfby + lk_retentionconfig_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -445535,69 +495019,15 @@ false systemuserid systemuser - lk_msdyn_planattachment_modifiedonbehalfby + lk_retentionconfig_modifiedonbehalfby modifiedonbehalfby - msdyn_planattachment + retentionconfig modifiedonbehalfby 0 - c9db1c90-e7ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - user_msdyn_planattachment - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - user_msdyn_planattachment - owninguser - msdyn_planattachment - owninguser - - 0 - - - 89a2aff4-ecba-f011-bbd3-7c1e52365f30 + 2283c9da-d3ba-f011-bbd3-7c1e52365f30 false @@ -445607,7 +495037,7 @@ false true - lk_msdyn_richtextfile_createdby + user_retentionconfig None 1.0.0.0 OneToManyRelationship @@ -445643,27 +495073,27 @@ false systemuserid systemuser - lk_msdyn_richtextfile_createdby - createdby - msdyn_richtextfile - createdby + user_retentionconfig + owninguser + retentionconfig + owninguser 0 - 8fa2aff4-ecba-f011-bbd3-7c1e52365f30 + d3cf39db-c982-4a70-b15b-19014e090a57 false - true + false iscustomizable true - false + true true - lk_msdyn_richtextfile_createdonbehalfby + systemuser_connections2 None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -445672,7 +495102,7 @@ - + 100 true false @@ -445697,27 +495127,27 @@ false systemuserid systemuser - lk_msdyn_richtextfile_createdonbehalfby - createdonbehalfby - msdyn_richtextfile - createdonbehalfby + systemuser_connections2 + record2id + connection + record2id_systemuser 0 - 95a2aff4-ecba-f011-bbd3-7c1e52365f30 + e5043adb-964d-43e5-aad4-579f456b6647 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_richtextfile_modifiedby + lk_publisheraddressbase_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -445751,27 +495181,27 @@ false systemuserid systemuser - lk_msdyn_richtextfile_modifiedby - modifiedby - msdyn_richtextfile - modifiedby + lk_publisheraddressbase_modifiedonbehalfby + modifiedonbehalfby + publisheraddress + modifiedonbehalfby 0 - 9ba2aff4-ecba-f011-bbd3-7c1e52365f30 + 28a53bdb-5d8e-4374-a418-72dfb8767b28 false - true + false iscustomizable true - false + true true - lk_msdyn_richtextfile_modifiedonbehalfby + lk_appointment_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -445805,27 +495235,27 @@ false systemuserid systemuser - lk_msdyn_richtextfile_modifiedonbehalfby + lk_appointment_modifiedonbehalfby modifiedonbehalfby - msdyn_richtextfile - modifiedonbehalfby + appointment + modifiedonbehalfby_appointment 0 - ada2aff4-ecba-f011-bbd3-7c1e52365f30 + 56bf74db-1c03-438b-ad7d-d903ed865955 false - true + false iscustomizable - true + false - false - true - user_msdyn_richtextfile + true + false + modifiedby_sdkmessage None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -445859,15 +495289,15 @@ false systemuserid systemuser - user_msdyn_richtextfile - owninguser - msdyn_richtextfile - owninguser + modifiedby_sdkmessage + modifiedby + sdkmessage + modifiedby 0 - 6fb78e43-edba-f011-bbd3-7c1e52365f30 + a98de5db-b2ba-f011-bbd3-7c1e52365f30 false @@ -445877,9 +495307,9 @@ false true - lk_msdyn_customcontrolextendedsettings_createdby + lk_datalakefolderpermission_createdby None - 1.0.0.0 + 1.0.0.11 OneToManyRelationship DoNotDisplay @@ -445913,15 +495343,15 @@ false systemuserid systemuser - lk_msdyn_customcontrolextendedsettings_createdby + lk_datalakefolderpermission_createdby createdby - msdyn_customcontrolextendedsettings + datalakefolderpermission createdby 0 - 75b78e43-edba-f011-bbd3-7c1e52365f30 + af8de5db-b2ba-f011-bbd3-7c1e52365f30 false @@ -445931,9 +495361,9 @@ false true - lk_msdyn_customcontrolextendedsettings_createdonbehalfby + lk_datalakefolderpermission_createdonbehalfby None - 1.0.0.0 + 1.0.0.11 OneToManyRelationship DoNotDisplay @@ -445967,15 +495397,15 @@ false systemuserid systemuser - lk_msdyn_customcontrolextendedsettings_createdonbehalfby + lk_datalakefolderpermission_createdonbehalfby createdonbehalfby - msdyn_customcontrolextendedsettings + datalakefolderpermission createdonbehalfby 0 - 7bb78e43-edba-f011-bbd3-7c1e52365f30 + b58de5db-b2ba-f011-bbd3-7c1e52365f30 false @@ -445985,9 +495415,9 @@ false true - lk_msdyn_customcontrolextendedsettings_modifiedby + lk_datalakefolderpermission_modifiedby None - 1.0.0.0 + 1.0.0.11 OneToManyRelationship DoNotDisplay @@ -446021,15 +495451,15 @@ false systemuserid systemuser - lk_msdyn_customcontrolextendedsettings_modifiedby + lk_datalakefolderpermission_modifiedby modifiedby - msdyn_customcontrolextendedsettings + datalakefolderpermission modifiedby 0 - 81b78e43-edba-f011-bbd3-7c1e52365f30 + bb8de5db-b2ba-f011-bbd3-7c1e52365f30 false @@ -446039,9 +495469,9 @@ false true - lk_msdyn_customcontrolextendedsettings_modifiedonbehalfby + lk_datalakefolderpermission_modifiedonbehalfby None - 1.0.0.0 + 1.0.0.11 OneToManyRelationship DoNotDisplay @@ -446075,15 +495505,15 @@ false systemuserid systemuser - lk_msdyn_customcontrolextendedsettings_modifiedonbehalfby + lk_datalakefolderpermission_modifiedonbehalfby modifiedonbehalfby - msdyn_customcontrolextendedsettings + datalakefolderpermission modifiedonbehalfby 0 - 93b78e43-edba-f011-bbd3-7c1e52365f30 + 828fe5db-b2ba-f011-bbd3-7c1e52365f30 false @@ -446093,7 +495523,7 @@ false true - user_msdyn_customcontrolextendedsettings + lk_datalakeworkspace_createdby None 1.0.0.0 OneToManyRelationship @@ -446129,15 +495559,15 @@ false systemuserid systemuser - user_msdyn_customcontrolextendedsettings - owninguser - msdyn_customcontrolextendedsettings - owninguser + lk_datalakeworkspace_createdby + createdby + datalakeworkspace + createdby 0 - 5bd35668-edba-f011-bbd3-7c1e52365f30 + 888fe5db-b2ba-f011-bbd3-7c1e52365f30 false @@ -446147,9 +495577,9 @@ false true - lk_msdyn_timelinepin_createdby + lk_datalakeworkspace_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -446183,15 +495613,15 @@ false systemuserid systemuser - lk_msdyn_timelinepin_createdby - createdby - msdyn_timelinepin - createdby + lk_datalakeworkspace_createdonbehalfby + createdonbehalfby + datalakeworkspace + createdonbehalfby 0 - 61d35668-edba-f011-bbd3-7c1e52365f30 + 8e8fe5db-b2ba-f011-bbd3-7c1e52365f30 false @@ -446201,9 +495631,9 @@ false true - lk_msdyn_timelinepin_createdonbehalfby + lk_datalakeworkspace_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -446237,15 +495667,15 @@ false systemuserid systemuser - lk_msdyn_timelinepin_createdonbehalfby - createdonbehalfby - msdyn_timelinepin - createdonbehalfby + lk_datalakeworkspace_modifiedby + modifiedby + datalakeworkspace + modifiedby 0 - 67d35668-edba-f011-bbd3-7c1e52365f30 + 948fe5db-b2ba-f011-bbd3-7c1e52365f30 false @@ -446255,9 +495685,9 @@ false true - lk_msdyn_timelinepin_modifiedby + lk_datalakeworkspace_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -446291,15 +495721,15 @@ false systemuserid systemuser - lk_msdyn_timelinepin_modifiedby - modifiedby - msdyn_timelinepin - modifiedby + lk_datalakeworkspace_modifiedonbehalfby + modifiedonbehalfby + datalakeworkspace + modifiedonbehalfby 0 - 6dd35668-edba-f011-bbd3-7c1e52365f30 + 6391e5db-b2ba-f011-bbd3-7c1e52365f30 false @@ -446309,9 +495739,9 @@ false true - lk_msdyn_timelinepin_modifiedonbehalfby + lk_datalakeworkspacepermission_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -446345,15 +495775,15 @@ false systemuserid systemuser - lk_msdyn_timelinepin_modifiedonbehalfby - modifiedonbehalfby - msdyn_timelinepin - modifiedonbehalfby + lk_datalakeworkspacepermission_createdby + createdby + datalakeworkspacepermission + createdby 0 - d2b67de6-edba-f011-bbd3-7c1e52365f30 + 6991e5db-b2ba-f011-bbd3-7c1e52365f30 false @@ -446363,7 +495793,7 @@ false true - lk_msdyn_virtualtablecolumncandidate_createdby + lk_datalakeworkspacepermission_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -446399,15 +495829,15 @@ false systemuserid systemuser - lk_msdyn_virtualtablecolumncandidate_createdby - createdby - msdyn_virtualtablecolumncandidate - createdby + lk_datalakeworkspacepermission_createdonbehalfby + createdonbehalfby + datalakeworkspacepermission + createdonbehalfby 0 - dab67de6-edba-f011-bbd3-7c1e52365f30 + 6f91e5db-b2ba-f011-bbd3-7c1e52365f30 false @@ -446417,7 +495847,7 @@ false true - lk_msdyn_virtualtablecolumncandidate_createdonbehalfby + lk_datalakeworkspacepermission_modifiedby None 1.0.0.0 OneToManyRelationship @@ -446453,15 +495883,15 @@ false systemuserid systemuser - lk_msdyn_virtualtablecolumncandidate_createdonbehalfby - createdonbehalfby - msdyn_virtualtablecolumncandidate - createdonbehalfby + lk_datalakeworkspacepermission_modifiedby + modifiedby + datalakeworkspacepermission + modifiedby 0 - e1b67de6-edba-f011-bbd3-7c1e52365f30 + 7591e5db-b2ba-f011-bbd3-7c1e52365f30 false @@ -446471,7 +495901,7 @@ false true - lk_msdyn_virtualtablecolumncandidate_modifiedby + lk_datalakeworkspacepermission_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -446507,30 +495937,30 @@ false systemuserid systemuser - lk_msdyn_virtualtablecolumncandidate_modifiedby - modifiedby - msdyn_virtualtablecolumncandidate - modifiedby + lk_datalakeworkspacepermission_modifiedonbehalfby + modifiedonbehalfby + datalakeworkspacepermission + modifiedonbehalfby 0 - 1a9576ec-edba-f011-bbd3-7c1e52365f30 + d7f510dc-7931-11e0-a0f5-1cc1de634cfe false - true + false iscustomizable - true + false - false - true - lk_msdyn_virtualtablecolumncandidate_modifiedonbehalfby + true + false + lk_postcomment_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -446561,27 +495991,27 @@ false systemuserid systemuser - lk_msdyn_virtualtablecolumncandidate_modifiedonbehalfby - modifiedonbehalfby - msdyn_virtualtablecolumncandidate - modifiedonbehalfby + lk_postcomment_createdby + createdby + postcomment + createdby 0 - 2e9576ec-edba-f011-bbd3-7c1e52365f30 + b7762cdc-d055-46f7-ba15-a0c3debdfd23 false - true + false iscustomizable - true + false - false - true - user_msdyn_virtualtablecolumncandidate + true + false + lk_transformationparametermapping_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -446615,27 +496045,27 @@ false systemuserid systemuser - user_msdyn_virtualtablecolumncandidate - owninguser - msdyn_virtualtablecolumncandidate - owninguser + lk_transformationparametermapping_modifiedby + modifiedby + transformationparametermapping + modifiedby 0 - ce7dcb4f-eeba-f011-bbd3-7c1e52365f30 + 4b8d36dc-2580-4715-8e1d-2740729c084d false - true + false iscustomizable false - false - true - lk_msdyn_pmanalysishistory_createdby + true + false + lk_sdkmessageprocessingstep_createdonbehalfby None - 1.2.0.13 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -446669,27 +496099,81 @@ false systemuserid systemuser - lk_msdyn_pmanalysishistory_createdby - createdby - msdyn_pmanalysishistory - createdby + lk_sdkmessageprocessingstep_createdonbehalfby + createdonbehalfby + sdkmessageprocessingstep + createdonbehalfby 0 - d47dcb4f-eeba-f011-bbd3-7c1e52365f30 + 797d39dc-0130-df11-a226-00155d2a9006 false - true + false iscustomizable true - false + true true - lk_msdyn_pmanalysishistory_createdonbehalfby + user_sharepointsite None - 1.2.0.13 + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_sharepointsite + owninguser + sharepointsite + owninguser + + 0 + + + 600269dc-c746-486f-a1db-7318e5c28fd7 + + false + + false + iscustomizable + false + + true + false + lk_sdkmessageprocessingstepimage_modifiedonbehalfby + None + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -446723,27 +496207,27 @@ false systemuserid systemuser - lk_msdyn_pmanalysishistory_createdonbehalfby - createdonbehalfby - msdyn_pmanalysishistory - createdonbehalfby + lk_sdkmessageprocessingstepimage_modifiedonbehalfby + modifiedonbehalfby + sdkmessageprocessingstepimage + modifiedonbehalfby 0 - da7dcb4f-eeba-f011-bbd3-7c1e52365f30 + 1746e1dd-c702-4085-8b24-fc21fa8f9da7 false - true + false iscustomizable false - false + true true - lk_msdyn_pmanalysishistory_modifiedby + lk_plugintypestatisticbase_modifiedonbehalfby None - 1.2.0.13 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -446777,27 +496261,27 @@ false systemuserid systemuser - lk_msdyn_pmanalysishistory_modifiedby - modifiedby - msdyn_pmanalysishistory - modifiedby + lk_plugintypestatisticbase_modifiedonbehalfby + modifiedonbehalfby + plugintypestatistic + modifiedonbehalfby 0 - e07dcb4f-eeba-f011-bbd3-7c1e52365f30 + 8c59e6dd-0eb1-460f-bc14-aa9dd436d637 false - true + false iscustomizable true - false + true true - lk_msdyn_pmanalysishistory_modifiedonbehalfby + lk_sharepointdocumentlocationbase_modifiedonbehalfby None - 1.2.0.13 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -446831,27 +496315,27 @@ false systemuserid systemuser - lk_msdyn_pmanalysishistory_modifiedonbehalfby + lk_sharepointdocumentlocationbase_modifiedonbehalfby modifiedonbehalfby - msdyn_pmanalysishistory + sharepointdocumentlocation modifiedonbehalfby 0 - f27dcb4f-eeba-f011-bbd3-7c1e52365f30 + 2749fcdd-997a-453c-95af-49f958325e52 false - true + false iscustomizable false - false + true true - user_msdyn_pmanalysishistory + lk_solutioncomponentbase_modifiedonbehalfby None - 1.2.0.13 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -446885,27 +496369,27 @@ false systemuserid systemuser - user_msdyn_pmanalysishistory - owninguser - msdyn_pmanalysishistory - owninguser + lk_solutioncomponentbase_modifiedonbehalfby + modifiedonbehalfby + solutioncomponent + modifiedonbehalfby 0 - b17ecb4f-eeba-f011-bbd3-7c1e52365f30 + 487d18de-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_pmbusinessruleautomationconfig_createdby + lk_aicopilot_createdby None - 1.3.2.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -446939,15 +496423,15 @@ false systemuserid systemuser - lk_msdyn_pmbusinessruleautomationconfig_createdby + lk_aicopilot_createdby createdby - msdyn_pmbusinessruleautomationconfig + aicopilot createdby 0 - b77ecb4f-eeba-f011-bbd3-7c1e52365f30 + 5d7d18de-bdba-f011-bbd3-7c1e52365f30 false @@ -446957,9 +496441,9 @@ false true - lk_msdyn_pmbusinessruleautomationconfig_createdonbehalfby + lk_aicopilot_createdonbehalfby None - 1.3.2.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -446993,27 +496477,27 @@ false systemuserid systemuser - lk_msdyn_pmbusinessruleautomationconfig_createdonbehalfby + lk_aicopilot_createdonbehalfby createdonbehalfby - msdyn_pmbusinessruleautomationconfig + aicopilot createdonbehalfby 0 - bd7ecb4f-eeba-f011-bbd3-7c1e52365f30 + 697d18de-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_pmbusinessruleautomationconfig_modifiedby + lk_aicopilot_modifiedby None - 1.3.2.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -447047,15 +496531,15 @@ false systemuserid systemuser - lk_msdyn_pmbusinessruleautomationconfig_modifiedby + lk_aicopilot_modifiedby modifiedby - msdyn_pmbusinessruleautomationconfig + aicopilot modifiedby 0 - c37ecb4f-eeba-f011-bbd3-7c1e52365f30 + 757d18de-bdba-f011-bbd3-7c1e52365f30 false @@ -447065,9 +496549,9 @@ false true - lk_msdyn_pmbusinessruleautomationconfig_modifiedonbehalfby + lk_aicopilot_modifiedonbehalfby None - 1.3.2.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -447101,69 +496585,15 @@ false systemuserid systemuser - lk_msdyn_pmbusinessruleautomationconfig_modifiedonbehalfby + lk_aicopilot_modifiedonbehalfby modifiedonbehalfby - msdyn_pmbusinessruleautomationconfig + aicopilot modifiedonbehalfby 0 - d57ecb4f-eeba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - user_msdyn_pmbusinessruleautomationconfig - None - 1.3.2.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - user_msdyn_pmbusinessruleautomationconfig - owninguser - msdyn_pmbusinessruleautomationconfig - owninguser - - 0 - - - e7b03b56-eeba-f011-bbd3-7c1e52365f30 + 787e18de-bdba-f011-bbd3-7c1e52365f30 false @@ -447173,7 +496603,7 @@ false true - lk_msdyn_pmcalendar_createdby + lk_aipluginauth_createdby None 1.0.0.0 OneToManyRelationship @@ -447209,15 +496639,15 @@ false systemuserid systemuser - lk_msdyn_pmcalendar_createdby + lk_aipluginauth_createdby createdby - msdyn_pmcalendar + aipluginauth createdby 0 - edb03b56-eeba-f011-bbd3-7c1e52365f30 + 807e18de-bdba-f011-bbd3-7c1e52365f30 false @@ -447227,7 +496657,7 @@ false true - lk_msdyn_pmcalendar_createdonbehalfby + lk_aipluginauth_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -447263,15 +496693,15 @@ false systemuserid systemuser - lk_msdyn_pmcalendar_createdonbehalfby + lk_aipluginauth_createdonbehalfby createdonbehalfby - msdyn_pmcalendar + aipluginauth createdonbehalfby 0 - f3b03b56-eeba-f011-bbd3-7c1e52365f30 + 867e18de-bdba-f011-bbd3-7c1e52365f30 false @@ -447281,7 +496711,7 @@ false true - lk_msdyn_pmcalendar_modifiedby + lk_aipluginauth_modifiedby None 1.0.0.0 OneToManyRelationship @@ -447317,15 +496747,15 @@ false systemuserid systemuser - lk_msdyn_pmcalendar_modifiedby + lk_aipluginauth_modifiedby modifiedby - msdyn_pmcalendar + aipluginauth modifiedby 0 - f9b03b56-eeba-f011-bbd3-7c1e52365f30 + e97e18de-bdba-f011-bbd3-7c1e52365f30 false @@ -447335,7 +496765,7 @@ false true - lk_msdyn_pmcalendar_modifiedonbehalfby + lk_aipluginauth_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -447371,25 +496801,25 @@ false systemuserid systemuser - lk_msdyn_pmcalendar_modifiedonbehalfby + lk_aipluginauth_modifiedonbehalfby modifiedonbehalfby - msdyn_pmcalendar + aipluginauth modifiedonbehalfby 0 - 0bb13b56-eeba-f011-bbd3-7c1e52365f30 + 177f18de-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_pmcalendar + user_aipluginauth None 1.0.0.0 OneToManyRelationship @@ -447425,15 +496855,15 @@ false systemuserid systemuser - user_msdyn_pmcalendar + user_aipluginauth owninguser - msdyn_pmcalendar + aipluginauth owninguser 0 - bbb13b56-eeba-f011-bbd3-7c1e52365f30 + a78018de-bdba-f011-bbd3-7c1e52365f30 false @@ -447443,9 +496873,9 @@ false true - lk_msdyn_pmcalendarversion_createdby + lk_aipluginconversationstarter_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -447479,15 +496909,15 @@ false systemuserid systemuser - lk_msdyn_pmcalendarversion_createdby + lk_aipluginconversationstarter_createdby createdby - msdyn_pmcalendarversion + aipluginconversationstarter createdby 0 - c1b13b56-eeba-f011-bbd3-7c1e52365f30 + b68018de-bdba-f011-bbd3-7c1e52365f30 false @@ -447497,9 +496927,9 @@ false true - lk_msdyn_pmcalendarversion_createdonbehalfby + lk_aipluginconversationstarter_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -447533,15 +496963,15 @@ false systemuserid systemuser - lk_msdyn_pmcalendarversion_createdonbehalfby + lk_aipluginconversationstarter_createdonbehalfby createdonbehalfby - msdyn_pmcalendarversion + aipluginconversationstarter createdonbehalfby 0 - c7b13b56-eeba-f011-bbd3-7c1e52365f30 + c08018de-bdba-f011-bbd3-7c1e52365f30 false @@ -447551,9 +496981,9 @@ false true - lk_msdyn_pmcalendarversion_modifiedby + lk_aipluginconversationstarter_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -447587,15 +497017,15 @@ false systemuserid systemuser - lk_msdyn_pmcalendarversion_modifiedby + lk_aipluginconversationstarter_modifiedby modifiedby - msdyn_pmcalendarversion + aipluginconversationstarter modifiedby 0 - cdb13b56-eeba-f011-bbd3-7c1e52365f30 + d28018de-bdba-f011-bbd3-7c1e52365f30 false @@ -447605,9 +497035,9 @@ false true - lk_msdyn_pmcalendarversion_modifiedonbehalfby + lk_aipluginconversationstarter_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -447641,27 +497071,27 @@ false systemuserid systemuser - lk_msdyn_pmcalendarversion_modifiedonbehalfby + lk_aipluginconversationstarter_modifiedonbehalfby modifiedonbehalfby - msdyn_pmcalendarversion + aipluginconversationstarter modifiedonbehalfby 0 - dfb13b56-eeba-f011-bbd3-7c1e52365f30 + f48018de-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_pmcalendarversion + user_aipluginconversationstarter None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -447695,27 +497125,27 @@ false systemuserid systemuser - user_msdyn_pmcalendarversion + user_aipluginconversationstarter owninguser - msdyn_pmcalendarversion + aipluginconversationstarter owninguser 0 - ca84965c-eeba-f011-bbd3-7c1e52365f30 + d68218de-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_pminferredtask_createdby + lk_aipluginconversationstartermapping_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -447749,15 +497179,15 @@ false systemuserid systemuser - lk_msdyn_pminferredtask_createdby + lk_aipluginconversationstartermapping_createdby createdby - msdyn_pminferredtask + aipluginconversationstartermapping createdby 0 - d084965c-eeba-f011-bbd3-7c1e52365f30 + e28218de-bdba-f011-bbd3-7c1e52365f30 false @@ -447767,9 +497197,9 @@ false true - lk_msdyn_pminferredtask_createdonbehalfby + lk_aipluginconversationstartermapping_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -447803,27 +497233,27 @@ false systemuserid systemuser - lk_msdyn_pminferredtask_createdonbehalfby + lk_aipluginconversationstartermapping_createdonbehalfby createdonbehalfby - msdyn_pminferredtask + aipluginconversationstartermapping createdonbehalfby 0 - d684965c-eeba-f011-bbd3-7c1e52365f30 + e88218de-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_pminferredtask_modifiedby + lk_aipluginconversationstartermapping_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -447857,15 +497287,15 @@ false systemuserid systemuser - lk_msdyn_pminferredtask_modifiedby + lk_aipluginconversationstartermapping_modifiedby modifiedby - msdyn_pminferredtask + aipluginconversationstartermapping modifiedby 0 - dc84965c-eeba-f011-bbd3-7c1e52365f30 + ee8218de-bdba-f011-bbd3-7c1e52365f30 false @@ -447875,9 +497305,9 @@ false true - lk_msdyn_pminferredtask_modifiedonbehalfby + lk_aipluginconversationstartermapping_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -447911,27 +497341,27 @@ false systemuserid systemuser - lk_msdyn_pminferredtask_modifiedonbehalfby + lk_aipluginconversationstartermapping_modifiedonbehalfby modifiedonbehalfby - msdyn_pminferredtask + aipluginconversationstartermapping modifiedonbehalfby 0 - ee84965c-eeba-f011-bbd3-7c1e52365f30 + 008318de-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_pminferredtask + user_aipluginconversationstartermapping None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -447965,15 +497395,15 @@ false systemuserid systemuser - user_msdyn_pminferredtask + user_aipluginconversationstartermapping owninguser - msdyn_pminferredtask + aipluginconversationstartermapping owninguser 0 - af85965c-eeba-f011-bbd3-7c1e52365f30 + 75fa85de-b5ba-f011-bbd3-7c1e52365f30 false @@ -447983,9 +497413,9 @@ false true - lk_msdyn_pmprocessextendedmetadataversion_createdby + lk_privilegecheckerlog_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -448019,15 +497449,15 @@ false systemuserid systemuser - lk_msdyn_pmprocessextendedmetadataversion_createdby + lk_privilegecheckerlog_createdby createdby - msdyn_pmprocessextendedmetadataversion + privilegecheckerlog createdby 0 - b585965c-eeba-f011-bbd3-7c1e52365f30 + 7bfa85de-b5ba-f011-bbd3-7c1e52365f30 false @@ -448037,9 +497467,9 @@ false true - lk_msdyn_pmprocessextendedmetadataversion_createdonbehalfby + lk_privilegecheckerlog_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -448073,15 +497503,15 @@ false systemuserid systemuser - lk_msdyn_pmprocessextendedmetadataversion_createdonbehalfby + lk_privilegecheckerlog_createdonbehalfby createdonbehalfby - msdyn_pmprocessextendedmetadataversion + privilegecheckerlog createdonbehalfby 0 - bb85965c-eeba-f011-bbd3-7c1e52365f30 + 81fa85de-b5ba-f011-bbd3-7c1e52365f30 false @@ -448091,9 +497521,9 @@ false true - lk_msdyn_pmprocessextendedmetadataversion_modifiedby + lk_privilegecheckerlog_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -448127,15 +497557,15 @@ false systemuserid systemuser - lk_msdyn_pmprocessextendedmetadataversion_modifiedby + lk_privilegecheckerlog_modifiedby modifiedby - msdyn_pmprocessextendedmetadataversion + privilegecheckerlog modifiedby 0 - c185965c-eeba-f011-bbd3-7c1e52365f30 + 87fa85de-b5ba-f011-bbd3-7c1e52365f30 false @@ -448145,9 +497575,9 @@ false true - lk_msdyn_pmprocessextendedmetadataversion_modifiedonbehalfby + lk_privilegecheckerlog_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -448181,27 +497611,27 @@ false systemuserid systemuser - lk_msdyn_pmprocessextendedmetadataversion_modifiedonbehalfby + lk_privilegecheckerlog_modifiedonbehalfby modifiedonbehalfby - msdyn_pmprocessextendedmetadataversion + privilegecheckerlog modifiedonbehalfby 0 - d385965c-eeba-f011-bbd3-7c1e52365f30 + 11fb85de-b5ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_pmprocessextendedmetadataversion + lk_privilegecheckerrun_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -448235,27 +497665,27 @@ false systemuserid systemuser - user_msdyn_pmprocessextendedmetadataversion - owninguser - msdyn_pmprocessextendedmetadataversion - owninguser + lk_privilegecheckerrun_createdby + createdby + privilegecheckerrun + createdby 0 - 23728063-eeba-f011-bbd3-7c1e52365f30 + 17fb85de-b5ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_pmprocesstemplate_createdby + lk_privilegecheckerrun_createdonbehalfby None - 1.3.0.10 + 1.0 OneToManyRelationship DoNotDisplay @@ -448289,15 +497719,15 @@ false systemuserid systemuser - lk_msdyn_pmprocesstemplate_createdby - createdby - msdyn_pmprocesstemplate - createdby + lk_privilegecheckerrun_createdonbehalfby + createdonbehalfby + privilegecheckerrun + createdonbehalfby 0 - 29728063-eeba-f011-bbd3-7c1e52365f30 + 1dfb85de-b5ba-f011-bbd3-7c1e52365f30 false @@ -448307,9 +497737,9 @@ false true - lk_msdyn_pmprocesstemplate_createdonbehalfby + lk_privilegecheckerrun_modifiedby None - 1.3.0.10 + 1.0 OneToManyRelationship DoNotDisplay @@ -448343,27 +497773,27 @@ false systemuserid systemuser - lk_msdyn_pmprocesstemplate_createdonbehalfby - createdonbehalfby - msdyn_pmprocesstemplate - createdonbehalfby + lk_privilegecheckerrun_modifiedby + modifiedby + privilegecheckerrun + modifiedby 0 - 2f728063-eeba-f011-bbd3-7c1e52365f30 + 23fb85de-b5ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_pmprocesstemplate_modifiedby + lk_privilegecheckerrun_modifiedonbehalfby None - 1.3.0.10 + 1.0 OneToManyRelationship DoNotDisplay @@ -448397,15 +497827,15 @@ false systemuserid systemuser - lk_msdyn_pmprocesstemplate_modifiedby - modifiedby - msdyn_pmprocesstemplate - modifiedby + lk_privilegecheckerrun_modifiedonbehalfby + modifiedonbehalfby + privilegecheckerrun + modifiedonbehalfby 0 - 35728063-eeba-f011-bbd3-7c1e52365f30 + 35fb85de-b5ba-f011-bbd3-7c1e52365f30 false @@ -448415,9 +497845,9 @@ false true - lk_msdyn_pmprocesstemplate_modifiedonbehalfby + user_privilegecheckerrun None - 1.3.0.10 + 1.0 OneToManyRelationship DoNotDisplay @@ -448451,30 +497881,30 @@ false systemuserid systemuser - lk_msdyn_pmprocesstemplate_modifiedonbehalfby - modifiedonbehalfby - msdyn_pmprocesstemplate - modifiedonbehalfby + user_privilegecheckerrun + owninguser + privilegecheckerrun + owninguser 0 - 47728063-eeba-f011-bbd3-7c1e52365f30 + 070986de-f513-df11-a16e-00155d7aa40d false - true + false iscustomizable false - false + true true - user_msdyn_pmprocesstemplate + lk_rollupfield_createdby None - 1.3.0.10 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -448505,30 +497935,30 @@ false systemuserid systemuser - user_msdyn_pmprocesstemplate - owninguser - msdyn_pmprocesstemplate - owninguser + lk_rollupfield_createdby + createdby + rollupfield + createdby 0 - f6728063-eeba-f011-bbd3-7c1e52365f30 + 0b0986de-f513-df11-a16e-00155d7aa40d false - true + false iscustomizable - true + false - false + true true - lk_msdyn_pmprocessusersettings_createdby + lk_rollupfield_createdonbehalfby None - 1.2.1.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -448559,30 +497989,30 @@ false systemuserid systemuser - lk_msdyn_pmprocessusersettings_createdby - createdby - msdyn_pmprocessusersettings - createdby + lk_rollupfield_createdonbehalfby + createdonbehalfby + rollupfield + createdonbehalfby 0 - fc728063-eeba-f011-bbd3-7c1e52365f30 + 0f0986de-f513-df11-a16e-00155d7aa40d false - true + false iscustomizable - true + false - false + true true - lk_msdyn_pmprocessusersettings_createdonbehalfby + lk_rollupfield_modifiedby None - 1.2.1.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -448613,30 +498043,30 @@ false systemuserid systemuser - lk_msdyn_pmprocessusersettings_createdonbehalfby - createdonbehalfby - msdyn_pmprocessusersettings - createdonbehalfby + lk_rollupfield_modifiedby + modifiedby + rollupfield + modifiedby 0 - 02738063-eeba-f011-bbd3-7c1e52365f30 + 130986de-f513-df11-a16e-00155d7aa40d false - true + false iscustomizable - true + false - false + true true - lk_msdyn_pmprocessusersettings_modifiedby + lk_rollupfield_modifiedonbehalfby None - 1.2.1.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -448667,27 +498097,27 @@ false systemuserid systemuser - lk_msdyn_pmprocessusersettings_modifiedby - modifiedby - msdyn_pmprocessusersettings - modifiedby + lk_rollupfield_modifiedonbehalfby + modifiedonbehalfby + rollupfield + modifiedonbehalfby 0 - 08738063-eeba-f011-bbd3-7c1e52365f30 + c963b2de-c5ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - lk_msdyn_pmprocessusersettings_modifiedonbehalfby - None - 1.2.1.0 + system_user_territories + Append + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -448721,27 +498151,27 @@ false systemuserid systemuser - lk_msdyn_pmprocessusersettings_modifiedonbehalfby - modifiedonbehalfby - msdyn_pmprocessusersettings - modifiedonbehalfby + system_user_territories + managerid + territory + managerid - 0 + 1 - 1a738063-eeba-f011-bbd3-7c1e52365f30 + 55fcbede-b1ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_pmprocessusersettings + lk_eventexpanderbreadcrumb_createdby None - 1.2.1.0 + 9.1.1.151 OneToManyRelationship DoNotDisplay @@ -448775,15 +498205,15 @@ false systemuserid systemuser - user_msdyn_pmprocessusersettings - owninguser - msdyn_pmprocessusersettings - owninguser + lk_eventexpanderbreadcrumb_createdby + createdby + eventexpanderbreadcrumb + createdby 0 - 3bd4b269-eeba-f011-bbd3-7c1e52365f30 + 5bfcbede-b1ba-f011-bbd3-7c1e52365f30 false @@ -448793,9 +498223,9 @@ false true - lk_msdyn_pmprocessversion_createdby + lk_eventexpanderbreadcrumb_createdonbehalfby None - 1.0.0.0 + 9.1.1.151 OneToManyRelationship DoNotDisplay @@ -448829,15 +498259,15 @@ false systemuserid systemuser - lk_msdyn_pmprocessversion_createdby - createdby - msdyn_pmprocessversion - createdby + lk_eventexpanderbreadcrumb_createdonbehalfby + createdonbehalfby + eventexpanderbreadcrumb + createdonbehalfby 0 - 41d4b269-eeba-f011-bbd3-7c1e52365f30 + 61fcbede-b1ba-f011-bbd3-7c1e52365f30 false @@ -448847,9 +498277,9 @@ false true - lk_msdyn_pmprocessversion_createdonbehalfby + lk_eventexpanderbreadcrumb_modifiedby None - 1.0.0.0 + 9.1.1.151 OneToManyRelationship DoNotDisplay @@ -448883,15 +498313,15 @@ false systemuserid systemuser - lk_msdyn_pmprocessversion_createdonbehalfby - createdonbehalfby - msdyn_pmprocessversion - createdonbehalfby + lk_eventexpanderbreadcrumb_modifiedby + modifiedby + eventexpanderbreadcrumb + modifiedby 0 - 47d4b269-eeba-f011-bbd3-7c1e52365f30 + 67fcbede-b1ba-f011-bbd3-7c1e52365f30 false @@ -448901,9 +498331,9 @@ false true - lk_msdyn_pmprocessversion_modifiedby + lk_eventexpanderbreadcrumb_modifiedonbehalfby None - 1.0.0.0 + 9.1.1.151 OneToManyRelationship DoNotDisplay @@ -448937,27 +498367,27 @@ false systemuserid systemuser - lk_msdyn_pmprocessversion_modifiedby - modifiedby - msdyn_pmprocessversion - modifiedby + lk_eventexpanderbreadcrumb_modifiedonbehalfby + modifiedonbehalfby + eventexpanderbreadcrumb + modifiedonbehalfby 0 - 4dd4b269-eeba-f011-bbd3-7c1e52365f30 + d87bccde-bbc3-4ce8-9bf3-326c895371b8 false - true + false iscustomizable true - false + true true - lk_msdyn_pmprocessversion_modifiedonbehalfby + lk_reportcategorybase_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -448991,27 +498421,27 @@ false systemuserid systemuser - lk_msdyn_pmprocessversion_modifiedonbehalfby - modifiedonbehalfby - msdyn_pmprocessversion - modifiedonbehalfby + lk_reportcategorybase_createdby + createdby + reportcategory + createdby 0 - 5fd4b269-eeba-f011-bbd3-7c1e52365f30 + c14fcfde-6276-4543-ab72-de5905433057 false - true + false iscustomizable false - false - true - user_msdyn_pmprocessversion - None - 1.0.0.0 + true + false + systemuser_principalobjectattributeaccess + Append + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -449045,27 +498475,27 @@ false systemuserid systemuser - user_msdyn_pmprocessversion - owninguser - msdyn_pmprocessversion - owninguser + systemuser_principalobjectattributeaccess + objectid + principalobjectattributeaccess + objectid_systemuser - 0 + 1 - 21d5b269-eeba-f011-bbd3-7c1e52365f30 + 1eebf1de-f7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_pmrecording_createdby + lk_ctx_invoicecollection_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -449099,15 +498529,15 @@ false systemuserid systemuser - lk_msdyn_pmrecording_createdby + lk_ctx_invoicecollection_createdby createdby - msdyn_pmrecording + ctx_invoicecollection createdby 0 - 27d5b269-eeba-f011-bbd3-7c1e52365f30 + 24ebf1de-f7ba-f011-bbd3-7c1e52365f30 false @@ -449117,9 +498547,9 @@ false true - lk_msdyn_pmrecording_createdonbehalfby + lk_ctx_invoicecollection_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -449153,27 +498583,27 @@ false systemuserid systemuser - lk_msdyn_pmrecording_createdonbehalfby + lk_ctx_invoicecollection_createdonbehalfby createdonbehalfby - msdyn_pmrecording + ctx_invoicecollection createdonbehalfby 0 - 2dd5b269-eeba-f011-bbd3-7c1e52365f30 + 2bebf1de-f7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_pmrecording_modifiedby + lk_ctx_invoicecollection_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -449207,15 +498637,15 @@ false systemuserid systemuser - lk_msdyn_pmrecording_modifiedby + lk_ctx_invoicecollection_modifiedby modifiedby - msdyn_pmrecording + ctx_invoicecollection modifiedby 0 - 33d5b269-eeba-f011-bbd3-7c1e52365f30 + 32ebf1de-f7ba-f011-bbd3-7c1e52365f30 false @@ -449225,9 +498655,9 @@ false true - lk_msdyn_pmrecording_modifiedonbehalfby + lk_ctx_invoicecollection_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -449261,27 +498691,27 @@ false systemuserid systemuser - lk_msdyn_pmrecording_modifiedonbehalfby + lk_ctx_invoicecollection_modifiedonbehalfby modifiedonbehalfby - msdyn_pmrecording + ctx_invoicecollection modifiedonbehalfby 0 - 45d5b269-eeba-f011-bbd3-7c1e52365f30 + 45ebf1de-f7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_pmrecording + user_ctx_invoicecollection None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -449315,81 +498745,27 @@ false systemuserid systemuser - user_msdyn_pmrecording + user_ctx_invoicecollection owninguser - msdyn_pmrecording + ctx_invoicecollection owninguser 0 - f3e00770-eeba-f011-bbd3-7c1e52365f30 + fa6e5bdf-2952-4817-a764-92525d59cf60 false - true + false iscustomizable false - false - true - lk_msdyn_pmsimulation_createdby - None - 1.3.3.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_msdyn_pmsimulation_createdby - createdby - msdyn_pmsimulation - createdby - - 0 - - - f9e00770-eeba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false + true true - lk_msdyn_pmsimulation_createdonbehalfby + lk_asyncoperation_createdonbehalfby None - 1.3.3.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -449423,27 +498799,27 @@ false systemuserid systemuser - lk_msdyn_pmsimulation_createdonbehalfby + lk_asyncoperation_createdonbehalfby createdonbehalfby - msdyn_pmsimulation + asyncoperation createdonbehalfby 0 - ffe00770-eeba-f011-bbd3-7c1e52365f30 + e35b62df-cd7a-4c46-bef3-b6a50107e5db false - true + false iscustomizable false - false + true true - lk_msdyn_pmsimulation_modifiedby + lk_transactioncurrencybase_modifiedby None - 1.3.3.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -449477,27 +498853,27 @@ false systemuserid systemuser - lk_msdyn_pmsimulation_modifiedby + lk_transactioncurrencybase_modifiedby modifiedby - msdyn_pmsimulation + transactioncurrency modifiedby 0 - 05e10770-eeba-f011-bbd3-7c1e52365f30 + c3b212e0-972b-4199-8269-f08abd709074 false - true + false iscustomizable - true + false - false - true - lk_msdyn_pmsimulation_modifiedonbehalfby - None - 1.3.3.0 + true + false + lk_fixedmonthlyfiscalcalendar_salespersonid + ParentChild + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -449531,27 +498907,27 @@ false systemuserid systemuser - lk_msdyn_pmsimulation_modifiedonbehalfby - modifiedonbehalfby - msdyn_pmsimulation - modifiedonbehalfby + lk_fixedmonthlyfiscalcalendar_salespersonid + salespersonid + fixedmonthlyfiscalcalendar + salespersonid - 0 + 2 - 17e10770-eeba-f011-bbd3-7c1e52365f30 + f2f069e0-4a5e-41e4-bc47-1921a983bced false - true + false iscustomizable false - false + true true - user_msdyn_pmsimulation + modifiedby_connection_role None - 1.3.3.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -449585,27 +498961,27 @@ false systemuserid systemuser - user_msdyn_pmsimulation - owninguser - msdyn_pmsimulation - owninguser + modifiedby_connection_role + modifiedby + connectionrole + modifiedby 0 - d8e10770-eeba-f011-bbd3-7c1e52365f30 + 3c3db7e0-f87f-4ca9-9295-399fd5bf4f53 false - true + false iscustomizable true - false + true true - lk_msdyn_pmtab_createdby + lk_letter_createdonbehalfby None - 1.14.7.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -449639,15 +499015,15 @@ false systemuserid systemuser - lk_msdyn_pmtab_createdby - createdby - msdyn_pmtab - createdby + lk_letter_createdonbehalfby + createdonbehalfby + letter + createdonbehalfby_letter 0 - dee10770-eeba-f011-bbd3-7c1e52365f30 + 7422c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -449657,9 +499033,9 @@ false true - lk_msdyn_pmtab_createdonbehalfby + lk_retentionfailuredetail_createdby None - 1.14.7.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -449693,15 +499069,15 @@ false systemuserid systemuser - lk_msdyn_pmtab_createdonbehalfby - createdonbehalfby - msdyn_pmtab - createdonbehalfby + lk_retentionfailuredetail_createdby + createdby + retentionfailuredetail + createdby 0 - e4e10770-eeba-f011-bbd3-7c1e52365f30 + 7a22c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -449711,9 +499087,9 @@ false true - lk_msdyn_pmtab_modifiedby + lk_retentionfailuredetail_createdonbehalfby None - 1.14.7.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -449747,15 +499123,15 @@ false systemuserid systemuser - lk_msdyn_pmtab_modifiedby - modifiedby - msdyn_pmtab - modifiedby + lk_retentionfailuredetail_createdonbehalfby + createdonbehalfby + retentionfailuredetail + createdonbehalfby 0 - eae10770-eeba-f011-bbd3-7c1e52365f30 + 8022c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -449765,9 +499141,9 @@ false true - lk_msdyn_pmtab_modifiedonbehalfby + lk_retentionfailuredetail_modifiedby None - 1.14.7.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -449801,15 +499177,15 @@ false systemuserid systemuser - lk_msdyn_pmtab_modifiedonbehalfby - modifiedonbehalfby - msdyn_pmtab - modifiedonbehalfby + lk_retentionfailuredetail_modifiedby + modifiedby + retentionfailuredetail + modifiedby 0 - fce10770-eeba-f011-bbd3-7c1e52365f30 + 8622c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -449819,9 +499195,9 @@ false true - user_msdyn_pmtab + lk_retentionfailuredetail_modifiedonbehalfby None - 1.14.7.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -449855,27 +499231,27 @@ false systemuserid systemuser - user_msdyn_pmtab - owninguser - msdyn_pmtab - owninguser + lk_retentionfailuredetail_modifiedonbehalfby + modifiedonbehalfby + retentionfailuredetail + modifiedonbehalfby 0 - ee62f176-eeba-f011-bbd3-7c1e52365f30 + 9822c2e0-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_pmtemplate_createdby + user_retentionfailuredetail None - 1.2.0.14 + 1.0 OneToManyRelationship DoNotDisplay @@ -449909,15 +499285,15 @@ false systemuserid systemuser - lk_msdyn_pmtemplate_createdby - createdby - msdyn_pmtemplate - createdby + user_retentionfailuredetail + owninguser + retentionfailuredetail + owninguser 0 - f462f176-eeba-f011-bbd3-7c1e52365f30 + 4f23c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -449927,9 +499303,9 @@ false true - lk_msdyn_pmtemplate_createdonbehalfby + lk_retentionoperation_createdby None - 1.2.0.14 + 1.0 OneToManyRelationship DoNotDisplay @@ -449963,27 +499339,27 @@ false systemuserid systemuser - lk_msdyn_pmtemplate_createdonbehalfby - createdonbehalfby - msdyn_pmtemplate - createdonbehalfby + lk_retentionoperation_createdby + createdby + retentionoperation + createdby 0 - fa62f176-eeba-f011-bbd3-7c1e52365f30 + 5523c2e0-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_pmtemplate_modifiedby + lk_retentionoperation_createdonbehalfby None - 1.2.0.14 + 1.0 OneToManyRelationship DoNotDisplay @@ -450017,15 +499393,15 @@ false systemuserid systemuser - lk_msdyn_pmtemplate_modifiedby - modifiedby - msdyn_pmtemplate - modifiedby + lk_retentionoperation_createdonbehalfby + createdonbehalfby + retentionoperation + createdonbehalfby 0 - 0063f176-eeba-f011-bbd3-7c1e52365f30 + 5b23c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -450035,9 +499411,9 @@ false true - lk_msdyn_pmtemplate_modifiedonbehalfby + lk_retentionoperation_modifiedby None - 1.2.0.14 + 1.0 OneToManyRelationship DoNotDisplay @@ -450071,27 +499447,27 @@ false systemuserid systemuser - lk_msdyn_pmtemplate_modifiedonbehalfby - modifiedonbehalfby - msdyn_pmtemplate - modifiedonbehalfby + lk_retentionoperation_modifiedby + modifiedby + retentionoperation + modifiedby 0 - 1263f176-eeba-f011-bbd3-7c1e52365f30 + 6123c2e0-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_pmtemplate + lk_retentionoperation_modifiedonbehalfby None - 1.2.0.14 + 1.0 OneToManyRelationship DoNotDisplay @@ -450125,15 +499501,15 @@ false systemuserid systemuser - user_msdyn_pmtemplate - owninguser - msdyn_pmtemplate - owninguser + lk_retentionoperation_modifiedonbehalfby + modifiedonbehalfby + retentionoperation + modifiedonbehalfby 0 - d763f176-eeba-f011-bbd3-7c1e52365f30 + 7323c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -450143,9 +499519,9 @@ false true - lk_msdyn_pmview_createdby + user_retentionoperation None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -450179,15 +499555,15 @@ false systemuserid systemuser - lk_msdyn_pmview_createdby - createdby - msdyn_pmview - createdby + user_retentionoperation + owninguser + retentionoperation + owninguser 0 - dd63f176-eeba-f011-bbd3-7c1e52365f30 + 1224c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -450197,9 +499573,9 @@ false true - lk_msdyn_pmview_createdonbehalfby + lk_retentionoperationdetail_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -450233,15 +499609,15 @@ false systemuserid systemuser - lk_msdyn_pmview_createdonbehalfby - createdonbehalfby - msdyn_pmview - createdonbehalfby + lk_retentionoperationdetail_createdby + createdby + retentionoperationdetail + createdby 0 - e363f176-eeba-f011-bbd3-7c1e52365f30 + 1d24c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -450251,9 +499627,9 @@ false true - lk_msdyn_pmview_modifiedby + lk_retentionoperationdetail_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -450287,15 +499663,15 @@ false systemuserid systemuser - lk_msdyn_pmview_modifiedby - modifiedby - msdyn_pmview - modifiedby + lk_retentionoperationdetail_createdonbehalfby + createdonbehalfby + retentionoperationdetail + createdonbehalfby 0 - e963f176-eeba-f011-bbd3-7c1e52365f30 + 2724c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -450305,9 +499681,9 @@ false true - lk_msdyn_pmview_modifiedonbehalfby + lk_retentionoperationdetail_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -450341,27 +499717,27 @@ false systemuserid systemuser - lk_msdyn_pmview_modifiedonbehalfby - modifiedonbehalfby - msdyn_pmview - modifiedonbehalfby + lk_retentionoperationdetail_modifiedby + modifiedby + retentionoperationdetail + modifiedby 0 - fb63f176-eeba-f011-bbd3-7c1e52365f30 + 3124c2e0-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_pmview + lk_retentionoperationdetail_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -450395,27 +499771,27 @@ false systemuserid systemuser - user_msdyn_pmview - owninguser - msdyn_pmview - owninguser + lk_retentionoperationdetail_modifiedonbehalfby + modifiedonbehalfby + retentionoperationdetail + modifiedonbehalfby 0 - 6cbb6f52-efba-f011-bbd3-7c1e52365f30 + f224c2e0-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_analysiscomponent_createdby + lk_retentionsuccessdetail_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -450449,15 +499825,15 @@ false systemuserid systemuser - lk_msdyn_analysiscomponent_createdby + lk_retentionsuccessdetail_createdby createdby - msdyn_analysiscomponent + retentionsuccessdetail createdby 0 - 72bb6f52-efba-f011-bbd3-7c1e52365f30 + f824c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -450467,9 +499843,9 @@ false true - lk_msdyn_analysiscomponent_createdonbehalfby + lk_retentionsuccessdetail_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -450503,27 +499879,27 @@ false systemuserid systemuser - lk_msdyn_analysiscomponent_createdonbehalfby + lk_retentionsuccessdetail_createdonbehalfby createdonbehalfby - msdyn_analysiscomponent + retentionsuccessdetail createdonbehalfby 0 - 78bb6f52-efba-f011-bbd3-7c1e52365f30 + fe24c2e0-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_analysiscomponent_modifiedby + lk_retentionsuccessdetail_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -450557,15 +499933,15 @@ false systemuserid systemuser - lk_msdyn_analysiscomponent_modifiedby + lk_retentionsuccessdetail_modifiedby modifiedby - msdyn_analysiscomponent + retentionsuccessdetail modifiedby 0 - 7ebb6f52-efba-f011-bbd3-7c1e52365f30 + 0425c2e0-d3ba-f011-bbd3-7c1e52365f30 false @@ -450575,9 +499951,9 @@ false true - lk_msdyn_analysiscomponent_modifiedonbehalfby + lk_retentionsuccessdetail_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -450611,27 +499987,27 @@ false systemuserid systemuser - lk_msdyn_analysiscomponent_modifiedonbehalfby + lk_retentionsuccessdetail_modifiedonbehalfby modifiedonbehalfby - msdyn_analysiscomponent + retentionsuccessdetail modifiedonbehalfby 0 - 90bb6f52-efba-f011-bbd3-7c1e52365f30 + 1625c2e0-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_analysiscomponent + user_retentionsuccessdetail None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -450665,27 +500041,27 @@ false systemuserid systemuser - user_msdyn_analysiscomponent + user_retentionsuccessdetail owninguser - msdyn_analysiscomponent + retentionsuccessdetail owninguser 0 - 8bbc6f52-efba-f011-bbd3-7c1e52365f30 + 0d6591e1-b479-4df6-b405-6890fa95fd56 false - true + false iscustomizable false - false - true - lk_msdyn_analysisjob_createdby + true + false + modifiedby_sdkmessageresponse None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -450719,27 +500095,27 @@ false systemuserid systemuser - lk_msdyn_analysisjob_createdby - createdby - msdyn_analysisjob - createdby + modifiedby_sdkmessageresponse + modifiedby + sdkmessageresponse + modifiedby 0 - 91bc6f52-efba-f011-bbd3-7c1e52365f30 + a85babe1-0484-4014-b76f-8c4dcdc5fbef false - true + false iscustomizable - true + false - false + true true - lk_msdyn_analysisjob_createdonbehalfby + lk_plugintypestatisticbase_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -450773,69 +500149,15 @@ false systemuserid systemuser - lk_msdyn_analysisjob_createdonbehalfby + lk_plugintypestatisticbase_createdonbehalfby createdonbehalfby - msdyn_analysisjob + plugintypestatistic createdonbehalfby 0 - 97bc6f52-efba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - lk_msdyn_analysisjob_modifiedby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_msdyn_analysisjob_modifiedby - modifiedby - msdyn_analysisjob - modifiedby - - 0 - - - 9dbc6f52-efba-f011-bbd3-7c1e52365f30 + 0bcc36e2-b2ba-f011-bbd3-7c1e52365f30 false @@ -450845,7 +500167,7 @@ false true - lk_msdyn_analysisjob_modifiedonbehalfby + lk_dataprocessingconfiguration_createdby None 1.0.0.0 OneToManyRelationship @@ -450881,25 +500203,25 @@ false systemuserid systemuser - lk_msdyn_analysisjob_modifiedonbehalfby - modifiedonbehalfby - msdyn_analysisjob - modifiedonbehalfby + lk_dataprocessingconfiguration_createdby + createdby + dataprocessingconfiguration + createdby 0 - afbc6f52-efba-f011-bbd3-7c1e52365f30 + 11cc36e2-b2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_analysisjob + lk_dataprocessingconfiguration_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -450935,15 +500257,15 @@ false systemuserid systemuser - user_msdyn_analysisjob - owninguser - msdyn_analysisjob - owninguser + lk_dataprocessingconfiguration_createdonbehalfby + createdonbehalfby + dataprocessingconfiguration + createdonbehalfby 0 - 1abe6f52-efba-f011-bbd3-7c1e52365f30 + 17cc36e2-b2ba-f011-bbd3-7c1e52365f30 false @@ -450953,7 +500275,7 @@ false true - lk_msdyn_analysisoverride_createdby + lk_dataprocessingconfiguration_modifiedby None 1.0.0.0 OneToManyRelationship @@ -450989,15 +500311,15 @@ false systemuserid systemuser - lk_msdyn_analysisoverride_createdby - createdby - msdyn_analysisoverride - createdby + lk_dataprocessingconfiguration_modifiedby + modifiedby + dataprocessingconfiguration + modifiedby 0 - 20be6f52-efba-f011-bbd3-7c1e52365f30 + 1dcc36e2-b2ba-f011-bbd3-7c1e52365f30 false @@ -451007,7 +500329,7 @@ false true - lk_msdyn_analysisoverride_createdonbehalfby + lk_dataprocessingconfiguration_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -451043,15 +500365,15 @@ false systemuserid systemuser - lk_msdyn_analysisoverride_createdonbehalfby - createdonbehalfby - msdyn_analysisoverride - createdonbehalfby + lk_dataprocessingconfiguration_modifiedonbehalfby + modifiedonbehalfby + dataprocessingconfiguration + modifiedonbehalfby 0 - 26be6f52-efba-f011-bbd3-7c1e52365f30 + 17cd36e2-b2ba-f011-bbd3-7c1e52365f30 false @@ -451061,9 +500383,9 @@ false true - lk_msdyn_analysisoverride_modifiedby + lk_exportedexcel_createdby None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -451097,15 +500419,15 @@ false systemuserid systemuser - lk_msdyn_analysisoverride_modifiedby - modifiedby - msdyn_analysisoverride - modifiedby + lk_exportedexcel_createdby + createdby + exportedexcel + createdby 0 - 2cbe6f52-efba-f011-bbd3-7c1e52365f30 + 1fcd36e2-b2ba-f011-bbd3-7c1e52365f30 false @@ -451115,9 +500437,9 @@ false true - lk_msdyn_analysisoverride_modifiedonbehalfby + lk_exportedexcel_createdonbehalfby None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -451151,15 +500473,15 @@ false systemuserid systemuser - lk_msdyn_analysisoverride_modifiedonbehalfby - modifiedonbehalfby - msdyn_analysisoverride - modifiedonbehalfby + lk_exportedexcel_createdonbehalfby + createdonbehalfby + exportedexcel + createdonbehalfby 0 - 3ebe6f52-efba-f011-bbd3-7c1e52365f30 + 26cd36e2-b2ba-f011-bbd3-7c1e52365f30 false @@ -451169,9 +500491,9 @@ false true - user_msdyn_analysisoverride + lk_exportedexcel_modifiedby None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -451205,27 +500527,27 @@ false systemuserid systemuser - user_msdyn_analysisoverride - owninguser - msdyn_analysisoverride - owninguser + lk_exportedexcel_modifiedby + modifiedby + exportedexcel + modifiedby 0 - 8bbf6f52-efba-f011-bbd3-7c1e52365f30 + 2ccd36e2-b2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_analysisresult_createdby + lk_exportedexcel_modifiedonbehalfby None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -451259,15 +500581,15 @@ false systemuserid systemuser - lk_msdyn_analysisresult_createdby - createdby - msdyn_analysisresult - createdby + lk_exportedexcel_modifiedonbehalfby + modifiedonbehalfby + exportedexcel + modifiedonbehalfby 0 - 91bf6f52-efba-f011-bbd3-7c1e52365f30 + 3ecd36e2-b2ba-f011-bbd3-7c1e52365f30 false @@ -451277,9 +500599,9 @@ false true - lk_msdyn_analysisresult_createdonbehalfby + user_exportedexcel None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -451313,27 +500635,27 @@ false systemuserid systemuser - lk_msdyn_analysisresult_createdonbehalfby - createdonbehalfby - msdyn_analysisresult - createdonbehalfby + user_exportedexcel + owninguser + exportedexcel + owninguser 0 - 97bf6f52-efba-f011-bbd3-7c1e52365f30 + b0ce36e2-b2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_analysisresult_modifiedby + lk_retaineddataexcel_createdby None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -451367,15 +500689,15 @@ false systemuserid systemuser - lk_msdyn_analysisresult_modifiedby - modifiedby - msdyn_analysisresult - modifiedby + lk_retaineddataexcel_createdby + createdby + retaineddataexcel + createdby 0 - 9dbf6f52-efba-f011-bbd3-7c1e52365f30 + b6ce36e2-b2ba-f011-bbd3-7c1e52365f30 false @@ -451385,9 +500707,9 @@ false true - lk_msdyn_analysisresult_modifiedonbehalfby + lk_retaineddataexcel_createdonbehalfby None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -451421,27 +500743,27 @@ false systemuserid systemuser - lk_msdyn_analysisresult_modifiedonbehalfby - modifiedonbehalfby - msdyn_analysisresult - modifiedonbehalfby + lk_retaineddataexcel_createdonbehalfby + createdonbehalfby + retaineddataexcel + createdonbehalfby 0 - afbf6f52-efba-f011-bbd3-7c1e52365f30 + bcce36e2-b2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_analysisresult + lk_retaineddataexcel_modifiedby None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -451475,27 +500797,27 @@ false systemuserid systemuser - user_msdyn_analysisresult - owninguser - msdyn_analysisresult - owninguser + lk_retaineddataexcel_modifiedby + modifiedby + retaineddataexcel + modifiedby 0 - bb450659-efba-f011-bbd3-7c1e52365f30 + c2ce36e2-b2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_analysisresultdetail_createdby + lk_retaineddataexcel_modifiedonbehalfby None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -451529,15 +500851,15 @@ false systemuserid systemuser - lk_msdyn_analysisresultdetail_createdby - createdby - msdyn_analysisresultdetail - createdby + lk_retaineddataexcel_modifiedonbehalfby + modifiedonbehalfby + retaineddataexcel + modifiedonbehalfby 0 - cf450659-efba-f011-bbd3-7c1e52365f30 + d4ce36e2-b2ba-f011-bbd3-7c1e52365f30 false @@ -451547,9 +500869,9 @@ false true - lk_msdyn_analysisresultdetail_createdonbehalfby + user_retaineddataexcel None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -451583,27 +500905,27 @@ false systemuserid systemuser - lk_msdyn_analysisresultdetail_createdonbehalfby - createdonbehalfby - msdyn_analysisresultdetail - createdonbehalfby + user_retaineddataexcel + owninguser + retaineddataexcel + owninguser 0 - 1e460659-efba-f011-bbd3-7c1e52365f30 + b68961e2-3182-475c-acb1-37594aacdc00 false - true + false iscustomizable false - false - true - lk_msdyn_analysisresultdetail_modifiedby + true + false + lk_semiannualfiscalcalendar_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -451637,27 +500959,27 @@ false systemuserid systemuser - lk_msdyn_analysisresultdetail_modifiedby - modifiedby - msdyn_analysisresultdetail - modifiedby + lk_semiannualfiscalcalendar_modifiedonbehalfby + modifiedonbehalfby + semiannualfiscalcalendar + modifiedonbehalfby 0 - 2a460659-efba-f011-bbd3-7c1e52365f30 + 57c689e2-7131-44ef-aea8-9cf8624a38ab false - true + false iscustomizable - true + false - false - true - lk_msdyn_analysisresultdetail_modifiedonbehalfby + true + false + lk_lookupmapping_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -451691,27 +501013,81 @@ false systemuserid systemuser - lk_msdyn_analysisresultdetail_modifiedonbehalfby - modifiedonbehalfby - msdyn_analysisresultdetail - modifiedonbehalfby + lk_lookupmapping_createdonbehalfby + createdonbehalfby + lookupmapping + createdonbehalfby 0 - 3c460659-efba-f011-bbd3-7c1e52365f30 + 9a2690e2-73ef-413c-a49a-4ef7f3af748a false - true + false iscustomizable false - false + true + false + lk_relationshiprolemap_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_relationshiprolemap_createdonbehalfby + createdonbehalfby + relationshiprolemap + createdonbehalfby + + 0 + + + 0c48b7e2-0faa-4ef1-b408-e650ac92e8cb + + false + + false + iscustomizable + true + + true true - user_msdyn_analysisresultdetail + lk_team_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -451745,27 +501121,27 @@ false systemuserid systemuser - user_msdyn_analysisresultdetail - owninguser - msdyn_analysisresultdetail - owninguser + lk_team_createdonbehalfby + createdonbehalfby + team + createdonbehalfby 0 - 81470659-efba-f011-bbd3-7c1e52365f30 + f31520e3-90b9-4e6e-8e07-ae5779acf26b false - true + false iscustomizable false - false - true - lk_msdyn_solutionhealthrule_createdby + true + false + lk_ACIViewMapper_modifiedonbehalfby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -451799,27 +501175,27 @@ false systemuserid systemuser - lk_msdyn_solutionhealthrule_createdby - createdby - msdyn_solutionhealthrule - createdby + lk_ACIViewMapper_modifiedonbehalfby + modifiedonbehalfby + aciviewmapper + modifiedonbehalfby 0 - 87470659-efba-f011-bbd3-7c1e52365f30 + 090724e3-06cf-4397-971e-f7a9d455d1bb false - true + false iscustomizable - true + false - false - true - lk_msdyn_solutionhealthrule_createdonbehalfby + true + false + lk_columnmapping_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -451853,27 +501229,27 @@ false systemuserid systemuser - lk_msdyn_solutionhealthrule_createdonbehalfby - createdonbehalfby - msdyn_solutionhealthrule - createdonbehalfby + lk_columnmapping_modifiedonbehalfby + modifiedonbehalfby + columnmapping + modifiedonbehalfby 0 - 8d470659-efba-f011-bbd3-7c1e52365f30 + 3f7302e4-da82-4374-bdaa-b4b1ea4d111f false - true + false iscustomizable false - false + true true - lk_msdyn_solutionhealthrule_modifiedby + lk_convertruleitembase_createdonbehalfby None - 1.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -451907,15 +501283,15 @@ false systemuserid systemuser - lk_msdyn_solutionhealthrule_modifiedby - modifiedby - msdyn_solutionhealthrule - modifiedby + lk_convertruleitembase_createdonbehalfby + createdonbehalfby + convertruleitem + createdonbehalfby 0 - 93470659-efba-f011-bbd3-7c1e52365f30 + eaef27e4-baba-f011-bbd3-7c1e52365f30 false @@ -451925,9 +501301,9 @@ false true - lk_msdyn_solutionhealthrule_modifiedonbehalfby + lk_businessprocess_createdby None - 1.0.0.0 + 1.9.0.0 OneToManyRelationship DoNotDisplay @@ -451961,27 +501337,27 @@ false systemuserid systemuser - lk_msdyn_solutionhealthrule_modifiedonbehalfby - modifiedonbehalfby - msdyn_solutionhealthrule - modifiedonbehalfby + lk_businessprocess_createdby + createdby + businessprocess + createdby 0 - a5470659-efba-f011-bbd3-7c1e52365f30 + f0ef27e4-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_solutionhealthrule + lk_businessprocess_createdonbehalfby None - 1.0.0.0 + 1.9.0.0 OneToManyRelationship DoNotDisplay @@ -452015,27 +501391,27 @@ false systemuserid systemuser - user_msdyn_solutionhealthrule - owninguser - msdyn_solutionhealthrule - owninguser + lk_businessprocess_createdonbehalfby + createdonbehalfby + businessprocess + createdonbehalfby 0 - a2480659-efba-f011-bbd3-7c1e52365f30 + f6ef27e4-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_solutionhealthruleargument_createdby + lk_businessprocess_modifiedby None - 1.0.0.0 + 1.9.0.0 OneToManyRelationship DoNotDisplay @@ -452069,15 +501445,15 @@ false systemuserid systemuser - lk_msdyn_solutionhealthruleargument_createdby - createdby - msdyn_solutionhealthruleargument - createdby + lk_businessprocess_modifiedby + modifiedby + businessprocess + modifiedby 0 - a8480659-efba-f011-bbd3-7c1e52365f30 + fcef27e4-baba-f011-bbd3-7c1e52365f30 false @@ -452087,9 +501463,9 @@ false true - lk_msdyn_solutionhealthruleargument_createdonbehalfby + lk_businessprocess_modifiedonbehalfby None - 1.0.0.0 + 1.9.0.0 OneToManyRelationship DoNotDisplay @@ -452123,27 +501499,27 @@ false systemuserid systemuser - lk_msdyn_solutionhealthruleargument_createdonbehalfby - createdonbehalfby - msdyn_solutionhealthruleargument - createdonbehalfby + lk_businessprocess_modifiedonbehalfby + modifiedonbehalfby + businessprocess + modifiedonbehalfby 0 - ae480659-efba-f011-bbd3-7c1e52365f30 + 0ef027e4-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_solutionhealthruleargument_modifiedby + user_businessprocess None - 1.0.0.0 + 1.9.0.0 OneToManyRelationship DoNotDisplay @@ -452177,15 +501553,15 @@ false systemuserid systemuser - lk_msdyn_solutionhealthruleargument_modifiedby - modifiedby - msdyn_solutionhealthruleargument - modifiedby + user_businessprocess + owninguser + businessprocess + owninguser 0 - b5480659-efba-f011-bbd3-7c1e52365f30 + 61f127e4-baba-f011-bbd3-7c1e52365f30 false @@ -452195,9 +501571,9 @@ false true - lk_msdyn_solutionhealthruleargument_modifiedonbehalfby + lk_credential_createdby None - 1.0.0.0 + 1.6.0.0 OneToManyRelationship DoNotDisplay @@ -452231,27 +501607,27 @@ false systemuserid systemuser - lk_msdyn_solutionhealthruleargument_modifiedonbehalfby - modifiedonbehalfby - msdyn_solutionhealthruleargument - modifiedonbehalfby + lk_credential_createdby + createdby + credential + createdby 0 - c7480659-efba-f011-bbd3-7c1e52365f30 + 67f127e4-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_msdyn_solutionhealthruleargument + lk_credential_createdonbehalfby None - 1.0.0.0 + 1.6.0.0 OneToManyRelationship DoNotDisplay @@ -452285,27 +501661,27 @@ false systemuserid systemuser - user_msdyn_solutionhealthruleargument - owninguser - msdyn_solutionhealthruleargument - owninguser + lk_credential_createdonbehalfby + createdonbehalfby + credential + createdonbehalfby 0 - 8e490659-efba-f011-bbd3-7c1e52365f30 + 6df127e4-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_solutionhealthruleset_createdby + lk_credential_modifiedby None - 1.0.0.0 + 1.6.0.0 OneToManyRelationship DoNotDisplay @@ -452339,15 +501715,15 @@ false systemuserid systemuser - lk_msdyn_solutionhealthruleset_createdby - createdby - msdyn_solutionhealthruleset - createdby + lk_credential_modifiedby + modifiedby + credential + modifiedby 0 - 94490659-efba-f011-bbd3-7c1e52365f30 + 73f127e4-baba-f011-bbd3-7c1e52365f30 false @@ -452357,9 +501733,9 @@ false true - lk_msdyn_solutionhealthruleset_createdonbehalfby + lk_credential_modifiedonbehalfby None - 1.0.0.0 + 1.6.0.0 OneToManyRelationship DoNotDisplay @@ -452393,27 +501769,27 @@ false systemuserid systemuser - lk_msdyn_solutionhealthruleset_createdonbehalfby - createdonbehalfby - msdyn_solutionhealthruleset - createdonbehalfby + lk_credential_modifiedonbehalfby + modifiedonbehalfby + credential + modifiedonbehalfby 0 - 9a490659-efba-f011-bbd3-7c1e52365f30 + 85f127e4-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_solutionhealthruleset_modifiedby + user_credential None - 1.0.0.0 + 1.6.0.0 OneToManyRelationship DoNotDisplay @@ -452447,15 +501823,15 @@ false systemuserid systemuser - lk_msdyn_solutionhealthruleset_modifiedby - modifiedby - msdyn_solutionhealthruleset - modifiedby + user_credential + owninguser + credential + owninguser 0 - a0490659-efba-f011-bbd3-7c1e52365f30 + 4cf227e4-baba-f011-bbd3-7c1e52365f30 false @@ -452465,9 +501841,9 @@ false true - lk_msdyn_solutionhealthruleset_modifiedonbehalfby + lk_desktopflowmodule_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -452501,27 +501877,135 @@ false systemuserid systemuser - lk_msdyn_solutionhealthruleset_modifiedonbehalfby - modifiedonbehalfby - msdyn_solutionhealthruleset - modifiedonbehalfby + lk_desktopflowmodule_createdby + createdby + desktopflowmodule + createdby 0 - 13e2da02-f0ba-f011-bbd3-7c1e52365f30 + 52f227e4-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerbidataset_createdby + lk_desktopflowmodule_createdonbehalfby None - 1.0.0.0 + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_desktopflowmodule_createdonbehalfby + createdonbehalfby + desktopflowmodule + createdonbehalfby + + 0 + + + 58f227e4-baba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_desktopflowmodule_modifiedby + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_desktopflowmodule_modifiedby + modifiedby + desktopflowmodule + modifiedby + + 0 + + + 5ef227e4-baba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + lk_desktopflowmodule_modifiedonbehalfby + None + 1.0 OneToManyRelationship DoNotDisplay @@ -452555,15 +502039,15 @@ false systemuserid systemuser - lk_powerbidataset_createdby - createdby - powerbidataset - createdby + lk_desktopflowmodule_modifiedonbehalfby + modifiedonbehalfby + desktopflowmodule + modifiedonbehalfby 0 - 19e2da02-f0ba-f011-bbd3-7c1e52365f30 + 70f227e4-baba-f011-bbd3-7c1e52365f30 false @@ -452573,63 +502057,9 @@ false true - lk_powerbidataset_createdonbehalfby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_powerbidataset_createdonbehalfby - createdonbehalfby - powerbidataset - createdonbehalfby - - 0 - - - 1fe2da02-f0ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - lk_powerbidataset_modifiedby + user_desktopflowmodule None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -452663,30 +502093,30 @@ false systemuserid systemuser - lk_powerbidataset_modifiedby - modifiedby - powerbidataset - modifiedby + user_desktopflowmodule + owninguser + desktopflowmodule + owninguser 0 - 25e2da02-f0ba-f011-bbd3-7c1e52365f30 + 247a92e4-7b76-45ce-8fd7-140a2a12668c false - true + false iscustomizable true - false + true true - lk_powerbidataset_modifiedonbehalfby + lk_appmodule_modifiedonbehalfby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -452717,27 +502147,27 @@ false systemuserid systemuser - lk_powerbidataset_modifiedonbehalfby + systemuser_appmodule_modifiedonbehalfby modifiedonbehalfby - powerbidataset - modifiedonbehalfby + appmodule + appmodule_modifiedonbehalfby 0 - 37e2da02-f0ba-f011-bbd3-7c1e52365f30 + ce4d9ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_powerbidataset + lk_aiplugingovernance_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -452771,25 +502201,25 @@ false systemuserid systemuser - user_powerbidataset - owninguser - powerbidataset - owninguser + lk_aiplugingovernance_createdby + createdby + aiplugingovernance + createdby 0 - f1e2da02-f0ba-f011-bbd3-7c1e52365f30 + d44d9ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerbidatasetapdx_createdby + lk_aiplugingovernance_createdonbehalfby None 1.0 OneToManyRelationship @@ -452825,15 +502255,15 @@ false systemuserid systemuser - lk_powerbidatasetapdx_createdby - createdby - powerbidatasetapdx - createdby + lk_aiplugingovernance_createdonbehalfby + createdonbehalfby + aiplugingovernance + createdonbehalfby 0 - f7e2da02-f0ba-f011-bbd3-7c1e52365f30 + da4d9ee4-bdba-f011-bbd3-7c1e52365f30 false @@ -452843,7 +502273,7 @@ false true - lk_powerbidatasetapdx_createdonbehalfby + lk_aiplugingovernance_modifiedby None 1.0 OneToManyRelationship @@ -452879,25 +502309,25 @@ false systemuserid systemuser - lk_powerbidatasetapdx_createdonbehalfby - createdonbehalfby - powerbidatasetapdx - createdonbehalfby + lk_aiplugingovernance_modifiedby + modifiedby + aiplugingovernance + modifiedby 0 - fde2da02-f0ba-f011-bbd3-7c1e52365f30 + e04d9ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerbidatasetapdx_modifiedby + lk_aiplugingovernance_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -452933,15 +502363,15 @@ false systemuserid systemuser - lk_powerbidatasetapdx_modifiedby - modifiedby - powerbidatasetapdx - modifiedby + lk_aiplugingovernance_modifiedonbehalfby + modifiedonbehalfby + aiplugingovernance + modifiedonbehalfby 0 - 03e3da02-f0ba-f011-bbd3-7c1e52365f30 + f24d9ee4-bdba-f011-bbd3-7c1e52365f30 false @@ -452951,7 +502381,7 @@ false true - lk_powerbidatasetapdx_modifiedonbehalfby + user_aiplugingovernance None 1.0 OneToManyRelationship @@ -452987,25 +502417,25 @@ false systemuserid systemuser - lk_powerbidatasetapdx_modifiedonbehalfby - modifiedonbehalfby - powerbidatasetapdx - modifiedonbehalfby + user_aiplugingovernance + owninguser + aiplugingovernance + owninguser 0 - 15e3da02-f0ba-f011-bbd3-7c1e52365f30 + 9d4f9ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_powerbidatasetapdx + lk_aiplugingovernanceext_createdby None 1.0 OneToManyRelationship @@ -453041,27 +502471,27 @@ false systemuserid systemuser - user_powerbidatasetapdx - owninguser - powerbidatasetapdx - owninguser + lk_aiplugingovernanceext_createdby + createdby + aiplugingovernanceext + createdby 0 - e7e3da02-f0ba-f011-bbd3-7c1e52365f30 + a34f9ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerbimashupparameter_createdby + lk_aiplugingovernanceext_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -453095,15 +502525,15 @@ false systemuserid systemuser - lk_powerbimashupparameter_createdby - createdby - powerbimashupparameter - createdby + lk_aiplugingovernanceext_createdonbehalfby + createdonbehalfby + aiplugingovernanceext + createdonbehalfby 0 - ede3da02-f0ba-f011-bbd3-7c1e52365f30 + a94f9ee4-bdba-f011-bbd3-7c1e52365f30 false @@ -453113,9 +502543,9 @@ false true - lk_powerbimashupparameter_createdonbehalfby + lk_aiplugingovernanceext_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -453149,27 +502579,27 @@ false systemuserid systemuser - lk_powerbimashupparameter_createdonbehalfby - createdonbehalfby - powerbimashupparameter - createdonbehalfby + lk_aiplugingovernanceext_modifiedby + modifiedby + aiplugingovernanceext + modifiedby 0 - f3e3da02-f0ba-f011-bbd3-7c1e52365f30 + af4f9ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerbimashupparameter_modifiedby + lk_aiplugingovernanceext_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -453203,15 +502633,15 @@ false systemuserid systemuser - lk_powerbimashupparameter_modifiedby - modifiedby - powerbimashupparameter - modifiedby + lk_aiplugingovernanceext_modifiedonbehalfby + modifiedonbehalfby + aiplugingovernanceext + modifiedonbehalfby 0 - f9e3da02-f0ba-f011-bbd3-7c1e52365f30 + c14f9ee4-bdba-f011-bbd3-7c1e52365f30 false @@ -453221,9 +502651,9 @@ false true - lk_powerbimashupparameter_modifiedonbehalfby + user_aiplugingovernanceext None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -453257,27 +502687,27 @@ false systemuserid systemuser - lk_powerbimashupparameter_modifiedonbehalfby - modifiedonbehalfby - powerbimashupparameter - modifiedonbehalfby + user_aiplugingovernanceext + owninguser + aiplugingovernanceext + owninguser 0 - 0be4da02-f0ba-f011-bbd3-7c1e52365f30 + 32519ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_powerbimashupparameter + lk_aipluginoperationresponsetemplate_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -453311,27 +502741,27 @@ false systemuserid systemuser - user_powerbimashupparameter - owninguser - powerbimashupparameter - owninguser + lk_aipluginoperationresponsetemplate_createdby + createdby + aipluginoperationresponsetemplate + createdby 0 - b2871609-f0ba-f011-bbd3-7c1e52365f30 + 38519ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerbireport_createdby + lk_aipluginoperationresponsetemplate_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -453365,15 +502795,15 @@ false systemuserid systemuser - lk_powerbireport_createdby - createdby - powerbireport - createdby + lk_aipluginoperationresponsetemplate_createdonbehalfby + createdonbehalfby + aipluginoperationresponsetemplate + createdonbehalfby 0 - b8871609-f0ba-f011-bbd3-7c1e52365f30 + 3e519ee4-bdba-f011-bbd3-7c1e52365f30 false @@ -453383,9 +502813,9 @@ false true - lk_powerbireport_createdonbehalfby + lk_aipluginoperationresponsetemplate_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -453419,27 +502849,27 @@ false systemuserid systemuser - lk_powerbireport_createdonbehalfby - createdonbehalfby - powerbireport - createdonbehalfby + lk_aipluginoperationresponsetemplate_modifiedby + modifiedby + aipluginoperationresponsetemplate + modifiedby 0 - be871609-f0ba-f011-bbd3-7c1e52365f30 + 44519ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerbireport_modifiedby + lk_aipluginoperationresponsetemplate_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -453473,27 +502903,27 @@ false systemuserid systemuser - lk_powerbireport_modifiedby - modifiedby - powerbireport - modifiedby + lk_aipluginoperationresponsetemplate_modifiedonbehalfby + modifiedonbehalfby + aipluginoperationresponsetemplate + modifiedonbehalfby 0 - c4871609-f0ba-f011-bbd3-7c1e52365f30 + 56519ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_powerbireport_modifiedonbehalfby + user_aipluginoperationresponsetemplate None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -453527,25 +502957,25 @@ false systemuserid systemuser - lk_powerbireport_modifiedonbehalfby - modifiedonbehalfby - powerbireport - modifiedonbehalfby + user_aipluginoperationresponsetemplate + owninguser + aipluginoperationresponsetemplate + owninguser 0 - d6871609-f0ba-f011-bbd3-7c1e52365f30 + 3d539ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_powerbireport + lk_aiplugintitle_createdby None 1.0.0.0 OneToManyRelationship @@ -453581,27 +503011,27 @@ false systemuserid systemuser - user_powerbireport - owninguser - powerbireport - owninguser + lk_aiplugintitle_createdby + createdby + aiplugintitle + createdby 0 - 7bcdca10-f0ba-f011-bbd3-7c1e52365f30 + 44539ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerbireportapdx_createdby + lk_aiplugintitle_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -453635,15 +503065,15 @@ false systemuserid systemuser - lk_powerbireportapdx_createdby - createdby - powerbireportapdx - createdby + lk_aiplugintitle_createdonbehalfby + createdonbehalfby + aiplugintitle + createdonbehalfby 0 - 81cdca10-f0ba-f011-bbd3-7c1e52365f30 + 4b539ee4-bdba-f011-bbd3-7c1e52365f30 false @@ -453653,9 +503083,9 @@ false true - lk_powerbireportapdx_createdonbehalfby + lk_aiplugintitle_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -453689,27 +503119,27 @@ false systemuserid systemuser - lk_powerbireportapdx_createdonbehalfby - createdonbehalfby - powerbireportapdx - createdonbehalfby + lk_aiplugintitle_modifiedby + modifiedby + aiplugintitle + modifiedby 0 - 87cdca10-f0ba-f011-bbd3-7c1e52365f30 + 51539ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerbireportapdx_modifiedby + lk_aiplugintitle_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -453743,15 +503173,15 @@ false systemuserid systemuser - lk_powerbireportapdx_modifiedby - modifiedby - powerbireportapdx - modifiedby + lk_aiplugintitle_modifiedonbehalfby + modifiedonbehalfby + aiplugintitle + modifiedonbehalfby 0 - 8dcdca10-f0ba-f011-bbd3-7c1e52365f30 + c87aa9e4-b5ba-f011-bbd3-7c1e52365f30 false @@ -453761,18 +503191,18 @@ false true - lk_powerbireportapdx_modifiedonbehalfby + privilegecheckerlog_CheckedUser_systemuser None - 1.0 + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true false @@ -453781,9 +503211,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + RemoveLink NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -453797,36 +503227,36 @@ false systemuserid systemuser - lk_powerbireportapdx_modifiedonbehalfby - modifiedonbehalfby - powerbireportapdx - modifiedonbehalfby + privilegecheckerlog_CheckedUser_systemuser + checkeduser + privilegecheckerlog + CheckedUser 0 - 9fcdca10-f0ba-f011-bbd3-7c1e52365f30 + d57aa9e4-b5ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_powerbireportapdx + privilegecheckerlog_ImpersonatingUser_systemuser None - 1.0 + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true false @@ -453835,9 +503265,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + RemoveLink NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -453851,36 +503281,36 @@ false systemuserid systemuser - user_powerbireportapdx - owninguser - powerbireportapdx - owninguser + privilegecheckerlog_ImpersonatingUser_systemuser + impersonatinguser + privilegecheckerlog + ImpersonatingUser 0 - 9593fa23-f1ba-f011-bbd3-7c1e52365f30 + dc7aa9e4-b5ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_msdyn_fileupload_createdby + privilegecheckerlog_SupportingCaller_systemuser None - 1.0 + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true false @@ -453889,9 +503319,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + RemoveLink NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -453905,27 +503335,27 @@ false systemuserid systemuser - lk_msdyn_fileupload_createdby - createdby - msdyn_fileupload - createdby + privilegecheckerlog_SupportingCaller_systemuser + supportingcaller + privilegecheckerlog + SupportingCaller 0 - 9b93fa23-f1ba-f011-bbd3-7c1e52365f30 + fb3114e5-189a-487c-b94c-84a847d744a8 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_fileupload_createdonbehalfby + lk_routingruleitem_modifiedby None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -453959,27 +503389,27 @@ false systemuserid systemuser - lk_msdyn_fileupload_createdonbehalfby - createdonbehalfby - msdyn_fileupload - createdonbehalfby + lk_routingruleitem_modifiedby + modifiedby + routingruleitem + modifiedby 0 - a193fa23-f1ba-f011-bbd3-7c1e52365f30 + 6d9b4ee5-2e4b-4f17-8438-b9c6e0816cd9 false - true + false iscustomizable false - false + true true - lk_msdyn_fileupload_modifiedby + lk_isvconfig_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -454013,27 +503443,27 @@ false systemuserid systemuser - lk_msdyn_fileupload_modifiedby - modifiedby - msdyn_fileupload - modifiedby + lk_isvconfig_modifiedonbehalfby + modifiedonbehalfby + isvconfig + modifiedonbehalfby 0 - a793fa23-f1ba-f011-bbd3-7c1e52365f30 + 63e25ee5-817d-432c-9930-0f5ed829f440 false - true + false iscustomizable - true + false - false + true true - lk_msdyn_fileupload_modifiedonbehalfby + lk_report_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -454067,27 +503497,27 @@ false systemuserid systemuser - lk_msdyn_fileupload_modifiedonbehalfby + lk_report_modifiedonbehalfby modifiedonbehalfby - msdyn_fileupload + report modifiedonbehalfby 0 - b993fa23-f1ba-f011-bbd3-7c1e52365f30 + 674863e5-a4ba-4dc9-a299-79fcba6a5bb7 false - true + false iscustomizable false - false + true true - user_msdyn_fileupload + lk_reportbase_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -454121,15 +503551,15 @@ false systemuserid systemuser - user_msdyn_fileupload - owninguser - msdyn_fileupload - owninguser + lk_reportbase_modifiedby + modifiedby + report + modifiedby 0 - c44fe3b2-f1ba-f011-bbd3-7c1e52365f30 + 89807ae5-b4ba-f011-bbd3-7c1e52365f30 false @@ -454139,9 +503569,9 @@ false true - lk_appentitysearchview_createdby + lk_sharedlinksetting_createdby None - 1.0 + 1.69.0.0 OneToManyRelationship DoNotDisplay @@ -454175,15 +503605,15 @@ false systemuserid systemuser - lk_appentitysearchview_createdby + lk_sharedlinksetting_createdby createdby - appentitysearchview + sharedlinksetting createdby 0 - ca4fe3b2-f1ba-f011-bbd3-7c1e52365f30 + 8f807ae5-b4ba-f011-bbd3-7c1e52365f30 false @@ -454193,9 +503623,9 @@ false true - lk_appentitysearchview_createdonbehalfby + lk_sharedlinksetting_createdonbehalfby None - 1.0 + 1.69.0.0 OneToManyRelationship DoNotDisplay @@ -454229,15 +503659,15 @@ false systemuserid systemuser - lk_appentitysearchview_createdonbehalfby + lk_sharedlinksetting_createdonbehalfby createdonbehalfby - appentitysearchview + sharedlinksetting createdonbehalfby 0 - d04fe3b2-f1ba-f011-bbd3-7c1e52365f30 + 95807ae5-b4ba-f011-bbd3-7c1e52365f30 false @@ -454247,9 +503677,9 @@ false true - lk_appentitysearchview_modifiedby + lk_sharedlinksetting_modifiedby None - 1.0 + 1.69.0.0 OneToManyRelationship DoNotDisplay @@ -454283,15 +503713,15 @@ false systemuserid systemuser - lk_appentitysearchview_modifiedby + lk_sharedlinksetting_modifiedby modifiedby - appentitysearchview + sharedlinksetting modifiedby 0 - d64fe3b2-f1ba-f011-bbd3-7c1e52365f30 + 9b807ae5-b4ba-f011-bbd3-7c1e52365f30 false @@ -454301,9 +503731,9 @@ false true - lk_appentitysearchview_modifiedonbehalfby + lk_sharedlinksetting_modifiedonbehalfby None - 1.0 + 1.69.0.0 OneToManyRelationship DoNotDisplay @@ -454337,27 +503767,27 @@ false systemuserid systemuser - lk_appentitysearchview_modifiedonbehalfby + lk_sharedlinksetting_modifiedonbehalfby modifiedonbehalfby - appentitysearchview + sharedlinksetting modifiedonbehalfby 0 - 66eafdb8-f1ba-f011-bbd3-7c1e52365f30 + 95bcbae5-c090-4f0a-95c7-390783023cbd false - true + false iscustomizable - true + false - false - true - lk_mainfewshot_createdby + true + false + lk_importdata_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -454391,27 +503821,27 @@ false systemuserid systemuser - lk_mainfewshot_createdby - createdby - mainfewshot - createdby + lk_importdata_createdonbehalfby + createdonbehalfby + importdata + createdonbehalfby 0 - 6ceafdb8-f1ba-f011-bbd3-7c1e52365f30 + c5c1bae5-8924-47ab-b33a-18b70a81bbab false - true + false iscustomizable - true + false - false + true true - lk_mainfewshot_createdonbehalfby + lk_processtriggerbase_createdonbehalfby None - 1.0.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -454445,25 +503875,25 @@ false systemuserid systemuser - lk_mainfewshot_createdonbehalfby + lk_processtriggerbase_createdonbehalfby createdonbehalfby - mainfewshot + processtrigger createdonbehalfby 0 - 72eafdb8-f1ba-f011-bbd3-7c1e52365f30 + 06885ee6-c0ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_mainfewshot_modifiedby + lk_bot_createdby None 1.0.0.0 OneToManyRelationship @@ -454499,15 +503929,15 @@ false systemuserid systemuser - lk_mainfewshot_modifiedby - modifiedby - mainfewshot - modifiedby + lk_bot_createdby + createdby + bot + createdby 0 - 78eafdb8-f1ba-f011-bbd3-7c1e52365f30 + 0c885ee6-c0ba-f011-bbd3-7c1e52365f30 false @@ -454517,7 +503947,7 @@ false true - lk_mainfewshot_modifiedonbehalfby + lk_bot_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -454553,25 +503983,25 @@ false systemuserid systemuser - lk_mainfewshot_modifiedonbehalfby - modifiedonbehalfby - mainfewshot - modifiedonbehalfby + lk_bot_createdonbehalfby + createdonbehalfby + bot + createdonbehalfby 0 - a8ebfdb8-f1ba-f011-bbd3-7c1e52365f30 + 12885ee6-c0ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_makerfewshot_createdby + lk_bot_modifiedby None 1.0.0.0 OneToManyRelationship @@ -454607,15 +504037,15 @@ false systemuserid systemuser - lk_makerfewshot_createdby - createdby - makerfewshot - createdby + lk_bot_modifiedby + modifiedby + bot + modifiedby 0 - b0ebfdb8-f1ba-f011-bbd3-7c1e52365f30 + 18885ee6-c0ba-f011-bbd3-7c1e52365f30 false @@ -454625,7 +504055,7 @@ false true - lk_makerfewshot_createdonbehalfby + lk_bot_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -454661,25 +504091,25 @@ false systemuserid systemuser - lk_makerfewshot_createdonbehalfby - createdonbehalfby - makerfewshot - createdonbehalfby + lk_bot_modifiedonbehalfby + modifiedonbehalfby + bot + modifiedonbehalfby 0 - b7ebfdb8-f1ba-f011-bbd3-7c1e52365f30 + 2a885ee6-c0ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_makerfewshot_modifiedby + user_bot None 1.0.0.0 OneToManyRelationship @@ -454715,25 +504145,25 @@ false systemuserid systemuser - lk_makerfewshot_modifiedby - modifiedby - makerfewshot - modifiedby + user_bot + owninguser + bot + owninguser 0 - beebfdb8-f1ba-f011-bbd3-7c1e52365f30 + 548a5ee6-c0ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_makerfewshot_modifiedonbehalfby + lk_botcomponent_createdby None 1.0.0.0 OneToManyRelationship @@ -454769,69 +504199,15 @@ false systemuserid systemuser - lk_makerfewshot_modifiedonbehalfby - modifiedonbehalfby - makerfewshot - modifiedonbehalfby - - 0 - - - 5decfdb8-f1ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_nlsqregistration_createdby - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_nlsqregistration_createdby + lk_botcomponent_createdby createdby - nlsqregistration + botcomponent createdby 0 - 63ecfdb8-f1ba-f011-bbd3-7c1e52365f30 + 5b8a5ee6-c0ba-f011-bbd3-7c1e52365f30 false @@ -454841,9 +504217,9 @@ false true - lk_nlsqregistration_createdonbehalfby + lk_botcomponent_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -454877,27 +504253,27 @@ false systemuserid systemuser - lk_nlsqregistration_createdonbehalfby + lk_botcomponent_createdonbehalfby createdonbehalfby - nlsqregistration + botcomponent createdonbehalfby 0 - 69ecfdb8-f1ba-f011-bbd3-7c1e52365f30 + 638a5ee6-c0ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_nlsqregistration_modifiedby + lk_botcomponent_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -454931,15 +504307,15 @@ false systemuserid systemuser - lk_nlsqregistration_modifiedby + lk_botcomponent_modifiedby modifiedby - nlsqregistration + botcomponent modifiedby 0 - 6fecfdb8-f1ba-f011-bbd3-7c1e52365f30 + 698a5ee6-c0ba-f011-bbd3-7c1e52365f30 false @@ -454949,9 +504325,9 @@ false true - lk_nlsqregistration_modifiedonbehalfby + lk_botcomponent_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -454985,27 +504361,27 @@ false systemuserid systemuser - lk_nlsqregistration_modifiedonbehalfby + lk_botcomponent_modifiedonbehalfby modifiedonbehalfby - nlsqregistration + botcomponent modifiedonbehalfby 0 - 81ecfdb8-f1ba-f011-bbd3-7c1e52365f30 + 7b8a5ee6-c0ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_nlsqregistration + user_botcomponent None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -455039,27 +504415,27 @@ false systemuserid systemuser - user_nlsqregistration + user_botcomponent owninguser - nlsqregistration + botcomponent owninguser 0 - faa4f9be-f1ba-f011-bbd3-7c1e52365f30 + 70a269e6-e5ca-46d0-8dfd-d85672e69270 false - true + false iscustomizable - true + false - false + true true - lk_recentlyused_createdby + workflow_dependency_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -455093,15 +504469,15 @@ false systemuserid systemuser - lk_recentlyused_createdby - createdby - recentlyused - createdby + workflow_dependency_modifiedonbehalfby + modifiedonbehalfby + workflowdependency + modifiedonbehalfby 0 - 00a5f9be-f1ba-f011-bbd3-7c1e52365f30 + d2b67de6-edba-f011-bbd3-7c1e52365f30 false @@ -455111,9 +504487,9 @@ false true - lk_recentlyused_createdonbehalfby + lk_msdyn_virtualtablecolumncandidate_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -455147,15 +504523,15 @@ false systemuserid systemuser - lk_recentlyused_createdonbehalfby - createdonbehalfby - recentlyused - createdonbehalfby + lk_msdyn_virtualtablecolumncandidate_createdby + createdby + msdyn_virtualtablecolumncandidate + createdby 0 - 06a5f9be-f1ba-f011-bbd3-7c1e52365f30 + dab67de6-edba-f011-bbd3-7c1e52365f30 false @@ -455165,9 +504541,9 @@ false true - lk_recentlyused_modifiedby + lk_msdyn_virtualtablecolumncandidate_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -455201,15 +504577,15 @@ false systemuserid systemuser - lk_recentlyused_modifiedby - modifiedby - recentlyused - modifiedby + lk_msdyn_virtualtablecolumncandidate_createdonbehalfby + createdonbehalfby + msdyn_virtualtablecolumncandidate + createdonbehalfby 0 - 0ca5f9be-f1ba-f011-bbd3-7c1e52365f30 + e1b67de6-edba-f011-bbd3-7c1e52365f30 false @@ -455219,9 +504595,9 @@ false true - lk_recentlyused_modifiedonbehalfby + lk_msdyn_virtualtablecolumncandidate_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -455255,27 +504631,27 @@ false systemuserid systemuser - lk_recentlyused_modifiedonbehalfby - modifiedonbehalfby - recentlyused - modifiedonbehalfby + lk_msdyn_virtualtablecolumncandidate_modifiedby + modifiedby + msdyn_virtualtablecolumncandidate + modifiedby 0 - 1ea5f9be-f1ba-f011-bbd3-7c1e52365f30 + ddca9de6-bd55-4bc5-90b7-ce41372aa369 false - true + false iscustomizable - true + false - false - true - user_recentlyused + true + false + lk_relationshiprolemap_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -455309,15 +504685,15 @@ false systemuserid systemuser - user_recentlyused - owninguser - recentlyused - owninguser + lk_relationshiprolemap_modifiedonbehalfby + modifiedonbehalfby + relationshiprolemap + modifiedonbehalfby 0 - cda5f9be-f1ba-f011-bbd3-7c1e52365f30 + 02fe9fe6-aaba-f011-bbd3-7c1e52365f30 false @@ -455327,7 +504703,7 @@ false true - lk_searchattributesettings_createdby + lk_exportsolutionupload_createdby None 1.0.0.0 OneToManyRelationship @@ -455363,15 +504739,15 @@ false systemuserid systemuser - lk_searchattributesettings_createdby + lk_exportsolutionupload_createdby createdby - searchattributesettings + exportsolutionupload createdby 0 - d6a5f9be-f1ba-f011-bbd3-7c1e52365f30 + 08fe9fe6-aaba-f011-bbd3-7c1e52365f30 false @@ -455381,7 +504757,7 @@ false true - lk_searchattributesettings_createdonbehalfby + lk_exportsolutionupload_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -455417,15 +504793,15 @@ false systemuserid systemuser - lk_searchattributesettings_createdonbehalfby + lk_exportsolutionupload_createdonbehalfby createdonbehalfby - searchattributesettings + exportsolutionupload createdonbehalfby 0 - dda5f9be-f1ba-f011-bbd3-7c1e52365f30 + 0efe9fe6-aaba-f011-bbd3-7c1e52365f30 false @@ -455435,7 +504811,7 @@ false true - lk_searchattributesettings_modifiedby + lk_exportsolutionupload_modifiedby None 1.0.0.0 OneToManyRelationship @@ -455471,15 +504847,15 @@ false systemuserid systemuser - lk_searchattributesettings_modifiedby + lk_exportsolutionupload_modifiedby modifiedby - searchattributesettings + exportsolutionupload modifiedby 0 - e5a5f9be-f1ba-f011-bbd3-7c1e52365f30 + 14fe9fe6-aaba-f011-bbd3-7c1e52365f30 false @@ -455489,7 +504865,7 @@ false true - lk_searchattributesettings_modifiedonbehalfby + lk_exportsolutionupload_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -455525,15 +504901,15 @@ false systemuserid systemuser - lk_searchattributesettings_modifiedonbehalfby + lk_exportsolutionupload_modifiedonbehalfby modifiedonbehalfby - searchattributesettings + exportsolutionupload modifiedonbehalfby 0 - f3a6f9be-f1ba-f011-bbd3-7c1e52365f30 + 26fe9fe6-aaba-f011-bbd3-7c1e52365f30 false @@ -455543,7 +504919,7 @@ false true - lk_searchcustomanalyzer_createdby + user_exportsolutionupload None 1.0.0.0 OneToManyRelationship @@ -455579,30 +504955,30 @@ false systemuserid systemuser - lk_searchcustomanalyzer_createdby - createdby - searchcustomanalyzer - createdby + user_exportsolutionupload + owninguser + exportsolutionupload + owninguser 0 - faa6f9be-f1ba-f011-bbd3-7c1e52365f30 + 2461cae6-81a8-428d-8aa2-b8ed41f93e3b false - true + false iscustomizable - true + false - false + true true - lk_searchcustomanalyzer_createdonbehalfby + multientitysearch_modifiedonbehalfby None - 1.0.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -455633,27 +505009,27 @@ false systemuserid systemuser - lk_searchcustomanalyzer_createdonbehalfby - createdonbehalfby - searchcustomanalyzer - createdonbehalfby + multientitysearch_modifiedonbehalfby + modifiedonbehalfby + multientitysearch + modifiedonbehalfby 0 - 02a7f9be-f1ba-f011-bbd3-7c1e52365f30 + 83470ae7-8f40-4524-8fea-4f05f5db2c68 false - true + false iscustomizable - true + false - false + true true - lk_searchcustomanalyzer_modifiedby + lk_emailsignaturebase_createdby None - 1.0.0.0 + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -455687,27 +505063,27 @@ false systemuserid systemuser - lk_searchcustomanalyzer_modifiedby - modifiedby - searchcustomanalyzer - modifiedby + lk_emailsignaturebase_createdby + createdby + emailsignature + createdby 0 - 0ba7f9be-f1ba-f011-bbd3-7c1e52365f30 + 603f32e7-1955-4c87-a6d0-128483acabc3 false - true + false iscustomizable - true + false - false - true - lk_searchcustomanalyzer_modifiedonbehalfby - None - 1.0.0.0 + true + false + system_user_quotas + ParentChild + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -455741,15 +505117,15 @@ false systemuserid systemuser - lk_searchcustomanalyzer_modifiedonbehalfby - modifiedonbehalfby - searchcustomanalyzer - modifiedonbehalfby + system_user_quotas + salespersonid + userfiscalcalendar + salespersonid - 0 + 2 - 2fa8f9be-f1ba-f011-bbd3-7c1e52365f30 + 6a842fe8-b2ba-f011-bbd3-7c1e52365f30 false @@ -455759,9 +505135,9 @@ false true - lk_searchrelationshipsettings_createdby + lk_synapsedatabase_createdby None - 1.0.0.0 + 1.0.0.39 OneToManyRelationship DoNotDisplay @@ -455795,15 +505171,15 @@ false systemuserid systemuser - lk_searchrelationshipsettings_createdby + lk_synapsedatabase_createdby createdby - searchrelationshipsettings + synapsedatabase createdby 0 - 35a8f9be-f1ba-f011-bbd3-7c1e52365f30 + 70842fe8-b2ba-f011-bbd3-7c1e52365f30 false @@ -455813,9 +505189,9 @@ false true - lk_searchrelationshipsettings_createdonbehalfby + lk_synapsedatabase_createdonbehalfby None - 1.0.0.0 + 1.0.0.39 OneToManyRelationship DoNotDisplay @@ -455849,69 +505225,15 @@ false systemuserid systemuser - lk_searchrelationshipsettings_createdonbehalfby + lk_synapsedatabase_createdonbehalfby createdonbehalfby - searchrelationshipsettings + synapsedatabase createdonbehalfby 0 - 3ba8f9be-f1ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_searchrelationshipsettings_modifiedby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_searchrelationshipsettings_modifiedby - modifiedby - searchrelationshipsettings - modifiedby - - 0 - - - 41a8f9be-f1ba-f011-bbd3-7c1e52365f30 + 76842fe8-b2ba-f011-bbd3-7c1e52365f30 false @@ -455921,9 +505243,9 @@ false true - lk_searchrelationshipsettings_modifiedonbehalfby + lk_synapsedatabase_modifiedby None - 1.0.0.0 + 1.0.0.39 OneToManyRelationship DoNotDisplay @@ -455957,15 +505279,15 @@ false systemuserid systemuser - lk_searchrelationshipsettings_modifiedonbehalfby - modifiedonbehalfby - searchrelationshipsettings - modifiedonbehalfby + lk_synapsedatabase_modifiedby + modifiedby + synapsedatabase + modifiedby 0 - d9a8f9be-f1ba-f011-bbd3-7c1e52365f30 + 7c842fe8-b2ba-f011-bbd3-7c1e52365f30 false @@ -455975,9 +505297,9 @@ false true - lk_searchresultscache_createdby + lk_synapsedatabase_modifiedonbehalfby None - 1.0.0.0 + 1.0.0.39 OneToManyRelationship DoNotDisplay @@ -456011,15 +505333,15 @@ false systemuserid systemuser - lk_searchresultscache_createdby - createdby - searchresultscache - createdby + lk_synapsedatabase_modifiedonbehalfby + modifiedonbehalfby + synapsedatabase + modifiedonbehalfby 0 - dfa8f9be-f1ba-f011-bbd3-7c1e52365f30 + 8e842fe8-b2ba-f011-bbd3-7c1e52365f30 false @@ -456029,9 +505351,9 @@ false true - lk_searchresultscache_createdonbehalfby + user_synapsedatabase None - 1.0.0.0 + 1.0.0.39 OneToManyRelationship DoNotDisplay @@ -456065,27 +505387,27 @@ false systemuserid systemuser - lk_searchresultscache_createdonbehalfby - createdonbehalfby - searchresultscache - createdonbehalfby + user_synapsedatabase + owninguser + synapsedatabase + owninguser 0 - e5a8f9be-f1ba-f011-bbd3-7c1e52365f30 + 6a2646e8-854e-4daf-96b3-35e04baa05bb false - true + false iscustomizable true - false + true true - lk_searchresultscache_modifiedby + lk_systemuserbase_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -456119,27 +505441,27 @@ false systemuserid systemuser - lk_searchresultscache_modifiedby - modifiedby - searchresultscache - modifiedby + lk_systemuserbase_createdby + createdby + systemuser + createdby 0 - eba8f9be-f1ba-f011-bbd3-7c1e52365f30 + 253bbde8-fb68-4a16-98f5-db831ea57b6e false - true + false iscustomizable - true + false - false - true - lk_searchresultscache_modifiedonbehalfby + true + false + lk_picklistmapping_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -456173,30 +505495,30 @@ false systemuserid systemuser - lk_searchresultscache_modifiedonbehalfby - modifiedonbehalfby - searchresultscache - modifiedonbehalfby + lk_picklistmapping_createdby + createdby + picklistmapping + createdby 0 - 72a9f9be-f1ba-f011-bbd3-7c1e52365f30 + e2d0cfe8-ca52-e411-80c6-00155d206d09 false - true + false iscustomizable true - false + true true - lk_textdatarecordsindexingstatus_createdby + lk_theme_createdby None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -456227,30 +505549,30 @@ false systemuserid systemuser - lk_textdatarecordsindexingstatus_createdby + lk_theme_createdby createdby - textdatarecordsindexingstatus + theme createdby 0 - 78a9f9be-f1ba-f011-bbd3-7c1e52365f30 + e8d0cfe8-ca52-e411-80c6-00155d206d09 false - true + false iscustomizable true - false + true true - lk_textdatarecordsindexingstatus_createdonbehalfby + lk_theme_createdonbehalfby None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -456281,30 +505603,30 @@ false systemuserid systemuser - lk_textdatarecordsindexingstatus_createdonbehalfby + lk_theme_createdonbehalfby createdonbehalfby - textdatarecordsindexingstatus + theme createdonbehalfby 0 - 7ea9f9be-f1ba-f011-bbd3-7c1e52365f30 + eed0cfe8-ca52-e411-80c6-00155d206d09 false - true + false iscustomizable true - false + true true - lk_textdatarecordsindexingstatus_modifiedby + lk_theme_modifiedby None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -456335,30 +505657,30 @@ false systemuserid systemuser - lk_textdatarecordsindexingstatus_modifiedby + lk_theme_modifiedby modifiedby - textdatarecordsindexingstatus + theme modifiedby 0 - 84a9f9be-f1ba-f011-bbd3-7c1e52365f30 + f4d0cfe8-ca52-e411-80c6-00155d206d09 false - true + false iscustomizable true - false + true true - lk_textdatarecordsindexingstatus_modifiedonbehalfby + lk_theme_modifiedonbehalfby None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -456389,81 +505711,27 @@ false systemuserid systemuser - lk_textdatarecordsindexingstatus_modifiedonbehalfby + lk_theme_modifiedonbehalfby modifiedonbehalfby - textdatarecordsindexingstatus + theme modifiedonbehalfby 0 - be5716c5-f1ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_viewasexamplequestion_createdby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_viewasexamplequestion_createdby - createdby - viewasexamplequestion - createdby - - 0 - - - c45716c5-f1ba-f011-bbd3-7c1e52365f30 + 1499f5e8-fa35-4427-89dd-40a810b9790c false - true + false iscustomizable - true + false - false - true - lk_viewasexamplequestion_createdonbehalfby + true + false + lk_sdkmessagepair_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -456497,27 +505765,27 @@ false systemuserid systemuser - lk_viewasexamplequestion_createdonbehalfby + lk_sdkmessagepair_createdonbehalfby createdonbehalfby - viewasexamplequestion + sdkmessagepair createdonbehalfby 0 - ca5716c5-f1ba-f011-bbd3-7c1e52365f30 + af5d32e9-bffd-4f9e-a21e-c50f8501a7ea false - true + false iscustomizable true - false + true true - lk_viewasexamplequestion_modifiedby + user_parent_user None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -456547,19 +505815,19 @@ - false + true false systemuserid systemuser - lk_viewasexamplequestion_modifiedby - modifiedby - viewasexamplequestion - modifiedby + user_parent_user + parentsystemuserid + systemuser + parentsystemuserid 0 - d05716c5-f1ba-f011-bbd3-7c1e52365f30 + 0a8a5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -456569,9 +505837,9 @@ false true - lk_viewasexamplequestion_modifiedonbehalfby + lk_msdyn_aievaluationconfiguration_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -456605,15 +505873,15 @@ false systemuserid systemuser - lk_viewasexamplequestion_modifiedonbehalfby - modifiedonbehalfby - viewasexamplequestion - modifiedonbehalfby + lk_msdyn_aievaluationconfiguration_createdby + createdby + msdyn_aievaluationconfiguration + createdby 0 - 755816c5-f1ba-f011-bbd3-7c1e52365f30 + 108a5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -456623,9 +505891,9 @@ false true - lk_copilotexamplequestion_createdby + lk_msdyn_aievaluationconfiguration_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -456659,15 +505927,15 @@ false systemuserid systemuser - lk_copilotexamplequestion_createdby - createdby - copilotexamplequestion - createdby + lk_msdyn_aievaluationconfiguration_createdonbehalfby + createdonbehalfby + msdyn_aievaluationconfiguration + createdonbehalfby 0 - 7b5816c5-f1ba-f011-bbd3-7c1e52365f30 + 168a5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -456677,9 +505945,9 @@ false true - lk_copilotexamplequestion_createdonbehalfby + lk_msdyn_aievaluationconfiguration_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -456713,15 +505981,15 @@ false systemuserid systemuser - lk_copilotexamplequestion_createdonbehalfby - createdonbehalfby - copilotexamplequestion - createdonbehalfby + lk_msdyn_aievaluationconfiguration_modifiedby + modifiedby + msdyn_aievaluationconfiguration + modifiedby 0 - 815816c5-f1ba-f011-bbd3-7c1e52365f30 + 1c8a5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -456731,9 +505999,9 @@ false true - lk_copilotexamplequestion_modifiedby + lk_msdyn_aievaluationconfiguration_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -456767,15 +506035,15 @@ false systemuserid systemuser - lk_copilotexamplequestion_modifiedby - modifiedby - copilotexamplequestion - modifiedby + lk_msdyn_aievaluationconfiguration_modifiedonbehalfby + modifiedonbehalfby + msdyn_aievaluationconfiguration + modifiedonbehalfby 0 - 875816c5-f1ba-f011-bbd3-7c1e52365f30 + 2e8a5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -456785,9 +506053,9 @@ false true - lk_copilotexamplequestion_modifiedonbehalfby + user_msdyn_aievaluationconfiguration None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -456821,15 +506089,15 @@ false systemuserid systemuser - lk_copilotexamplequestion_modifiedonbehalfby - modifiedonbehalfby - copilotexamplequestion - modifiedonbehalfby + user_msdyn_aievaluationconfiguration + owninguser + msdyn_aievaluationconfiguration + owninguser 0 - 275916c5-f1ba-f011-bbd3-7c1e52365f30 + a48b5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -456839,9 +506107,9 @@ false true - lk_copilotglossaryterm_createdby + lk_msdyn_aievaluationmetric_createdby None - 1.0.0.90 + 1.0 OneToManyRelationship DoNotDisplay @@ -456875,15 +506143,15 @@ false systemuserid systemuser - lk_copilotglossaryterm_createdby + lk_msdyn_aievaluationmetric_createdby createdby - copilotglossaryterm + msdyn_aievaluationmetric createdby 0 - 2d5916c5-f1ba-f011-bbd3-7c1e52365f30 + aa8b5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -456893,9 +506161,9 @@ false true - lk_copilotglossaryterm_createdonbehalfby + lk_msdyn_aievaluationmetric_createdonbehalfby None - 1.0.0.90 + 1.0 OneToManyRelationship DoNotDisplay @@ -456929,15 +506197,15 @@ false systemuserid systemuser - lk_copilotglossaryterm_createdonbehalfby + lk_msdyn_aievaluationmetric_createdonbehalfby createdonbehalfby - copilotglossaryterm + msdyn_aievaluationmetric createdonbehalfby 0 - 335916c5-f1ba-f011-bbd3-7c1e52365f30 + b08b5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -456947,9 +506215,9 @@ false true - lk_copilotglossaryterm_modifiedby + lk_msdyn_aievaluationmetric_modifiedby None - 1.0.0.90 + 1.0 OneToManyRelationship DoNotDisplay @@ -456983,15 +506251,15 @@ false systemuserid systemuser - lk_copilotglossaryterm_modifiedby + lk_msdyn_aievaluationmetric_modifiedby modifiedby - copilotglossaryterm + msdyn_aievaluationmetric modifiedby 0 - 395916c5-f1ba-f011-bbd3-7c1e52365f30 + b68b5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -457001,9 +506269,9 @@ false true - lk_copilotglossaryterm_modifiedonbehalfby + lk_msdyn_aievaluationmetric_modifiedonbehalfby None - 1.0.0.90 + 1.0 OneToManyRelationship DoNotDisplay @@ -457037,69 +506305,15 @@ false systemuserid systemuser - lk_copilotglossaryterm_modifiedonbehalfby + lk_msdyn_aievaluationmetric_modifiedonbehalfby modifiedonbehalfby - copilotglossaryterm + msdyn_aievaluationmetric modifiedonbehalfby 0 - 4b5916c5-f1ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - user_copilotglossaryterm - None - 1.0.0.90 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - user_copilotglossaryterm - owninguser - copilotglossaryterm - owninguser - - 0 - - - bbcdffcb-f1ba-f011-bbd3-7c1e52365f30 + 2c8d5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -457109,9 +506323,9 @@ false true - lk_copilotsynonyms_createdby + lk_msdyn_aievaluationrun_createdby None - 1.0.0.90 + 1.0 OneToManyRelationship DoNotDisplay @@ -457145,15 +506359,15 @@ false systemuserid systemuser - lk_copilotsynonyms_createdby + lk_msdyn_aievaluationrun_createdby createdby - copilotsynonyms + msdyn_aievaluationrun createdby 0 - c1cdffcb-f1ba-f011-bbd3-7c1e52365f30 + 328d5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -457163,9 +506377,9 @@ false true - lk_copilotsynonyms_createdonbehalfby + lk_msdyn_aievaluationrun_createdonbehalfby None - 1.0.0.90 + 1.0 OneToManyRelationship DoNotDisplay @@ -457199,15 +506413,15 @@ false systemuserid systemuser - lk_copilotsynonyms_createdonbehalfby + lk_msdyn_aievaluationrun_createdonbehalfby createdonbehalfby - copilotsynonyms + msdyn_aievaluationrun createdonbehalfby 0 - c7cdffcb-f1ba-f011-bbd3-7c1e52365f30 + 388d5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -457217,9 +506431,9 @@ false true - lk_copilotsynonyms_modifiedby + lk_msdyn_aievaluationrun_modifiedby None - 1.0.0.90 + 1.0 OneToManyRelationship DoNotDisplay @@ -457253,15 +506467,15 @@ false systemuserid systemuser - lk_copilotsynonyms_modifiedby + lk_msdyn_aievaluationrun_modifiedby modifiedby - copilotsynonyms + msdyn_aievaluationrun modifiedby 0 - cdcdffcb-f1ba-f011-bbd3-7c1e52365f30 + 3e8d5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -457271,9 +506485,9 @@ false true - lk_copilotsynonyms_modifiedonbehalfby + lk_msdyn_aievaluationrun_modifiedonbehalfby None - 1.0.0.90 + 1.0 OneToManyRelationship DoNotDisplay @@ -457307,15 +506521,15 @@ false systemuserid systemuser - lk_copilotsynonyms_modifiedonbehalfby + lk_msdyn_aievaluationrun_modifiedonbehalfby modifiedonbehalfby - copilotsynonyms + msdyn_aievaluationrun modifiedonbehalfby 0 - dfcdffcb-f1ba-f011-bbd3-7c1e52365f30 + 508d5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -457325,9 +506539,9 @@ false true - user_copilotsynonyms + user_msdyn_aievaluationrun None - 1.0.0.90 + 1.0 OneToManyRelationship DoNotDisplay @@ -457361,27 +506575,27 @@ false systemuserid systemuser - user_copilotsynonyms + user_msdyn_aievaluationrun owninguser - copilotsynonyms + msdyn_aievaluationrun owninguser 0 - 21fcb96a-f2ba-f011-bbd3-7c1e52365f30 + 178f5ce9-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerpagecomponent_createdby + lk_msdyn_aioptimization_createdby None - 1.0.2207.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -457415,15 +506629,15 @@ false systemuserid systemuser - lk_powerpagecomponent_createdby + lk_msdyn_aioptimization_createdby createdby - powerpagecomponent + msdyn_aioptimization createdby 0 - 28fcb96a-f2ba-f011-bbd3-7c1e52365f30 + 1d8f5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -457433,9 +506647,9 @@ false true - lk_powerpagecomponent_createdonbehalfby + lk_msdyn_aioptimization_createdonbehalfby None - 1.0.2207.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -457469,27 +506683,27 @@ false systemuserid systemuser - lk_powerpagecomponent_createdonbehalfby + lk_msdyn_aioptimization_createdonbehalfby createdonbehalfby - powerpagecomponent + msdyn_aioptimization createdonbehalfby 0 - 2efcb96a-f2ba-f011-bbd3-7c1e52365f30 + 238f5ce9-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerpagecomponent_modifiedby + lk_msdyn_aioptimization_modifiedby None - 1.0.2207.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -457523,15 +506737,15 @@ false systemuserid systemuser - lk_powerpagecomponent_modifiedby + lk_msdyn_aioptimization_modifiedby modifiedby - powerpagecomponent + msdyn_aioptimization modifiedby 0 - 34fcb96a-f2ba-f011-bbd3-7c1e52365f30 + 298f5ce9-bfba-f011-bbd3-7c1e52365f30 false @@ -457541,9 +506755,9 @@ false true - lk_powerpagecomponent_modifiedonbehalfby + lk_msdyn_aioptimization_modifiedonbehalfby None - 1.0.2207.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -457577,27 +506791,27 @@ false systemuserid systemuser - lk_powerpagecomponent_modifiedonbehalfby + lk_msdyn_aioptimization_modifiedonbehalfby modifiedonbehalfby - powerpagecomponent + msdyn_aioptimization modifiedonbehalfby 0 - 46fcb96a-f2ba-f011-bbd3-7c1e52365f30 + 3b8f5ce9-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_powerpagecomponent + user_msdyn_aioptimization None - 1.0.2207.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -457631,27 +506845,27 @@ false systemuserid systemuser - user_powerpagecomponent + user_msdyn_aioptimization owninguser - powerpagecomponent + msdyn_aioptimization owninguser 0 - 75fdb96a-f2ba-f011-bbd3-7c1e52365f30 + 5491d2e9-3843-45ec-80af-bb3d319a2974 false - true + false iscustomizable false - false - true - lk_powerpagesite_createdby + true + false + lk_wizardpage_createdby None - 1.0.2207.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -457685,27 +506899,27 @@ false systemuserid systemuser - lk_powerpagesite_createdby + lk_wizardpage_createdby createdby - powerpagesite + wizardpage createdby 0 - 7bfdb96a-f2ba-f011-bbd3-7c1e52365f30 + 09db11ea-7e9b-11dd-94cd-00188b01dce6 false - true + false iscustomizable - true + false - false + true true - lk_powerpagesite_createdonbehalfby + lk_solution_createdby None - 1.0.2207.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -457739,30 +506953,30 @@ false systemuserid systemuser - lk_powerpagesite_createdonbehalfby - createdonbehalfby - powerpagesite - createdonbehalfby + lk_solution_createdby + createdby + solution + createdby 0 - 82fdb96a-f2ba-f011-bbd3-7c1e52365f30 + 7f6817ea-909f-4555-ba20-60c3d492723c false - true + false iscustomizable false - false - true - lk_powerpagesite_modifiedby + true + false + lk_knowledgesearchmodel_modifiedby None - 1.0.2207.1 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -457793,15 +507007,15 @@ false systemuserid systemuser - lk_powerpagesite_modifiedby + lk_knowledgesearchmodel_modifiedby modifiedby - powerpagesite + knowledgesearchmodel modifiedby 0 - 88fdb96a-f2ba-f011-bbd3-7c1e52365f30 + 79182aea-baba-f011-bbd3-7c1e52365f30 false @@ -457811,9 +507025,9 @@ false true - lk_powerpagesite_modifiedonbehalfby + lk_flowcapacityassignment_createdby None - 1.0.2207.1 + 1.7.0.0 OneToManyRelationship DoNotDisplay @@ -457847,27 +507061,27 @@ false systemuserid systemuser - lk_powerpagesite_modifiedonbehalfby - modifiedonbehalfby - powerpagesite - modifiedonbehalfby + lk_flowcapacityassignment_createdby + createdby + flowcapacityassignment + createdby 0 - 9bfdb96a-f2ba-f011-bbd3-7c1e52365f30 + 7f182aea-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_powerpagesite + lk_flowcapacityassignment_createdonbehalfby None - 1.0.2207.1 + 1.7.0.0 OneToManyRelationship DoNotDisplay @@ -457901,27 +507115,27 @@ false systemuserid systemuser - user_powerpagesite - owninguser - powerpagesite - owninguser + lk_flowcapacityassignment_createdonbehalfby + createdonbehalfby + flowcapacityassignment + createdonbehalfby 0 - 703fe170-f2ba-f011-bbd3-7c1e52365f30 + 85182aea-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerpagesitelanguage_createdby + lk_flowcapacityassignment_modifiedby None - 1.0.2207.1 + 1.7.0.0 OneToManyRelationship DoNotDisplay @@ -457955,15 +507169,15 @@ false systemuserid systemuser - lk_powerpagesitelanguage_createdby - createdby - powerpagesitelanguage - createdby + lk_flowcapacityassignment_modifiedby + modifiedby + flowcapacityassignment + modifiedby 0 - 763fe170-f2ba-f011-bbd3-7c1e52365f30 + 8b182aea-baba-f011-bbd3-7c1e52365f30 false @@ -457973,9 +507187,9 @@ false true - lk_powerpagesitelanguage_createdonbehalfby + lk_flowcapacityassignment_modifiedonbehalfby None - 1.0.2207.1 + 1.7.0.0 OneToManyRelationship DoNotDisplay @@ -458009,27 +507223,27 @@ false systemuserid systemuser - lk_powerpagesitelanguage_createdonbehalfby - createdonbehalfby - powerpagesitelanguage - createdonbehalfby + lk_flowcapacityassignment_modifiedonbehalfby + modifiedonbehalfby + flowcapacityassignment + modifiedonbehalfby 0 - 7c3fe170-f2ba-f011-bbd3-7c1e52365f30 + 9d182aea-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerpagesitelanguage_modifiedby + user_flowcapacityassignment None - 1.0.2207.1 + 1.7.0.0 OneToManyRelationship DoNotDisplay @@ -458063,15 +507277,15 @@ false systemuserid systemuser - lk_powerpagesitelanguage_modifiedby - modifiedby - powerpagesitelanguage - modifiedby + user_flowcapacityassignment + owninguser + flowcapacityassignment + owninguser 0 - 823fe170-f2ba-f011-bbd3-7c1e52365f30 + 4b192aea-baba-f011-bbd3-7c1e52365f30 false @@ -458081,9 +507295,9 @@ false true - lk_powerpagesitelanguage_modifiedonbehalfby + lk_flowcredentialapplication_createdby None - 1.0.2207.1 + 1.7.11.0 OneToManyRelationship DoNotDisplay @@ -458117,27 +507331,27 @@ false systemuserid systemuser - lk_powerpagesitelanguage_modifiedonbehalfby - modifiedonbehalfby - powerpagesitelanguage - modifiedonbehalfby + lk_flowcredentialapplication_createdby + createdby + flowcredentialapplication + createdby 0 - 943fe170-f2ba-f011-bbd3-7c1e52365f30 + 51192aea-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_powerpagesitelanguage + lk_flowcredentialapplication_createdonbehalfby None - 1.0.2207.1 + 1.7.11.0 OneToManyRelationship DoNotDisplay @@ -458171,27 +507385,27 @@ false systemuserid systemuser - user_powerpagesitelanguage - owninguser - powerpagesitelanguage - owninguser + lk_flowcredentialapplication_createdonbehalfby + createdonbehalfby + flowcredentialapplication + createdonbehalfby 0 - 4641e170-f2ba-f011-bbd3-7c1e52365f30 + 57192aea-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerpagesitepublished_createdby + lk_flowcredentialapplication_modifiedby None - 1.0.2207.1 + 1.7.11.0 OneToManyRelationship DoNotDisplay @@ -458225,15 +507439,15 @@ false systemuserid systemuser - lk_powerpagesitepublished_createdby - createdby - powerpagesitepublished - createdby + lk_flowcredentialapplication_modifiedby + modifiedby + flowcredentialapplication + modifiedby 0 - 4c41e170-f2ba-f011-bbd3-7c1e52365f30 + 5d192aea-baba-f011-bbd3-7c1e52365f30 false @@ -458243,9 +507457,9 @@ false true - lk_powerpagesitepublished_createdonbehalfby + lk_flowcredentialapplication_modifiedonbehalfby None - 1.0.2207.1 + 1.7.11.0 OneToManyRelationship DoNotDisplay @@ -458279,27 +507493,27 @@ false systemuserid systemuser - lk_powerpagesitepublished_createdonbehalfby - createdonbehalfby - powerpagesitepublished - createdonbehalfby + lk_flowcredentialapplication_modifiedonbehalfby + modifiedonbehalfby + flowcredentialapplication + modifiedonbehalfby 0 - 5641e170-f2ba-f011-bbd3-7c1e52365f30 + 6f192aea-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerpagesitepublished_modifiedby + user_flowcredentialapplication None - 1.0.2207.1 + 1.7.11.0 OneToManyRelationship DoNotDisplay @@ -458333,15 +507547,15 @@ false systemuserid systemuser - lk_powerpagesitepublished_modifiedby - modifiedby - powerpagesitepublished - modifiedby + user_flowcredentialapplication + owninguser + flowcredentialapplication + owninguser 0 - 6541e170-f2ba-f011-bbd3-7c1e52365f30 + 2b1a2aea-baba-f011-bbd3-7c1e52365f30 false @@ -458351,9 +507565,9 @@ false true - lk_powerpagesitepublished_modifiedonbehalfby + lk_flowevent_createdby None - 1.0.2207.1 + 1.5.13.0 OneToManyRelationship DoNotDisplay @@ -458387,27 +507601,27 @@ false systemuserid systemuser - lk_powerpagesitepublished_modifiedonbehalfby - modifiedonbehalfby - powerpagesitepublished - modifiedonbehalfby + lk_flowevent_createdby + createdby + flowevent + createdby 0 - 8041e170-f2ba-f011-bbd3-7c1e52365f30 + 311a2aea-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_powerpagesitepublished + lk_flowevent_createdonbehalfby None - 1.0.2207.1 + 1.5.13.0 OneToManyRelationship DoNotDisplay @@ -458441,27 +507655,27 @@ false systemuserid systemuser - user_powerpagesitepublished - owninguser - powerpagesitepublished - owninguser + lk_flowevent_createdonbehalfby + createdonbehalfby + flowevent + createdonbehalfby 0 - 0743e170-f2ba-f011-bbd3-7c1e52365f30 + 371a2aea-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerpagessourcefile_createdby + lk_flowevent_modifiedby None - 1.0.2505.1 + 1.5.13.0 OneToManyRelationship DoNotDisplay @@ -458495,15 +507709,15 @@ false systemuserid systemuser - lk_powerpagessourcefile_createdby - createdby - powerpagessourcefile - createdby + lk_flowevent_modifiedby + modifiedby + flowevent + modifiedby 0 - 2db0d976-f2ba-f011-bbd3-7c1e52365f30 + 3d1a2aea-baba-f011-bbd3-7c1e52365f30 false @@ -458513,9 +507727,9 @@ false true - lk_powerpagessourcefile_createdonbehalfby + lk_flowevent_modifiedonbehalfby None - 1.0.2505.1 + 1.5.13.0 OneToManyRelationship DoNotDisplay @@ -458549,27 +507763,27 @@ false systemuserid systemuser - lk_powerpagessourcefile_createdonbehalfby - createdonbehalfby - powerpagessourcefile - createdonbehalfby + lk_flowevent_modifiedonbehalfby + modifiedonbehalfby + flowevent + modifiedonbehalfby 0 - 38b0d976-f2ba-f011-bbd3-7c1e52365f30 + 4f1a2aea-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerpagessourcefile_modifiedby + user_flowevent None - 1.0.2505.1 + 1.5.13.0 OneToManyRelationship DoNotDisplay @@ -458603,15 +507817,15 @@ false systemuserid systemuser - lk_powerpagessourcefile_modifiedby - modifiedby - powerpagessourcefile - modifiedby + user_flowevent + owninguser + flowevent + owninguser 0 - 45b0d976-f2ba-f011-bbd3-7c1e52365f30 + ce2843ea-b315-f111-8347-0022489f8311 false @@ -458621,9 +507835,9 @@ false true - lk_powerpagessourcefile_modifiedonbehalfby + lk_msdyn_powerappswrapbuild_createdby None - 1.0.2505.1 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -458657,27 +507871,27 @@ false systemuserid systemuser - lk_powerpagessourcefile_modifiedonbehalfby - modifiedonbehalfby - powerpagessourcefile - modifiedonbehalfby + lk_msdyn_powerappswrapbuild_createdby + createdby + msdyn_powerappswrapbuild + createdby 0 - 57b0d976-f2ba-f011-bbd3-7c1e52365f30 + d52843ea-b315-f111-8347-0022489f8311 false true iscustomizable - false + true false true - user_powerpagessourcefile + lk_msdyn_powerappswrapbuild_createdonbehalfby None - 1.0.2505.1 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -458711,15 +507925,15 @@ false systemuserid systemuser - user_powerpagessourcefile - owninguser - powerpagessourcefile - owninguser + lk_msdyn_powerappswrapbuild_createdonbehalfby + createdonbehalfby + msdyn_powerappswrapbuild + createdonbehalfby 0 - a58a7323-f3ba-f011-bbd3-7c1e52365f30 + db2843ea-b315-f111-8347-0022489f8311 false @@ -458729,7 +507943,7 @@ false true - lk_adx_externalidentity_createdby + lk_msdyn_powerappswrapbuild_modifiedby None 1.0.0.0 OneToManyRelationship @@ -458765,15 +507979,15 @@ false systemuserid systemuser - lk_adx_externalidentity_createdby - createdby - adx_externalidentity - createdby + lk_msdyn_powerappswrapbuild_modifiedby + modifiedby + msdyn_powerappswrapbuild + modifiedby 0 - ab8a7323-f3ba-f011-bbd3-7c1e52365f30 + e12843ea-b315-f111-8347-0022489f8311 false @@ -458783,7 +507997,7 @@ false true - lk_adx_externalidentity_createdonbehalfby + lk_msdyn_powerappswrapbuild_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -458819,15 +508033,15 @@ false systemuserid systemuser - lk_adx_externalidentity_createdonbehalfby - createdonbehalfby - adx_externalidentity - createdonbehalfby + lk_msdyn_powerappswrapbuild_modifiedonbehalfby + modifiedonbehalfby + msdyn_powerappswrapbuild + modifiedonbehalfby 0 - b18a7323-f3ba-f011-bbd3-7c1e52365f30 + ff2843ea-b315-f111-8347-0022489f8311 false @@ -458837,7 +508051,7 @@ false true - lk_adx_externalidentity_modifiedby + user_msdyn_powerappswrapbuild None 1.0.0.0 OneToManyRelationship @@ -458873,27 +508087,27 @@ false systemuserid systemuser - lk_adx_externalidentity_modifiedby - modifiedby - adx_externalidentity - modifiedby + user_msdyn_powerappswrapbuild + owninguser + msdyn_powerappswrapbuild + owninguser 0 - b78a7323-f3ba-f011-bbd3-7c1e52365f30 + cdaa49ea-0cbd-474d-a4dd-d8f9aa49a474 false - true + false iscustomizable - true + false - false + true true - lk_adx_externalidentity_modifiedonbehalfby + lk_audit_userid None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -458927,27 +508141,27 @@ false systemuserid systemuser - lk_adx_externalidentity_modifiedonbehalfby - modifiedonbehalfby - adx_externalidentity - modifiedonbehalfby + lk_audit_userid + userid + audit + userid 0 - 808c7323-f3ba-f011-bbd3-7c1e52365f30 + 43c554ea-ab90-43ac-8ab6-0c0adab04ac4 false - true + false iscustomizable - true + false - false - true - lk_adx_invitation_createdby + true + false + createdby_pluginassembly None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -458981,27 +508195,27 @@ false systemuserid systemuser - lk_adx_invitation_createdby + createdby_pluginassembly createdby - adx_invitation + pluginassembly createdby 0 - 868c7323-f3ba-f011-bbd3-7c1e52365f30 + 7d185eea-c18e-4dcb-80f2-5e31d4156a45 false - true + false iscustomizable true - false + true true - lk_adx_invitation_createdonbehalfby + lk_emailserverprofile_createdby None - 1.0.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -459035,27 +508249,27 @@ false systemuserid systemuser - lk_adx_invitation_createdonbehalfby - createdonbehalfby - adx_invitation - createdonbehalfby + lk_emailserverprofile_createdby + createdby + emailserverprofile + createdby 0 - 8c8c7323-f3ba-f011-bbd3-7c1e52365f30 + 633466ea-c6fd-479f-9773-a95b985b2c8a false - true + false iscustomizable - true + false - false - true - lk_adx_invitation_modifiedby + true + false + modifiedby_attributemap None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -459089,27 +508303,27 @@ false systemuserid systemuser - lk_adx_invitation_modifiedby + modifiedby_attributemap modifiedby - adx_invitation + attributemap modifiedby 0 - 928c7323-f3ba-f011-bbd3-7c1e52365f30 + 65f684ea-0597-44db-9838-5db18930ce4d false - true + false iscustomizable - true + false - false + true true - lk_adx_invitation_modifiedonbehalfby + system_user_activity_parties None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -459143,27 +508357,27 @@ false systemuserid systemuser - lk_adx_invitation_modifiedonbehalfby - modifiedonbehalfby - adx_invitation - modifiedonbehalfby + system_user_activity_parties + partyid + activityparty + partyid_systemuser 0 - a48c7323-f3ba-f011-bbd3-7c1e52365f30 + 0f8590ea-8b46-466e-b83a-2642d396b3cb false - true + false iscustomizable - true + false - false + true true - user_adx_invitation + lk_rolebase_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -459197,27 +508411,27 @@ false systemuserid systemuser - user_adx_invitation - owninguser - adx_invitation - owninguser + lk_rolebase_modifiedby + modifiedby + role + modifiedby 0 - 7f907323-f3ba-f011-bbd3-7c1e52365f30 + 7115a3ea-3815-460e-98a2-0d2b32f35306 false - true + false iscustomizable - true + false - false + true true - adx_inviteredemption_systemuser_createdby + lk_organization_modifiedonbehalfby None - 1.0.2407.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -459251,27 +508465,27 @@ false systemuserid systemuser - adx_inviteredemption_systemuser_createdby - createdby - adx_inviteredemption - createdby_adx_inviteredemption + lk_organization_modifiedonbehalfby + modifiedonbehalfby + organization + modifiedonbehalfby 0 - 84907323-f3ba-f011-bbd3-7c1e52365f30 + 3aa8b0ea-e50c-4d52-a8c3-e09a99500d8b false - true + false iscustomizable - true + false - false - true - adx_inviteredemption_systemuser_owninguser - None - 1.0.2407.1 + true + false + lk_annualfiscalcalendar_salespersonid + ParentChild + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -459305,15 +508519,15 @@ false systemuserid systemuser - adx_inviteredemption_systemuser_owninguser - owninguser - adx_inviteredemption - owninguser_adx_inviteredemption + lk_annualfiscalcalendar_salespersonid + salespersonid + annualfiscalcalendar + salespersonid - 0 + 2 - 8a907323-f3ba-f011-bbd3-7c1e52365f30 + 81b1c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -459323,9 +508537,9 @@ false true - adx_inviteredemption_systemuser_modifiedonbehalfby + lk_sideloadedaiplugin_createdby None - 1.0.2407.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -459359,15 +508573,15 @@ false systemuserid systemuser - adx_inviteredemption_systemuser_modifiedonbehalfby - modifiedonbehalfby - adx_inviteredemption - modifiedonbehalfby_adx_inviteredemption + lk_sideloadedaiplugin_createdby + createdby + sideloadedaiplugin + createdby 0 - 8b907323-f3ba-f011-bbd3-7c1e52365f30 + 87b1c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -459377,9 +508591,9 @@ false true - adx_inviteredemption_systemuser_createdonbehalfby + lk_sideloadedaiplugin_createdonbehalfby None - 1.0.2407.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -459413,15 +508627,15 @@ false systemuserid systemuser - adx_inviteredemption_systemuser_createdonbehalfby + lk_sideloadedaiplugin_createdonbehalfby createdonbehalfby - adx_inviteredemption - createdonbehalfby_adx_inviteredemption + sideloadedaiplugin + createdonbehalfby 0 - 8c907323-f3ba-f011-bbd3-7c1e52365f30 + 8db1c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -459431,9 +508645,9 @@ false true - adx_inviteredemption_systemuser_modifiedby + lk_sideloadedaiplugin_modifiedby None - 1.0.2407.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -459467,15 +508681,15 @@ false systemuserid systemuser - adx_inviteredemption_systemuser_modifiedby + lk_sideloadedaiplugin_modifiedby modifiedby - adx_inviteredemption - modifiedby_adx_inviteredemption + sideloadedaiplugin + modifiedby 0 - c0e1a029-f3ba-f011-bbd3-7c1e52365f30 + 93b1c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -459485,9 +508699,9 @@ false true - adx_portalcomment_systemuser_createdby + lk_sideloadedaiplugin_modifiedonbehalfby None - 1.0.2407.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -459521,15 +508735,15 @@ false systemuserid systemuser - adx_portalcomment_systemuser_createdby - createdby - adx_portalcomment - createdby_adx_portalcomment + lk_sideloadedaiplugin_modifiedonbehalfby + modifiedonbehalfby + sideloadedaiplugin + modifiedonbehalfby 0 - c5e1a029-f3ba-f011-bbd3-7c1e52365f30 + a5b1c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -459539,9 +508753,9 @@ false true - adx_portalcomment_systemuser_owninguser + user_sideloadedaiplugin None - 1.0.2407.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -459575,27 +508789,27 @@ false systemuserid systemuser - adx_portalcomment_systemuser_owninguser + user_sideloadedaiplugin owninguser - adx_portalcomment - owninguser_adx_portalcomment + sideloadedaiplugin + owninguser 0 - cbe1a029-f3ba-f011-bbd3-7c1e52365f30 + 71b3c1ea-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - adx_portalcomment_systemuser_modifiedonbehalfby + lk_aiplugin_createdby None - 1.0.2407.1 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -459629,15 +508843,15 @@ false systemuserid systemuser - adx_portalcomment_systemuser_modifiedonbehalfby - modifiedonbehalfby - adx_portalcomment - modifiedonbehalfby_adx_portalcomment + lk_aiplugin_createdby + createdby + aiplugin + createdby 0 - cce1a029-f3ba-f011-bbd3-7c1e52365f30 + 7fb3c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -459647,9 +508861,9 @@ false true - adx_portalcomment_systemuser_createdonbehalfby + lk_aiplugin_createdonbehalfby None - 1.0.2407.1 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -459683,27 +508897,27 @@ false systemuserid systemuser - adx_portalcomment_systemuser_createdonbehalfby + lk_aiplugin_createdonbehalfby createdonbehalfby - adx_portalcomment - createdonbehalfby_adx_portalcomment + aiplugin + createdonbehalfby 0 - cde1a029-f3ba-f011-bbd3-7c1e52365f30 + 8db3c1ea-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - adx_portalcomment_systemuser_modifiedby + lk_aiplugin_modifiedby None - 1.0.2407.1 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -459737,15 +508951,15 @@ false systemuserid systemuser - adx_portalcomment_systemuser_modifiedby + lk_aiplugin_modifiedby modifiedby - adx_portalcomment - modifiedby_adx_portalcomment + aiplugin + modifiedby 0 - 0be5a029-f3ba-f011-bbd3-7c1e52365f30 + 9ab3c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -459755,7 +508969,7 @@ false true - lk_adx_setting_createdby + lk_aiplugin_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -459791,25 +509005,25 @@ false systemuserid systemuser - lk_adx_setting_createdby - createdby - adx_setting - createdby + lk_aiplugin_modifiedonbehalfby + modifiedonbehalfby + aiplugin + modifiedonbehalfby 0 - 11e5a029-f3ba-f011-bbd3-7c1e52365f30 + adb3c1ea-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_adx_setting_createdonbehalfby + user_aiplugin None 1.0.0.0 OneToManyRelationship @@ -459845,25 +509059,25 @@ false systemuserid systemuser - lk_adx_setting_createdonbehalfby - createdonbehalfby - adx_setting - createdonbehalfby + user_aiplugin + owninguser + aiplugin + owninguser 0 - 17e5a029-f3ba-f011-bbd3-7c1e52365f30 + 40b5c1ea-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_adx_setting_modifiedby + lk_aipluginexternalschema_createdby None 1.0.0.0 OneToManyRelationship @@ -459899,15 +509113,15 @@ false systemuserid systemuser - lk_adx_setting_modifiedby - modifiedby - adx_setting - modifiedby + lk_aipluginexternalschema_createdby + createdby + aipluginexternalschema + createdby 0 - 1de5a029-f3ba-f011-bbd3-7c1e52365f30 + 46b5c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -459917,7 +509131,7 @@ false true - lk_adx_setting_modifiedonbehalfby + lk_aipluginexternalschema_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -459953,25 +509167,25 @@ false systemuserid systemuser - lk_adx_setting_modifiedonbehalfby - modifiedonbehalfby - adx_setting - modifiedonbehalfby + lk_aipluginexternalschema_createdonbehalfby + createdonbehalfby + aipluginexternalschema + createdonbehalfby 0 - 2fe5a029-f3ba-f011-bbd3-7c1e52365f30 + 4cb5c1ea-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_adx_setting + lk_aipluginexternalschema_modifiedby None 1.0.0.0 OneToManyRelationship @@ -460007,15 +509221,15 @@ false systemuserid systemuser - user_adx_setting - owninguser - adx_setting - owninguser + lk_aipluginexternalschema_modifiedby + modifiedby + aipluginexternalschema + modifiedby 0 - 6ce6a029-f3ba-f011-bbd3-7c1e52365f30 + 52b5c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -460025,7 +509239,7 @@ false true - lk_adx_webformsession_createdby + lk_aipluginexternalschema_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -460061,25 +509275,25 @@ false systemuserid systemuser - lk_adx_webformsession_createdby - createdby - adx_webformsession - createdby + lk_aipluginexternalschema_modifiedonbehalfby + modifiedonbehalfby + aipluginexternalschema + modifiedonbehalfby 0 - 72e6a029-f3ba-f011-bbd3-7c1e52365f30 + 64b5c1ea-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_adx_webformsession_createdonbehalfby + user_aipluginexternalschema None 1.0.0.0 OneToManyRelationship @@ -460115,25 +509329,25 @@ false systemuserid systemuser - lk_adx_webformsession_createdonbehalfby - createdonbehalfby - adx_webformsession - createdonbehalfby + user_aipluginexternalschema + owninguser + aipluginexternalschema + owninguser 0 - 78e6a029-f3ba-f011-bbd3-7c1e52365f30 + f1b6c1ea-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_adx_webformsession_modifiedby + lk_aipluginexternalschemaproperty_createdby None 1.0.0.0 OneToManyRelationship @@ -460169,15 +509383,15 @@ false systemuserid systemuser - lk_adx_webformsession_modifiedby - modifiedby - adx_webformsession - modifiedby + lk_aipluginexternalschemaproperty_createdby + createdby + aipluginexternalschemaproperty + createdby 0 - 7ee6a029-f3ba-f011-bbd3-7c1e52365f30 + f7b6c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -460187,7 +509401,7 @@ false true - lk_adx_webformsession_modifiedonbehalfby + lk_aipluginexternalschemaproperty_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -460223,53 +509437,39 @@ false systemuserid systemuser - lk_adx_webformsession_modifiedonbehalfby - modifiedonbehalfby - adx_webformsession - modifiedonbehalfby + lk_aipluginexternalschemaproperty_createdonbehalfby + createdonbehalfby + aipluginexternalschemaproperty + createdonbehalfby 0 - b6259935-f3ba-f011-bbd3-7c1e52365f30 + fdb6c1ea-bdba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - true + false - true + false true - adx_webformsession_systemuser - Append + lk_aipluginexternalschemaproperty_modifiedby + None 1.0.0.0 OneToManyRelationship DoNotDisplay Details - - - eb1b993b-5d5b-4843-934e-9b22ff6eff01 - - true - - 1033 - - - - eb1b993b-5d5b-4843-934e-9b22ff6eff01 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -460277,7 +509477,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -460291,53 +509491,39 @@ false systemuserid systemuser - adx_webformsession_systemuser - adx_systemuser - adx_webformsession - adx_systemuser + lk_aipluginexternalschemaproperty_modifiedby + modifiedby + aipluginexternalschemaproperty + modifiedby - 1 + 0 - cb480000-f4ba-f011-bbd3-7c1e52365f30 + 03b7c1ea-bdba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_adplacement_createdby - Append + lk_aipluginexternalschemaproperty_modifiedonbehalfby + None 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - efe750b3-0630-4688-9585-e94b6036e5c8 - - true - - 1033 - - - - efe750b3-0630-4688-9585-e94b6036e5c8 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -460359,53 +509545,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_adplacement_createdby - mspp_createdby - mspp_adplacement - mspp_createdby + lk_aipluginexternalschemaproperty_modifiedonbehalfby + modifiedonbehalfby + aipluginexternalschemaproperty + modifiedonbehalfby - 1 + 0 - d4480000-f4ba-f011-bbd3-7c1e52365f30 + 15b7c1ea-bdba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true + false true - mspp_systemuser_mspp_adplacement_modifiedby - Append + user_aipluginexternalschemaproperty + None 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 9ed3e77a-fd0e-4c62-aa27-20da8a1c61d1 - - true - - 1033 - - - - 9ed3e77a-fd0e-4c62-aa27-20da8a1c61d1 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -460427,53 +509599,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_adplacement_modifiedby - mspp_modifiedby - mspp_adplacement - mspp_modifiedby + user_aipluginexternalschemaproperty + owninguser + aipluginexternalschemaproperty + owninguser - 1 + 0 - dc480000-f4ba-f011-bbd3-7c1e52365f30 + 4555edea-40b5-4237-8a0d-334439f9b458 - true + false false iscustomizable false true - true - mspp_systemuser_mspp_columnpermission_createdby - Append - 1.0.0.0 + false + lk_internaladdressbase_createdby + None + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 0d0d3f2a-7df6-41e5-b4fb-bbbc7f95cfae - - true - - 1033 - - - - 0d0d3f2a-7df6-41e5-b4fb-bbbc7f95cfae - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -460495,17 +509653,17 @@ false systemuserid systemuser - mspp_systemuser_mspp_columnpermission_createdby - mspp_createdby - mspp_columnpermission - mspp_createdby + lk_internaladdressbase_createdby + createdby + internaladdress + createdby - 1 + 0 - e5480000-f4ba-f011-bbd3-7c1e52365f30 + 4d6f36eb-8f6e-4554-968d-50c1346e0876 - true + false false iscustomizable @@ -460513,35 +509671,21 @@ true true - mspp_systemuser_mspp_columnpermission_modifiedby - Append - 1.0.0.0 + lk_relationshiprole_modifiedonbehalfby + None + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 010521a4-76c6-4c77-8be7-4df03082dc66 - - true - - 1033 - - - - 010521a4-76c6-4c77-8be7-4df03082dc66 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -460563,53 +509707,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_columnpermission_modifiedby - mspp_modifiedby - mspp_columnpermission - mspp_modifiedby + lk_relationshiprole_modifiedonbehalfby + modifiedonbehalfby + relationshiprole + modifiedonbehalfby - 1 + 0 - ed480000-f4ba-f011-bbd3-7c1e52365f30 + cf5a4feb-77f8-e411-93a4-00219b3e9ee9 - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_columnpermissionprofile_createdby - Append - 1.0.0.0 + lk_profileruleitem_createdby + None + 8.0.0.0 OneToManyRelationship UseCollectionName Details - - - 0ac27016-614f-4d00-b42d-b4e98ea0b976 - - true - - 1033 - - - - 0ac27016-614f-4d00-b42d-b4e98ea0b976 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -460631,53 +509761,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_columnpermissionprofile_createdby - mspp_createdby - mspp_columnpermissionprofile - mspp_createdby + lk_profileruleitem_createdby + createdby + channelaccessprofileruleitem + lk_profileruleitemid3 - 1 + 0 - f6480000-f4ba-f011-bbd3-7c1e52365f30 + d55a4feb-77f8-e411-93a4-00219b3e9ee9 - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_columnpermissionprofile_modifiedby - Append - 1.0.0.0 + lk_profileruleitem_createdonbehalfby + None + 8.0.0.0 OneToManyRelationship UseCollectionName Details - - - 39d5aee5-0fc2-4480-98a5-9109ad40918e - - true - - 1033 - - - - 39d5aee5-0fc2-4480-98a5-9109ad40918e - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -460699,53 +509815,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_columnpermissionprofile_modifiedby - mspp_modifiedby - mspp_columnpermissionprofile - mspp_modifiedby + lk_profileruleitem_createdonbehalfby + createdonbehalfby + channelaccessprofileruleitem + lk_profileruleitemid2 - 1 + 0 - fe480000-f4ba-f011-bbd3-7c1e52365f30 + db5a4feb-77f8-e411-93a4-00219b3e9ee9 - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_contentsnippet_createdby - Append - 1.0.0.0 + lk_profileruleitem_modifiedby + None + 8.0.0.0 OneToManyRelationship UseCollectionName Details - - - 5cd15e01-5985-4315-a4ca-04fb8f683e25 - - true - - 1033 - - - - 5cd15e01-5985-4315-a4ca-04fb8f683e25 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -460767,53 +509869,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_contentsnippet_createdby - mspp_createdby - mspp_contentsnippet - mspp_createdby + lk_profileruleitem_modifiedby + modifiedby + channelaccessprofileruleitem + lk_profileruleitemid1 - 1 + 0 - 07490000-f4ba-f011-bbd3-7c1e52365f30 + e15a4feb-77f8-e411-93a4-00219b3e9ee9 - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_contentsnippet_modifiedby - Append - 1.0.0.0 + lk_profileruleitem_modifiedonbehalfby + None + 8.0.0.0 OneToManyRelationship UseCollectionName Details - - - 056c1228-1f28-4744-b8ca-e5c15632c00b - - true - - 1033 - - - - 056c1228-1f28-4744-b8ca-e5c15632c00b - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -460835,53 +509923,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_contentsnippet_modifiedby - mspp_modifiedby - mspp_contentsnippet - mspp_modifiedby + lk_profileruleitem_modifiedonbehalfby + modifiedonbehalfby + channelaccessprofileruleitem + lk_profileruleitemid - 1 + 0 - 0f490000-f4ba-f011-bbd3-7c1e52365f30 + 989584eb-2d52-4f3c-8370-917c7d716e47 - true + false false iscustomizable false true - true - mspp_systemuser_mspp_entityform_createdby - Append - 1.0.0.0 + false + modifiedby_sdkmessagerequest + None + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - c9e107c0-7981-4534-9622-9c41569ebbea - - true - - 1033 - - - - c9e107c0-7981-4534-9622-9c41569ebbea - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -460903,54 +509977,40 @@ false systemuserid systemuser - mspp_systemuser_mspp_entityform_createdby - mspp_createdby - mspp_entityform - mspp_createdby + modifiedby_sdkmessagerequest + modifiedby + sdkmessagerequest + modifiedby - 1 + 0 - 18490000-f4ba-f011-bbd3-7c1e52365f30 + a422faeb-060e-435b-ab7e-c0fadfe569b2 - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_entityform_modifiedby - Append - 1.0.0.0 + lk_sharepointdocumentbase_createdby + None + 6.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 8a03ad0c-c213-4d03-860d-f652abb805b7 - - true - - 1033 - - - - 8a03ad0c-c213-4d03-860d-f652abb805b7 - - true - - 1033 - + + - 10000 + true true - + navSPDocuments 00000000-0000-0000-0000-000000000000 @@ -460971,17 +510031,17 @@ false systemuserid systemuser - mspp_systemuser_mspp_entityform_modifiedby - mspp_modifiedby - mspp_entityform - mspp_modifiedby + lk_sharepointdocumentbase_createdby + createdby + sharepointdocument + createdby - 1 + 0 - 20490000-f4ba-f011-bbd3-7c1e52365f30 + 0ab2feeb-fd84-4034-8cb1-e49fb084afe8 - true + false false iscustomizable @@ -460989,35 +510049,21 @@ true true - mspp_systemuser_mspp_entityformmetadata_createdby - Append - 1.0.0.0 + bizmap_systemuser_businessid + None + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 501d3cf4-3271-40d0-9914-f17584d28d47 - - true - - 1033 - - - - 501d3cf4-3271-40d0-9914-f17584d28d47 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461037,55 +510083,41 @@ false false - systemuserid + businessunitid systemuser - mspp_systemuser_mspp_entityformmetadata_createdby - mspp_createdby - mspp_entityformmetadata - mspp_createdby + bizmap_systemuser_businessid + businessid + businessunitmap + businessid_systemuser - 1 + 0 - 29490000-f4ba-f011-bbd3-7c1e52365f30 + abe656ec-c0ba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true + false true - mspp_systemuser_mspp_entityformmetadata_modifiedby - Append - 1.0.0.0 + lk_botcomponentcollection_createdby + None + 2.2.12.13735069 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 8b19ef19-151b-453f-87ae-33a57546773f - - true - - 1033 - - - - 8b19ef19-151b-453f-87ae-33a57546773f - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461107,53 +510139,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_entityformmetadata_modifiedby - mspp_modifiedby - mspp_entityformmetadata - mspp_modifiedby + lk_botcomponentcollection_createdby + createdby + botcomponentcollection + createdby - 1 + 0 - 31490000-f4ba-f011-bbd3-7c1e52365f30 + b2e656ec-c0ba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_entitylist_createdby - Append - 1.0.0.0 + lk_botcomponentcollection_createdonbehalfby + None + 2.2.12.13735069 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 1059bf83-ef32-4db7-9676-878a9e371419 - - true - - 1033 - - - - 1059bf83-ef32-4db7-9676-878a9e371419 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461175,53 +510193,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_entitylist_createdby - mspp_createdby - mspp_entitylist - mspp_createdby + lk_botcomponentcollection_createdonbehalfby + createdonbehalfby + botcomponentcollection + createdonbehalfby - 1 + 0 - 3a490000-f4ba-f011-bbd3-7c1e52365f30 + b9e656ec-c0ba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true + false true - mspp_systemuser_mspp_entitylist_modifiedby - Append - 1.0.0.0 + lk_botcomponentcollection_modifiedby + None + 2.2.12.13735069 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - ada8d8c8-5528-467d-9ddf-0ba505b8916c - - true - - 1033 - - - - ada8d8c8-5528-467d-9ddf-0ba505b8916c - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461243,53 +510247,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_entitylist_modifiedby - mspp_modifiedby - mspp_entitylist - mspp_modifiedby + lk_botcomponentcollection_modifiedby + modifiedby + botcomponentcollection + modifiedby - 1 + 0 - 69754806-f4ba-f011-bbd3-7c1e52365f30 + c2e656ec-c0ba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_entitypermission_createdby - Append - 1.0.0.0 + lk_botcomponentcollection_modifiedonbehalfby + None + 2.2.12.13735069 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 75216ceb-8b11-4d05-82e9-8900688005cb - - true - - 1033 - - - - 75216ceb-8b11-4d05-82e9-8900688005cb - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461311,53 +510301,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_entitypermission_createdby - mspp_createdby - mspp_entitypermission - mspp_createdby + lk_botcomponentcollection_modifiedonbehalfby + modifiedonbehalfby + botcomponentcollection + modifiedonbehalfby - 1 + 0 - 72754806-f4ba-f011-bbd3-7c1e52365f30 + d8e656ec-c0ba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true + false true - mspp_systemuser_mspp_entitypermission_modifiedby - Append - 1.0.0.0 + user_botcomponentcollection + None + 2.2.12.13735069 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - e8e3ab43-45f2-4f37-bcad-aeebc50a079d - - true - - 1033 - - - - e8e3ab43-45f2-4f37-bcad-aeebc50a079d - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461379,53 +510355,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_entitypermission_modifiedby - mspp_modifiedby - mspp_entitypermission - mspp_modifiedby + user_botcomponentcollection + owninguser + botcomponentcollection + owninguser - 1 + 0 - 7a754806-f4ba-f011-bbd3-7c1e52365f30 + e2e45aec-7492-4a5d-aa99-2533567642eb - true + false false iscustomizable false true - true - mspp_systemuser_mspp_pagetemplate_createdby - Append - 1.0.0.0 + false + lk_duplicaterule_modifiedonbehalfby + None + 5.0.0.0 OneToManyRelationship - - UseCollectionName - Details - - - - 11179046-8a2d-43d0-a627-e375db8f4c5b - - true - - 1033 - - - - 11179046-8a2d-43d0-a627-e375db8f4c5b - - true - - 1033 - + + DoNotDisplay + Details + + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461447,53 +510409,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_pagetemplate_createdby - mspp_createdby - mspp_pagetemplate - mspp_createdby + lk_duplicaterule_modifiedonbehalfby + modifiedonbehalfby + duplicaterule + modifiedonbehalfby - 1 + 0 - 83754806-f4ba-f011-bbd3-7c1e52365f30 + 1a9576ec-edba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_pagetemplate_modifiedby - Append + lk_msdyn_virtualtablecolumncandidate_modifiedonbehalfby + None 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 6214faa9-ed73-4f10-bf71-1d1bc04c06ef - - true - - 1033 - - - - 6214faa9-ed73-4f10-bf71-1d1bc04c06ef - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461515,53 +510463,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_pagetemplate_modifiedby - mspp_modifiedby - mspp_pagetemplate - mspp_modifiedby + lk_msdyn_virtualtablecolumncandidate_modifiedonbehalfby + modifiedonbehalfby + msdyn_virtualtablecolumncandidate + modifiedonbehalfby - 1 + 0 - 8b754806-f4ba-f011-bbd3-7c1e52365f30 + 2e9576ec-edba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_pollplacement_createdby - Append + user_msdyn_virtualtablecolumncandidate + None 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 9d289855-ab76-432d-b5a7-64c064f7301b - - true - - 1033 - - - - 9d289855-ab76-432d-b5a7-64c064f7301b - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461583,53 +510517,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_pollplacement_createdby - mspp_createdby - mspp_pollplacement - mspp_createdby + user_msdyn_virtualtablecolumncandidate + owninguser + msdyn_virtualtablecolumncandidate + owninguser - 1 + 0 - 94754806-f4ba-f011-bbd3-7c1e52365f30 + 8a6c77ec-2e22-4ac7-b0bf-87c17d244184 - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_pollplacement_modifiedby - Append - 1.0.0.0 + lk_appointment_modifiedby + None + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 7dd0388f-1da8-4d9c-a8ad-77ec59bd8ecb - - true - - 1033 - - - - 7dd0388f-1da8-4d9c-a8ad-77ec59bd8ecb - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461651,53 +510571,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_pollplacement_modifiedby - mspp_modifiedby - mspp_pollplacement - mspp_modifiedby + lk_appointment_modifiedby + modifiedby + appointment + modifiedby_appointment - 1 + 0 - 9c754806-f4ba-f011-bbd3-7c1e52365f30 + db63ceec-cfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_publishingstate_createdby - Append - 1.0.0.0 + lk_reportparameter_createdby + None + 1.0.0.5 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 17468061-9c5a-40b6-b526-e6c2d0b24074 - - true - - 1033 - - - - 17468061-9c5a-40b6-b526-e6c2d0b24074 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461719,53 +510625,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_publishingstate_createdby - mspp_createdby - mspp_publishingstate - mspp_createdby + lk_reportparameter_createdby + createdby + reportparameter + createdby - 1 + 0 - a5754806-f4ba-f011-bbd3-7c1e52365f30 + e163ceec-cfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_publishingstate_modifiedby - Append - 1.0.0.0 + lk_reportparameter_createdonbehalfby + None + 1.0.0.5 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 45241228-90c2-4756-95da-7fff22896934 - - true - - 1033 - - - - 45241228-90c2-4756-95da-7fff22896934 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461787,53 +510679,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_publishingstate_modifiedby - mspp_modifiedby - mspp_publishingstate - mspp_modifiedby + lk_reportparameter_createdonbehalfby + createdonbehalfby + reportparameter + createdonbehalfby - 1 + 0 - ad754806-f4ba-f011-bbd3-7c1e52365f30 + e763ceec-cfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_publishingstatetransitionrule_createdby - Append - 1.0.0.0 + lk_reportparameter_modifiedby + None + 1.0.0.5 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 5789565c-2359-4b55-93eb-c409ca1d211a - - true - - 1033 - - - - 5789565c-2359-4b55-93eb-c409ca1d211a - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461855,53 +510733,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_publishingstatetransitionrule_createdby - mspp_createdby - mspp_publishingstatetransitionrule - mspp_createdby + lk_reportparameter_modifiedby + modifiedby + reportparameter + modifiedby - 1 + 0 - 24cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + ed63ceec-cfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_publishingstatetransitionrule_modifiedby - Append - 1.0.0.0 + lk_reportparameter_modifiedonbehalfby + None + 1.0.0.5 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 17e1f298-fa84-4e7c-aa59-5885fbd2eec7 - - true - - 1033 - - - - 17e1f298-fa84-4e7c-aa59-5885fbd2eec7 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461923,53 +510787,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_publishingstatetransitionrule_modifiedby - mspp_modifiedby - mspp_publishingstatetransitionrule - mspp_modifiedby + lk_reportparameter_modifiedonbehalfby + modifiedonbehalfby + reportparameter + modifiedonbehalfby - 1 + 0 - 2ccb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 8fb4f3ec-c34e-44fc-922c-158f68bbe17f - true + false false iscustomizable - false + true true - true - mspp_systemuser_mspp_redirect_createdby - Append - 1.0.0.0 + false + lk_businessunitbase_modifiedby + None + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 403d9b16-caee-4d03-91f7-dd28c8e20985 - - true - - 1033 - - - - 403d9b16-caee-4d03-91f7-dd28c8e20985 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -461991,17 +510841,17 @@ false systemuserid systemuser - mspp_systemuser_mspp_redirect_createdby - mspp_createdby - mspp_redirect - mspp_createdby + lk_businessunitbase_modifiedby + modifiedby + businessunit + modifiedby - 1 + 0 - 35cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 09db11ed-7e9b-11dd-94cd-00188b01dce6 - true + false false iscustomizable @@ -462009,35 +510859,21 @@ true true - mspp_systemuser_mspp_redirect_modifiedby - Append - 1.0.0.0 + lk_solution_modifiedby + None + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - a4b5d0a0-7afe-453d-98d6-f814d82109c7 - - true - - 1033 - - - - a4b5d0a0-7afe-453d-98d6-f814d82109c7 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462059,53 +510895,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_redirect_modifiedby - mspp_modifiedby - mspp_redirect - mspp_modifiedby + lk_solution_modifiedby + modifiedby + solution + modifiedby - 1 + 0 - 3dcb4c0c-f4ba-f011-bbd3-7c1e52365f30 + cbf738ed-cbf7-e411-93a4-00219b3e9ee9 - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_shortcut_createdby - Append - 1.0.0.0 + lk_profilerule_createdby + None + 8.0.0.0 OneToManyRelationship UseCollectionName Details - - - 04e59ae4-8750-4afc-846f-85342ce53f88 - - true - - 1033 - - - - 04e59ae4-8750-4afc-846f-85342ce53f88 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462127,53 +510949,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_shortcut_createdby - mspp_createdby - mspp_shortcut - mspp_createdby + lk_profilerule_createdby + createdby + channelaccessprofilerule + profileruleid4 - 1 + 0 - 46cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + d1f738ed-cbf7-e411-93a4-00219b3e9ee9 - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_shortcut_modifiedby - Append - 1.0.0.0 + lk_profilerule_createdonbehalfby + None + 8.0.0.0 OneToManyRelationship UseCollectionName Details - - - 71ab5302-4071-4b4d-a03e-f701b7d4fe13 - - true - - 1033 - - - - 71ab5302-4071-4b4d-a03e-f701b7d4fe13 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462195,53 +511003,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_shortcut_modifiedby - mspp_modifiedby - mspp_shortcut - mspp_modifiedby + lk_profilerule_createdonbehalfby + createdonbehalfby + channelaccessprofilerule + profileruleid3 - 1 + 0 - 4ecb4c0c-f4ba-f011-bbd3-7c1e52365f30 + d7f738ed-cbf7-e411-93a4-00219b3e9ee9 - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_sitemarker_createdby - Append - 1.0.0.0 + lk_profilerule_modifiedby + None + 8.0.0.0 OneToManyRelationship UseCollectionName Details - - - fc20bcbb-fd02-47e3-b524-220698759fb5 - - true - - 1033 - - - - fc20bcbb-fd02-47e3-b524-220698759fb5 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462263,53 +511057,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_sitemarker_createdby - mspp_createdby - mspp_sitemarker - mspp_createdby + lk_profilerule_modifiedby + modifiedby + channelaccessprofilerule + profileruleid2 - 1 + 0 - 57cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + ddf738ed-cbf7-e411-93a4-00219b3e9ee9 - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_sitemarker_modifiedby - Append - 1.0.0.0 + lk_profilerule_modifiedonbehalfby + None + 8.0.0.0 OneToManyRelationship UseCollectionName Details - - - 40c07cc8-90e9-498f-98b7-79068744ad62 - - true - - 1033 - - - - 40c07cc8-90e9-498f-98b7-79068744ad62 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462331,53 +511111,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_sitemarker_modifiedby - mspp_modifiedby - mspp_sitemarker - mspp_modifiedby + lk_profilerule_modifiedonbehalfby + modifiedonbehalfby + channelaccessprofilerule + channelaccessprofileruleid_systemuser - 1 + 0 - 5fcb4c0c-f4ba-f011-bbd3-7c1e52365f30 + eff738ed-cbf7-e411-93a4-00219b3e9ee9 - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_sitesetting_createdby - Append - 1.0.0.0 + user_profilerule + None + 8.0.0.0 OneToManyRelationship UseCollectionName Details - - - 827a0c61-1b53-4919-b3f6-e3c65be958ee - - true - - 1033 - - - - 827a0c61-1b53-4919-b3f6-e3c65be958ee - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462399,53 +511165,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_sitesetting_createdby - mspp_createdby - mspp_sitesetting - mspp_createdby + user_profilerule + owninguser + channelaccessprofilerule + userid - 1 + 0 - 68cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + fcd640ee-6bcd-4736-b5c9-f37bac7283f6 - true + false false iscustomizable false true - true - mspp_systemuser_mspp_sitesetting_modifiedby - Append - 1.0.0.0 + false + lk_timezonerule_modifiedby + None + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 9320430d-9aed-4774-9db6-4d51cfac9242 - - true - - 1033 - - - - 9320430d-9aed-4774-9db6-4d51cfac9242 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462467,53 +511219,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_sitesetting_modifiedby - mspp_modifiedby - mspp_sitesetting - mspp_modifiedby + lk_timezonerule_modifiedby + modifiedby + timezonerule + modifiedby - 1 + 0 - 70cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 93ca5bee-c468-4ef2-90ec-ce19436a5dc2 - true + false false iscustomizable false true - true - mspp_systemuser_mspp_webfile_createdby - Append - 1.0.0.0 + false + lk_sdkmessageprocessingstepsecureconfig_modifiedonbehalfby + None + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 8ba56bbd-4044-4cea-87a8-e46a9c531722 - - true - - 1033 - - - - 8ba56bbd-4044-4cea-87a8-e46a9c531722 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462535,17 +511273,17 @@ false systemuserid systemuser - mspp_systemuser_mspp_webfile_createdby - mspp_createdby - mspp_webfile - mspp_createdby + lk_sdkmessageprocessingstepsecureconfig_modifiedonbehalfby + modifiedonbehalfby + sdkmessageprocessingstepsecureconfig + modifiedonbehalfby - 1 + 0 - 79cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 50957cef-fca7-4587-9f47-85603d8f8a11 - true + false false iscustomizable @@ -462553,35 +511291,21 @@ true true - mspp_systemuser_mspp_webfile_modifiedby - Append - 1.0.0.0 + lk_asyncoperation_modifiedby + None + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - cd2af0b8-23a7-4432-a50c-f493faedf05e - - true - - 1033 - - - - cd2af0b8-23a7-4432-a50c-f493faedf05e - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462603,53 +511327,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webfile_modifiedby - mspp_modifiedby - mspp_webfile - mspp_modifiedby + lk_asyncoperation_modifiedby + modifiedby + asyncoperation + modifiedby - 1 + 0 - 81cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 46ba8cef-af55-41e0-9d70-5189522451e9 - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_webform_createdby - Append - 1.0.0.0 + lk_fax_createdonbehalfby + None + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - f5197941-4d33-4b8c-a92e-b7ec740220ff - - true - - 1033 - - - - f5197941-4d33-4b8c-a92e-b7ec740220ff - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462671,53 +511381,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webform_createdby - mspp_createdby - mspp_webform - mspp_createdby + lk_fax_createdonbehalfby + createdonbehalfby + fax + createdonbehalfby_fax - 1 + 0 - 8acb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 680f9aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_webform_modifiedby - Append - 1.0.0.0 + lk_msdyn_aioptimizationprivatedata_createdby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - b421a53f-4b74-4c7d-9409-e605dfea9b6f - - true - - 1033 - - - - b421a53f-4b74-4c7d-9409-e605dfea9b6f - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462739,53 +511435,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webform_modifiedby - mspp_modifiedby - mspp_webform - mspp_modifiedby + lk_msdyn_aioptimizationprivatedata_createdby + createdby + msdyn_aioptimizationprivatedata + createdby - 1 + 0 - 92cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 720f9aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_webformmetadata_createdby - Append - 1.0.0.0 + lk_msdyn_aioptimizationprivatedata_createdonbehalfby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 4444ae5c-397b-461b-91ae-9f1741e1328c - - true - - 1033 - - - - 4444ae5c-397b-461b-91ae-9f1741e1328c - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462807,53 +511489,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webformmetadata_createdby - mspp_createdby - mspp_webformmetadata - mspp_createdby + lk_msdyn_aioptimizationprivatedata_createdonbehalfby + createdonbehalfby + msdyn_aioptimizationprivatedata + createdonbehalfby - 1 + 0 - 9bcb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 780f9aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_webformmetadata_modifiedby - Append - 1.0.0.0 + lk_msdyn_aioptimizationprivatedata_modifiedby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 9c910c23-63a0-4be4-8c63-c8afcfb55d5e - - true - - 1033 - - - - 9c910c23-63a0-4be4-8c63-c8afcfb55d5e - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462875,53 +511543,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webformmetadata_modifiedby - mspp_modifiedby - mspp_webformmetadata - mspp_modifiedby + lk_msdyn_aioptimizationprivatedata_modifiedby + modifiedby + msdyn_aioptimizationprivatedata + modifiedby - 1 + 0 - a3cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 7e0f9aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_webformstep_createdby - Append - 1.0.0.0 + lk_msdyn_aioptimizationprivatedata_modifiedonbehalfby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 7be3d784-a087-43fb-a732-7de9c4fb8551 - - true - - 1033 - - - - 7be3d784-a087-43fb-a732-7de9c4fb8551 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -462943,53 +511597,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webformstep_createdby - mspp_createdby - mspp_webformstep - mspp_createdby + lk_msdyn_aioptimizationprivatedata_modifiedonbehalfby + modifiedonbehalfby + msdyn_aioptimizationprivatedata + modifiedonbehalfby - 1 + 0 - accb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 900f9aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_webformstep_modifiedby - Append - 1.0.0.0 + user_msdyn_aioptimizationprivatedata + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 2327f36c-0286-45f1-b376-96ac4e7f0ca1 - - true - - 1033 - - - - 2327f36c-0286-45f1-b376-96ac4e7f0ca1 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463011,53 +511651,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webformstep_modifiedby - mspp_modifiedby - mspp_webformstep - mspp_modifiedby + user_msdyn_aioptimizationprivatedata + owninguser + msdyn_aioptimizationprivatedata + owninguser - 1 + 0 - b4cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 65109aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_weblink_createdby - Append - 1.0.0.0 + lk_msdyn_aitestcase_createdby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 6753138b-a9f4-4c08-9f2d-d9f71ce48c0c - - true - - 1033 - - - - 6753138b-a9f4-4c08-9f2d-d9f71ce48c0c - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463079,53 +511705,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_weblink_createdby - mspp_createdby - mspp_weblink - mspp_createdby + lk_msdyn_aitestcase_createdby + createdby + msdyn_aitestcase + createdby - 1 + 0 - bdcb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 6b109aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_weblink_modifiedby - Append - 1.0.0.0 + lk_msdyn_aitestcase_createdonbehalfby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - bbe64c30-6e7e-4a9c-98b4-90dee8704bb6 - - true - - 1033 - - - - bbe64c30-6e7e-4a9c-98b4-90dee8704bb6 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463147,53 +511759,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_weblink_modifiedby - mspp_modifiedby - mspp_weblink - mspp_modifiedby + lk_msdyn_aitestcase_createdonbehalfby + createdonbehalfby + msdyn_aitestcase + createdonbehalfby - 1 + 0 - c5cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 71109aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_weblinkset_createdby - Append - 1.0.0.0 + lk_msdyn_aitestcase_modifiedby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - bff1c4cd-0350-47c6-ae8a-c7a875e6995b - - true - - 1033 - - - - bff1c4cd-0350-47c6-ae8a-c7a875e6995b - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463215,53 +511813,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_weblinkset_createdby - mspp_createdby - mspp_weblinkset - mspp_createdby + lk_msdyn_aitestcase_modifiedby + modifiedby + msdyn_aitestcase + modifiedby - 1 + 0 - cecb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 77109aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_weblinkset_modifiedby - Append - 1.0.0.0 + lk_msdyn_aitestcase_modifiedonbehalfby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - ca73a121-f0c6-4c29-96bb-0cee993c6a2a - - true - - 1033 - - - - ca73a121-f0c6-4c29-96bb-0cee993c6a2a - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463283,53 +511867,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_weblinkset_modifiedby - mspp_modifiedby - mspp_weblinkset - mspp_modifiedby + lk_msdyn_aitestcase_modifiedonbehalfby + modifiedonbehalfby + msdyn_aitestcase + modifiedonbehalfby - 1 + 0 - d6cb4c0c-f4ba-f011-bbd3-7c1e52365f30 + 89109aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_webpage_createdby - Append - 1.0.0.0 + user_msdyn_aitestcase + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 1ff46900-b5e2-432c-9f91-51fca3692e38 - - true - - 1033 - - - - 1ff46900-b5e2-432c-9f91-51fca3692e38 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463351,53 +511921,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webpage_createdby - mspp_createdby - mspp_webpage - mspp_createdby + user_msdyn_aitestcase + owninguser + msdyn_aitestcase + owninguser - 1 + 0 - 42674c12-f4ba-f011-bbd3-7c1e52365f30 + 9d119aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_webpage_modifiedby - Append - 1.0.0.0 + lk_msdyn_aitestcasedocument_createdby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 1a856d01-b2f3-4a3c-8756-1673e35e3ff1 - - true - - 1033 - - - - 1a856d01-b2f3-4a3c-8756-1673e35e3ff1 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463419,53 +511975,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webpage_modifiedby - mspp_modifiedby - mspp_webpage - mspp_modifiedby + lk_msdyn_aitestcasedocument_createdby + createdby + msdyn_aitestcasedocument + createdby - 1 + 0 - 4a674c12-f4ba-f011-bbd3-7c1e52365f30 + a3119aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_webpageaccesscontrolrule_createdby - Append - 1.0.0.0 + lk_msdyn_aitestcasedocument_createdonbehalfby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - c14874e5-3c59-44aa-8324-2d84c9aca1d6 - - true - - 1033 - - - - c14874e5-3c59-44aa-8324-2d84c9aca1d6 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463487,53 +512029,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webpageaccesscontrolrule_createdby - mspp_createdby - mspp_webpageaccesscontrolrule - mspp_createdby + lk_msdyn_aitestcasedocument_createdonbehalfby + createdonbehalfby + msdyn_aitestcasedocument + createdonbehalfby - 1 + 0 - 53674c12-f4ba-f011-bbd3-7c1e52365f30 + a9119aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_webpageaccesscontrolrule_modifiedby - Append - 1.0.0.0 + lk_msdyn_aitestcasedocument_modifiedby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 2b7950b7-d220-4ad0-b3e6-272e7d9dd141 - - true - - 1033 - - - - 2b7950b7-d220-4ad0-b3e6-272e7d9dd141 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463555,53 +512083,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webpageaccesscontrolrule_modifiedby - mspp_modifiedby - mspp_webpageaccesscontrolrule - mspp_modifiedby + lk_msdyn_aitestcasedocument_modifiedby + modifiedby + msdyn_aitestcasedocument + modifiedby - 1 + 0 - 5b674c12-f4ba-f011-bbd3-7c1e52365f30 + af119aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_webrole_createdby - Append - 1.0.0.0 + lk_msdyn_aitestcasedocument_modifiedonbehalfby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 6daa58db-96dd-49c9-b549-c43cd8b4d76a - - true - - 1033 - - - - 6daa58db-96dd-49c9-b549-c43cd8b4d76a - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463623,53 +512137,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webrole_createdby - mspp_createdby - mspp_webrole - mspp_createdby + lk_msdyn_aitestcasedocument_modifiedonbehalfby + modifiedonbehalfby + msdyn_aitestcasedocument + modifiedonbehalfby - 1 + 0 - 64674c12-f4ba-f011-bbd3-7c1e52365f30 + c1119aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_webrole_modifiedby - Append - 1.0.0.0 + user_msdyn_aitestcasedocument + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 1f19e813-48f5-4052-bbe0-7c4a61576447 - - true - - 1033 - - - - 1f19e813-48f5-4052-bbe0-7c4a61576447 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463691,53 +512191,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webrole_modifiedby - mspp_modifiedby - mspp_webrole - mspp_modifiedby + user_msdyn_aitestcasedocument + owninguser + msdyn_aitestcasedocument + owninguser - 1 + 0 - 6c674c12-f4ba-f011-bbd3-7c1e52365f30 + 62129aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_website_createdby - Append - 1.0.0.0 + lk_msdyn_aitestcaseinput_createdby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 41256b2c-7031-4e09-831e-3e0029d526b3 - - true - - 1033 - - - - 41256b2c-7031-4e09-831e-3e0029d526b3 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463759,53 +512245,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_website_createdby - mspp_createdby - mspp_website - mspp_createdby + lk_msdyn_aitestcaseinput_createdby + createdby + msdyn_aitestcaseinput + createdby - 1 + 0 - 75674c12-f4ba-f011-bbd3-7c1e52365f30 + 68129aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_website_modifiedby - Append - 1.0.0.0 + lk_msdyn_aitestcaseinput_createdonbehalfby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 6b4ef3b8-8076-4b3a-bc71-78e424df8141 - - true - - 1033 - - - - 6b4ef3b8-8076-4b3a-bc71-78e424df8141 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463827,53 +512299,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_website_modifiedby - mspp_modifiedby - mspp_website - mspp_modifiedby + lk_msdyn_aitestcaseinput_createdonbehalfby + createdonbehalfby + msdyn_aitestcaseinput + createdonbehalfby - 1 + 0 - 7d674c12-f4ba-f011-bbd3-7c1e52365f30 + 6e129aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_websiteaccess_createdby - Append - 1.0.0.0 + lk_msdyn_aitestcaseinput_modifiedby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - a91672d9-aeeb-4692-94be-6d80f0d9c8d1 - - true - - 1033 - - - - a91672d9-aeeb-4692-94be-6d80f0d9c8d1 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463895,53 +512353,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_websiteaccess_createdby - mspp_createdby - mspp_websiteaccess - mspp_createdby + lk_msdyn_aitestcaseinput_modifiedby + modifiedby + msdyn_aitestcaseinput + modifiedby - 1 + 0 - 86674c12-f4ba-f011-bbd3-7c1e52365f30 + 74129aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_websiteaccess_modifiedby - Append - 1.0.0.0 + lk_msdyn_aitestcaseinput_modifiedonbehalfby + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - d3fee299-bd2c-412c-bebc-48e804af5d6c - - true - - 1033 - - - - d3fee299-bd2c-412c-bebc-48e804af5d6c - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -463963,53 +512407,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_websiteaccess_modifiedby - mspp_modifiedby - mspp_websiteaccess - mspp_modifiedby + lk_msdyn_aitestcaseinput_modifiedonbehalfby + modifiedonbehalfby + msdyn_aitestcaseinput + modifiedonbehalfby - 1 + 0 - 8e674c12-f4ba-f011-bbd3-7c1e52365f30 + 86129aef-bfba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - mspp_systemuser_mspp_websitelanguage_createdby - Append - 1.0.0.0 + user_msdyn_aitestcaseinput + None + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 88e94634-84e1-4ee6-8598-56185731f587 - - true - - 1033 - - - - 88e94634-84e1-4ee6-8598-56185731f587 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -464031,17 +512461,17 @@ false systemuserid systemuser - mspp_systemuser_mspp_websitelanguage_createdby - mspp_createdby - mspp_websitelanguage - mspp_createdby + user_msdyn_aitestcaseinput + owninguser + msdyn_aitestcaseinput + owninguser - 1 + 0 - 97674c12-f4ba-f011-bbd3-7c1e52365f30 + 639c0cf0-2cde-4e70-9111-fd812a8319fa - true + false false iscustomizable @@ -464049,35 +512479,21 @@ true true - mspp_systemuser_mspp_websitelanguage_modifiedby - Append - 1.0.0.0 + lk_customcontrol_modifiedby + None + 8.0.0.0 OneToManyRelationship UseCollectionName Details - - - 84db91e0-c5fa-41f2-98a5-717c26b6d587 - - true - - 1033 - - - - 84db91e0-c5fa-41f2-98a5-717c26b6d587 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -464099,53 +512515,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_websitelanguage_modifiedby - mspp_modifiedby - mspp_websitelanguage - mspp_modifiedby + lk_customcontrol_modifiedby + modifiedby + customcontrol + modifiedby - 1 + 0 - 9f674c12-f4ba-f011-bbd3-7c1e52365f30 + f78254f0-a4c5-4b94-8993-a2de4c935fea - true + false false iscustomizable - false + true true true - mspp_systemuser_mspp_webtemplate_createdby - Append - 1.0.0.0 + lk_translationprocess_createdonbehalfby + None + 8.2.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - ea7bfd05-d46b-44b6-a25b-c8803d99a6cd - - true - - 1033 - - - - ea7bfd05-d46b-44b6-a25b-c8803d99a6cd - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -464167,53 +512569,39 @@ false systemuserid systemuser - mspp_systemuser_mspp_webtemplate_createdby - mspp_createdby - mspp_webtemplate - mspp_createdby + lk_translationprocess_createdonbehalfby + createdonbehalfby + translationprocess + createdonbehalfbyname - 1 + 0 - a8674c12-f4ba-f011-bbd3-7c1e52365f30 + 76f665f0-baba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true + false true - mspp_systemuser_mspp_webtemplate_modifiedby - Append - 1.0.0.0 + lk_flowmachine_createdby + None + 1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 80235a69-6a9d-4dba-8f5c-ef6d916b6d3a - - true - - 1033 - - - - 80235a69-6a9d-4dba-8f5c-ef6d916b6d3a - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -464235,27 +512623,27 @@ false systemuserid systemuser - mspp_systemuser_mspp_webtemplate_modifiedby - mspp_modifiedby - mspp_webtemplate - mspp_modifiedby + lk_flowmachine_createdby + createdby + flowmachine + createdby - 1 + 0 - d393138d-f4ba-f011-bbd3-7c1e52365f30 + 7cf665f0-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerpagesscanreport_createdby + lk_flowmachine_createdonbehalfby None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -464289,27 +512677,27 @@ false systemuserid systemuser - lk_powerpagesscanreport_createdby - createdby - powerpagesscanreport - createdby + lk_flowmachine_createdonbehalfby + createdonbehalfby + flowmachine + createdonbehalfby 0 - d993138d-f4ba-f011-bbd3-7c1e52365f30 + 82f665f0-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_powerpagesscanreport_createdonbehalfby + lk_flowmachine_modifiedby None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -464343,27 +512731,27 @@ false systemuserid systemuser - lk_powerpagesscanreport_createdonbehalfby - createdonbehalfby - powerpagesscanreport - createdonbehalfby + lk_flowmachine_modifiedby + modifiedby + flowmachine + modifiedby 0 - df93138d-f4ba-f011-bbd3-7c1e52365f30 + 88f665f0-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerpagesscanreport_modifiedby + lk_flowmachine_modifiedonbehalfby None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -464397,27 +512785,27 @@ false systemuserid systemuser - lk_powerpagesscanreport_modifiedby - modifiedby - powerpagesscanreport - modifiedby + lk_flowmachine_modifiedonbehalfby + modifiedonbehalfby + flowmachine + modifiedonbehalfby 0 - e593138d-f4ba-f011-bbd3-7c1e52365f30 + 9af665f0-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_powerpagesscanreport_modifiedonbehalfby + user_flowmachine None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -464451,15 +512839,15 @@ false systemuserid systemuser - lk_powerpagesscanreport_modifiedonbehalfby - modifiedonbehalfby - powerpagesscanreport - modifiedonbehalfby + user_flowmachine + owninguser + flowmachine + owninguser 0 - f793138d-f4ba-f011-bbd3-7c1e52365f30 + 96f765f0-baba-f011-bbd3-7c1e52365f30 false @@ -464469,9 +512857,9 @@ false true - user_powerpagesscanreport + lk_flowmachinegroup_createdby None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -464505,15 +512893,15 @@ false systemuserid systemuser - user_powerpagesscanreport - owninguser - powerpagesscanreport - owninguser + lk_flowmachinegroup_createdby + createdby + flowmachinegroup + createdby 0 - da94138d-f4ba-f011-bbd3-7c1e52365f30 + 9cf765f0-baba-f011-bbd3-7c1e52365f30 false @@ -464523,9 +512911,9 @@ false true - lk_powerpagesddosalert_createdby + lk_flowmachinegroup_createdonbehalfby None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -464559,27 +512947,27 @@ false systemuserid systemuser - lk_powerpagesddosalert_createdby - createdby - powerpagesddosalert - createdby + lk_flowmachinegroup_createdonbehalfby + createdonbehalfby + flowmachinegroup + createdonbehalfby 0 - e094138d-f4ba-f011-bbd3-7c1e52365f30 + a2f765f0-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_powerpagesddosalert_createdonbehalfby + lk_flowmachinegroup_modifiedby None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -464613,15 +513001,15 @@ false systemuserid systemuser - lk_powerpagesddosalert_createdonbehalfby - createdonbehalfby - powerpagesddosalert - createdonbehalfby + lk_flowmachinegroup_modifiedby + modifiedby + flowmachinegroup + modifiedby 0 - e694138d-f4ba-f011-bbd3-7c1e52365f30 + a8f765f0-baba-f011-bbd3-7c1e52365f30 false @@ -464631,9 +513019,9 @@ false true - lk_powerpagesddosalert_modifiedby + lk_flowmachinegroup_modifiedonbehalfby None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -464667,27 +513055,27 @@ false systemuserid systemuser - lk_powerpagesddosalert_modifiedby - modifiedby - powerpagesddosalert - modifiedby + lk_flowmachinegroup_modifiedonbehalfby + modifiedonbehalfby + flowmachinegroup + modifiedonbehalfby 0 - ec94138d-f4ba-f011-bbd3-7c1e52365f30 + baf765f0-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_powerpagesddosalert_modifiedonbehalfby + user_flowmachinegroup None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -464721,15 +513109,15 @@ false systemuserid systemuser - lk_powerpagesddosalert_modifiedonbehalfby - modifiedonbehalfby - powerpagesddosalert - modifiedonbehalfby + user_flowmachinegroup + owninguser + flowmachinegroup + owninguser 0 - fe94138d-f4ba-f011-bbd3-7c1e52365f30 + 86f865f0-baba-f011-bbd3-7c1e52365f30 false @@ -464739,9 +513127,9 @@ false true - user_powerpagesddosalert + lk_flowmachineimage_createdby None - 1.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -464775,27 +513163,27 @@ false systemuserid systemuser - user_powerpagesddosalert - owninguser - powerpagesddosalert - owninguser + lk_flowmachineimage_createdby + createdby + flowmachineimage + createdby 0 - a995138d-f4ba-f011-bbd3-7c1e52365f30 + 8cf865f0-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerpageslog_createdby + lk_flowmachineimage_createdonbehalfby None - 1.0.0.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -464829,15 +513217,15 @@ false systemuserid systemuser - lk_powerpageslog_createdby - createdby - powerpageslog - createdby + lk_flowmachineimage_createdonbehalfby + createdonbehalfby + flowmachineimage + createdonbehalfby 0 - af95138d-f4ba-f011-bbd3-7c1e52365f30 + 92f865f0-baba-f011-bbd3-7c1e52365f30 false @@ -464847,9 +513235,9 @@ false true - lk_powerpageslog_createdonbehalfby + lk_flowmachineimage_modifiedby None - 1.0.0.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -464883,27 +513271,27 @@ false systemuserid systemuser - lk_powerpageslog_createdonbehalfby - createdonbehalfby - powerpageslog - createdonbehalfby + lk_flowmachineimage_modifiedby + modifiedby + flowmachineimage + modifiedby 0 - b595138d-f4ba-f011-bbd3-7c1e52365f30 + 98f865f0-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - lk_powerpageslog_modifiedby + lk_flowmachineimage_modifiedonbehalfby None - 1.0.0.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -464937,15 +513325,15 @@ false systemuserid systemuser - lk_powerpageslog_modifiedby - modifiedby - powerpageslog - modifiedby + lk_flowmachineimage_modifiedonbehalfby + modifiedonbehalfby + flowmachineimage + modifiedonbehalfby 0 - bb95138d-f4ba-f011-bbd3-7c1e52365f30 + aaf865f0-baba-f011-bbd3-7c1e52365f30 false @@ -464955,9 +513343,9 @@ false true - lk_powerpageslog_modifiedonbehalfby + user_flowmachineimage None - 1.0.0.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -464991,27 +513379,81 @@ false systemuserid systemuser - lk_powerpageslog_modifiedonbehalfby + user_flowmachineimage + owninguser + flowmachineimage + owninguser + + 0 + + + bcff7bf0-90f5-4932-9a66-2c348e12fbb8 + + false + + false + iscustomizable + true + + true + true + lk_letter_modifiedonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_letter_modifiedonbehalfby modifiedonbehalfby - powerpageslog - modifiedonbehalfby + letter + modifiedonbehalfby_letter 0 - cd95138d-f4ba-f011-bbd3-7c1e52365f30 + b84faff0-ae76-44f1-95ca-ebfe66d1cd2f false - true + false iscustomizable false - false - true - user_powerpageslog + true + false + lk_bulkdeleteoperation_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -465045,25 +513487,25 @@ false systemuserid systemuser - user_powerpageslog - owninguser - powerpageslog - owninguser + lk_bulkdeleteoperation_modifiedonbehalfby + modifiedonbehalfby + bulkdeleteoperation + modifiedonbehalfby 0 - 3496138d-f4ba-f011-bbd3-7c1e52365f30 + ebe9c3f0-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_powerpagesmanagedidentity_createdby + lk_aiplugininstance_createdby None 1.0.0.0 OneToManyRelationship @@ -465099,15 +513541,15 @@ false systemuserid systemuser - lk_powerpagesmanagedidentity_createdby + lk_aiplugininstance_createdby createdby - powerpagesmanagedidentity + aiplugininstance createdby 0 - 3a96138d-f4ba-f011-bbd3-7c1e52365f30 + f1e9c3f0-bdba-f011-bbd3-7c1e52365f30 false @@ -465117,7 +513559,7 @@ false true - lk_powerpagesmanagedidentity_createdonbehalfby + lk_aiplugininstance_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -465153,25 +513595,25 @@ false systemuserid systemuser - lk_powerpagesmanagedidentity_createdonbehalfby + lk_aiplugininstance_createdonbehalfby createdonbehalfby - powerpagesmanagedidentity + aiplugininstance createdonbehalfby 0 - 4096138d-f4ba-f011-bbd3-7c1e52365f30 + f7e9c3f0-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_powerpagesmanagedidentity_modifiedby + lk_aiplugininstance_modifiedby None 1.0.0.0 OneToManyRelationship @@ -465207,15 +513649,15 @@ false systemuserid systemuser - lk_powerpagesmanagedidentity_modifiedby + lk_aiplugininstance_modifiedby modifiedby - powerpagesmanagedidentity + aiplugininstance modifiedby 0 - 4696138d-f4ba-f011-bbd3-7c1e52365f30 + fde9c3f0-bdba-f011-bbd3-7c1e52365f30 false @@ -465225,7 +513667,7 @@ false true - lk_powerpagesmanagedidentity_modifiedonbehalfby + lk_aiplugininstance_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -465261,25 +513703,25 @@ false systemuserid systemuser - lk_powerpagesmanagedidentity_modifiedonbehalfby + lk_aiplugininstance_modifiedonbehalfby modifiedonbehalfby - powerpagesmanagedidentity + aiplugininstance modifiedonbehalfby 0 - 5896138d-f4ba-f011-bbd3-7c1e52365f30 + 0feac3f0-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_powerpagesmanagedidentity + user_aiplugininstance None 1.0.0.0 OneToManyRelationship @@ -465315,15 +513757,15 @@ false systemuserid systemuser - user_powerpagesmanagedidentity + user_aiplugininstance owninguser - powerpagesmanagedidentity + aiplugininstance owninguser 0 - 30d11393-f4ba-f011-bbd3-7c1e52365f30 + d8ebc3f0-bdba-f011-bbd3-7c1e52365f30 false @@ -465333,7 +513775,7 @@ false true - lk_powerpagessiteaifeedback_createdby + lk_aipluginoperation_createdby None 1.0.0.0 OneToManyRelationship @@ -465369,15 +513811,15 @@ false systemuserid systemuser - lk_powerpagessiteaifeedback_createdby + lk_aipluginoperation_createdby createdby - powerpagessiteaifeedback + aipluginoperation createdby 0 - 36d11393-f4ba-f011-bbd3-7c1e52365f30 + deebc3f0-bdba-f011-bbd3-7c1e52365f30 false @@ -465387,7 +513829,7 @@ false true - lk_powerpagessiteaifeedback_createdonbehalfby + lk_aipluginoperation_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -465423,15 +513865,15 @@ false systemuserid systemuser - lk_powerpagessiteaifeedback_createdonbehalfby + lk_aipluginoperation_createdonbehalfby createdonbehalfby - powerpagessiteaifeedback + aipluginoperation createdonbehalfby 0 - 3cd11393-f4ba-f011-bbd3-7c1e52365f30 + e4ebc3f0-bdba-f011-bbd3-7c1e52365f30 false @@ -465441,7 +513883,7 @@ false true - lk_powerpagessiteaifeedback_modifiedby + lk_aipluginoperation_modifiedby None 1.0.0.0 OneToManyRelationship @@ -465477,15 +513919,15 @@ false systemuserid systemuser - lk_powerpagessiteaifeedback_modifiedby + lk_aipluginoperation_modifiedby modifiedby - powerpagessiteaifeedback + aipluginoperation modifiedby 0 - 42d11393-f4ba-f011-bbd3-7c1e52365f30 + eaebc3f0-bdba-f011-bbd3-7c1e52365f30 false @@ -465495,7 +513937,7 @@ false true - lk_powerpagessiteaifeedback_modifiedonbehalfby + lk_aipluginoperation_modifiedonbehalfby None 1.0.0.0 OneToManyRelationship @@ -465531,15 +513973,15 @@ false systemuserid systemuser - lk_powerpagessiteaifeedback_modifiedonbehalfby + lk_aipluginoperation_modifiedonbehalfby modifiedonbehalfby - powerpagessiteaifeedback + aipluginoperation modifiedonbehalfby 0 - 54d11393-f4ba-f011-bbd3-7c1e52365f30 + fcebc3f0-bdba-f011-bbd3-7c1e52365f30 false @@ -465549,7 +513991,7 @@ false true - user_powerpagessiteaifeedback + user_aipluginoperation None 1.0.0.0 OneToManyRelationship @@ -465585,25 +514027,25 @@ false systemuserid systemuser - user_powerpagessiteaifeedback + user_aipluginoperation owninguser - powerpagessiteaifeedback + aipluginoperation owninguser 0 - b87b3379-f5ba-f011-bbd3-7c1e52365f30 + caedc3f0-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_mspcat_catalogsubmissionfiles_createdby + lk_aipluginoperationparameter_createdby None 1.0 OneToManyRelationship @@ -465639,15 +514081,15 @@ false systemuserid systemuser - lk_mspcat_catalogsubmissionfiles_createdby + lk_aipluginoperationparameter_createdby createdby - mspcat_catalogsubmissionfiles + aipluginoperationparameter createdby 0 - be7b3379-f5ba-f011-bbd3-7c1e52365f30 + d0edc3f0-bdba-f011-bbd3-7c1e52365f30 false @@ -465657,7 +514099,7 @@ false true - lk_mspcat_catalogsubmissionfiles_createdonbehalfby + lk_aipluginoperationparameter_createdonbehalfby None 1.0 OneToManyRelationship @@ -465693,25 +514135,25 @@ false systemuserid systemuser - lk_mspcat_catalogsubmissionfiles_createdonbehalfby + lk_aipluginoperationparameter_createdonbehalfby createdonbehalfby - mspcat_catalogsubmissionfiles + aipluginoperationparameter createdonbehalfby 0 - c47b3379-f5ba-f011-bbd3-7c1e52365f30 + d6edc3f0-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_mspcat_catalogsubmissionfiles_modifiedby + lk_aipluginoperationparameter_modifiedby None 1.0 OneToManyRelationship @@ -465747,15 +514189,15 @@ false systemuserid systemuser - lk_mspcat_catalogsubmissionfiles_modifiedby + lk_aipluginoperationparameter_modifiedby modifiedby - mspcat_catalogsubmissionfiles + aipluginoperationparameter modifiedby 0 - ca7b3379-f5ba-f011-bbd3-7c1e52365f30 + dcedc3f0-bdba-f011-bbd3-7c1e52365f30 false @@ -465765,7 +514207,7 @@ false true - lk_mspcat_catalogsubmissionfiles_modifiedonbehalfby + lk_aipluginoperationparameter_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -465801,25 +514243,25 @@ false systemuserid systemuser - lk_mspcat_catalogsubmissionfiles_modifiedonbehalfby + lk_aipluginoperationparameter_modifiedonbehalfby modifiedonbehalfby - mspcat_catalogsubmissionfiles + aipluginoperationparameter modifiedonbehalfby 0 - dc7b3379-f5ba-f011-bbd3-7c1e52365f30 + eeedc3f0-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_mspcat_catalogsubmissionfiles + user_aipluginoperationparameter None 1.0 OneToManyRelationship @@ -465855,15 +514297,15 @@ false systemuserid systemuser - user_mspcat_catalogsubmissionfiles + user_aipluginoperationparameter owninguser - mspcat_catalogsubmissionfiles + aipluginoperationparameter owninguser 0 - af7c3379-f5ba-f011-bbd3-7c1e52365f30 + 5715fcf0-6a01-f111-8406-6045bde1ab47 false @@ -465873,9 +514315,9 @@ false true - lk_mspcat_packagestore_createdby + lk_msdyn_rtestructuredtemplate_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -465909,15 +514351,15 @@ false systemuserid systemuser - lk_mspcat_packagestore_createdby + lk_msdyn_rtestructuredtemplate_createdby createdby - mspcat_packagestore + msdyn_rtestructuredtemplate createdby 0 - b57c3379-f5ba-f011-bbd3-7c1e52365f30 + 5d15fcf0-6a01-f111-8406-6045bde1ab47 false @@ -465927,9 +514369,9 @@ false true - lk_mspcat_packagestore_createdonbehalfby + lk_msdyn_rtestructuredtemplate_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -465963,15 +514405,15 @@ false systemuserid systemuser - lk_mspcat_packagestore_createdonbehalfby + lk_msdyn_rtestructuredtemplate_createdonbehalfby createdonbehalfby - mspcat_packagestore + msdyn_rtestructuredtemplate createdonbehalfby 0 - bb7c3379-f5ba-f011-bbd3-7c1e52365f30 + 6315fcf0-6a01-f111-8406-6045bde1ab47 false @@ -465981,9 +514423,9 @@ false true - lk_mspcat_packagestore_modifiedby + lk_msdyn_rtestructuredtemplate_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -466017,15 +514459,15 @@ false systemuserid systemuser - lk_mspcat_packagestore_modifiedby + lk_msdyn_rtestructuredtemplate_modifiedby modifiedby - mspcat_packagestore + msdyn_rtestructuredtemplate modifiedby 0 - c17c3379-f5ba-f011-bbd3-7c1e52365f30 + 6915fcf0-6a01-f111-8406-6045bde1ab47 false @@ -466035,9 +514477,9 @@ false true - lk_mspcat_packagestore_modifiedonbehalfby + lk_msdyn_rtestructuredtemplate_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -466071,27 +514513,135 @@ false systemuserid systemuser - lk_mspcat_packagestore_modifiedonbehalfby + lk_msdyn_rtestructuredtemplate_modifiedonbehalfby modifiedonbehalfby - mspcat_packagestore + msdyn_rtestructuredtemplate modifiedonbehalfby 0 - d37c3379-f5ba-f011-bbd3-7c1e52365f30 + 61b800f2-5b8f-44d2-9506-0bf4dcb0ff3b false - true + false + iscustomizable + false + + true + false + lk_sharepointdata_user + None + 6.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_sharepointdata_user + userid + sharepointdata + userid + + 0 + + + 215e0cf2-947f-400f-bde1-fec6dc737b8d + + false + + false iscustomizable true - false + true true - user_mspcat_packagestore + user_phonecall None - 1.0 + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + user_phonecall + owninguser + phonecall + owninguser_phonecall + + 0 + + + 117932f2-fabe-4b1f-bdf7-a211883c392c + + false + + false + iscustomizable + false + + true + false + lk_bulkdeleteoperation_createdonbehalfby + None + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -466125,27 +514675,27 @@ false systemuserid systemuser - user_mspcat_packagestore - owninguser - mspcat_packagestore - owninguser + lk_bulkdeleteoperation_createdonbehalfby + createdonbehalfby + bulkdeleteoperation + createdonbehalfby 0 - 67436116-f6ba-f011-bbd3-7c1e52365f30 + f7b73bf2-2d1c-4d7e-b9af-ad187bd705d5 false - true + false iscustomizable - true + false - false - true - lk_indexedtrait_createdby + true + false + lk_webwizard_modifiedby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -466179,39 +514729,39 @@ false systemuserid systemuser - lk_indexedtrait_createdby - createdby - indexedtrait - createdby + lk_webwizard_modifiedby + modifiedby + webwizard + modifiedby 0 - 6d436116-f6ba-f011-bbd3-7c1e52365f30 + 63a84ff2-c0ba-f011-bbd3-7c1e52365f30 - false + true - true + false iscustomizable true - false + true true - lk_indexedtrait_createdonbehalfby + systemuser_bot_publishedby None - 1.0.0.0 + 1.0.0.50 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -466219,7 +514769,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -466233,27 +514783,27 @@ false systemuserid systemuser - lk_indexedtrait_createdonbehalfby - createdonbehalfby - indexedtrait - createdonbehalfby + systemuser_bot_publishedby + publishedby + bot + publishedby 0 - 73436116-f6ba-f011-bbd3-7c1e52365f30 + f18260f2-10c4-4559-99a9-04881fdbb809 false - true + false iscustomizable - true + false - false + true true - lk_indexedtrait_modifiedby + lk_recurrencerulebase_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -466287,27 +514837,27 @@ false systemuserid systemuser - lk_indexedtrait_modifiedby - modifiedby - indexedtrait - modifiedby + lk_recurrencerulebase_createdonbehalfby + createdonbehalfby + recurrencerule + createdonbehalfby 0 - 79436116-f6ba-f011-bbd3-7c1e52365f30 + d20063f2-43a0-48f3-a8ed-fe51ad4f1ddd false - true + false iscustomizable true - false + true true - lk_indexedtrait_modifiedonbehalfby + lk_queueitem_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -466341,27 +514891,27 @@ false systemuserid systemuser - lk_indexedtrait_modifiedonbehalfby - modifiedonbehalfby - indexedtrait - modifiedonbehalfby + lk_queueitem_createdonbehalfby + createdonbehalfby + queueitem + createdonbehalfby 0 - 8b436116-f6ba-f011-bbd3-7c1e52365f30 + ac332ef3-44aa-4c14-91fe-6d082c6d86cf false - true + false iscustomizable - true + false - false + true true - user_indexedtrait + lk_organization_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -466395,27 +514945,27 @@ false systemuserid systemuser - user_indexedtrait - owninguser - indexedtrait - owninguser + lk_organization_createdonbehalfby + createdonbehalfby + organization + createdonbehalfby 0 - 3499b91c-f6ba-f011-bbd3-7c1e52365f30 + c6386bf3-60df-4b67-bd4d-4ef9533fad71 false - true + false iscustomizable true - false + true true - lk_processorregistration_createdby + lk_team_modifiedonbehalfby None - 1.0.0.3 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -466449,30 +514999,30 @@ false systemuserid systemuser - lk_processorregistration_createdby - createdby - processorregistration - createdby + lk_team_modifiedonbehalfby + modifiedonbehalfby + team + modifiedonbehalfby 0 - 3a99b91c-f6ba-f011-bbd3-7c1e52365f30 + ca1dabf3-d5ac-4b7d-a69d-83854fd8eb16 false - true + false iscustomizable true - false + true true - lk_processorregistration_createdonbehalfby + lk_appconfigmaster_createdby None - 1.0.0.3 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -466503,27 +515053,27 @@ false systemuserid systemuser - lk_processorregistration_createdonbehalfby - createdonbehalfby - processorregistration - createdonbehalfby + systemuser_appconfigmaster_createdby + createdby + appconfigmaster + appconfigmaster_createdby 0 - 4099b91c-f6ba-f011-bbd3-7c1e52365f30 + 0979aef3-2b5f-4c4f-bcf4-e072b2e6ffe8 false - true + false iscustomizable true - false + true true - lk_processorregistration_modifiedby + lk_businessprocessflowinstancebase_modifiedby None - 1.0.0.3 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -466557,27 +515107,27 @@ false systemuserid systemuser - lk_processorregistration_modifiedby + lk_businessprocessflowinstancebase_modifiedby modifiedby - processorregistration + businessprocessflowinstance modifiedby 0 - 4699b91c-f6ba-f011-bbd3-7c1e52365f30 + 9b6dedf3-3834-41b4-ba1a-f8666d3fff9b false - true + false iscustomizable true - false + true true - lk_processorregistration_modifiedonbehalfby + lk_ribboncommand_modifiedby None - 1.0.0.3 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -466611,27 +515161,27 @@ false systemuserid systemuser - lk_processorregistration_modifiedonbehalfby - modifiedonbehalfby - processorregistration - modifiedonbehalfby + lk_ribboncommand_modifiedby + modifiedby + ribboncommand + modifiedby 0 - 5899b91c-f6ba-f011-bbd3-7c1e52365f30 + b94705f4-8348-4606-bd19-4fd1265a0ae4 false - true + false iscustomizable - true + false - false + true true - user_processorregistration + user_routingrule None - 1.0.0.3 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -466665,36 +515215,36 @@ false systemuserid systemuser - user_processorregistration + user_routingrule owninguser - processorregistration + routingrule owninguser 0 - 129ab91c-f6ba-f011-bbd3-7c1e52365f30 + 714834f4-08c3-48ca-a0cf-0eb6aa9c9b25 false - true + false iscustomizable true - false + true true - lk_signal_createdby + systemuser_connections1 None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 100 true false @@ -466719,27 +515269,27 @@ false systemuserid systemuser - lk_signal_createdby - createdby - signal - createdby + systemuser_connections1 + record1id + connection + record1id_systemuser 0 - 189ab91c-f6ba-f011-bbd3-7c1e52365f30 + 703295f4-6603-460d-a2e9-225be7784a34 false - true + false iscustomizable - true + false - false - true - lk_signal_createdonbehalfby + true + false + lk_userapplicationmetadata_createdby None - 1.0.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -466773,15 +515323,15 @@ false systemuserid systemuser - lk_signal_createdonbehalfby - createdonbehalfby - signal - createdonbehalfby + lk_userapplicationmetadata_createdby + createdby + userapplicationmetadata + createdby 0 - 1e9ab91c-f6ba-f011-bbd3-7c1e52365f30 + 89a2aff4-ecba-f011-bbd3-7c1e52365f30 false @@ -466791,7 +515341,7 @@ false true - lk_signal_modifiedby + lk_msdyn_richtextfile_createdby None 1.0.0.0 OneToManyRelationship @@ -466827,15 +515377,15 @@ false systemuserid systemuser - lk_signal_modifiedby - modifiedby - signal - modifiedby + lk_msdyn_richtextfile_createdby + createdby + msdyn_richtextfile + createdby 0 - 259ab91c-f6ba-f011-bbd3-7c1e52365f30 + 8fa2aff4-ecba-f011-bbd3-7c1e52365f30 false @@ -466845,7 +515395,7 @@ false true - lk_signal_modifiedonbehalfby + lk_msdyn_richtextfile_createdonbehalfby None 1.0.0.0 OneToManyRelationship @@ -466881,15 +515431,15 @@ false systemuserid systemuser - lk_signal_modifiedonbehalfby - modifiedonbehalfby - signal - modifiedonbehalfby + lk_msdyn_richtextfile_createdonbehalfby + createdonbehalfby + msdyn_richtextfile + createdonbehalfby 0 - 379ab91c-f6ba-f011-bbd3-7c1e52365f30 + 95a2aff4-ecba-f011-bbd3-7c1e52365f30 false @@ -466899,7 +515449,7 @@ false true - user_signal + lk_msdyn_richtextfile_modifiedby None 1.0.0.0 OneToManyRelationship @@ -466935,15 +515485,15 @@ false systemuserid systemuser - user_signal - owninguser - signal - owninguser + lk_msdyn_richtextfile_modifiedby + modifiedby + msdyn_richtextfile + modifiedby 0 - 9d9ab91c-f6ba-f011-bbd3-7c1e52365f30 + 9ba2aff4-ecba-f011-bbd3-7c1e52365f30 false @@ -466953,9 +515503,9 @@ false true - lk_signalregistration_createdby + lk_msdyn_richtextfile_modifiedonbehalfby None - 1.0.0.3 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -466989,15 +515539,15 @@ false systemuserid systemuser - lk_signalregistration_createdby - createdby - signalregistration - createdby + lk_msdyn_richtextfile_modifiedonbehalfby + modifiedonbehalfby + msdyn_richtextfile + modifiedonbehalfby 0 - a49ab91c-f6ba-f011-bbd3-7c1e52365f30 + ada2aff4-ecba-f011-bbd3-7c1e52365f30 false @@ -467007,9 +515557,9 @@ false true - lk_signalregistration_createdonbehalfby + user_msdyn_richtextfile None - 1.0.0.3 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -467043,27 +515593,27 @@ false systemuserid systemuser - lk_signalregistration_createdonbehalfby - createdonbehalfby - signalregistration - createdonbehalfby + user_msdyn_richtextfile + owninguser + msdyn_richtextfile + owninguser 0 - aa9ab91c-f6ba-f011-bbd3-7c1e52365f30 + add8aff4-5375-4042-bb3d-4ace67a17ab1 false - true + false iscustomizable true - false + true true - lk_signalregistration_modifiedby + lk_contact_createdonbehalfby None - 1.0.0.3 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -467097,27 +515647,27 @@ false systemuserid systemuser - lk_signalregistration_modifiedby - modifiedby - signalregistration - modifiedby + lk_contact_createdonbehalfby + createdonbehalfby + contact + createdonbehalfby 0 - b19ab91c-f6ba-f011-bbd3-7c1e52365f30 + 0fecf9f4-c85c-4c80-a91b-ed2cc8bcdc0c false - true + false iscustomizable - true + false - false - true - lk_signalregistration_modifiedonbehalfby + true + false + lk_userqueryvisualization_createdby None - 1.0.0.3 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -467151,27 +515701,27 @@ false systemuserid systemuser - lk_signalregistration_modifiedonbehalfby - modifiedonbehalfby - signalregistration - modifiedonbehalfby + lk_userqueryvisualization_createdby + createdby + userqueryvisualization + createdby 0 - c39ab91c-f6ba-f011-bbd3-7c1e52365f30 + 444918f5-0006-4acb-810e-e9756a2a72f2 false - true + false iscustomizable - true + false - false + true true - user_signalregistration + lk_processtriggerbase_createdby None - 1.0.0.3 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -467205,27 +515755,27 @@ false systemuserid systemuser - user_signalregistration - owninguser - signalregistration - owninguser + lk_processtriggerbase_createdby + createdby + processtrigger + createdby 0 - 340ab922-f6ba-f011-bbd3-7c1e52365f30 + a5f065f5-2adc-498a-853c-eacace62331d false - true + false iscustomizable - true + false - false - true - lk_trait_createdby + true + false + lk_ownermapping_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -467259,27 +515809,27 @@ false systemuserid systemuser - lk_trait_createdby + lk_ownermapping_createdby createdby - trait + ownermapping createdby 0 - 3a0ab922-f6ba-f011-bbd3-7c1e52365f30 + 21b689f5-c208-4be7-9a1d-598361581c98 false - true + false iscustomizable - true + false - false + true true - lk_trait_createdonbehalfby + lk_officedocumentbase_createdonbehalfby None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -467313,69 +515863,15 @@ false systemuserid systemuser - lk_trait_createdonbehalfby + lk_officedocumentbase_createdonbehalfby createdonbehalfby - trait + officedocument createdonbehalfby 0 - 400ab922-f6ba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - lk_trait_modifiedby - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_trait_modifiedby - modifiedby - trait - modifiedby - - 0 - - - 460ab922-f6ba-f011-bbd3-7c1e52365f30 + 565e90f5-bfba-f011-bbd3-7c1e52365f30 false @@ -467385,9 +515881,9 @@ false true - lk_trait_modifiedonbehalfby + lk_msdyn_aitestrun_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -467421,15 +515917,15 @@ false systemuserid systemuser - lk_trait_modifiedonbehalfby - modifiedonbehalfby - trait - modifiedonbehalfby + lk_msdyn_aitestrun_createdby + createdby + msdyn_aitestrun + createdby 0 - 580ab922-f6ba-f011-bbd3-7c1e52365f30 + 5f5e90f5-bfba-f011-bbd3-7c1e52365f30 false @@ -467439,9 +515935,9 @@ false true - user_trait + lk_msdyn_aitestrun_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -467475,15 +515971,15 @@ false systemuserid systemuser - user_trait - owninguser - trait - owninguser + lk_msdyn_aitestrun_createdonbehalfby + createdonbehalfby + msdyn_aitestrun + createdonbehalfby 0 - b40ab922-f6ba-f011-bbd3-7c1e52365f30 + 665e90f5-bfba-f011-bbd3-7c1e52365f30 false @@ -467493,9 +515989,9 @@ false true - lk_traitregistration_createdby + lk_msdyn_aitestrun_modifiedby None - 1.0.0.3 + 1.0 OneToManyRelationship DoNotDisplay @@ -467529,15 +516025,15 @@ false systemuserid systemuser - lk_traitregistration_createdby - createdby - traitregistration - createdby + lk_msdyn_aitestrun_modifiedby + modifiedby + msdyn_aitestrun + modifiedby 0 - ba0ab922-f6ba-f011-bbd3-7c1e52365f30 + 6f5e90f5-bfba-f011-bbd3-7c1e52365f30 false @@ -467547,9 +516043,9 @@ false true - lk_traitregistration_createdonbehalfby + lk_msdyn_aitestrun_modifiedonbehalfby None - 1.0.0.3 + 1.0 OneToManyRelationship DoNotDisplay @@ -467583,15 +516079,15 @@ false systemuserid systemuser - lk_traitregistration_createdonbehalfby - createdonbehalfby - traitregistration - createdonbehalfby + lk_msdyn_aitestrun_modifiedonbehalfby + modifiedonbehalfby + msdyn_aitestrun + modifiedonbehalfby 0 - c00ab922-f6ba-f011-bbd3-7c1e52365f30 + 845e90f5-bfba-f011-bbd3-7c1e52365f30 false @@ -467601,9 +516097,9 @@ false true - lk_traitregistration_modifiedby + user_msdyn_aitestrun None - 1.0.0.3 + 1.0 OneToManyRelationship DoNotDisplay @@ -467637,15 +516133,15 @@ false systemuserid systemuser - lk_traitregistration_modifiedby - modifiedby - traitregistration - modifiedby + user_msdyn_aitestrun + owninguser + msdyn_aitestrun + owninguser 0 - c60ab922-f6ba-f011-bbd3-7c1e52365f30 + 995f90f5-bfba-f011-bbd3-7c1e52365f30 false @@ -467655,9 +516151,9 @@ false true - lk_traitregistration_modifiedonbehalfby + lk_msdyn_aitestrunbatch_createdby None - 1.0.0.3 + 1.0 OneToManyRelationship DoNotDisplay @@ -467691,15 +516187,15 @@ false systemuserid systemuser - lk_traitregistration_modifiedonbehalfby - modifiedonbehalfby - traitregistration - modifiedonbehalfby + lk_msdyn_aitestrunbatch_createdby + createdby + msdyn_aitestrunbatch + createdby 0 - d80ab922-f6ba-f011-bbd3-7c1e52365f30 + a05f90f5-bfba-f011-bbd3-7c1e52365f30 false @@ -467709,9 +516205,9 @@ false true - user_traitregistration + lk_msdyn_aitestrunbatch_createdonbehalfby None - 1.0.0.3 + 1.0 OneToManyRelationship DoNotDisplay @@ -467745,15 +516241,15 @@ false systemuserid systemuser - user_traitregistration - owninguser - traitregistration - owninguser + lk_msdyn_aitestrunbatch_createdonbehalfby + createdonbehalfby + msdyn_aitestrunbatch + createdonbehalfby 0 - e26d428c-f6ba-f011-bbd3-7c1e52365f30 + a85f90f5-bfba-f011-bbd3-7c1e52365f30 false @@ -467763,7 +516259,7 @@ false true - lk_ctx_invoice_createdby + lk_msdyn_aitestrunbatch_modifiedby None 1.0 OneToManyRelationship @@ -467799,15 +516295,15 @@ false systemuserid systemuser - lk_ctx_invoice_createdby - createdby - ctx_invoice - createdby + lk_msdyn_aitestrunbatch_modifiedby + modifiedby + msdyn_aitestrunbatch + modifiedby 0 - e86d428c-f6ba-f011-bbd3-7c1e52365f30 + af5f90f5-bfba-f011-bbd3-7c1e52365f30 false @@ -467817,7 +516313,7 @@ false true - lk_ctx_invoice_createdonbehalfby + lk_msdyn_aitestrunbatch_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -467853,15 +516349,15 @@ false systemuserid systemuser - lk_ctx_invoice_createdonbehalfby - createdonbehalfby - ctx_invoice - createdonbehalfby + lk_msdyn_aitestrunbatch_modifiedonbehalfby + modifiedonbehalfby + msdyn_aitestrunbatch + modifiedonbehalfby 0 - ee6d428c-f6ba-f011-bbd3-7c1e52365f30 + c15f90f5-bfba-f011-bbd3-7c1e52365f30 false @@ -467871,7 +516367,7 @@ false true - lk_ctx_invoice_modifiedby + user_msdyn_aitestrunbatch None 1.0 OneToManyRelationship @@ -467907,15 +516403,69 @@ false systemuserid systemuser - lk_ctx_invoice_modifiedby - modifiedby - ctx_invoice - modifiedby + user_msdyn_aitestrunbatch + owninguser + msdyn_aitestrunbatch + owninguser 0 - f56d428c-f6ba-f011-bbd3-7c1e52365f30 + 563ee4f5-a0bd-4b0d-83ed-14bed2f81c4f + + false + + false + iscustomizable + true + + true + true + lk_socialactivitybase_modifiedonbehalfby + None + 6.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_socialactivitybase_modifiedonbehalfby + modifiedonbehalfby + socialactivity + modifiedonbehalfby_socialactivity + + 0 + + + 720674f6-baba-f011-bbd3-7c1e52365f30 false @@ -467925,9 +516475,9 @@ false true - lk_ctx_invoice_modifiedonbehalfby + lk_flowmachineimageversion_createdby None - 1.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -467961,15 +516511,15 @@ false systemuserid systemuser - lk_ctx_invoice_modifiedonbehalfby - modifiedonbehalfby - ctx_invoice - modifiedonbehalfby + lk_flowmachineimageversion_createdby + createdby + flowmachineimageversion + createdby 0 - 076e428c-f6ba-f011-bbd3-7c1e52365f30 + 780674f6-baba-f011-bbd3-7c1e52365f30 false @@ -467979,9 +516529,9 @@ false true - user_ctx_invoice + lk_flowmachineimageversion_createdonbehalfby None - 1.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -468015,15 +516565,15 @@ false systemuserid systemuser - user_ctx_invoice - owninguser - ctx_invoice - owninguser + lk_flowmachineimageversion_createdonbehalfby + createdonbehalfby + flowmachineimageversion + createdonbehalfby 0 - 2e796df7-f6ba-f011-bbd3-7c1e52365f30 + 7e0674f6-baba-f011-bbd3-7c1e52365f30 false @@ -468033,9 +516583,9 @@ false true - lk_ctx_transaction_createdby + lk_flowmachineimageversion_modifiedby None - 1.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -468069,15 +516619,15 @@ false systemuserid systemuser - lk_ctx_transaction_createdby - createdby - ctx_transaction - createdby + lk_flowmachineimageversion_modifiedby + modifiedby + flowmachineimageversion + modifiedby 0 - 34796df7-f6ba-f011-bbd3-7c1e52365f30 + 840674f6-baba-f011-bbd3-7c1e52365f30 false @@ -468087,9 +516637,9 @@ false true - lk_ctx_transaction_createdonbehalfby + lk_flowmachineimageversion_modifiedonbehalfby None - 1.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -468123,15 +516673,15 @@ false systemuserid systemuser - lk_ctx_transaction_createdonbehalfby - createdonbehalfby - ctx_transaction - createdonbehalfby + lk_flowmachineimageversion_modifiedonbehalfby + modifiedonbehalfby + flowmachineimageversion + modifiedonbehalfby 0 - 3a796df7-f6ba-f011-bbd3-7c1e52365f30 + 960674f6-baba-f011-bbd3-7c1e52365f30 false @@ -468141,9 +516691,9 @@ false true - lk_ctx_transaction_modifiedby + user_flowmachineimageversion None - 1.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -468177,15 +516727,15 @@ false systemuserid systemuser - lk_ctx_transaction_modifiedby - modifiedby - ctx_transaction - modifiedby + user_flowmachineimageversion + owninguser + flowmachineimageversion + owninguser 0 - 40796df7-f6ba-f011-bbd3-7c1e52365f30 + 700774f6-baba-f011-bbd3-7c1e52365f30 false @@ -468195,9 +516745,9 @@ false true - lk_ctx_transaction_modifiedonbehalfby + lk_flowmachinenetwork_createdby None - 1.0 + 1.4.0.0 OneToManyRelationship DoNotDisplay @@ -468231,15 +516781,15 @@ false systemuserid systemuser - lk_ctx_transaction_modifiedonbehalfby - modifiedonbehalfby - ctx_transaction - modifiedonbehalfby + lk_flowmachinenetwork_createdby + createdby + flowmachinenetwork + createdby 0 - 52796df7-f6ba-f011-bbd3-7c1e52365f30 + 760774f6-baba-f011-bbd3-7c1e52365f30 false @@ -468249,9 +516799,9 @@ false true - user_ctx_transaction + lk_flowmachinenetwork_createdonbehalfby None - 1.0 + 1.4.0.0 OneToManyRelationship DoNotDisplay @@ -468285,15 +516835,15 @@ false systemuserid systemuser - user_ctx_transaction - owninguser - ctx_transaction - owninguser + lk_flowmachinenetwork_createdonbehalfby + createdonbehalfby + flowmachinenetwork + createdonbehalfby 0 - 8290156a-f7ba-f011-bbd3-7c1e52365f30 + 7c0774f6-baba-f011-bbd3-7c1e52365f30 false @@ -468303,9 +516853,9 @@ false true - lk_ctx_product_createdby + lk_flowmachinenetwork_modifiedby None - 1.0 + 1.4.0.0 OneToManyRelationship DoNotDisplay @@ -468339,15 +516889,15 @@ false systemuserid systemuser - lk_ctx_product_createdby - createdby - ctx_product - createdby + lk_flowmachinenetwork_modifiedby + modifiedby + flowmachinenetwork + modifiedby 0 - 8890156a-f7ba-f011-bbd3-7c1e52365f30 + 820774f6-baba-f011-bbd3-7c1e52365f30 false @@ -468357,9 +516907,9 @@ false true - lk_ctx_product_createdonbehalfby + lk_flowmachinenetwork_modifiedonbehalfby None - 1.0 + 1.4.0.0 OneToManyRelationship DoNotDisplay @@ -468393,15 +516943,15 @@ false systemuserid systemuser - lk_ctx_product_createdonbehalfby - createdonbehalfby - ctx_product - createdonbehalfby + lk_flowmachinenetwork_modifiedonbehalfby + modifiedonbehalfby + flowmachinenetwork + modifiedonbehalfby 0 - 8e90156a-f7ba-f011-bbd3-7c1e52365f30 + 940774f6-baba-f011-bbd3-7c1e52365f30 false @@ -468411,9 +516961,9 @@ false true - lk_ctx_product_modifiedby + user_flowmachinenetwork None - 1.0 + 1.4.0.0 OneToManyRelationship DoNotDisplay @@ -468447,27 +516997,27 @@ false systemuserid systemuser - lk_ctx_product_modifiedby - modifiedby - ctx_product - modifiedby + user_flowmachinenetwork + owninguser + flowmachinenetwork + owninguser 0 - 9490156a-f7ba-f011-bbd3-7c1e52365f30 + 6080bdf6-2dc1-4d09-9206-1ecec97a7ad2 false - true + false iscustomizable - true + false - false - true - lk_ctx_product_modifiedonbehalfby + true + false + lk_transformationparametermapping_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -468501,27 +517051,27 @@ false systemuserid systemuser - lk_ctx_product_modifiedonbehalfby + lk_transformationparametermapping_modifiedonbehalfby modifiedonbehalfby - ctx_product + transformationparametermapping modifiedonbehalfby 0 - a690156a-f7ba-f011-bbd3-7c1e52365f30 + 988acff6-d8c0-4b52-8eec-155c04fce9c9 false - true + false iscustomizable true - false + true true - user_ctx_product + lk_customeraddress_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -468555,25 +517105,25 @@ false systemuserid systemuser - user_ctx_product - owninguser - ctx_product - owninguser + lk_customeraddress_modifiedonbehalfby + modifiedonbehalfby + customeraddress + modifiedonbehalfby 0 - 36a7f6d8-f7ba-f011-bbd3-7c1e52365f30 + 7e2ef8f6-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_ctx_subscription_createdby + lk_aipluginusersetting_createdby None 1.0 OneToManyRelationship @@ -468609,15 +517159,15 @@ false systemuserid systemuser - lk_ctx_subscription_createdby + lk_aipluginusersetting_createdby createdby - ctx_subscription + aipluginusersetting createdby 0 - 3ca7f6d8-f7ba-f011-bbd3-7c1e52365f30 + 862ef8f6-bdba-f011-bbd3-7c1e52365f30 false @@ -468627,7 +517177,7 @@ false true - lk_ctx_subscription_createdonbehalfby + lk_aipluginusersetting_createdonbehalfby None 1.0 OneToManyRelationship @@ -468663,25 +517213,25 @@ false systemuserid systemuser - lk_ctx_subscription_createdonbehalfby + lk_aipluginusersetting_createdonbehalfby createdonbehalfby - ctx_subscription + aipluginusersetting createdonbehalfby 0 - 42a7f6d8-f7ba-f011-bbd3-7c1e52365f30 + 8c2ef8f6-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_ctx_subscription_modifiedby + lk_aipluginusersetting_modifiedby None 1.0 OneToManyRelationship @@ -468717,15 +517267,15 @@ false systemuserid systemuser - lk_ctx_subscription_modifiedby + lk_aipluginusersetting_modifiedby modifiedby - ctx_subscription + aipluginusersetting modifiedby 0 - 48a7f6d8-f7ba-f011-bbd3-7c1e52365f30 + 922ef8f6-bdba-f011-bbd3-7c1e52365f30 false @@ -468735,7 +517285,7 @@ false true - lk_ctx_subscription_modifiedonbehalfby + lk_aipluginusersetting_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -468771,25 +517321,25 @@ false systemuserid systemuser - lk_ctx_subscription_modifiedonbehalfby + lk_aipluginusersetting_modifiedonbehalfby modifiedonbehalfby - ctx_subscription + aipluginusersetting modifiedonbehalfby 0 - 5aa7f6d8-f7ba-f011-bbd3-7c1e52365f30 + a62ef8f6-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_ctx_subscription + user_aipluginusersetting None 1.0 OneToManyRelationship @@ -468825,47 +517375,47 @@ false systemuserid systemuser - user_ctx_subscription + user_aipluginusersetting owninguser - ctx_subscription + aipluginusersetting owninguser 0 - 1eebf1de-f7ba-f011-bbd3-7c1e52365f30 + 8a30f8f6-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_ctx_invoicecollection_createdby + AIPluginUserSetting_SystemUser_Syst None - 1.0 + 1.0.0.62 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 - NoCascade + RemoveLink NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -468879,27 +517429,27 @@ false systemuserid systemuser - lk_ctx_invoicecollection_createdby - createdby - ctx_invoicecollection - createdby + AIPluginUserSetting_SystemUser_Syst + systemuser + aipluginusersetting + SystemUser 0 - 24ebf1de-f7ba-f011-bbd3-7c1e52365f30 + 450d11f7-74b1-40fa-a1fb-522f1c2fe12c false - true + false iscustomizable - true + false - false - true - lk_ctx_invoicecollection_createdonbehalfby + true + false + SystemUser_BulkDeleteFailures None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -468933,27 +517483,27 @@ false systemuserid systemuser - lk_ctx_invoicecollection_createdonbehalfby - createdonbehalfby - ctx_invoicecollection - createdonbehalfby + SystemUser_BulkDeleteFailures + regardingobjectid + bulkdeletefailure + regardingobjectid_systemuser 0 - 2bebf1de-f7ba-f011-bbd3-7c1e52365f30 + 9f8522f7-20c5-424b-a7bb-0805e4ca54ad false - true + false iscustomizable - true + false - false + true true - lk_ctx_invoicecollection_modifiedby + lk_processsession_canceledby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -468987,15 +517537,15 @@ false systemuserid systemuser - lk_ctx_invoicecollection_modifiedby - modifiedby - ctx_invoicecollection - modifiedby + lk_processsession_canceledby + canceledby + processsession + canceledby 0 - 32ebf1de-f7ba-f011-bbd3-7c1e52365f30 + 1d166cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -469005,9 +517555,9 @@ false true - lk_ctx_invoicecollection_modifiedonbehalfby + lk_flowaggregation_createdby None - 1.0 + 1.8.45.0 OneToManyRelationship DoNotDisplay @@ -469041,15 +517591,15 @@ false systemuserid systemuser - lk_ctx_invoicecollection_modifiedonbehalfby - modifiedonbehalfby - ctx_invoicecollection - modifiedonbehalfby + lk_flowaggregation_createdby + createdby + flowaggregation + createdby 0 - 45ebf1de-f7ba-f011-bbd3-7c1e52365f30 + 23166cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -469059,9 +517609,9 @@ false true - user_ctx_invoicecollection + lk_flowaggregation_createdonbehalfby None - 1.0 + 1.8.45.0 OneToManyRelationship DoNotDisplay @@ -469095,15 +517645,15 @@ false systemuserid systemuser - user_ctx_invoicecollection - owninguser - ctx_invoicecollection - owninguser + lk_flowaggregation_createdonbehalfby + createdonbehalfby + flowaggregation + createdonbehalfby 0 - 3182c974-d2d4-f011-8548-000d3adc1b74 + 29166cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -469113,9 +517663,9 @@ false true - lk_businessprocesslinkedartifact_createdby + lk_flowaggregation_modifiedby None - 1.9.7.0 + 1.8.45.0 OneToManyRelationship DoNotDisplay @@ -469149,15 +517699,15 @@ false systemuserid systemuser - lk_businessprocesslinkedartifact_createdby - createdby - businessprocesslinkedartifact - createdby + lk_flowaggregation_modifiedby + modifiedby + flowaggregation + modifiedby 0 - 3782c974-d2d4-f011-8548-000d3adc1b74 + 2f166cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -469167,9 +517717,9 @@ false true - lk_businessprocesslinkedartifact_createdonbehalfby + lk_flowaggregation_modifiedonbehalfby None - 1.9.7.0 + 1.8.45.0 OneToManyRelationship DoNotDisplay @@ -469203,15 +517753,15 @@ false systemuserid systemuser - lk_businessprocesslinkedartifact_createdonbehalfby - createdonbehalfby - businessprocesslinkedartifact - createdonbehalfby + lk_flowaggregation_modifiedonbehalfby + modifiedonbehalfby + flowaggregation + modifiedonbehalfby 0 - 3d82c974-d2d4-f011-8548-000d3adc1b74 + 41166cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -469221,9 +517771,9 @@ false true - lk_businessprocesslinkedartifact_modifiedby + user_flowaggregation None - 1.9.7.0 + 1.8.45.0 OneToManyRelationship DoNotDisplay @@ -469257,27 +517807,27 @@ false systemuserid systemuser - lk_businessprocesslinkedartifact_modifiedby - modifiedby - businessprocesslinkedartifact - modifiedby + user_flowaggregation + owninguser + flowaggregation + owninguser 0 - 4382c974-d2d4-f011-8548-000d3adc1b74 + d3166cf7-bbba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_businessprocesslinkedartifact_modifiedonbehalfby + lk_flowlog_createdby None - 1.9.7.0 + 1.8.0.0 OneToManyRelationship DoNotDisplay @@ -469311,15 +517861,15 @@ false systemuserid systemuser - lk_businessprocesslinkedartifact_modifiedonbehalfby - modifiedonbehalfby - businessprocesslinkedartifact - modifiedonbehalfby + lk_flowlog_createdby + createdby + flowlog + createdby 0 - 5582c974-d2d4-f011-8548-000d3adc1b74 + d9166cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -469329,9 +517879,9 @@ false true - user_businessprocesslinkedartifact + lk_flowlog_createdonbehalfby None - 1.9.7.0 + 1.8.0.0 OneToManyRelationship DoNotDisplay @@ -469365,15 +517915,15 @@ false systemuserid systemuser - user_businessprocesslinkedartifact - owninguser - businessprocesslinkedartifact - owninguser + lk_flowlog_createdonbehalfby + createdonbehalfby + flowlog + createdonbehalfby 0 - e2f30fa9-b6ea-f011-8409-000d3adc1cd9 + df166cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -469383,9 +517933,9 @@ false true - lk_agentfeeditem_createdby + lk_flowlog_modifiedby None - 1.0 + 1.8.0.0 OneToManyRelationship DoNotDisplay @@ -469419,15 +517969,15 @@ false systemuserid systemuser - lk_agentfeeditem_createdby - createdby - agentfeeditem - createdby + lk_flowlog_modifiedby + modifiedby + flowlog + modifiedby 0 - eaf30fa9-b6ea-f011-8409-000d3adc1cd9 + e5166cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -469437,63 +517987,9 @@ false true - lk_agentfeeditem_createdonbehalfby - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_agentfeeditem_createdonbehalfby - createdonbehalfby - agentfeeditem - createdonbehalfby - - 0 - - - f0f30fa9-b6ea-f011-8409-000d3adc1cd9 - - false - - true - iscustomizable - false - - false - true - lk_agentfeeditem_modifiedby + lk_flowlog_modifiedonbehalfby None - 1.0 + 1.8.0.0 OneToManyRelationship DoNotDisplay @@ -469527,15 +518023,15 @@ false systemuserid systemuser - lk_agentfeeditem_modifiedby - modifiedby - agentfeeditem - modifiedby + lk_flowlog_modifiedonbehalfby + modifiedonbehalfby + flowlog + modifiedonbehalfby 0 - f7f30fa9-b6ea-f011-8409-000d3adc1cd9 + 60176cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -469545,9 +518041,9 @@ false true - lk_agentfeeditem_modifiedonbehalfby + lk_flowrun_createdby None - 1.0 + 1.5.24.0 OneToManyRelationship DoNotDisplay @@ -469581,27 +518077,27 @@ false systemuserid systemuser - lk_agentfeeditem_modifiedonbehalfby - modifiedonbehalfby - agentfeeditem - modifiedonbehalfby + lk_flowrun_createdby + createdby + flowrun + createdby 0 - 09f40fa9-b6ea-f011-8409-000d3adc1cd9 + 66176cf7-bbba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - user_agentfeeditem + lk_flowrun_createdonbehalfby None - 1.0 + 1.5.24.0 OneToManyRelationship DoNotDisplay @@ -469635,15 +518131,15 @@ false systemuserid systemuser - user_agentfeeditem - owninguser - agentfeeditem - owninguser + lk_flowrun_createdonbehalfby + createdonbehalfby + flowrun + createdonbehalfby 0 - 9854fcba-b6ea-f011-8409-000d3adc1cd9 + 6c176cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -469653,9 +518149,9 @@ false true - lk_agenthubgoal_createdby + lk_flowrun_modifiedby None - 1.0 + 1.5.24.0 OneToManyRelationship DoNotDisplay @@ -469689,15 +518185,15 @@ false systemuserid systemuser - lk_agenthubgoal_createdby - createdby - agenthubgoal - createdby + lk_flowrun_modifiedby + modifiedby + flowrun + modifiedby 0 - 9e54fcba-b6ea-f011-8409-000d3adc1cd9 + 72176cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -469707,9 +518203,9 @@ false true - lk_agenthubgoal_createdonbehalfby + lk_flowrun_modifiedonbehalfby None - 1.0 + 1.5.24.0 OneToManyRelationship DoNotDisplay @@ -469743,15 +518239,15 @@ false systemuserid systemuser - lk_agenthubgoal_createdonbehalfby - createdonbehalfby - agenthubgoal - createdonbehalfby + lk_flowrun_modifiedonbehalfby + modifiedonbehalfby + flowrun + modifiedonbehalfby 0 - a454fcba-b6ea-f011-8409-000d3adc1cd9 + 84176cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -469761,9 +518257,9 @@ false true - lk_agenthubgoal_modifiedby + user_flowrun None - 1.0 + 1.5.24.0 OneToManyRelationship DoNotDisplay @@ -469797,15 +518293,15 @@ false systemuserid systemuser - lk_agenthubgoal_modifiedby - modifiedby - agenthubgoal - modifiedby + user_flowrun + owninguser + flowrun + owninguser 0 - aa54fcba-b6ea-f011-8409-000d3adc1cd9 + 2e796df7-f6ba-f011-bbd3-7c1e52365f30 false @@ -469815,7 +518311,7 @@ false true - lk_agenthubgoal_modifiedonbehalfby + lk_ctx_transaction_createdby None 1.0 OneToManyRelationship @@ -469851,15 +518347,15 @@ false systemuserid systemuser - lk_agenthubgoal_modifiedonbehalfby - modifiedonbehalfby - agenthubgoal - modifiedonbehalfby + lk_ctx_transaction_createdby + createdby + ctx_transaction + createdby 0 - bc54fcba-b6ea-f011-8409-000d3adc1cd9 + 34796df7-f6ba-f011-bbd3-7c1e52365f30 false @@ -469869,7 +518365,7 @@ false true - user_agenthubgoal + lk_ctx_transaction_createdonbehalfby None 1.0 OneToManyRelationship @@ -469905,15 +518401,15 @@ false systemuserid systemuser - user_agenthubgoal - owninguser - agenthubgoal - owninguser + lk_ctx_transaction_createdonbehalfby + createdonbehalfby + ctx_transaction + createdonbehalfby 0 - a992f2c0-b6ea-f011-8409-000d3adc1cd9 + 3a796df7-f6ba-f011-bbd3-7c1e52365f30 false @@ -469923,7 +518419,7 @@ false true - lk_agenthubinsight_createdby + lk_ctx_transaction_modifiedby None 1.0 OneToManyRelationship @@ -469959,15 +518455,15 @@ false systemuserid systemuser - lk_agenthubinsight_createdby - createdby - agenthubinsight - createdby + lk_ctx_transaction_modifiedby + modifiedby + ctx_transaction + modifiedby 0 - b092f2c0-b6ea-f011-8409-000d3adc1cd9 + 40796df7-f6ba-f011-bbd3-7c1e52365f30 false @@ -469977,7 +518473,7 @@ false true - lk_agenthubinsight_createdonbehalfby + lk_ctx_transaction_modifiedonbehalfby None 1.0 OneToManyRelationship @@ -470013,15 +518509,15 @@ false systemuserid systemuser - lk_agenthubinsight_createdonbehalfby - createdonbehalfby - agenthubinsight - createdonbehalfby + lk_ctx_transaction_modifiedonbehalfby + modifiedonbehalfby + ctx_transaction + modifiedonbehalfby 0 - b792f2c0-b6ea-f011-8409-000d3adc1cd9 + 52796df7-f6ba-f011-bbd3-7c1e52365f30 false @@ -470031,7 +518527,7 @@ false true - lk_agenthubinsight_modifiedby + user_ctx_transaction None 1.0 OneToManyRelationship @@ -470067,30 +518563,30 @@ false systemuserid systemuser - lk_agenthubinsight_modifiedby - modifiedby - agenthubinsight - modifiedby + user_ctx_transaction + owninguser + ctx_transaction + owninguser 0 - be92f2c0-b6ea-f011-8409-000d3adc1cd9 + 6a9e89f7-38c8-45b7-bf92-59bc86a0f83e false - true + false iscustomizable - true + false - false - true - lk_agenthubinsight_modifiedonbehalfby + true + false + lk_category_modifiedonbehalfby None - 1.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -470121,27 +518617,27 @@ false systemuserid systemuser - lk_agenthubinsight_modifiedonbehalfby + lk_category_modifiedonbehalfby modifiedonbehalfby - agenthubinsight - modifiedonbehalfby + category + lk_category_modifiedonbehalfby 0 - d192f2c0-b6ea-f011-8409-000d3adc1cd9 + 4c4cb7f7-aa33-e611-80d5-00155dcf0c03 false - true + false iscustomizable true - false + true true - user_agenthubinsight + lk_cardtype_createdby None - 1.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -470175,27 +518671,27 @@ false systemuserid systemuser - user_agenthubinsight - owninguser - agenthubinsight - owninguser + lk_cardtype_createdby + createdby + cardtype + createdby 0 - a86debc6-b6ea-f011-8409-000d3adc1cd9 + 524cb7f7-aa33-e611-80d5-00155dcf0c03 false - true + false iscustomizable true - false + true true - lk_agenthubmetric_createdby + lk_cardtype_createdonbehalfby None - 1.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -470229,27 +518725,27 @@ false systemuserid systemuser - lk_agenthubmetric_createdby - createdby - agenthubmetric - createdby + lk_cardtype_createdonbehalfby + createdonbehalfby + cardtype + createdonbehalfby 0 - b16debc6-b6ea-f011-8409-000d3adc1cd9 + 584cb7f7-aa33-e611-80d5-00155dcf0c03 false - true + false iscustomizable true - false + true true - lk_agenthubmetric_createdonbehalfby + lk_cardtype_modifiedby None - 1.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -470283,27 +518779,27 @@ false systemuserid systemuser - lk_agenthubmetric_createdonbehalfby - createdonbehalfby - agenthubmetric - createdonbehalfby + lk_cardtype_modifiedby + modifiedby + cardtype + modifiedby 0 - ba6debc6-b6ea-f011-8409-000d3adc1cd9 + 5e4cb7f7-aa33-e611-80d5-00155dcf0c03 false - true + false iscustomizable true - false + true true - lk_agenthubmetric_modifiedby + lk_cardtype_modifiedonbehalfby None - 1.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -470337,27 +518833,27 @@ false systemuserid systemuser - lk_agenthubmetric_modifiedby - modifiedby - agenthubmetric - modifiedby + lk_cardtype_modifiedonbehalfby + modifiedonbehalfby + cardtype + modifiedonbehalfby 0 - c26debc6-b6ea-f011-8409-000d3adc1cd9 + df5cc9f7-0f69-4374-9176-62e52764ca6e false - true + false iscustomizable - true + false - false + true true - lk_agenthubmetric_modifiedonbehalfby + lk_appmodulecomponent_modifiedonbehalfby None - 1.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -470391,27 +518887,27 @@ false systemuserid systemuser - lk_agenthubmetric_modifiedonbehalfby + lk_appmodulecomponent_modifiedonbehalfby modifiedonbehalfby - agenthubmetric + appmodulecomponent modifiedonbehalfby 0 - d76debc6-b6ea-f011-8409-000d3adc1cd9 + 2fb001f8-8c74-4d8f-a3fe-f3f60bc0886e false - true + false iscustomizable true - false + true true - user_agenthubmetric + lk_SocialProfile_createdonbehalfby None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -470445,30 +518941,30 @@ false systemuserid systemuser - user_agenthubmetric - owninguser - agenthubmetric - owninguser + lk_SocialProfile_createdonbehalfby + createdonbehalfby + socialprofile + createdonbehalfby 0 - c54ee4cc-b6ea-f011-8409-000d3adc1cd9 + 00b52df8-e1af-42aa-bb45-b64f05d3d2dd false - true + false iscustomizable - false + true - false + true true - lk_agenticscenario_createdby + knowledgearticle_primaryauthorid None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -470499,27 +518995,27 @@ false systemuserid systemuser - lk_agenticscenario_createdby - createdby - agenticscenario - createdby + knowledgearticle_primaryauthorid + primaryauthorid + knowledgearticle + primaryauthorid 0 - cb4ee4cc-b6ea-f011-8409-000d3adc1cd9 + 6e4e72f8-4cf4-47d9-bccc-d1247cc03297 false - true + false iscustomizable - true + false - false - true - lk_agenticscenario_createdonbehalfby + true + false + systemuserbusinessunitentitymap_systemuserid_systemuser None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -470553,27 +519049,27 @@ false systemuserid systemuser - lk_agenticscenario_createdonbehalfby - createdonbehalfby - agenticscenario - createdonbehalfby + systemuserbusinessunitentitymap_systemuserid_systemuser + systemuserid + systemuserbusinessunitentitymap + systemuserid_systemuser 0 - d14ee4cc-b6ea-f011-8409-000d3adc1cd9 + ee4483f8-f72e-41f3-bac0-45f2e2740f82 false - true + false iscustomizable false - false - true - lk_agenticscenario_modifiedby + true + false + SystemUser_DuplicateBaseRecord None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -470607,15 +519103,15 @@ false systemuserid systemuser - lk_agenticscenario_modifiedby - modifiedby - agenticscenario - modifiedby + SystemUser_DuplicateBaseRecord + baserecordid + duplicaterecord + baserecordid_systemuser 0 - d74ee4cc-b6ea-f011-8409-000d3adc1cd9 + 4d01b3f8-f430-f111-88b4-7ced8d45db1a false @@ -470625,9 +519121,9 @@ false true - lk_agenticscenario_modifiedonbehalfby + lk_skillresource_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -470661,27 +519157,27 @@ false systemuserid systemuser - lk_agenticscenario_modifiedonbehalfby - modifiedonbehalfby - agenticscenario - modifiedonbehalfby + lk_skillresource_createdby + createdby + skillresource + createdby 0 - e94ee4cc-b6ea-f011-8409-000d3adc1cd9 + 5301b3f8-f430-f111-88b4-7ced8d45db1a false true iscustomizable - false + true false true - user_agenticscenario + lk_skillresource_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -470715,27 +519211,27 @@ false systemuserid systemuser - user_agenticscenario - owninguser - agenticscenario - owninguser + lk_skillresource_createdonbehalfby + createdonbehalfby + skillresource + createdonbehalfby 0 - 4951e4cc-b6ea-f011-8409-000d3adc1cd9 + 5901b3f8-f430-f111-88b4-7ced8d45db1a false true iscustomizable - false + true false true - lk_agentmemory_createdby + lk_skillresource_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -470769,15 +519265,15 @@ false systemuserid systemuser - lk_agentmemory_createdby - createdby - agentmemory - createdby + lk_skillresource_modifiedby + modifiedby + skillresource + modifiedby 0 - 5151e4cc-b6ea-f011-8409-000d3adc1cd9 + 5f01b3f8-f430-f111-88b4-7ced8d45db1a false @@ -470787,9 +519283,9 @@ false true - lk_agentmemory_createdonbehalfby + lk_skillresource_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -470823,27 +519319,81 @@ false systemuserid systemuser - lk_agentmemory_createdonbehalfby + lk_skillresource_modifiedonbehalfby + modifiedonbehalfby + skillresource + modifiedonbehalfby + + 0 + + + 4a39c8f8-3beb-46d2-8f00-92dfa97a8db8 + + false + + false + iscustomizable + false + + true + false + lk_applicationfile_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_applicationfile_createdonbehalfby createdonbehalfby - agentmemory + applicationfile createdonbehalfby 0 - 5851e4cc-b6ea-f011-8409-000d3adc1cd9 + 1252d1f8-1f71-44ad-89ae-a280e9578335 false - true + false iscustomizable - false + true - false + true true - lk_agentmemory_modifiedby + lk_customeraddressbase_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -470877,27 +519427,27 @@ false systemuserid systemuser - lk_agentmemory_modifiedby + lk_customeraddressbase_modifiedby modifiedby - agentmemory + customeraddress modifiedby 0 - 6151e4cc-b6ea-f011-8409-000d3adc1cd9 + 409923f9-d510-4ebb-945f-cff84188cfb4 false - true + false iscustomizable true - false + true true - lk_agentmemory_modifiedonbehalfby + lk_mailmergetemplatebase_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -470931,27 +519481,27 @@ false systemuserid systemuser - lk_agentmemory_modifiedonbehalfby - modifiedonbehalfby - agentmemory - modifiedonbehalfby + lk_mailmergetemplatebase_modifiedby + modifiedby + mailmergetemplate + modifiedby 0 - 7551e4cc-b6ea-f011-8409-000d3adc1cd9 + 6d7a56f9-c3af-425b-950c-4b0db119b1e5 false - true + false iscustomizable - false + true - false + true true - user_agentmemory + lk_SocialProfile_modifiedonbehalfby None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -470985,27 +519535,27 @@ false systemuserid systemuser - user_agentmemory - owninguser - agentmemory - owninguser + lk_SocialProfile_modifiedonbehalfby + modifiedonbehalfby + socialprofile + modifiedonbehalfby 0 - f2ccdcd2-b6ea-f011-8409-000d3adc1cd9 + 556469f9-e7b7-4ab4-b7ab-bb983dcaf94e false - true + false iscustomizable false - false - true - lk_agenttask_createdby + true + false + createdby_sdkmessageresponsefield None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -471039,27 +519589,27 @@ false systemuserid systemuser - lk_agenttask_createdby + createdby_sdkmessageresponsefield createdby - agenttask + sdkmessageresponsefield createdby 0 - f8ccdcd2-b6ea-f011-8409-000d3adc1cd9 + 4a5dfcf9-b625-47f8-9aae-fe942d099e1e false - true + false iscustomizable - true + false - false - true - lk_agenttask_createdonbehalfby + true + false + lk_sdkmessage_modifiedonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -471093,15 +519643,15 @@ false systemuserid systemuser - lk_agenttask_createdonbehalfby - createdonbehalfby - agenttask - createdonbehalfby + lk_sdkmessage_modifiedonbehalfby + modifiedonbehalfby + sdkmessage + modifiedonbehalfby 0 - feccdcd2-b6ea-f011-8409-000d3adc1cd9 + 669841fa-0d2f-f111-88b5-7c1e5287d1d8 false @@ -471111,9 +519661,9 @@ false true - lk_agenttask_modifiedby + lk_agentconversationmessage_createdby None - 1.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -471147,15 +519697,15 @@ false systemuserid systemuser - lk_agenttask_modifiedby - modifiedby - agenttask - modifiedby + lk_agentconversationmessage_createdby + createdby + agentconversationmessage + createdby 0 - 04cddcd2-b6ea-f011-8409-000d3adc1cd9 + 6c9841fa-0d2f-f111-88b5-7c1e5287d1d8 false @@ -471165,9 +519715,9 @@ false true - lk_agenttask_modifiedonbehalfby + lk_agentconversationmessage_createdonbehalfby None - 1.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -471201,15 +519751,15 @@ false systemuserid systemuser - lk_agenttask_modifiedonbehalfby - modifiedonbehalfby - agenttask - modifiedonbehalfby + lk_agentconversationmessage_createdonbehalfby + createdonbehalfby + agentconversationmessage + createdonbehalfby 0 - 16cddcd2-b6ea-f011-8409-000d3adc1cd9 + 729841fa-0d2f-f111-88b5-7c1e5287d1d8 false @@ -471219,9 +519769,9 @@ false true - user_agenttask + lk_agentconversationmessage_modifiedby None - 1.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -471255,27 +519805,27 @@ false systemuserid systemuser - user_agenttask - owninguser - agenttask - owninguser + lk_agentconversationmessage_modifiedby + modifiedby + agentconversationmessage + modifiedby 0 - 31e23133-62f5-f011-8406-7ced8d736212 + 789841fa-0d2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable true - true + false true - lk_anyprivilegeentity_createdby + lk_agentconversationmessage_modifiedonbehalfby None - 1.129.0.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -471309,27 +519859,27 @@ false systemuserid systemuser - lk_anyprivilegeentity_createdby - createdby - anyprivilegeentity - createdby + lk_agentconversationmessage_modifiedonbehalfby + modifiedonbehalfby + agentconversationmessage + modifiedonbehalfby 0 - 3ae23133-62f5-f011-8406-7ced8d736212 + 8a9841fa-0d2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable - true + false - true + false true - lk_anyprivilegeentity_createdonbehalfby + user_agentconversationmessage None - 1.129.0.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -471363,15 +519913,15 @@ false systemuserid systemuser - lk_anyprivilegeentity_createdonbehalfby - createdonbehalfby - anyprivilegeentity - createdonbehalfby + user_agentconversationmessage + owninguser + agentconversationmessage + owninguser 0 - 40e23133-62f5-f011-8406-7ced8d736212 + f9a142fa-be9e-4d2a-a46b-fd66c99f4c7d false @@ -471381,12 +519931,12 @@ true true - lk_anyprivilegeentity_modifiedby + lk_appconfiginstance_createdby None - 1.129.0.0 + 9.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -471417,84 +519967,30 @@ false systemuserid systemuser - lk_anyprivilegeentity_modifiedby - modifiedby - anyprivilegeentity - modifiedby + systemuser_appconfiginstance_createdby + createdby + appconfiginstance + appconfiginstance_createdby 0 - 46e23133-62f5-f011-8406-7ced8d736212 + 10b15bfa-eedd-4b6f-846c-bb08014a9c65 false false iscustomizable - true + false true - true - lk_anyprivilegeentity_modifiedonbehalfby - None - 1.129.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - systemuserid - systemuser - lk_anyprivilegeentity_modifiedonbehalfby - modifiedonbehalfby - anyprivilegeentity - modifiedonbehalfby - - 0 - - - 042a1b69-86f9-f011-8406-7ced8d48c998 - - false - - true - iscustomizable - true - - false - true - user_officedocument + false + lk_category_createdby None - 7.1.0.0 + 8.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -471525,27 +520021,27 @@ false systemuserid systemuser - user_officedocument - owninguser - officedocument - owninguser + lk_category_createdby + createdby + category + lk_category_createdby 0 - b108bd71-6901-f111-8406-6045bde1ab47 + c10c82fa-113e-4f6e-a2ed-dd2e32004c88 false - true + false iscustomizable - true + false - false + true true - lk_appnotificationsignal_createdby + workflow_dependency_createdby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -471579,27 +520075,27 @@ false systemuserid systemuser - lk_appnotificationsignal_createdby + workflow_dependency_createdby createdby - appnotificationsignal + workflowdependency createdby 0 - b808bd71-6901-f111-8406-6045bde1ab47 + 3ca392fa-ced4-477c-be63-49fcfb6d76f1 false - true + false iscustomizable - true + false - false + true true - lk_appnotificationsignal_createdonbehalfby + lk_role_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -471633,27 +520129,27 @@ false systemuserid systemuser - lk_appnotificationsignal_createdonbehalfby - createdonbehalfby - appnotificationsignal - createdonbehalfby + lk_role_modifiedonbehalfby + modifiedonbehalfby + role + modifiedonbehalfby 0 - be08bd71-6901-f111-8406-6045bde1ab47 + 922d17fb-82b1-4406-b8e8-57e1877be782 false - true + false iscustomizable - true + false - false + true true - lk_appnotificationsignal_modifiedby + lk_connectionrolebase_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -471687,27 +520183,27 @@ false systemuserid systemuser - lk_appnotificationsignal_modifiedby - modifiedby - appnotificationsignal - modifiedby + lk_connectionrolebase_modifiedonbehalfby + modifiedonbehalfby + connectionrole + modifiedonbehalfby 0 - c408bd71-6901-f111-8406-6045bde1ab47 + bbd737fb-00c4-4f4f-a67b-89c462cf5108 false - true + false iscustomizable true - false + true true - lk_appnotificationsignal_modifiedonbehalfby + lk_mailmergetemplate_createdonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -471741,27 +520237,27 @@ false systemuserid systemuser - lk_appnotificationsignal_modifiedonbehalfby - modifiedonbehalfby - appnotificationsignal - modifiedonbehalfby + lk_mailmergetemplate_createdonbehalfby + createdonbehalfby + mailmergetemplate + createdonbehalfby 0 - 5715fcf0-6a01-f111-8406-6045bde1ab47 + 6d853efb-a919-4eda-8519-8f7491dc6d83 false - true + false iscustomizable true - false + true true - lk_msdyn_rtestructuredtemplate_createdby + lk_translationprocess_modifiedonbehalfby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -471795,27 +520291,27 @@ false systemuserid systemuser - lk_msdyn_rtestructuredtemplate_createdby - createdby - msdyn_rtestructuredtemplate - createdby + lk_translationprocess_modifiedonbehalfby + modifiedonbehalfby + translationprocess + modifiedonbehalfbyname 0 - 5d15fcf0-6a01-f111-8406-6045bde1ab47 + cc2262fb-898d-4bb4-8271-ec6a8a0a9002 false - true + false iscustomizable - true + false - false - true - lk_msdyn_rtestructuredtemplate_createdonbehalfby + true + false + lk_sdkmessagerequest_modifiedonbehalfby None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -471849,15 +520345,15 @@ false systemuserid systemuser - lk_msdyn_rtestructuredtemplate_createdonbehalfby - createdonbehalfby - msdyn_rtestructuredtemplate - createdonbehalfby + lk_sdkmessagerequest_modifiedonbehalfby + modifiedonbehalfby + sdkmessagerequest + modifiedonbehalfby 0 - 6315fcf0-6a01-f111-8406-6045bde1ab47 + 31f8f7fb-caba-f011-bbd3-7c1e52365f30 false @@ -471867,9 +520363,9 @@ false true - lk_msdyn_rtestructuredtemplate_modifiedby + lk_msdyn_favoriteknowledgearticle_createdby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -471903,15 +520399,15 @@ false systemuserid systemuser - lk_msdyn_rtestructuredtemplate_modifiedby - modifiedby - msdyn_rtestructuredtemplate - modifiedby + lk_msdyn_favoriteknowledgearticle_createdby + createdby + msdyn_favoriteknowledgearticle + createdby 0 - 6915fcf0-6a01-f111-8406-6045bde1ab47 + 3af8f7fb-caba-f011-bbd3-7c1e52365f30 false @@ -471921,9 +520417,9 @@ false true - lk_msdyn_rtestructuredtemplate_modifiedonbehalfby + lk_msdyn_favoriteknowledgearticle_createdonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -471957,15 +520453,15 @@ false systemuserid systemuser - lk_msdyn_rtestructuredtemplate_modifiedonbehalfby - modifiedonbehalfby - msdyn_rtestructuredtemplate - modifiedonbehalfby + lk_msdyn_favoriteknowledgearticle_createdonbehalfby + createdonbehalfby + msdyn_favoriteknowledgearticle + createdonbehalfby 0 - 6e5c56fd-6a01-f111-8406-6045bde1ab47 + 40f8f7fb-caba-f011-bbd3-7c1e52365f30 false @@ -471975,9 +520471,9 @@ false true - lk_msdyn_rtetemplatemapping_createdby + lk_msdyn_favoriteknowledgearticle_modifiedby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -472011,15 +520507,15 @@ false systemuserid systemuser - lk_msdyn_rtetemplatemapping_createdby - createdby - msdyn_rtetemplatemapping - createdby + lk_msdyn_favoriteknowledgearticle_modifiedby + modifiedby + msdyn_favoriteknowledgearticle + modifiedby 0 - 755c56fd-6a01-f111-8406-6045bde1ab47 + 46f8f7fb-caba-f011-bbd3-7c1e52365f30 false @@ -472029,9 +520525,9 @@ false true - lk_msdyn_rtetemplatemapping_createdonbehalfby + lk_msdyn_favoriteknowledgearticle_modifiedonbehalfby None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -472065,15 +520561,15 @@ false systemuserid systemuser - lk_msdyn_rtetemplatemapping_createdonbehalfby - createdonbehalfby - msdyn_rtetemplatemapping - createdonbehalfby + lk_msdyn_favoriteknowledgearticle_modifiedonbehalfby + modifiedonbehalfby + msdyn_favoriteknowledgearticle + modifiedonbehalfby 0 - 7b5c56fd-6a01-f111-8406-6045bde1ab47 + 58f8f7fb-caba-f011-bbd3-7c1e52365f30 false @@ -472083,9 +520579,9 @@ false true - lk_msdyn_rtetemplatemapping_modifiedby + user_msdyn_favoriteknowledgearticle None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -472119,27 +520615,27 @@ false systemuserid systemuser - lk_msdyn_rtetemplatemapping_modifiedby - modifiedby - msdyn_rtetemplatemapping - modifiedby + user_msdyn_favoriteknowledgearticle + owninguser + msdyn_favoriteknowledgearticle + owninguser 0 - 815c56fd-6a01-f111-8406-6045bde1ab47 + 3e4166fc-1ad2-4c49-8dc2-203c03b32a41 false - true + false iscustomizable true - false + true true - lk_msdyn_rtetemplatemapping_modifiedonbehalfby + lk_businessprocessflowinstancebase_createdonbehalfby None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -472173,27 +520669,27 @@ false systemuserid systemuser - lk_msdyn_rtetemplatemapping_modifiedonbehalfby - modifiedonbehalfby - msdyn_rtetemplatemapping - modifiedonbehalfby + lk_businessprocessflowinstancebase_createdonbehalfby + createdonbehalfby + businessprocessflowinstance + createdonbehalfby 0 - e8a46c14-2de0-f011-840b-0022489ebb55 + 20f58afc-2af5-4a78-ab3f-361f09a96ce1 false - true + false iscustomizable true - false + true true - lk_ctx_pyramid_createdby + lk_queueitembase_workerid None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -472227,27 +520723,27 @@ false systemuserid systemuser - lk_ctx_pyramid_createdby - createdby - ctx_pyramid - createdby + lk_queueitembase_workerid + workerid + queueitem + workerid_systemuser 0 - eea46c14-2de0-f011-840b-0022489ebb55 + f4cbc4fc-445d-4804-bc68-3a6c98163718 false - true + false iscustomizable - true + false - false - true - lk_ctx_pyramid_createdonbehalfby + true + false + modifiedby_serviceendpoint None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -472281,27 +520777,27 @@ false systemuserid systemuser - lk_ctx_pyramid_createdonbehalfby - createdonbehalfby - ctx_pyramid - createdonbehalfby + modifiedby_serviceendpoint + modifiedby + serviceendpoint + modifiedby 0 - f4a46c14-2de0-f011-840b-0022489ebb55 + 110555fd-6f54-4f36-9366-7eac1ab381d0 false - true + false iscustomizable - true + false - false - true - lk_ctx_pyramid_modifiedby + true + false + modifiedby_sdkmessagepair None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -472335,15 +520831,15 @@ false systemuserid systemuser - lk_ctx_pyramid_modifiedby + modifiedby_sdkmessagepair modifiedby - ctx_pyramid + sdkmessagepair modifiedby 0 - faa46c14-2de0-f011-840b-0022489ebb55 + 6e5c56fd-6a01-f111-8406-6045bde1ab47 false @@ -472353,9 +520849,9 @@ false true - lk_ctx_pyramid_modifiedonbehalfby + lk_msdyn_rtetemplatemapping_createdby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -472389,15 +520885,15 @@ false systemuserid systemuser - lk_ctx_pyramid_modifiedonbehalfby - modifiedonbehalfby - ctx_pyramid - modifiedonbehalfby + lk_msdyn_rtetemplatemapping_createdby + createdby + msdyn_rtetemplatemapping + createdby 0 - 0ca56c14-2de0-f011-840b-0022489ebb55 + 755c56fd-6a01-f111-8406-6045bde1ab47 false @@ -472407,9 +520903,9 @@ false true - user_ctx_pyramid + lk_msdyn_rtetemplatemapping_createdonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -472443,15 +520939,15 @@ false systemuserid systemuser - user_ctx_pyramid - owninguser - ctx_pyramid - owninguser + lk_msdyn_rtetemplatemapping_createdonbehalfby + createdonbehalfby + msdyn_rtetemplatemapping + createdonbehalfby 0 - c3cc55a2-42bf-f011-bbd5-7ced8d470ac7 + 7b5c56fd-6a01-f111-8406-6045bde1ab47 false @@ -472461,9 +520957,9 @@ false true - lk_cpr_cprconfiguration_createdby + lk_msdyn_rtetemplatemapping_modifiedby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -472497,15 +520993,15 @@ false systemuserid systemuser - lk_cpr_cprconfiguration_createdby - createdby - cpr_cprconfiguration - createdby + lk_msdyn_rtetemplatemapping_modifiedby + modifiedby + msdyn_rtetemplatemapping + modifiedby 0 - c9cc55a2-42bf-f011-bbd5-7ced8d470ac7 + 815c56fd-6a01-f111-8406-6045bde1ab47 false @@ -472515,9 +521011,9 @@ false true - lk_cpr_cprconfiguration_createdonbehalfby + lk_msdyn_rtetemplatemapping_modifiedonbehalfby None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -472551,15 +521047,123 @@ false systemuserid systemuser - lk_cpr_cprconfiguration_createdonbehalfby + lk_msdyn_rtetemplatemapping_modifiedonbehalfby + modifiedonbehalfby + msdyn_rtetemplatemapping + modifiedonbehalfby + + 0 + + + 0f7d69fd-12bc-406f-beed-7f00b53c04b6 + + false + + false + iscustomizable + true + + true + true + lk_navigationsetting_createdonbehalfby + None + 9.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + systemuser_navigationsetting_createdonbehalfby createdonbehalfby - cpr_cprconfiguration - createdonbehalfby + navigationsetting + navigationsetting_createdonbehalfby 0 - d0cc55a2-42bf-f011-bbd5-7ced8d470ac7 + 4eb36bfd-d28f-4b5a-a523-8ce1390a23f2 + + false + + false + iscustomizable + true + + true + true + lk_MobileOfflineProfile_createdby + None + 8.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_MobileOfflineProfile_createdby + createdby + mobileofflineprofile + createdby + + 0 + + + 0a9dbbfd-cbba-f011-bbd3-7c1e52365f30 false @@ -472569,7 +521173,7 @@ false true - lk_cpr_cprconfiguration_modifiedby + lk_attributeclusterconfig_createdby None 1.0 OneToManyRelationship @@ -472605,15 +521209,15 @@ false systemuserid systemuser - lk_cpr_cprconfiguration_modifiedby - modifiedby - cpr_cprconfiguration - modifiedby + lk_attributeclusterconfig_createdby + createdby + attributeclusterconfig + createdby 0 - d6cc55a2-42bf-f011-bbd5-7ced8d470ac7 + 109dbbfd-cbba-f011-bbd3-7c1e52365f30 false @@ -472623,7 +521227,7 @@ false true - lk_cpr_cprconfiguration_modifiedonbehalfby + lk_attributeclusterconfig_createdonbehalfby None 1.0 OneToManyRelationship @@ -472659,15 +521263,15 @@ false systemuserid systemuser - lk_cpr_cprconfiguration_modifiedonbehalfby - modifiedonbehalfby - cpr_cprconfiguration - modifiedonbehalfby + lk_attributeclusterconfig_createdonbehalfby + createdonbehalfby + attributeclusterconfig + createdonbehalfby 0 - e9cc55a2-42bf-f011-bbd5-7ced8d470ac7 + 169dbbfd-cbba-f011-bbd3-7c1e52365f30 false @@ -472677,7 +521281,7 @@ false true - user_cpr_cprconfiguration + lk_attributeclusterconfig_modifiedby None 1.0 OneToManyRelationship @@ -472713,15 +521317,15 @@ false systemuserid systemuser - user_cpr_cprconfiguration - owninguser - cpr_cprconfiguration - owninguser + lk_attributeclusterconfig_modifiedby + modifiedby + attributeclusterconfig + modifiedby 0 - d8c56445-4305-f111-8408-6045bddd6baa + 1c9dbbfd-cbba-f011-bbd3-7c1e52365f30 false @@ -472731,9 +521335,9 @@ false true - lk_githubappconfig_createdby + lk_attributeclusterconfig_modifiedonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -472767,15 +521371,15 @@ false systemuserid systemuser - lk_githubappconfig_createdby - createdby - githubappconfig - createdby + lk_attributeclusterconfig_modifiedonbehalfby + modifiedonbehalfby + attributeclusterconfig + modifiedonbehalfby 0 - dec56445-4305-f111-8408-6045bddd6baa + bf9dbbfd-cbba-f011-bbd3-7c1e52365f30 false @@ -472785,9 +521389,9 @@ false true - lk_githubappconfig_createdonbehalfby + lk_entityclusterconfig_createdby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -472821,15 +521425,15 @@ false systemuserid systemuser - lk_githubappconfig_createdonbehalfby - createdonbehalfby - githubappconfig - createdonbehalfby + lk_entityclusterconfig_createdby + createdby + entityclusterconfig + createdby 0 - e4c56445-4305-f111-8408-6045bddd6baa + c59dbbfd-cbba-f011-bbd3-7c1e52365f30 false @@ -472839,9 +521443,9 @@ false true - lk_githubappconfig_modifiedby + lk_entityclusterconfig_createdonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -472875,15 +521479,15 @@ false systemuserid systemuser - lk_githubappconfig_modifiedby - modifiedby - githubappconfig - modifiedby + lk_entityclusterconfig_createdonbehalfby + createdonbehalfby + entityclusterconfig + createdonbehalfby 0 - eac56445-4305-f111-8408-6045bddd6baa + cb9dbbfd-cbba-f011-bbd3-7c1e52365f30 false @@ -472893,9 +521497,9 @@ false true - lk_githubappconfig_modifiedonbehalfby + lk_entityclusterconfig_modifiedby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -472929,15 +521533,15 @@ false systemuserid systemuser - lk_githubappconfig_modifiedonbehalfby - modifiedonbehalfby - githubappconfig - modifiedonbehalfby + lk_entityclusterconfig_modifiedby + modifiedby + entityclusterconfig + modifiedby 0 - fcc56445-4305-f111-8408-6045bddd6baa + d19dbbfd-cbba-f011-bbd3-7c1e52365f30 false @@ -472947,9 +521551,9 @@ false true - user_githubappconfig + lk_entityclusterconfig_modifiedonbehalfby None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -472983,27 +521587,27 @@ false systemuserid systemuser - user_githubappconfig - owninguser - githubappconfig - owninguser + lk_entityclusterconfig_modifiedonbehalfby + modifiedonbehalfby + entityclusterconfig + modifiedonbehalfby 0 - ab9d4752-4305-f111-8408-6045bddd6baa + dfa0c0fd-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_sourcecontroloperationstatus_createdby + lk_flowsessionbinary_createdby None - 9.1.0.0 + 1.9.28.0 OneToManyRelationship DoNotDisplay @@ -473037,15 +521641,15 @@ false systemuserid systemuser - lk_sourcecontroloperationstatus_createdby + lk_flowsessionbinary_createdby createdby - sourcecontroloperationstatus + flowsessionbinary createdby 0 - b19d4752-4305-f111-8408-6045bddd6baa + e5a0c0fd-baba-f011-bbd3-7c1e52365f30 false @@ -473055,9 +521659,9 @@ false true - lk_sourcecontroloperationstatus_createdonbehalfby + lk_flowsessionbinary_createdonbehalfby None - 9.1.0.0 + 1.9.28.0 OneToManyRelationship DoNotDisplay @@ -473091,27 +521695,27 @@ false systemuserid systemuser - lk_sourcecontroloperationstatus_createdonbehalfby + lk_flowsessionbinary_createdonbehalfby createdonbehalfby - sourcecontroloperationstatus + flowsessionbinary createdonbehalfby 0 - b79d4752-4305-f111-8408-6045bddd6baa + eba0c0fd-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - lk_sourcecontroloperationstatus_modifiedby + lk_flowsessionbinary_modifiedby None - 9.1.0.0 + 1.9.28.0 OneToManyRelationship DoNotDisplay @@ -473145,15 +521749,15 @@ false systemuserid systemuser - lk_sourcecontroloperationstatus_modifiedby + lk_flowsessionbinary_modifiedby modifiedby - sourcecontroloperationstatus + flowsessionbinary modifiedby 0 - bd9d4752-4305-f111-8408-6045bddd6baa + f1a0c0fd-baba-f011-bbd3-7c1e52365f30 false @@ -473163,9 +521767,9 @@ false true - lk_sourcecontroloperationstatus_modifiedonbehalfby + lk_flowsessionbinary_modifiedonbehalfby None - 9.1.0.0 + 1.9.28.0 OneToManyRelationship DoNotDisplay @@ -473199,59 +521803,45 @@ false systemuserid systemuser - lk_sourcecontroloperationstatus_modifiedonbehalfby + lk_flowsessionbinary_modifiedonbehalfby modifiedonbehalfby - sourcecontroloperationstatus + flowsessionbinary modifiedonbehalfby 0 - 16185858-4305-f111-8408-6045bddd6baa + 03a1c0fd-baba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - true + false - true + false true - systemuser_sourcecontroloperationstatus_StartedBy - Append - 9.1.0.0 + user_flowsessionbinary + None + 1.9.28.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - cbc08e10-4915-4125-8790-45700f6398c7 - - true - - 1033 - - - - cbc08e10-4915-4125-8790-45700f6398c7 - - true - - 1033 - + + - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -473267,15 +521857,15 @@ false systemuserid systemuser - systemuser_sourcecontroloperationstatus_StartedBy - startedby - sourcecontroloperationstatus - StartedBy + user_flowsessionbinary + owninguser + flowsessionbinary + owninguser - 1 + 0 - de2515d5-42bf-f011-bbd5-7ced8d470ac7 + 7da2c0fd-baba-f011-bbd3-7c1e52365f30 false @@ -473285,9 +521875,9 @@ false true - lk_cpr_cprrun_createdby + lk_processstageparameter_createdby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -473321,15 +521911,15 @@ false systemuserid systemuser - lk_cpr_cprrun_createdby + lk_processstageparameter_createdby createdby - cpr_cprrun + processstageparameter createdby 0 - e52515d5-42bf-f011-bbd5-7ced8d470ac7 + 83a2c0fd-baba-f011-bbd3-7c1e52365f30 false @@ -473339,9 +521929,9 @@ false true - lk_cpr_cprrun_createdonbehalfby + lk_processstageparameter_createdonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -473375,15 +521965,15 @@ false systemuserid systemuser - lk_cpr_cprrun_createdonbehalfby + lk_processstageparameter_createdonbehalfby createdonbehalfby - cpr_cprrun + processstageparameter createdonbehalfby 0 - ec2515d5-42bf-f011-bbd5-7ced8d470ac7 + 89a2c0fd-baba-f011-bbd3-7c1e52365f30 false @@ -473393,9 +521983,9 @@ false true - lk_cpr_cprrun_modifiedby + lk_processstageparameter_modifiedby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -473429,15 +522019,15 @@ false systemuserid systemuser - lk_cpr_cprrun_modifiedby + lk_processstageparameter_modifiedby modifiedby - cpr_cprrun + processstageparameter modifiedby 0 - f32515d5-42bf-f011-bbd5-7ced8d470ac7 + 8fa2c0fd-baba-f011-bbd3-7c1e52365f30 false @@ -473447,9 +522037,9 @@ false true - lk_cpr_cprrun_modifiedonbehalfby + lk_processstageparameter_modifiedonbehalfby None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -473483,27 +522073,27 @@ false systemuserid systemuser - lk_cpr_cprrun_modifiedonbehalfby + lk_processstageparameter_modifiedonbehalfby modifiedonbehalfby - cpr_cprrun + processstageparameter modifiedonbehalfby 0 - 052615d5-42bf-f011-bbd5-7ced8d470ac7 + a1a2c0fd-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - user_cpr_cprrun + user_processstageparameter None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -473537,15 +522127,15 @@ false systemuserid systemuser - user_cpr_cprrun + user_processstageparameter owninguser - cpr_cprrun + processstageparameter owninguser 0 - 8d4683ae-42bf-f011-bbd5-7ced8d470ac7 + 3ba3c0fd-baba-f011-bbd3-7c1e52365f30 false @@ -473555,9 +522145,9 @@ false true - lk_cpr_cprsubscription_createdby + lk_savingrule_createdby None - 1.0 + 1.9.2.0 OneToManyRelationship DoNotDisplay @@ -473591,15 +522181,15 @@ false systemuserid systemuser - lk_cpr_cprsubscription_createdby + lk_savingrule_createdby createdby - cpr_cprsubscription + savingrule createdby 0 - 944683ae-42bf-f011-bbd5-7ced8d470ac7 + 41a3c0fd-baba-f011-bbd3-7c1e52365f30 false @@ -473609,9 +522199,9 @@ false true - lk_cpr_cprsubscription_createdonbehalfby + lk_savingrule_createdonbehalfby None - 1.0 + 1.9.2.0 OneToManyRelationship DoNotDisplay @@ -473645,15 +522235,15 @@ false systemuserid systemuser - lk_cpr_cprsubscription_createdonbehalfby + lk_savingrule_createdonbehalfby createdonbehalfby - cpr_cprsubscription + savingrule createdonbehalfby 0 - 9a4683ae-42bf-f011-bbd5-7ced8d470ac7 + 47a3c0fd-baba-f011-bbd3-7c1e52365f30 false @@ -473663,9 +522253,9 @@ false true - lk_cpr_cprsubscription_modifiedby + lk_savingrule_modifiedby None - 1.0 + 1.9.2.0 OneToManyRelationship DoNotDisplay @@ -473699,15 +522289,15 @@ false systemuserid systemuser - lk_cpr_cprsubscription_modifiedby + lk_savingrule_modifiedby modifiedby - cpr_cprsubscription + savingrule modifiedby 0 - a04683ae-42bf-f011-bbd5-7ced8d470ac7 + 4da3c0fd-baba-f011-bbd3-7c1e52365f30 false @@ -473717,9 +522307,9 @@ false true - lk_cpr_cprsubscription_modifiedonbehalfby + lk_savingrule_modifiedonbehalfby None - 1.0 + 1.9.2.0 OneToManyRelationship DoNotDisplay @@ -473753,15 +522343,15 @@ false systemuserid systemuser - lk_cpr_cprsubscription_modifiedonbehalfby + lk_savingrule_modifiedonbehalfby modifiedonbehalfby - cpr_cprsubscription + savingrule modifiedonbehalfby 0 - b34683ae-42bf-f011-bbd5-7ced8d470ac7 + 5fa3c0fd-baba-f011-bbd3-7c1e52365f30 false @@ -473771,9 +522361,9 @@ false true - user_cpr_cprsubscription + user_savingrule None - 1.0 + 1.9.2.0 OneToManyRelationship DoNotDisplay @@ -473807,15 +522397,15 @@ false systemuserid systemuser - user_cpr_cprsubscription + user_savingrule owninguser - cpr_cprsubscription + savingrule owninguser 0 - f68e6396-42bf-f011-bbd5-7ced8d470ac7 + 011d1dfe-bdba-f011-bbd3-7c1e52365f30 false @@ -473825,10 +522415,64 @@ false true - lk_cpr_cprdata_createdby + sideloadedaiplugin_sideloadedpluginownerid None 1.0 OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + RemoveLink + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + sideloadedaiplugin_sideloadedpluginownerid + sideloadedpluginownerid + sideloadedaiplugin + sideloadedpluginownerid + + 0 + + + 430366fe-a501-451d-bee0-57cd2c714ee3 + + false + + false + iscustomizable + false + + true + false + lk_userqueryvisualization_modifiedby + None + 5.0.0.0 + OneToManyRelationship DoNotDisplay Details @@ -473861,27 +522505,27 @@ false systemuserid systemuser - lk_cpr_cprdata_createdby - createdby - cpr_cprdata - createdby + lk_userqueryvisualization_modifiedby + modifiedby + userqueryvisualization + modifiedby 0 - fd8e6396-42bf-f011-bbd5-7ced8d470ac7 + 145592fe-3b12-4970-a0ee-21a8f47a65f1 false - true + false iscustomizable true - false - true - lk_cpr_cprdata_createdonbehalfby + true + false + lk_sharepointsitebase_modifiedby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -473915,27 +522559,27 @@ false systemuserid systemuser - lk_cpr_cprdata_createdonbehalfby - createdonbehalfby - cpr_cprdata - createdonbehalfby + lk_sharepointsitebase_modifiedby + modifiedby + sharepointsite + modifiedby 0 - 038f6396-42bf-f011-bbd5-7ced8d470ac7 + ef2333ff-07ec-4db3-9a6c-2863160a2587 false - true + false iscustomizable - true + false - false + true true - lk_cpr_cprdata_modifiedby + lk_importjobbase_createdonbehalfby None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -473969,27 +522613,27 @@ false systemuserid systemuser - lk_cpr_cprdata_modifiedby - modifiedby - cpr_cprdata - modifiedby + lk_importjobbase_createdonbehalfby + createdonbehalfby + importjob + createdonbehalfby 0 - 0a8f6396-42bf-f011-bbd5-7ced8d470ac7 + 72d0a3ff-46bb-42d6-839a-7ce30f54ef1d false - true + false iscustomizable true - false + true true - lk_cpr_cprdata_modifiedonbehalfby + lk_slabase_modifiedby None - 1.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -474023,27 +522667,27 @@ false systemuserid systemuser - lk_cpr_cprdata_modifiedonbehalfby - modifiedonbehalfby - cpr_cprdata - modifiedonbehalfby + lk_slabase_modifiedby + modifiedby + sla + modifiedby 0 - 1d8f6396-42bf-f011-bbd5-7ced8d470ac7 + 571ce5ff-792a-4709-adb0-8a34c433a350 false - true + false iscustomizable - true + false - false - true - user_cpr_cprdata - None - 1.0 + true + false + lk_semiannualfiscalcalendar_salespersonid + ParentChild + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -474077,10 +522721,64 @@ false systemuserid systemuser - user_cpr_cprdata - owninguser - cpr_cprdata - owninguser + lk_semiannualfiscalcalendar_salespersonid + salespersonid + semiannualfiscalcalendar + salespersonid + + 2 + + + 5d3ffbff-2c12-4e9e-9f8a-16e73a2988ba + + false + + false + iscustomizable + false + + true + true + SystemUser_ProcessSessions + None + 5.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 110 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + SystemUser_ProcessSessions + regardingobjectid + processsession + regardingobjectid_systemuser 0 @@ -474523,6 +523221,13 @@ For internal use only. 1033 + + 42e10729-7876-490f-a4db-6f8aebb54362 + + true + Kun til intern brug. + 1030 + 8ecee1dc-2241-db11-898a-0007e9e17ebd @@ -475007,6 +523712,13 @@ Unique identifier of the user primary responsible for the team. 1033 + + add048ca-52b1-4a59-aa6a-f8a690b5cb46 + + true + Entydigt id for den bruger, der er den primært ansvarlige for gruppen. + 1030 + 0b830bca-526e-45f6-a1b5-83a532b69655 @@ -475025,6 +523737,13 @@ Administrator 1033 + + ddb69068-563b-4a0c-8ba7-6f85a2540310 + + true + Administrator + 1030 + f0afc31a-4ab5-4629-ab2a-90255d265af6 @@ -475334,6 +524053,13 @@ The object Id for a group. 1033 + + 89dee24c-8ce4-4539-a6d3-172ed157ee4b + + true + Azure Active Directory-objekt-id'et for en gruppe. + 1030 + 8ace87f9-c743-40fc-8c74-7a98011cbe5d @@ -475352,6 +524078,13 @@ Object Id for a group 1033 + + ae01e862-d6d1-41df-804f-b9a940238927 + + true + Azure AD-objekt-id for en gruppe + 1030 + 006bcccc-a50c-41e2-904a-2827f05b582b @@ -475453,6 +524186,13 @@ Unique identifier of the business unit with which the team is associated. 1033 + + c65436f0-fa7c-40c4-84c0-1074cad818e1 + + true + Entydigt id for den afdeling, som gruppen er tilknyttet. + 1030 + 16aac7f4-2241-db11-898a-0007e9e17ebd @@ -475471,6 +524211,13 @@ Business Unit 1033 + + 8f0908bb-2333-43a2-87f9-70af422d8911 + + true + Afdeling + 1030 + 15aac7f4-2241-db11-898a-0007e9e17ebd @@ -475678,6 +524425,13 @@ Unique identifier of the user who created the team. 1033 + + 42cc4e89-f211-43c3-9243-e379fbb8583b + + true + Entydigt id for den bruger, der oprettede gruppen. + 1030 + aa25e7d6-2241-db11-898a-0007e9e17ebd @@ -475696,6 +524450,13 @@ Created By 1033 + + 29df284f-65f7-4934-b123-ea4e0e816078 + + true + Oprettet af + 1030 + a925e7d6-2241-db11-898a-0007e9e17ebd @@ -476005,6 +524766,13 @@ Date and time when the team was created. 1033 + + 36384980-7da3-42da-aa2a-6abc8f742e05 + + true + Dato og klokkeslæt for oprettelse af gruppen. + 1030 + c3d6a218-2341-db11-898a-0007e9e17ebd @@ -476023,6 +524791,13 @@ Created On 1033 + + 57d3ebf8-37e0-4adf-b977-f0b49b44adcd + + true + Oprettet + 1030 + c2d6a218-2341-db11-898a-0007e9e17ebd @@ -476136,6 +524911,13 @@ Unique identifier of the delegate user who created the team. 1033 + + f72a9c39-bdef-4c4c-9a17-e3fe2b4ec35f + + true + Entydigt id for den stedfortræderbruger, der oprettede gruppen. + 1030 + d7373f20-4e1a-4539-a201-b0d9f6ff1052 @@ -476154,6 +524936,13 @@ Created By (Delegate) 1033 + + 71ce2292-4495-47d5-b990-1a0472e2c5e0 + + true + Oprettet af (stedfortræder) + 1030 + 364e6206-30cb-47e8-a49e-f59039fe4e45 @@ -476688,6 +525477,13 @@ Description of the team. 1033 + + af8c824c-ae14-4b8b-8596-5d8a4ef6de3d + + true + Beskrivelse af gruppen. + 1030 + e91ed7e8-2241-db11-898a-0007e9e17ebd @@ -476706,6 +525502,13 @@ Description 1033 + + 02a4d74d-712d-46fa-9c11-28d08ada2c12 + + true + Beskrivelse + 1030 + e81ed7e8-2241-db11-898a-0007e9e17ebd @@ -476814,6 +525617,13 @@ Email address for the team. 1033 + + 2b0054a6-04e7-4319-bb40-34b2793dfa62 + + true + Teamets mailadresse. + 1030 + 4f9aba00-2341-db11-898a-0007e9e17ebd @@ -476832,6 +525642,13 @@ Email 1033 + + 6b412fc7-c89c-4d99-8098-9f6ddb96f82d + + true + Mail + 1030 + 4e9aba00-2341-db11-898a-0007e9e17ebd @@ -476944,6 +525761,13 @@ Exchange rate for the currency associated with the team with respect to the base currency. 1033 + + 4ecf6b7c-23ad-41ef-92a7-828b7dc12924 + + true + Valutakurs for den valuta, der er tilknyttet gruppen, i forhold til grundvalutaen. + 1030 + 1c9098c3-1971-4345-868b-90e0db61276a @@ -476962,6 +525786,13 @@ Exchange Rate 1033 + + b19a15e0-65a4-429f-b7bb-3c32393bfdb3 + + true + Valutakurs + 1030 + 5c3b72a4-096e-435c-9198-97f66b1014c5 @@ -477069,6 +525900,13 @@ Unique identifier of the data import or data migration that created this record. 1033 + + 52f016fc-161d-421a-85dd-e3d41bf5d4aa + + true + Entydigt id for den dataimport eller dataoverførsel, der oprettede denne post. + 1030 + 5e550ef8-a93f-438d-b524-c0d99fb6993b @@ -477087,6 +525925,13 @@ Import Sequence Number 1033 + + 972f823c-7359-4f55-9f40-ddb06640e623 + + true + Importsekvensnummer + 1030 + 500746c6-2e2b-441a-acc3-186d99aca633 @@ -477193,6 +526038,13 @@ Information about whether the team is a default business unit team. 1033 + + b51f6cd5-7db9-4af1-86ca-91c1d77fa474 + + true + Angiver, om gruppen er en standardafdelingsgruppe. + 1030 + e7ddb7fb-ddc7-4ee7-bd51-41580e165147 @@ -477211,6 +526063,13 @@ Is Default 1033 + + b49436f6-b4c5-4999-be43-50d7d63f85e9 + + true + Er standard + 1030 + 87451ff2-59fc-4e6d-94e4-9b118e08bb1e @@ -477299,6 +526158,13 @@ Information about whether the team is a default business unit team. 1033 + + d6066e44-518d-4804-b4b0-b6bd684308fb + + true + Angiver, om gruppen er en standardafdelingsgruppe. + 1030 + 2b76fb6f-05e6-48af-991b-c9ed6a740408 @@ -477344,6 +526210,13 @@ No 1033 + + 2cfb49e1-1f21-48f9-8a9a-5de0efe7a610 + + true + Nej + 1030 + e42c2a84-ee41-4741-ba48-63c7a3fbe12c @@ -477377,6 +526250,13 @@ Yes 1033 + + 41e9acb5-e8ec-48cc-829f-2dedcceaf32d + + true + Ja + 1030 + a4f0111e-2d50-4e85-9bd1-1a4e7599f027 @@ -477588,6 +526468,13 @@ Information about whether an associated encrypted attribute has a value. 1033 + + fb60d1d2-d5c9-41cd-bfd7-f7bd3fdf333b + + true + Oplysninger om, hvorvidt en tilknyttet krypteret attribut har en værdi. + 1030 + 75bc633e-e8de-4ead-850b-5d17fc9f5220 @@ -477606,6 +526493,13 @@ Is Encrypted Attribute Value Set 1033 + + 47b838fb-154a-40d7-a62e-d92b7f29b2c2 + + true + Er krypteret attributværdi angivet + 1030 + 3db0e44d-bf0e-47b6-a72e-d4c0308ec1d3 @@ -477647,6 +526541,13 @@ No 1033 + + 33a90666-1ad7-44a6-b7bd-f2903f5488f8 + + true + Nej + 1030 + 4f3aa649-7e06-4995-811d-b86f518567e7 @@ -477680,6 +526581,13 @@ Yes 1033 + + 376d8694-a062-4143-9f80-49d8dd424b89 + + true + Ja + 1030 + 92421800-a49a-4d95-a429-0b34f21c4b53 @@ -478202,6 +527110,13 @@ Unique identifier of the user who last modified the team. 1033 + + c09bd5ea-df11-48ee-a615-6f4bc436f3ad + + true + Entydigt id for den bruger, der sidst ændrede gruppen. + 1030 + ff98ba00-2341-db11-898a-0007e9e17ebd @@ -478220,6 +527135,13 @@ Modified By 1033 + + b4608883-6f65-4f6c-b54b-3ffdafc57eff + + true + Ændret af + 1030 + fe98ba00-2341-db11-898a-0007e9e17ebd @@ -478529,6 +527451,13 @@ Date and time when the team was last modified. 1033 + + 4a0f7086-a95b-458c-a962-57d2aa91c607 + + true + Dato og klokkeslæt for den seneste ændring af gruppen. + 1030 + c4a9c7f4-2241-db11-898a-0007e9e17ebd @@ -478547,6 +527476,13 @@ Modified On 1033 + + c0d6eecf-607a-4480-8f2c-bbdcf4870058 + + true + Ændret + 1030 + c3a9c7f4-2241-db11-898a-0007e9e17ebd @@ -478660,6 +527596,13 @@ Unique identifier of the delegate user who last modified the team. 1033 + + d5d86fd5-2a79-45ba-9577-57656d2864ec + + true + Entydigt id for den stedfortræderbruger, der senest ændrede gruppen. + 1030 + 7ba23bcd-1ce8-4abb-bd64-f185bb43dc7f @@ -478678,6 +527621,13 @@ Modified By (Delegate) 1033 + + f89832ec-33e8-408e-8d24-6e53e1e455d4 + + true + Ændret af (stedfortræder) + 1030 + 46ee146f-8b30-4b20-b245-dad1b7622481 @@ -478987,6 +527937,13 @@ Name of the team. 1033 + + 02a20504-e227-4a5d-9a71-abecac109b86 + + true + Navnet på gruppen. + 1030 + 13eaaf0c-2341-db11-898a-0007e9e17ebd @@ -479005,6 +527962,13 @@ Team Name 1033 + + 3e146e1f-7bfa-430a-a838-63f421acde3a + + true + Gruppenavn + 1030 + 12eaaf0c-2341-db11-898a-0007e9e17ebd @@ -479117,6 +528081,13 @@ Unique identifier of the organization associated with the team. 1033 + + b698f6bf-6b19-479f-afdb-6162c5c82119 + + true + Entydigt id for den organisation, der er tilknyttet gruppen. + 1030 + d8abc7f4-2241-db11-898a-0007e9e17ebd @@ -479135,6 +528106,13 @@ Organization 1033 + + 06d30c78-a329-4fa7-9b4f-f143c7077bce + + true + Organisation + 1030 + d7abc7f4-2241-db11-898a-0007e9e17ebd @@ -479338,6 +528316,13 @@ Date and time that the record was migrated. 1033 + + bb65ae03-b219-4c92-914f-b941517d1ea9 + + true + Dato og klokkeslæt for overførsel af posten. + 1030 + ff9cdbcf-d95c-42e5-a506-a0d315fb04dd @@ -479356,6 +528341,13 @@ Record Created On 1033 + + 94cfba7d-31f6-478c-9dc0-0d81dccde532 + + true + Posten blev oprettet den + 1030 + 64f4e92d-b5da-48f2-aa0a-495738bedf48 @@ -479469,6 +528461,13 @@ Shows the ID of the process. 1033 + + 80fcf458-a8b6-4c97-bddd-48945d25dec4 + + true + Viser processens id. + 1030 + ab3ac463-44ec-43e3-8a95-fc840eef0199 @@ -479487,6 +528486,13 @@ Process 1033 + + 0ad86b0d-1bba-430a-abd3-588a10b8b2a8 + + true + Proces + 1030 + 6f38f8b6-de39-4342-bc9d-377f9589bad6 @@ -479588,6 +528594,13 @@ Unique identifier of the default queue for the team. 1033 + + 10677f49-2a8f-46fe-9624-c62e3b9d94b5 + + true + Entydigt id for standardkøen for gruppen. + 1030 + a6d76a7e-f0e1-4d8c-b9c6-2fa24e6c1a1a @@ -479606,6 +528619,13 @@ Default Queue 1033 + + 309d3eaf-26ec-41a5-a8d4-36eeefb6b30c + + true + Standardkø + 1030 + d8720988-9c19-499f-b5b8-974619a3e37e @@ -479813,6 +528833,13 @@ Choose the record that the team relates to. 1033 + + f96fc4bb-e0cb-408a-bf5b-690b11688e18 + + true + Vælg den post, som teamet er relateret til. + 1030 + fab57545-65e5-40ce-ac4d-b4519d74ccca @@ -479831,6 +528858,13 @@ Regarding Object Id 1033 + + e2f4b2fd-fcd6-4ae3-b53a-7c1868e7022f + + true + Id for angående-objekt + 1030 + bbe20139-beab-4631-b6cf-8c1458916484 @@ -479936,6 +528970,13 @@ Type of the associated record for team - used for system managed access teams only. 1033 + + 3a454bf5-fcd5-4323-872e-52eaec5d9c09 + + true + Typen af den tilknyttede post for team - bruges kun til team med systemadministreret adgang. + 1030 + aac98660-01a4-47ab-862c-5c093ee1cd62 @@ -479954,6 +528995,13 @@ Regarding Object Type 1033 + + 1c4453c8-db76-4320-8216-62ed273a3e24 + + true + Angående-objekttype + 1030 + bd8f2a75-5586-4e15-a71c-c7be47a6c892 @@ -480319,6 +529367,13 @@ Shows the ID of the stage. 1033 + + 4430e18c-a642-4541-9f23-cab8f1a9dedc + + true + Viser fasens id. + 1030 + 340d117b-883c-415b-bc5c-1802a43cb0ae @@ -480337,6 +529392,13 @@ (Deprecated) Process Stage 1033 + + ea12b638-8491-4a60-ad35-8e61f8647b86 + + true + (Udfaset) Navn på procesfase + 1030 + d95f4048-1d2a-4150-9a7b-c043e5113df5 @@ -480438,6 +529500,13 @@ Select whether the team will be managed by the system. 1033 + + 5e792eaf-e0a5-44bb-9499-f5999bd2db2b + + true + Vælg, om teamet administreres af systemet. + 1030 + 7e87596b-b952-42ff-bd6c-ea969ae44c85 @@ -480456,6 +529525,13 @@ Is System Managed 1033 + + 9cbfcb29-9122-4c51-b838-9957bee19e0e + + true + Er systemadministreret + 1030 + 152da9aa-0b86-4fb6-83c8-c6395a58bcdc @@ -480544,6 +529620,13 @@ Information about whether the team is system managed. 1033 + + f751a6e4-1e60-4176-8adb-9f8e816d1ccb + + true + Angiver, om teamet er systemadministreret. + 1030 + 448104ac-a3c7-4999-a55b-efbd2b4cd580 @@ -480589,6 +529672,13 @@ No 1033 + + fb747f8b-9da0-403c-acc7-5986f339fc6f + + true + Nej + 1030 + c68b0991-9b5c-47c9-9676-0395a299999d @@ -480622,6 +529712,13 @@ Yes 1033 + + 2abde630-97ee-4f84-b8d0-84ccdb94f0fd + + true + Ja + 1030 + 95986559-93b3-4b14-b921-ee58e0e8bd9b @@ -480755,6 +529852,13 @@ Unique identifier for the team. 1033 + + 1b1ef3f5-1812-4a40-a721-6d79bf25e98d + + true + Entydigt id for gruppen. + 1030 + 2299ba00-2341-db11-898a-0007e9e17ebd @@ -480773,6 +529877,13 @@ Team 1033 + + cc531625-6583-4d3c-be33-9e0ed8591e74 + + true + Gruppe + 1030 + 2199ba00-2341-db11-898a-0007e9e17ebd @@ -480874,6 +529985,13 @@ Shows the team template that is associated with the team. 1033 + + ec028cd2-5dab-46da-84ff-71e0f6ab980c + + true + Viser den teamskabelon, der er tilknyttet teamet. + 1030 + 7c4cd789-8c9d-e211-86ad-00155db725a1 @@ -480892,6 +530010,13 @@ Team Template Identifier 1033 + + 860e7ea3-9625-48ac-b0c6-d4d971d21721 + + true + Id for teamskabelon + 1030 + 7b4cd789-8c9d-e211-86ad-00155db725a1 @@ -480997,6 +530122,13 @@ Select the team type. 1033 + + d28e13a2-f20c-43be-b780-ace63b70bc1c + + true + Vælg teamtypen. + 1030 + 628d4a2e-dea1-47e5-98a4-d9b827ea86ec @@ -481015,6 +530147,13 @@ Team Type 1033 + + eeb15ebf-4550-42e0-8fb8-297420aeba65 + + true + Teamtype + 1030 + 640f8214-9e90-4414-8839-e3519ab5b15b @@ -481103,6 +530242,13 @@ Information about team type. 1033 + + 01858f43-1f4d-4e85-a250-c762b391d109 + + true + Oplysninger om teamtypen. + 1030 + 1e26dedd-8d8c-4012-822c-ca686f02d4b0 @@ -481121,6 +530267,13 @@ Team Type 1033 + + ad9d5e09-ed7b-424e-ad2b-2db5fc5abfb8 + + true + Teamtype + 1030 + df6625b9-b662-4807-adaa-7767895caa79 @@ -481163,6 +530316,13 @@ Owner 1033 + + 32c14df5-cdcd-422a-850b-7f83886c1551 + + true + Ejer + 1030 + 0375a1fc-fe05-4055-a60e-3859b9685588 @@ -481196,6 +530356,13 @@ Access 1033 + + 015e7803-4963-470f-8fa6-1d87e86c947f + + true + Adgang + 1030 + 76b5536b-a3fd-4e3a-82c0-8cf68a913d1f @@ -481229,6 +530396,13 @@ Security Group 1033 + + 64e8434b-ed8f-4a3a-8ea9-5a36868464ff + + true + AAD-sikkerhedsgruppe + 1030 + 732411df-9916-47a4-95cc-1af9dbc882fd @@ -481262,6 +530436,13 @@ Office Group 1033 + + bfc5d803-efca-4a96-84c4-7d9752c63239 + + true + AAD Office-gruppe + 1030 + 9420ef64-2887-45c5-af1a-8d3a4799a3a3 @@ -481400,6 +530581,13 @@ Unique identifier of the currency associated with the team. 1033 + + e08346c3-4eeb-4607-858b-ed81519b03cd + + true + Entydigt id for den valuta, der er tilknyttet gruppen. + 1030 + c9432ace-33d5-41a4-bd9c-e20ccd691367 @@ -481418,6 +530606,13 @@ Currency 1033 + + bf89e278-54c1-4e02-b673-82c2be1cf674 + + true + Valuta + 1030 + 69817682-0208-42c6-b216-24ff20b2f92f @@ -481625,6 +530820,13 @@ For internal use only. 1033 + + eaa627e4-4230-40b8-8c4a-028d477bb097 + + true + Kun til intern brug. + 1030 + 17e85992-9839-47cc-aec2-0ccdeceb18da @@ -481643,6 +530845,13 @@ (Deprecated) Traversed Path 1033 + + 04241831-ac0b-4f86-9b8e-869bb9e10381 + + true + (Udfaset) Gennemløbet sti + 1030 + 0d788329-6903-4adf-a0b8-38cb2ad02b9d @@ -481755,6 +530964,13 @@ Version number of the team. 1033 + + cffa5e9e-7baf-40b3-9d7d-bc0e6e44be06 + + true + Versionsnummeret for gruppen. + 1030 + d0e095fb-28f0-4446-bb9e-4bb194f20bd9 @@ -481773,6 +530989,13 @@ Version number 1033 + + cf667971-a390-41bf-ab64-cbd955a0e2b9 + + true + Versionsnummer + 1030 + 6849dd45-5c89-4dab-bcc3-49cbb41f900a @@ -481876,6 +531099,13 @@ Pronunciation of the full name of the team, written in phonetic hiragana or katakana characters. 1033 + + 65c42570-2296-414e-bcfa-ae9b329cc974 + + true + Udtale af gruppens fulde navn, skrevet i fonetiske hiragana- eller katakana-tegn. + 1030 + d606a51c-7191-4a10-bf21-54bfe342aab7 @@ -481894,6 +531124,13 @@ Yomi Name 1033 + + cd5f6e05-e289-4fa2-a61b-384fd1cffd2d + + true + Yomi-navn + 1030 + 854a88d4-ad24-43bd-96f0-0e4065f1f716 @@ -482057,6 +531294,13 @@ Collection of system users that routinely collaborate. Teams can be used to simplify record sharing and provide team members with common access to organization data when team members belong to different Business Units. 1033 + + fdb2e654-524c-4736-ae93-b38ad8ce2ef5 + + true + En samling systembrugere, der jævnligt samarbejder. Grupper kan bruges til at forenkle deling af poster og give gruppemedlemmerne fælles adgang til organisationens data, når gruppemedlemmerne hører til forskellige afdelinger. + 1030 + 234901bf-2241-db11-898a-0007e9e17ebd @@ -482075,6 +531319,13 @@ Teams 1033 + + 284b4d97-1b24-4d8b-8c80-03ef47e04bc2 + + true + Grupper + 1030 + 254901bf-2241-db11-898a-0007e9e17ebd @@ -482093,6 +531344,13 @@ Team 1033 + + 91d74acc-4225-465a-85e8-4372f6578af2 + + true + Gruppe + 1030 + 244901bf-2241-db11-898a-0007e9e17ebd @@ -482622,6 +531880,114 @@ + + b7e3811f-babd-4f3e-84e9-ae0df94d5ea3 + + false + + false + iscustomizable + true + + true + true + lk_teambase_modifiedby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_teambase_modifiedby + modifiedby + team + modifiedby + + 0 + + + c7225225-43de-441e-a73a-39ab3bae70ad + + false + + false + iscustomizable + true + + true + false + queue_team + Append + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + queueid + queue + queue_team + queueid + team + queueid + + 1 + 20da0632-a200-e511-80d2-00155d217c03 @@ -482676,6 +532042,222 @@ 0 + + 9cdcc946-5359-41c0-af96-761a0a6287a9 + + false + + false + iscustomizable + false + + true + false + organization_teams + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_teams + organizationid + team + organizationid_organization + + 0 + + + 799bf85d-eda8-48e2-8daf-90761b89316e + + false + + false + iscustomizable + false + + true + true + TransactionCurrency_Team + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + transactioncurrencyid + transactioncurrency + TransactionCurrency_Team + transactioncurrencyid + team + transactioncurrencyid + + 0 + + + 10a5d460-92a0-478d-bd45-257fc7f6afe9 + + false + + false + iscustomizable + false + + true + true + processstage_teams + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + processstageid + processstage + processstage_teams + stageid + team + stageid_processstage + + 0 + + + 0a4d1d74-2c4a-44bc-9eb5-bf4eecba3fce + + false + + false + iscustomizable + true + + true + true + lk_teambase_createdby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_teambase_createdby + createdby + team + createdby + + 0 + 7f4cd789-8c9d-e211-86ad-00155db725a1 @@ -482730,6 +532312,114 @@ 1 + + b67b2f8a-7225-4fa7-a528-64358140112e + + false + + false + iscustomizable + true + + true + true + business_unit_teams + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + businessunitid + businessunit + business_unit_teams + businessunitid + team + businessunitid + + 0 + + + 66dbae96-b5ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + team_delegatedauthorization + None + 9.1.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + delegatedauthorizationid + delegatedauthorization + team_delegatedauthorization + delegatedauthorizationid + team + delegatedauthorizationid + + 0 + adeb1fc7-3b81-4ef6-b4cb-f643662f98eb @@ -482785,19 +532475,19 @@ 0 - 10a5d460-92a0-478d-bd45-257fc7f6afe9 + 0c48b7e2-0faa-4ef1-b408-e650ac92e8cb false false iscustomizable - false + true true true - processstage_teams + lk_team_createdonbehalfby None - 6.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -482829,17 +532519,17 @@ false false - processstageid - processstage - processstage_teams - stageid + systemuserid + systemuser + lk_team_createdonbehalfby + createdonbehalfby team - stageid_processstage + createdonbehalfby 0 - b7e3811f-babd-4f3e-84e9-ae0df94d5ea3 + c6386bf3-60df-4b67-bd4d-4ef9533fad71 false @@ -482849,7 +532539,7 @@ true true - lk_teambase_modifiedby + lk_team_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -482885,25 +532575,83 @@ false systemuserid systemuser - lk_teambase_modifiedby - modifiedby + lk_team_modifiedonbehalfby + modifiedonbehalfby team - modifiedby + modifiedonbehalfby 0 + + 2025-11-06T04:09:03.8569984 + 9 + - 0a4d1d74-2c4a-44bc-9eb5-bf4eecba3fce + 8e792d01-7bb7-4928-91e3-0598e95b77e5 false false iscustomizable - true + false true true - lk_teambase_createdby + team_convertrule + None + 6.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_convertrule + owningteam + convertrule + owningteam + + 0 + + + 6a39ab01-3e38-48c0-9eb2-9fb1b4a632ea + + false + + false + iscustomizable + false + + true + true + team_asyncoperation None 5.0.0.0 OneToManyRelationship @@ -482937,29 +532685,947 @@ false false - systemuserid - systemuser - lk_teambase_createdby - createdby - team - createdby + teamid + team + team_asyncoperation + owningteam + asyncoperation + owningteam + + 0 + + + d77dd601-0e2f-f111-88b5-7c1e5287d1d8 + + false + + true + iscustomizable + false + + false + true + team_agentconversationmessagefile + None + 1.0.0.1 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_agentconversationmessagefile + owningteam + agentconversationmessagefile + owningteam + + 0 + + + e513f801-cbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + team_msdyn_kalanguagesetting + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_msdyn_kalanguagesetting + owningteam + msdyn_kalanguagesetting + owningteam + + 0 + + + 1a15f801-cbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + team_msdyn_kbattachment + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_msdyn_kbattachment + owningteam + msdyn_kbattachment + owningteam + + 0 + + + 9e16f801-cbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + team_msdyn_knowledgearticletemplate + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_msdyn_knowledgearticletemplate + owningteam + msdyn_knowledgearticletemplate + owningteam + + 0 + + + 4d17f801-cbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + team_msdyn_knowledgepersonalfilter + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_msdyn_knowledgepersonalfilter + owningteam + msdyn_knowledgepersonalfilter + owningteam + + 0 + + + 1e18f801-cbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + team_msdyn_knowledgesearchfilter + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_msdyn_knowledgesearchfilter + owningteam + msdyn_knowledgesearchfilter + owningteam + + 0 + + + 3ee2da02-f0ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + team_powerbidataset + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_powerbidataset + owningteam + powerbidataset + owningteam + + 0 + + + 1ce3da02-f0ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + team_powerbidatasetapdx + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_powerbidatasetapdx + owningteam + powerbidatasetapdx + owningteam + + 0 + + + 12e4da02-f0ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + team_powerbimashupparameter + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_powerbimashupparameter + owningteam + powerbimashupparameter + owningteam + + 0 + + + 86c00703-e2f8-4d50-9a93-53547ab80506 + + false + + false + iscustomizable + true + + true + true + team_socialactivity + None + 6.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_socialactivity + owningteam + socialactivity + owningteam_socialactivity + + 0 + + + 1c8b2604-1823-e611-80d5-00155d211d02 + + false + + false + iscustomizable + true + + true + true + team_interactionforemail + None + 8.2.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_new_interactionforemail + owningteam + interactionforemail + owningteam + + 0 + + + 065fdc04-bbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + team_tag + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_tag + owningteam + tag + owningteam + + 0 + + + 9860dc04-bbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + team_taggedflowsession + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_taggedflowsession + owningteam + taggedflowsession + owningteam + + 0 + + + 6262dc04-bbba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + team_taggedprocess + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_taggedprocess + owningteam + taggedprocess + owningteam + + 0 + + + 8879b208-c5ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + team_msdyn_copilotinteractions + None + 2.0.0.100 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_msdyn_copilotinteractions + owningteam + msdyn_copilotinteractions + owningteam + + 0 + + + dd871609-f0ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + team_powerbireport + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_powerbireport + owningteam + powerbireport + owningteam + + 0 + + + 0655320a-c2ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + team_governanceconfiguration + None + 1.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_governanceconfiguration + owningteam + governanceconfiguration + owningteam 0 - c7225225-43de-441e-a73a-39ab3bae70ad + 61d6270b-abba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true - false - queue_team - Append - 5.0.0.0 + false + true + team_featurecontrolsetting + None + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -482979,7 +533645,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -482991,29 +533657,29 @@ false false - queueid - queue - queue_team - queueid - team - queueid + teamid + team + team_featurecontrolsetting + owningteam + featurecontrolsetting + owningteam - 1 + 0 - 799bf85d-eda8-48e2-8daf-90761b89316e + 2b105f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - TransactionCurrency_Team + team_workflowmetadata None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -483033,7 +533699,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -483045,29 +533711,29 @@ false false - transactioncurrencyid - transactioncurrency - TransactionCurrency_Team - transactioncurrencyid - team - transactioncurrencyid + teamid + team + team_workflowmetadata + owningteam + workflowmetadata + owningteam 0 - b67b2f8a-7225-4fa7-a528-64358140112e + 84125f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - business_unit_teams + team_workqueue None - 5.0.0.0 + 1.5.0.0 OneToManyRelationship DoNotDisplay @@ -483087,7 +533753,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -483099,29 +533765,29 @@ false false - businessunitid - businessunit - business_unit_teams - businessunitid - team - businessunitid + teamid + team + team_workqueue + owningteam + workqueue + owningteam 0 - 9cdcc946-5359-41c0-af96-761a0a6287a9 + 14155f0b-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - organization_teams + false + true + team_workqueueitem None - 5.0.0.0 + 1.5.0.0 OneToManyRelationship DoNotDisplay @@ -483153,29 +533819,29 @@ false false - organizationid - organization - organization_teams - organizationid - team - organizationid_organization + teamid + team + team_workqueueitem + owningteam + workqueueitem + owningteam 0 - c6386bf3-60df-4b67-bd4d-4ef9533fad71 + 08221a0f-d8ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - lk_team_modifiedonbehalfby + team_msdyn_mobileapp None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -483207,32 +533873,32 @@ false false - systemuserid - systemuser - lk_team_modifiedonbehalfby - modifiedonbehalfby - team - modifiedonbehalfby + teamid + team + team_msdyn_mobileapp + owningteam + msdyn_mobileapp + owningteam 0 - 0c48b7e2-0faa-4ef1-b408-e650ac92e8cb + 9735a50f-d2a8-e011-91da-00155d1dd929 false false iscustomizable - true + false true true - lk_team_createdonbehalfby + team_exchangesyncidmapping None - 5.0.0.0 + 6.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -483261,38 +533927,38 @@ false false - systemuserid - systemuser - lk_team_createdonbehalfby - createdonbehalfby - team - createdonbehalfby + teamid + team + team_exchangesyncidmapping + owningteam + exchangesyncidmapping + owningteam 0 - 66dbae96-b5ba-f011-bbd3-7c1e52365f30 + 53213e10-5b8c-4b9e-9c1a-5ca051bd0695 false - true + false iscustomizable - false + true - false + true true - team_delegatedauthorization + team_fax None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -483303,7 +533969,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -483315,33 +533981,29 @@ false false - delegatedauthorizationid - delegatedauthorization - team_delegatedauthorization - delegatedauthorizationid - team - delegatedauthorizationid + teamid + team + team_fax + owningteam + fax + owningteam_fax 0 - - 2025-11-06T04:09:03.8569984 - 9 - - 739bfc2c-2d91-11df-8176-00137299e1c2 + a6cdca10-f0ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - team_principalobjectattributeaccess_principalid - Append - 5.0.0.0 + false + true + team_powerbireportapdx + None + 1.0 OneToManyRelationship DoNotDisplay @@ -483361,7 +534023,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -483375,30 +534037,30 @@ false teamid team - team_principalobjectattributeaccess_principalid - principalid - principalobjectattributeaccess - principalid_team + team_powerbireportapdx + owningteam + powerbireportapdx + owningteam - 1 + 0 - 9735a50f-d2a8-e011-91da-00155d1dd929 + 9b165811-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - team_exchangesyncidmapping + team_desktopflowbinary None - 6.0.0.0 + 1.3.8.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -483429,30 +534091,30 @@ false teamid team - team_exchangesyncidmapping + team_desktopflowbinary owningteam - exchangesyncidmapping + desktopflowbinary owningteam 0 - 1c8b2604-1823-e611-80d5-00155d211d02 + b0185811-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - team_interactionforemail + team_flowsession None - 8.2.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -483483,30 +534145,30 @@ false teamid team - team_new_interactionforemail + team_flowsession owningteam - interactionforemail + flowsession owningteam 0 - b3d90632-a200-e511-80d2-00155d217c03 + e95ca011-bdba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_knowledgearticle + team_connectioninstance None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -483537,27 +534199,27 @@ false teamid team - team_knowledgearticle + team_connectioninstance owningteam - knowledgearticle + connectioninstance owningteam 0 - 807d39dc-0130-df11-a226-00155d2a9006 + 13a56c14-2de0-f011-840b-0022489ebb55 false - false + true iscustomizable true - true + false true - team_sharepointsite + team_ctx_pyramid None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -483591,27 +534253,27 @@ false teamid team - team_sharepointsite + team_ctx_pyramid owningteam - sharepointsite + ctx_pyramid owningteam 0 - b9e7b0b6-2d37-df11-8c67-00155d2a9007 + 92436116-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_sharepointdocumentlocation + team_indexedtrait None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -483645,27 +534307,27 @@ false teamid team - team_sharepointdocumentlocation + team_indexedtrait owningteam - sharepointdocumentlocation + indexedtrait owningteam 0 - fa410163-b11e-df11-92a7-00155d2e8601 + 86653318-0d2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable true - true + false true - team_goal + team_uxagentcomponent None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -483699,27 +534361,27 @@ false teamid team - team_goal + team_uxagentcomponent owningteam - goal + uxagentcomponent owningteam 0 - fdec85cf-b51e-df11-92a7-00155d2e8601 + 72b80419-7b4b-f111-bec6-70a8a57b90dc false - false + true iscustomizable - false + true - true + false true - team_goalrollupquery + team_msdyn_rtestructuredtemplateconfig None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -483753,27 +534415,27 @@ false teamid team - team_goalrollupquery + team_msdyn_rtestructuredtemplateconfig owningteam - goalrollupquery + msdyn_rtestructuredtemplateconfig owningteam 0 - e9903251-887c-e011-b3dc-00155d7b4422 + 5f99b91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_mailbox + team_processorregistration None - 6.0.0.0 + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -483807,30 +534469,30 @@ false teamid team - team_mailbox + team_processorregistration owningteam - mailbox + processorregistration owningteam 0 - ec6731cb-2cee-e411-80d9-00155dcf6500 + 3f9ab91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_channelaccessprofile + team_signal None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -483861,30 +534523,30 @@ false teamid team - team_channelaccessprofile + team_signal owningteam - channelaccessprofile - team_channelaccessprofile + signal + owningteam 0 - ce215dac-2fee-e411-80d9-00155dcf6500 + ca9ab91c-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_externalparty + team_signalregistration None - 8.0.0.0 + 1.0.0.3 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -483915,30 +534577,30 @@ false teamid team - team_externalparty + team_signalregistration owningteam - externalparty - team_externalparty_externalparty + signalregistration + owningteam 0 - f6f738ed-cbf7-e411-93a4-00219b3e9ee9 + bd90b11f-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - team_profilerule + team_msdyn_aibfeedbackloop None - 8.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -483969,15 +534631,15 @@ false teamid team - team_profilerule + team_msdyn_aibfeedbackloop owningteam - channelaccessprofilerule - teamid + msdyn_aibfeedbackloop + owningteam 0 - d36e1a36-50c1-4633-9c76-22eb3095d417 + 77fa4a20-2ee4-4fe0-84bf-fd5c368cc69d false @@ -483987,7 +534649,61 @@ true true - team_connections2 + team_goal_goalowner + Append + 5.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 110 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_goal_goalowner + goalownerid + goal + goalownerid_team + + 1 + + + 6d625720-9f5b-4730-9c4f-20805f5d7468 + + false + + false + iscustomizable + false + + true + true + team_workflowlog None 5.0.0.0 OneToManyRelationship @@ -483998,7 +534714,7 @@ - 100 + true false @@ -484009,7 +534725,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -484023,27 +534739,81 @@ false teamid team - team_connections2 - record2id - connection - record2id_team + team_workflowlog + owningteam + workflowlog + owningteam 0 - 2337f26a-c28c-4316-84cf-c8323f651253 + 5f0ab922-f6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_slaBase + team_trait None - 6.1.0.0 + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_trait + owningteam + trait + owningteam + + 0 + + + df0ab922-f6ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + + false + true + team_traitregistration + None + 1.0.0.3 OneToManyRelationship DoNotDisplay @@ -484077,30 +534847,30 @@ false teamid team - team_slaBase + team_traitregistration owningteam - sla + traitregistration owningteam 0 - 9d82e7cf-9c43-4da7-9d5d-5e4e55589f63 + ab8c7323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - team_PostRegardings + false + true + team_adx_invitation None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -484117,7 +534887,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -484131,39 +534901,39 @@ false teamid team - team_PostRegardings - regardingobjectid - postregarding - regardingobjectid_team + team_adx_invitation + owningteam + adx_invitation + owningteam 0 - 77fa4a20-2ee4-4fe0-84bf-fd5c368cc69d + 8d907323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_goal_goalowner - Append - 5.0.0.0 + adx_inviteredemption_team_owningteam + None + 1.0.2407.1 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 110 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -484185,15 +534955,15 @@ false teamid team - team_goal_goalowner - goalownerid - goal - goalownerid_team + adx_inviteredemption_team_owningteam + owningteam + adx_inviteredemption + owningteam_adx_inviteredemption - 1 + 0 - 3868b77f-2b95-4c70-b9ab-ba864cdc71f8 + 6071b623-fe59-4721-a974-9925ec47f4a7 false @@ -484202,9 +534972,9 @@ false true - false - team_principalobjectattributeaccess - Append + true + team_customer_relationship + None 5.0.0.0 OneToManyRelationship @@ -484225,7 +534995,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -484239,27 +535009,27 @@ false teamid team - team_principalobjectattributeaccess - objectid - principalobjectattributeaccess - objectid_team + team_customer_relationship + owningteam + customerrelationship + owningteam - 1 + 0 - b8446cca-e620-47f5-bff7-197932554f89 + c093fa23-f1ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - team_routingrule + team_msdyn_fileupload None - 6.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -484293,27 +535063,27 @@ false teamid team - team_routingrule + team_msdyn_fileupload owningteam - routingrule + msdyn_fileupload owningteam 0 - cdca1cdb-7f47-11e0-a0f5-1cc1de634cfe + c90a1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - OwningTeam_postfollows + false + true + team_federatedknowledgecitation None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -484347,27 +535117,27 @@ false teamid team - OwningTeam_postfollows + team_federatedknowledgecitation owningteam - postfollow + federatedknowledgecitation owningteam 0 - aa011f49-324c-43aa-b521-5b4931d577c0 + 660c1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - team_ImportMaps + false + true + team_federatedknowledgeconfiguration None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -484401,27 +535171,27 @@ false teamid team - team_ImportMaps + team_federatedknowledgeconfiguration owningteam - importmap + federatedknowledgeconfiguration owningteam 0 - a54dcd26-f830-4b8c-b371-206af64c01aa + 310e1424-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_recurringappointmentmaster + team_federatedknowledgeentityconfiguration None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -484455,27 +535225,27 @@ false teamid team - team_recurringappointmentmaster + team_federatedknowledgeentityconfiguration owningteam - recurringappointmentmaster - owningteam_recurringappointmentmaster + federatedknowledgeentityconfiguration + owningteam 0 - 6f6201c3-b450-4325-9ec4-3c7fbc3cb903 + cf534125-e6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - team_userentityinstancedata + false + true + team_aiinsightcard None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -484509,15 +535279,15 @@ false teamid team - team_userentityinstancedata + team_aiinsightcard owningteam - userentityinstancedata + aiinsightcard owningteam 0 - 8dedffe6-c69f-4bf0-baae-5d8116ec2015 + a54dcd26-f830-4b8c-b371-206af64c01aa false @@ -484527,7 +535297,7 @@ true true - team_queueitembase_workerid + team_recurringappointmentmaster None 5.0.0.0 OneToManyRelationship @@ -484563,25 +535333,25 @@ false teamid team - team_queueitembase_workerid - workerid - queueitem - workerid_team + team_recurringappointmentmaster + owningteam + recurringappointmentmaster + owningteam_recurringappointmentmaster 0 - 29450d5a-7896-4e68-ba4f-cc1430320b87 + 93dbe528-6b8a-4464-9866-743433c668d9 false false iscustomizable - true + false true - true - team_phonecall + false + Team_DuplicateMatchingRecord None 5.0.0.0 OneToManyRelationship @@ -484603,7 +535373,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -484617,27 +535387,27 @@ false teamid team - team_phonecall - owningteam - phonecall - owningteam_phonecall + Team_DuplicateMatchingRecord + duplicaterecordid + duplicaterecord + duplicaterecordid_team 0 - 1c03b191-4c34-4ddb-b140-b03ab921effa + cee1a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_emailserverprofile + adx_portalcomment_team_owningteam None - 6.0.0.0 + 1.0.2407.1 OneToManyRelationship DoNotDisplay @@ -484671,36 +535441,36 @@ false teamid team - team_emailserverprofile + adx_portalcomment_team_owningteam owningteam - emailserverprofile - owningteam + adx_portalcomment + owningteam_adx_portalcomment 0 - 22450f73-6e6c-4437-9d65-6d00fd8a8291 + 36e5a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_connections1 + team_adx_setting None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 100 + true false @@ -484711,7 +535481,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -484725,30 +535495,30 @@ false teamid team - team_connections1 - record1id - connection - record1id_team + team_adx_setting + owningteam + adx_setting + owningteam 0 - eeeb4165-2cf5-48ab-afb6-d92726f11b0b + 58ab3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - team_PostRoles + false + true + team_federatedknowledgemetadatarefresh None - 5.0.0.0 + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details @@ -484779,27 +535549,27 @@ false teamid team - team_PostRoles - regardingobjectid - postrole - regardingobjectid_team + team_federatedknowledgemetadatarefresh + owningteam + federatedknowledgemetadatarefresh + owningteam 0 - 6d6d58f0-dc30-4398-90b5-cb2210940d95 + f2ac3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - team_actioncardusersettings + false + true + team_intelligentmemory None - 8.2.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -484833,27 +535603,27 @@ false teamid team - team_actioncardusersettings + team_intelligentmemory owningteam - actioncardusersettings + intelligentmemory owningteam 0 - 506a328b-38d0-497c-86d8-56d03c67328c + cdad3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - team_userqueryvisualizations + false + true + team_knowledgefaq None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -484887,27 +535657,27 @@ false teamid team - team_userqueryvisualizations + team_knowledgefaq owningteam - userqueryvisualization + knowledgefaq owningteam 0 - 68c99cab-d540-42b4-9da4-3118aa17818d + afaf3d2a-c4ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - team_userform + false + true + team_msdyn_formmapping None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -484941,27 +535711,27 @@ false teamid team - team_userform + team_msdyn_formmapping owningteam - userform + msdyn_formmapping owningteam 0 - 86c00703-e2f8-4d50-9a93-53547ab80506 + 72cc602a-0d2f-f111-88b5-7c1e5287d1d8 false - false + true iscustomizable true - true + false true - team_socialactivity + team_uxagentcomponentrevision None - 6.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -484995,81 +535765,27 @@ false teamid team - team_socialactivity + team_uxagentcomponentrevision owningteam - socialactivity - owningteam_socialactivity + uxagentcomponentrevision + owningteam 0 - 09eb33e3-566c-40f1-801a-b2133920243e + 792d8b2b-e6ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - Team_ProcessSessions - None - 5.0.0.0 - OneToManyRelationship - - UseCollectionName - Details - - - - - 110 - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - teamid - team - Team_ProcessSessions - regardingobjectid - processsession - regardingobjectid_team - - 0 - - - 93dbe528-6b8a-4464-9866-743433c668d9 - - false - - false - iscustomizable - false - - true - false - Team_DuplicateMatchingRecord + team_aiskillconfig None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -485089,7 +535805,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -485103,15 +535819,15 @@ false teamid team - Team_DuplicateMatchingRecord - duplicaterecordid - duplicaterecord - duplicaterecordid_team + team_aiskillconfig + owningteam + aiskillconfig + owningteam 0 - dc4241cd-28a5-4491-baa1-7fda19379891 + 739bfc2c-2d91-11df-8176-00137299e1c2 false @@ -485121,8 +535837,8 @@ true false - team_userentityuisettings - None + team_principalobjectattributeaccess_principalid + Append 5.0.0.0 OneToManyRelationship @@ -485143,7 +535859,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -485157,15 +535873,15 @@ false teamid team - team_userentityuisettings - owningteam - userentityuisettings - owningteam + team_principalobjectattributeaccess_principalid + principalid + principalobjectattributeaccess + principalid_team - 0 + 1 - 74f99e62-1db3-4a67-8f52-a31fa1d2f1ed + b3d90632-a200-e511-80d2-00155d217c03 false @@ -485175,12 +535891,12 @@ true true - team_contacts + team_knowledgearticle None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -485211,25 +535927,25 @@ false teamid team - team_contacts + team_knowledgearticle owningteam - contact + knowledgearticle owningteam 0 - 806e2554-13a2-437b-a4e2-330a04de9778 + d36e1a36-50c1-4633-9c76-22eb3095d417 false false iscustomizable - false + true true true - Team_AsyncOperations + team_connections2 None 5.0.0.0 OneToManyRelationship @@ -485240,7 +535956,7 @@ - + 100 true false @@ -485251,7 +535967,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -485265,27 +535981,27 @@ false teamid team - Team_AsyncOperations - regardingobjectid - asyncoperation - regardingobjectid_team + team_connections2 + record2id + connection + record2id_team 0 - c8e52fca-bbb3-4316-b4de-c62ac201127e + 8155473b-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - team_ImportLogs + false + true + team_fabricaiskill None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -485319,15 +536035,15 @@ false teamid team - team_ImportLogs + team_fabricaiskill owningteam - importlog + fabricaiskill owningteam 0 - 6d625720-9f5b-4730-9c4f-20805f5d7468 + c02f8f3b-2f27-4f46-bfb0-f684cf41201a false @@ -485336,8 +536052,8 @@ false true - true - team_workflowlog + false + Team_BulkDeleteFailures None 5.0.0.0 OneToManyRelationship @@ -485359,7 +536075,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -485373,15 +536089,15 @@ false teamid team - team_workflowlog - owningteam - workflowlog - owningteam + Team_BulkDeleteFailures + regardingobjectid + bulkdeletefailure + regardingobjectid_team 0 - e382a2c4-d13c-48fd-89af-142a2be954ac + a6cf603c-7497-49fa-9ab2-45d1b30c3869 false @@ -485391,7 +536107,7 @@ true false - team_Imports + Team_DuplicateBaseRecord None 5.0.0.0 OneToManyRelationship @@ -485413,7 +536129,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -485427,27 +536143,27 @@ false teamid team - team_Imports - owningteam - import - owningteam + Team_DuplicateBaseRecord + baserecordid + duplicaterecord + baserecordid_team 0 - 023e659a-6439-4a71-acff-23dda9d4bb9e + d1225142-d7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - team_processsession + team_appnotification None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -485481,27 +536197,27 @@ false teamid team - team_processsession + team_appnotification owningteam - processsession + appnotification owningteam 0 - 896142de-8e49-421c-95ad-35e13b7d5e1c + 3bf5cb42-caba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true - false - team_SyncError + true + team_msdyn_integratedsearchprovider None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -485535,15 +536251,15 @@ false teamid team - team_SyncError + team_msdyn_integratedsearchprovider owningteam - syncerror + msdyn_integratedsearchprovider owningteam 0 - 6fd554ae-9abd-415e-a906-83a2d4bb2bd2 + 2ff6cb42-caba-f011-bbd3-7c1e52365f30 false @@ -485553,9 +536269,9 @@ true true - team_letter + team_msdyn_knowledgemanagementsetting None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -485589,27 +536305,27 @@ false teamid team - team_letter + team_msdyn_knowledgemanagementsetting owningteam - letter - owningteam_letter + msdyn_knowledgemanagementsetting + owningteam 0 - d4b497f1-969e-4318-b86d-c00609e31726 + 87e55843-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - team_annotations + team_msdyn_dataflowconnectionreference None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -485643,27 +536359,27 @@ false teamid team - team_annotations + team_msdyn_dataflowconnectionreference owningteam - annotation + msdyn_dataflowconnectionreference owningteam 0 - 745b958e-2922-4597-84a9-e5a478ac98e9 + 9ab78e43-edba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_appointment + team_msdyn_customcontrolextendedsettings None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -485697,27 +536413,27 @@ false teamid team - team_appointment + team_msdyn_customcontrolextendedsettings owningteam - appointment - owningteam_appointment + msdyn_customcontrolextendedsettings + owningteam 0 - 6a39ab01-3e38-48c0-9eb2-9fb1b4a632ea + c7186d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - team_asyncoperation + team_msdyn_aifptrainingdocument None - 5.0.0.0 + 0.0.0.1 OneToManyRelationship DoNotDisplay @@ -485751,27 +536467,27 @@ false teamid team - team_asyncoperation + team_msdyn_aifptrainingdocument owningteam - asyncoperation + msdyn_aifptrainingdocument owningteam 0 - 951eb389-7a4f-43dd-b729-e125260be1ac + f0196d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - userentityinstancedata_team + false + true + team_msdyn_aiodimage None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -485791,7 +536507,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -485805,27 +536521,27 @@ false teamid team - userentityinstancedata_team - objectid - userentityinstancedata - objectid_team + team_msdyn_aiodimage + owningteam + msdyn_aiodimage + owningteam 0 - c02f8f3b-2f27-4f46-bfb0-f684cf41201a + 601b6d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true - false - Team_BulkDeleteFailures + false + true + team_msdyn_aiodlabel None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -485845,7 +536561,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -485859,27 +536575,27 @@ false teamid team - Team_BulkDeleteFailures - regardingobjectid - bulkdeletefailure - regardingobjectid_team + team_msdyn_aiodlabel + owningteam + msdyn_aiodlabel + owningteam 0 - 6071b623-fe59-4721-a974-9925ec47f4a7 + 701c6d44-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - team_customer_relationship + team_msdyn_aiodtrainingboundingbox None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -485913,81 +536629,27 @@ false teamid team - team_customer_relationship + team_msdyn_aiodtrainingboundingbox owningteam - customerrelationship + msdyn_aiodtrainingboundingbox owningteam 0 - cdf793b5-189e-4afc-9b01-59bb79bd9e67 + 935a4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true - true - Team_SyncErrors - Append - 8.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - Cascade - Cascade - Cascade - Cascade - Cascade - Cascade - NoCascade - - - - - false - false - teamid - team - Team_SyncErrors - regardingobjectid - syncerror - regardingobjectid_team_syncerror - - 1 - - - 8e792d01-7bb7-4928-91e3-0598e95b77e5 - - false - - false - iscustomizable - false - - true + false true - team_convertrule + team_approvalprocess None - 6.1.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -486021,27 +536683,27 @@ false teamid team - team_convertrule + team_approvalprocess owningteam - convertrule + approvalprocess owningteam 0 - c442fea1-1e2b-4183-8914-a6d89872ef30 + 925b4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_mailboxtrackingfolder + team_approvalstageapproval None - 7.1.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -486075,27 +536737,27 @@ false teamid team - team_mailboxtrackingfolder + team_approvalstageapproval owningteam - mailboxtrackingfolder + approvalstageapproval owningteam 0 - 5ff57291-9cee-47f9-86f4-49f8fc53a59f + 6f5c4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_task + team_approvalstagecondition None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -486129,27 +536791,27 @@ false teamid team - team_task + team_approvalstagecondition owningteam - task - owningteam_task + approvalstagecondition + owningteam 0 - 0bdd0b54-59cc-4d10-a35f-e540d425e5a4 + 445d4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - team_activity + team_approvalstageintelligent None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -486183,27 +536845,27 @@ false teamid team - team_activity + team_approvalstageintelligent owningteam - activitypointer + approvalstageintelligent owningteam 0 - a6cf603c-7497-49fa-9ab2-45d1b30c3869 + 255e4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - Team_DuplicateBaseRecord + false + true + team_approvalstageorder None - 5.0.0.0 + 2.1.0.0 OneToManyRelationship DoNotDisplay @@ -486223,7 +536885,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -486237,27 +536899,27 @@ false teamid team - Team_DuplicateBaseRecord - baserecordid - duplicaterecord - baserecordid_team + team_approvalstageorder + owningteam + approvalstageorder + owningteam 0 - 55aca456-12e1-45d8-989e-dce78f9a31b8 + e65e4445-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_accounts + team_msdyn_flow_actionapprovalmodel None - 5.0.0.0 + 2.0.0.15 OneToManyRelationship DoNotDisplay @@ -486291,27 +536953,27 @@ false teamid team - team_accounts + team_msdyn_flow_actionapprovalmodel owningteam - account + msdyn_flow_actionapprovalmodel owningteam 0 - d7d22b7f-3a8e-4f8e-935b-4a453b32c3c1 + 03c66445-4305-f111-8408-6045bddd6baa false - false + true iscustomizable - false + true - true - false - team_userquery + false + true + team_githubappconfig None - 5.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -486345,15 +537007,15 @@ false teamid team - team_userquery + team_githubappconfig owningteam - userquery + githubappconfig owningteam 0 - c04febfb-b8a3-4db7-ba31-8f7dd1f12484 + aa011f49-324c-43aa-b521-5b4931d577c0 false @@ -486363,7 +537025,7 @@ true false - team_ImportData + team_ImportMaps None 5.0.0.0 OneToManyRelationship @@ -486399,27 +537061,27 @@ false teamid team - team_ImportData + team_ImportMaps owningteam - importdata + importmap owningteam 0 - 095fdf4d-cee8-4de3-8870-786606d7ebcb + 1badf649-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable true - true + false true - team_email + team_flowtestsession None - 5.0.0.0 + 1.9.49.0 OneToManyRelationship DoNotDisplay @@ -486453,81 +537115,27 @@ false teamid team - team_email + team_flowtestsession owningteam - email - owningteam_email - - 0 - - - 7eded08b-9c91-43d6-800c-690959361f91 - - false - - false - iscustomizable - false - - true - false - ImportFile_Team - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - teamid - team - ImportFile_Team - recordsownerid - importfile - recordsownerid_team + flowtestsession + owningteam 0 - 0dd9e2de-244f-4192-87c7-86169ff6bff7 + 7bb2124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - team_ImportFiles + false + true + team_msdyn_schedule None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -486561,27 +537169,27 @@ false teamid team - team_ImportFiles + team_msdyn_schedule owningteam - importfile + msdyn_schedule owningteam 0 - 347d35b2-b0ff-45d0-a4f8-6e0687ee5b40 + a1b4124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - team_email_templates + team_msdyn_dataflowtemplate None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -486615,27 +537223,27 @@ false teamid team - team_email_templates + team_msdyn_dataflowtemplate owningteam - template + msdyn_dataflowtemplate owningteam 0 - 53213e10-5b8c-4b9e-9c1a-5ca051bd0695 + b4b6124a-c3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_fax + team_msdyn_dataflow_datalakefolder None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -486669,81 +537277,27 @@ false teamid team - team_fax + team_msdyn_dataflow_datalakefolder owningteam - fax - owningteam_fax + msdyn_dataflow_datalakefolder + owningteam 0 - a28f566a-3597-4778-8ea2-e693c49c1062 + 231e984a-bfba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - team_routingruleitem - None - 6.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - teamid - team - team_routingruleitem - assignobjectid - routingruleitem - assignobjectid_team - - 0 - - - 9eac92bd-48b3-4cfe-99ee-0ed024a7b614 - - false - - false - iscustomizable - false - - true - false - team_DuplicateRules + team_msdyn_aiodtrainingimage None - 5.0.0.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -486777,27 +537331,27 @@ false teamid team - team_DuplicateRules + team_msdyn_aiodtrainingimage owningteam - duplicaterule + msdyn_aiodtrainingimage owningteam 0 - 39ce9763-fb2d-420c-ae57-6f94b70fd5f3 + f2bd3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - team_workflow + team_msdyn_flow_approval None - 5.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -486831,27 +537385,27 @@ false teamid team - team_workflow + team_msdyn_flow_approval owningteam - workflow + msdyn_flow_approval owningteam 0 - 69c6d3f3-71c0-4b49-8023-c54e28789615 + e6be3c4b-bcba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - team_mailboxtrackingcategory + team_msdyn_flow_approvalrequest None - 8.2.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -486885,15 +537439,15 @@ false teamid team - team_mailboxtrackingcategory + team_msdyn_flow_approvalrequest owningteam - mailboxtrackingcategory + msdyn_flow_approvalrequest owningteam 0 - b48b848a-a9ba-f011-bbd3-7c1e52365f30 + bcbf3c4b-bcba-f011-bbd3-7c1e52365f30 false @@ -486903,9 +537457,9 @@ false true - team_solutioncomponentbatchconfiguration + team_msdyn_flow_approvalresponse None - 1.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -486939,27 +537493,27 @@ false teamid team - team_solutioncomponentbatchconfiguration + team_msdyn_flow_approvalresponse owningteam - solutioncomponentbatchconfiguration + msdyn_flow_approvalresponse owningteam 0 - 8382c8bf-aaba-f011-bbd3-7c1e52365f30 + 86c03c4b-bcba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_stagesolutionupload + team_msdyn_flow_approvalstep None - 1.0.0.0 + 2.0.4.4 OneToManyRelationship DoNotDisplay @@ -486993,15 +537547,15 @@ false teamid team - team_stagesolutionupload + team_msdyn_flow_approvalstep owningteam - stagesolutionupload + msdyn_flow_approvalstep owningteam 0 - 2dfe9fe6-aaba-f011-bbd3-7c1e52365f30 + 44c13c4b-bcba-f011-bbd3-7c1e52365f30 false @@ -487011,9 +537565,9 @@ false true - team_exportsolutionupload + team_msdyn_flow_awaitallactionapprovalmodel None - 1.0.0.0 + 2.0.0.16 OneToManyRelationship DoNotDisplay @@ -487047,15 +537601,15 @@ false teamid team - team_exportsolutionupload + team_msdyn_flow_awaitallactionapprovalmodel owningteam - exportsolutionupload + msdyn_flow_awaitallactionapprovalmodel owningteam 0 - 61d6270b-abba-f011-bbd3-7c1e52365f30 + 00c23c4b-bcba-f011-bbd3-7c1e52365f30 false @@ -487065,9 +537619,9 @@ false true - team_featurecontrolsetting + team_msdyn_flow_awaitallapprovalmodel None - 1.0.0.0 + 2.0.0.5 OneToManyRelationship DoNotDisplay @@ -487101,15 +537655,15 @@ false teamid team - team_featurecontrolsetting + team_msdyn_flow_awaitallapprovalmodel owningteam - featurecontrolsetting + msdyn_flow_awaitallapprovalmodel owningteam 0 - 51499c67-adba-f011-bbd3-7c1e52365f30 + c2c23c4b-bcba-f011-bbd3-7c1e52365f30 false @@ -487119,9 +537673,9 @@ false true - team_keyvaultreference + team_msdyn_flow_basicapprovalmodel None - 9.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -487155,15 +537709,15 @@ false teamid team - team_keyvaultreference + team_msdyn_flow_basicapprovalmodel owningteam - keyvaultreference + msdyn_flow_basicapprovalmodel owningteam 0 - 264b9c67-adba-f011-bbd3-7c1e52365f30 + 9bc33c4b-bcba-f011-bbd3-7c1e52365f30 false @@ -487173,63 +537727,9 @@ false true - team_managedidentity - None - 9.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - teamid - team - team_managedidentity - owningteam - managedidentity - owningteam - - 0 - - - e63327b0-aeba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - team_customapi + team_msdyn_flow_flowapproval None - 1.0.0.0 + 2.0.0.0 OneToManyRelationship DoNotDisplay @@ -487263,27 +537763,27 @@ false teamid team - team_customapi + team_msdyn_flow_flowapproval owningteam - customapi + msdyn_flow_flowapproval owningteam 0 - 7d77e6d5-b2ba-f011-bbd3-7c1e52365f30 + 095fdf4d-cee8-4de3-8870-786606d7ebcb false - true + false iscustomizable true - false + true true - team_datalakefolder + team_email None - 1.0.0.11 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -487317,27 +537817,27 @@ false teamid team - team_datalakefolder + team_email owningteam - datalakefolder - owningteam + email + owningteam_email 0 - 4dcd36e2-b2ba-f011-bbd3-7c1e52365f30 + f97dcb4f-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_exportedexcel + team_msdyn_pmanalysishistory None - 1.0.30.0 + 1.2.0.13 OneToManyRelationship DoNotDisplay @@ -487371,27 +537871,27 @@ false teamid team - team_exportedexcel + team_msdyn_pmanalysishistory owningteam - exportedexcel + msdyn_pmanalysishistory owningteam 0 - dbce36e2-b2ba-f011-bbd3-7c1e52365f30 + dc7ecb4f-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_retaineddataexcel + team_msdyn_pmbusinessruleautomationconfig None - 1.0.30.0 + 1.3.2.0 OneToManyRelationship DoNotDisplay @@ -487425,15 +537925,15 @@ false teamid team - team_retaineddataexcel + team_msdyn_pmbusinessruleautomationconfig owningteam - retaineddataexcel + msdyn_pmbusinessruleautomationconfig owningteam 0 - 95842fe8-b2ba-f011-bbd3-7c1e52365f30 + a54e5550-c3ba-f011-bbd3-7c1e52365f30 false @@ -487443,9 +537943,9 @@ false true - team_synapsedatabase + team_msdyn_dmsrequest None - 1.0.0.39 + 1.0 OneToManyRelationship DoNotDisplay @@ -487479,83 +537979,15 @@ false teamid team - team_synapsedatabase + team_msdyn_dmsrequest owningteam - synapsedatabase + msdyn_dmsrequest owningteam 0 - 0f8af9c0-b3ba-f011-bbd3-7c1e52365f30 - - true - - false - iscustomizable - false - - true - true - team_componentversion - Append - 9.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - 2eb97ab6-c677-45a8-aaed-97850030f410 - - true - Versions - 1033 - - - - 2eb97ab6-c677-45a8-aaed-97850030f410 - - true - Versions - 1033 - - - 10000 - true - - true - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - teamid - team - team_componentversion - owningteam - componentversion - owningteam - - 1 - - - 6462a098-b4ba-f011-bbd3-7c1e52365f30 + 09535550-c3ba-f011-bbd3-7c1e52365f30 false @@ -487565,7 +537997,7 @@ false true - team_msdyn_dataflow + team_msdyn_dmsrequeststatus None 1.0 OneToManyRelationship @@ -487601,27 +538033,27 @@ false teamid team - team_msdyn_dataflow + team_msdyn_dmsrequeststatus owningteam - msdyn_dataflow + msdyn_dmsrequeststatus owningteam 0 - d766a098-b4ba-f011-bbd3-7c1e52365f30 + e9903251-887c-e011-b3dc-00155d7b4422 false - true + false iscustomizable true - false + true true - team_msdyn_dataflowrefreshhistory + team_mailbox None - 1.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -487655,27 +538087,27 @@ false teamid team - team_msdyn_dataflowrefreshhistory + team_mailbox owningteam - msdyn_dataflowrefreshhistory + mailbox owningteam 0 - 1468a098-b4ba-f011-bbd3-7c1e52365f30 + 97bb6f52-efba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_entityrefreshhistory + team_msdyn_analysiscomponent None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -487709,27 +538141,27 @@ false teamid team - team_msdyn_entityrefreshhistory + team_msdyn_analysiscomponent owningteam - msdyn_entityrefreshhistory + msdyn_analysiscomponent owningteam 0 - 3cfb85de-b5ba-f011-bbd3-7c1e52365f30 + b6bc6f52-efba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_privilegecheckerrun + team_msdyn_analysisjob None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -487763,15 +538195,15 @@ false teamid team - team_privilegecheckerrun + team_msdyn_analysisjob owningteam - privilegecheckerrun + msdyn_analysisjob owningteam 0 - b27765d3-b6ba-f011-bbd3-7c1e52365f30 + 45be6f52-efba-f011-bbd3-7c1e52365f30 false @@ -487781,9 +538213,9 @@ false true - team_tdsmetadata + team_msdyn_analysisoverride None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -487817,15 +538249,15 @@ false teamid team - team_tdsmetadata + team_msdyn_analysisoverride owningteam - tdsmetadata + msdyn_analysisoverride owningteam 0 - ad4815a8-b7ba-f011-bbd3-7c1e52365f30 + b6bf6f52-efba-f011-bbd3-7c1e52365f30 false @@ -487835,9 +538267,9 @@ false true - team_canvasappextendedmetadata + team_msdyn_analysisresult None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -487871,15 +538303,15 @@ false teamid team - team_canvasappextendedmetadata + team_msdyn_analysisresult owningteam - canvasappextendedmetadata + msdyn_analysisresult owningteam 0 - 7aaf9cae-b9ba-f011-bbd3-7c1e52365f30 + d7b37c52-f128-f111-88b5-7c1e52371eaf false @@ -487889,9 +538321,9 @@ false true - team_connector + team_flowtrigger None - 9.1.0.0 + 1.10.0.0 OneToManyRelationship DoNotDisplay @@ -487925,27 +538357,27 @@ false teamid team - team_connector + team_flowtrigger owningteam - connector + flowtrigger owningteam 0 - 3bb9b9d5-b9ba-f011-bbd3-7c1e52365f30 + a7b47c52-f128-f111-88b5-7c1e52371eaf false true iscustomizable - false + true false true - team_environmentvariabledefinition + team_flowtriggerinstance None - 1.0.0.0 + 1.10.0.0 OneToManyRelationship DoNotDisplay @@ -487979,27 +538411,27 @@ false teamid team - team_environmentvariabledefinition + team_flowtriggerinstance owningteam - environmentvariabledefinition + flowtriggerinstance owningteam 0 - 32a3ec9f-baba-f011-bbd3-7c1e52365f30 + 0bdd0b54-59cc-4d10-a35f-e540d425e5a4 false - true + false iscustomizable false - false + true true - team_workflowbinary + team_activity None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -488033,27 +538465,81 @@ false teamid team - team_workflowbinary + team_activity owningteam - workflowbinary + activitypointer owningteam 0 - 15f027e4-baba-f011-bbd3-7c1e52365f30 + 806e2554-13a2-437b-a4e2-330a04de9778 + + false + + false + iscustomizable + false + + true + true + Team_AsyncOperations + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + Team_AsyncOperations + regardingobjectid + asyncoperation + regardingobjectid_team + + 0 + + + 12b13b56-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_businessprocess + team_msdyn_pmcalendar None - 1.9.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -488087,27 +538573,27 @@ false teamid team - team_businessprocess + team_msdyn_pmcalendar owningteam - businessprocess + msdyn_pmcalendar owningteam 0 - 8cf127e4-baba-f011-bbd3-7c1e52365f30 + e6b13b56-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_credential + team_msdyn_pmcalendarversion None - 1.6.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -488141,15 +538627,15 @@ false teamid team - team_credential + team_msdyn_pmcalendarversion owningteam - credential + msdyn_pmcalendarversion owningteam 0 - 77f227e4-baba-f011-bbd3-7c1e52365f30 + 851c6456-c3ba-f011-bbd3-7c1e52365f30 false @@ -488159,7 +538645,7 @@ false true - team_desktopflowmodule + team_msdyn_dmssyncrequest None 1.0 OneToManyRelationship @@ -488195,15 +538681,15 @@ false teamid team - team_desktopflowmodule + team_msdyn_dmssyncrequest owningteam - desktopflowmodule + msdyn_dmssyncrequest owningteam 0 - a4182aea-baba-f011-bbd3-7c1e52365f30 + 671d6456-c3ba-f011-bbd3-7c1e52365f30 false @@ -488213,9 +538699,9 @@ false true - team_flowcapacityassignment + team_msdyn_dmssyncstatus None - 1.7.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -488249,15 +538735,15 @@ false teamid team - team_flowcapacityassignment + team_msdyn_dmssyncstatus owningteam - flowcapacityassignment + msdyn_dmssyncstatus owningteam 0 - 76192aea-baba-f011-bbd3-7c1e52365f30 + 5a1f6456-c3ba-f011-bbd3-7c1e52365f30 false @@ -488267,9 +538753,9 @@ false true - team_flowcredentialapplication + team_msdyn_knowledgeassetconfiguration None - 1.7.11.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -488303,15 +538789,15 @@ false teamid team - team_flowcredentialapplication + team_msdyn_knowledgeassetconfiguration owningteam - flowcredentialapplication + msdyn_knowledgeassetconfiguration owningteam 0 - 561a2aea-baba-f011-bbd3-7c1e52365f30 + 93236456-c3ba-f011-bbd3-7c1e52365f30 false @@ -488321,9 +538807,9 @@ false true - team_flowevent + team_msdyn_qna None - 1.5.13.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -488357,27 +538843,27 @@ false teamid team - team_flowevent + team_msdyn_qna owningteam - flowevent + msdyn_qna owningteam 0 - a1f665f0-baba-f011-bbd3-7c1e52365f30 + 55aca456-12e1-45d8-989e-dce78f9a31b8 false - true + false iscustomizable - false + true - false + true true - team_flowmachine + team_accounts None - 1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -488411,15 +538897,15 @@ false teamid team - team_flowmachine + team_accounts owningteam - flowmachine + account owningteam 0 - c1f765f0-baba-f011-bbd3-7c1e52365f30 + 43460659-efba-f011-bbd3-7c1e52365f30 false @@ -488429,9 +538915,9 @@ false true - team_flowmachinegroup + team_msdyn_analysisresultdetail None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -488465,27 +538951,27 @@ false teamid team - team_flowmachinegroup + team_msdyn_analysisresultdetail owningteam - flowmachinegroup + msdyn_analysisresultdetail owningteam 0 - b1f865f0-baba-f011-bbd3-7c1e52365f30 + b1470659-efba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_flowmachineimage + team_msdyn_solutionhealthrule None - 1.3.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -488519,27 +539005,27 @@ false teamid team - team_flowmachineimage + team_msdyn_solutionhealthrule owningteam - flowmachineimage + msdyn_solutionhealthrule owningteam 0 - 9d0674f6-baba-f011-bbd3-7c1e52365f30 + cf480659-efba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_flowmachineimageversion + team_msdyn_solutionhealthruleargument None - 1.3.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -488573,27 +539059,27 @@ false teamid team - team_flowmachineimageversion + team_msdyn_solutionhealthruleargument owningteam - flowmachineimageversion + msdyn_solutionhealthruleargument owningteam 0 - 9b0774f6-baba-f011-bbd3-7c1e52365f30 + 29450d5a-7896-4e68-ba4f-cc1430320b87 false - true + false iscustomizable true - false + true true - team_flowmachinenetwork + team_phonecall None - 1.4.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -488627,15 +539113,15 @@ false teamid team - team_flowmachinenetwork + team_phonecall owningteam - flowmachinenetwork - owningteam + phonecall + owningteam_phonecall 0 - 0aa1c0fd-baba-f011-bbd3-7c1e52365f30 + f584965c-eeba-f011-bbd3-7c1e52365f30 false @@ -488645,9 +539131,9 @@ false true - team_flowsessionbinary + team_msdyn_pminferredtask None - 1.9.28.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -488681,15 +539167,15 @@ false teamid team - team_flowsessionbinary + team_msdyn_pminferredtask owningteam - flowsessionbinary + msdyn_pminferredtask owningteam 0 - a8a2c0fd-baba-f011-bbd3-7c1e52365f30 + da85965c-eeba-f011-bbd3-7c1e52365f30 false @@ -488699,9 +539185,9 @@ false true - team_processstageparameter + team_msdyn_pmprocessextendedmetadataversion None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -488735,15 +539221,15 @@ false teamid team - team_processstageparameter + team_msdyn_pmprocessextendedmetadataversion owningteam - processstageparameter + msdyn_pmprocessextendedmetadataversion owningteam 0 - 66a3c0fd-baba-f011-bbd3-7c1e52365f30 + 1f05cb5c-c3ba-f011-bbd3-7c1e52365f30 false @@ -488753,9 +539239,9 @@ false true - team_savingrule + team_msdyn_salesforcestructuredobject None - 1.9.2.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -488789,15 +539275,15 @@ false teamid team - team_savingrule + team_msdyn_salesforcestructuredobject owningteam - savingrule + msdyn_salesforcestructuredobject owningteam 0 - 065fdc04-bbba-f011-bbd3-7c1e52365f30 + 5206cb5c-c3ba-f011-bbd3-7c1e52365f30 false @@ -488807,7 +539293,7 @@ false true - team_tag + team_msdyn_salesforcestructuredqnaconfig None 1.0 OneToManyRelationship @@ -488843,27 +539329,27 @@ false teamid team - team_tag + team_msdyn_salesforcestructuredqnaconfig owningteam - tag + msdyn_salesforcestructuredqnaconfig owningteam 0 - 9860dc04-bbba-f011-bbd3-7c1e52365f30 + 74f99e62-1db3-4a67-8f52-a31fa1d2f1ed false - true + false iscustomizable true - false + true true - team_taggedflowsession + team_contacts None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -488897,27 +539383,27 @@ false teamid team - team_taggedflowsession + team_contacts owningteam - taggedflowsession + contact owningteam 0 - 6262dc04-bbba-f011-bbd3-7c1e52365f30 + fa410163-b11e-df11-92a7-00155d2e8601 false - true + false iscustomizable true - false + true true - team_taggedprocess + team_goal None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -488951,27 +539437,27 @@ false teamid team - team_taggedprocess + team_goal owningteam - taggedprocess + goal owningteam 0 - 2b105f0b-bbba-f011-bbd3-7c1e52365f30 + 4e728063-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_workflowmetadata + team_msdyn_pmprocesstemplate None - 1.0 + 1.3.0.10 OneToManyRelationship DoNotDisplay @@ -489005,27 +539491,27 @@ false teamid team - team_workflowmetadata + team_msdyn_pmprocesstemplate owningteam - workflowmetadata + msdyn_pmprocesstemplate owningteam 0 - 84125f0b-bbba-f011-bbd3-7c1e52365f30 + 21738063-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_workqueue + team_msdyn_pmprocessusersettings None - 1.5.0.0 + 1.2.1.0 OneToManyRelationship DoNotDisplay @@ -489059,27 +539545,27 @@ false teamid team - team_workqueue + team_msdyn_pmprocessusersettings owningteam - workqueue + msdyn_pmprocessusersettings owningteam 0 - 14155f0b-bbba-f011-bbd3-7c1e52365f30 + 39ce9763-fb2d-420c-ae57-6f94b70fd5f3 false - true + false iscustomizable - true + false - false + true true - team_workqueueitem + team_workflow None - 1.5.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -489113,30 +539599,30 @@ false teamid team - team_workqueueitem + team_workflow owningteam - workqueueitem + workflow owningteam 0 - 9b165811-bbba-f011-bbd3-7c1e52365f30 + eeeb4165-2cf5-48ab-afb6-d92726f11b0b false - true + false iscustomizable false - false - true - team_desktopflowbinary + true + false + team_PostRoles None - 1.3.8.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -489167,25 +539653,25 @@ false teamid team - team_desktopflowbinary - owningteam - desktopflowbinary - owningteam + team_PostRoles + regardingobjectid + postrole + regardingobjectid_team 0 - b0185811-bbba-f011-bbd3-7c1e52365f30 + 4cdba065-3346-f111-bec6-7c1e52346323 false true iscustomizable - false + true false true - team_flowsession + team_msdyn_knowledgeharvestplan None 1.0 OneToManyRelationship @@ -489221,15 +539707,15 @@ false teamid team - team_flowsession + team_msdyn_knowledgeharvestplan owningteam - flowsession + msdyn_knowledgeharvestplan owningteam 0 - 48166cf7-bbba-f011-bbd3-7c1e52365f30 + 51499c67-adba-f011-bbd3-7c1e52365f30 false @@ -489239,9 +539725,9 @@ false true - team_flowaggregation + team_keyvaultreference None - 1.8.45.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -489275,15 +539761,15 @@ false teamid team - team_flowaggregation + team_keyvaultreference owningteam - flowaggregation + keyvaultreference owningteam 0 - 8b176cf7-bbba-f011-bbd3-7c1e52365f30 + 264b9c67-adba-f011-bbd3-7c1e52365f30 false @@ -489293,9 +539779,9 @@ false true - team_flowrun + team_managedidentity None - 1.5.24.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -489329,15 +539815,15 @@ false teamid team - team_flowrun + team_managedidentity owningteam - flowrun + managedidentity owningteam 0 - 935a4445-bcba-f011-bbd3-7c1e52365f30 + 0d2a1b69-86f9-f011-8406-7ced8d48c998 false @@ -489347,9 +539833,9 @@ false true - team_approvalprocess + team_officedocument None - 2.1.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -489383,27 +539869,27 @@ false teamid team - team_approvalprocess + team_officedocument owningteam - approvalprocess + officedocument owningteam 0 - 925b4445-bcba-f011-bbd3-7c1e52365f30 + 66d4b269-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_approvalstageapproval + team_msdyn_pmprocessversion None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -489437,27 +539923,27 @@ false teamid team - team_approvalstageapproval + team_msdyn_pmprocessversion owningteam - approvalstageapproval + msdyn_pmprocessversion owningteam 0 - 6f5c4445-bcba-f011-bbd3-7c1e52365f30 + 4cd5b269-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_approvalstagecondition + team_msdyn_pmrecording None - 2.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -489491,15 +539977,15 @@ false teamid team - team_approvalstagecondition + team_msdyn_pmrecording owningteam - approvalstagecondition + msdyn_pmrecording owningteam 0 - 445d4445-bcba-f011-bbd3-7c1e52365f30 + c42b0e6a-cdba-f011-bbd3-7c1e52365f30 false @@ -489509,9 +539995,9 @@ false true - team_approvalstageintelligent + team_plannerbusinessscenario None - 1.0 + 9.1.62 OneToManyRelationship DoNotDisplay @@ -489545,15 +540031,15 @@ false teamid team - team_approvalstageintelligent + team_plannerbusinessscenario owningteam - approvalstageintelligent + plannerbusinessscenario owningteam 0 - 255e4445-bcba-f011-bbd3-7c1e52365f30 + 442c0e6a-cdba-f011-bbd3-7c1e52365f30 false @@ -489563,9 +540049,9 @@ false true - team_approvalstageorder + team_plannersyncaction None - 2.1.0.0 + 9.1.62 OneToManyRelationship DoNotDisplay @@ -489599,15 +540085,15 @@ false teamid team - team_approvalstageorder + team_plannersyncaction owningteam - approvalstageorder + plannersyncaction owningteam 0 - e65e4445-bcba-f011-bbd3-7c1e52365f30 + ad90156a-f7ba-f011-bbd3-7c1e52365f30 false @@ -489617,9 +540103,9 @@ false true - team_msdyn_flow_actionapprovalmodel + team_ctx_product None - 2.0.0.15 + 1.0 OneToManyRelationship DoNotDisplay @@ -489653,27 +540139,27 @@ false teamid team - team_msdyn_flow_actionapprovalmodel + team_ctx_product owningteam - msdyn_flow_actionapprovalmodel + ctx_product owningteam 0 - f2bd3c4b-bcba-f011-bbd3-7c1e52365f30 + a28f566a-3597-4778-8ea2-e693c49c1062 false - true + false iscustomizable - true + false - false + true true - team_msdyn_flow_approval + team_routingruleitem None - 2.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -489707,27 +540193,27 @@ false teamid team - team_msdyn_flow_approval - owningteam - msdyn_flow_approval - owningteam + team_routingruleitem + assignobjectid + routingruleitem + assignobjectid_team 0 - e6be3c4b-bcba-f011-bbd3-7c1e52365f30 + 4dfcb96a-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_flow_approvalrequest + team_powerpagecomponent None - 2.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -489761,27 +540247,27 @@ false teamid team - team_msdyn_flow_approvalrequest + team_powerpagecomponent owningteam - msdyn_flow_approvalrequest + powerpagecomponent owningteam 0 - bcbf3c4b-bcba-f011-bbd3-7c1e52365f30 + a2fdb96a-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_flow_approvalresponse + team_powerpagesite None - 2.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -489815,27 +540301,27 @@ false teamid team - team_msdyn_flow_approvalresponse + team_powerpagesite owningteam - msdyn_flow_approvalresponse + powerpagesite owningteam 0 - 86c03c4b-bcba-f011-bbd3-7c1e52365f30 + 2337f26a-c28c-4316-84cf-c8323f651253 false - true + false iscustomizable - false + true - false + true true - team_msdyn_flow_approvalstep + team_slaBase None - 2.0.4.4 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -489869,27 +540355,27 @@ false teamid team - team_msdyn_flow_approvalstep + team_slaBase owningteam - msdyn_flow_approvalstep + sla owningteam 0 - 44c13c4b-bcba-f011-bbd3-7c1e52365f30 + 1ee10770-eeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_flow_awaitallactionapprovalmodel + team_msdyn_pmsimulation None - 2.0.0.16 + 1.3.3.0 OneToManyRelationship DoNotDisplay @@ -489923,15 +540409,15 @@ false teamid team - team_msdyn_flow_awaitallactionapprovalmodel + team_msdyn_pmsimulation owningteam - msdyn_flow_awaitallactionapprovalmodel + msdyn_pmsimulation owningteam 0 - 00c23c4b-bcba-f011-bbd3-7c1e52365f30 + 03e20770-eeba-f011-bbd3-7c1e52365f30 false @@ -489941,9 +540427,9 @@ false true - team_msdyn_flow_awaitallapprovalmodel + team_msdyn_pmtab None - 2.0.0.5 + 1.14.7.0 OneToManyRelationship DoNotDisplay @@ -489977,27 +540463,27 @@ false teamid team - team_msdyn_flow_awaitallapprovalmodel + team_msdyn_pmtab owningteam - msdyn_flow_awaitallapprovalmodel + msdyn_pmtab owningteam 0 - c2c23c4b-bcba-f011-bbd3-7c1e52365f30 + 9b3fe170-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_flow_basicapprovalmodel + team_powerpagesitelanguage None - 2.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -490031,27 +540517,27 @@ false teamid team - team_msdyn_flow_basicapprovalmodel + team_powerpagesitelanguage owningteam - msdyn_flow_basicapprovalmodel + powerpagesitelanguage owningteam 0 - 9bc33c4b-bcba-f011-bbd3-7c1e52365f30 + 8d41e170-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_flow_flowapproval + team_powerpagesitepublished None - 2.0.0.0 + 1.0.2207.1 OneToManyRelationship DoNotDisplay @@ -490085,15 +540571,15 @@ false teamid team - team_msdyn_flow_flowapproval + team_powerpagesitepublished owningteam - msdyn_flow_flowapproval + powerpagesitepublished owningteam 0 - 0b53b8c6-bcba-f011-bbd3-7c1e52365f30 + eaa96771-bfba-f011-bbd3-7c1e52365f30 false @@ -490103,7 +540589,7 @@ false true - team_connectionreference + team_msdyn_aibdataset None 1.0.0.0 OneToManyRelationship @@ -490139,27 +540625,27 @@ false teamid team - team_connectionreference + team_msdyn_aibdataset owningteam - connectionreference + msdyn_aibdataset owningteam 0 - e95ca011-bdba-f011-bbd3-7c1e52365f30 + c0aa6771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_connectioninstance + team_msdyn_aibdatasetfile None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -490193,27 +540679,27 @@ false teamid team - team_connectioninstance + team_msdyn_aibdatasetfile owningteam - connectioninstance + msdyn_aibdatasetfile owningteam 0 - 83cf0c86-bdba-f011-bbd3-7c1e52365f30 + d4ab6771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_knowledgesourceconsumer + team_msdyn_aibdatasetrecord None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -490247,27 +540733,27 @@ false teamid team - team_knowledgesourceconsumer + team_msdyn_aibdatasetrecord owningteam - knowledgesourceconsumer + msdyn_aibdatasetrecord owningteam 0 - 4bd00c86-bdba-f011-bbd3-7c1e52365f30 + 05ad6771-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_knowledgesourceprofile + team_msdyn_aibdatasetscontainer None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -490301,15 +540787,69 @@ false teamid team - team_knowledgesourceprofile + team_msdyn_aibdatasetscontainer owningteam - knowledgesourceprofile + msdyn_aibdatasetscontainer owningteam 0 - 1cd10c86-bdba-f011-bbd3-7c1e52365f30 + 22450f73-6e6c-4437-9d65-6d00fd8a8291 + + false + + false + iscustomizable + true + + true + true + team_connections1 + None + 5.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 100 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_connections1 + record1id + connection + record1id_team + + 0 + + + 5c82c974-d2d4-f011-8548-000d3adc1b74 false @@ -490319,9 +540859,9 @@ false true - team_unstructuredfilesearchentity + team_businessprocesslinkedartifact None - 1.0 + 1.9.7.0 OneToManyRelationship DoNotDisplay @@ -490355,15 +540895,15 @@ false teamid team - team_unstructuredfilesearchentity + team_businessprocesslinkedartifact owningteam - unstructuredfilesearchentity + businessprocesslinkedartifact owningteam 0 - 00d20c86-bdba-f011-bbd3-7c1e52365f30 + 44993775-cbba-f011-bbd3-7c1e52365f30 false @@ -490373,7 +540913,7 @@ false true - team_unstructuredfilesearchrecord + team_msdyn_historicalcaseharvestbatch None 1.0 OneToManyRelationship @@ -490409,27 +540949,27 @@ false teamid team - team_unstructuredfilesearchrecord + team_msdyn_historicalcaseharvestbatch owningteam - unstructuredfilesearchrecord + msdyn_historicalcaseharvestbatch owningteam 0 - 432f168c-bdba-f011-bbd3-7c1e52365f30 + 5fb0d976-f2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_unstructuredfilesearchrecordstatus + team_powerpagessourcefile None - 1.0 + 1.0.2505.1 OneToManyRelationship DoNotDisplay @@ -490463,15 +541003,15 @@ false teamid team - team_unstructuredfilesearchrecordstatus + team_powerpagessourcefile owningteam - unstructuredfilesearchrecordstatus + powerpagessourcefile owningteam 0 - 3c32168c-bdba-f011-bbd3-7c1e52365f30 + 1963f176-eeba-f011-bbd3-7c1e52365f30 false @@ -490481,9 +541021,9 @@ false true - team_dvfilesearch + team_msdyn_pmtemplate None - 1.0.0.0 + 1.2.0.14 OneToManyRelationship DoNotDisplay @@ -490517,15 +541057,15 @@ false teamid team - team_dvfilesearch + team_msdyn_pmtemplate owningteam - dvfilesearch + msdyn_pmtemplate owningteam 0 - 3a7a3792-bdba-f011-bbd3-7c1e52365f30 + 0264f176-eeba-f011-bbd3-7c1e52365f30 false @@ -490535,9 +541075,9 @@ false true - team_dvfilesearchattribute + team_msdyn_pmview None - 1.0.0.56 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -490571,27 +541111,27 @@ false teamid team - team_dvfilesearchattribute + team_msdyn_pmview owningteam - dvfilesearchattribute + msdyn_pmview owningteam 0 - 847c3792-bdba-f011-bbd3-7c1e52365f30 + c6514577-524d-f111-bec7-002248a2a8d1 false true iscustomizable - false + true false true - team_dvfilesearchentity + team_flowgroup None - 1.0.0.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -490625,27 +541165,27 @@ false teamid team - team_dvfilesearchentity + team_flowgroup owningteam - dvfilesearchentity + flowgroup owningteam 0 - 4d7e3792-bdba-f011-bbd3-7c1e52365f30 + 03e94f77-e1ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_dvtablesearch + team_msdyn_entitylinkchatconfiguration None - 1.0.0.0 + 9.2.0.0 OneToManyRelationship DoNotDisplay @@ -490679,15 +541219,15 @@ false teamid team - team_dvtablesearch + team_msdyn_entitylinkchatconfiguration owningteam - dvtablesearch + msdyn_entitylinkchatconfiguration owningteam 0 - 51423798-bdba-f011-bbd3-7c1e52365f30 + 4d246577-bfba-f011-bbd3-7c1e52365f30 false @@ -490697,9 +541237,9 @@ false true - team_dvtablesearchattribute + team_msdyn_aibfile None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -490733,15 +541273,15 @@ false teamid team - team_dvtablesearchattribute + team_msdyn_aibfile owningteam - dvtablesearchattribute + msdyn_aibfile owningteam 0 - 7a443798-bdba-f011-bbd3-7c1e52365f30 + 1b256577-bfba-f011-bbd3-7c1e52365f30 false @@ -490751,7 +541291,7 @@ false true - team_dvtablesearchentity + team_msdyn_aibfileattacheddata None 1.0.0.0 OneToManyRelationship @@ -490787,15 +541327,15 @@ false teamid team - team_dvtablesearchentity + team_msdyn_aibfileattacheddata owningteam - dvtablesearchentity + msdyn_aibfileattacheddata owningteam 0 - 247f18de-bdba-f011-bbd3-7c1e52365f30 + e37b3379-f5ba-f011-bbd3-7c1e52365f30 false @@ -490805,9 +541345,9 @@ false true - team_aipluginauth + team_mspcat_catalogsubmissionfiles None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -490841,15 +541381,15 @@ false teamid team - team_aipluginauth + team_mspcat_catalogsubmissionfiles owningteam - aipluginauth + mspcat_catalogsubmissionfiles owningteam 0 - 058118de-bdba-f011-bbd3-7c1e52365f30 + da7c3379-f5ba-f011-bbd3-7c1e52365f30 false @@ -490859,7 +541399,7 @@ false true - team_aipluginconversationstarter + team_mspcat_packagestore None 1.0 OneToManyRelationship @@ -490895,15 +541435,15 @@ false teamid team - team_aipluginconversationstarter + team_mspcat_packagestore owningteam - aipluginconversationstarter + mspcat_packagestore owningteam 0 - 078318de-bdba-f011-bbd3-7c1e52365f30 + b4d67679-bc5d-f111-a826-7ced8d776baf false @@ -490913,7 +541453,7 @@ false true - team_aipluginconversationstartermapping + team_msec_cleanup None 1.0 OneToManyRelationship @@ -490949,15 +541489,15 @@ false teamid team - team_aipluginconversationstartermapping + team_msec_cleanup owningteam - aipluginconversationstartermapping + msec_cleanup owningteam 0 - f94d9ee4-bdba-f011-bbd3-7c1e52365f30 + 8ed9a47b-cbba-f011-bbd3-7c1e52365f30 false @@ -490967,7 +541507,7 @@ false true - team_aiplugingovernance + team_msdyn_historicalcaseharvestrun None 1.0 OneToManyRelationship @@ -491003,15 +541543,15 @@ false teamid team - team_aiplugingovernance + team_msdyn_historicalcaseharvestrun owningteam - aiplugingovernance + msdyn_historicalcaseharvestrun owningteam 0 - c84f9ee4-bdba-f011-bbd3-7c1e52365f30 + 88daa47b-cbba-f011-bbd3-7c1e52365f30 false @@ -491021,7 +541561,7 @@ false true - team_aiplugingovernanceext + team_msdyn_interimupdateknowledgearticle None 1.0 OneToManyRelationship @@ -491057,27 +541597,27 @@ false teamid team - team_aiplugingovernanceext + team_msdyn_interimupdateknowledgearticle owningteam - aiplugingovernanceext + msdyn_interimupdateknowledgearticle owningteam 0 - 5d519ee4-bdba-f011-bbd3-7c1e52365f30 + 47dba47b-cbba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_aipluginoperationresponsetemplate + team_msdyn_knowledgearticlecustomentity None - 1.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -491111,15 +541651,15 @@ false teamid team - team_aipluginoperationresponsetemplate + team_msdyn_knowledgearticlecustomentity owningteam - aipluginoperationresponsetemplate + msdyn_knowledgearticlecustomentity owningteam 0 - acb1c1ea-bdba-f011-bbd3-7c1e52365f30 + 68dca47b-cbba-f011-bbd3-7c1e52365f30 false @@ -491129,7 +541669,7 @@ false true - team_sideloadedaiplugin + team_msdyn_knowledgeharvestjobrecord None 1.0 OneToManyRelationship @@ -491165,27 +541705,27 @@ false teamid team - team_sideloadedaiplugin + team_msdyn_knowledgeharvestjobrecord owningteam - sideloadedaiplugin + msdyn_knowledgeharvestjobrecord owningteam 0 - b4b3c1ea-bdba-f011-bbd3-7c1e52365f30 + ae4d507d-ec24-f111-88b5-002248a21393 false true iscustomizable - false + true false true - team_aiplugin + team_msdyn_bulkharvestrunlog None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -491219,27 +541759,27 @@ false teamid team - team_aiplugin + team_msdyn_bulkharvestrunlog owningteam - aiplugin + msdyn_bulkharvestrunlog owningteam 0 - 6bb5c1ea-bdba-f011-bbd3-7c1e52365f30 + b6fb717e-daba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_aipluginexternalschema + team_DeletedItemReferences None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -491273,27 +541813,27 @@ false teamid team - team_aipluginexternalschema - owningteam - aipluginexternalschema - owningteam + team_DeletedItemReferences + deletedobject + deleteditemreference + deletedobject_team 0 - 1cb7c1ea-bdba-f011-bbd3-7c1e52365f30 + d7d22b7f-3a8e-4f8e-935b-4a453b32c3c1 false - true + false iscustomizable false - false - true - team_aipluginexternalschemaproperty + true + false + team_userquery None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -491327,27 +541867,27 @@ false teamid team - team_aipluginexternalschemaproperty + team_userquery owningteam - aipluginexternalschemaproperty + userquery owningteam 0 - 16eac3f0-bdba-f011-bbd3-7c1e52365f30 + 5a3d437f-c8ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable - false + true - false + true true - team_aiplugininstance + team_activityfileattachment None - 1.0.0.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -491381,27 +541921,27 @@ false teamid team - team_aiplugininstance + team_activityfileattachment owningteam - aiplugininstance + activityfileattachment owningteam 0 - 03ecc3f0-bdba-f011-bbd3-7c1e52365f30 + 3868b77f-2b95-4c70-b9ab-ba864cdc71f8 false - true + false iscustomizable false - false - true - team_aipluginoperation - None - 1.0.0.0 + true + false + team_principalobjectattributeaccess + Append + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -491421,7 +541961,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -491435,15 +541975,15 @@ false teamid team - team_aipluginoperation - owningteam - aipluginoperation - owningteam + team_principalobjectattributeaccess + objectid + principalobjectattributeaccess + objectid_team - 0 + 1 - f5edc3f0-bdba-f011-bbd3-7c1e52365f30 + eb669183-e7ba-f011-bbd3-7c1e52365f30 false @@ -491453,9 +541993,9 @@ false true - team_aipluginoperationparameter + team_msdyn_dataworkspace None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -491489,25 +542029,25 @@ false teamid team - team_aipluginoperationparameter + team_msdyn_dataworkspace owningteam - aipluginoperationparameter + msdyn_dataworkspace owningteam 0 - af2ef8f6-bdba-f011-bbd3-7c1e52365f30 + 68303084-ec24-f111-88b5-002248a21393 false true iscustomizable - false + true false true - team_aipluginusersetting + team_msdyn_harvestworkitem None 1.0 OneToManyRelationship @@ -491543,27 +542083,27 @@ false teamid team - team_aipluginusersetting + team_msdyn_harvestworkitem owningteam - aipluginusersetting + msdyn_harvestworkitem owningteam 0 - 5f998f90-beba-f011-bbd3-7c1e52365f30 + bb04e384-3010-f111-8345-7c1e52216fd8 false true iscustomizable - false + true false true - team_msdyn_aiconfigurationsearch + team_skill None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -491597,15 +542137,15 @@ false teamid team - team_msdyn_aiconfigurationsearch + team_skill owningteam - msdyn_aiconfigurationsearch + skill owningteam 0 - b09b8f90-beba-f011-bbd3-7c1e52365f30 + 450b3e85-c8ba-f011-bbd3-7c1e52365f30 false @@ -491615,9 +542155,9 @@ false true - team_msdyn_aidataprocessingevent + chat_team_owningteam None - 1.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -491651,25 +542191,25 @@ false teamid team - team_msdyn_aidataprocessingevent + chat_team_owningteam owningteam - msdyn_aidataprocessingevent - owningteam + chat + owningteam_chat 0 - 4e588996-beba-f011-bbd3-7c1e52365f30 + 83cf0c86-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_aidocumenttemplate + team_knowledgesourceconsumer None 1.0 OneToManyRelationship @@ -491705,15 +542245,15 @@ false teamid team - team_msdyn_aidocumenttemplate + team_knowledgesourceconsumer owningteam - msdyn_aidocumenttemplate + knowledgesourceconsumer owningteam 0 - e75a8996-beba-f011-bbd3-7c1e52365f30 + 4bd00c86-bdba-f011-bbd3-7c1e52365f30 false @@ -491723,7 +542263,7 @@ false true - team_msdyn_aievent + team_knowledgesourceprofile None 1.0 OneToManyRelationship @@ -491759,79 +542299,25 @@ false teamid team - team_msdyn_aievent - owningteam - msdyn_aievent - owningteam - - 0 - - - 035d8996-beba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - team_msdyn_aimodel - None - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - teamid - team - team_msdyn_aimodel + team_knowledgesourceprofile owningteam - msdyn_aimodel + knowledgesourceprofile owningteam 0 - e65e8996-beba-f011-bbd3-7c1e52365f30 + 1cd10c86-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_aimodelcatalog + team_unstructuredfilesearchentity None 1.0 OneToManyRelationship @@ -491867,27 +542353,27 @@ false teamid team - team_msdyn_aimodelcatalog + team_unstructuredfilesearchentity owningteam - msdyn_aimodelcatalog + unstructuredfilesearchentity owningteam 0 - 3e36d99d-beba-f011-bbd3-7c1e52365f30 + 00d20c86-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_aitemplate + team_unstructuredfilesearchrecord None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -491921,25 +542407,25 @@ false teamid team - team_msdyn_aitemplate + team_unstructuredfilesearchrecord owningteam - msdyn_aitemplate + unstructuredfilesearchrecord owningteam 0 - bd90b11f-bfba-f011-bbd3-7c1e52365f30 + 49463986-bc5d-f111-a826-7ced8d776baf false true iscustomizable - false + true false true - team_msdyn_aibfeedbackloop + team_new_eventaggregator None 1.0 OneToManyRelationship @@ -491975,27 +542461,27 @@ false teamid team - team_msdyn_aibfeedbackloop + team_new_eventaggregator owningteam - msdyn_aibfeedbackloop + new_eventaggregator owningteam 0 - c7186d44-bfba-f011-bbd3-7c1e52365f30 + 3c473986-bc5d-f111-a826-7ced8d776baf false true iscustomizable - false + true false true - team_msdyn_aifptrainingdocument + team_new_eventaggregatorscans None - 0.0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -492029,27 +542515,27 @@ false teamid team - team_msdyn_aifptrainingdocument + team_new_eventaggregatorscans owningteam - msdyn_aifptrainingdocument + new_eventaggregatorscans owningteam 0 - f0196d44-bfba-f011-bbd3-7c1e52365f30 + 087c5088-d5ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_aiodimage + team_certificatecredential None - 0.0.1 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -492083,15 +542569,15 @@ false teamid team - team_msdyn_aiodimage + team_certificatecredential owningteam - msdyn_aiodimage + certificatecredential owningteam 0 - 601b6d44-bfba-f011-bbd3-7c1e52365f30 + d9968f89-e7ba-f011-bbd3-7c1e52365f30 false @@ -492101,9 +542587,9 @@ false true - team_msdyn_aiodlabel + team_msdyn_plan None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -492137,15 +542623,15 @@ false teamid team - team_msdyn_aiodlabel + team_msdyn_plan owningteam - msdyn_aiodlabel + msdyn_plan owningteam 0 - 701c6d44-bfba-f011-bbd3-7c1e52365f30 + bc978f89-e7ba-f011-bbd3-7c1e52365f30 false @@ -492155,9 +542641,9 @@ false true - team_msdyn_aiodtrainingboundingbox + team_msdyn_planartifact None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -492191,27 +542677,81 @@ false teamid team - team_msdyn_aiodtrainingboundingbox + team_msdyn_planartifact owningteam - msdyn_aiodtrainingboundingbox + msdyn_planartifact owningteam 0 - 231e984a-bfba-f011-bbd3-7c1e52365f30 + 951eb389-7a4f-43dd-b729-e125260be1ac false - true + false iscustomizable false + true + false + userentityinstancedata_team + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + userentityinstancedata_team + objectid + userentityinstancedata + objectid_team + + 0 + + + b48b848a-a9ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + false true - team_msdyn_aiodtrainingimage + team_solutioncomponentbatchconfiguration None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -492245,27 +542785,27 @@ false teamid team - team_msdyn_aiodtrainingimage + team_solutioncomponentbatchconfiguration owningteam - msdyn_aiodtrainingimage + solutioncomponentbatchconfiguration owningteam 0 - eaa96771-bfba-f011-bbd3-7c1e52365f30 + 506a328b-38d0-497c-86d8-56d03c67328c false - true + false iscustomizable false - false - true - team_msdyn_aibdataset + true + false + team_userqueryvisualizations None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -492299,27 +542839,27 @@ false teamid team - team_msdyn_aibdataset + team_userqueryvisualizations owningteam - msdyn_aibdataset + userqueryvisualization owningteam 0 - c0aa6771-bfba-f011-bbd3-7c1e52365f30 + 7eded08b-9c91-43d6-800c-690959361f91 false - true + false iscustomizable false - false - true - team_msdyn_aibdatasetfile + true + false + ImportFile_Team None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -492353,27 +542893,27 @@ false teamid team - team_msdyn_aibdatasetfile - owningteam - msdyn_aibdatasetfile - owningteam + ImportFile_Team + recordsownerid + importfile + recordsownerid_team 0 - d4ab6771-bfba-f011-bbd3-7c1e52365f30 + 432f168c-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_aibdatasetrecord + team_unstructuredfilesearchrecordstatus None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -492407,15 +542947,15 @@ false teamid team - team_msdyn_aibdatasetrecord + team_unstructuredfilesearchrecordstatus owningteam - msdyn_aibdatasetrecord + unstructuredfilesearchrecordstatus owningteam 0 - 05ad6771-bfba-f011-bbd3-7c1e52365f30 + 3c32168c-bdba-f011-bbd3-7c1e52365f30 false @@ -492425,7 +542965,7 @@ false true - team_msdyn_aibdatasetscontainer + team_dvfilesearch None 1.0.0.0 OneToManyRelationship @@ -492461,27 +543001,27 @@ false teamid team - team_msdyn_aibdatasetscontainer + team_dvfilesearch owningteam - msdyn_aibdatasetscontainer + dvfilesearch owningteam 0 - 4d246577-bfba-f011-bbd3-7c1e52365f30 + 5c96318c-bc5d-f111-a826-7ced8d776baf false true iscustomizable - false + true false true - team_msdyn_aibfile + team_new_gaurdianfullscan None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -492515,27 +543055,27 @@ false teamid team - team_msdyn_aibfile + team_new_gaurdianfullscan owningteam - msdyn_aibfile + new_gaurdianfullscan owningteam 0 - 1b256577-bfba-f011-bbd3-7c1e52365f30 + 5e97318c-bc5d-f111-a826-7ced8d776baf false true iscustomizable - false + true false true - team_msdyn_aibfileattacheddata + team_new_gaurdianhealthchecks None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -492569,15 +543109,15 @@ false teamid team - team_msdyn_aibfileattacheddata + team_new_gaurdianhealthchecks owningteam - msdyn_aibfileattacheddata + new_gaurdianhealthchecks owningteam 0 - 358a5ce9-bfba-f011-bbd3-7c1e52365f30 + 0e6e428c-f6ba-f011-bbd3-7c1e52365f30 false @@ -492587,7 +543127,7 @@ false true - team_msdyn_aievaluationconfiguration + team_ctx_invoice None 1.0 OneToManyRelationship @@ -492623,15 +543163,15 @@ false teamid team - team_msdyn_aievaluationconfiguration + team_ctx_invoice owningteam - msdyn_aievaluationconfiguration + ctx_invoice owningteam 0 - 578d5ce9-bfba-f011-bbd3-7c1e52365f30 + 5957848c-2f10-f111-8345-7c1e52216fd8 false @@ -492641,9 +543181,9 @@ false true - team_msdyn_aievaluationrun + team_mcpprompt None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -492677,25 +543217,25 @@ false teamid team - team_msdyn_aievaluationrun + team_mcpprompt owningteam - msdyn_aievaluationrun + mcpprompt owningteam 0 - 428f5ce9-bfba-f011-bbd3-7c1e52365f30 + fe93138d-f4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_aioptimization + team_powerpagesscanreport None 1.0 OneToManyRelationship @@ -492731,15 +543271,15 @@ false teamid team - team_msdyn_aioptimization + team_powerpagesscanreport owningteam - msdyn_aioptimization + powerpagesscanreport owningteam 0 - 970f9aef-bfba-f011-bbd3-7c1e52365f30 + 0595138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -492749,7 +543289,7 @@ false true - team_msdyn_aioptimizationprivatedata + team_powerpagesddosalert None 1.0 OneToManyRelationship @@ -492785,27 +543325,27 @@ false teamid team - team_msdyn_aioptimizationprivatedata + team_powerpagesddosalert owningteam - msdyn_aioptimizationprivatedata + powerpagesddosalert owningteam 0 - 90109aef-bfba-f011-bbd3-7c1e52365f30 + d495138d-f4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_aitestcase + team_powerpageslog None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -492839,15 +543379,15 @@ false teamid team - team_msdyn_aitestcase + team_powerpageslog owningteam - msdyn_aitestcase + powerpageslog owningteam 0 - c8119aef-bfba-f011-bbd3-7c1e52365f30 + 5f96138d-f4ba-f011-bbd3-7c1e52365f30 false @@ -492857,9 +543397,9 @@ false true - team_msdyn_aitestcasedocument + team_powerpagesmanagedidentity None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -492893,27 +543433,27 @@ false teamid team - team_msdyn_aitestcasedocument + team_powerpagesmanagedidentity owningteam - msdyn_aitestcasedocument + powerpagesmanagedidentity owningteam 0 - 8d129aef-bfba-f011-bbd3-7c1e52365f30 + 745b958e-2922-4597-84a9-e5a478ac98e9 false - true + false iscustomizable true - false + true true - team_msdyn_aitestcaseinput + team_appointment None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -492947,25 +543487,25 @@ false teamid team - team_msdyn_aitestcaseinput + team_appointment owningteam - msdyn_aitestcaseinput - owningteam + appointment + owningteam_appointment 0 - 8e5e90f5-bfba-f011-bbd3-7c1e52365f30 + d0db1c90-e7ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_aitestrun + team_msdyn_planattachment None 1.0 OneToManyRelationship @@ -493001,25 +543541,25 @@ false teamid team - team_msdyn_aitestrun + team_msdyn_planattachment owningteam - msdyn_aitestrun + msdyn_planattachment owningteam 0 - c95f90f5-bfba-f011-bbd3-7c1e52365f30 + 5f998f90-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_aitestrunbatch + team_msdyn_aiconfigurationsearch None 1.0 OneToManyRelationship @@ -493055,27 +543595,27 @@ false teamid team - team_msdyn_aitestrunbatch + team_msdyn_aiconfigurationsearch owningteam - msdyn_aitestrunbatch + msdyn_aiconfigurationsearch owningteam 0 - 2d8216a3-c0ba-f011-bbd3-7c1e52365f30 + b09b8f90-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdynce_botcontent + team_msdyn_aidataprocessingevent None - 0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -493109,27 +543649,27 @@ false teamid team - team_msdynce_botcontent + team_msdyn_aidataprocessingevent owningteam - msdynce_botcontent + msdyn_aidataprocessingevent owningteam 0 - 60ae83c4-c0ba-f011-bbd3-7c1e52365f30 + 5ff57291-9cee-47f9-86f4-49f8fc53a59f false - true + false iscustomizable true - false + true true - team_conversationtranscript + team_task None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -493163,15 +543703,69 @@ false teamid team - team_conversationtranscript + team_task owningteam - conversationtranscript + task + owningteam_task + + 0 + + + 1c03b191-4c34-4ddb-b140-b03ab921effa + + false + + false + iscustomizable + true + + true + true + team_emailserverprofile + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_emailserverprofile + owningteam + emailserverprofile owningteam 0 - 31885ee6-c0ba-f011-bbd3-7c1e52365f30 + 3a7a3792-bdba-f011-bbd3-7c1e52365f30 false @@ -493181,9 +543775,9 @@ false true - team_bot + team_dvfilesearchattribute None - 1.0.0.0 + 1.0.0.56 OneToManyRelationship DoNotDisplay @@ -493217,15 +543811,15 @@ false teamid team - team_bot + team_dvfilesearchattribute owningteam - bot + dvfilesearchattribute owningteam 0 - 858a5ee6-c0ba-f011-bbd3-7c1e52365f30 + 847c3792-bdba-f011-bbd3-7c1e52365f30 false @@ -493235,7 +543829,7 @@ false true - team_botcomponent + team_dvfilesearchentity None 1.0.0.0 OneToManyRelationship @@ -493271,15 +543865,15 @@ false teamid team - team_botcomponent + team_dvfilesearchentity owningteam - botcomponent + dvfilesearchentity owningteam 0 - dfe656ec-c0ba-f011-bbd3-7c1e52365f30 + 4d7e3792-bdba-f011-bbd3-7c1e52365f30 false @@ -493289,9 +543883,9 @@ false true - team_botcomponentcollection + team_dvtablesearch None - 2.2.12.13735069 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -493325,27 +543919,27 @@ false teamid team - team_botcomponentcollection + team_dvtablesearch owningteam - botcomponentcollection + dvtablesearch owningteam 0 - 16a790c0-c1ba-f011-bbd3-7c1e52365f30 + 5bd11393-f4ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_comment + team_powerpagessiteaifeedback None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -493379,25 +543973,25 @@ false teamid team - team_comment + team_powerpagessiteaifeedback owningteam - comment + powerpagessiteaifeedback owningteam 0 - 0655320a-c2ba-f011-bbd3-7c1e52365f30 + a8728193-bc51-f111-a824-e4fb1efa3784 false true iscustomizable - false + true false true - team_governanceconfiguration + team_msdyn_historicalcaseharvestrunlog None 1.0 OneToManyRelationship @@ -493433,15 +544027,15 @@ false teamid team - team_governanceconfiguration + team_msdyn_historicalcaseharvestrunlog owningteam - governanceconfiguration + msdyn_historicalcaseharvestrunlog owningteam 0 - 8155473b-c3ba-f011-bbd3-7c1e52365f30 + 248f6396-42bf-f011-bbd5-7ced8d470ac7 false @@ -493451,7 +544045,7 @@ false true - team_fabricaiskill + team_cpr_cprdata None 1.0 OneToManyRelationship @@ -493487,25 +544081,25 @@ false teamid team - team_fabricaiskill + team_cpr_cprdata owningteam - fabricaiskill + cpr_cprdata owningteam 0 - 87e55843-c3ba-f011-bbd3-7c1e52365f30 + 4e588996-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_dataflowconnectionreference + team_msdyn_aidocumenttemplate None 1.0 OneToManyRelationship @@ -493541,15 +544135,15 @@ false teamid team - team_msdyn_dataflowconnectionreference + team_msdyn_aidocumenttemplate owningteam - msdyn_dataflowconnectionreference + msdyn_aidocumenttemplate owningteam 0 - 7bb2124a-c3ba-f011-bbd3-7c1e52365f30 + e75a8996-beba-f011-bbd3-7c1e52365f30 false @@ -493559,7 +544153,7 @@ false true - team_msdyn_schedule + team_msdyn_aievent None 1.0 OneToManyRelationship @@ -493595,27 +544189,27 @@ false teamid team - team_msdyn_schedule + team_msdyn_aievent owningteam - msdyn_schedule + msdyn_aievent owningteam 0 - a1b4124a-c3ba-f011-bbd3-7c1e52365f30 + 035d8996-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_dataflowtemplate + team_msdyn_aimodel None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -493649,25 +544243,25 @@ false teamid team - team_msdyn_dataflowtemplate + team_msdyn_aimodel owningteam - msdyn_dataflowtemplate + msdyn_aimodel owningteam 0 - b4b6124a-c3ba-f011-bbd3-7c1e52365f30 + e65e8996-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_dataflow_datalakefolder + team_msdyn_aimodelcatalog None 1.0 OneToManyRelationship @@ -493703,25 +544297,25 @@ false teamid team - team_msdyn_dataflow_datalakefolder + team_msdyn_aimodelcatalog owningteam - msdyn_dataflow_datalakefolder + msdyn_aimodelcatalog owningteam 0 - a54e5550-c3ba-f011-bbd3-7c1e52365f30 + 51423798-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_dmsrequest + team_dvtablesearchattribute None 1.0 OneToManyRelationship @@ -493757,27 +544351,27 @@ false teamid team - team_msdyn_dmsrequest + team_dvtablesearchattribute owningteam - msdyn_dmsrequest + dvtablesearchattribute owningteam 0 - 09535550-c3ba-f011-bbd3-7c1e52365f30 + 7a443798-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_dmsrequeststatus + team_dvtablesearchentity None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -493811,15 +544405,15 @@ false teamid team - team_msdyn_dmsrequeststatus + team_dvtablesearchentity owningteam - msdyn_dmsrequeststatus + dvtablesearchentity owningteam 0 - 851c6456-c3ba-f011-bbd3-7c1e52365f30 + 16946398-5566-f111-ab0c-70a8a52b6964 false @@ -493829,9 +544423,9 @@ false true - team_msdyn_dmssyncrequest + team_ctx_parent None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -493865,15 +544459,15 @@ false teamid team - team_msdyn_dmssyncrequest + team_ctx_parent owningteam - msdyn_dmssyncrequest + ctx_parent owningteam 0 - 671d6456-c3ba-f011-bbd3-7c1e52365f30 + d0557798-2f10-f111-8345-7c1e52216fd8 false @@ -493883,9 +544477,9 @@ false true - team_msdyn_dmssyncstatus + team_mcpresource None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -493919,15 +544513,15 @@ false teamid team - team_msdyn_dmssyncstatus + team_mcpresource owningteam - msdyn_dmssyncstatus + mcpresource owningteam 0 - 5a1f6456-c3ba-f011-bbd3-7c1e52365f30 + 6462a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -493937,7 +544531,7 @@ false true - team_msdyn_knowledgeassetconfiguration + team_msdyn_dataflow None 1.0 OneToManyRelationship @@ -493973,15 +544567,15 @@ false teamid team - team_msdyn_knowledgeassetconfiguration + team_msdyn_dataflow owningteam - msdyn_knowledgeassetconfiguration + msdyn_dataflow owningteam 0 - 93236456-c3ba-f011-bbd3-7c1e52365f30 + d766a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -493991,9 +544585,9 @@ false true - team_msdyn_qna + team_msdyn_dataflowrefreshhistory None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -494027,15 +544621,15 @@ false teamid team - team_msdyn_qna + team_msdyn_dataflowrefreshhistory owningteam - msdyn_qna + msdyn_dataflowrefreshhistory owningteam 0 - 1f05cb5c-c3ba-f011-bbd3-7c1e52365f30 + 1468a098-b4ba-f011-bbd3-7c1e52365f30 false @@ -494045,7 +544639,7 @@ false true - team_msdyn_salesforcestructuredobject + team_msdyn_entityrefreshhistory None 1.0 OneToManyRelationship @@ -494081,27 +544675,27 @@ false teamid team - team_msdyn_salesforcestructuredobject + team_msdyn_entityrefreshhistory owningteam - msdyn_salesforcestructuredobject + msdyn_entityrefreshhistory owningteam 0 - 5206cb5c-c3ba-f011-bbd3-7c1e52365f30 + 023e659a-6439-4a71-acff-23dda9d4bb9e false - true + false iscustomizable - true + false - false + true true - team_msdyn_salesforcestructuredqnaconfig + team_processsession None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -494135,27 +544729,27 @@ false teamid team - team_msdyn_salesforcestructuredqnaconfig + team_processsession owningteam - msdyn_salesforcestructuredqnaconfig + processsession owningteam 0 - c90a1424-c4ba-f011-bbd3-7c1e52365f30 + 3e36d99d-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_federatedknowledgecitation + team_msdyn_aitemplate None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -494189,15 +544783,15 @@ false teamid team - team_federatedknowledgecitation + team_msdyn_aitemplate owningteam - federatedknowledgecitation + msdyn_aitemplate owningteam 0 - 660c1424-c4ba-f011-bbd3-7c1e52365f30 + 4cb63d9e-e0ba-f011-bbd3-7c1e52365f30 false @@ -494207,7 +544801,7 @@ false true - team_federatedknowledgeconfiguration + team_card None 1.0.0.0 OneToManyRelationship @@ -494243,25 +544837,25 @@ false teamid team - team_federatedknowledgeconfiguration + team_card owningteam - federatedknowledgeconfiguration + card owningteam 0 - 310e1424-c4ba-f011-bbd3-7c1e52365f30 + 32a3ec9f-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_federatedknowledgeentityconfiguration + team_workflowbinary None 1.0.0.0 OneToManyRelationship @@ -494297,15 +544891,15 @@ false teamid team - team_federatedknowledgeentityconfiguration + team_workflowbinary owningteam - federatedknowledgeentityconfiguration + workflowbinary owningteam 0 - 58ab3d2a-c4ba-f011-bbd3-7c1e52365f30 + 3d4375a0-9531-f111-88b4-002248a0fb54 false @@ -494315,7 +544909,7 @@ false true - team_federatedknowledgemetadatarefresh + team_msdyn_harvesteligibilitycondition None 1.0 OneToManyRelationship @@ -494351,27 +544945,27 @@ false teamid team - team_federatedknowledgemetadatarefresh + team_msdyn_harvesteligibilitycondition owningteam - federatedknowledgemetadatarefresh + msdyn_harvesteligibilitycondition owningteam 0 - f2ac3d2a-c4ba-f011-bbd3-7c1e52365f30 + c442fea1-1e2b-4183-8914-a6d89872ef30 false - true + false iscustomizable true - false + true true - team_intelligentmemory + team_mailboxtrackingfolder None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -494405,15 +544999,15 @@ false teamid team - team_intelligentmemory + team_mailboxtrackingfolder owningteam - intelligentmemory + mailboxtrackingfolder owningteam 0 - cdad3d2a-c4ba-f011-bbd3-7c1e52365f30 + f0cc55a2-42bf-f011-bbd5-7ced8d470ac7 false @@ -494423,7 +545017,7 @@ false true - team_knowledgefaq + team_cpr_cprconfiguration None 1.0 OneToManyRelationship @@ -494459,15 +545053,15 @@ false teamid team - team_knowledgefaq + team_cpr_cprconfiguration owningteam - knowledgefaq + cpr_cprconfiguration owningteam 0 - afaf3d2a-c4ba-f011-bbd3-7c1e52365f30 + 2d8216a3-c0ba-f011-bbd3-7c1e52365f30 false @@ -494477,9 +545071,9 @@ false true - team_msdyn_formmapping + team_msdynce_botcontent None - 1.0 + 0.0.1 OneToManyRelationship DoNotDisplay @@ -494513,27 +545107,27 @@ false teamid team - team_msdyn_formmapping + team_msdynce_botcontent owningteam - msdyn_formmapping + msdynce_botcontent owningteam 0 - 8879b208-c5ba-f011-bbd3-7c1e52365f30 + e889b4a4-2f10-f111-8345-7c1e52216fd8 false true iscustomizable - false + true false true - team_msdyn_copilotinteractions + team_mcpresourcecontent None - 2.0.0.100 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -494567,25 +545161,25 @@ false teamid team - team_msdyn_copilotinteractions + team_mcpresourcecontent owningteam - msdyn_copilotinteractions + mcpresourcecontent owningteam 0 - 2f7797cd-c6ba-f011-bbd3-7c1e52365f30 + ad4815a8-b7ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - true + false - true + false true - team_pdfsetting + team_canvasappextendedmetadata None 9.1.0.0 OneToManyRelationship @@ -494621,27 +545215,27 @@ false teamid team - team_pdfsetting + team_canvasappextendedmetadata owningteam - pdfsetting + canvasappextendedmetadata owningteam 0 - 5a3d437f-c8ba-f011-bbd3-7c1e52365f30 + 10f40fa9-b6ea-f011-8409-000d3adc1cd9 false - false + true iscustomizable - true + false - true + false true - team_activityfileattachment + team_agentfeeditem None - 1.0.0.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -494675,15 +545269,15 @@ false teamid team - team_activityfileattachment + team_agentfeeditem owningteam - activityfileattachment + agentfeeditem owningteam 0 - 450b3e85-c8ba-f011-bbd3-7c1e52365f30 + 67052dab-f31f-f111-88b4-7c1e5235b3a0 false @@ -494693,9 +545287,9 @@ false true - chat_team_owningteam + team_agentrule None - 6.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -494729,25 +545323,133 @@ false teamid team - chat_team_owningteam + team_agentrule owningteam - chat - owningteam_chat + agentrule + owningteam 0 - 93e1e0ad-c9ba-f011-bbd3-7c1e52365f30 + 68c99cab-d540-42b4-9da4-3118aa17818d false - true + false + iscustomizable + false + + true + false + team_userform + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_userform + owningteam + userform + owningteam + + 0 + + + ce215dac-2fee-e411-80d9-00155dcf6500 + + false + + false iscustomizable true + true + true + team_externalparty + None + 8.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_externalparty + owningteam + externalparty + team_externalparty_externalparty + + 0 + + + e7c577ad-b561-f111-ab0c-7ced8d2cc7ed + + false + + true + iscustomizable + false + false true - team_msdyn_serviceconfiguration + team_agentprompt None 1.0 OneToManyRelationship @@ -494783,15 +545485,15 @@ false teamid team - team_msdyn_serviceconfiguration + team_agentprompt owningteam - msdyn_serviceconfiguration + agentprompt owningteam 0 - 9ae2e0ad-c9ba-f011-bbd3-7c1e52365f30 + 43be7ead-caba-f011-bbd3-7c1e52365f30 false @@ -494801,9 +545503,9 @@ false true - team_msdyn_slakpi + team_msdyn_federatedarticle None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -494837,27 +545539,27 @@ false teamid team - team_msdyn_slakpi + team_msdyn_federatedarticle owningteam - msdyn_slakpi + msdyn_federatedarticle owningteam 0 - 3bf5cb42-caba-f011-bbd3-7c1e52365f30 + 93e1e0ad-c9ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_msdyn_integratedsearchprovider + team_msdyn_serviceconfiguration None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -494891,27 +545593,27 @@ false teamid team - team_msdyn_integratedsearchprovider + team_msdyn_serviceconfiguration owningteam - msdyn_integratedsearchprovider + msdyn_serviceconfiguration owningteam 0 - 2ff6cb42-caba-f011-bbd3-7c1e52365f30 + 9ae2e0ad-c9ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - team_msdyn_knowledgemanagementsetting + team_msdyn_slakpi None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -494945,27 +545647,27 @@ false teamid team - team_msdyn_knowledgemanagementsetting + team_msdyn_slakpi owningteam - msdyn_knowledgemanagementsetting + msdyn_slakpi owningteam 0 - 43be7ead-caba-f011-bbd3-7c1e52365f30 + 6fd554ae-9abd-415e-a906-83a2d4bb2bd2 false - true + false iscustomizable true - false + true true - team_msdyn_federatedarticle + team_letter None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -494999,15 +545701,15 @@ false teamid team - team_msdyn_federatedarticle + team_letter owningteam - msdyn_federatedarticle - owningteam + letter + owningteam_letter 0 - ef73b0b3-caba-f011-bbd3-7c1e52365f30 + bb4683ae-42bf-f011-bbd5-7ced8d470ac7 false @@ -495017,7 +545719,7 @@ false true - team_msdyn_kmfederatedsearchconfig + team_cpr_cprsubscription None 1.0 OneToManyRelationship @@ -495053,15 +545755,15 @@ false teamid team - team_msdyn_kmfederatedsearchconfig + team_cpr_cprsubscription owningteam - msdyn_kmfederatedsearchconfig + cpr_cprsubscription owningteam 0 - b474b0b3-caba-f011-bbd3-7c1e52365f30 + 7aaf9cae-b9ba-f011-bbd3-7c1e52365f30 false @@ -495071,9 +545773,9 @@ false true - team_msdyn_knowledgearticleimage + team_connector None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -495107,27 +545809,27 @@ false teamid team - team_msdyn_knowledgearticleimage + team_connector owningteam - msdyn_knowledgearticleimage + connector owningteam 0 - 3676b0b3-caba-f011-bbd3-7c1e52365f30 + e63327b0-aeba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_knowledgeinteractioninsight + team_customapi None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -495161,27 +545863,27 @@ false teamid team - team_msdyn_knowledgeinteractioninsight + team_customapi owningteam - msdyn_knowledgeinteractioninsight + customapi owningteam 0 - 0877b0b3-caba-f011-bbd3-7c1e52365f30 + 347d35b2-b0ff-45d0-a4f8-6e0687ee5b40 false - true + false iscustomizable - true + false - false + true true - team_msdyn_knowledgesearchinsight + team_email_templates None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -495215,15 +545917,15 @@ false teamid team - team_msdyn_knowledgesearchinsight + team_email_templates owningteam - msdyn_knowledgesearchinsight + template owningteam 0 - 5ff8f7fb-caba-f011-bbd3-7c1e52365f30 + ef73b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -495233,7 +545935,7 @@ false true - team_msdyn_favoriteknowledgearticle + team_msdyn_kmfederatedsearchconfig None 1.0 OneToManyRelationship @@ -495269,15 +545971,15 @@ false teamid team - team_msdyn_favoriteknowledgearticle + team_msdyn_kmfederatedsearchconfig owningteam - msdyn_favoriteknowledgearticle + msdyn_kmfederatedsearchconfig owningteam 0 - e513f801-cbba-f011-bbd3-7c1e52365f30 + b474b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -495287,9 +545989,9 @@ false true - team_msdyn_kalanguagesetting + team_msdyn_knowledgearticleimage None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -495323,15 +546025,15 @@ false teamid team - team_msdyn_kalanguagesetting + team_msdyn_knowledgearticleimage owningteam - msdyn_kalanguagesetting + msdyn_knowledgearticleimage owningteam 0 - 1a15f801-cbba-f011-bbd3-7c1e52365f30 + 3676b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -495341,7 +546043,7 @@ false true - team_msdyn_kbattachment + team_msdyn_knowledgeinteractioninsight None 9.1.0.0 OneToManyRelationship @@ -495377,15 +546079,15 @@ false teamid team - team_msdyn_kbattachment + team_msdyn_knowledgeinteractioninsight owningteam - msdyn_kbattachment + msdyn_knowledgeinteractioninsight owningteam 0 - 9e16f801-cbba-f011-bbd3-7c1e52365f30 + 0877b0b3-caba-f011-bbd3-7c1e52365f30 false @@ -495395,7 +546097,7 @@ false true - team_msdyn_knowledgearticletemplate + team_msdyn_knowledgesearchinsight None 9.1.0.0 OneToManyRelationship @@ -495431,27 +546133,81 @@ false teamid team - team_msdyn_knowledgearticletemplate + team_msdyn_knowledgesearchinsight owningteam - msdyn_knowledgearticletemplate + msdyn_knowledgesearchinsight owningteam 0 - 4d17f801-cbba-f011-bbd3-7c1e52365f30 + cdf793b5-189e-4afc-9b01-59bb79bd9e67 false - true + false iscustomizable true - false + true true - team_msdyn_knowledgepersonalfilter + Team_SyncErrors + Append + 8.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Cascade + Cascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + teamid + team + Team_SyncErrors + regardingobjectid + syncerror + regardingobjectid_team_syncerror + + 1 + + + b9e7b0b6-2d37-df11-8c67-00155d2a9007 + + false + + false + iscustomizable + true + + true + true + team_sharepointdocumentlocation None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -495485,15 +546241,15 @@ false teamid team - team_msdyn_knowledgepersonalfilter + team_sharepointdocumentlocation owningteam - msdyn_knowledgepersonalfilter + sharepointdocumentlocation owningteam 0 - 1e18f801-cbba-f011-bbd3-7c1e52365f30 + a30733b8-cdba-f011-bbd3-7c1e52365f30 false @@ -495503,9 +546259,9 @@ false true - team_msdyn_knowledgesearchfilter + team_mcpserver None - 9.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -495539,15 +546295,15 @@ false teamid team - team_msdyn_knowledgesearchfilter + team_mcpserver owningteam - msdyn_knowledgesearchfilter + mcpserver owningteam 0 - 44993775-cbba-f011-bbd3-7c1e52365f30 + 610833b8-cdba-f011-bbd3-7c1e52365f30 false @@ -495557,9 +546313,9 @@ false true - team_msdyn_historicalcaseharvestbatch + team_mcptool None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -495593,15 +546349,15 @@ false teamid team - team_msdyn_historicalcaseharvestbatch + team_mcptool owningteam - msdyn_historicalcaseharvestbatch + mcptool owningteam 0 - 8ed9a47b-cbba-f011-bbd3-7c1e52365f30 + 0e0933b8-cdba-f011-bbd3-7c1e52365f30 false @@ -495611,9 +546367,9 @@ false true - team_msdyn_historicalcaseharvestrun + team_toolinggateway None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -495647,15 +546403,15 @@ false teamid team - team_msdyn_historicalcaseharvestrun + team_toolinggateway owningteam - msdyn_historicalcaseharvestrun + toolinggateway owningteam 0 - 88daa47b-cbba-f011-bbd3-7c1e52365f30 + ad0933b8-cdba-f011-bbd3-7c1e52365f30 false @@ -495665,9 +546421,9 @@ false true - team_msdyn_interimupdateknowledgearticle + team_toolinggatewaymcpserver None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -495701,15 +546457,15 @@ false teamid team - team_msdyn_interimupdateknowledgearticle + team_toolinggatewaymcpserver owningteam - msdyn_interimupdateknowledgearticle + toolinggatewaymcpserver owningteam 0 - 47dba47b-cbba-f011-bbd3-7c1e52365f30 + cc3061b8-ccba-f011-bbd3-7c1e52365f30 false @@ -495719,9 +546475,9 @@ false true - team_msdyn_knowledgearticlecustomentity + team_fxexpression None - 9.1.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -495755,15 +546511,15 @@ false teamid team - team_msdyn_knowledgearticlecustomentity + team_fxexpression owningteam - msdyn_knowledgearticlecustomentity + fxexpression owningteam 0 - 68dca47b-cbba-f011-bbd3-7c1e52365f30 + a23161b8-ccba-f011-bbd3-7c1e52365f30 false @@ -495773,9 +546529,9 @@ false true - team_msdyn_knowledgeharvestjobrecord + team_msdyn_function None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -495809,15 +546565,15 @@ false teamid team - team_msdyn_knowledgeharvestjobrecord + team_msdyn_function owningteam - msdyn_knowledgeharvestjobrecord + msdyn_function owningteam 0 - cc3061b8-ccba-f011-bbd3-7c1e52365f30 + 8c3261b8-ccba-f011-bbd3-7c1e52365f30 false @@ -495827,9 +546583,9 @@ false true - team_fxexpression + team_plugin None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -495863,15 +546619,15 @@ false teamid team - team_fxexpression + team_plugin owningteam - fxexpression + plugin owningteam 0 - a23161b8-ccba-f011-bbd3-7c1e52365f30 + 88ecfdb8-f1ba-f011-bbd3-7c1e52365f30 false @@ -495881,9 +546637,9 @@ false true - team_msdyn_function + team_nlsqregistration None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -495917,15 +546673,15 @@ false teamid team - team_msdyn_function + team_nlsqregistration owningteam - msdyn_function + nlsqregistration owningteam 0 - 8c3261b8-ccba-f011-bbd3-7c1e52365f30 + c354fcba-b6ea-f011-8409-000d3adc1cd9 false @@ -495935,9 +546691,9 @@ false true - team_plugin + team_agenthubgoal None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -495971,27 +546727,27 @@ false teamid team - team_plugin + team_agenthubgoal owningteam - plugin + agenthubgoal owningteam 0 - 612a68be-ccba-f011-bbd3-7c1e52365f30 + 9eac92bd-48b3-4cfe-99ee-0ed024a7b614 false - true + false iscustomizable - true + false - false - true - team_powerfxrule + true + false + team_DuplicateRules None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -496025,15 +546781,15 @@ false teamid team - team_powerfxrule + team_DuplicateRules owningteam - powerfxrule + duplicaterule owningteam 0 - c42b0e6a-cdba-f011-bbd3-7c1e52365f30 + 612a68be-ccba-f011-bbd3-7c1e52365f30 false @@ -496043,9 +546799,9 @@ false true - team_plannerbusinessscenario + team_powerfxrule None - 9.1.62 + 1.0 OneToManyRelationship DoNotDisplay @@ -496079,15 +546835,15 @@ false teamid team - team_plannerbusinessscenario + team_powerfxrule owningteam - plannerbusinessscenario + powerfxrule owningteam 0 - 442c0e6a-cdba-f011-bbd3-7c1e52365f30 + 25a5f9be-f1ba-f011-bbd3-7c1e52365f30 false @@ -496097,9 +546853,9 @@ false true - team_plannersyncaction + team_recentlyused None - 9.1.62 + 1.0 OneToManyRelationship DoNotDisplay @@ -496133,15 +546889,15 @@ false teamid team - team_plannersyncaction + team_recentlyused owningteam - plannersyncaction + recentlyused owningteam 0 - a30733b8-cdba-f011-bbd3-7c1e52365f30 + 4ca9babf-2de0-f011-840b-0022489ebb55 false @@ -496151,9 +546907,9 @@ false true - team_mcpserver + team_cpr_cprsubrun None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -496187,15 +546943,15 @@ false teamid team - team_mcpserver + team_cpr_cprsubrun owningteam - mcpserver + cpr_cprsubrun owningteam 0 - 610833b8-cdba-f011-bbd3-7c1e52365f30 + 8382c8bf-aaba-f011-bbd3-7c1e52365f30 false @@ -496205,7 +546961,7 @@ false true - team_mcptool + team_stagesolutionupload None 1.0.0.0 OneToManyRelationship @@ -496241,15 +546997,15 @@ false teamid team - team_mcptool + team_stagesolutionupload owningteam - mcptool + stagesolutionupload owningteam 0 - 0e0933b8-cdba-f011-bbd3-7c1e52365f30 + 16a790c0-c1ba-f011-bbd3-7c1e52365f30 false @@ -496259,9 +547015,9 @@ false true - team_toolinggateway + team_comment None - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -496295,15 +547051,15 @@ false teamid team - team_toolinggateway + team_comment owningteam - toolinggateway + comment owningteam 0 - ad0933b8-cdba-f011-bbd3-7c1e52365f30 + d992f2c0-b6ea-f011-8409-000d3adc1cd9 false @@ -496313,9 +547069,9 @@ false true - team_toolinggatewaymcpserver + team_agenthubinsight None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -496349,15 +547105,15 @@ false teamid team - team_toolinggatewaymcpserver + team_agenthubinsight owningteam - toolinggatewaymcpserver + agenthubinsight owningteam 0 - bfdfcbc9-d1ba-f011-bbd3-7c1e52365f30 + 0f8af9c0-b3ba-f011-bbd3-7c1e52365f30 true @@ -496366,17 +547122,38 @@ false true - false - team_teammobileofflineprofilemembership_TeamId + true + team_componentversion Append - 1.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay Details - - + + + 2eb97ab6-c677-45a8-aaed-97850030f410 + + true + Versions + 1033 + + + 593ef25a-c038-4591-91d4-3c86bd24ffec + + true + Versioner + 1030 + + + + 2eb97ab6-c677-45a8-aaed-97850030f410 + + true + Versions + 1033 + 10000 true @@ -496389,7 +547166,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -496403,27 +547180,27 @@ false teamid team - team_teammobileofflineprofilemembership_TeamId - teamid - teammobileofflineprofilemembership - TeamId + team_componentversion + owningteam + componentversion + owningteam 1 - b3325dce-d3ba-f011-bbd3-7c1e52365f30 + 6f6201c3-b450-4325-9ec4-3c7fbc3cb903 false - true + false iscustomizable - true + false - false - true - team_archivecleanupinfo + true + false + team_userentityinstancedata None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -496457,15 +547234,15 @@ false teamid team - team_archivecleanupinfo + team_userentityinstancedata owningteam - archivecleanupinfo + userentityinstancedata owningteam 0 - 99335dce-d3ba-f011-bbd3-7c1e52365f30 + 60ae83c4-c0ba-f011-bbd3-7c1e52365f30 false @@ -496475,7 +547252,7 @@ false true - team_archivecleanupoperation + team_conversationtranscript None 1.0.0.0 OneToManyRelationship @@ -496511,27 +547288,27 @@ false teamid team - team_archivecleanupoperation + team_conversationtranscript owningteam - archivecleanupoperation + conversationtranscript owningteam 0 - 76345dce-d3ba-f011-bbd3-7c1e52365f30 + e382a2c4-d13c-48fd-89af-142a2be954ac false - true + false iscustomizable - true + false - false - true - team_bulkarchiveconfig + true + false + team_Imports None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -496565,15 +547342,15 @@ false teamid team - team_bulkarchiveconfig + team_Imports owningteam - bulkarchiveconfig + import owningteam 0 - 77355dce-d3ba-f011-bbd3-7c1e52365f30 + 525916c5-f1ba-f011-bbd3-7c1e52365f30 false @@ -496583,9 +547360,9 @@ false true - team_bulkarchivefailuredetail + team_copilotglossaryterm None - 1.0.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -496619,25 +547396,25 @@ false teamid team - team_bulkarchivefailuredetail + team_copilotglossaryterm owningteam - bulkarchivefailuredetail + copilotglossaryterm owningteam 0 - 065e54d4-d3ba-f011-bbd3-7c1e52365f30 + 0b53b8c6-bcba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_bulkarchiveoperation + team_connectionreference None 1.0.0.0 OneToManyRelationship @@ -496673,15 +547450,15 @@ false teamid team - team_bulkarchiveoperation + team_connectionreference owningteam - bulkarchiveoperation + connectionreference owningteam 0 - 905f54d4-d3ba-f011-bbd3-7c1e52365f30 + e16debc6-b6ea-f011-8409-000d3adc1cd9 false @@ -496691,7 +547468,7 @@ false true - team_enablearchivalrequest + team_agenthubmetric None 1.0 OneToManyRelationship @@ -496727,15 +547504,15 @@ false teamid team - team_enablearchivalrequest + team_agenthubmetric owningteam - enablearchivalrequest + agenthubmetric owningteam 0 - 277cc9da-d3ba-f011-bbd3-7c1e52365f30 + d5f26fc8-5566-f111-ab0c-70a8a52b6964 false @@ -496745,9 +547522,9 @@ false true - team_reconciliationentityinfo + team_ctx_child None - 1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -496781,27 +547558,81 @@ false teamid team - team_reconciliationentityinfo + team_ctx_child owningteam - reconciliationentityinfo + ctx_child owningteam 0 - a67dc9da-d3ba-f011-bbd3-7c1e52365f30 + bfdfcbc9-d1ba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + false + team_teammobileofflineprofilemembership_TeamId + Append + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_teammobileofflineprofilemembership_TeamId + teamid + teammobileofflineprofilemembership + TeamId + + 1 + + + c8e52fca-bbb3-4316-b4de-c62ac201127e false - true + false iscustomizable - true + false - false - true - team_reconciliationentitystepinfo + true + false + team_ImportLogs None - 1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -496835,27 +547666,27 @@ false teamid team - team_reconciliationentitystepinfo + team_ImportLogs owningteam - reconciliationentitystepinfo + importlog owningteam 0 - d87ec9da-d3ba-f011-bbd3-7c1e52365f30 + b8446cca-e620-47f5-bff7-197932554f89 false - true + false iscustomizable - true + false - false + true true - team_reconciliationinfo + team_routingrule None - 1.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -496889,30 +547720,30 @@ false teamid team - team_reconciliationinfo + team_routingrule owningteam - reconciliationinfo + routingrule owningteam 0 - 4680c9da-d3ba-f011-bbd3-7c1e52365f30 + ec6731cb-2cee-e411-80d9-00155dcf6500 false - true + false iscustomizable true - false + true true - team_retentioncleanupinfo + team_channelaccessprofile None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -496943,15 +547774,15 @@ false teamid team - team_retentioncleanupinfo + team_channelaccessprofile owningteam - retentioncleanupinfo - owningteam + channelaccessprofile + team_channelaccessprofile 0 - a781c9da-d3ba-f011-bbd3-7c1e52365f30 + 1ef4f5cb-524d-f111-bec7-002248a2a8d1 false @@ -496961,9 +547792,9 @@ false true - team_retentioncleanupoperation + team_computeruseagent None - 1.0 + 1.10.3.0 OneToManyRelationship DoNotDisplay @@ -496997,15 +547828,15 @@ false teamid team - team_retentioncleanupoperation + team_computeruseagent owningteam - retentioncleanupoperation + computeruseagent owningteam 0 - 2a83c9da-d3ba-f011-bbd3-7c1e52365f30 + e6cdffcb-f1ba-f011-bbd3-7c1e52365f30 false @@ -497015,9 +547846,9 @@ false true - team_retentionconfig + team_copilotsynonyms None - 1.0.0.0 + 1.0.0.90 OneToManyRelationship DoNotDisplay @@ -497051,25 +547882,25 @@ false teamid team - team_retentionconfig + team_copilotsynonyms owningteam - retentionconfig + copilotsynonyms owningteam 0 - 9f22c2e0-d3ba-f011-bbd3-7c1e52365f30 + f04ee4cc-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - team_retentionfailuredetail + team_agenticscenario None 1.0 OneToManyRelationship @@ -497105,25 +547936,25 @@ false teamid team - team_retentionfailuredetail + team_agenticscenario owningteam - retentionfailuredetail + agenticscenario owningteam 0 - 7a23c2e0-d3ba-f011-bbd3-7c1e52365f30 + 7e51e4cc-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - team_retentionoperation + team_agentmemory None 1.0 OneToManyRelationship @@ -497159,27 +547990,27 @@ false teamid team - team_retentionoperation + team_agentmemory owningteam - retentionoperation + agentmemory owningteam 0 - 1d25c2e0-d3ba-f011-bbd3-7c1e52365f30 + dc4241cd-28a5-4491-baa1-7fda19379891 false - true + false iscustomizable - true + false - false - true - team_retentionsuccessdetail + true + false + team_userentityuisettings None - 1.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -497213,27 +548044,27 @@ false teamid team - team_retentionsuccessdetail + team_userentityuisettings owningteam - retentionsuccessdetail + userentityuisettings owningteam 0 - 087c5088-d5ba-f011-bbd3-7c1e52365f30 + 2f7797cd-c6ba-f011-bbd3-7c1e52365f30 false - true + false iscustomizable true - false + true true - team_certificatecredential + team_pdfsetting None - 9.0.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -497267,15 +548098,15 @@ false teamid team - team_certificatecredential + team_pdfsetting owningteam - certificatecredential + pdfsetting owningteam 0 - d1225142-d7ba-f011-bbd3-7c1e52365f30 + b3325dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -497285,7 +548116,7 @@ false true - team_appnotification + team_archivecleanupinfo None 1.0.0.0 OneToManyRelationship @@ -497321,25 +548152,25 @@ false teamid team - team_appnotification + team_archivecleanupinfo owningteam - appnotification + archivecleanupinfo owningteam 0 - 08221a0f-d8ba-f011-bbd3-7c1e52365f30 + 99335dce-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_mobileapp + team_archivecleanupoperation None 1.0.0.0 OneToManyRelationship @@ -497375,15 +548206,15 @@ false teamid team - team_msdyn_mobileapp + team_archivecleanupoperation owningteam - msdyn_mobileapp + archivecleanupoperation owningteam 0 - b6fb717e-daba-f011-bbd3-7c1e52365f30 + 76345dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -497393,9 +548224,9 @@ false true - team_DeletedItemReferences + team_bulkarchiveconfig None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -497429,15 +548260,15 @@ false teamid team - team_DeletedItemReferences - deletedobject - deleteditemreference - deletedobject_team + team_bulkarchiveconfig + owningteam + bulkarchiveconfig + owningteam 0 - 4cb63d9e-e0ba-f011-bbd3-7c1e52365f30 + 77355dce-d3ba-f011-bbd3-7c1e52365f30 false @@ -497447,7 +548278,7 @@ false true - team_card + team_bulkarchivefailuredetail None 1.0.0.0 OneToManyRelationship @@ -497483,27 +548314,27 @@ false teamid team - team_card + team_bulkarchivefailuredetail owningteam - card + bulkarchivefailuredetail owningteam 0 - 03e94f77-e1ba-f011-bbd3-7c1e52365f30 + fdec85cf-b51e-df11-92a7-00155d2e8601 false - true + false iscustomizable - true + false - false + true true - team_msdyn_entitylinkchatconfiguration + team_goalrollupquery None - 9.2.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -497537,30 +548368,30 @@ false teamid team - team_msdyn_entitylinkchatconfiguration + team_goalrollupquery owningteam - msdyn_entitylinkchatconfiguration + goalrollupquery owningteam 0 - cf534125-e6ba-f011-bbd3-7c1e52365f30 + 9d82e7cf-9c43-4da7-9d5d-5e4e55589f63 false - true + false iscustomizable - true + false - false - true - team_aiinsightcard + true + false + team_PostRegardings None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -497577,7 +548408,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -497591,27 +548422,27 @@ false teamid team - team_aiinsightcard - owningteam - aiinsightcard - owningteam + team_PostRegardings + regardingobjectid + postregarding + regardingobjectid_team 0 - 792d8b2b-e6ba-f011-bbd3-7c1e52365f30 + 1dcddcd2-b6ea-f011-8409-000d3adc1cd9 false true iscustomizable - true + false false true - team_aiskillconfig + team_agenttask None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -497645,27 +548476,81 @@ false teamid team - team_aiskillconfig + team_agenttask owningteam - aiskillconfig + agenttask owningteam 0 - eb669183-e7ba-f011-bbd3-7c1e52365f30 + 9fcddcd2-b6ea-f011-8409-000d3adc1cd9 + + true + + false + iscustomizable + false + + true + true + agenticscenario_taskreviewers_team + Append + 1.0.0.1 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + agenticscenario_taskreviewers_team + taskreviewers + agenticscenario + taskreviewers + + 1 + + + b27765d3-b6ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_dataworkspace + team_tdsmetadata None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -497699,27 +548584,27 @@ false teamid team - team_msdyn_dataworkspace + team_tdsmetadata owningteam - msdyn_dataworkspace + tdsmetadata owningteam 0 - d9968f89-e7ba-f011-bbd3-7c1e52365f30 + 065e54d4-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_plan + team_bulkarchiveoperation None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -497753,25 +548638,25 @@ false teamid team - team_msdyn_plan + team_bulkarchiveoperation owningteam - msdyn_plan + bulkarchiveoperation owningteam 0 - bc978f89-e7ba-f011-bbd3-7c1e52365f30 + 905f54d4-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_planartifact + team_enablearchivalrequest None 1.0 OneToManyRelationship @@ -497807,25 +548692,25 @@ false teamid team - team_msdyn_planartifact + team_enablearchivalrequest owningteam - msdyn_planartifact + enablearchivalrequest owningteam 0 - d0db1c90-e7ba-f011-bbd3-7c1e52365f30 + 0d2615d5-42bf-f011-bbd5-7ced8d470ac7 false true iscustomizable - false + true false true - team_msdyn_planattachment + team_cpr_cprrun None 1.0 OneToManyRelationship @@ -497861,25 +548746,25 @@ false teamid team - team_msdyn_planattachment + team_cpr_cprrun owningteam - msdyn_planattachment + cpr_cprrun owningteam 0 - b4a2aff4-ecba-f011-bbd3-7c1e52365f30 + 3bb9b9d5-b9ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_msdyn_richtextfile + team_environmentvariabledefinition None 1.0.0.0 OneToManyRelationship @@ -497915,15 +548800,15 @@ false teamid team - team_msdyn_richtextfile + team_environmentvariabledefinition owningteam - msdyn_richtextfile + environmentvariabledefinition owningteam 0 - 9ab78e43-edba-f011-bbd3-7c1e52365f30 + 7d77e6d5-b2ba-f011-bbd3-7c1e52365f30 false @@ -497933,9 +548818,9 @@ false true - team_msdyn_customcontrolextendedsettings + team_datalakefolder None - 1.0.0.0 + 1.0.0.11 OneToManyRelationship DoNotDisplay @@ -497969,15 +548854,15 @@ false teamid team - team_msdyn_customcontrolextendedsettings + team_datalakefolder owningteam - msdyn_customcontrolextendedsettings + datalakefolder owningteam 0 - 359576ec-edba-f011-bbd3-7c1e52365f30 + 61a7f6d8-f7ba-f011-bbd3-7c1e52365f30 false @@ -497987,9 +548872,9 @@ false true - team_msdyn_virtualtablecolumncandidate + team_ctx_subscription None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -498023,27 +548908,27 @@ false teamid team - team_msdyn_virtualtablecolumncandidate + team_ctx_subscription owningteam - msdyn_virtualtablecolumncandidate + ctx_subscription owningteam 0 - f97dcb4f-eeba-f011-bbd3-7c1e52365f30 + 277cc9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_pmanalysishistory + team_reconciliationentityinfo None - 1.2.0.13 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -498077,27 +548962,27 @@ false teamid team - team_msdyn_pmanalysishistory + team_reconciliationentityinfo owningteam - msdyn_pmanalysishistory + reconciliationentityinfo owningteam 0 - dc7ecb4f-eeba-f011-bbd3-7c1e52365f30 + a67dc9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_pmbusinessruleautomationconfig + team_reconciliationentitystepinfo None - 1.3.2.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -498131,27 +549016,27 @@ false teamid team - team_msdyn_pmbusinessruleautomationconfig + team_reconciliationentitystepinfo owningteam - msdyn_pmbusinessruleautomationconfig + reconciliationentitystepinfo owningteam 0 - 12b13b56-eeba-f011-bbd3-7c1e52365f30 + d87ec9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_pmcalendar + team_reconciliationinfo None - 1.0.0.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -498185,27 +549070,27 @@ false teamid team - team_msdyn_pmcalendar + team_reconciliationinfo owningteam - msdyn_pmcalendar + reconciliationinfo owningteam 0 - e6b13b56-eeba-f011-bbd3-7c1e52365f30 + 4680c9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_pmcalendarversion + team_retentioncleanupinfo None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -498239,27 +549124,27 @@ false teamid team - team_msdyn_pmcalendarversion + team_retentioncleanupinfo owningteam - msdyn_pmcalendarversion + retentioncleanupinfo owningteam 0 - f584965c-eeba-f011-bbd3-7c1e52365f30 + a781c9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_pminferredtask + team_retentioncleanupoperation None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -498293,25 +549178,25 @@ false teamid team - team_msdyn_pminferredtask + team_retentioncleanupoperation owningteam - msdyn_pminferredtask + retentioncleanupoperation owningteam 0 - da85965c-eeba-f011-bbd3-7c1e52365f30 + 2a83c9da-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_pmprocessextendedmetadataversion + team_retentionconfig None 1.0.0.0 OneToManyRelationship @@ -498347,135 +549232,27 @@ false teamid team - team_msdyn_pmprocessextendedmetadataversion - owningteam - msdyn_pmprocessextendedmetadataversion - owningteam - - 0 - - - 4e728063-eeba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - team_msdyn_pmprocesstemplate - None - 1.3.0.10 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - teamid - team - team_msdyn_pmprocesstemplate - owningteam - msdyn_pmprocesstemplate - owningteam - - 0 - - - 21738063-eeba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - false - - false - true - team_msdyn_pmprocessusersettings - None - 1.2.1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - teamid - team - team_msdyn_pmprocessusersettings + team_retentionconfig owningteam - msdyn_pmprocessusersettings + retentionconfig owningteam 0 - 66d4b269-eeba-f011-bbd3-7c1e52365f30 + cdca1cdb-7f47-11e0-a0f5-1cc1de634cfe false - true + false iscustomizable false - false - true - team_msdyn_pmprocessversion + true + false + OwningTeam_postfollows None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -498509,27 +549286,27 @@ false teamid team - team_msdyn_pmprocessversion + OwningTeam_postfollows owningteam - msdyn_pmprocessversion + postfollow owningteam 0 - 4cd5b269-eeba-f011-bbd3-7c1e52365f30 + 807d39dc-0130-df11-a226-00155d2a9006 false - true + false iscustomizable - false + true - false + true true - team_msdyn_pmrecording + team_sharepointsite None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -498563,27 +549340,27 @@ false teamid team - team_msdyn_pmrecording + team_sharepointsite owningteam - msdyn_pmrecording + sharepointsite owningteam 0 - 1ee10770-eeba-f011-bbd3-7c1e52365f30 + 247f18de-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_pmsimulation + team_aipluginauth None - 1.3.3.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -498617,15 +549394,15 @@ false teamid team - team_msdyn_pmsimulation + team_aipluginauth owningteam - msdyn_pmsimulation + aipluginauth owningteam 0 - 03e20770-eeba-f011-bbd3-7c1e52365f30 + 058118de-bdba-f011-bbd3-7c1e52365f30 false @@ -498635,9 +549412,9 @@ false true - team_msdyn_pmtab + team_aipluginconversationstarter None - 1.14.7.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -498671,27 +549448,27 @@ false teamid team - team_msdyn_pmtab + team_aipluginconversationstarter owningteam - msdyn_pmtab + aipluginconversationstarter owningteam 0 - 1963f176-eeba-f011-bbd3-7c1e52365f30 + 078318de-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_pmtemplate + team_aipluginconversationstartermapping None - 1.2.0.14 + 1.0 OneToManyRelationship DoNotDisplay @@ -498725,27 +549502,27 @@ false teamid team - team_msdyn_pmtemplate + team_aipluginconversationstartermapping owningteam - msdyn_pmtemplate + aipluginconversationstartermapping owningteam 0 - 0264f176-eeba-f011-bbd3-7c1e52365f30 + 896142de-8e49-421c-95ad-35e13b7d5e1c false - true + false iscustomizable false - false - true - team_msdyn_pmview + true + false + team_SyncError None - 1.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -498779,27 +549556,27 @@ false teamid team - team_msdyn_pmview + team_SyncError owningteam - msdyn_pmview + syncerror owningteam 0 - 97bb6f52-efba-f011-bbd3-7c1e52365f30 + 3cfb85de-b5ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_analysiscomponent + team_privilegecheckerrun None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -498833,27 +549610,27 @@ false teamid team - team_msdyn_analysiscomponent + team_privilegecheckerrun owningteam - msdyn_analysiscomponent + privilegecheckerrun owningteam 0 - b6bc6f52-efba-f011-bbd3-7c1e52365f30 + 0dd9e2de-244f-4192-87c7-86169ff6bff7 false - true + false iscustomizable false - false - true - team_msdyn_analysisjob + true + false + team_ImportFiles None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -498887,15 +549664,15 @@ false teamid team - team_msdyn_analysisjob + team_ImportFiles owningteam - msdyn_analysisjob + importfile owningteam 0 - 45be6f52-efba-f011-bbd3-7c1e52365f30 + 4cebf1de-f7ba-f011-bbd3-7c1e52365f30 false @@ -498905,9 +549682,9 @@ false true - team_msdyn_analysisoverride + team_ctx_invoicecollection None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -498941,27 +549718,27 @@ false teamid team - team_msdyn_analysisoverride + team_ctx_invoicecollection owningteam - msdyn_analysisoverride + ctx_invoicecollection owningteam 0 - b6bf6f52-efba-f011-bbd3-7c1e52365f30 + 9f22c2e0-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_analysisresult + team_retentionfailuredetail None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -498995,27 +549772,27 @@ false teamid team - team_msdyn_analysisresult + team_retentionfailuredetail owningteam - msdyn_analysisresult + retentionfailuredetail owningteam 0 - 43460659-efba-f011-bbd3-7c1e52365f30 + 7a23c2e0-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_analysisresultdetail + team_retentionoperation None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -499049,27 +549826,27 @@ false teamid team - team_msdyn_analysisresultdetail + team_retentionoperation owningteam - msdyn_analysisresultdetail + retentionoperation owningteam 0 - b1470659-efba-f011-bbd3-7c1e52365f30 + 1d25c2e0-d3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_solutionhealthrule + team_retentionsuccessdetail None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -499103,27 +549880,27 @@ false teamid team - team_msdyn_solutionhealthrule + team_retentionsuccessdetail owningteam - msdyn_solutionhealthrule + retentionsuccessdetail owningteam 0 - cf480659-efba-f011-bbd3-7c1e52365f30 + 4dcd36e2-b2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_solutionhealthruleargument + team_exportedexcel None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -499157,27 +549934,27 @@ false teamid team - team_msdyn_solutionhealthruleargument + team_exportedexcel owningteam - msdyn_solutionhealthruleargument + exportedexcel owningteam 0 - 3ee2da02-f0ba-f011-bbd3-7c1e52365f30 + dbce36e2-b2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_powerbidataset + team_retaineddataexcel None - 1.0.0.0 + 1.0.30.0 OneToManyRelationship DoNotDisplay @@ -499211,27 +549988,81 @@ false teamid team - team_powerbidataset + team_retaineddataexcel owningteam - powerbidataset + retaineddataexcel owningteam 0 - 1ce3da02-f0ba-f011-bbd3-7c1e52365f30 + 09eb33e3-566c-40f1-801a-b2133920243e false - true + false iscustomizable false + true + true + Team_ProcessSessions + None + 5.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 110 + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + Team_ProcessSessions + regardingobjectid + processsession + regardingobjectid_team + + 0 + + + 15f027e4-baba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + false true - team_powerbidatasetapdx + team_businessprocess None - 1.0 + 1.9.0.0 OneToManyRelationship DoNotDisplay @@ -499265,27 +550096,27 @@ false teamid team - team_powerbidatasetapdx + team_businessprocess owningteam - powerbidatasetapdx + businessprocess owningteam 0 - 12e4da02-f0ba-f011-bbd3-7c1e52365f30 + 8cf127e4-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_powerbimashupparameter + team_credential None - 1.0.0.0 + 1.6.0.0 OneToManyRelationship DoNotDisplay @@ -499319,27 +550150,27 @@ false teamid team - team_powerbimashupparameter + team_credential owningteam - powerbimashupparameter + credential owningteam 0 - dd871609-f0ba-f011-bbd3-7c1e52365f30 + 77f227e4-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_powerbireport + team_desktopflowmodule None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -499373,25 +550204,25 @@ false teamid team - team_powerbireport + team_desktopflowmodule owningteam - powerbireport + desktopflowmodule owningteam 0 - a6cdca10-f0ba-f011-bbd3-7c1e52365f30 + f94d9ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_powerbireportapdx + team_aiplugingovernance None 1.0 OneToManyRelationship @@ -499427,25 +550258,25 @@ false teamid team - team_powerbireportapdx + team_aiplugingovernance owningteam - powerbireportapdx + aiplugingovernance owningteam 0 - c093fa23-f1ba-f011-bbd3-7c1e52365f30 + c84f9ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_msdyn_fileupload + team_aiplugingovernanceext None 1.0 OneToManyRelationship @@ -499481,25 +550312,25 @@ false teamid team - team_msdyn_fileupload + team_aiplugingovernanceext owningteam - msdyn_fileupload + aiplugingovernanceext owningteam 0 - 88ecfdb8-f1ba-f011-bbd3-7c1e52365f30 + 5d519ee4-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_nlsqregistration + team_aipluginoperationresponsetemplate None 1.0 OneToManyRelationship @@ -499535,27 +550366,27 @@ false teamid team - team_nlsqregistration + team_aipluginoperationresponsetemplate owningteam - nlsqregistration + aipluginoperationresponsetemplate owningteam 0 - 25a5f9be-f1ba-f011-bbd3-7c1e52365f30 + 31885ee6-c0ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_recentlyused + team_bot None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -499589,27 +550420,27 @@ false teamid team - team_recentlyused + team_bot owningteam - recentlyused + bot owningteam 0 - 525916c5-f1ba-f011-bbd3-7c1e52365f30 + 858a5ee6-c0ba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_copilotglossaryterm + team_botcomponent None - 1.0.0.90 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -499643,15 +550474,15 @@ false teamid team - team_copilotglossaryterm + team_botcomponent owningteam - copilotglossaryterm + botcomponent owningteam 0 - e6cdffcb-f1ba-f011-bbd3-7c1e52365f30 + 2dfe9fe6-aaba-f011-bbd3-7c1e52365f30 false @@ -499661,9 +550492,9 @@ false true - team_copilotsynonyms + team_exportsolutionupload None - 1.0.0.90 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -499697,27 +550528,27 @@ false teamid team - team_copilotsynonyms + team_exportsolutionupload owningteam - copilotsynonyms + exportsolutionupload owningteam 0 - 4dfcb96a-f2ba-f011-bbd3-7c1e52365f30 + 8dedffe6-c69f-4bf0-baae-5d8116ec2015 false - true + false iscustomizable - false + true - false + true true - team_powerpagecomponent + team_queueitembase_workerid None - 1.0.2207.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -499751,27 +550582,27 @@ false teamid team - team_powerpagecomponent - owningteam - powerpagecomponent - owningteam + team_queueitembase_workerid + workerid + queueitem + workerid_team 0 - a2fdb96a-f2ba-f011-bbd3-7c1e52365f30 + 95842fe8-b2ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_powerpagesite + team_synapsedatabase None - 1.0.2207.1 + 1.0.0.39 OneToManyRelationship DoNotDisplay @@ -499805,27 +550636,27 @@ false teamid team - team_powerpagesite + team_synapsedatabase owningteam - powerpagesite + synapsedatabase owningteam 0 - 9b3fe170-f2ba-f011-bbd3-7c1e52365f30 + 358a5ce9-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_powerpagesitelanguage + team_msdyn_aievaluationconfiguration None - 1.0.2207.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -499859,27 +550690,27 @@ false teamid team - team_powerpagesitelanguage + team_msdyn_aievaluationconfiguration owningteam - powerpagesitelanguage + msdyn_aievaluationconfiguration owningteam 0 - 8d41e170-f2ba-f011-bbd3-7c1e52365f30 + 578d5ce9-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_powerpagesitepublished + team_msdyn_aievaluationrun None - 1.0.2207.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -499913,27 +550744,27 @@ false teamid team - team_powerpagesitepublished + team_msdyn_aievaluationrun owningteam - powerpagesitepublished + msdyn_aievaluationrun owningteam 0 - 5fb0d976-f2ba-f011-bbd3-7c1e52365f30 + 428f5ce9-bfba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_powerpagessourcefile + team_msdyn_aioptimization None - 1.0.2505.1 + 1.0 OneToManyRelationship DoNotDisplay @@ -499967,15 +550798,15 @@ false teamid team - team_powerpagessourcefile + team_msdyn_aioptimization owningteam - powerpagessourcefile + msdyn_aioptimization owningteam 0 - ab8c7323-f3ba-f011-bbd3-7c1e52365f30 + a4182aea-baba-f011-bbd3-7c1e52365f30 false @@ -499985,9 +550816,9 @@ false true - team_adx_invitation + team_flowcapacityassignment None - 1.0.0.0 + 1.7.0.0 OneToManyRelationship DoNotDisplay @@ -500021,15 +550852,15 @@ false teamid team - team_adx_invitation + team_flowcapacityassignment owningteam - adx_invitation + flowcapacityassignment owningteam 0 - 8d907323-f3ba-f011-bbd3-7c1e52365f30 + 76192aea-baba-f011-bbd3-7c1e52365f30 false @@ -500039,9 +550870,9 @@ false true - adx_inviteredemption_team_owningteam + team_flowcredentialapplication None - 1.0.2407.1 + 1.7.11.0 OneToManyRelationship DoNotDisplay @@ -500075,15 +550906,15 @@ false teamid team - adx_inviteredemption_team_owningteam + team_flowcredentialapplication owningteam - adx_inviteredemption - owningteam_adx_inviteredemption + flowcredentialapplication + owningteam 0 - cee1a029-f3ba-f011-bbd3-7c1e52365f30 + 561a2aea-baba-f011-bbd3-7c1e52365f30 false @@ -500093,9 +550924,9 @@ false true - adx_portalcomment_team_owningteam + team_flowevent None - 1.0.2407.1 + 1.5.13.0 OneToManyRelationship DoNotDisplay @@ -500129,15 +550960,15 @@ false teamid team - adx_portalcomment_team_owningteam + team_flowevent owningteam - adx_portalcomment - owningteam_adx_portalcomment + flowevent + owningteam 0 - 36e5a029-f3ba-f011-bbd3-7c1e52365f30 + 0e2943ea-b315-f111-8347-0022489f8311 false @@ -500147,7 +550978,7 @@ false true - team_adx_setting + team_msdyn_powerappswrapbuild None 1.0.0.0 OneToManyRelationship @@ -500183,25 +551014,25 @@ false teamid team - team_adx_setting + team_msdyn_powerappswrapbuild owningteam - adx_setting + msdyn_powerappswrapbuild owningteam 0 - fe93138d-f4ba-f011-bbd3-7c1e52365f30 + acb1c1ea-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_powerpagesscanreport + team_sideloadedaiplugin None 1.0 OneToManyRelationship @@ -500237,27 +551068,27 @@ false teamid team - team_powerpagesscanreport + team_sideloadedaiplugin owningteam - powerpagesscanreport + sideloadedaiplugin owningteam 0 - 0595138d-f4ba-f011-bbd3-7c1e52365f30 + b4b3c1ea-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_powerpagesddosalert + team_aiplugin None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -500291,15 +551122,15 @@ false teamid team - team_powerpagesddosalert + team_aiplugin owningteam - powerpagesddosalert + aiplugin owningteam 0 - d495138d-f4ba-f011-bbd3-7c1e52365f30 + 6bb5c1ea-bdba-f011-bbd3-7c1e52365f30 false @@ -500309,7 +551140,7 @@ false true - team_powerpageslog + team_aipluginexternalschema None 1.0.0.0 OneToManyRelationship @@ -500345,25 +551176,25 @@ false teamid team - team_powerpageslog + team_aipluginexternalschema owningteam - powerpageslog + aipluginexternalschema owningteam 0 - 5f96138d-f4ba-f011-bbd3-7c1e52365f30 + 1cb7c1ea-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_powerpagesmanagedidentity + team_aipluginexternalschemaproperty None 1.0.0.0 OneToManyRelationship @@ -500399,15 +551230,15 @@ false teamid team - team_powerpagesmanagedidentity + team_aipluginexternalschemaproperty owningteam - powerpagesmanagedidentity + aipluginexternalschemaproperty owningteam 0 - 5bd11393-f4ba-f011-bbd3-7c1e52365f30 + dfe656ec-c0ba-f011-bbd3-7c1e52365f30 false @@ -500417,9 +551248,9 @@ false true - team_powerpagessiteaifeedback + team_botcomponentcollection None - 1.0.0.0 + 2.2.12.13735069 OneToManyRelationship DoNotDisplay @@ -500453,15 +551284,15 @@ false teamid team - team_powerpagessiteaifeedback + team_botcomponentcollection owningteam - powerpagessiteaifeedback + botcomponentcollection owningteam 0 - e37b3379-f5ba-f011-bbd3-7c1e52365f30 + 359576ec-edba-f011-bbd3-7c1e52365f30 false @@ -500471,9 +551302,9 @@ false true - team_mspcat_catalogsubmissionfiles + team_msdyn_virtualtablecolumncandidate None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -500507,30 +551338,30 @@ false teamid team - team_mspcat_catalogsubmissionfiles + team_msdyn_virtualtablecolumncandidate owningteam - mspcat_catalogsubmissionfiles + msdyn_virtualtablecolumncandidate owningteam 0 - da7c3379-f5ba-f011-bbd3-7c1e52365f30 + f6f738ed-cbf7-e411-93a4-00219b3e9ee9 false - true + false iscustomizable true - false + true true - team_mspcat_packagestore + team_profilerule None - 1.0 + 8.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details @@ -500561,15 +551392,15 @@ false teamid team - team_mspcat_packagestore + team_profilerule owningteam - mspcat_packagestore - owningteam + channelaccessprofilerule + teamid 0 - 92436116-f6ba-f011-bbd3-7c1e52365f30 + 970f9aef-bfba-f011-bbd3-7c1e52365f30 false @@ -500579,9 +551410,9 @@ false true - team_indexedtrait + team_msdyn_aioptimizationprivatedata None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -500615,15 +551446,15 @@ false teamid team - team_indexedtrait + team_msdyn_aioptimizationprivatedata owningteam - indexedtrait + msdyn_aioptimizationprivatedata owningteam 0 - 5f99b91c-f6ba-f011-bbd3-7c1e52365f30 + 90109aef-bfba-f011-bbd3-7c1e52365f30 false @@ -500633,9 +551464,9 @@ false true - team_processorregistration + team_msdyn_aitestcase None - 1.0.0.3 + 1.0 OneToManyRelationship DoNotDisplay @@ -500669,15 +551500,15 @@ false teamid team - team_processorregistration + team_msdyn_aitestcase owningteam - processorregistration + msdyn_aitestcase owningteam 0 - 3f9ab91c-f6ba-f011-bbd3-7c1e52365f30 + c8119aef-bfba-f011-bbd3-7c1e52365f30 false @@ -500687,9 +551518,9 @@ false true - team_signal + team_msdyn_aitestcasedocument None - 1.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -500723,15 +551554,15 @@ false teamid team - team_signal + team_msdyn_aitestcasedocument owningteam - signal + msdyn_aitestcasedocument owningteam 0 - ca9ab91c-f6ba-f011-bbd3-7c1e52365f30 + 8d129aef-bfba-f011-bbd3-7c1e52365f30 false @@ -500741,9 +551572,9 @@ false true - team_signalregistration + team_msdyn_aitestcaseinput None - 1.0.0.3 + 1.0 OneToManyRelationship DoNotDisplay @@ -500777,27 +551608,27 @@ false teamid team - team_signalregistration + team_msdyn_aitestcaseinput owningteam - signalregistration + msdyn_aitestcaseinput owningteam 0 - 5f0ab922-f6ba-f011-bbd3-7c1e52365f30 + 6d6d58f0-dc30-4398-90b5-cb2210940d95 false - true + false iscustomizable - true + false - false - true - team_trait + true + false + team_actioncardusersettings None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -500831,27 +551662,27 @@ false teamid team - team_trait + team_actioncardusersettings owningteam - trait + actioncardusersettings owningteam 0 - df0ab922-f6ba-f011-bbd3-7c1e52365f30 + a1f665f0-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_traitregistration + team_flowmachine None - 1.0.0.3 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -500885,27 +551716,27 @@ false teamid team - team_traitregistration + team_flowmachine owningteam - traitregistration + flowmachine owningteam 0 - 0e6e428c-f6ba-f011-bbd3-7c1e52365f30 + c1f765f0-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_ctx_invoice + team_flowmachinegroup None - 1.0 + 1.0.0 OneToManyRelationship DoNotDisplay @@ -500939,15 +551770,15 @@ false teamid team - team_ctx_invoice + team_flowmachinegroup owningteam - ctx_invoice + flowmachinegroup owningteam 0 - 59796df7-f6ba-f011-bbd3-7c1e52365f30 + b1f865f0-baba-f011-bbd3-7c1e52365f30 false @@ -500957,9 +551788,9 @@ false true - team_ctx_transaction + team_flowmachineimage None - 1.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -500993,27 +551824,27 @@ false teamid team - team_ctx_transaction + team_flowmachineimage owningteam - ctx_transaction + flowmachineimage owningteam 0 - ad90156a-f7ba-f011-bbd3-7c1e52365f30 + 16eac3f0-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_ctx_product + team_aiplugininstance None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -501047,27 +551878,27 @@ false teamid team - team_ctx_product + team_aiplugininstance owningteam - ctx_product + aiplugininstance owningteam 0 - 61a7f6d8-f7ba-f011-bbd3-7c1e52365f30 + 03ecc3f0-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_ctx_subscription + team_aipluginoperation None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -501101,25 +551932,25 @@ false teamid team - team_ctx_subscription + team_aipluginoperation owningteam - ctx_subscription + aipluginoperation owningteam 0 - 4cebf1de-f7ba-f011-bbd3-7c1e52365f30 + f5edc3f0-bdba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_ctx_invoicecollection + team_aipluginoperationparameter None 1.0 OneToManyRelationship @@ -501155,27 +551986,27 @@ false teamid team - team_ctx_invoicecollection + team_aipluginoperationparameter owningteam - ctx_invoicecollection + aipluginoperationparameter owningteam 0 - 5c82c974-d2d4-f011-8548-000d3adc1b74 + d4b497f1-969e-4318-b86d-c00609e31726 false - true + false iscustomizable - true + false - false + true true - team_businessprocesslinkedartifact + team_annotations None - 1.9.7.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -501209,27 +552040,27 @@ false teamid team - team_businessprocesslinkedartifact + team_annotations owningteam - businessprocesslinkedartifact + annotation owningteam 0 - 10f40fa9-b6ea-f011-8409-000d3adc1cd9 + 69c6d3f3-71c0-4b49-8023-c54e28789615 false - true + false iscustomizable false - false + true true - team_agentfeeditem + team_mailboxtrackingcategory None - 1.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -501263,15 +552094,15 @@ false teamid team - team_agentfeeditem + team_mailboxtrackingcategory owningteam - agentfeeditem + mailboxtrackingcategory owningteam 0 - c354fcba-b6ea-f011-8409-000d3adc1cd9 + b4a2aff4-ecba-f011-bbd3-7c1e52365f30 false @@ -501281,9 +552112,9 @@ false true - team_agenthubgoal + team_msdyn_richtextfile None - 1.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -501317,15 +552148,15 @@ false teamid team - team_agenthubgoal + team_msdyn_richtextfile owningteam - agenthubgoal + msdyn_richtextfile owningteam 0 - d992f2c0-b6ea-f011-8409-000d3adc1cd9 + 8e5e90f5-bfba-f011-bbd3-7c1e52365f30 false @@ -501335,7 +552166,7 @@ false true - team_agenthubinsight + team_msdyn_aitestrun None 1.0 OneToManyRelationship @@ -501371,15 +552202,15 @@ false teamid team - team_agenthubinsight + team_msdyn_aitestrun owningteam - agenthubinsight + msdyn_aitestrun owningteam 0 - e16debc6-b6ea-f011-8409-000d3adc1cd9 + c95f90f5-bfba-f011-bbd3-7c1e52365f30 false @@ -501389,7 +552220,7 @@ false true - team_agenthubmetric + team_msdyn_aitestrunbatch None 1.0 OneToManyRelationship @@ -501425,27 +552256,27 @@ false teamid team - team_agenthubmetric + team_msdyn_aitestrunbatch owningteam - agenthubmetric + msdyn_aitestrunbatch owningteam 0 - f04ee4cc-b6ea-f011-8409-000d3adc1cd9 + 9d0674f6-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_agenticscenario + team_flowmachineimageversion None - 1.0 + 1.3.0.0 OneToManyRelationship DoNotDisplay @@ -501479,27 +552310,27 @@ false teamid team - team_agenticscenario + team_flowmachineimageversion owningteam - agenticscenario + flowmachineimageversion owningteam 0 - 7e51e4cc-b6ea-f011-8409-000d3adc1cd9 + 9b0774f6-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - team_agentmemory + team_flowmachinenetwork None - 1.0 + 1.4.0.0 OneToManyRelationship DoNotDisplay @@ -501533,15 +552364,15 @@ false teamid team - team_agentmemory + team_flowmachinenetwork owningteam - agentmemory + flowmachinenetwork owningteam 0 - 1dcddcd2-b6ea-f011-8409-000d3adc1cd9 + af2ef8f6-bdba-f011-bbd3-7c1e52365f30 false @@ -501551,7 +552382,7 @@ false true - team_agenttask + team_aipluginusersetting None 1.0 OneToManyRelationship @@ -501587,39 +552418,39 @@ false teamid team - team_agenttask + team_aipluginusersetting owningteam - agenttask + aipluginusersetting owningteam 0 - 9fcddcd2-b6ea-f011-8409-000d3adc1cd9 + 48166cf7-bbba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - false + true - true + false true - agenticscenario_taskreviewers_team - Append - 1.0.0.1 + team_flowaggregation + None + 1.8.45.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true - true + false 00000000-0000-0000-0000-000000000000 @@ -501641,15 +552472,15 @@ false teamid team - agenticscenario_taskreviewers_team - taskreviewers - agenticscenario - taskreviewers + team_flowaggregation + owningteam + flowaggregation + owningteam - 1 + 0 - 0d2a1b69-86f9-f011-8406-7ced8d48c998 + 8b176cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -501659,9 +552490,9 @@ false true - team_officedocument + team_flowrun None - 7.1.0.0 + 1.5.24.0 OneToManyRelationship DoNotDisplay @@ -501695,15 +552526,15 @@ false teamid team - team_officedocument + team_flowrun owningteam - officedocument + flowrun owningteam 0 - 13a56c14-2de0-f011-840b-0022489ebb55 + 59796df7-f6ba-f011-bbd3-7c1e52365f30 false @@ -501713,7 +552544,7 @@ false true - team_ctx_pyramid + team_ctx_transaction None 1.0 OneToManyRelationship @@ -501749,27 +552580,27 @@ false teamid team - team_ctx_pyramid + team_ctx_transaction owningteam - ctx_pyramid + ctx_transaction owningteam 0 - f0cc55a2-42bf-f011-bbd5-7ced8d470ac7 + 919841fa-0d2f-f111-88b5-7c1e5287d1d8 false true iscustomizable - true + false false true - team_cpr_cprconfiguration + team_agentconversationmessage None - 1.0 + 1.0.0.1 OneToManyRelationship DoNotDisplay @@ -501803,27 +552634,27 @@ false teamid team - team_cpr_cprconfiguration + team_agentconversationmessage owningteam - cpr_cprconfiguration + agentconversationmessage owningteam 0 - 03c66445-4305-f111-8408-6045bddd6baa + c04febfb-b8a3-4db7-ba31-8f7dd1f12484 false - true + false iscustomizable - true + false - false - true - team_githubappconfig + true + false + team_ImportData None - 9.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -501857,15 +552688,15 @@ false teamid team - team_githubappconfig + team_ImportData owningteam - githubappconfig + importdata owningteam 0 - 0d2615d5-42bf-f011-bbd5-7ced8d470ac7 + 5ff8f7fb-caba-f011-bbd3-7c1e52365f30 false @@ -501875,7 +552706,7 @@ false true - team_cpr_cprrun + team_msdyn_favoriteknowledgearticle None 1.0 OneToManyRelationship @@ -501911,27 +552742,27 @@ false teamid team - team_cpr_cprrun + team_msdyn_favoriteknowledgearticle owningteam - cpr_cprrun + msdyn_favoriteknowledgearticle owningteam 0 - bb4683ae-42bf-f011-bbd5-7ced8d470ac7 + 0aa1c0fd-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - team_cpr_cprsubscription + team_flowsessionbinary None - 1.0 + 1.9.28.0 OneToManyRelationship DoNotDisplay @@ -501965,15 +552796,69 @@ false teamid team - team_cpr_cprsubscription + team_flowsessionbinary owningteam - cpr_cprsubscription + flowsessionbinary owningteam 0 - 248f6396-42bf-f011-bbd5-7ced8d470ac7 + a8a2c0fd-baba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + false + + false + true + team_processstageparameter + None + 9.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + teamid + team + team_processstageparameter + owningteam + processstageparameter + owningteam + + 0 + + + 66a3c0fd-baba-f011-bbd3-7c1e52365f30 false @@ -501983,9 +552868,9 @@ false true - team_cpr_cprdata + team_savingrule None - 1.0 + 1.9.2.0 OneToManyRelationship DoNotDisplay @@ -502019,9 +552904,9 @@ false teamid team - team_cpr_cprdata + team_savingrule owningteam - cpr_cprdata + savingrule owningteam 0 @@ -502430,6 +553315,13 @@ For internal use only. 1033 + + f46ca6bb-15b3-4abb-8521-e3b46675b051 + + true + Kun til intern brug. + 1030 + 369b6212-8dc4-43b7-8c93-edd9a24f1170 @@ -502914,6 +553806,13 @@ Unique identifier of the user who created the transaction currency. 1033 + + f4e3156e-c86d-427f-bf04-71403face5df + + true + Entydigt id for den bruger, der oprettede transaktionsvalutaen. + 1030 + b37a7044-831a-4162-8a94-886e478ab92c @@ -502932,6 +553831,13 @@ Created By 1033 + + 80d93250-93a9-478f-bb2b-d09768f43aba + + true + Oprettet af + 1030 + b10eb8be-de88-4243-a045-fd90a2ee3aee @@ -503241,6 +554147,13 @@ Date and time when the transaction currency was created. 1033 + + 9f9b02d2-9c29-474b-9b25-f7e263b6a4ac + + true + Dato og klokkeslæt for oprettelse af transaktionsvalutaen. + 1030 + e9046619-2e55-46d9-81c7-5d15eb5076c4 @@ -503259,6 +554172,13 @@ Created On 1033 + + 8e150c55-b808-4a31-aa39-73cd389de271 + + true + Oprettet + 1030 + 8c0f4b5f-4cef-46fe-9d0c-c42519b9a0ef @@ -503372,6 +554292,13 @@ Unique identifier of the delegate user who created the transactioncurrency. 1033 + + ee2576fb-584c-42c9-8f16-b88368002ffc + + true + Entydigt id for den stedfortræderbruger, der oprettede transaktionsvalutaen. + 1030 + 49cb4857-667e-4b9d-9479-eefdd10a2e25 @@ -503390,6 +554317,13 @@ Created By (Delegate) 1033 + + b6242895-c1ed-4e85-8cc0-e061fef12dfc + + true + Oprettet af (stedfortræder) + 1030 + 46c622f9-aa81-4011-a7e9-16084467d751 @@ -503699,6 +554633,13 @@ Name of the transaction currency. 1033 + + ff4a1abe-a49f-47b8-9541-f85b08a15a86 + + true + Navn på transaktionsvalutaen. + 1030 + 2783533f-ed09-4e39-9e62-89c90cc61f9b @@ -503717,6 +554658,13 @@ Currency Name 1033 + + 57ce6641-b648-4ff2-8246-6deda4e586cd + + true + Valutanavn + 1030 + 7dfd6897-759f-489d-923b-736837e7def2 @@ -503829,6 +554777,13 @@ Number of decimal places that can be used for currency. 1033 + + b971d67b-ea2c-4520-a04f-6ac68799b203 + + true + Antallet af decimaler, der kan bruges til valuta. + 1030 + bb7d1654-32ac-4dda-afa1-0b4490417c4e @@ -503847,6 +554802,13 @@ Currency Precision 1033 + + a80dbbac-b8ff-48b1-81dc-fce0ff1fd773 + + true + Valutapræcision + 1030 + ed7b6102-bf54-4927-8949-8c52d7e32993 @@ -503953,6 +554915,13 @@ Symbol for the transaction currency. 1033 + + 05f0efd0-d7ac-45c1-b0a3-3515f4e4a822 + + true + Symbol for transaktionsvalutaen. + 1030 + 5e58abde-9ae8-4f20-9a5e-68a63c9153af @@ -503971,6 +554940,13 @@ Currency Symbol 1033 + + bd05832e-f7ea-4360-a1ef-e5fd25c24f86 + + true + Valutasymbol + 1030 + df62e689-5818-47aa-968d-8230123979eb @@ -504420,6 +555396,13 @@ The default image for the entity. 1033 + + a9ff5e26-47c9-4bea-b8f2-72a401d49fda + + true + Standardbilledet for objektet. + 1030 + f3619e88-633d-4d63-b499-a7dee17194ca @@ -504438,6 +555421,13 @@ Entity Image 1033 + + 0f4f4e29-802c-40c2-9dfc-adaef1b08bee + + true + Objektbillede + 1030 + 04fa94ef-c6a1-4aa4-b579-534bdc4ec94d @@ -504739,6 +555729,13 @@ For internal use only. 1033 + + 754e21f4-3bd8-4322-971d-0b9e2126132e + + true + Kun til intern brug. + 1030 + 53dc4057-07e7-4dca-8ac4-f4f6df1add0f @@ -504757,6 +555754,13 @@ Entity Image Id 1033 + + b399fb31-6073-4071-845a-ee3727336ccb + + true + Id for objektbillede + 1030 + 6be99b5f-f760-4abf-b3d7-2f55d716fae9 @@ -504858,6 +555862,13 @@ Exchange rate between the transaction currency and the base currency. 1033 + + 2d9432ab-6f1b-4fd3-8408-6dbec04a4392 + + true + Valutakurs mellem transaktionsvalutaen og grundvalutaen. + 1030 + ff1ca580-272a-4fa4-901b-77ff01d80a08 @@ -504876,6 +555887,13 @@ Exchange Rate 1033 + + 040c3916-b8f8-4396-bf77-9c32916e554c + + true + Valutakurs + 1030 + c602e25b-a2dd-45bf-8766-822f4653779f @@ -504983,6 +556001,13 @@ Unique identifier of the data import or data migration that created this record. 1033 + + d350cc0c-772b-4484-9c3b-ac471fce1e4e + + true + Entydigt id for den dataimport eller dataoverførsel, der oprettede denne post. + 1030 + 81912b91-605b-44a4-bf6a-f52ff07ba6e6 @@ -505001,6 +556026,13 @@ Import Sequence Number 1033 + + 7e3325c9-e78e-4790-a3f4-d0dc6ed3cc85 + + true + Importsekvensnummer + 1030 + 245ea427-5a2d-4672-b0b5-b9dc59e743d5 @@ -505107,6 +556139,13 @@ ISO currency code for the transaction currency. 1033 + + fb6dd68b-417e-4375-ad2d-a62810a74288 + + true + ISO-valutakode for transaktionsvalutaen. + 1030 + 2a8f062a-bb98-41b3-b442-c84c51d111df @@ -505125,6 +556164,13 @@ Currency Code 1033 + + 38c857df-84ce-46af-a154-c21596d2277c + + true + Valutakode + 1030 + b7ae485c-9049-4a0c-a654-8f679047fc84 @@ -505237,6 +556283,13 @@ Unique identifier of the user who last modified the transaction currency. 1033 + + cca9d994-0f45-43e1-8d53-0b4552256a2d + + true + Entydigt id for den bruger, der sidst ændrede transaktionsvalutaen. + 1030 + 0b41de8a-4f19-4745-880c-f61953ff7d06 @@ -505255,6 +556308,13 @@ Modified By 1033 + + f61e9036-0407-4d25-8247-0a701d510248 + + true + Ændret af + 1030 + 210f0dd2-988e-4e8f-a0fc-3c7f54a97d3e @@ -505564,6 +556624,13 @@ Date and time when the transaction currency was last modified. 1033 + + 79200881-2eec-4776-a20a-55247ee39517 + + true + Dato og klokkeslæt for sidste ændring af transaktionsvalutaen. + 1030 + dd1b19c4-eccd-480f-aed2-aa9496cd9b89 @@ -505582,6 +556649,13 @@ Modified On 1033 + + 48e24cb0-4a59-48ec-9c9a-c607879f89f8 + + true + Ændret + 1030 + a2061d07-065f-4a22-8ac2-478035e82457 @@ -505695,6 +556769,13 @@ Unique identifier of the delegate user who last modified the transactioncurrency. 1033 + + f45d1055-27f8-409b-b3b8-3dce18700864 + + true + Entydigt id for den stedfortræderbruger, der senest ændrede transaktionsvalutaen. + 1030 + bb5adf7e-cd34-41f8-b2d9-7e52df604808 @@ -505713,6 +556794,13 @@ Modified By (Delegate) 1033 + + 9344f4e4-f71c-4017-9f51-6e0ad440a51e + + true + Ændret af (stedfortræder) + 1030 + 0be2430f-dc5a-4e03-b8dd-221f6f4687ca @@ -506022,6 +557110,13 @@ Unique identifier of the organization associated with the transaction currency. 1033 + + 327b7f34-cc3e-4ba7-b480-685c88988afe + + true + Entydigt id for den organisation, der er tilknyttet transaktionsvalutaen. + 1030 + e65c4def-080a-4263-97ee-0bb77bc5cb84 @@ -506040,6 +557135,13 @@ Organization 1033 + + e283778b-4877-41af-a458-9dd2ac85f58a + + true + Organisation + 1030 + 48fddb2c-a07a-4211-b135-d1ce89ce65bc @@ -506145,6 +557247,13 @@ Date and time that the record was migrated. 1033 + + a6972ed4-b1a7-46ea-9bfa-3cf9e266c5b9 + + true + Dato og klokkeslæt for overførsel af posten. + 1030 + e7e248aa-b641-4f73-81ca-54bc9bb1358f @@ -506163,6 +557272,13 @@ Record Created On 1033 + + d0c2e640-17d5-421d-b308-1aaf119763a7 + + true + Posten blev oprettet den + 1030 + c1a50c15-3815-4b50-a505-69654f746a4f @@ -506276,6 +557392,13 @@ Status of the transaction currency. 1033 + + 7db63dca-ccd6-4e96-9ae3-03cd4a0404cd + + true + Status for transaktionsvalutaen. + 1030 + d5b590f4-da89-43af-971a-89c8201816e9 @@ -506294,6 +557417,13 @@ Status 1033 + + 8d2b00ff-1a45-4755-b8e2-59aa4c70e407 + + true + Status + 1030 + 76b4ebf3-fbfc-4ab6-9a09-fe795cedc292 @@ -506382,6 +557512,13 @@ Status of the transaction currency. 1033 + + 75d08128-5077-497f-badd-565970e0d8d3 + + true + Status for transaktionsvalutaen. + 1030 + c6279360-b4d0-4935-b39c-e1af128e9388 @@ -506400,6 +557537,13 @@ Status 1033 + + a2d96347-d5c5-42f5-957d-1c8344c4dc00 + + true + Status + 1030 + e0a9c8fe-5b43-46d8-830a-67e6c6124ba9 @@ -506442,6 +557586,13 @@ Active 1033 + + 52f156aa-967b-42d0-965b-e9089d115c31 + + true + Aktiv + 1030 + 8ee032ae-e7e0-4a24-9831-ddad4db5ba06 @@ -506477,6 +557628,13 @@ Inactive 1033 + + a76ba373-c28a-4a9c-9733-cf1e69d3bf8e + + true + Inaktiv + 1030 + ec22de52-c6b7-4401-93ba-e963d25466c6 @@ -506613,6 +557771,13 @@ Reason for the status of the transaction currency. 1033 + + c7ca25e9-5129-43e5-a202-4aeed4f82041 + + true + Årsag til transaktionsvalutaens status. + 1030 + 8a5bafb0-6713-4afe-ab15-968fd421db44 @@ -506631,6 +557796,13 @@ Status Reason 1033 + + 6d87202c-6d4e-4f2c-8696-2fd67db6abf2 + + true + Statusårsag + 1030 + eafd7e97-4ccb-4e4a-8be0-d4de611fb21a @@ -506719,6 +557891,13 @@ Reason for the status of the transaction currency. 1033 + + cb2530a8-642c-4bd6-82b2-21546dfa069e + + true + Årsag til transaktionsvalutaens status. + 1030 + de0c9983-8efc-424b-990a-ce30df30accf @@ -506737,6 +557916,13 @@ Status Reason 1033 + + dfe39606-36b1-4507-9312-72d58ed9035f + + true + Statusårsag + 1030 + d6d5af03-7d2f-413e-ae7c-c2ac5a117f15 @@ -506779,6 +557965,13 @@ Active 1033 + + d24e410b-15c2-4f20-9aab-4330ccc5d094 + + true + Aktiv + 1030 + 5dbf3b62-7ca0-4411-8d11-5234a5ccf8b8 @@ -506814,6 +558007,13 @@ Inactive 1033 + + 10329f54-f133-436c-9bd1-aefdcbb311c3 + + true + Inaktiv + 1030 + af0ebeb8-47ac-4c8a-967e-f93f5965521b @@ -506950,6 +558150,13 @@ Unique identifier of the transaction currency. 1033 + + cf81b3f6-0c22-479b-8af3-926d264d88f2 + + true + Entydigt id for transaktionsvalutaen. + 1030 + 35a0296f-0341-457c-90af-bb4339284bd6 @@ -506968,6 +558175,13 @@ Transaction Currency 1033 + + ee67c9d1-bbf8-4746-99af-089555657026 + + true + Transaktionsvaluta + 1030 + 36e4c0a6-f6a6-4ea5-b889-870b5f48160a @@ -507069,6 +558283,13 @@ For internal use only. 1033 + + f0a3ef18-ca94-48f6-9b41-116135836377 + + true + Kun til intern brug. + 1030 + 5b5ca207-eb81-4a0c-897b-0d14006ea662 @@ -507087,6 +558308,13 @@ UniqueDscId 1033 + + a6007540-fc38-494f-aded-857b47193cfe + + true + UniqueDscId + 1030 + 9dbc6276-3f1b-4f75-80a1-20d9c1e90f55 @@ -507188,6 +558416,13 @@ Version number of the transaction currency. 1033 + + 713360be-19d0-45c8-84bf-e8adbf30e5af + + true + Versionsnummeret for transaktionsvalutaen. + 1030 + f99a0b99-0df5-48cc-aecf-5ce6f8348607 @@ -507206,6 +558441,13 @@ Version Number 1033 + + 88631aaf-2953-4058-ae91-b98fad3b1425 + + true + Versionsnummer + 1030 + bd17addb-1833-4264-a848-318839b5ef58 @@ -507360,6 +558602,13 @@ Currency in which a financial transaction is carried out. 1033 + + 3ca08334-00d6-453f-8004-626a0edc48cf + + true + Valuta, som en finansiel transaktion udføres i. + 1030 + 29f606d6-ee18-414a-a659-e6f8d04979fc @@ -507378,6 +558627,13 @@ Currencies 1033 + + 27954e2b-7b94-42a5-a7b6-2f9e16907915 + + true + Valutaer + 1030 + 52ef5fbd-ea04-4a3d-91df-0680549bb945 @@ -507396,6 +558652,13 @@ Currency 1033 + + 4204beff-27be-4122-8cb2-c122dc1479d7 + + true + Valuta + 1030 + d4578591-b916-45fa-988e-a4f48bb8af2d @@ -507500,6 +558763,60 @@ transactioncurrency + + a7c9a40b-4ccd-41bf-9385-14fcc3afc029 + + false + + false + iscustomizable + false + + true + false + lk_transactioncurrency_entityimage + None + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + imagedescriptorid + imagedescriptor + lk_transactioncurrency_entityimage + entityimageid + transactioncurrency + entityimageid_imagedescriptor + + 0 + 8b1ebc3b-ef95-4f76-ad59-fe72f6854266 @@ -507554,6 +558871,168 @@ 0 + + d9e1567f-c265-46b5-90ea-5c9506a510bb + + false + + false + iscustomizable + false + + true + false + lk_transactioncurrency_createdonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_transactioncurrency_createdonbehalfby + createdonbehalfby + transactioncurrency + createdonbehalfby + + 0 + + + 18dd7ebf-bb35-4486-b2dc-e000680ddbbc + + false + + false + iscustomizable + false + + true + false + organization_transactioncurrencies + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + organizationid + organization + organization_transactioncurrencies + organizationid + transactioncurrency + organizationid + + 0 + + + abd54ad9-63ee-4817-89b0-f9f566c04d54 + + false + + false + iscustomizable + false + + true + true + lk_transactioncurrency_modifiedonbehalfby + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + systemuserid + systemuser + lk_transactioncurrency_modifiedonbehalfby + modifiedonbehalfby + transactioncurrency + modifiedonbehalfby + + 0 + e35b62df-cd7a-4c46-bef3-b6a50107e5db @@ -507599,17 +559078,129 @@ false false - systemuserid - systemuser - lk_transactioncurrencybase_modifiedby - modifiedby - transactioncurrency - modifiedby + systemuserid + systemuser + lk_transactioncurrencybase_modifiedby + modifiedby + transactioncurrency + modifiedby + + 0 + + + 2026-04-10T03:45:06.6729984 + 9105 + + + 2ea49602-30e5-4176-96e0-dad68b9255f4 + + false + + false + iscustomizable + false + + true + true + transactioncurrency_newprocess + None + 8.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + transactioncurrencyid + transactioncurrency + transactioncurrency_newprocess + transactioncurrencyid + newprocess + transactioncurrencyid + + 0 + + + 287cbb05-6f8b-4049-8e47-5c10183a4da4 + + false + + false + iscustomizable + false + + true + true + transactioncurrency_expiredprocess + None + 8.2.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + transactioncurrencyid + transactioncurrency + transactioncurrency_expiredprocess + transactioncurrencyid + expiredprocess + transactioncurrencyid 0 - a7c9a40b-4ccd-41bf-9385-14fcc3afc029 + 1da39406-7d18-4155-8458-ca0d097dea03 false @@ -507618,10 +559209,10 @@ false true - false - lk_transactioncurrency_entityimage + true + TransactionCurrency_Appointment None - 6.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -507638,6 +559229,60 @@ 00000000-0000-0000-0000-000000000000 + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + transactioncurrencyid + transactioncurrency + TransactionCurrency_Appointment + transactioncurrencyid + appointment + transactioncurrencyid_appointment + + 0 + + + 7c560f07-39f9-4382-8a6c-252c347804c8 + + false + + false + iscustomizable + false + + true + true + TransactionCurrency_ProcessSessions + None + 5.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 110 + true + + false + + + 00000000-0000-0000-0000-000000000000 + NoCascade NoCascade @@ -507653,17 +559298,71 @@ false false - imagedescriptorid - imagedescriptor - lk_transactioncurrency_entityimage - entityimageid - transactioncurrency - entityimageid_imagedescriptor + transactioncurrencyid + transactioncurrency + TransactionCurrency_ProcessSessions + regardingobjectid + processsession + regardingobjectid_transactioncurrency 0 - abd54ad9-63ee-4817-89b0-f9f566c04d54 + ff2d1812-25c0-f011-bbd3-7c1e52362bef + + false + + true + iscustomizable + true + + false + true + TransactionCurrency_ctx_Transaction + None + 1.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + Restrict + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + transactioncurrencyid + transactioncurrency + TransactionCurrency_ctx_Transaction + transactioncurrencyid + ctx_transaction + transactioncurrencyid + + 0 + + + 20609d12-e5c9-4a35-b668-c3988d84bb1f false @@ -507673,7 +559372,7 @@ true true - lk_transactioncurrency_modifiedonbehalfby + TransactionCurrency_Queue None 5.0.0.0 OneToManyRelationship @@ -507695,7 +559394,7 @@ NoCascade NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -507707,17 +559406,17 @@ false false - systemuserid - systemuser - lk_transactioncurrency_modifiedonbehalfby - modifiedonbehalfby - transactioncurrency - modifiedonbehalfby + transactioncurrencyid + transactioncurrency + TransactionCurrency_Queue + transactioncurrencyid + queue + transactioncurrencyid 0 - 18dd7ebf-bb35-4486-b2dc-e000680ddbbc + ea9beb12-eecf-4bfd-90fd-5191bdb0fc45 false @@ -507726,10 +559425,10 @@ false true - false - organization_transactioncurrencies + true + transactioncurrency_knowledgearticleviews None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -507749,7 +559448,7 @@ NoCascade NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -507761,17 +559460,17 @@ false false - organizationid - organization - organization_transactioncurrencies - organizationid - transactioncurrency - organizationid + transactioncurrencyid + transactioncurrency + transactioncurrency_knowledgearticleviews + transactioncurrencyid + knowledgearticleviews + transactioncurrencyid 0 - d9e1567f-c265-46b5-90ea-5c9506a510bb + 72d78d17-c940-4bc6-b812-c3db612e3cc5 false @@ -507780,10 +559479,10 @@ false true - false - lk_transactioncurrency_createdonbehalfby + true + transactioncurrency_SocialProfile None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -507803,7 +559502,7 @@ NoCascade NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -507815,19 +559514,15 @@ false false - systemuserid - systemuser - lk_transactioncurrency_createdonbehalfby - createdonbehalfby - transactioncurrency - createdonbehalfby + transactioncurrencyid + transactioncurrency + transactioncurrency_SocialProfile + transactioncurrencyid + socialprofile + transactioncurrencyid 0 - - 2025-11-06T08:28:12.6029952 - 9105 - f1092e21-f213-df11-a16e-00155d7aa40d @@ -507883,7 +559578,7 @@ 0 - e79d2731-1f18-4335-95b3-d4a88fce2e48 + 5c2c0222-101a-4f92-a53a-649d6328740a false @@ -507893,7 +559588,7 @@ true true - TransactionCurrency_SharePointSite + basecurrency_organization None 5.0.0.0 OneToManyRelationship @@ -507929,27 +559624,27 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_SharePointSite - transactioncurrencyid - sharepointsite - transactioncurrencyid + basecurrency_organization + basecurrencyid + organization + basecurrencyid 0 - 30445eef-c666-470a-84fa-a875965917ae + 82907323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - TransactionCurrency_UntrackedEmail + adx_inviteredemption_transactioncurrency_transactioncurrencyid None - 8.2.0.0 + 1.0.2407.1 OneToManyRelationship DoNotDisplay @@ -507983,15 +559678,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_UntrackedEmail + adx_inviteredemption_transactioncurrency_transactioncurrencyid transactioncurrencyid - untrackedemail - transactioncurrencyid_untrackedmail + adx_inviteredemption + transactioncurrencyid_adx_inviteredemption 0 - f68293e0-bb5f-4b29-86c2-de7f343c3735 + 1742bd26-9b6b-4100-becf-4a5ea2f0d819 false @@ -508001,7 +559696,7 @@ true true - TransactionCurrency_QueueItem + transactioncurrency_account None 5.0.0.0 OneToManyRelationship @@ -508037,27 +559732,27 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_QueueItem + transactioncurrency_account transactioncurrencyid - queueitem + account transactioncurrencyid 0 - ba360dbd-cfd2-4923-ad32-5ed112050b65 + c3e1a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - transactioncurrency_actioncard + adx_portalcomment_transactioncurrency_transactioncurrencyid None - 8.2.0.0 + 1.0.2407.1 OneToManyRelationship DoNotDisplay @@ -508091,15 +559786,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_actioncard + adx_portalcomment_transactioncurrency_transactioncurrencyid transactioncurrencyid - actioncard - transactioncurrencyid + adx_portalcomment + transactioncurrencyid_adx_portalcomment 0 - 134bd3bd-7f9b-447a-b988-f6db01f36253 + 9aa8a52c-37f4-4d6d-b627-5b8a3b25751b false @@ -508109,9 +559804,9 @@ true true - TransactionCurrency_officegraphdocument + transactioncurrency_position None - 8.0.0.0 + 7.0.0.0 OneToManyRelationship DoNotDisplay @@ -508145,15 +559840,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_officegraphdocument + transactioncurrency_position transactioncurrencyid - officegraphdocument + position transactioncurrencyid 0 - a2fc90b9-5be4-4a41-9acb-50abd1be6491 + 06a5e82c-b9f0-440b-93e2-0f321c9384ed false @@ -508163,9 +559858,9 @@ true true - TransactionCurrency_KnowledgeBaseRecord + TransactionCurrency_Connection None - 7.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -508199,15 +559894,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_KnowledgeBaseRecord + TransactionCurrency_Connection transactioncurrencyid - knowledgebaserecord + connection transactioncurrencyid 0 - bbd11432-2edb-4ecd-af02-cd69980ca990 + 648d242d-45e6-4262-932e-8ae514f065c2 false @@ -508217,9 +559912,9 @@ true true - TransactionCurrency_SharePointDocument + TransactionCurrency_SimilarityRule None - 6.1.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -508231,8 +559926,8 @@ true - true - navSPDocuments + false + 00000000-0000-0000-0000-000000000000 @@ -508253,15 +559948,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_SharePointDocument + TransactionCurrency_SimilarityRule transactioncurrencyid - sharepointdocument + similarityrule transactioncurrencyid 0 - c9edc871-a2c5-4870-ad95-a824595df06b + 953a862e-0201-4eb0-aed0-963496987ae9 false @@ -508271,9 +559966,9 @@ true true - TransactionCurrency_delveactionhub + TransactionCurrency_RecurringAppointmentMaster None - 8.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -508307,15 +560002,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_delveactionhub + TransactionCurrency_RecurringAppointmentMaster transactioncurrencyid - delveactionhub - TransactionCurrency_delveactionhub + recurringappointmentmaster + transactioncurrencyid_recurringappointmentmaster 0 - 62f7e1f9-1de5-4276-aabf-c985b83ea529 + 9e548a2f-4200-42ca-b3e5-1b4d7543f60d false @@ -508324,10 +560019,10 @@ false true - true - TransactionCurrency_ActionCardUserState + false + TransactionCurrency_DuplicateMatchingRecord None - 8.2.0.0 + 7.0.0.0 OneToManyRelationship DoNotDisplay @@ -508347,7 +560042,7 @@ NoCascade NoCascade - Restrict + Cascade NoCascade NoCascade NoCascade @@ -508361,15 +560056,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_ActionCardUserState - transactioncurrencyid - actioncarduserstate - transactioncurrencyid + TransactionCurrency_DuplicateMatchingRecord + duplicaterecordid + duplicaterecord + duplicaterecordid_transactioncurrency 0 - 79259a79-a88f-4d1b-bde8-d8475aa99941 + e79d2731-1f18-4335-95b3-d4a88fce2e48 false @@ -508379,7 +560074,7 @@ true true - TransactionCurrency_SharePointDocumentLocation + TransactionCurrency_SharePointSite None 5.0.0.0 OneToManyRelationship @@ -508415,15 +560110,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_SharePointDocumentLocation + TransactionCurrency_SharePointSite transactioncurrencyid - sharepointdocumentlocation + sharepointsite transactioncurrencyid 0 - a60cef48-42a0-48f8-876c-d8e42b023533 + bbd11432-2edb-4ecd-af02-cd69980ca990 false @@ -508433,7 +560128,7 @@ true true - TransactionCurrency_SLAItem + TransactionCurrency_SharePointDocument None 6.1.0.0 OneToManyRelationship @@ -508447,8 +560142,8 @@ true - false - + true + navSPDocuments 00000000-0000-0000-0000-000000000000 @@ -508469,15 +560164,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_SLAItem + TransactionCurrency_SharePointDocument transactioncurrencyid - slaitem + sharepointdocument transactioncurrencyid 0 - 287cbb05-6f8b-4049-8e47-5c10183a4da4 + 40fe2433-c6b3-478c-8ed1-02a7f3cabcd2 false @@ -508487,9 +560182,9 @@ true true - transactioncurrency_expiredprocess + TransactionCurrency_ChannelAccessProfile None - 8.2.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -508509,7 +560204,7 @@ NoCascade NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -508523,15 +560218,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_expiredprocess + transactioncurrency_channelaccessprofile transactioncurrencyid - expiredprocess - transactioncurrencyid + channelaccessprofile + transactioncurrency_channelaccessprofile 0 - 9524f1b0-52c6-48ec-851c-8485e7b33a40 + 425df536-84c9-41aa-848a-dd121c8790e2 false @@ -508541,9 +560236,9 @@ true true - TransactionCurrency_externalpartyitem + TransactionCurrency_KbArticle None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -508577,15 +560272,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_externalpartyitem + TransactionCurrency_KbArticle transactioncurrencyid - externalpartyitem - TransactionCurrencyId + kbarticle + transactioncurrencyid 0 - 9097ec83-cd72-4226-b576-63b89561426e + ff4a8538-a4f7-4daf-a4f6-b8933737d992 false @@ -508595,9 +560290,9 @@ true true - TransactionCurrency_profileruleitem + TransactionCurrency_suggestioncardtemplate None - 8.0.0.0 + 9.0.0.0 OneToManyRelationship DoNotDisplay @@ -508631,15 +560326,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_profileruleitem + transactioncurrency_suggestioncardtemplate transactioncurrencyid - channelaccessprofileruleitem - TransactionCurrencyId + suggestioncardtemplate + transactioncurrency_suggestioncardtemplate 0 - 7c560f07-39f9-4382-8a6c-252c347804c8 + 5c4d603b-93f0-4e48-b0c2-7bb5936ba348 false @@ -508649,18 +560344,18 @@ true true - TransactionCurrency_ProcessSessions + transactioncurrency_feedback None - 5.0.0.0 + 8.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 110 + true false @@ -508671,7 +560366,7 @@ NoCascade NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -508685,15 +560380,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_ProcessSessions - regardingobjectid - processsession - regardingobjectid_transactioncurrency + transactioncurrency_feedback + transactioncurrencyid + feedback + transactioncurrencyid 0 - 9a12b0ef-ee3a-4cd6-8c74-2c42f6c10aef + 8457043c-86eb-4359-ae14-275faa1aa297 false @@ -508703,9 +560398,9 @@ true true - TransactionCurrency_profilerule + TransactionCurrency_PhoneCall None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -508739,27 +560434,27 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_profilerule + TransactionCurrency_PhoneCall transactioncurrencyid - channelaccessprofilerule - transactioncurrencyid + phonecall + transactioncurrencyid_phonecall 0 - e69952da-82e4-4b0b-a3b4-fa8a9fb348f3 + 8e0f1943-31f7-434e-99b8-09307c66c46b false false iscustomizable - true + false true - true - TransactionCurrency_SyncErrors - Append - 8.1.0.0 + false + TransactionCurrency_DuplicateBaseRecord + None + 7.0.0.0 OneToManyRelationship DoNotDisplay @@ -508778,12 +560473,12 @@ NoCascade - Cascade + NoCascade Cascade - Cascade - Cascade - Cascade - Cascade + NoCascade + NoCascade + NoCascade + NoCascade NoCascade @@ -508793,15 +560488,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_SyncErrors - regardingobjectid - syncerror - regardingobjectid_transactioncurrency_syncerror + TransactionCurrency_DuplicateBaseRecord + baserecordid + duplicaterecord + baserecordid_transactioncurrency - 1 + 0 - ab665dc9-d8b2-4968-907c-2da3f9fc208e + 1fd5e743-0ba5-4e8c-8b09-957f1bfc8315 false @@ -508811,7 +560506,7 @@ true true - transactioncurrency_socialactivity + TransactionCurrency_SLA None 6.1.0.0 OneToManyRelationship @@ -508847,15 +560542,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_socialactivity + TransactionCurrency_SLA transactioncurrencyid - socialactivity - transactioncurrencyid_socialactivity + sla + transactioncurrencyid 0 - 27d57ef1-3665-43c1-8768-30355592303f + a60cef48-42a0-48f8-876c-d8e42b023533 false @@ -508865,7 +560560,61 @@ true true - TransactionCurrency_MailMergeTemplate + TransactionCurrency_SLAItem + None + 6.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + transactioncurrencyid + transactioncurrency + TransactionCurrency_SLAItem + transactioncurrencyid + slaitem + transactioncurrencyid + + 0 + + + ab53ac4b-8e23-4d82-b903-481a54c18e13 + + false + + false + iscustomizable + false + + true + true + transactioncurrency_fixedmonthlyfiscalcalendar None 5.0.0.0 OneToManyRelationship @@ -508901,9 +560650,9 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_MailMergeTemplate + transactioncurrency_fixedmonthlyfiscalcalendar transactioncurrencyid - mailmergetemplate + fixedmonthlyfiscalcalendar transactioncurrencyid 0 @@ -508963,7 +560712,7 @@ 0 - ab53ac4b-8e23-4d82-b903-481a54c18e13 + 31da5d53-fefc-480f-bdb4-899791db797e false @@ -508973,9 +560722,9 @@ true true - transactioncurrency_fixedmonthlyfiscalcalendar + TransactionCurrency_ExternalParty None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -509009,15 +560758,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_fixedmonthlyfiscalcalendar + transactioncurrency_externalparty transactioncurrencyid - fixedmonthlyfiscalcalendar - transactioncurrencyid + externalparty + transactioncurrency_externalparty_externalparty 0 - f58d9c8a-a354-4bf7-b1ff-e1cc209b67e4 + e3a4495d-7888-4092-9e2b-f5747a66baba false @@ -509027,9 +560776,9 @@ true true - transactioncurrency_semiannualfiscalcalendar + TransactionCurrency_slakpiinstance None - 5.0.0.0 + 7.0.0.0 OneToManyRelationship DoNotDisplay @@ -509049,7 +560798,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -509063,123 +560812,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_semiannualfiscalcalendar + TransactionCurrency_slakpiinstance transactioncurrencyid - semiannualfiscalcalendar + slakpiinstance transactioncurrencyid 0 - 8457043c-86eb-4359-ae14-275faa1aa297 - - false - - false - iscustomizable - false - - true - true - TransactionCurrency_PhoneCall - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - transactioncurrencyid - transactioncurrency - TransactionCurrency_PhoneCall - transactioncurrencyid - phonecall - transactioncurrencyid_phonecall - - 0 - - - cb536673-74b5-4e3a-91bc-552ec368911c - - false - - false - iscustomizable - false - - true - true - TransactionCurrency_Fax - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - transactioncurrencyid - transactioncurrency - TransactionCurrency_Fax - transactioncurrencyid - fax - transactioncurrencyid_fax - - 0 - - - 55536688-bb9e-4a0d-ad89-e42f50e4e826 + 799bf85d-eda8-48e2-8daf-90761b89316e false @@ -509189,7 +560830,7 @@ true true - transactioncurrency_usersettings + TransactionCurrency_Team None 5.0.0.0 OneToManyRelationship @@ -509225,69 +560866,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_usersettings + TransactionCurrency_Team transactioncurrencyid - usersettings + team transactioncurrencyid 0 - e34971c9-f8bb-4b01-bfe8-bdce696e691d - - false - - false - iscustomizable - false - - true - false - userentityinstancedata_transactioncurrency - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - transactioncurrencyid - transactioncurrency - userentityinstancedata_transactioncurrency - objectid - userentityinstancedata - objectid_transactioncurrency - - 0 - - - 43c68cd7-b0f0-41e2-8304-318bb4068377 + cb25a865-3406-43a2-8193-4d1e8097b1e7 false @@ -509297,7 +560884,7 @@ true true - TransactionCurrency_ActivityPointer + transactioncurrency_quarterlyfiscalcalendar None 5.0.0.0 OneToManyRelationship @@ -509333,9 +560920,9 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_ActivityPointer + transactioncurrency_quarterlyfiscalcalendar transactioncurrencyid - activitypointer + quarterlyfiscalcalendar transactioncurrencyid 0 @@ -509395,7 +560982,7 @@ 0 - 5a54e686-a23e-4e54-83dc-d267f4f6f655 + 0fbfe967-b922-4dae-87b4-df2820a7d515 false @@ -509405,9 +560992,9 @@ true true - TransactionCurrency_ConvertRule + TransactionCurrency_ReportCategory None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -509441,15 +561028,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_ConvertRule + TransactionCurrency_ReportCategory transactioncurrencyid - convertrule + reportcategory transactioncurrencyid 0 - 9aa8a52c-37f4-4d6d-b627-5b8a3b25751b + 4806b96f-ded7-4906-8f10-ff4e6efc18a6 false @@ -509459,9 +561046,9 @@ true true - transactioncurrency_position + TransactionCurrency_InteractionForEmail None - 7.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -509495,15 +561082,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_position + TransactionCurrency_InteractionForEmail transactioncurrencyid - position + interactionforemail transactioncurrencyid 0 - 0ed94ca8-3669-4f78-af42-646467ab3550 + c9edc871-a2c5-4870-ad95-a824595df06b false @@ -509513,9 +561100,9 @@ true true - TransactionCurrency_Task + TransactionCurrency_delveactionhub None - 5.0.0.0 + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -509549,15 +561136,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_Task + TransactionCurrency_delveactionhub transactioncurrencyid - task - transactioncurrencyid_task + delveactionhub + TransactionCurrency_delveactionhub 0 - 1fd5e743-0ba5-4e8c-8b09-957f1bfc8315 + cb536673-74b5-4e3a-91bc-552ec368911c false @@ -509567,9 +561154,9 @@ true true - TransactionCurrency_SLA + TransactionCurrency_Fax None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -509603,15 +561190,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_SLA + TransactionCurrency_Fax transactioncurrencyid - sla - transactioncurrencyid + fax + transactioncurrencyid_fax 0 - 5c2c0222-101a-4f92-a53a-649d6328740a + 231ba873-6672-4f42-8ff6-24ee700dc189 false @@ -509621,7 +561208,7 @@ true true - basecurrency_organization + transactioncurrency_annualfiscalcalendar None 5.0.0.0 OneToManyRelationship @@ -509657,10 +561244,10 @@ false transactioncurrencyid transactioncurrency - basecurrency_organization - basecurrencyid - organization - basecurrencyid + transactioncurrency_annualfiscalcalendar + transactioncurrencyid + annualfiscalcalendar + transactioncurrencyid 0 @@ -509719,7 +561306,7 @@ 0 - 80e97482-c27e-47b5-8ba5-66deb4a22590 + 79259a79-a88f-4d1b-bde8-d8475aa99941 false @@ -509729,9 +561316,9 @@ true true - transactioncurrency_convertruleitem + TransactionCurrency_SharePointDocumentLocation None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -509765,15 +561352,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_convertruleitem + TransactionCurrency_SharePointDocumentLocation transactioncurrencyid - convertruleitem + sharepointdocumentlocation transactioncurrencyid 0 - 854c66ac-01a8-4c77-bb09-db1590713382 + fe99de80-d999-4419-a094-37918ee9a7ac false @@ -509783,9 +561370,9 @@ true true - TransactionCurrency_routingruleitem + TransactionCurrency_SystemUser None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -509819,15 +561406,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_routingruleitem + TransactionCurrency_SystemUser transactioncurrencyid - routingruleitem + systemuser transactioncurrencyid 0 - 3d424784-9a00-4032-827e-c98f812fe1af + 80e97482-c27e-47b5-8ba5-66deb4a22590 false @@ -509837,9 +561424,9 @@ true true - transactioncurrency_cardtype + transactioncurrency_convertruleitem None - 8.2.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -509859,7 +561446,7 @@ NoCascade NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -509873,15 +561460,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_cardtype + transactioncurrency_convertruleitem transactioncurrencyid - cardtype + convertruleitem transactioncurrencyid 0 - fe99de80-d999-4419-a094-37918ee9a7ac + 9097ec83-cd72-4226-b576-63b89561426e false @@ -509891,9 +561478,9 @@ true true - TransactionCurrency_SystemUser + TransactionCurrency_profileruleitem None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -509927,15 +561514,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_SystemUser + TransactionCurrency_profileruleitem transactioncurrencyid - systemuser - transactioncurrencyid + channelaccessprofileruleitem + TransactionCurrencyId 0 - 799bf85d-eda8-48e2-8daf-90761b89316e + 3d424784-9a00-4032-827e-c98f812fe1af false @@ -509945,9 +561532,9 @@ true true - TransactionCurrency_Team + transactioncurrency_cardtype None - 5.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -509967,7 +561554,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -509981,27 +561568,27 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_Team + transactioncurrency_cardtype transactioncurrencyid - team + cardtype transactioncurrencyid 0 - 4a0c9097-e338-424d-b0e9-07ce3cfd92ba + 42fd6d84-daba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - TransactionCurrency_Email + transactioncurrency_DeletedItemReferences None - 5.0.0.0 + 1.0 OneToManyRelationship DoNotDisplay @@ -510021,7 +561608,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -510035,27 +561622,27 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_Email - transactioncurrencyid - email - transactioncurrencyid_email + transactioncurrency_DeletedItemReferences + deletedobject + deleteditemreference + deletedobject_transactioncurrency 0 - 1378ffec-9992-4a88-9d67-0a65a3eb65cc + 3c0b3e85-c8ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - TransactionCurrency_BusinessUnit + chat_transactioncurrency_transactioncurrencyid None - 5.0.0.0 + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -510089,15 +561676,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_BusinessUnit + chat_transactioncurrency_transactioncurrencyid transactioncurrencyid - businessunit - transactioncurrencyid + chat + transactioncurrencyid_chat 0 - 72d78d17-c940-4bc6-b812-c3db612e3cc5 + 5a54e686-a23e-4e54-83dc-d267f4f6f655 false @@ -510107,7 +561694,7 @@ true true - transactioncurrency_SocialProfile + TransactionCurrency_ConvertRule None 6.1.0.0 OneToManyRelationship @@ -510143,15 +561730,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_SocialProfile + TransactionCurrency_ConvertRule transactioncurrencyid - socialprofile + convertrule transactioncurrencyid 0 - 20609d12-e5c9-4a35-b668-c3988d84bb1f + 55536688-bb9e-4a0d-ad89-e42f50e4e826 false @@ -510161,7 +561748,7 @@ true true - TransactionCurrency_Queue + transactioncurrency_usersettings None 5.0.0.0 OneToManyRelationship @@ -510197,69 +561784,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_Queue + transactioncurrency_usersettings transactioncurrencyid - queue + usersettings transactioncurrencyid 0 - 9e548a2f-4200-42ca-b3e5-1b4d7543f60d - - false - - false - iscustomizable - false - - true - false - TransactionCurrency_DuplicateMatchingRecord - None - 7.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Cascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - transactioncurrencyid - transactioncurrency - TransactionCurrency_DuplicateMatchingRecord - duplicaterecordid - duplicaterecord - duplicaterecordid_transactioncurrency - - 0 - - - 1da39406-7d18-4155-8458-ca0d097dea03 + f58d9c8a-a354-4bf7-b1ff-e1cc209b67e4 false @@ -510269,7 +561802,7 @@ true true - TransactionCurrency_Appointment + transactioncurrency_semiannualfiscalcalendar None 5.0.0.0 OneToManyRelationship @@ -510305,15 +561838,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_Appointment + transactioncurrency_semiannualfiscalcalendar transactioncurrencyid - appointment - transactioncurrencyid_appointment + semiannualfiscalcalendar + transactioncurrencyid 0 - 648d242d-45e6-4262-932e-8ae514f065c2 + 11a9948c-0568-43eb-95ed-542c9c17abc4 false @@ -510323,9 +561856,9 @@ true true - TransactionCurrency_SimilarityRule + TransactionCurrency_CustomerAddress None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -510359,15 +561892,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_SimilarityRule + TransactionCurrency_CustomerAddress transactioncurrencyid - similarityrule + customeraddress transactioncurrencyid 0 - cb25a865-3406-43a2-8193-4d1e8097b1e7 + 12905f92-5ff8-4878-a29e-9a243adbf97e false @@ -510377,9 +561910,9 @@ true true - transactioncurrency_quarterlyfiscalcalendar + TransactionCurrency_knowledgearticle None - 5.0.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -510413,15 +561946,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_quarterlyfiscalcalendar + transactioncurrency_knowledgearticle transactioncurrencyid - quarterlyfiscalcalendar + knowledgearticle transactioncurrencyid 0 - 425df536-84c9-41aa-848a-dd121c8790e2 + 461e7492-20d1-45bc-a6e2-6026ca244940 false @@ -510431,9 +561964,9 @@ true true - TransactionCurrency_KbArticle + TransactionCurrency_Routingrule None - 5.0.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -510467,9 +562000,9 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_KbArticle + TransactionCurrency_Routingrule transactioncurrencyid - kbarticle + routingrule transactioncurrencyid 0 @@ -510529,61 +562062,7 @@ 0 - 11a9948c-0568-43eb-95ed-542c9c17abc4 - - false - - false - iscustomizable - false - - true - true - TransactionCurrency_CustomerAddress - None - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - transactioncurrencyid - transactioncurrency - TransactionCurrency_CustomerAddress - transactioncurrencyid - customeraddress - transactioncurrencyid - - 0 - - - 231ba873-6672-4f42-8ff6-24ee700dc189 + 4a0c9097-e338-424d-b0e9-07ce3cfd92ba false @@ -510593,7 +562072,7 @@ true true - transactioncurrency_annualfiscalcalendar + TransactionCurrency_Email None 5.0.0.0 OneToManyRelationship @@ -510629,15 +562108,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_annualfiscalcalendar + TransactionCurrency_Email transactioncurrencyid - annualfiscalcalendar - transactioncurrencyid + email + transactioncurrencyid_email 0 - 06a5e82c-b9f0-440b-93e2-0f321c9384ed + 14d24d9a-d926-41c4-b51f-5abf7a3a70cb false @@ -510647,7 +562126,7 @@ true true - TransactionCurrency_Connection + transactioncurrency_userfiscalcalendar None 5.0.0.0 OneToManyRelationship @@ -510683,69 +562162,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_Connection - transactioncurrencyid - connection - transactioncurrencyid - - 0 - - - 20fc36b5-fe31-4b47-98b8-ea4ef9493f38 - - false - - false - iscustomizable - false - - true - true - transactioncurrency_translationprocess - None - 8.2.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - transactioncurrencyid - transactioncurrency - transactioncurrency_translationprocess + transactioncurrency_userfiscalcalendar transactioncurrencyid - translationprocess + userfiscalcalendar transactioncurrencyid 0 - 31da5d53-fefc-480f-bdb4-899791db797e + 0ed94ca8-3669-4f78-af42-646467ab3550 false @@ -510755,9 +562180,9 @@ true true - TransactionCurrency_ExternalParty + TransactionCurrency_Task None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -510791,15 +562216,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_externalparty + TransactionCurrency_Task transactioncurrencyid - externalparty - transactioncurrency_externalparty_externalparty + task + transactioncurrencyid_task 0 - 5c4d603b-93f0-4e48-b0c2-7bb5936ba348 + 854c66ac-01a8-4c77-bb09-db1590713382 false @@ -510809,9 +562234,9 @@ true true - transactioncurrency_feedback + TransactionCurrency_routingruleitem None - 8.1.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -510845,15 +562270,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_feedback + TransactionCurrency_routingruleitem transactioncurrencyid - feedback + routingruleitem transactioncurrencyid 0 - b080b5b1-af56-4270-8d9a-c93c163ea019 + 49b545ad-caca-4173-9ead-a273c3df8b68 false @@ -510863,9 +562288,9 @@ true true - transactioncurrency_contact + TransactionCurrency_Theme None - 5.0.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -510899,27 +562324,27 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_contact + TransactionCurrency_Theme transactioncurrencyid - contact + theme transactioncurrencyid 0 - 0fbfe967-b922-4dae-87b4-df2820a7d515 + 2a4bcfae-1bc0-f011-bbd3-7c1e527732ed false - false + true iscustomizable - false + true - true + false true - TransactionCurrency_ReportCategory + TransactionCurrency_ctx_Product None - 5.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -510937,7 +562362,7 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade Restrict NoCascade @@ -510953,15 +562378,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_ReportCategory + TransactionCurrency_ctx_Product transactioncurrencyid - reportcategory + ctx_product transactioncurrencyid 0 - 4806b96f-ded7-4906-8f10-ff4e6efc18a6 + 9524f1b0-52c6-48ec-851c-8485e7b33a40 false @@ -510971,9 +562396,9 @@ true true - TransactionCurrency_InteractionForEmail + TransactionCurrency_externalpartyitem None - 8.2.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -511007,15 +562432,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_InteractionForEmail + TransactionCurrency_externalpartyitem transactioncurrencyid - interactionforemail - transactioncurrencyid + externalpartyitem + TransactionCurrencyId 0 - ff4a8538-a4f7-4daf-a4f6-b8933737d992 + b080b5b1-af56-4270-8d9a-c93c163ea019 false @@ -511025,9 +562450,9 @@ true true - TransactionCurrency_suggestioncardtemplate + transactioncurrency_contact None - 9.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -511061,15 +562486,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_suggestioncardtemplate + transactioncurrency_contact transactioncurrencyid - suggestioncardtemplate - transactioncurrency_suggestioncardtemplate + contact + transactioncurrencyid 0 - e3a4495d-7888-4092-9e2b-f5747a66baba + 20fc36b5-fe31-4b47-98b8-ea4ef9493f38 false @@ -511079,9 +562504,9 @@ true true - TransactionCurrency_slakpiinstance + transactioncurrency_translationprocess None - 7.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -511115,27 +562540,27 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_slakpiinstance + transactioncurrency_translationprocess transactioncurrencyid - slakpiinstance + translationprocess transactioncurrencyid 0 - 8e0f1943-31f7-434e-99b8-09307c66c46b + 4b6b4bb6-5566-f111-ab0c-70a8a52b6964 false - false + true iscustomizable - false + true - true - false - TransactionCurrency_DuplicateBaseRecord + false + true + TransactionCurrency_ctx_parent None - 7.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -511153,9 +562578,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade - Cascade + Restrict NoCascade NoCascade NoCascade @@ -511169,15 +562594,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_DuplicateBaseRecord - baserecordid - duplicaterecord - baserecordid_transactioncurrency + TransactionCurrency_ctx_parent + transactioncurrencyid + ctx_parent + transactioncurrencyid 0 - 14d24d9a-d926-41c4-b51f-5abf7a3a70cb + a2fc90b9-5be4-4a41-9acb-50abd1be6491 false @@ -511187,9 +562612,9 @@ true true - transactioncurrency_userfiscalcalendar + TransactionCurrency_KnowledgeBaseRecord None - 5.0.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -511223,15 +562648,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_userfiscalcalendar + TransactionCurrency_KnowledgeBaseRecord transactioncurrencyid - userfiscalcalendar + knowledgebaserecord transactioncurrencyid 0 - 8c41e2f4-fa76-44ce-901c-431b88bd52fa + ba360dbd-cfd2-4923-ad32-5ed112050b65 false @@ -511241,9 +562666,9 @@ true true - TransactionCurrency_AsyncOperations + transactioncurrency_actioncard None - 5.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -511263,7 +562688,7 @@ NoCascade NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -511277,15 +562702,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_AsyncOperations - regardingobjectid - asyncoperation - regardingobjectid_transactioncurrency + transactioncurrency_actioncard + transactioncurrencyid + actioncard + transactioncurrencyid 0 - ea9beb12-eecf-4bfd-90fd-5191bdb0fc45 + 134bd3bd-7f9b-447a-b988-f6db01f36253 false @@ -511295,7 +562720,7 @@ true true - transactioncurrency_knowledgearticleviews + TransactionCurrency_officegraphdocument None 8.0.0.0 OneToManyRelationship @@ -511331,15 +562756,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_knowledgearticleviews + TransactionCurrency_officegraphdocument transactioncurrencyid - knowledgearticleviews + officegraphdocument transactioncurrencyid 0 - 49b545ad-caca-4173-9ead-a273c3df8b68 + ab665dc9-d8b2-4968-907c-2da3f9fc208e false @@ -511349,9 +562774,9 @@ true true - TransactionCurrency_Theme + transactioncurrency_socialactivity None - 7.1.0.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -511385,15 +562810,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_Theme + transactioncurrency_socialactivity transactioncurrencyid - theme - transactioncurrencyid + socialactivity + transactioncurrencyid_socialactivity 0 - 40fe2433-c6b3-478c-8ed1-02a7f3cabcd2 + e34971c9-f8bb-4b01-bfe8-bdce696e691d false @@ -511402,10 +562827,10 @@ false true - true - TransactionCurrency_ChannelAccessProfile + false + userentityinstancedata_transactioncurrency None - 8.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -511425,7 +562850,7 @@ NoCascade NoCascade - Restrict + Cascade NoCascade NoCascade NoCascade @@ -511439,15 +562864,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_channelaccessprofile - transactioncurrencyid - channelaccessprofile - transactioncurrency_channelaccessprofile + userentityinstancedata_transactioncurrency + objectid + userentityinstancedata + objectid_transactioncurrency 0 - 2ea49602-30e5-4176-96e0-dad68b9255f4 + d7b7e8d2-2f9c-4eae-a624-289e747ce229 false @@ -511457,9 +562882,9 @@ true true - transactioncurrency_newprocess + TransactionCurrency_recommendeddocument None - 8.2.0.0 + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -511479,7 +562904,7 @@ NoCascade NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -511493,27 +562918,27 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_newprocess + TransactionCurrency_recommendeddocument transactioncurrencyid - newprocess - transactioncurrencyid + recommendeddocument + transactioncurrencyidname 0 - 12905f92-5ff8-4878-a29e-9a243adbf97e + a220a1d4-5566-f111-ab0c-70a8a52b6964 false - false + true iscustomizable - false + true - true + false true - TransactionCurrency_knowledgearticle + TransactionCurrency_ctx_child None - 8.0.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -511531,7 +562956,7 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Restrict NoCascade Restrict NoCascade @@ -511547,15 +562972,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_knowledgearticle + TransactionCurrency_ctx_child transactioncurrencyid - knowledgearticle + ctx_child transactioncurrencyid 0 - 953a862e-0201-4eb0-aed0-963496987ae9 + 43c68cd7-b0f0-41e2-8304-318bb4068377 false @@ -511565,7 +562990,7 @@ true true - TransactionCurrency_RecurringAppointmentMaster + TransactionCurrency_ActivityPointer None 5.0.0.0 OneToManyRelationship @@ -511601,27 +563026,27 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_RecurringAppointmentMaster + TransactionCurrency_ActivityPointer transactioncurrencyid - recurringappointmentmaster - transactioncurrencyid_recurringappointmentmaster + activitypointer + transactioncurrencyid 0 - 1742bd26-9b6b-4100-becf-4a5ea2f0d819 + e69952da-82e4-4b0b-a3b4-fa8a9fb348f3 false false iscustomizable - false + true true true - transactioncurrency_account - None - 5.0.0.0 + TransactionCurrency_SyncErrors + Append + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -511640,12 +563065,12 @@ NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade + Cascade + Cascade + Cascade + Cascade + Cascade + Cascade NoCascade @@ -511655,15 +563080,15 @@ false transactioncurrencyid transactioncurrency - transactioncurrency_account - transactioncurrencyid - account - transactioncurrencyid + TransactionCurrency_SyncErrors + regardingobjectid + syncerror + regardingobjectid_transactioncurrency_syncerror - 0 + 1 - d7b7e8d2-2f9c-4eae-a624-289e747ce229 + c363b2de-c5ba-f011-bbd3-7c1e52365f30 false @@ -511673,9 +563098,9 @@ true true - TransactionCurrency_recommendeddocument + TransactionCurrency_Territory None - 8.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -511709,15 +563134,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_recommendeddocument + TransactionCurrency_Territory transactioncurrencyid - recommendeddocument - transactioncurrencyidname + territory + transactioncurrencyid 0 - 461e7492-20d1-45bc-a6e2-6026ca244940 + f68293e0-bb5f-4b29-86c2-de7f343c3735 false @@ -511727,9 +563152,9 @@ true true - TransactionCurrency_Routingrule + TransactionCurrency_QueueItem None - 6.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -511763,15 +563188,15 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_Routingrule + TransactionCurrency_QueueItem transactioncurrencyid - routingrule + queueitem transactioncurrencyid 0 - c363b2de-c5ba-f011-bbd3-7c1e52365f30 + 1378ffec-9992-4a88-9d67-0a65a3eb65cc false @@ -511781,7 +563206,7 @@ true true - TransactionCurrency_Territory + TransactionCurrency_BusinessUnit None 5.0.0.0 OneToManyRelationship @@ -511817,27 +563242,27 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_Territory + TransactionCurrency_BusinessUnit transactioncurrencyid - territory + businessunit transactioncurrencyid 0 - 3c0b3e85-c8ba-f011-bbd3-7c1e52365f30 + 30445eef-c666-470a-84fa-a875965917ae false - true + false iscustomizable - true + false - false + true true - chat_transactioncurrency_transactioncurrencyid + TransactionCurrency_UntrackedEmail None - 6.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -511871,81 +563296,27 @@ false transactioncurrencyid transactioncurrency - chat_transactioncurrency_transactioncurrencyid + TransactionCurrency_UntrackedEmail transactioncurrencyid - chat - transactioncurrencyid_chat - - 0 - - - 42fd6d84-daba-f011-bbd3-7c1e52365f30 - - false - - true - iscustomizable - true - - false - true - transactioncurrency_DeletedItemReferences - None - 1.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - transactioncurrencyid - transactioncurrency - transactioncurrency_DeletedItemReferences - deletedobject - deleteditemreference - deletedobject_transactioncurrency + untrackedemail + transactioncurrencyid_untrackedmail 0 - 82907323-f3ba-f011-bbd3-7c1e52365f30 + 9a12b0ef-ee3a-4cd6-8c74-2c42f6c10aef false - true + false iscustomizable - true + false - false + true true - adx_inviteredemption_transactioncurrency_transactioncurrencyid + TransactionCurrency_profilerule None - 1.0.2407.1 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -511979,27 +563350,27 @@ false transactioncurrencyid transactioncurrency - adx_inviteredemption_transactioncurrency_transactioncurrencyid + TransactionCurrency_profilerule transactioncurrencyid - adx_inviteredemption - transactioncurrencyid_adx_inviteredemption + channelaccessprofilerule + transactioncurrencyid 0 - c3e1a029-f3ba-f011-bbd3-7c1e52365f30 + 27d57ef1-3665-43c1-8768-30355592303f false - true + false iscustomizable - true + false - false + true true - adx_portalcomment_transactioncurrency_transactioncurrencyid + TransactionCurrency_MailMergeTemplate None - 1.0.2407.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -512033,27 +563404,27 @@ false transactioncurrencyid transactioncurrency - adx_portalcomment_transactioncurrency_transactioncurrencyid + TransactionCurrency_MailMergeTemplate transactioncurrencyid - adx_portalcomment - transactioncurrencyid_adx_portalcomment + mailmergetemplate + transactioncurrencyid 0 - 2a4bcfae-1bc0-f011-bbd3-7c1e527732ed + 8c41e2f4-fa76-44ce-901c-431b88bd52fa false - true + false iscustomizable - true + false - false + true true - TransactionCurrency_ctx_Product + TransactionCurrency_AsyncOperations None - 1.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -512071,9 +563442,9 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -512087,27 +563458,27 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_ctx_Product - transactioncurrencyid - ctx_product - transactioncurrencyid + TransactionCurrency_AsyncOperations + regardingobjectid + asyncoperation + regardingobjectid_transactioncurrency 0 - ff2d1812-25c0-f011-bbd3-7c1e52362bef + 62f7e1f9-1de5-4276-aabf-c985b83ea529 false - true + false iscustomizable - true + false - false + true true - TransactionCurrency_ctx_Transaction + TransactionCurrency_ActionCardUserState None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship DoNotDisplay @@ -512125,7 +563496,7 @@ 00000000-0000-0000-0000-000000000000 - Restrict + NoCascade NoCascade Restrict NoCascade @@ -512141,9 +563512,9 @@ false transactioncurrencyid transactioncurrency - TransactionCurrency_ctx_Transaction + TransactionCurrency_ActionCardUserState transactioncurrencyid - ctx_transaction + actioncarduserstate transactioncurrencyid 0 @@ -512302,6 +563673,13 @@ Information that specifies whether this component can be deleted. 1033 + + eef5d5c5-3bad-43b0-a279-3cd5f87d6cdb + + true + Oplysning om, hvorvidt komponenten kan slettes. + 1030 + 12351fea-69e5-11df-a50e-f4ce462d9b5d @@ -512320,6 +563698,13 @@ Can Be Deleted 1033 + + 750a2f67-195c-41ed-a41d-0f65f7692f24 + + true + Kan slettes + 1030 + 12351feb-69e5-11df-a50e-f4ce462d9b5d @@ -512425,6 +563810,13 @@ For internal use only. 1033 + + b415d0ae-8980-42cc-bf86-b9982cda633a + + true + Kun til intern brug. + 1030 + b636242d-efee-4aab-b381-9bde8c99dae8 @@ -512443,6 +563835,13 @@ Component State 1033 + + 1906930c-34c8-4f09-ae76-591d6eccbd4f + + true + Komponenttilstand + 1030 + 0e9737c8-9cfc-4e5b-8ca6-11a0edd37180 @@ -512531,6 +563930,13 @@ The state of this component. 1033 + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + faece0a1-cefc-11de-8150-00155da18b00 @@ -512549,6 +563955,13 @@ Component State 1033 + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + faece0a0-cefc-11de-8150-00155da18b00 @@ -512591,6 +564004,13 @@ Published 1033 + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + faece0a3-cefc-11de-8150-00155da18b00 @@ -512624,6 +564044,13 @@ Unpublished 1033 + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + faece0a5-cefc-11de-8150-00155da18b00 @@ -512657,6 +564084,13 @@ Deleted 1033 + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + faece0a7-cefc-11de-8150-00155da18b00 @@ -512690,6 +564124,13 @@ Deleted Unpublished 1033 + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + 1f83e0bb-cefd-11de-8150-00155da18b00 @@ -512737,6 +564178,13 @@ Bytes of the web resource, in Base64 format. 1033 + + 00f7091a-397f-44f9-983b-5d6546775840 + + true + Webressourcens bytes i Base64-format. + 1030 + b2d1c973-6719-4aa0-8d75-d6710ac74a4f @@ -512853,6 +564301,13 @@ Reference to the content file on Azure. 1033 + + 9ba8c000-4152-48e7-a42a-d31a14e2154d + + true + Reference til indholdsfilen på Azure. + 1030 + ee21c40e-d039-4f4f-9a23-09441152ade6 @@ -512871,6 +564326,13 @@ ContentFileRef 1033 + + fe905d07-2048-49e5-930d-cba2bd19058b + + true + ContentFileRef + 1030 + 76606a44-9b8e-44b8-b159-603d2b2d495f @@ -513075,6 +564537,13 @@ Json representation of the content of the resource. 1033 + + 87c07645-49b9-445c-8124-4c0806c1787c + + true + JSON-repræsentation af ressourcens indhold. + 1030 + 05f37dd1-6145-41ee-8dc6-1a3943185d71 @@ -513187,6 +564656,13 @@ Reference to the Json content file on Azure. 1033 + + 90e36c67-9c86-4fc1-8cb4-fb1e75ed9d5f + + true + Reference til Json-indholdsfilen på Azure. + 1030 + c8d2a4dd-d480-43b1-95f4-8fca9f29374f @@ -513205,6 +564681,13 @@ ContentJsonFileRef 1033 + + e0bd1806-36d8-429a-b6b8-7f6801fc05cb + + true + ContentJsonFileRef + 1030 + 6e203cd2-e180-420f-a229-db4ffe56ecc3 @@ -513409,6 +564892,13 @@ Unique identifier of the user who created the web resource. 1033 + + d0a97968-9f5c-4f9d-957e-13fad43607db + + true + Entydigt id for den bruger, der oprettede webressourcen. + 1030 + 40634236-4f44-4eb1-999e-c39ca95e6b16 @@ -513427,6 +564917,13 @@ Created By 1033 + + 675ce138-b4c1-4e50-890e-b50c62015312 + + true + Oprettet af + 1030 + 78f9c434-0980-4d45-b67c-bf516c74d275 @@ -513532,6 +565029,13 @@ Date and time when the web resource was created. 1033 + + 792229c4-e3cc-4135-8d20-60da31d70208 + + true + Dato og klokkeslæt for oprettelse af webressourcen. + 1030 + acba58d9-3a67-4712-a670-157377671d11 @@ -513550,6 +565054,13 @@ Created On 1033 + + 01f9ef64-b8db-429a-8141-d13d1963f15c + + true + Oprettet + 1030 + ea16fdd4-4942-4bba-94fe-c91ab6ca2aa5 @@ -513663,6 +565174,13 @@ Unique identifier of the delegate user who created the web resource. 1033 + + dd1cd46f-f540-4165-85f2-512f200ea728 + + true + Entydigt id for den stedfortræderbruger, der oprettede webressourcen. + 1030 + fb0c5434-382b-4279-a750-892c406b3107 @@ -513681,6 +565199,13 @@ Created By (Delegate) 1033 + + 20a00b09-c6b7-4722-ad14-4a864259c8f6 + + true + Oprettet af (stedfortræder) + 1030 + 9603efcf-8e82-4b77-9488-588a8a0b62a3 @@ -513990,6 +565515,13 @@ For internal use only. 1033 + + c4d93c60-bddd-43b3-a39a-a24c2991be58 + + true + Kun til intern brug. + 1030 + f131453a-f8ce-478d-a58e-d2a93e0cadab @@ -514008,6 +565540,13 @@ DependencyXML 1033 + + aaa470c6-55bf-4fa0-be59-ced2ab862b11 + + true + DependencyXML + 1030 + dde1b2e2-a7d0-411c-acf6-4019b8913a98 @@ -514116,6 +565655,13 @@ Description of the web resource. 1033 + + a810b85f-4755-40bb-9cb3-d80797072a0e + + true + Beskrivelse af webressourcen. + 1030 + cd94ed84-d7b7-47db-afe6-a5c704e25362 @@ -514134,6 +565680,13 @@ Description 1033 + + c7a3440c-be7e-43c5-9d7f-9a19d48ee0f9 + + true + Beskrivelse + 1030 + ab0de6ca-47db-4a0f-b312-a9c7f08dac07 @@ -514242,6 +565795,13 @@ Display name of the web resource. 1033 + + 2ef67484-4e2f-454e-b682-04c18819339e + + true + Det viste navn for webressourcen. + 1030 + 960e13b5-1a2e-4c58-9d8d-6ce45a5073dc @@ -514260,6 +565820,13 @@ Display Name 1033 + + 1f4ec91a-a4b3-429b-a4ff-30a93c6aac71 + + true + Vist navn + 1030 + 59ee1e6e-08a9-480f-bb41-7129f29f673b @@ -514372,6 +565939,13 @@ Version in which the form is introduced. 1033 + + 22d7c7e6-6ca7-4d1e-9e79-f7d1e9ac3ee3 + + true + Version, som formularen introduceres i. + 1030 + e189805b-8766-4297-b98a-6ce373e30ff9 @@ -514390,6 +565964,13 @@ Introduced Version 1033 + + 189da74d-111c-46e9-b8ba-d0288961845f + + true + Introduceret version + 1030 + eb68fb1f-cbd5-45a7-9609-9afe0a73e0c2 @@ -514502,6 +566083,13 @@ Information that specifies whether this web resource is available for mobile client in offline mode. 1033 + + b0ccc0bf-eea8-4bea-8447-33fa53d2145f + + true + Oplysninger, der angiver, om denne webressource er tilgængelig for mobilklient i offlinetilstand. + 1030 + 1441ab3d-e9f2-4228-b01c-a23cd0cb9dc8 @@ -514520,6 +566108,13 @@ Is Available For Mobile Offline 1033 + + da78c45d-383b-433c-9134-2587d072ad7c + + true + Er tilgængelig for Mobile Offline + 1030 + bb119424-6a33-4a31-b367-9a98f3f6616a @@ -514608,6 +566203,13 @@ Information that specifies whether this web resource is availaible for mobile client in offline mode. 1033 + + c300c350-f033-4891-9cdf-6f45c314896d + + true + Oplysninger, der angiver, om denne webressource er tilgængelig for mobilklient i offlinetilstand. + 1030 + 43ae9c9a-f212-40bc-b3f8-a2eccafea77a @@ -514626,6 +566228,13 @@ Is Available For Mobile Offline 1033 + + 040f5334-592d-4757-ab5e-9094ad51017c + + true + Er tilgængelig for Mobile Offline + 1030 + 0d4abc21-1b58-4c58-ac68-f18da80727a4 @@ -514667,6 +566276,13 @@ No 1033 + + 5d3b2821-0b4a-45a1-a23f-5b5a441e370a + + true + Nej + 1030 + 85b1a628-2a26-4570-9e96-9f2e9b86a8f4 @@ -514700,6 +566316,13 @@ Yes 1033 + + 61988f42-2724-4c6f-bdb2-65c8d526f3d0 + + true + Ja + 1030 + c09a6c96-f30b-48f4-b050-7c820e805ae9 @@ -514742,6 +566365,13 @@ Information that specifies whether this component can be customized. 1033 + + 8ad77594-5d9d-4b11-834c-19647ddc3546 + + true + Oplysninger om, hvorvidt denne komponent kan tilpasses. + 1030 + 760a3606-48f7-4906-a9d4-691d5642e73f @@ -514760,6 +566390,13 @@ Customizable 1033 + + d4a1d653-52cf-4562-87d7-a33e85f7e7fc + + true + Kan tilpasses + 1030 + f2e7bf36-104a-425f-b801-22f400ae7138 @@ -514865,6 +566502,13 @@ Information that specifies whether this web resource is enabled for mobile client. 1033 + + 7b1c0eeb-6ca7-46eb-aebd-592374301af9 + + true + Oplysninger, der angiver, om denne webressource er aktiveret til mobilklient. + 1030 + 49ad6b1e-0292-4f46-9afc-5bd5f4e3daf0 @@ -514883,6 +566527,13 @@ Is Enabled For Mobile Client 1033 + + fc29adf2-4c08-40af-89e9-06b4673e2f8b + + true + Er aktiveret til mobilklient + 1030 + 5376a5db-3b9a-4deb-8b7f-7344aba3b9e1 @@ -514971,6 +566622,13 @@ Information that specifies whether this web resource is enabled for mobile client. 1033 + + e26cf71a-5fa2-4d39-8bc7-a977c2880515 + + true + Oplysninger, der angiver, om denne webressource er aktiveret til mobilklient. + 1030 + 4588e339-e0dd-4926-8224-718e74e39904 @@ -514989,6 +566647,13 @@ Is Enabled For Mobile Client 1033 + + 2fe06b37-6cfc-4055-b1bf-5f3d97fdc3da + + true + Er aktiveret til mobilklient + 1030 + 327e857d-ae36-4d2d-b207-e827e956c746 @@ -515030,6 +566695,13 @@ No 1033 + + 42a4d441-f8db-4726-934e-73c8ce0c6f59 + + true + Nej + 1030 + 45f339cd-20ce-447c-a92c-06a7711e2812 @@ -515063,6 +566735,13 @@ Yes 1033 + + cad47a19-cd08-4cd4-a589-365381d99421 + + true + Ja + 1030 + 6ab89a73-42bb-44af-af52-813d71b04352 @@ -515105,6 +566784,13 @@ Information that specifies whether this component should be hidden. 1033 + + 21dfaa78-d1da-43fd-820e-7661ae26dae1 + + true + Oplysning om, hvorvidt komponenten bør skjules. + 1030 + 12351fed-69e5-11df-a50e-f4ce462d9b5d @@ -515123,6 +566809,13 @@ Hidden 1033 + + 9159b965-498a-41d4-a29b-f2e1137508f4 + + true + Skjult + 1030 + 12351fee-69e5-11df-a50e-f4ce462d9b5d @@ -515306,6 +566999,13 @@ Information about whether the current component is managed. 1033 + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + b41954a2-f3a5-47e9-ae13-ceb49de4465b @@ -515324,6 +567024,13 @@ Is Component Managed 1033 + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + 45a188b1-91a8-4019-b582-cebda8081064 @@ -515365,6 +567072,13 @@ Unmanaged 1033 + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + 443c7078-b7cb-47e7-8547-08dfa82950d0 @@ -515398,6 +567112,13 @@ Managed 1033 + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + ec886b5b-7e97-4c62-b30c-bf295639d540 @@ -515531,6 +567252,13 @@ Language of the web resource. 1033 + + 493f51ee-d026-4ac3-bbe0-ec12d6350240 + + true + Det sprog, der anvendes i webressourcen. + 1030 + 286c6c71-46fe-41bb-84a0-ff172c4aeaf9 @@ -515549,6 +567277,13 @@ Language 1033 + + ef3dff97-eadd-4d2e-848a-c2730fe9573e + + true + Sprog + 1030 + 78f1a9a1-376f-4798-899f-a525750c9c9f @@ -515655,6 +567390,13 @@ Unique identifier of the user who last modified the web resource. 1033 + + c70583c5-d138-4bcb-8483-6d3ccb92b722 + + true + Entydigt id for den bruger, der senest ændrede webressourcen. + 1030 + 255ae81c-ac20-498a-943a-190332f718c2 @@ -515673,6 +567415,13 @@ Modified By 1033 + + d6e400b0-c8c8-4f97-9659-3548546ac42b + + true + Ændret af + 1030 + b7503e3d-ecf2-4184-986d-d7eef6763f95 @@ -515778,6 +567527,13 @@ Date and time when the web resource was last modified. 1033 + + 4acba6ca-8a9f-4f74-a3e1-2e2001b90a06 + + true + Dato og klokkeslæt for den seneste ændring af webressourcen. + 1030 + 4fb38ff0-4516-4910-802e-8c7fca9ebdf8 @@ -515796,6 +567552,13 @@ Modified On 1033 + + 01d888c2-19e9-43b8-ae68-d8cdf5bad5df + + true + Ændret + 1030 + d2138506-5d9c-49e1-bc6a-5bda4cbcd56f @@ -515909,6 +567672,13 @@ Unique identifier of the delegate user who modified the web resource. 1033 + + 63b66e6b-fb6d-4045-81bf-c05c873f4e6c + + true + Entydigt id for den stedfortræderbruger, der ændrede webressourcen. + 1030 + dac6eed6-48ce-401b-8d6f-cde06d5b9577 @@ -515927,6 +567697,13 @@ Created By (Delegate) 1033 + + a065b956-58b5-4cf2-a800-53f0a2b8ff67 + + true + Oprettet af (stedfortræder) + 1030 + 2c671189-460d-447e-ac1f-cb1d85c011aa @@ -516236,6 +568013,13 @@ Name of the web resource. 1033 + + 8fc2117a-ac66-44b9-aa9a-884e0fe98d28 + + true + Navnet på webressourcen. + 1030 + a46073d5-39b1-40ea-8fc8-602cbac4ce05 @@ -516254,6 +568038,13 @@ Name 1033 + + 3ceb4e97-b969-49b8-a70c-bfb6babb7d15 + + true + Navn + 1030 + 6c97a25e-d1d8-4e51-95fa-5ee02b4466e6 @@ -516366,6 +568157,13 @@ Unique identifier of the organization associated with the web resource. 1033 + + 3760dfb9-edc4-482e-b3ce-377736960a17 + + true + Entydigt id for den organisation, der er tilknyttet webressourcen. + 1030 + b5b229f2-2b3c-465d-a821-2387812aebc7 @@ -516384,6 +568182,13 @@ Organization 1033 + + 15812ddd-2d94-4541-ace4-4f0c2c3072a4 + + true + Organisation + 1030 + 44b8326b-21d2-4bc2-82be-b0e959f6fc10 @@ -516591,6 +568396,13 @@ For internal use only. 1033 + + 9d5c138c-c694-4ce7-bbb8-57e4883d4aff + + true + Kun til intern brug. + 1030 + 61bb87c4-8d59-45d5-9d91-10cf4c14e178 @@ -516609,6 +568421,13 @@ Record Overwrite Time 1033 + + c26e0fa8-11aa-4f61-a598-900c93616b0c + + true + Klokkeslæt for overskrivning af post + 1030 + b319e46d-d366-46d6-9f7c-88aca3fceee4 @@ -516722,6 +568541,13 @@ Silverlight runtime version number required by a silverlight web resource. 1033 + + c775e051-54c1-42c6-8d32-42b0f1cfa5b8 + + true + Det versionsnummer for Silverlight-kørselsversionen, der skal anvendes til en Silverlight-webressource. + 1030 + 955d071a-079e-49a9-8cb3-9c5d2e544d2b @@ -516740,6 +568566,13 @@ Silverlight Version 1033 + + 24505924-a525-4f8f-bf3f-793841fbd0a5 + + true + Silverlight-version + 1030 + 1e2471e8-a4bf-481a-a470-4455b7faca19 @@ -516852,6 +568685,13 @@ Unique identifier of the associated solution. 1033 + + bafee684-1e8d-4818-8c7b-79539e9f6512 + + true + Entydigt id for den tilknyttede løsning. + 1030 + e2cb4886-01db-4346-a06c-624fd3d287d3 @@ -516870,6 +568710,13 @@ Solution 1033 + + abdafd08-9c60-42eb-8b5a-6a7e80a77c5c + + true + Løsning + 1030 + 757a817d-20cc-49d8-8bcc-429b6012a575 @@ -516971,6 +568818,13 @@ For internal use only. 1033 + + 5ffecf79-cd43-4bc8-939b-9779a5b9ae18 + + true + Kun til intern brug. + 1030 + 1fa8919d-fb9a-41e1-a6c9-e9f1eda1c5b3 @@ -516989,6 +568843,13 @@ Solution 1033 + + 33dea19a-6fbb-4a86-9ba8-65dc7fe4906a + + true + Løsning + 1030 + 519e93a3-ba07-42fb-b5f9-f863f35a9c8f @@ -517183,6 +569044,13 @@ Unique identifier of the web resource. 1033 + + 7ae37c20-e4cf-468e-bebf-c08cc7c1e76c + + true + Entydigt id for webressourcen. + 1030 + e206001a-3e13-41f0-b054-4303a34b1504 @@ -517201,6 +569069,13 @@ Web Resource Identifier 1033 + + 20e43074-33bb-4bb7-a814-b32be910f53d + + true + Webressource-id + 1030 + 6052e4bc-db80-4fbf-be6f-835ae4fddbec @@ -517302,6 +569177,13 @@ For internal use only. 1033 + + 3a04e895-45cb-47ef-b549-8c42d4d1e130 + + true + Kun til intern brug. + 1030 + c5275bf4-ed9d-40e6-b390-d1300a27ef20 @@ -517407,6 +569289,13 @@ Drop-down list for selecting the type of the web resource. 1033 + + 6fca3588-006c-4393-b875-de57ba68d665 + + true + Rulleliste til valg af webressource. + 1030 + 6b9dab6f-e8b3-441d-9a1c-903b5ec11ff4 @@ -517425,6 +569314,13 @@ Type 1033 + + c3ff04f9-5749-4cc2-85fe-c6e19bd9886c + + true + Type + 1030 + 45452a54-9e59-4a8f-b5f3-d032cf15d18f @@ -517513,6 +569409,13 @@ Drop-down list for selecting the type of the web resource. 1033 + + 7920e499-51c1-4307-8a9b-f4bf9effa8a7 + + true + Rulleliste til valg af webressource. + 1030 + 5c219f21-10fa-4865-a41d-848be7a1672c @@ -517531,6 +569434,13 @@ Type 1033 + + e2bac545-2f55-4492-b700-8fb83675cf7e + + true + Type + 1030 + 267032f9-146d-4dd0-930d-953e26a4cc48 @@ -517573,6 +569483,13 @@ Webpage (HTML) 1033 + + 6f5c5487-9647-4ee2-893d-53656289a294 + + true + Webside (HTML) + 1030 + 3bed5bb2-dac5-42ec-afae-45694cd54d66 @@ -517606,6 +569523,13 @@ Style Sheet (CSS) 1033 + + 581218b1-dc89-451b-ac6b-788e67eb3b7d + + true + Typografiark (CSS) + 1030 + 91241f8d-c71c-4005-82bb-58a09da0ba8f @@ -517639,6 +569563,13 @@ Script (JScript) 1033 + + 862832d3-ed0c-464f-ad9d-53a94914e992 + + true + Script (JScript) + 1030 + b1308973-ef44-4552-92fb-b3644819ffef @@ -517672,6 +569603,13 @@ Data (XML) 1033 + + fddb9911-fae7-4407-bdda-22d1ad095a16 + + true + Data (XML) + 1030 + 2ab45cc9-bf7c-4426-8db1-7aba312d67dd @@ -517705,6 +569643,13 @@ PNG format 1033 + + 9c42b754-2eb9-4ef8-973e-e546bd003fa5 + + true + PNG-format + 1030 + 064cbc0c-5dea-400c-8998-b823dbc931ff @@ -517738,6 +569683,13 @@ JPG format 1033 + + 5808e710-5c25-4fa3-a3db-46f6eb3928d3 + + true + JPG-format + 1030 + 3c58e713-4747-48ba-a8bc-39f78a71e943 @@ -517771,6 +569723,13 @@ GIF format 1033 + + e76b4e17-b606-4487-9266-19fcf43f48f5 + + true + GIF-format + 1030 + 1f597714-3f26-4ff6-a196-dad46c0ffe50 @@ -517804,6 +569763,13 @@ Silverlight (XAP) 1033 + + 1367ca82-d89c-413e-8aca-ed54631a360a + + true + Silverlight (XAP) + 1030 + 78ef1716-e7a4-4ae8-91f4-2c1b61bc7917 @@ -517837,6 +569803,13 @@ Style Sheet (XSL) 1033 + + 8aa91547-db9a-43a6-aafa-b2957357d680 + + true + Typografiark (XSL) + 1030 + cf46fb8b-66f9-4491-85cc-df2d702ff51a @@ -517870,6 +569843,13 @@ ICO format 1033 + + 113bdf59-3f3b-4817-9a8c-d8c11229fe4b + + true + ICO-format + 1030 + 04e5067d-c4ca-47b4-a326-b70f9c6d8856 @@ -517903,6 +569883,13 @@ Vector format (SVG) 1033 + + 04d6e386-5b98-42b0-92e1-2b78f19ef6ae + + true + Vektorformat (SVG) + 1030 + 2a509543-9529-4d96-93f2-25a536f54259 @@ -517936,6 +569923,13 @@ String (RESX) 1033 + + 2912a6f4-f833-4294-9777-c8aa826c4eaa + + true + Streng (RESX) + 1030 + b2e55e38-dbbd-4768-8a09-46f4c7647135 @@ -518125,6 +570119,13 @@ Data equivalent to files used in Web development. Web resources provide client-side components that are used to provide custom user interface elements. 1033 + + 11d5b820-0c8f-4005-8745-d46baa4aeb8f + + true + De data, der svarer til de filer, der bruges i webudvikling. Webressourcer er komponenter på klienten, der bruges til brugerdefinerede elementer til brugergrænsefladen. + 1030 + 1abaedcf-6c08-48f6-9c46-8a4a2aa16405 @@ -518143,6 +570144,13 @@ Web Resources 1033 + + 685c598f-b7a5-4833-8d30-ab194060dd31 + + true + Webressourcer + 1030 + 84ad7e68-75fa-43ba-8a39-8c56eee8947a @@ -518161,6 +570169,13 @@ Web Resource 1033 + + 2632485d-7022-4bef-b41e-04db99873b6b + + true + Webressource + 1030 + 34bbf541-9939-42ec-b8ef-e6462c398d77 @@ -518348,7 +570363,7 @@ - 11401aa1-f89c-4287-bb4c-e8b5260190c3 + 58ef9204-1fef-4070-8bb1-326bea43c7db false @@ -518358,7 +570373,7 @@ true true - lk_webresourcebase_modifiedonbehalfby + webresource_modifiedby None 5.0.0.0 OneToManyRelationship @@ -518394,15 +570409,15 @@ false systemuserid systemuser - lk_webresourcebase_modifiedonbehalfby - modifiedonbehalfby + webresource_modifiedby + modifiedby webresource - modifiedonbehalfby + modifiedby 0 - bc0f867f-ebc9-4b6f-a2f4-e909fcd86621 + c7f69255-de7c-44c4-a83a-1a9df9be777b false @@ -518411,8 +570426,8 @@ false true - true - webresource_createdby + false + webresource_organization None 5.0.0.0 OneToManyRelationship @@ -518446,17 +570461,17 @@ false false - systemuserid - systemuser - webresource_createdby - createdby + organizationid + organization + webresource_organization + organizationid webresource - createdby + organizationid 0 - 4433d4bc-3bb8-42f1-82fe-ac022a9e8ef5 + bc0f867f-ebc9-4b6f-a2f4-e909fcd86621 false @@ -518466,7 +570481,7 @@ true true - lk_webresourcebase_createdonbehalfby + webresource_createdby None 5.0.0.0 OneToManyRelationship @@ -518502,15 +570517,15 @@ false systemuserid systemuser - lk_webresourcebase_createdonbehalfby - createdonbehalfby + webresource_createdby + createdby webresource - createdonbehalfby + createdby 0 - 58ef9204-1fef-4070-8bb1-326bea43c7db + 11401aa1-f89c-4287-bb4c-e8b5260190c3 false @@ -518520,7 +570535,7 @@ true true - webresource_modifiedby + lk_webresourcebase_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -518556,15 +570571,15 @@ false systemuserid systemuser - webresource_modifiedby - modifiedby + lk_webresourcebase_modifiedonbehalfby + modifiedonbehalfby webresource - modifiedby + modifiedonbehalfby 0 - c7f69255-de7c-44c4-a83a-1a9df9be777b + 4433d4bc-3bb8-42f1-82fe-ac022a9e8ef5 false @@ -518573,8 +570588,8 @@ false true - false - webresource_organization + true + lk_webresourcebase_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -518608,12 +570623,12 @@ false false - organizationid - organization - webresource_organization - organizationid + systemuserid + systemuser + lk_webresourcebase_createdonbehalfby + createdonbehalfby webresource - organizationid + createdonbehalfby 0 @@ -518730,7 +570745,7 @@ 9333 - 9144ecb7-4a7b-4b8b-a5a7-b849fc5543fc + 10c5853d-7e89-4951-9b3d-d05793b35e18 false @@ -518740,9 +570755,9 @@ true false - webresource_savedqueryvisualizations + lk_theme_logoid None - 5.0.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -518776,15 +570791,15 @@ false webresourceid webresource - webresource_savedqueryvisualizations - webresourceid - savedqueryvisualization - webresourceid + lk_theme_logoid + logoid + theme + logoimage 0 - 3b14f895-42f1-4bd5-b805-828eb4c79df4 + 38074359-90c4-4cac-bd9c-9f88d2d8c8c5 false @@ -518794,7 +570809,7 @@ true false - userentityinstancedata_webresource + webresource_userqueryvisualizations None 5.0.0.0 OneToManyRelationship @@ -518816,7 +570831,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -518830,10 +570845,10 @@ false webresourceid webresource - userentityinstancedata_webresource - objectid - userentityinstancedata - objectid_webresource + webresource_userqueryvisualizations + webresourceid + userqueryvisualization + webresourceid 0 @@ -518892,7 +570907,7 @@ 0 - 38074359-90c4-4cac-bd9c-9f88d2d8c8c5 + 3b14f895-42f1-4bd5-b805-828eb4c79df4 false @@ -518902,7 +570917,7 @@ true false - webresource_userqueryvisualizations + userentityinstancedata_webresource None 5.0.0.0 OneToManyRelationship @@ -518924,61 +570939,7 @@ NoCascade NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - webresourceid - webresource - webresource_userqueryvisualizations - webresourceid - userqueryvisualization - webresourceid - - 0 - - - 10c5853d-7e89-4951-9b3d-d05793b35e18 - - false - - false - iscustomizable - false - - true - false - lk_theme_logoid - None - 7.1.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict + Cascade NoCascade NoCascade NoCascade @@ -518992,36 +570953,36 @@ false webresourceid webresource - lk_theme_logoid - logoid - theme - logoimage + userentityinstancedata_webresource + objectid + userentityinstancedata + objectid_webresource 0 - 62db2ccd-d6ba-f011-bbd3-7c1e52365f30 + dc550cb3-dbba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false true - webresource_FileAttachments - ParentChild - 1.0.0.2 + webresource_appaction_iconwebresourceid + Append + 9.1.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true false @@ -519032,7 +570993,7 @@ NoCascade NoCascade - Cascade + RemoveLink NoCascade NoCascade NoCascade @@ -519046,15 +571007,15 @@ false webresourceid webresource - webresource_FileAttachments - objectid - fileattachment - objectid_webresource + webresource_appaction_iconwebresourceid + iconwebresourceid + appaction + IconWebResourceId - 2 + 1 - dc550cb3-dbba-f011-bbd3-7c1e52365f30 + e1550cb3-dbba-f011-bbd3-7c1e52365f30 false @@ -519064,7 +571025,7 @@ false true - webresource_appaction_iconwebresourceid + webresource_appaction_onclickeventjavascriptwebresourceid Append 9.1.0.0 OneToManyRelationship @@ -519100,36 +571061,90 @@ false webresourceid webresource - webresource_appaction_iconwebresourceid - iconwebresourceid + webresource_appaction_onclickeventjavascriptwebresourceid + onclickeventjavascriptwebresourceid appaction - IconWebResourceId + OnClickEventJavaScriptWebResourceId 1 - e1550cb3-dbba-f011-bbd3-7c1e52365f30 + 9144ecb7-4a7b-4b8b-a5a7-b849fc5543fc false - true + false iscustomizable false + true + false + webresource_savedqueryvisualizations + None + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + webresourceid + webresource + webresource_savedqueryvisualizations + webresourceid + savedqueryvisualization + webresourceid + + 0 + + + 62db2ccd-d6ba-f011-bbd3-7c1e52365f30 + + false + + true + iscustomizable + true + false true - webresource_appaction_onclickeventjavascriptwebresourceid - Append - 9.1.0.0 + webresource_FileAttachments + ParentChild + 1.0.0.2 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -519140,7 +571155,7 @@ NoCascade NoCascade - RemoveLink + Cascade NoCascade NoCascade NoCascade @@ -519154,12 +571169,12 @@ false webresourceid webresource - webresource_appaction_onclickeventjavascriptwebresourceid - onclickeventjavascriptwebresourceid - appaction - OnClickEventJavaScriptWebResourceId + webresource_FileAttachments + objectid + fileattachment + objectid_webresource - 1 + 2 @@ -519315,6 +571330,13 @@ Unique identifier of the latest activation record for the process. 1033 + + 8f95dd27-2b61-45ae-ab3a-cf599562d961 + + true + Entydigt id for den seneste aktiveringspost for processen. + 1030 + 9e9709b3-2241-db11-898a-0007e9e17ebd @@ -519333,6 +571355,13 @@ Active Process ID 1033 + + 7c9b9a05-4b18-45d6-a33e-150af3a01f11 + + true + Aktiv proces-id + 1030 + 9d9709b3-2241-db11-898a-0007e9e17ebd @@ -519540,6 +571569,13 @@ Indicates whether the asynchronous system job is automatically deleted on completion. 1033 + + 88a043cf-6623-4e86-910c-9a1746274e53 + + true + Angiver, om det asynkrone systemjob slettes automatisk ved fuldførelse. + 1030 + 64c0fa9d-2e50-4d9d-bd51-6e6d24c088a3 @@ -519558,6 +571594,13 @@ Delete Job On Completion 1033 + + 6bceff7f-01c1-4d38-870f-06d9a26e5647 + + true + Slet jobbet, når det er fuldført + 1030 + a48a9a74-aa15-4986-84df-e55d899d68e4 @@ -519646,6 +571689,13 @@ Indicates whether the asynchronous system job is automatically deleted on completion. 1033 + + b97caa52-e3c6-4a9e-82b2-b62ebe5aec50 + + true + Angiver, om det asynkrone systemjob slettes automatisk ved fuldførelse. + 1030 + 23e0d4bf-d25e-4351-99a4-a5e3b117af88 @@ -519691,6 +571741,13 @@ No 1033 + + 3f521101-b3fd-4b81-b25a-dd8bf057f305 + + true + Nej + 1030 + e34b9d1f-d1ed-44ba-97f1-1b170697de5a @@ -519724,6 +571781,13 @@ Yes 1033 + + 47fc41fa-ac3d-4706-b6ed-83a8edfb66c3 + + true + Ja + 1030 + 03905dae-5db8-4e28-b5ad-3a689f4c8462 @@ -519857,6 +571921,13 @@ Billing context this flow is in. 1033 + + 63829886-4e0d-4f3a-aae5-461f94146a80 + + true + Faktureringskontekst, som dette flow er i. + 1030 + 9a0ac7c4-0793-4cd0-8e12-41cbf121d44c @@ -519875,6 +571946,13 @@ BillingContext 1033 + + 518d9f2e-001b-488e-a1c3-3934cddf7230 + + true + BillingContext + 1030 + 506d88de-d284-4379-806b-1da2934fa1d3 @@ -519935,7 +572013,7 @@ true billingcontext - 2025-11-06T02:46:17.2199936 + 2026-05-11T16:00:40.2870016 true canmodifyrequirementlevelsettings @@ -519983,6 +572061,13 @@ Business Process Type. 1033 + + 302fd78a-680e-4abf-82fe-d2e84d5ea53b + + true + Forretningsprocestype. + 1030 + 98e72901-004e-447f-b35d-82b6ebb64d0d @@ -520001,6 +572086,13 @@ Business Process Type 1033 + + 9970ccf9-b3f9-4b0e-9283-387184611f4b + + true + Forretningsprocestype + 1030 + 4fd4f5d2-09ce-41bb-bc19-54406b872ba1 @@ -520089,6 +572181,13 @@ Business Process Type. 1033 + + 5d7dd1de-dce9-4e23-a2f5-64b4f7fd6aa7 + + true + Forretningsprocestype. + 1030 + 32ad3420-3c99-4451-a13a-c5a6a96a12c4 @@ -520107,6 +572206,13 @@ Business Process Type 1033 + + 6e58ee79-f39f-43bd-9c73-d5f37d697080 + + true + Forretningsprocestype + 1030 + fe687fb0-ea8d-4cf8-8a15-d157e480e98a @@ -520149,6 +572255,13 @@ Business Flow 1033 + + d26bafb6-b31c-4b08-942b-45ec2bdb5d0b + + true + Forretningsforløb + 1030 + 0a10c890-15bf-4365-92c2-ac2ff2f45ac5 @@ -520182,6 +572295,13 @@ Task Flow 1033 + + 37613f15-500f-4f99-888f-549096fd3976 + + true + Opgaveforløb + 1030 + 68cfa109-52dd-4bcd-b08e-5ee9bda1358c @@ -520320,6 +572440,13 @@ Category of the process. 1033 + + b2a1ec58-75a6-4d1c-badb-38772d39baac + + true + Processens kategori. + 1030 + 21c4451f-02f4-417a-a2b7-e0e2b7738cf8 @@ -520338,6 +572465,13 @@ Category 1033 + + 2a3b38f4-71fc-485c-b09b-b5063d5c183f + + true + Kategori + 1030 + 21c4451a-02f4-417a-a2b7-e0e2b7738cf8 @@ -520398,7 +572532,7 @@ true category - 2025-11-06T02:46:16.1869952 + 2026-05-11T16:00:35.1299968 false canmodifyrequirementlevelsettings @@ -520426,6 +572560,13 @@ Category of the process. 1033 + + 07b7cd23-b76e-466f-9218-2fcdae70bebb + + true + Processens kategori. + 1030 + 2324932d-093e-4837-94d7-f37c19b77993 @@ -520444,6 +572585,13 @@ Category 1033 + + 8d20cdd1-6ebe-4c8d-be48-762af8e9889a + + true + Kategori + 1030 + 16734339-4e5a-4bac-be51-f8a860678c59 @@ -520486,6 +572634,13 @@ Workflow 1033 + + c3ce3173-6d93-421f-a680-60494c2df100 + + true + Arbejdsproces + 1030 + 15d60d72-4c96-49ed-89ae-d5c417775b71 @@ -520519,6 +572674,13 @@ Dialog 1033 + + e28ddeb4-a980-4c5e-87ef-d98eece394cb + + true + Dialogboks + 1030 + ed5f4968-279b-4f73-a545-7f3e7c322e1e @@ -520552,6 +572714,13 @@ Business Rule 1033 + + 1e42b3ce-d423-4dfa-8398-6c63a70244fb + + true + Forretningsregel + 1030 + aa035d5a-3961-4781-8d11-a64c2879cc94 @@ -520585,6 +572754,13 @@ Action 1033 + + dad9fdf6-f428-4ea7-ade6-2b6fbfa43601 + + true + Handling + 1030 + 9b708c5a-72d8-47d2-ac68-53b816d5026c @@ -520618,6 +572794,13 @@ Business Process Flow 1033 + + 34bc432b-b32d-48c1-80b6-8e7eb17d6623 + + true + Forretningsprocesforløb + 1030 + fe96373c-0f95-4ddb-a824-3877c1b03134 @@ -520645,15 +572828,22 @@ - 91c4be57-5743-481b-b78b-8b93d7f9423b + 3abf5a6b-36ab-4524-b7c7-d79189410651 true Modern Flow 1033 + + 24b777ca-37c9-4bc5-b826-1ee8b64f275e + + true + Moderne forløb + 1030 + - 91c4be57-5743-481b-b78b-8b93d7f9423b + 3abf5a6b-36ab-4524-b7c7-d79189410651 true Modern Flow @@ -520684,6 +572874,13 @@ Desktop Flow 1033 + + 0d66d156-4d3b-4c66-87d7-d62690707704 + + true + Skrivebordsflow + 1030 + e240ef65-97bb-4436-9db7-e964a55e6407 @@ -520717,6 +572914,13 @@ AI Flow 1033 + + 4b7a7ffd-ac2b-4b1b-aa34-41e66f2e3014 + + true + AI-flow + 1030 + 507b4243-b60b-481c-a893-7e49ba9cf127 @@ -520855,6 +573059,13 @@ Claims related to this workflow. 1033 + + 71398de2-e2aa-4f8b-905f-7fb06121eb88 + + true + Krav, der er relateret til denne arbejdsproces. + 1030 + 312bc3c4-99be-4df8-b47e-ebdd6f714233 @@ -520873,6 +573084,13 @@ Claims 1033 + + a42bff5c-88d3-4c2c-9baa-edda16126510 + + true + Krav + 1030 + 881c4b24-ecb5-4af4-8a41-6b5ba1634cab @@ -520933,7 +573151,7 @@ true claims - 2025-11-06T02:46:17.1699968 + 2026-05-11T16:00:39.9270016 true canmodifyrequirementlevelsettings @@ -520981,6 +573199,13 @@ Business logic converted into client data 1033 + + 89e87e95-2d78-4c31-b349-edd4a5e39589 + + true + Forretningslogik konverteret til klientdata + 1030 + 25b17eeb-5113-490b-86f4-16c3c380cddc @@ -520999,6 +573224,13 @@ Client Data 1033 + + e7842cf4-ada1-4362-91f0-8bfff8e6d661 + + true + Klientdata + 1030 + 4e589f03-13c2-458e-a7a1-9ae1cfd63ed3 @@ -521107,6 +573339,13 @@ For Internal Use Only. 1033 + + fc761b4b-f1da-4bce-8199-78268be09006 + + true + Kun til intern brug. + 1030 + 22618589-98a7-458d-a3c9-f0a7ad555a48 @@ -521125,6 +573364,13 @@ Client Data Is Compressed 1033 + + a9b0cdee-611c-4ae9-9366-aabbd2cb9ccb + + true + Klientdata er komprimeret + 1030 + f411a374-871f-4874-a603-42dedad4a6ab @@ -521185,7 +573431,7 @@ true clientdataiscompressed - 2025-11-06T02:46:16.6230016 + 2026-05-11T16:00:37.24 true canmodifyrequirementlevelsettings @@ -521213,6 +573459,13 @@ Indicates whether workflow has compressed client data 1033 + + 492f4bf6-7e2f-419d-88d3-b634bed6f211 + + true + Angiver, om arbejdsprocessen har komprimeret klientdata + 1030 + 89b41fc2-baba-f011-bbd3-7c1e52365f30 @@ -521231,6 +573484,13 @@ Client Data Is Compressed 1033 + + 2e09d458-26d6-4ded-b8eb-99bdea54dee7 + + true + Klientdata er komprimeret + 1030 + 88b41fc2-baba-f011-bbd3-7c1e52365f30 @@ -521272,6 +573532,13 @@ Workflow does not have compressed client data 1033 + + c84c9424-310e-47ae-a0ae-19df85e7e77c + + true + Arbejdsprocessen har ikke komprimerede klientdata + 1030 + bc2ee619-d280-4f4a-9945-e44ffd93a568 @@ -521305,6 +573572,13 @@ Workflow has compressed client data 1033 + + e811ddfb-5382-4dc6-916e-de3e4823caf4 + + true + Arbejdsprocessen har komprimerede klientdata + 1030 + db9d392a-aef0-4a51-9763-3f74bbddbb58 @@ -521438,6 +573712,13 @@ For internal use only. 1033 + + b26eaa59-c6bb-41c0-84aa-4036fefd368f + + true + Kun til intern brug. + 1030 + c794c4c7-a257-4e9d-b267-0ba179505729 @@ -521456,6 +573737,13 @@ Component State 1033 + + 044dd762-35ac-494b-aa0d-1605f7b6da26 + + true + Komponenttilstand + 1030 + 73644562-baf4-40a5-abd2-975c7f4b76db @@ -521544,6 +573832,13 @@ The state of this component. 1033 + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + faece0a1-cefc-11de-8150-00155da18b00 @@ -521562,6 +573857,13 @@ Component State 1033 + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + faece0a0-cefc-11de-8150-00155da18b00 @@ -521604,6 +573906,13 @@ Published 1033 + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + faece0a3-cefc-11de-8150-00155da18b00 @@ -521637,6 +573946,13 @@ Unpublished 1033 + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + faece0a5-cefc-11de-8150-00155da18b00 @@ -521670,6 +573986,13 @@ Deleted 1033 + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + faece0a7-cefc-11de-8150-00155da18b00 @@ -521703,6 +574026,13 @@ Deleted Unpublished 1033 + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + 1f83e0bb-cefd-11de-8150-00155da18b00 @@ -521750,6 +574080,13 @@ Connection References related to this workflow. 1033 + + 0fe75810-c539-47ef-9aaa-3b0168a658c6 + + true + Forbindelsesreferencer, der er relateret til denne arbejdsproces. + 1030 + 491ab33c-5109-44a4-98bf-a1d062f306bd @@ -521768,6 +574105,13 @@ Connection references 1033 + + 64bbc5c1-af00-42f7-95a6-1759d7b17fd7 + + true + Forbindelsesreferencer + 1030 + fc335b24-fe73-45e0-b563-f30bca5dbe98 @@ -521828,7 +574172,7 @@ true connectionreferences - 2025-11-06T02:46:17.1100032 + 2026-05-11T16:00:39.5699968 true canmodifyrequirementlevelsettings @@ -521876,6 +574220,13 @@ Unique identifier of the user who created the process. 1033 + + daeb0cf2-71d7-43a2-9e92-ad21b45effa6 + + true + Entydigt id for den bruger, der oprettede processen. + 1030 + 999709b3-2241-db11-898a-0007e9e17ebd @@ -521894,6 +574245,13 @@ Created By 1033 + + 53181eb0-0113-46f2-ba98-805cbdbc0812 + + true + Oprettet af + 1030 + 989709b3-2241-db11-898a-0007e9e17ebd @@ -522203,6 +574561,13 @@ Date and time when the process was created. 1033 + + 918cecff-28cd-423a-a40b-bca3d17cf4af + + true + Dato og klokkeslæt for oprettelse af processen. + 1030 + 939709b3-2241-db11-898a-0007e9e17ebd @@ -522221,6 +574586,13 @@ Created On 1033 + + 55778f8d-7288-43a0-b404-1377b0062e35 + + true + Oprettet + 1030 + 929709b3-2241-db11-898a-0007e9e17ebd @@ -522334,6 +574706,13 @@ Unique identifier of the delegate user who created the process. 1033 + + e845cd1a-8b69-4dfc-b161-6c79f384dbad + + true + Entydigt id for den stedfortræderbruger, der oprettede processen. + 1030 + d7709334-4013-4113-b7ca-d22534a55d2a @@ -522352,6 +574731,13 @@ Created By (Delegate) 1033 + + 9fc80b0b-1861-4bd1-98cc-ca5bf3eec334 + + true + Oprettet af (stedfortræder) + 1030 + f90e42ac-9197-4e68-9c22-d2092327be84 @@ -522661,6 +575047,13 @@ Create metadata for this workflow. 1033 + + 12ff63f0-23e4-4089-8b0a-ea386f8a1db8 + + true + Opret metadata for denne arbejdsproces. + 1030 + 4f368eb2-37b8-46ad-afd1-d21efdbc969b @@ -522679,6 +575072,13 @@ Create metadata 1033 + + 618cc3b4-cdfa-423b-972d-18f6359b67e5 + + true + Opret metadata + 1030 + 22401949-e364-4d00-9576-0849370064a2 @@ -522739,7 +575139,7 @@ true createmetadata - 2025-11-06T02:46:17.2669952 + 2026-05-11T16:00:40.88 true canmodifyrequirementlevelsettings @@ -522787,6 +575187,13 @@ Stage of the process when triggered on Create. 1033 + + 7a24ea43-6312-4e9b-ad94-85972fbd8503 + + true + Fase i processen, når den udløses ved Opret. + 1030 + 7864af15-68ff-4b86-a0b4-e7a04dfee034 @@ -522805,6 +575212,13 @@ Create Stage 1033 + + ee8f8825-870a-4220-9e1c-5e85b4886aa1 + + true + Oprettelsesfase + 1030 + f3c315c3-18ca-4010-8820-4647a54b2a98 @@ -522893,6 +575307,13 @@ Stage in which the Workflow executes 1033 + + 32c4ff70-fe3c-4e4b-b40c-02a06bf50938 + + true + Fase for udførelse af arbejdsprocessen + 1030 + 2fbda1fd-c6b0-4e07-8a32-1507eaf6b69d @@ -522911,6 +575332,13 @@ Workflow Stage 1033 + + 2bec79a4-cb8f-46e4-ba1c-e5bbfa2d88ab + + true + Trin i arbejdsproces + 1030 + cff4ec6d-5535-41cc-b9d2-1ecfd8117dab @@ -522953,6 +575381,13 @@ Pre-operation 1033 + + 18c03d19-94ae-466e-bd4f-8e421d26e109 + + true + Starthandling + 1030 + 23ce47ec-06fe-11e1-a5fd-1cc1de634c82 @@ -522986,6 +575421,13 @@ Post-operation 1033 + + 9c9edd81-8dca-4f87-98a8-11cda6510b0e + + true + Efterfølgende handling + 1030 + 23ce47ee-06fe-11e1-a5fd-1cc1de634c82 @@ -523124,6 +575566,13 @@ Credentials related to this workflow. 1033 + + 6b819109-5a92-4500-8536-cd1373323b3a + + true + Legitimationsoplysninger, der er relateret til denne arbejdsproces. + 1030 + 48e36c51-37db-4fc7-b2fd-099f87652a12 @@ -523142,6 +575591,13 @@ Credentials 1033 + + 297c0674-14e7-4131-88ff-ca72d4d1fa5d + + true + Legitimationsoplysninger + 1030 + f3c97b30-08c8-4e30-bd51-7e8fb951db98 @@ -523202,7 +575658,7 @@ true credentials - 2025-11-06T02:46:17.1399936 + 2026-05-11T16:00:39.8200064 true canmodifyrequirementlevelsettings @@ -523250,6 +575706,13 @@ Definition of the business logic of this workflow instance. 1033 + + 3cbfd6fa-832f-4a10-9f3d-96d75ee618ef + + true + Definition af forretningslogikken for denne forekomst af arbejdsproces. + 1030 + 31038669-aaf3-45c6-abed-3b30b1bf04cb @@ -523268,6 +575731,13 @@ Definition 1033 + + 65262f85-84e0-4fb7-8645-c2e7a53638ef + + true + Definition + 1030 + e0fc9ce5-92ba-45ae-8109-0266d70d9f8e @@ -523328,7 +575798,7 @@ true definition - 2025-11-06T02:46:17.1869952 + 2026-05-11T16:00:40.0700032 true canmodifyrequirementlevelsettings @@ -523376,6 +575846,13 @@ Stage of the process when triggered on Delete. 1033 + + 4a63635b-fb10-4ddb-af43-85a5a8f23115 + + true + Fase i processen, når den udløses ved Slet. + 1030 + c43c4c36-83b8-4592-9e23-5df2638ee47e @@ -523394,6 +575871,13 @@ Delete stage 1033 + + e401740d-a9d5-446b-a8f6-7426b9ceef7a + + true + Slettefase + 1030 + 7805a9ee-d374-4baa-a4fa-27974675fdc7 @@ -523482,6 +575966,13 @@ Stage in which the Workflow executes 1033 + + 32c4ff70-fe3c-4e4b-b40c-02a06bf50938 + + true + Fase for udførelse af arbejdsprocessen + 1030 + 2fbda1fd-c6b0-4e07-8a32-1507eaf6b69d @@ -523500,6 +575991,13 @@ Workflow Stage 1033 + + 2bec79a4-cb8f-46e4-ba1c-e5bbfa2d88ab + + true + Trin i arbejdsproces + 1030 + cff4ec6d-5535-41cc-b9d2-1ecfd8117dab @@ -523542,6 +576040,13 @@ Pre-operation 1033 + + 18c03d19-94ae-466e-bd4f-8e421d26e109 + + true + Starthandling + 1030 + 23ce47ec-06fe-11e1-a5fd-1cc1de634c82 @@ -523575,6 +576080,13 @@ Post-operation 1033 + + 9c9edd81-8dca-4f87-98a8-11cda6510b0e + + true + Efterfølgende handling + 1030 + 23ce47ee-06fe-11e1-a5fd-1cc1de634c82 @@ -523713,6 +576225,13 @@ Soft dependencies of this workflow instance. 1033 + + 61fe2b3e-50ae-4872-9ac5-a1212a6e767b + + true + Bløde afhængigheder for denne forekomst af arbejdsproces. + 1030 + 0f71aa95-b3bb-4ba1-987d-1a81e8032c04 @@ -523731,6 +576250,13 @@ Dependencies 1033 + + 1c1a6f65-92e3-4a5e-bbce-98fd61925d91 + + true + Afhængigheder + 1030 + 465ba9ad-2909-4580-97ba-c56621cba01f @@ -523791,7 +576317,7 @@ true dependencies - 2025-11-06T02:46:17.0770048 + 2026-05-11T16:00:39.4599936 true canmodifyrequirementlevelsettings @@ -523839,6 +576365,13 @@ Description of the process. 1033 + + f55864ed-ffa3-4184-94ed-979007e196a9 + + true + Beskrivelse af processen. + 1030 + 959709b3-2241-db11-898a-0007e9e17ebd @@ -523857,6 +576390,13 @@ Description 1033 + + 053f6cf1-8463-4439-b133-de48cfb35bab + + true + Beskrivelse + 1030 + 949709b3-2241-db11-898a-0007e9e17ebd @@ -523965,6 +576505,13 @@ Desktop flow modules related to this workflow. 1033 + + 4d808ccc-2a41-483b-872a-74ad0b76af23 + + true + Moduler til skrivebordsflow, der er relateret til denne arbejdsproces. + 1030 + 5a20d56f-6a2f-4ab9-8fd8-61765446f8a2 @@ -523983,6 +576530,13 @@ Desktop flow modules 1033 + + e442cfae-14b1-4cf6-864f-b55f33d28d3f + + true + Moduler til skrivebordsflow + 1030 + 35113915-6d40-4f92-95b1-2a61c75e5f51 @@ -524043,7 +576597,7 @@ true desktopflowmodules - 2025-11-06T02:46:17.1229952 + 2026-05-11T16:00:39.7229952 true canmodifyrequirementlevelsettings @@ -524091,6 +576645,13 @@ comma separated list of one or more Dynamics First Party Solution Unique names that this workflow is in context of. 1033 + + a3d09692-c2ac-4af1-9578-00a479d38591 + + true + kommasepareret liste over et eller flere entydige Dynamics-navne på første part-løsning, som denne arbejdsproces er i sammenhæng med. + 1030 + 18adcce9-cf91-499a-b151-5bb27c8a5092 @@ -524109,6 +576670,13 @@ DynamicsSolutionContext 1033 + + 00958cbb-38cf-4466-8324-e84145e4c7b3 + + true + Dynamics-løsningssammenhæng + 1030 + c73970f6-6c86-47e1-9655-b343a5166457 @@ -524169,7 +576737,7 @@ true dynamicssolutioncontext - 2025-11-06T02:46:16.9699968 + 2026-05-11T16:00:38.7399936 true canmodifyrequirementlevelsettings @@ -524217,6 +576785,13 @@ Shows the default image for the record. 1033 + + ba176b40-5044-484e-9dad-c4f217619490 + + true + Viser postens standardbillede. + 1030 + 26661de0-75a3-4443-bfa1-408f8cd73e8d @@ -524235,6 +576810,13 @@ Default Image 1033 + + 4aa0f72f-c90f-4ed7-ab38-cbfe9037718d + + true + Standardbillede + 1030 + 091e0afa-358a-4b38-969a-24cd4cef6a68 @@ -524463,7 +577045,151 @@ false false - true + true + false + false + + true + canmodifyissortablesettings + false + + + false + canmodifysearchsettings + false + + false + false + false + true + false + true + + entityimage_url + 1900-01-01T00:00:00 + + false + canmodifyrequirementlevelsettings + None + + EntityImage_URL + + + StringType + + 8.0.0.0 + true + 0 + + Url + Disabled + 200 + + + Url + + + false + 0 + 400 + + + be5b966d-81bd-468e-9e48-4e84437a11b9 + + + Uniqueidentifier + false + false + false + + false + canmodifyadditionalsettings + false + + 108 + 1900-01-01T00:00:00 + + + + + 562fb978-795b-4b39-9143-85b91df24751 + + true + For internal use only. + 1033 + + + 9e778a80-905a-424f-8a84-c079fef5e335 + + true + Kun til intern brug. + 1030 + + + + 562fb978-795b-4b39-9143-85b91df24751 + + true + For internal use only. + 1033 + + + + + + 5ad0f9b9-60b2-43cb-8ce4-6fb458d79b12 + + true + Entity Image Id + 1033 + + + 074a026e-44d8-46ae-b9f3-fa1e69e7a2a6 + + true + Id for objektbillede + 1030 + + + + 5ad0f9b9-60b2-43cb-8ce4-6fb458d79b12 + + true + Entity Image Id + 1033 + + + workflow + + + + false + canmodifyauditsettings + false + + false + + false + iscustomizable + false + + false + false + + true + canmodifyglobalfiltersettings + false + + true + false + false + + false + isrenameable + false + + false + false false false @@ -524483,83 +577209,86 @@ false true - entityimage_url + entityimageid 1900-01-01T00:00:00 false canmodifyrequirementlevelsettings None - EntityImage_URL + EntityImageId - StringType + UniqueidentifierType 8.0.0.0 - true - 0 + false + - Url - Disabled - 200 - - - Url - - - false - 0 - 400 - - be5b966d-81bd-468e-9e48-4e84437a11b9 + + da824acd-c68f-4b7a-b3b4-3122ffff08c2 - Uniqueidentifier + Lookup false false false false canmodifyadditionalsettings - false + true - 108 - 1900-01-01T00:00:00 + 10033 + 2026-05-11T16:00:42.0829952 - 562fb978-795b-4b39-9143-85b91df24751 + ad6650f5-beda-4c71-8f8f-9efab10c9dbf true - For internal use only. + Flow group the flow is associated with. 1033 + + 15ae69cc-e6da-4b3d-950f-dfce3b214b8a + + true + Flow group the flow is associated with. + 1030 + - 562fb978-795b-4b39-9143-85b91df24751 + ad6650f5-beda-4c71-8f8f-9efab10c9dbf true - For internal use only. + Flow group the flow is associated with. 1033 - 5ad0f9b9-60b2-43cb-8ce4-6fb458d79b12 + 25cf0c28-0b27-4608-a356-140a5cfceb63 true - Entity Image Id + Flow Group 1033 + + a6fbbc12-8b35-4df8-9961-088d5f423948 + + true + Flow Group + 1030 + - 5ad0f9b9-60b2-43cb-8ce4-6fb458d79b12 + 25cf0c28-0b27-4608-a356-140a5cfceb63 true - Entity Image Id + Flow Group 1033 @@ -524567,9 +577296,9 @@ - false + true canmodifyauditsettings - false + true false @@ -524578,7 +577307,7 @@ false false - false + true true canmodifyglobalfiltersettings @@ -524593,6 +577322,101 @@ false false + true + true + false + + true + canmodifyissortablesettings + false + + + true + canmodifysearchsettings + true + + true + true + true + true + true + true + + flowgroup + 2026-05-11T16:00:44.0999936 + + true + canmodifyrequirementlevelsettings + None + + FlowGroup + + + LookupType + + 1.10.3.0 + false + + + None + + flowgroup + + + + b7f46476-283a-4fa5-8f7e-8a1e85ad30da + + flowgroup + String + false + false + false + + true + canmodifyadditionalsettings + true + + 10034 + 2026-05-11T16:00:44.3030016 + + + + + + + + + + workflow + + + + true + canmodifyauditsettings + true + + false + + true + iscustomizable + true + + false + false + + true + canmodifyglobalfiltersettings + false + + false + false + false + + true + isrenameable + true + + false false false false @@ -524602,7 +577426,7 @@ false - false + true canmodifysearchsettings false @@ -524611,24 +577435,35 @@ false true false - true + false - entityimageid - 1900-01-01T00:00:00 + flowgroupname + 2026-05-11T16:00:44.3030016 - false + true canmodifyrequirementlevelsettings None - EntityImageId + flowgroupName - UniqueidentifierType + StringType - 8.0.0.0 - false - - + 1.10.3.0 + true + 0 + + Text + Auto + 100 + + + Text + + + false + 0 + 200 5c88d0bc-03dc-4eb2-b553-94e2453a5f35 @@ -524655,6 +577490,13 @@ Unique identifier of the associated form. 1033 + + 31be26df-74c3-42ff-b021-542b5258b01a + + true + Entydigt id for den tilknyttede formular. + 1030 + 9f5fd52f-f070-464d-867b-30364a5ecb78 @@ -524673,6 +577515,13 @@ Form ID 1033 + + e549232f-c113-40bf-a50f-b2f124e8279b + + true + Formular-id + 1030 + 1de1daeb-9788-47fb-92ef-225d08cde619 @@ -524774,6 +577623,13 @@ Input parameters to the process. 1033 + + ef9bad7d-ff06-4f3a-b3d1-da8a25827bb1 + + true + Inputparametre til processen. + 1030 + 5e822f75-b94e-4358-8f74-ed56c36e37f6 @@ -524792,6 +577648,13 @@ Input Parameters 1033 + + def3e8df-7cf3-4f1b-bd77-10ed26ad0f8c + + true + Inputparametre + 1030 + 928947b8-3c73-4281-b97d-30013f3d1824 @@ -524900,6 +577763,13 @@ Inputs definition for this workflow. 1033 + + 13d3d72f-8a32-4ceb-b572-72a150d6d554 + + true + Inputdefinition for denne arbejdsproces. + 1030 + 1e185d1c-ecdd-42d0-bf6d-f8b3dbe71b33 @@ -524918,6 +577788,13 @@ Inputs 1033 + + e0754feb-626f-47d1-b429-60aac4c16a86 + + true + Input + 1030 + 19142d6a-17ca-44df-8152-ea5656fd98e4 @@ -524978,7 +577855,7 @@ true inputs - 2025-11-06T02:46:17.0470016 + 2026-05-11T16:00:39.1629952 true canmodifyrequirementlevelsettings @@ -525026,6 +577903,13 @@ Version in which the form is introduced. 1033 + + 237469f5-076a-44aa-9848-52074a0cd311 + + true + Version, som formularen introduceres i. + 1030 + b3dfed6d-3a48-48df-a1ac-c17e24e46324 @@ -525044,6 +577928,13 @@ Introduced Version 1033 + + 22f5993e-8988-4ac0-b18f-1edceb9e12f2 + + true + Introduceret version + 1030 + d819b26b-7d39-4752-a381-942c60ab16dd @@ -525156,6 +578047,13 @@ Indicates whether the process was created using the Microsoft Dynamics 365 Web application. 1033 + + 666ca9e4-cd38-41f9-950f-8763484ef28e + + true + Angiver, om processen blev oprettet via Microsoft Dynamics 365-webprogrammet. + 1030 + 973641eb-1337-4104-ac3f-83ae7c84661c @@ -525174,6 +578072,13 @@ Is CRM Process 1033 + + d5369e4d-4f9a-4603-9c5d-0ac3c8a24b95 + + true + Er CRM-proces + 1030 + e4c526f7-cb5e-41e4-bf71-4cff75f2b5a3 @@ -525262,6 +578167,13 @@ Indicates whether the workflow was created using the Microsoft Dynamics 365 Web application. 1033 + + 97d25761-bc4e-49d9-a440-8586ceabdea5 + + true + Angiver, om arbejdsprocessen blev oprettet via Microsoft Dynamics 365-webprogrammet. + 1030 + 8ead7f9b-acbc-40d6-95e6-afeb8cbc22e4 @@ -525280,6 +578192,13 @@ Is CRM workflow 1033 + + 99dec042-8669-4f93-8167-97053090d50b + + true + Er CRM-arbejdsproces + 1030 + e8ea1528-8f4e-4a05-a439-390f5cc3229b @@ -525321,6 +578240,13 @@ No 1033 + + b871c495-6b9b-4607-87af-4e73f6b989e7 + + true + Nej + 1030 + 3f25b0cb-e780-db11-9b85-00137299e160 @@ -525354,6 +578280,13 @@ Yes 1033 + + dac4fabd-78ac-4b81-97d5-f78ef83cf552 + + true + Ja + 1030 + 4125b0cb-e780-db11-9b85-00137299e160 @@ -525396,6 +578329,13 @@ Information that specifies whether this component can be customized. 1033 + + 4114cdf6-168a-4fe4-bc58-f29d0a41311e + + true + Oplysninger om, hvorvidt denne komponent kan tilpasses. + 1030 + 22ce9b00-2008-4dff-87ac-8f1e5922372b @@ -525414,6 +578354,13 @@ Customizable 1033 + + 255fe1fa-17a3-440d-83a0-593ad337a090 + + true + Kan tilpasses + 1030 + 792373da-5678-4c72-b19e-afe06d81d688 @@ -525642,6 +578589,13 @@ Indicates whether the solution component is part of a managed solution. 1033 + + d9581aba-cfd9-4e4a-8284-ce5f8a98f32d + + true + Angiver, om løsningskomponenten er en del af en administreret løsning. + 1030 + ed69705d-5cd5-414b-8617-96c0bee89945 @@ -525660,6 +578614,13 @@ Is Managed 1033 + + 79e80729-b905-4e12-ad58-f2aca752fbbe + + true + Er administreret + 1030 + 3b385f2e-61d4-46eb-ae53-b1a74436e462 @@ -525748,6 +578709,13 @@ Information about whether the current component is managed. 1033 + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + b41954a2-f3a5-47e9-ae13-ceb49de4465b @@ -525766,6 +578734,13 @@ Is Component Managed 1033 + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + 45a188b1-91a8-4019-b582-cebda8081064 @@ -525807,6 +578782,13 @@ Unmanaged 1033 + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + 443c7078-b7cb-47e7-8547-08dfa82950d0 @@ -525840,6 +578822,13 @@ Managed 1033 + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + ec886b5b-7e97-4c62-b30c-bf295639d540 @@ -525973,6 +578962,13 @@ Whether or not the steps in the process are executed in a single transaction. 1033 + + 8d60f7b0-9e1b-4f17-9f38-5575db6c68e6 + + true + Angiver, om trinnene i processen udføres i en enkelt transaktion. + 1030 + 9fb63e6f-0707-4d92-850b-d56812a9cfda @@ -525991,6 +578987,13 @@ Is Transacted 1033 + + 6938ff50-beb4-4611-8e8a-bc63d8e2f44c + + true + Transaktion er udført + 1030 + d6837610-7e95-4d7b-bac0-fd7e6881128b @@ -526079,6 +579082,13 @@ Information about whether the SDK message is automatically transacted. 1033 + + 28bb2097-b862-4ab9-ad7f-cdf602ae1106 + + true + Oplysninger, der viser, om der er er udført en automatisk transaktion for SDK-meddelelsen. + 1030 + 489912ed-46e5-4991-8c30-747336d877bb @@ -526124,6 +579134,13 @@ No 1033 + + beaf0eb3-1ff5-4e51-9787-b196db17ecce + + true + Nej + 1030 + 0725b0cb-e780-db11-9b85-00137299e160 @@ -526157,6 +579174,13 @@ Yes 1033 + + 7fc87027-73e6-414c-a9e7-ad2fe5590ee8 + + true + Ja + 1030 + 0925b0cb-e780-db11-9b85-00137299e160 @@ -526290,6 +579314,13 @@ Language of the process. 1033 + + 3bf73555-43ac-4648-8123-f91f2bc590d8 + + true + Det sprog, der anvendes i processen. + 1030 + c2ff7e05-fcca-49cf-974a-2115a46343a7 @@ -526308,6 +579339,13 @@ Language 1033 + + bca61be9-9a22-431d-b599-8323e74e7827 + + true + Sprog + 1030 + c2ff7e06-fcca-49cf-974a-2115a46343a7 @@ -526414,6 +579452,13 @@ The user object that should be used to establish the license the flow should operate under. 1033 + + 7723fd65-17be-4d2d-a83e-e4b1d41a298b + + true + Det brugerobjekt, der skal bruges til at oprette den licens, som flowet skal fungere under. + 1030 + e7b9bf94-96ef-440f-a3a6-dc9914cb0fe4 @@ -526432,6 +579477,13 @@ Licensee 1033 + + 12a08287-ea62-4c95-a803-ebb54c346465 + + true + Pr. licens + 1030 + 08706ebc-8ea5-48b1-82d3-24f6b8e7aed1 @@ -526492,7 +579544,7 @@ true licensee - 2025-11-06T02:46:17.5629952 + 2026-05-11T16:00:41.9900032 true canmodifyrequirementlevelsettings @@ -526639,6 +579691,13 @@ The source of the license entitlements. 1033 + + eb36b910-42ef-4b89-8276-ee9d3c2092f7 + + true + Kilden til licensberettigelser. + 1030 + 53b6d3aa-2fa8-484b-af4f-e3415d803e00 @@ -526657,6 +579716,13 @@ License entitled by 1033 + + 8b74acda-4f76-416b-91d2-62f34245ea81 + + true + Licens berettiget af + 1030 + 18be7923-eb44-491c-88b8-727b1374b782 @@ -526717,7 +579783,7 @@ true licenseentitledby - 2025-11-06T02:46:17.72 + 2026-05-11T16:00:40.9900032 true canmodifyrequirementlevelsettings @@ -526966,6 +580032,13 @@ Additional metadata for this workflow. 1033 + + 876de3bf-88c9-4248-86ed-09f24f147919 + + true + Yderligere metadata til denne arbejdsproces. + 1030 + 6a3cb360-d40c-412a-8961-902ad24c4d54 @@ -526984,6 +580057,13 @@ Metadata 1033 + + 7d18e028-4170-47d7-a9c4-b8afd4976281 + + true + Metadata + 1030 + 46f2a7c5-ce4f-4c8f-b7fa-bd275ee19e6f @@ -527044,7 +580124,7 @@ true metadata - 2025-11-06T02:46:16.9529984 + 2026-05-11T16:00:38.5699968 true canmodifyrequirementlevelsettings @@ -527092,6 +580172,13 @@ Shows the mode of the process. 1033 + + 8cc08b9f-8901-488b-b585-3ff05dc71ba3 + + true + Viser processens tilstand. + 1030 + 59f3d9ba-c6ba-4064-8221-b0bae4819fc3 @@ -527110,6 +580197,13 @@ Mode 1033 + + 8143ca32-1679-4a0a-9317-5b177591f844 + + true + Tilstand + 1030 + 59f3d9bb-c6ba-4064-8221-b0bae4819fc3 @@ -527198,6 +580292,13 @@ Mode of the process. 1033 + + 3ee19816-f132-412d-a296-5ad4caf275b2 + + true + Processens tilstand. + 1030 + 5a2fbee6-b0cb-49d6-a717-307e8bbef115 @@ -527216,6 +580317,13 @@ Mode 1033 + + 03600822-fb6f-4fe5-a351-36382f11cfed + + true + Tilstand + 1030 + 8c95c0d1-48f4-44b4-a490-dd2252c85689 @@ -527258,6 +580366,13 @@ Background 1033 + + 128ed13d-ad23-4ff0-a38f-d748cfef49e5 + + true + Baggrund + 1030 + ae48d920-46a5-44f2-a19d-4f2d704963a9 @@ -527291,6 +580406,13 @@ Real-time 1033 + + 32b70ae1-0182-4a80-9913-3f2c88244e35 + + true + Realtid + 1030 + 0acc72cc-0c3c-4020-97d5-3bbea7309c3a @@ -527429,6 +580551,13 @@ Type of the Modern Flow. 1033 + + b39d005e-4e74-4c5c-87d3-520b4306500f + + true + Det moderne flows type. + 1030 + a58c7cf0-1aef-4745-9a12-c225c7aa2b30 @@ -527447,6 +580576,13 @@ Modern Flow Type 1033 + + 0ccdabcd-205b-4124-a90f-06801ad9491c + + true + Type af moderne flow + 1030 + 2535c1f2-6aa8-4f04-a8fe-3455ba9f36fe @@ -527507,7 +580643,7 @@ true modernflowtype - 2025-11-06T02:46:17.36 + 2026-05-11T16:00:41.6 false canmodifyrequirementlevelsettings @@ -527535,6 +580671,13 @@ Type of the Modern Flow process. 1033 + + 2fc5fe0e-e081-4bbe-a1a3-3f9eb9a7bdc3 + + true + Type af proces i det moderne flow. + 1030 + 92b41fc2-baba-f011-bbd3-7c1e52365f30 @@ -527553,6 +580696,13 @@ Modern Flow Type 1033 + + 019b656b-5d2b-4848-8f1d-e910d22283b5 + + true + Type af moderne flow + 1030 + 91b41fc2-baba-f011-bbd3-7c1e52365f30 @@ -527595,6 +580745,13 @@ PowerAutomateFlow 1033 + + 22c3cb4e-12d3-494e-83b2-dc421f9e1dd3 + + true + PowerAutomateFlow + 1030 + 703747c3-2076-40b6-949d-79d8a312460a @@ -527628,6 +580785,13 @@ CopilotStudioFlow 1033 + + 823df718-6f89-40f0-82ab-59dbdb82898d + + true + CopilotStudioFlow + 1030 + 8660b696-09e6-46c0-8c68-70e65adf48b3 @@ -527661,6 +580825,13 @@ M365CopilotAgentFlow 1033 + + 90a8e364-bcfc-4390-8935-771423a614b1 + + true + M365CopilotAgentFlow + 1030 + c989f15f-f780-4890-8e62-1f3ce0c845e6 @@ -527799,6 +580970,13 @@ Unique identifier of the user who last modified the process. 1033 + + 2aedfde3-aac1-4ea6-80ca-22e2c435be94 + + true + Entydigt id for den bruger, der sidst ændrede processen. + 1030 + 7d9709b3-2241-db11-898a-0007e9e17ebd @@ -527817,6 +580995,13 @@ Modified By 1033 + + 2e8f3c44-6a28-4361-b2e2-37a0b5dd4039 + + true + Ændret af + 1030 + 7c9709b3-2241-db11-898a-0007e9e17ebd @@ -528126,6 +581311,13 @@ Date and time when the process was last modified. 1033 + + b25eb555-5dab-446a-ab88-58447d4d48d2 + + true + Dato og klokkeslæt for seneste ændring af processen. + 1030 + 849709b3-2241-db11-898a-0007e9e17ebd @@ -528144,6 +581336,13 @@ Modified On 1033 + + 08d2b97a-26ed-40c7-b573-0e779ca27b16 + + true + Ændret + 1030 + 839709b3-2241-db11-898a-0007e9e17ebd @@ -528257,6 +581456,13 @@ Unique identifier of the delegate user who last modified the process. 1033 + + 0be4c08b-76ed-406b-86ce-a7ead74982d4 + + true + Entydigt id for den stedfortræderbruger, der sidst ændrede processen. + 1030 + 55957e14-8019-4e7b-83f4-2ca9d5514474 @@ -528275,6 +581481,13 @@ Modified By (Delegate) 1033 + + 37296f34-6910-4a46-b54a-77a0fe79e0e7 + + true + Ændret af (stedfortræder) + 1030 + 6256ae65-0179-41f7-858a-af4ca48fb739 @@ -528584,6 +581797,13 @@ Flow modify metadata used for telemetry, etc. 1033 + + aa7594bb-e670-49f1-95cc-e469e7b6d380 + + true + Metadata for flowænding, der bruges til telemetri osv. + 1030 + b810bfb5-3449-476f-89d9-9df98dbbf2e0 @@ -528602,6 +581822,13 @@ ModifyMetadata 1033 + + f5578806-dc33-4356-b8bb-3b72351d450e + + true + Skifte metadata + 1030 + 9f3909aa-5be5-4163-aeae-518467171f43 @@ -528662,7 +581889,7 @@ true modifymetadata - 2025-11-06T02:46:17.3270016 + 2026-05-11T16:00:41.4300032 true canmodifyrequirementlevelsettings @@ -528710,6 +581937,13 @@ Name of the process. 1033 + + aea05780-5a20-4f86-8354-e0d5cda0ece9 + + true + Navn på processen. + 1030 + 9c9709b3-2241-db11-898a-0007e9e17ebd @@ -528728,6 +581962,13 @@ Process Name 1033 + + a00d5f32-b5cb-4425-8899-5dbb18a2595e + + true + Procesnavn + 1030 + 9b9709b3-2241-db11-898a-0007e9e17ebd @@ -528840,6 +582081,13 @@ Indicates whether the process is able to run as an on-demand process. 1033 + + 79bc5073-ac35-4c93-8b0b-68b9d3630692 + + true + Angiver, om processen kan køres som en anmodet proces. + 1030 + 69b2f3e3-1921-4c81-9169-8664884b4e24 @@ -528858,6 +582106,13 @@ Run as On Demand 1033 + + 5f639628-35fc-4bf6-94c5-bf1ec9a8730b + + true + Kør som efter behov + 1030 + 00a95767-55bb-469b-addf-db93f8d16a64 @@ -528946,6 +582201,13 @@ Indicates whether the workflow is able to run as an on-demand workflow. 1033 + + 986f0bd8-4134-4f04-b293-67719459a3a1 + + true + Angiver, om arbejdsprocessen kan køres som en anmodet arbejdsproces. + 1030 + 25000d36-df9a-4c0d-bad9-86e9297d283a @@ -528964,6 +582226,13 @@ Run as OnDemand 1033 + + f13a4f7d-0bb0-4349-9b21-cb9f51364d22 + + true + Kør som anmodet arbejdsproces + 1030 + 05174a60-800d-4d2e-b8db-140f41d1fea7 @@ -529005,6 +582274,13 @@ No 1033 + + f3c7f618-cc95-4611-aa77-63b966dbd9c6 + + true + Nej + 1030 + 27feffbf-0e05-4ac4-a0bf-c8af79dd883e @@ -529038,6 +582314,13 @@ Yes 1033 + + 1e9f4e1b-8cb1-4940-b460-88fa3b9ce746 + + true + Ja + 1030 + d8ddea99-7546-4443-ad49-30e9e86a09f5 @@ -529171,6 +582454,13 @@ Outputs definition for this workflow. 1033 + + 12db6d55-543f-4ddd-ac07-acfb41e0cb48 + + true + Outputdefinition for denne arbejdsproces. + 1030 + ef4228a6-59c6-42b8-b443-bc6fd7851cff @@ -529189,6 +582479,13 @@ Outputs 1033 + + 78848f9a-b145-4f59-9367-f999302a2d25 + + true + Output + 1030 + 88b9b32e-7c4a-4d45-a37d-c699d57daa35 @@ -529249,7 +582546,7 @@ true outputs - 2025-11-06T02:46:17.0630016 + 2026-05-11T16:00:39.32 true canmodifyrequirementlevelsettings @@ -529297,6 +582594,13 @@ For internal use only. 1033 + + 8bb89efd-a147-4d68-87db-c5ecf03ccee0 + + true + Kun til intern brug. + 1030 + 5ed1847b-ae71-4c26-a8f1-c4dc81e5cee7 @@ -529315,6 +582619,13 @@ Record Overwrite Time 1033 + + 5067c399-7654-482a-93e5-ce44454e016a + + true + Klokkeslæt for overskrivning af post + 1030 + 97102030-05d0-4884-8e1a-f09104bfb9a2 @@ -529428,6 +582739,13 @@ Unique identifier of the user or team who owns the process. 1033 + + 3cb7c24d-d0ae-46ce-8a0c-7a3c03f8f743 + + true + Entydigt id for den bruger eller det team, der ejer processen. + 1030 + 809709b3-2241-db11-898a-0007e9e17ebd @@ -529446,6 +582764,13 @@ Owner 1033 + + d81e4615-99a3-4fc1-b961-5febd853335e + + true + Ejer + 1030 + 7f9709b3-2241-db11-898a-0007e9e17ebd @@ -529850,6 +583175,13 @@ Unique identifier of the business unit that owns the process. 1033 + + 8988cfda-d540-4c9d-9d90-9cd982f34ece + + true + Entydigt id for den afdeling, der ejer processen. + 1030 + a89709b3-2241-db11-898a-0007e9e17ebd @@ -529868,6 +583200,13 @@ Owning Business Unit 1033 + + 87a923bf-35b8-4a24-8d68-abf16e6f3179 + + true + Ejende afdeling + 1030 + a79709b3-2241-db11-898a-0007e9e17ebd @@ -530075,6 +583414,13 @@ Unique identifier of the team who owns the process. 1033 + + 50053eb0-5bd5-42e2-a18b-f55d40af1abd + + true + Entydigt id for den gruppe, der ejer processen. + 1030 + b7114cd6-6377-494a-92c9-d7edff214e38 @@ -530093,6 +583439,13 @@ Owning Team 1033 + + 9f747191-7e8d-4fa0-8fa0-7e51147f9fa2 + + true + Ejende team + 1030 + 8081e49d-81b1-4079-87a1-a8f2acd73f60 @@ -530198,6 +583551,13 @@ Unique identifier of the user who owns the process. 1033 + + 0f4676da-5b3d-4845-87f8-c101c8c5d009 + + true + Entydigt id for den bruger, der ejer processen. + 1030 + aa9709b3-2241-db11-898a-0007e9e17ebd @@ -530216,6 +583576,13 @@ Owning User 1033 + + e18d99a7-d2c7-4c2f-8c3a-0e25355bdea1 + + true + Ejende bruger + 1030 + 38a92325-dee5-4ba3-88db-52993cfc0107 @@ -530321,6 +583688,13 @@ Unique identifier of the definition for process activation. 1033 + + 6a17c26a-581f-4310-883e-fc3ffb6d842c + + true + Entydigt id for definitionen til procesaktivering. + 1030 + 879709b3-2241-db11-898a-0007e9e17ebd @@ -530339,6 +583713,13 @@ Parent Process ID 1033 + + f7e9c079-23d4-4136-a942-ebf3a23d87d4 + + true + Overordnet proces-id + 1030 + 869709b3-2241-db11-898a-0007e9e17ebd @@ -530546,6 +583927,13 @@ For Internal Use Only. 1033 + + 44820b55-6765-41fe-8d70-0bad8d012968 + + true + Kun til intern brug. + 1030 + 56f0bd5e-babd-41a3-be84-45b1a8dc86c0 @@ -530564,6 +583952,13 @@ Plan Verified 1033 + + 7c23d311-3864-4476-bd96-ccbb3c2f9024 + + true + Plan er bekræftet + 1030 + d032a0b2-31a9-43a4-bdb3-4d47220faadf @@ -530624,7 +584019,7 @@ true planverified - 2025-11-06T02:46:17.3129984 + 2026-05-11T16:00:41.1299968 true canmodifyrequirementlevelsettings @@ -530652,6 +584047,13 @@ Indicates whether the AI-generated plan has been verified by the user 1033 + + a5a020d7-dfd9-422a-abed-bf6656e663f9 + + true + Angiver, om den AI-genererede plan er blevet kontrolleret af brugeren + 1030 + 8fb41fc2-baba-f011-bbd3-7c1e52365f30 @@ -530670,6 +584072,13 @@ Plan Verified 1033 + + e41c5cbd-adaf-4c60-a0b3-7a393696b3aa + + true + Plan er bekræftet + 1030 + 8eb41fc2-baba-f011-bbd3-7c1e52365f30 @@ -530711,6 +584120,13 @@ NotVerified 1033 + + e4b66992-b8f5-4da8-9642-fb5b56e46654 + + true + Ikke kontrolleret + 1030 + 470b2141-8049-49a5-8f9a-accd845037c6 @@ -530744,6 +584160,13 @@ Verified 1033 + + 9fe9196f-5924-4d5a-87fd-006923fb062f + + true + Kontrolleret + 1030 + 2fffe208-9a31-4762-bd64-198dfe7528cf @@ -530877,6 +584300,13 @@ Unique identifier of the plug-in type. 1033 + + f4c422b3-dda3-4224-a468-bc5c64d41438 + + true + Entydigt id for plug-in-typen. + 1030 + 969709b3-2241-db11-898a-0007e9e17ebd @@ -530986,6 +584416,13 @@ Primary entity for the process. The process can be associated for one or more SDK operations defined on the primary entity. 1033 + + cf88f440-40d0-4037-b88a-fcf56d25b224 + + true + Primært objekt for processen. Processen kan tilknyttes én eller flere SDK-handlinger, der er defineret i det primære objekt. + 1030 + 859709b3-2241-db11-898a-0007e9e17ebd @@ -531004,6 +584441,13 @@ Primary Entity 1033 + + caca1226-2244-4bca-93de-fbedaa162f5c + + true + Primært objekt + 1030 + e7c19c18-7760-476f-ae50-916db7f4c6fe @@ -531092,6 +584536,13 @@ Primary entity for the workflow. The workflow can be associated for one or more SDK operations defined on the primary entity. 1033 + + aadff97b-09a1-4b33-b9d6-1df68ca67992 + + true + Primært objekt for arbejdsprocessen. Arbejdsprocessen kan tilknyttes én eller flere SDK-handlinger, der er defineret i det primære objekt. + 1030 + 136288f5-79a5-4d35-8014-cc44855ad2b1 @@ -531110,6 +584561,13 @@ Primary Entity 1033 + + 9358040e-f77b-4845-af58-cc420a7db2ef + + true + Primært objekt + 1030 + a3d2ca13-ece3-4abd-8f14-fb4e1e1c7086 @@ -531253,6 +584711,13 @@ Type the business process flow order. 1033 + + 1aba6a9e-02df-4781-b6cf-536c32a2a664 + + true + Angiv rækkefølgen af forretningsprocesforløbet. + 1030 + eda5e9b1-f65c-4212-b5e0-2546b16b0b91 @@ -531271,6 +584736,13 @@ Process Order 1033 + + 553a37b2-3b92-49a8-af29-f97e947d0f9d + + true + Procesordre + 1030 + 51c7623a-4af2-4049-b2c0-307c05da95ce @@ -531377,6 +584849,13 @@ Contains the role assignment for the process. 1033 + + d2de48b6-809e-40f9-88e6-b4244196935e + + true + Indeholder rolletildelingen for processen. + 1030 + 48ccb8ca-c7a3-4146-b018-1d655d0cc9b9 @@ -531395,6 +584874,13 @@ Role assignment for Process 1033 + + 3b554281-09af-4376-8e9c-caee9897b82e + + true + Rolletildeling for proces + 1030 + 26b78187-c291-4507-b1d7-a1db04121f3d @@ -531497,15 +584983,22 @@ - cc08fb2f-4f16-4aa6-818f-140a41772b6d + 8d518da5-1c36-4a32-9d73-9e3c7b9a5b84 true Unique identifier of the associated form for process trigger. 1033 + + 22662a4d-ba2c-46d9-a885-95d9c93a3607 + + true + Entydigt id for den tilknyttede formular til procesudløser. + 1030 + - cc08fb2f-4f16-4aa6-818f-140a41772b6d + 8d518da5-1c36-4a32-9d73-9e3c7b9a5b84 true Unique identifier of the associated form for process trigger. @@ -531515,15 +585008,22 @@ - 061c6123-2df7-4af5-bbb2-3866271e0878 + 4a935f3e-f901-4487-ab45-0791d981e292 true ProcessTriggerFormId 1033 + + 547296f8-df7c-4b2f-931a-86620ca1508c + + true + ProcessTriggerFormId + 1030 + - 061c6123-2df7-4af5-bbb2-3866271e0878 + 4a935f3e-f901-4487-ab45-0791d981e292 true ProcessTriggerFormId @@ -531616,15 +585116,22 @@ - e8bbfbc5-798b-485b-bd4b-e2e05743b367 + a6ade834-0701-4072-abe2-4c22e41f80f1 true Scope of the process trigger. 1033 + + c5be8af8-6ff4-4e3d-bf18-5df3ab21d1b0 + + true + Omfang af procesudløseren. + 1030 + - e8bbfbc5-798b-485b-bd4b-e2e05743b367 + a6ade834-0701-4072-abe2-4c22e41f80f1 true Scope of the process trigger. @@ -531634,15 +585141,22 @@ - e5f923e6-0aaa-4346-b28d-f402572ee929 + 3099fbde-a11c-4c55-8b83-4a9e844948fe true ProcessTriggerScope 1033 + + 889db1c1-726b-4fed-8d5d-8dcf4b931c8a + + true + ProcessTriggerScope + 1030 + - e5f923e6-0aaa-4346-b28d-f402572ee929 + 3099fbde-a11c-4c55-8b83-4a9e844948fe true ProcessTriggerScope @@ -531754,15 +585268,22 @@ - 905aa994-f39c-460d-b58f-f8699b405892 + d6a6545c-8868-4ffb-8cb3-64b9d3f7d9e3 true Form 1033 + + f2a83ac8-ec17-45a1-a8d8-24254f32e508 + + true + Formular + 1030 + - 905aa994-f39c-460d-b58f-f8699b405892 + d6a6545c-8868-4ffb-8cb3-64b9d3f7d9e3 true Form @@ -531787,15 +585308,22 @@ - 1e7ed4d6-d7e2-4e2a-8c91-f177b0a78810 + b52dcdd6-fd0e-4d1d-b72d-80471bcd12f7 true Entity 1033 + + 044aa8e3-91e2-4e1b-8c1f-700ff2d7fb40 + + true + Objekt + 1030 + - 1e7ed4d6-d7e2-4e2a-8c91-f177b0a78810 + b52dcdd6-fd0e-4d1d-b72d-80471bcd12f7 true Entity @@ -531931,6 +585459,13 @@ Indicates the rank for order of execution for the synchronous workflow. 1033 + + fa5b3bd8-d4dd-45ea-b90e-bec65c16e1f7 + + true + Angiver den synkrone arbejdsproces' placering i kørselsrækkefølgen. + 1030 + c22e60cc-1e76-4dee-9f09-401b0c9a0ec3 @@ -531949,6 +585484,13 @@ Rank 1033 + + 610ea4c9-6a26-43bd-9732-1b01df96bc0c + + true + Rangering + 1030 + 29b1f084-2dff-4f21-a4e9-173d013cba51 @@ -532055,6 +585597,13 @@ The renderer type of Workflow 1033 + + 32ae0e60-1bd1-498d-8d12-87d7a15b7628 + + true + Arbejdsprocessens gengivelsestype + 1030 + cf261760-9a6a-4ade-9e35-e8bb411f378b @@ -532073,6 +585622,13 @@ Renderer Type 1033 + + 4ed5fef7-ffca-4f61-8581-e06ed697ac63 + + true + Gengivelsestype + 1030 + 08de90ab-4d53-4ceb-bf49-81ed334525b8 @@ -532178,6 +585734,13 @@ For internal use only. 1033 + + b9635888-3b71-4c0a-bc86-dc2a8b8d1fe4 + + true + Kun til internt brug. + 1030 + 08319d45-92c2-4c10-bddc-a4df444e4c55 @@ -532196,6 +585759,13 @@ ResourceContainer 1033 + + 68241816-b967-4180-8d46-d115cc9f17b5 + + true + ResourceContainer + 1030 + 5a0ee64f-7d18-4b05-99ba-73958c2b5a85 @@ -532256,7 +585826,7 @@ true resourcecontainer - 2025-11-06T02:46:17 + 2026-05-11T16:00:39.0370048 true canmodifyrequirementlevelsettings @@ -532308,6 +585878,13 @@ For internal use only. 1033 + + f486c423-bd0e-417b-8f62-b283c1d3e995 + + true + Kun til internt brug. + 1030 + 85329cee-9bb5-48f9-8497-7dbabb825cd8 @@ -532326,6 +585903,13 @@ ResourceId 1033 + + f0475e53-af2c-4076-8648-2d9bd0e4b8ac + + true + ResourceId + 1030 + 42b5995a-19cd-46a0-a0ec-3050a2a4a09b @@ -532386,7 +585970,7 @@ true resourceid - 2025-11-06T02:46:16.9830016 + 2026-05-11T16:00:38.8669952 true canmodifyrequirementlevelsettings @@ -532427,6 +586011,13 @@ Specifies the system user account under which a workflow executes. 1033 + + ad210add-8afa-4a1a-bbb2-bc5dec8a3328 + + true + Angiver den systembrugerkonto, der bruges til at udføre en arbejdsproces. + 1030 + 050e9711-f5ae-4dbf-ae7b-35fc49f16483 @@ -532445,6 +586036,13 @@ Run As User 1033 + + ba0223ad-e884-4f44-ab99-134d2417df69 + + true + Kør som bruger + 1030 + 2d3844bc-9c48-45cd-a362-80eaa6b41326 @@ -532533,6 +586131,13 @@ Specifies the system user account under which a workflow executes 1033 + + 581a1dd2-b51b-4d93-83ee-9edf0af35600 + + true + Angiver den systembrugerkonto, der bruges til at udføre en arbejdsproces + 1030 + 325cd504-8cc0-4342-ae38-bf41e53863da @@ -532551,6 +586156,13 @@ Executing User 1033 + + 86793401-4d3c-4f97-8a22-124704be44a9 + + true + Udførende bruger + 1030 + db57bded-a254-4ac2-a1fc-b80e58687656 @@ -532593,6 +586205,13 @@ Owner 1033 + + e62b6c7f-b3f7-4697-aa66-50cd571fe34b + + true + Ejer + 1030 + 1c4cc751-90c8-4a3c-b7f6-d0280fdcb7e5 @@ -532626,6 +586245,13 @@ Calling User 1033 + + 56ca58eb-3eff-4abc-a1ae-d6528a72e0a7 + + true + Kaldende bruger + 1030 + 5f0fe707-3142-49a7-b493-5d5f5254b763 @@ -532764,6 +586390,13 @@ Schema version for this workflow. 1033 + + 30dea9fc-e027-48e3-90a6-23048a23a804 + + true + Skemaversion for denne arbejdsproces. + 1030 + ba57f392-77d1-4083-9323-5b15908e2f2c @@ -532782,6 +586415,13 @@ Schema Version 1033 + + 70f08733-4cb0-41f5-b767-862d9004590a + + true + Skemaversion + 1030 + b4097f53-9b19-4447-89b5-35ea4d43f276 @@ -532842,7 +586482,7 @@ true schemaversion - 2025-11-06T02:46:17.2029952 + 2026-05-11T16:00:40.1929984 true canmodifyrequirementlevelsettings @@ -532894,6 +586534,13 @@ Scope of the process. 1033 + + 37931264-6a1b-4e62-92cb-33c6f8d70406 + + true + Omfang af processen. + 1030 + 7a5f3ba7-5b37-475f-8da5-079b679716ef @@ -532912,6 +586559,13 @@ Scope 1033 + + 303506cb-df4f-48eb-a407-3cf21e07f649 + + true + Omfang + 1030 + 4ad71f8e-9765-4e43-9636-8af9ea669e57 @@ -533000,6 +586654,13 @@ Workflow scope. 1033 + + b1687348-08f7-4854-bf57-0f40a44d0f82 + + true + Omfang af arbejdsproces. + 1030 + 8bbf75c1-e8c4-4dc4-9b0a-a859be741967 @@ -533018,6 +586679,13 @@ Scope 1033 + + 21e758ad-3eb1-4e5f-b706-3ecb7b639646 + + true + Omfang + 1030 + 1fa70fa7-d98a-457d-aeb7-ce6da8d57f4f @@ -533060,6 +586728,13 @@ User 1033 + + b203a6be-a8dc-4076-afb7-34825d488097 + + true + Bruger + 1030 + 3ef73745-126b-4612-a59f-db819083f67e @@ -533093,6 +586768,13 @@ Business Unit 1033 + + 1b895cc5-7508-40c8-bce1-79068bb7a3b9 + + true + Afdeling + 1030 + 9a2b9ca1-088e-4162-a979-0ae8e35bc995 @@ -533126,6 +586808,13 @@ Parent: Child Business Units 1033 + + 5b08c0ea-be68-468c-95b3-a3e52af62d75 + + true + Overordnet: underordnede afdelinger + 1030 + 8a25ed90-bc76-4159-aab0-01c9b143fba0 @@ -533159,6 +586848,13 @@ Organization 1033 + + 0f6567a6-aa05-4e1c-ac96-9745c98012f0 + + true + Organisation + 1030 + 8988375e-7b46-4ee6-b4f2-57cd6c6892f2 @@ -533297,6 +586993,13 @@ Unique identifier of the SDK Message associated with this workflow. 1033 + + 0c35bc7a-8477-4055-aea2-ccae12476861 + + true + Entydigt id for den SDK-meddelelse, der er tilknyttet denne arbejdsproces. + 1030 + ff2f5957-a5bc-4e39-b176-223d95a9d20c @@ -533315,6 +587018,13 @@ SDK Message 1033 + + a9a5c59d-89c0-4c37-94b6-5dbd3a29d618 + + true + Sdk-meddelelse + 1030 + b05576e3-5aad-4b16-a54c-f3c6b3a7fd41 @@ -533420,6 +587130,13 @@ Unique identifier of the associated solution. 1033 + + ecc24e34-1a86-46e6-bfbc-0707c7c5a464 + + true + Entydigt id for den tilknyttede løsning. + 1030 + b7a9cd81-4ceb-45ee-81d8-1b0b1b842147 @@ -533438,6 +587155,13 @@ Solution 1033 + + bf376d2c-2a0c-4073-b6ea-941c59113283 + + true + Løsning + 1030 + 424e16b0-40fe-4aa4-adaf-81a2065bfc7f @@ -533539,6 +587263,13 @@ Status of the workflow 1033 + + f5f47c27-1957-405a-9577-e29a985baada + + true + Status for arbejdsprocessen + 1030 + 8d9709b3-2241-db11-898a-0007e9e17ebd @@ -533557,6 +587288,13 @@ Status 1033 + + 4e68b448-ac00-4598-8fa4-d36c568f74fc + + true + Status + 1030 + 8c9709b3-2241-db11-898a-0007e9e17ebd @@ -533617,7 +587355,7 @@ true statecode - 2025-11-06T02:46:16.6700032 + 2026-05-11T16:00:37.6470016 true canmodifyrequirementlevelsettings @@ -533645,6 +587383,13 @@ Status of the workflow 1033 + + ee215a38-6950-4133-9c55-748641870762 + + true + Status for arbejdsprocessen + 1030 + 8a7dcd73-0812-48a6-9e7d-1dab65954beb @@ -533663,6 +587408,13 @@ Status 1033 + + beb0d49d-e9bb-45b8-8292-e9ade8891dc2 + + true + Status + 1030 + 5f1cdf9f-2cb9-4be6-b976-061fbc9a3fb8 @@ -533705,6 +587457,13 @@ Draft 1033 + + fc03339a-c845-488e-9320-47a90fb4a0fe + + true + Kladde + 1030 + 8f9709b3-2241-db11-898a-0007e9e17ebd @@ -533740,6 +587499,13 @@ Activated 1033 + + ff3d638c-2343-42d1-9793-619a34f83576 + + true + Aktiveret + 1030 + 919709b3-2241-db11-898a-0007e9e17ebd @@ -533775,6 +587541,13 @@ Suspended 1033 + + 0818c4df-4850-4b18-b8d4-3963bbedb7a4 + + true + Suspenderet + 1030 + 10c9b74a-392c-41af-a3c7-f5f6fdac9d92 @@ -533911,6 +587684,13 @@ Reason for the status of the workflow 1033 + + b969b35d-bba6-4262-9cd4-6fdf1d20781e + + true + Årsag til statussen for arbejdsprocessen + 1030 + a19709b3-2241-db11-898a-0007e9e17ebd @@ -533929,6 +587709,13 @@ Status Reason 1033 + + 346c1336-62c8-4720-b835-69c4771d40a2 + + true + Statusårsag + 1030 + a09709b3-2241-db11-898a-0007e9e17ebd @@ -533989,7 +587776,7 @@ true statuscode - 2025-11-06T02:46:16.8269952 + 2026-05-11T16:00:38.0829952 true canmodifyrequirementlevelsettings @@ -534017,6 +587804,13 @@ Reason for the status of the workflow 1033 + + 4284c446-fd8d-495c-aecd-260fee5dc476 + + true + Årsag til statussen for arbejdsprocessen + 1030 + 0e53f543-a2d8-4dc8-8a51-f8e6f16cf2d3 @@ -534035,6 +587829,13 @@ Status Reason 1033 + + a61d1304-c2b1-472a-a146-79d5d873bfa0 + + true + Statusårsag + 1030 + 255b1c53-e2b5-4903-9421-b0f35bff47eb @@ -534077,6 +587878,13 @@ Draft 1033 + + bfcbad96-9e0a-4e13-b7fc-58cf5b750bbb + + true + Kladde + 1030 + a39709b3-2241-db11-898a-0007e9e17ebd @@ -534112,6 +587920,13 @@ Activated 1033 + + 55596f07-d2c6-49db-9cf2-f2936d7e29ea + + true + Aktiveret + 1030 + a59709b3-2241-db11-898a-0007e9e17ebd @@ -534147,6 +587962,13 @@ CompanyDLPViolation 1033 + + 7d98972a-de03-42cf-aabe-35d436f17b81 + + true + CompanyDLPViolation + 1030 + a1412e20-21ed-4f80-92f6-3752ee6afbf4 @@ -534283,6 +588105,13 @@ Indicates whether the process can be included in other processes as a child process. 1033 + + 5d70003a-9696-49c9-8756-397b1bed9945 + + true + Angiver, om processen kan inkluderes i en anden proces som en underordnet proces. + 1030 + 58a5b3bc-2f6e-4f52-ab9a-71c16b01bd72 @@ -534301,6 +588130,13 @@ Is Child Process 1033 + + 169e8fee-5b96-4996-a87d-58b08d0b359a + + true + Er underordnet proces + 1030 + b06d3508-ad85-469b-b065-68a21f52621a @@ -534389,6 +588225,13 @@ Indicates whether the workflow can be included in other workflows as a child workflow. 1033 + + 833e3342-dc26-49eb-9ca6-c7293daf4ac8 + + true + Angiver, om arbejdsprocessen kan inkluderes i en anden arbejdsproces som en underordnet arbejdsproces. + 1030 + a9e2b5c9-740d-41be-82b8-3ef00494d18f @@ -534407,6 +588250,13 @@ Subprocess 1033 + + c3b66172-ee83-4026-8f69-8e6469aa8cd8 + + true + Underproces + 1030 + 559fee9b-0ec8-4c3b-948a-865df97672d9 @@ -534448,6 +588298,13 @@ No 1033 + + 83437196-1aba-4789-8ca7-4de738121e02 + + true + Nej + 1030 + 2e25e4ca-9515-4870-b883-10dcc8c8e3dc @@ -534481,6 +588338,13 @@ Yes 1033 + + 727ecf17-37db-4e06-bfb7-200eed767efe + + true + Ja + 1030 + bc163c2a-2edf-452a-a448-4f544b15a1b0 @@ -534614,6 +588478,13 @@ For internal use only. 1033 + + afdcfc9f-c7b7-49f9-88bb-602f305cbacd + + true + Kun til intern brug. + 1030 + 6a0966cb-4660-40de-8ba9-59cb16dfe0da @@ -534632,6 +588503,13 @@ Solution 1033 + + b38c0432-3097-4b1e-a551-d562108931b5 + + true + Løsning + 1030 + 531a0145-b8fe-4970-8e56-9d8ce1e37275 @@ -534783,7 +588661,7 @@ true suspensionreasondetails - 2025-11-06T02:46:16.9369984 + 2026-05-11T16:00:38.52 true canmodifyrequirementlevelsettings @@ -534831,6 +588709,13 @@ Select whether synchronous workflow failures will be saved to log files. 1033 + + 80f825dd-0f99-458c-b80d-ee5f31f9d46b + + true + Vælg, om fejl i synkrone arbejdsprocesser gemmes i logfiler. + 1030 + 1e33355f-f853-42ae-957a-8f8e21b15281 @@ -534849,6 +588734,13 @@ Log upon Failure 1033 + + 6f84a828-9e6a-4e25-85b2-4f65b567a296 + + true + Logfør ved fejl + 1030 + edfc2219-ed17-4a80-a663-347faa345f6d @@ -534937,6 +588829,13 @@ Indicates whether the Synchronous workflow will log upon failure. 1033 + + 8b94a31b-8dda-46b9-b212-675d9c79e1d9 + + true + Angiver, om den synkrone arbejdsproces logføres ved fejl. + 1030 + ac8b1e69-6d68-4281-ae1b-429330481498 @@ -534982,6 +588881,13 @@ No 1033 + + ff393844-ef85-45a5-9d5a-a7c5a92472f7 + + true + Nej + 1030 + f5934aa4-ad70-46f2-b56b-e5f3769da4fd @@ -535015,6 +588921,13 @@ Yes 1033 + + f02b469d-245c-4433-8142-d8a05a9cccf8 + + true + Ja + 1030 + 85f20a8d-6375-41cc-9ace-bf04bf90fb28 @@ -535148,6 +589061,13 @@ The throttling behavior type. 1033 + + 1b7249dd-5ed0-4082-8c92-ec8a40b37ab1 + + true + Typen af begrænsningsfunktionsmåde. + 1030 + 14f3eb11-1770-4e0b-83e6-26953390f5ec @@ -535166,6 +589086,13 @@ Throttling behavior type 1033 + + 8556f1fe-34c7-4dee-92d9-990be1bac0b8 + + true + Type af begrænsningsfunktionsmåde + 1030 + 55e4afdc-bb11-4ba6-8aa6-a413d9fb10c0 @@ -535226,7 +589153,7 @@ true throttlingbehavior - 2025-11-06T02:46:17.2329984 + 2026-05-11T16:00:40.4130048 false canmodifyrequirementlevelsettings @@ -535241,7 +589168,7 @@ false 0 - + -1 8ab41fc2-baba-f011-bbd3-7c1e52365f30 @@ -535254,6 +589181,13 @@ Type of workflow throttling behavior. 1033 + + aa1abcbe-3244-4c50-a967-63c68ca9e3bf + + true + Typen af funktionsmåde for begrænsning af arbejdsproces. + 1030 + 8cb41fc2-baba-f011-bbd3-7c1e52365f30 @@ -535272,6 +589206,13 @@ Throttling behavior type 1033 + + 8e4dc9ab-8ad1-4945-acc1-316af41e8e63 + + true + Type af begrænsningsfunktionsmåde + 1030 + 8bb41fc2-baba-f011-bbd3-7c1e52365f30 @@ -535314,6 +589255,13 @@ None 1033 + + 0393e47c-2b57-4eee-b03d-abfc5bf2ac85 + + true + Ingen + 1030 + 460430b9-8294-4b28-8fa8-ea511030ab0e @@ -535347,6 +589295,13 @@ TenantPool 1033 + + 656c2db4-33ea-492a-ae0e-4c3afb15e0ef + + true + LejerPulje + 1030 + 33d4efc8-df12-453e-84f9-fc896f55947d @@ -535380,6 +589335,13 @@ CopilotStudio 1033 + + ee61e9aa-b0b1-4bef-b1a0-59f4a4a62af1 + + true + CopilotStudio + 1030 + 248dca3c-26ec-430e-91af-2e109787b008 @@ -535518,6 +589480,13 @@ Indicates whether the process will be triggered when the primary entity is created. 1033 + + 5240999b-9004-4916-ada9-cbb939e84d92 + + true + Angiver, om processen udløses ved oprettelse af det primære objekt. + 1030 + 1698e2e8-c226-4415-8db4-b66f57c68004 @@ -535536,6 +589505,13 @@ Trigger On Create 1033 + + fb32c35c-d040-4372-bb91-e0d1e39bb6e8 + + true + Udløs ved oprettelse + 1030 + 8507c746-257b-4404-8cea-be98bb0aedcb @@ -535624,6 +589600,13 @@ Indicates whether the workflow will be triggered on create of the primary entity. 1033 + + 0958aa69-6204-4f9a-a998-560adac1a94a + + true + Angiver, om arbejdsprocessen udløses ved oprettelse af det primære objekt. + 1030 + ada460c6-cd65-4151-92d5-406824381ef2 @@ -535642,6 +589625,13 @@ TriggerOnCreate 1033 + + e346dda4-7d67-4b51-af60-ba7e88b25f37 + + true + UdløsVedOprettelse + 1030 + 32271efd-4a5f-4bac-92ac-cac1e9af02e3 @@ -535683,6 +589673,13 @@ No 1033 + + 637a1af3-18e6-43d8-8fb5-8104482b0556 + + true + Nej + 1030 + 54fc0fed-7bd7-418e-863a-1212f1c71abf @@ -535716,6 +589713,13 @@ Yes 1033 + + 31636531-4255-40ac-95ef-2fc877e14850 + + true + Ja + 1030 + e5fa9c7d-5819-4686-9f46-8a8845f54de2 @@ -535849,6 +589853,13 @@ Indicates whether the process will be triggered on deletion of the primary entity. 1033 + + 5c198dd4-977d-4309-b8c7-688b3a273949 + + true + Angiver, om processen udløses ved sletning af det primære objekt. + 1030 + 6c7d1cde-9089-4ced-b7d1-a93396aa482b @@ -535867,6 +589878,13 @@ Trigger On Delete 1033 + + a85b3a54-4eea-4401-904c-5802a771388e + + true + Udløs ved sletning + 1030 + 619486d4-12ac-4e86-84e7-bc1d4cf79698 @@ -535955,6 +589973,13 @@ Indicates whether the workflow will be triggered on delete of the primary entity. 1033 + + 908f0195-ac56-4505-a11e-a90b696a7f19 + + true + Angiver, om arbejdsprocessen udløses ved sletning af det primære objekt. + 1030 + 7ece62a1-f0d8-4603-94f6-87692bf5db92 @@ -535973,6 +589998,13 @@ TriggerOnDelete 1033 + + 38ae6806-6228-4103-9264-98c2f31fb649 + + true + UdløsVedSletning + 1030 + a019c466-bf6a-4200-9f1e-f3e6e7a0c264 @@ -536014,6 +590046,13 @@ No 1033 + + 33ab0641-4ab1-46e7-a364-8a412d728e64 + + true + Nej + 1030 + 0aec0b8a-604d-412a-ab30-4382f7348426 @@ -536047,6 +590086,13 @@ Yes 1033 + + 00da693a-fcc4-4f20-b61e-19fda119f188 + + true + Ja + 1030 + 9c064ba4-4382-4401-bb8a-77fdd6c2b3be @@ -536180,6 +590226,13 @@ Attributes that trigger the process when updated. 1033 + + 10f8d3fa-a438-4b0e-b36a-e537582149fe + + true + De attributter, der udløser processen, når der opdateres. + 1030 + cf253ae7-6d77-40df-9fce-0400a001cf89 @@ -536198,6 +590251,13 @@ Trigger On Update Attribute List 1033 + + 4d1d54e0-008d-42c6-9b94-fbeba23553ca + + true + Udløs ved opdatering af attributlisten + 1030 + ab8e23d0-ae48-404d-8ffe-abc303f7822b @@ -536306,6 +590366,13 @@ For Internal Use Only. 1033 + + a5315153-177e-41c9-88f6-c2064c936912 + + true + Kun til intern brug. + 1030 + 1557a330-c204-415a-914c-bb64876bfda5 @@ -536324,6 +590391,13 @@ Trusted Access 1033 + + c65e5f8f-dddd-49f4-8d0e-d00ce59189fe + + true + Adgang, der er tillid til + 1030 + 71707542-5281-4c25-94d1-2360a1bd3541 @@ -536384,7 +590458,7 @@ true trustedaccess - 2025-11-06T02:46:16.6099968 + 2026-05-11T16:00:36.7100032 true canmodifyrequirementlevelsettings @@ -536412,6 +590486,13 @@ Indicates whether workflow has gone through save time access check 1033 + + 89a0f975-d4e7-4dd7-8989-86ac38355e50 + + true + Angiver, om arbejdsprocessen er gået gennem kontrol for at spare tid ved adgang + 1030 + 86b41fc2-baba-f011-bbd3-7c1e52365f30 @@ -536430,6 +590511,13 @@ Trusted Access 1033 + + c4c89441-8673-4c65-a187-f800fb35d887 + + true + Adgang, der er tillid til + 1030 + 85b41fc2-baba-f011-bbd3-7c1e52365f30 @@ -536471,6 +590559,13 @@ Workflow has not gone through access check 1033 + + c93bb3fe-9ae4-4bc9-a741-b9bad54925fc + + true + Arbejdsprocessen er ikke gået gennem adgangskontrol + 1030 + 50aa2d4b-0120-4a5f-b908-df6cae8633dd @@ -536504,6 +590599,13 @@ Workflow has gone through access check 1033 + + 489c1f74-ee64-434a-8c5d-a91607aad58d + + true + Arbejdsprocessen er gået gennem adgangskontrol + 1030 + e9bbec2b-991d-41b3-a993-e7a2b0f671b1 @@ -536637,6 +590739,13 @@ Type of the process. 1033 + + 42d5d07d-765d-4dba-bcbb-5df2e62c0ea9 + + true + Procestype. + 1030 + 779709b3-2241-db11-898a-0007e9e17ebd @@ -536655,6 +590764,13 @@ Type 1033 + + d08d6d2b-c814-4f09-8f98-6961f2b18443 + + true + Type + 1030 + 769709b3-2241-db11-898a-0007e9e17ebd @@ -536743,6 +590859,13 @@ Workflow type. 1033 + + b5f624eb-13eb-43ce-8eed-3fb0c27c15fb + + true + Arbejdsprocestype. + 1030 + 4533858e-5231-40a4-bbbe-356157b97d13 @@ -536761,6 +590884,13 @@ Type 1033 + + cc368ffd-d2b8-4ff2-89bf-9a49a26a187f + + true + Type + 1030 + c3519ff5-76b9-42d3-9b61-a1673f417a15 @@ -536803,6 +590933,13 @@ Definition 1033 + + 6b315139-2b60-4845-94f4-4b0cf2be5799 + + true + Definition + 1030 + 799709b3-2241-db11-898a-0007e9e17ebd @@ -536836,6 +590973,13 @@ Activation 1033 + + d141bc15-4d9c-41e0-b89a-f26190ee1b7f + + true + Aktivering + 1030 + 7b9709b3-2241-db11-898a-0007e9e17ebd @@ -536869,6 +591013,13 @@ Template 1033 + + 4a3d72a9-f40a-4da1-ad9f-4ed36240c4aa + + true + Skabelon + 1030 + 5260e64d-7949-4ca8-b5d8-5e96ac5573d3 @@ -537007,6 +591158,13 @@ For internal use only. 1033 + + a919e28e-01bd-4fa5-a6df-56fe2ff182ee + + true + Kun til intern brug. + 1030 + 04d8cd2a-3a8c-4fec-80c3-833e92c30397 @@ -537025,6 +591183,13 @@ UI Data 1033 + + c2962528-2e33-46f8-84ce-57513bca6cae + + true + Data for brugergrænseflade + 1030 + ed650bdc-605a-4fb1-a86e-6ebc7f12dac8 @@ -537133,6 +591298,13 @@ Type of the UI Flow process. 1033 + + dd8f2944-74a3-4381-bcf2-efaf991a8a3a + + true + Type af proces i skrivebordsflowet. + 1030 + 23422479-835f-442e-8911-ae585f50f46d @@ -537151,6 +591323,13 @@ UI Flow Type 1033 + + 513993cd-e054-4d1a-b337-ff249e5041bd + + true + Type af skrivebordsflow + 1030 + bf385a2a-9bc4-46be-9b6a-e03052e49f3e @@ -537239,6 +591418,13 @@ Type of the UI Flow process. 1033 + + cab832af-b22c-45e2-8f28-86fd5a2316ad + + true + Type af proces i skrivebordsflowet. + 1030 + 792426cd-4622-4bf1-ac9c-9b7fc5b2703e @@ -537257,6 +591443,13 @@ UI Flow Type 1033 + + fc2c2a7e-8195-4627-8301-2d7c6e194e01 + + true + Type af skrivebordsflow + 1030 + 845a890c-c384-4efa-83e7-ae801d62f078 @@ -537293,23 +591486,30 @@ - 3890e353-a4ad-4532-95e5-fa4ca64699ff + e08e3ebc-9b68-4784-9d9c-789a664940d1 true - Windows recorder (V1) + Recording 1033 + + 60ca2af4-11c7-4e52-a02f-4b6c47ceee7a + + true + Optagelse + 1030 + - 3890e353-a4ad-4532-95e5-fa4ca64699ff + e08e3ebc-9b68-4784-9d9c-789a664940d1 true - Windows recorder (V1) + Recording 1033 - 0 + 101 @@ -537326,23 +591526,30 @@ - 334c8bc8-3b5c-4d80-954d-f4c4fb177ce1 + 3890e353-a4ad-4532-95e5-fa4ca64699ff true - Selenium IDE + Windows recorder (V1) 1033 + + 845a1c7a-276d-4059-8552-c6da92812ab8 + + true + Windows-optager (V1) + 1030 + - 334c8bc8-3b5c-4d80-954d-f4c4fb177ce1 + 3890e353-a4ad-4532-95e5-fa4ca64699ff true - Selenium IDE + Windows recorder (V1) 1033 - 1 + 0 @@ -537359,23 +591566,30 @@ - a354f96c-2b2f-4fc5-8b67-2adcd610c560 + 334c8bc8-3b5c-4d80-954d-f4c4fb177ce1 true - Power Automate Desktop + Selenium IDE 1033 + + 0c47fae0-f2dc-4170-9994-64dd9587f134 + + true + Selenium IDE + 1030 + - a354f96c-2b2f-4fc5-8b67-2adcd610c560 + 334c8bc8-3b5c-4d80-954d-f4c4fb177ce1 true - Power Automate Desktop + Selenium IDE 1033 - 2 + 1 @@ -537392,23 +591606,30 @@ - 8cec80a1-1250-4027-9f7c-f659d21e1f34 + a354f96c-2b2f-4fc5-8b67-2adcd610c560 true - Test + Power Automate Desktop 1033 + + 0124d120-f15b-4a05-a474-b525d480445d + + true + Power Automate Desktop + 1030 + - 8cec80a1-1250-4027-9f7c-f659d21e1f34 + a354f96c-2b2f-4fc5-8b67-2adcd610c560 true - Test + Power Automate Desktop 1033 - 3 + 2 @@ -537425,23 +591646,30 @@ - e08e3ebc-9b68-4784-9d9c-789a664940d1 + 8cec80a1-1250-4027-9f7c-f659d21e1f34 true - Recording + Test 1033 + + 5d1becfc-81a1-47da-a76a-d6b302ef0a3d + + true + Test + 1030 + - e08e3ebc-9b68-4784-9d9c-789a664940d1 + 8cec80a1-1250-4027-9f7c-f659d21e1f34 true - Recording + Test 1033 - 101 + 3 @@ -537569,6 +591797,13 @@ Unique name of the process 1033 + + 907a71a6-ba4b-46c6-b113-78a1564f0e80 + + true + Entydigt navn på processen + 1030 + 6e335ce8-1e01-453f-b02f-1e5ecac52d22 @@ -537587,6 +591822,13 @@ Unique Name 1033 + + fdec135c-da4d-4050-a74a-1385199d98ec + + true + Entydigt navn + 1030 + 674496e1-5c20-46ab-9e0e-b30a30c1d156 @@ -537699,6 +591941,13 @@ Select the stage a process will be triggered on update. 1033 + + b39b1fd4-fcf4-49a1-8621-c37fbb75479c + + true + Vælg den fase, hvor en proces udløses ved opdatering. + 1030 + 26a4f20d-38d2-41bf-8974-61f9b8630472 @@ -537717,6 +591966,13 @@ Update Stage 1033 + + 5aebc372-4a55-4a12-87dd-5557bcade432 + + true + Opdateringsfase + 1030 + 9cbc9e74-31bc-4dd7-91c1-1ebb38bf23b5 @@ -537805,6 +592061,13 @@ Stage in which the Workflow executes 1033 + + 32c4ff70-fe3c-4e4b-b40c-02a06bf50938 + + true + Fase for udførelse af arbejdsprocessen + 1030 + 2fbda1fd-c6b0-4e07-8a32-1507eaf6b69d @@ -537823,6 +592086,13 @@ Workflow Stage 1033 + + 2bec79a4-cb8f-46e4-ba1c-e5bbfa2d88ab + + true + Trin i arbejdsproces + 1030 + cff4ec6d-5535-41cc-b9d2-1ecfd8117dab @@ -537865,6 +592135,13 @@ Pre-operation 1033 + + 18c03d19-94ae-466e-bd4f-8e421d26e109 + + true + Starthandling + 1030 + 23ce47ec-06fe-11e1-a5fd-1cc1de634c82 @@ -537898,6 +592175,13 @@ Post-operation 1033 + + 9c9edd81-8dca-4f87-98a8-11cda6510b0e + + true + Efterfølgende handling + 1030 + 23ce47ee-06fe-11e1-a5fd-1cc1de634c82 @@ -538129,6 +592413,13 @@ Unique identifier of the process. 1033 + + d9e43716-bd6f-4c76-b99a-f36552c52da1 + + true + Entydigt id for processen. + 1030 + 829709b3-2241-db11-898a-0007e9e17ebd @@ -538147,6 +592438,13 @@ Process 1033 + + c1b2cd65-1dac-4d27-8e0e-571ae8cc342d + + true + Proces + 1030 + 5dc5b681-4487-4b58-a9b1-30f4705b4b6b @@ -538248,6 +592546,13 @@ For internal use only. 1033 + + df983474-61db-4b1f-98bd-d843cf7ffcb8 + + true + Kun til intern brug. + 1030 + 92d46923-3b70-4f70-b658-5845ef7372cc @@ -538353,6 +592658,13 @@ XAML that defines the process. 1033 + + e8aa54ac-96b7-4887-b9ba-b8e180ea511f + + true + XAML, der definerer processen. + 1030 + c1014bf3-6533-4725-9bce-c8981ce1491e @@ -538516,6 +592828,13 @@ Set of logical rules that define the steps necessary to automate a specific business process, task, or set of actions to be performed. 1033 + + 38a05d24-0453-44af-a417-4fc08ed8eba4 + + true + Sæt logiske regler, der definerer de trin, der er nødvendige for at automatisere en bestemt forretningsproces, opgave eller sæt af handlinger, der skal udføres. + 1030 + 739709b3-2241-db11-898a-0007e9e17ebd @@ -538534,6 +592853,13 @@ Processes 1033 + + cb0a1b5f-e78f-40ec-b28c-4124d3210dd0 + + true + Processer + 1030 + 759709b3-2241-db11-898a-0007e9e17ebd @@ -538552,6 +592878,13 @@ Process 1033 + + cb9b870d-d0d7-43ca-8370-1356c29e7d11 + + true + Proces + 1030 + 749709b3-2241-db11-898a-0007e9e17ebd @@ -538764,7 +593097,7 @@ - 2d01ce7a-3f22-4cd5-bf0f-d1f4ae6ba360 + adf4140d-574f-471c-bb37-dde0fd143438 false @@ -538774,7 +593107,7 @@ true true - workflow_active_workflow + workflow_modifiedonbehalfby None 5.0.0.0 OneToManyRelationship @@ -538796,7 +593129,7 @@ NoCascade NoCascade - Restrict + NoCascade NoCascade NoCascade NoCascade @@ -538808,17 +593141,17 @@ false false - workflowid - workflow - workflow_active_workflow - activeworkflowid + systemuserid + systemuser + workflow_modifiedonbehalfby + modifiedonbehalfby workflow - activeworkflowid + modifiedonbehalfby 0 - bb9b2b8c-6c7b-4f16-80a5-ee4a8cb4f0c4 + 8fe5cc1e-e5d2-4c11-95e9-16767d52b22f false @@ -538827,8 +593160,8 @@ false true - true - workflow_modifiedby + false + business_unit_workflow None 5.0.0.0 OneToManyRelationship @@ -538862,17 +593195,17 @@ false false - systemuserid - systemuser - workflow_modifiedby - modifiedby + businessunitid + businessunit + business_unit_workflow + owningbusinessunit workflow - modifiedby + owningbusinessunit 0 - 4a98a7ca-d8ed-4016-9274-18441a5f976c + 4de3b758-c1b2-445b-9dfb-38d903e657f5 false @@ -538882,7 +593215,7 @@ true true - workflow_createdonbehalfby + workflow_parent_workflow None 5.0.0.0 OneToManyRelationship @@ -538916,17 +593249,17 @@ false false - systemuserid - systemuser - workflow_createdonbehalfby - createdonbehalfby + workflowid + workflow + workflow_parent_workflow + parentworkflowid workflow - createdonbehalfby + parentworkflowid 0 - 8fe5cc1e-e5d2-4c11-95e9-16767d52b22f + 39ce9763-fb2d-420c-ae57-6f94b70fd5f3 false @@ -538935,8 +593268,8 @@ false true - false - business_unit_workflow + true + team_workflow None 5.0.0.0 OneToManyRelationship @@ -538970,17 +593303,17 @@ false false - businessunitid - businessunit - business_unit_workflow - owningbusinessunit + teamid + team + team_workflow + owningteam workflow - owningbusinessunit + owningteam 0 - 3ece87ea-903e-4475-a110-1d8b4f5caa16 + 2d01ce7a-3f22-4cd5-bf0f-d1f4ae6ba360 false @@ -538989,8 +593322,8 @@ false true - false - owner_workflows + true + workflow_active_workflow None 5.0.0.0 OneToManyRelationship @@ -539024,17 +593357,17 @@ false false - ownerid - owner - owner_workflows - ownerid + workflowid + workflow + workflow_active_workflow + activeworkflowid workflow - ownerid + activeworkflowid 0 - a868cec8-1cce-4b39-bbe8-f466bf6555a7 + bb9b2b8c-6c7b-4f16-80a5-ee4a8cb4f0c4 false @@ -539044,7 +593377,7 @@ true true - system_user_workflow + workflow_modifiedby None 5.0.0.0 OneToManyRelationship @@ -539080,36 +593413,36 @@ false systemuserid systemuser - system_user_workflow - owninguser + workflow_modifiedby + modifiedby workflow - owninguser + modifiedby 0 - f644e1da-0569-4dd4-bc05-9044077a6586 + 5da4d68e-524d-f111-bec7-002248a2a8d1 false - false + true iscustomizable false - true - false - workflow_entityimage + false + true + Workflow_flowgroup None - 8.0.0.0 + 1.10.3.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true false @@ -539120,7 +593453,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -539132,38 +593465,38 @@ false false - imagedescriptorid - imagedescriptor - workflow_entityimage - entityimageid + flowgroupid + flowgroup + Workflow_flowgroup + flowgroup workflow - entityimageinstance_workflow + flowgroup_flowgroupid 0 - 39ce9763-fb2d-420c-ae57-6f94b70fd5f3 + 94b41fc2-baba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - team_workflow + Workflow_licensee None - 5.0.0.0 + 1.9.2.1 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true false @@ -539174,7 +593507,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -539186,38 +593519,38 @@ false false - teamid - team - team_workflow - owningteam + systemuserid + systemuser + Workflow_licensee + licensee workflow - owningteam + licensee_systemuserid 0 - 14231bcc-6197-4bce-8ccb-e3594c18e4bb + 99b41fc2-baba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - workflow_createdby + Workflow_licenseentitledby None - 5.0.0.0 + 1.7.8.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true false @@ -539228,7 +593561,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -539240,17 +593573,17 @@ false false - systemuserid - systemuser - workflow_createdby - createdby + workflowid + workflow + Workflow_licenseentitledby + licenseentitledby workflow - createdby + licenseentitledby_workflowid 0 - 4de3b758-c1b2-445b-9dfb-38d903e657f5 + a868cec8-1cce-4b39-bbe8-f466bf6555a7 false @@ -539260,7 +593593,7 @@ true true - workflow_parent_workflow + system_user_workflow None 5.0.0.0 OneToManyRelationship @@ -539294,17 +593627,17 @@ false false - workflowid - workflow - workflow_parent_workflow - parentworkflowid + systemuserid + systemuser + system_user_workflow + owninguser workflow - parentworkflowid + owninguser 0 - adf4140d-574f-471c-bb37-dde0fd143438 + 4a98a7ca-d8ed-4016-9274-18441a5f976c false @@ -539314,7 +593647,7 @@ true true - workflow_modifiedonbehalfby + workflow_createdonbehalfby None 5.0.0.0 OneToManyRelationship @@ -539350,36 +593683,36 @@ false systemuserid systemuser - workflow_modifiedonbehalfby - modifiedonbehalfby + workflow_createdonbehalfby + createdonbehalfby workflow - modifiedonbehalfby + createdonbehalfby 0 - 94b41fc2-baba-f011-bbd3-7c1e52365f30 + 14231bcc-6197-4bce-8ccb-e3594c18e4bb false - true + false iscustomizable false - false + true true - Workflow_licensee + workflow_createdby None - 1.9.2.1 + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -539390,7 +593723,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -539404,36 +593737,36 @@ false systemuserid systemuser - Workflow_licensee - licensee + workflow_createdby + createdby workflow - licensee_systemuserid + createdby 0 - 99b41fc2-baba-f011-bbd3-7c1e52365f30 + f644e1da-0569-4dd4-bc05-9044077a6586 false - true + false iscustomizable false - false - true - Workflow_licenseentitledby + true + false + workflow_entityimage None - 1.7.8.0 + 8.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -539444,7 +593777,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -539456,32 +593789,28 @@ false false - workflowid - workflow - Workflow_licenseentitledby - licenseentitledby + imagedescriptorid + imagedescriptor + workflow_entityimage + entityimageid workflow - licenseentitledby_workflowid + entityimageinstance_workflow 0 - - 2025-11-06T08:56:34.2 - 4703 - - 33c653d5-e525-4a8a-89a2-95300ba23b13 + 3ece87ea-903e-4475-a110-1d8b4f5caa16 false false iscustomizable - true + false true - true - Workflow_Annotation - Append + false + owner_workflows + None 5.0.0.0 OneToManyRelationship @@ -539501,12 +593830,12 @@ NoCascade - Cascade - Cascade + NoCascade + Restrict NoCascade - Cascade - Cascade - Cascade + NoCascade + NoCascade + NoCascade NoCascade @@ -539514,17 +593843,21 @@ false false - workflowid - workflow - Workflow_Annotation - objectid - annotation - objectid_workflow + ownerid + owner + owner_workflows + ownerid + workflow + ownerid - 1 + 0 + + 2025-11-06T08:56:34.2 + 4703 + - ff1ead74-9339-4265-af38-56f3c3a66d63 + ddbd140e-7cb1-447d-83ee-6ab3afad9550 false @@ -539534,9 +593867,9 @@ true true - workflowid_profilerule - None - 8.0.0.0 + process_processtrigger + ParentChild + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -539556,7 +593889,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -539570,15 +593903,15 @@ false workflowid workflow - workflowid_profilerule - workflowid - channelaccessprofilerule - workflowid + process_processtrigger + processid + processtrigger + processid - 0 + 2 - 675746ca-f089-415e-813e-bbd9378cf7d1 + d2aad218-5f89-426d-b969-ae46df75c91b false @@ -539588,9 +593921,9 @@ true true - process_processstage - ParentChild - 6.0.0.0 + Workflow_routingrule + None + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -539609,12 +593942,12 @@ NoCascade - Cascade - Cascade + NoCascade + NoCascade NoCascade NoCascade - Cascade - Cascade + NoCascade + NoCascade NoCascade @@ -539624,27 +593957,27 @@ false workflowid workflow - process_processstage - processid - processstage - processid + Workflow_routingrule + workflowid + routingrule + workflowid - 2 + 0 - d2aad218-5f89-426d-b969-ae46df75c91b + 378e891d-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable false - true + false true - Workflow_routingrule + regardingobjectid_process None - 6.1.0.0 + 9.1.0.0 OneToManyRelationship DoNotDisplay @@ -539664,7 +593997,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -539678,27 +594011,27 @@ false workflowid workflow - Workflow_routingrule - workflowid - routingrule - workflowid + regardingobjectid_process + regardingobjectid + flowsession + regardingobjectid_process 0 - 4017a34d-93ef-4c42-9fb4-2282bcd194d4 + 3c8e891d-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - lk_asyncoperation_workflowactivationid - Append - 5.0.0.0 + workflow_workflowbinary_Process + None + 1.0.0.0 OneToManyRelationship DoNotDisplay @@ -539718,7 +594051,7 @@ NoCascade NoCascade - RemoveLink + Cascade NoCascade NoCascade NoCascade @@ -539732,27 +594065,27 @@ false workflowid workflow - lk_asyncoperation_workflowactivationid - workflowactivationid - asyncoperation - workflowactivationid + workflow_workflowbinary_Process + process + workflowbinary + Process - 1 + 0 - ddbd140e-7cb1-447d-83ee-6ab3afad9550 + 418e891d-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - process_processtrigger - ParentChild - 6.0.0.0 + workflow_desktopflowbinary_Process + None + 1.3.8.0 OneToManyRelationship DoNotDisplay @@ -539771,12 +594104,12 @@ NoCascade - NoCascade + Cascade Cascade NoCascade - NoCascade - NoCascade - NoCascade + Cascade + Cascade + Cascade NoCascade @@ -539786,27 +594119,27 @@ false workflowid workflow - process_processtrigger - processid - processtrigger - processid + workflow_desktopflowbinary_Process + process + desktopflowbinary + Process - 2 + 0 - 602278cc-a1c9-4698-812a-571cf2832c34 + fd1c8123-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - lk_expiredprocess_processid + workflowmetadata_WorkflowId_workflow None - 8.2.0.0 + 1.8.39.0 OneToManyRelationship UseCollectionName @@ -539815,7 +594148,7 @@ - + 10000 true false @@ -539824,13 +594157,13 @@ 00000000-0000-0000-0000-000000000000 - NoCascade - NoCascade - NoCascade + RemoveLink + Cascade + Cascade NoCascade - NoCascade - NoCascade - NoCascade + Cascade + Cascade + Cascade NoCascade @@ -539840,36 +594173,36 @@ false workflowid workflow - workflow_expiredprocess - processid - expiredprocess - processid + workflowmetadata_WorkflowId_workflow + workflowid + workflowmetadata + WorkflowId 0 - 4de3b758-c1b2-445b-9dfb-38d903e657f5 + bd1d8123-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - true - workflow_parent_workflow + false + false + savingrule_workflow None - 5.0.0.0 + 1.9.2.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true false @@ -539878,13 +594211,13 @@ 00000000-0000-0000-0000-000000000000 - NoCascade - NoCascade - NoCascade + Cascade + Cascade + Cascade NoCascade - NoCascade - NoCascade - NoCascade + Cascade + Cascade + Cascade NoCascade @@ -539894,36 +594227,57 @@ false workflowid workflow - workflow_parent_workflow - parentworkflowid - workflow - parentworkflowid + savingrule_Workflow + workflowid + savingrule + workflowid_Workflow 0 - dd98af6e-f8c4-4d5d-a09b-62e3db96d97a + c81d8123-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true - false - userentityinstancedata_workflow + false + true + workflow_businessprocess None - 5.0.0.0 + 1.9.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - - + + + 7b0937f6-4bde-4525-9ae9-3adec3d054a6 + + false + Root Process + 1033 + + + 00adbd9d-9667-46b2-adb0-b0f6652bda6c + + false + Rodproces + 1030 + + + + 7b0937f6-4bde-4525-9ae9-3adec3d054a6 + + false + Root Process + 1033 + - + 10000 true false @@ -539932,13 +594286,13 @@ 00000000-0000-0000-0000-000000000000 - NoCascade - NoCascade - Cascade + RemoveLink + Cascade + RemoveLink NoCascade - NoCascade - NoCascade - NoCascade + Cascade + Cascade + Cascade NoCascade @@ -539948,36 +594302,36 @@ false workflowid workflow - userentityinstancedata_workflow - objectid - userentityinstancedata - objectid_workflow + workflow_businessprocess + rootworkflowid + businessprocess + rootworkflowid 0 - bf10ee98-4d22-4896-8d69-5f6f7428415c + f61d8123-bbba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable true - true + false true - slaitembase_workflowid + taggedprocess_Process_workflow None - 6.1.0.0 + 1.0.0.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true false @@ -539986,9 +594340,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + RemoveLink NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -540002,17 +594356,17 @@ false workflowid workflow - slaitembase_workflowid - workflowid - slaitem - workflowid + taggedprocess_Process_workflow + process + taggedprocess + Process 0 - 2ef745a4-5f97-4172-9a1d-07922076af15 + 9fa0a02f-f3ba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable @@ -540020,21 +594374,42 @@ true true - slabase_workflowid - None - 6.1.0.0 + adx_invitation_redemptionworkflow + Append + 1.0.0.0 OneToManyRelationship DoNotDisplay Details - - + + + 4bcc18c1-0475-4838-9779-68bc154d9a18 + + true + + 1033 + + + 853eb7cd-e808-4601-834c-66f6424ea6ea + + true + + 1030 + + + + 4bcc18c1-0475-4838-9779-68bc154d9a18 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -540042,7 +594417,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -540056,15 +594431,15 @@ false workflowid workflow - slabase_workflowid - workflowid - sla - workflowid + adx_invitation_redemptionworkflow + adx_redemptionworkflow + adx_invitation + adx_redemptionWorkflow - 0 + 1 - 7f1a5ca0-eae2-40e6-9d1b-97f3cfc51bbe + 4017a34d-93ef-4c42-9fb4-2282bcd194d4 false @@ -540074,7 +594449,7 @@ true true - lk_processsession_processid + lk_asyncoperation_workflowactivationid Append 5.0.0.0 OneToManyRelationship @@ -540096,7 +594471,7 @@ NoCascade NoCascade - Cascade + RemoveLink NoCascade NoCascade NoCascade @@ -540110,15 +594485,15 @@ false workflowid workflow - lk_processsession_processid - processid - processsession - processid + lk_asyncoperation_workflowactivationid + workflowactivationid + asyncoperation + workflowactivationid 1 - e9eb92ce-aa4e-4164-bfbb-dfe561186d04 + 4de3b758-c1b2-445b-9dfb-38d903e657f5 false @@ -540128,8 +594503,8 @@ true true - workflow_dependencies - ParentChild + workflow_parent_workflow + None 5.0.0.0 OneToManyRelationship @@ -540150,7 +594525,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -540164,27 +594539,27 @@ false workflowid workflow - workflow_dependencies - workflowid - workflowdependency - workflowid + workflow_parent_workflow + parentworkflowid + workflow + parentworkflowid - 2 + 0 - c60cc0d5-6e01-4719-b301-653edc825f15 + 54b95759-f128-f111-88b5-7c1e52371eaf false - false + true iscustomizable true - true + false true - lk_translationprocess_processid + flowtriggerinstance_workflowid_workflow None - 8.2.0.0 + 1.10.0.0 OneToManyRelationship UseCollectionName @@ -540193,7 +594568,7 @@ - + 10000 true false @@ -540202,9 +594577,9 @@ 00000000-0000-0000-0000-000000000000 - NoCascade + Cascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -540218,39 +594593,60 @@ false workflowid workflow - workflow_translationprocess - processid - translationprocess - processid + flowtriggerinstance_workflowid_workflow + workflowid + flowtriggerinstance + workflowid 0 - 2c8d32cd-8c30-4a8c-8649-cee75d431e4e + c753125f-efba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true true - lk_newprocess_processid - None - 8.2.0.0 + msdyn_workflow_msdyn_solutionhealthrule_Workflow + Append + 1.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - + + + 40d317d6-101a-43ec-8f9e-d6f8c9e3fc69 + + true + + 1033 + + + 11c5cacf-a111-4c30-88ff-be1ed0f85e9a + + true + + 1030 + + + + 40d317d6-101a-43ec-8f9e-d6f8c9e3fc69 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 @@ -540258,7 +594654,7 @@ NoCascade NoCascade - NoCascade + RemoveLink NoCascade NoCascade NoCascade @@ -540272,51 +594668,72 @@ false workflowid workflow - workflow_newprocess - processid - newprocess - processid + msdyn_workflow_msdyn_solutionhealthrule_Workflow + msdyn_workflow + msdyn_solutionhealthrule + msdyn_Workflow - 0 + 1 - 96866b9b-796a-47ec-afd3-c1ea6834a522 + df53125f-efba-f011-bbd3-7c1e52365f30 - false + true false iscustomizable - true + false true true - Workflow_SyncErrors + msdyn_workflow_msdyn_solutionhealthrule_resolutionaction Append - 8.1.0.0 + 1.0.0.0 OneToManyRelationship DoNotDisplay Details - - + + + 18081685-4da3-4e3d-af13-a10db0aec467 + + true + + 1033 + + + f399ddd3-2be2-410f-84bc-8f4b415d62c2 + + true + + 1030 + + + + 18081685-4da3-4e3d-af13-a10db0aec467 + + true + + 1033 + - + 10000 true - false + true 00000000-0000-0000-0000-000000000000 NoCascade - Cascade - Cascade - Cascade - Cascade - Cascade - Cascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade NoCascade @@ -540326,15 +594743,15 @@ false workflowid workflow - Workflow_SyncErrors - regardingobjectid - syncerror - regardingobjectid_workflow_syncerror + msdyn_workflow_msdyn_solutionhealthrule_resolutionaction + msdyn_resolutionaction + msdyn_solutionhealthrule + msdyn_resolutionaction 1 - 2d01ce7a-3f22-4cd5-bf0f-d1f4ae6ba360 + dd98af6e-f8c4-4d5d-a09b-62e3db96d97a false @@ -540343,8 +594760,8 @@ false true - true - workflow_active_workflow + false + userentityinstancedata_workflow None 5.0.0.0 OneToManyRelationship @@ -540366,7 +594783,7 @@ NoCascade NoCascade - Restrict + Cascade NoCascade NoCascade NoCascade @@ -540380,15 +594797,15 @@ false workflowid workflow - workflow_active_workflow - activeworkflowid - workflow - activeworkflowid + userentityinstancedata_workflow + objectid + userentityinstancedata + objectid_workflow 0 - e217adef-7979-40b4-94e5-c83925fdd891 + ff1ead74-9339-4265-af38-56f3c3a66d63 false @@ -540398,9 +594815,9 @@ true true - workflowid_convertrule + workflowid_profilerule None - 6.1.0.0 + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -540434,27 +594851,27 @@ false workflowid workflow - workflowid_convertrule + workflowid_profilerule workflowid - convertrule + channelaccessprofilerule workflowid 0 - 471c3fa3-d1ff-4460-9be9-e0f24b49c260 + 2d01ce7a-3f22-4cd5-bf0f-d1f4ae6ba360 false false iscustomizable - true + false true true - convertruleitembase_workflowid + workflow_active_workflow None - 7.1.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -540474,7 +594891,7 @@ NoCascade NoCascade - NoCascade + Restrict NoCascade NoCascade NoCascade @@ -540488,13 +594905,67 @@ false workflowid workflow - convertruleitembase_workflowid - workflowid - convertruleitem - workflowid + workflow_active_workflow + activeworkflowid + workflow + activeworkflowid 0 + + d85d9f7d-eeba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + msdyn_workflow_msdyn_pmrecording + Append + 1.0.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + Restrict + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + workflowid + workflow + msdyn_workflow_msdyn_pmrecording + msdyn_sourceworkflow + msdyn_pmrecording + msdyn_sourceworkflow + + 1 + 3ff0df85-aeba-f011-bbd3-7c1e52365f30 @@ -540550,19 +595021,19 @@ 1 - a554f2c6-b3ba-f011-bbd3-7c1e52365f30 + bf10ee98-4d22-4896-8d69-5f6f7428415c false - true + false iscustomizable true - false - false - workflow_componentversionnrddatasourceset - ParentChild - 9.1.0.0 + true + true + slaitembase_workflowid + None + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -540580,9 +595051,9 @@ 00000000-0000-0000-0000-000000000000 - RemoveLink + NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -540596,27 +595067,27 @@ false workflowid workflow - componentversionnrddatasourceset - component - componentversionnrddatasource - component_workflow + slaitembase_workflowid + workflowid + slaitem + workflowid - 2 + 0 - 77d38acd-b3ba-f011-bbd3-7c1e52365f30 + 96866b9b-796a-47ec-afd3-c1ea6834a522 false - true + false iscustomizable true - false - false - workflow_componentversions + true + true + Workflow_SyncErrors Append - 9.1.0.0 + 8.1.0.0 OneToManyRelationship DoNotDisplay @@ -540634,13 +595105,13 @@ 00000000-0000-0000-0000-000000000000 - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade + NoCascade + Cascade + Cascade + Cascade + Cascade + Cascade + Cascade NoCascade @@ -540650,36 +595121,36 @@ false workflowid workflow - componentversions - component - componentversion - component_workflow + Workflow_SyncErrors + regardingobjectid + syncerror + regardingobjectid_workflow_syncerror 1 - 83d38acd-b3ba-f011-bbd3-7c1e52365f30 + f337d99d-beba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false - false - workflow_componentchangesetversions - Append + true + msdyn_retrainworkflow_msdyn_toaimodel + None 1.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - + 10000 true false @@ -540688,7 +595159,7 @@ 00000000-0000-0000-0000-000000000000 - RemoveLink + NoCascade NoCascade RemoveLink NoCascade @@ -540704,15 +595175,15 @@ false workflowid workflow - componentchangesetversions - component - componentchangesetversion - component_workflow + msdyn_retrainworkflow_msdyn_toaimodel + msdyn_retrainworkflowid + msdyn_aimodel + msdyn_retrainworkflowid - 1 + 0 - 99b41fc2-baba-f011-bbd3-7c1e52365f30 + fa37d99d-beba-f011-bbd3-7c1e52365f30 false @@ -540722,9 +595193,9 @@ false true - Workflow_licenseentitledby + msdyn_scheduleinferenceworkflow_msdyn_toaimodel None - 1.7.8.0 + 1.0 OneToManyRelationship UseCollectionName @@ -540758,27 +595229,27 @@ false workflowid workflow - Workflow_licenseentitledby - licenseentitledby - workflow - licenseentitledby_workflowid + msdyn_scheduleinferenceworkflow_msdyn_toaimodel + msdyn_scheduleinferenceworkflowid + msdyn_aimodel + msdyn_scheduleinferenceworkflowid 0 - 378e891d-bbba-f011-bbd3-7c1e52365f30 + 7f1a5ca0-eae2-40e6-9d1b-97f3cfc51bbe false - true + false iscustomizable false - false + true true - regardingobjectid_process - None - 9.1.0.0 + lk_processsession_processid + Append + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -540812,27 +595283,27 @@ false workflowid workflow - regardingobjectid_process - regardingobjectid - flowsession - regardingobjectid_process + lk_processsession_processid + processid + processsession + processid - 0 + 1 - 3c8e891d-bbba-f011-bbd3-7c1e52365f30 + 471c3fa3-d1ff-4460-9be9-e0f24b49c260 false - true + false iscustomizable true - false + true true - workflow_workflowbinary_Process + convertruleitembase_workflowid None - 1.0.0.0 + 7.1.0.0 OneToManyRelationship DoNotDisplay @@ -540852,7 +595323,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -540866,27 +595337,27 @@ false workflowid workflow - workflow_workflowbinary_Process - process - workflowbinary - Process + convertruleitembase_workflowid + workflowid + convertruleitem + workflowid 0 - 418e891d-bbba-f011-bbd3-7c1e52365f30 + 2ef745a4-5f97-4172-9a1d-07922076af15 false - true + false iscustomizable true - false + true true - workflow_desktopflowbinary_Process + slabase_workflowid None - 1.3.8.0 + 6.1.0.0 OneToManyRelationship DoNotDisplay @@ -540905,12 +595376,12 @@ NoCascade - Cascade - Cascade + NoCascade + NoCascade NoCascade - Cascade - Cascade - Cascade + NoCascade + NoCascade + NoCascade NoCascade @@ -540920,27 +595391,102 @@ false workflowid workflow - workflow_desktopflowbinary_Process - process - desktopflowbinary - Process + slabase_workflowid + workflowid + sla + workflowid 0 - fd1c8123-bbba-f011-bbd3-7c1e52365f30 + 09a9f6b5-c9ba-f011-bbd3-7c1e52365f30 - false + true - true + false iscustomizable true - false + true true - workflowmetadata_WorkflowId_workflow - None - 1.8.39.0 + msdyn_workflow_slaitem_customtimecalculationworkflowid + Append + 9.1.0.0 + OneToManyRelationship + + UseCollectionName + Details + + + + 52f304c0-ba40-45e5-a62a-c7cdb1062a54 + + true + + 1033 + + + 9e4326ef-7d39-4152-ab7d-17ad47428e14 + + true + + 1030 + + + + 52f304c0-ba40-45e5-a62a-c7cdb1062a54 + + true + + 1033 + + + 10000 + true + + true + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + NoCascade + RemoveLink + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + workflowid + workflow + msdyn_workflow_slaitem_customtimecalculationworkflowid + msdyn_customtimecalculationworkflowid + slaitem + msdyn_customtimecalculationworkflowid + + 1 + + + 7ea790c0-c1ba-f011-bbd3-7c1e52365f30 + + true + + false + iscustomizable + false + + true + true + Comment_Artifact_Workflow + Append + 9.1.0.0 OneToManyRelationship UseCollectionName @@ -540952,14 +595498,14 @@ 10000 true - false + true 00000000-0000-0000-0000-000000000000 - RemoveLink - Cascade + NoCascade + NoCascade Cascade NoCascade Cascade @@ -540974,27 +595520,27 @@ false workflowid workflow - workflowmetadata_WorkflowId_workflow - workflowid - workflowmetadata - WorkflowId + Comment_Artifact_Workflow + parent + comment + Workflow - 0 + 1 - bd1d8123-bbba-f011-bbd3-7c1e52365f30 + 99b41fc2-baba-f011-bbd3-7c1e52365f30 false true iscustomizable - true + false false - false - savingrule_workflow + true + Workflow_licenseentitledby None - 1.9.2.0 + 1.7.8.0 OneToManyRelationship UseCollectionName @@ -541012,13 +595558,13 @@ 00000000-0000-0000-0000-000000000000 - Cascade - Cascade - Cascade + NoCascade + NoCascade + RemoveLink NoCascade - Cascade - Cascade - Cascade + NoCascade + NoCascade + NoCascade NoCascade @@ -541028,15 +595574,15 @@ false workflowid workflow - savingrule_Workflow - workflowid - savingrule - workflowid_Workflow + Workflow_licenseentitledby + licenseentitledby + workflow + licenseentitledby_workflowid 0 - c81d8123-bbba-f011-bbd3-7c1e52365f30 + a554f2c6-b3ba-f011-bbd3-7c1e52365f30 false @@ -541045,33 +595591,19 @@ true false - true - workflow_businessprocess - None - 1.9.0.0 + false + workflow_componentversionnrddatasourceset + ParentChild + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 7b0937f6-4bde-4525-9ae9-3adec3d054a6 - - false - Root Process - 1033 - - - - 7b0937f6-4bde-4525-9ae9-3adec3d054a6 - - false - Root Process - 1033 - + + - 10000 + true false @@ -541081,10 +595613,64 @@ RemoveLink + NoCascade + Cascade + NoCascade + NoCascade + NoCascade + NoCascade + NoCascade + + + + + false + false + workflowid + workflow + componentversionnrddatasourceset + component + componentversionnrddatasource + component_workflow + + 2 + + + 675746ca-f089-415e-813e-bbd9378cf7d1 + + false + + false + iscustomizable + false + + true + true + process_processstage + ParentChild + 6.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade Cascade - RemoveLink + Cascade NoCascade - Cascade + NoCascade Cascade Cascade NoCascade @@ -541096,27 +595682,27 @@ false workflowid workflow - workflow_businessprocess - rootworkflowid - businessprocess - rootworkflowid + process_processstage + processid + processstage + processid - 0 + 2 - f61d8123-bbba-f011-bbd3-7c1e52365f30 + 602278cc-a1c9-4698-812a-571cf2832c34 false - true + false iscustomizable true - false + true true - taggedprocess_Process_workflow + lk_expiredprocess_processid None - 1.0.0.0 + 8.2.0.0 OneToManyRelationship UseCollectionName @@ -541125,7 +595711,7 @@ - 10000 + true false @@ -541134,9 +595720,9 @@ 00000000-0000-0000-0000-000000000000 - RemoveLink + NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -541150,50 +595736,36 @@ false workflowid workflow - taggedprocess_Process_workflow - process - taggedprocess - Process + workflow_expiredprocess + processid + expiredprocess + processid 0 - d1176cf7-bbba-f011-bbd3-7c1e52365f30 + 2c8d32cd-8c30-4a8c-8649-cee75d431e4e false - true + false iscustomizable true - false + true true - workflow_flowrun_Workflow + lk_newprocess_processid None - 1.6.2.0 + 8.2.0.0 OneToManyRelationship UseCollectionName Details - - - 82469682-ed07-4bf7-96b5-26857e0fa79a - - false - - 1033 - - - - 82469682-ed07-4bf7-96b5-26857e0fa79a - - false - - 1033 - + + - 10000 + true false @@ -541218,36 +595790,36 @@ false workflowid workflow - workflow_flowrun_Workflow - workflow - flowrun - Workflow + workflow_newprocess + processid + newprocess + processid 0 - db176cf7-bbba-f011-bbd3-7c1e52365f30 + 77d38acd-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false - true - flowcapacityassignment_workflow - None - 1.7.6.0 + false + workflow_componentversions + Append + 9.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -541256,13 +595828,13 @@ 00000000-0000-0000-0000-000000000000 - Cascade - Cascade - Cascade + RemoveLink + NoCascade + NoCascade NoCascade - Cascade - Cascade - Cascade + NoCascade + NoCascade + NoCascade NoCascade @@ -541272,36 +595844,36 @@ false workflowid workflow - flowcapacityassignment_workflow - regarding - flowcapacityassignment - regarding_workflow + componentversions + component + componentversion + component_workflow - 0 + 1 - e0176cf7-bbba-f011-bbd3-7c1e52365f30 + 83d38acd-b3ba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false - true - flowevent_workflow - None - 1.7.8.0 + false + workflow_componentchangesetversions + Append + 1.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - 10000 + true false @@ -541310,13 +595882,13 @@ 00000000-0000-0000-0000-000000000000 - Cascade - Cascade - Cascade + RemoveLink + NoCascade + RemoveLink NoCascade - Cascade - Cascade - Cascade + NoCascade + NoCascade + NoCascade NoCascade @@ -541326,50 +595898,36 @@ false workflowid workflow - flowevent_workflow - parentobjectid - flowevent - parentobjectid_workflow + componentchangesetversions + component + componentchangesetversion + component_workflow - 0 + 1 - 02186cf7-bbba-f011-bbd3-7c1e52365f30 + e9eb92ce-aa4e-4164-bfbb-dfe561186d04 false - true + false iscustomizable false - false + true true - workflow_flowlog_cloudflowid - None - 1.8.0.0 + workflow_dependencies + ParentChild + 5.0.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 24c5efa6-6c32-419c-a8fd-048c05b07da1 - - false - - 1033 - - - - 24c5efa6-6c32-419c-a8fd-048c05b07da1 - - false - - 1033 - + + - 10000 + true false @@ -541378,9 +595936,9 @@ 00000000-0000-0000-0000-000000000000 - RemoveLink + NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -541394,50 +595952,90 @@ false workflowid workflow - workflow_flowlog_cloudflowid - cloudflowid - flowlog - cloudflowid + workflow_dependencies + workflowid + workflowdependency + workflowid - 0 + 2 - 11186cf7-bbba-f011-bbd3-7c1e52365f30 + 33c653d5-e525-4a8a-89a2-95300ba23b13 false - true + false iscustomizable - false + true - false + true true - workflow_flowlog_desktopflowid + Workflow_Annotation + Append + 5.0.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Cascade + NoCascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + workflowid + workflow + Workflow_Annotation + objectid + annotation + objectid_workflow + + 1 + + + c60cc0d5-6e01-4719-b301-653edc825f15 + + false + + false + iscustomizable + true + + true + true + lk_translationprocess_processid None - 1.8.0.0 + 8.2.0.0 OneToManyRelationship UseCollectionName Details - - - d8aec2bb-3cc1-4157-8fe0-bc1d0019d491 - - false - - 1033 - - - - d8aec2bb-3cc1-4157-8fe0-bc1d0019d491 - - false - - 1033 - + + - 10000 + true false @@ -541446,7 +596044,7 @@ 00000000-0000-0000-0000-000000000000 - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -541462,50 +596060,36 @@ false workflowid workflow - workflow_flowlog_desktopflowid - desktopflowid - flowlog - desktopflowid + workflow_translationprocess + processid + translationprocess + processid 0 - 49186cf7-bbba-f011-bbd3-7c1e52365f30 + e217adef-7979-40b4-94e5-c83925fdd891 false - true + false iscustomizable false - false + true true - workflow_flowaggregation_workflowid + workflowid_convertrule None - 1.8.45.0 + 6.1.0.0 OneToManyRelationship - UseCollectionName + DoNotDisplay Details - - - 9334a6fe-8e6a-446b-8612-6c04bcd1d889 - - false - - 1033 - - - - 9334a6fe-8e6a-446b-8612-6c04bcd1d889 - - false - - 1033 - + + - 10000 + true false @@ -541514,9 +596098,9 @@ 00000000-0000-0000-0000-000000000000 - Cascade + NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -541530,9 +596114,9 @@ false workflowid workflow - workflow_flowaggregation_workflowid + workflowid_convertrule workflowid - flowaggregation + convertrule workflowid 0 @@ -541592,26 +596176,40 @@ 1 - f337d99d-beba-f011-bbd3-7c1e52365f30 + d1176cf7-bbba-f011-bbd3-7c1e52365f30 false true iscustomizable - false + true false true - msdyn_retrainworkflow_msdyn_toaimodel + workflow_flowrun_Workflow None - 1.0 + 1.6.2.0 OneToManyRelationship UseCollectionName Details - - + + + 82469682-ed07-4bf7-96b5-26857e0fa79a + + false + + 1033 + + + + 82469682-ed07-4bf7-96b5-26857e0fa79a + + false + + 1033 + 10000 true @@ -541624,7 +596222,7 @@ NoCascade NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -541638,15 +596236,15 @@ false workflowid workflow - msdyn_retrainworkflow_msdyn_toaimodel - msdyn_retrainworkflowid - msdyn_aimodel - msdyn_retrainworkflowid + workflow_flowrun_Workflow + workflow + flowrun + Workflow 0 - fa37d99d-beba-f011-bbd3-7c1e52365f30 + db176cf7-bbba-f011-bbd3-7c1e52365f30 false @@ -541656,9 +596254,9 @@ false true - msdyn_scheduleinferenceworkflow_msdyn_toaimodel + flowcapacityassignment_workflow None - 1.0 + 1.7.6.0 OneToManyRelationship UseCollectionName @@ -541676,13 +596274,13 @@ 00000000-0000-0000-0000-000000000000 - NoCascade - NoCascade - RemoveLink + Cascade + Cascade + Cascade NoCascade - NoCascade - NoCascade - NoCascade + Cascade + Cascade + Cascade NoCascade @@ -541692,27 +596290,27 @@ false workflowid workflow - msdyn_scheduleinferenceworkflow_msdyn_toaimodel - msdyn_scheduleinferenceworkflowid - msdyn_aimodel - msdyn_scheduleinferenceworkflowid + flowcapacityassignment_workflow + regarding + flowcapacityassignment + regarding_workflow 0 - 7ea790c0-c1ba-f011-bbd3-7c1e52365f30 + e0176cf7-bbba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true + false true - Comment_Artifact_Workflow - Append - 9.1.0.0 + flowevent_workflow + None + 1.7.8.0 OneToManyRelationship UseCollectionName @@ -541724,14 +596322,14 @@ 10000 true - true + false 00000000-0000-0000-0000-000000000000 - NoCascade - NoCascade + Cascade + Cascade Cascade NoCascade Cascade @@ -541746,27 +596344,27 @@ false workflowid workflow - Comment_Artifact_Workflow - parent - comment - Workflow + flowevent_workflow + parentobjectid + flowevent + parentobjectid_workflow - 1 + 0 - 09a9f6b5-c9ba-f011-bbd3-7c1e52365f30 + 02186cf7-bbba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable - true + false - true + false true - msdyn_workflow_slaitem_customtimecalculationworkflowid - Append - 9.1.0.0 + workflow_flowlog_cloudflowid + None + 1.8.0.0 OneToManyRelationship UseCollectionName @@ -541774,17 +596372,17 @@ - 52f304c0-ba40-45e5-a62a-c7cdb1062a54 + 24c5efa6-6c32-419c-a8fd-048c05b07da1 - true + false 1033 - 52f304c0-ba40-45e5-a62a-c7cdb1062a54 + 24c5efa6-6c32-419c-a8fd-048c05b07da1 - true + false 1033 @@ -541792,15 +596390,15 @@ 10000 true - true + false 00000000-0000-0000-0000-000000000000 - NoCascade + RemoveLink NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -541814,99 +596412,45 @@ false workflowid workflow - msdyn_workflow_slaitem_customtimecalculationworkflowid - msdyn_customtimecalculationworkflowid - slaitem - msdyn_customtimecalculationworkflowid + workflow_flowlog_cloudflowid + cloudflowid + flowlog + cloudflowid - 1 + 0 - d85d9f7d-eeba-f011-bbd3-7c1e52365f30 + 11186cf7-bbba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true + false true - msdyn_workflow_msdyn_pmrecording - Append - 1.0.0.0 + workflow_flowlog_desktopflowid + None + 1.8.0.0 OneToManyRelationship UseCollectionName Details - - - - - 10000 - true - - true - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - Restrict - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - workflowid - workflow - msdyn_workflow_msdyn_pmrecording - msdyn_sourceworkflow - msdyn_pmrecording - msdyn_sourceworkflow - - 1 - - - c753125f-efba-f011-bbd3-7c1e52365f30 - - true - - false - iscustomizable - false - - true - true - msdyn_workflow_msdyn_solutionhealthrule_Workflow - Append - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - 40d317d6-101a-43ec-8f9e-d6f8c9e3fc69 + d8aec2bb-3cc1-4157-8fe0-bc1d0019d491 - true + false 1033 - 40d317d6-101a-43ec-8f9e-d6f8c9e3fc69 + d8aec2bb-3cc1-4157-8fe0-bc1d0019d491 - true + false 1033 @@ -541914,15 +596458,15 @@ 10000 true - true + false 00000000-0000-0000-0000-000000000000 - NoCascade + RemoveLink NoCascade - RemoveLink + NoCascade NoCascade NoCascade NoCascade @@ -541936,113 +596480,45 @@ false workflowid workflow - msdyn_workflow_msdyn_solutionhealthrule_Workflow - msdyn_workflow - msdyn_solutionhealthrule - msdyn_Workflow + workflow_flowlog_desktopflowid + desktopflowid + flowlog + desktopflowid - 1 + 0 - df53125f-efba-f011-bbd3-7c1e52365f30 + 49186cf7-bbba-f011-bbd3-7c1e52365f30 - true + false - false + true iscustomizable false - true - true - msdyn_workflow_msdyn_solutionhealthrule_resolutionaction - Append - 1.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - 18081685-4da3-4e3d-af13-a10db0aec467 - - true - - 1033 - - - - 18081685-4da3-4e3d-af13-a10db0aec467 - - true - - 1033 - - - 10000 - true - - true - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - RemoveLink - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - workflowid - workflow - msdyn_workflow_msdyn_solutionhealthrule_resolutionaction - msdyn_resolutionaction - msdyn_solutionhealthrule - msdyn_resolutionaction - - 1 - - - 9fa0a02f-f3ba-f011-bbd3-7c1e52365f30 - - true - - false - iscustomizable - true - - true + false true - adx_invitation_redemptionworkflow - Append - 1.0.0.0 + workflow_flowaggregation_workflowid + None + 1.8.45.0 OneToManyRelationship - DoNotDisplay + UseCollectionName Details - 4bcc18c1-0475-4838-9779-68bc154d9a18 + 9334a6fe-8e6a-446b-8612-6c04bcd1d889 - true + false 1033 - 4bcc18c1-0475-4838-9779-68bc154d9a18 + 9334a6fe-8e6a-446b-8612-6c04bcd1d889 - true + false 1033 @@ -542050,15 +596526,15 @@ 10000 true - true + false 00000000-0000-0000-0000-000000000000 - NoCascade + Cascade NoCascade - RemoveLink + Cascade NoCascade NoCascade NoCascade @@ -542072,12 +596548,12 @@ false workflowid workflow - adx_invitation_redemptionworkflow - adx_redemptionworkflow - adx_invitation - adx_redemptionWorkflow + workflow_flowaggregation_workflowid + workflowid + flowaggregation + workflowid - 1 + 0 @@ -542447,6 +596923,13 @@ Unique identifier of the team membership. 1033 + + c7eef4d0-b1d4-40c1-b95e-bb875f24f808 + + true + Entydigt id for gruppemedlemskabet. + 1030 + 6453c2fa-2241-db11-898a-0007e9e17ebd @@ -543040,6 +597523,13 @@ Unique identifier of the activity associated with the activity party. (A "party" is any person who is associated with an activity.) 1033 + + 864038ea-7f3f-44e7-8578-3587a7748fce + + true + Entydigt id for den aktivitet, der er tilknyttet aktivitetsparten. (En "part" er en person, der er tilknyttet en aktivitet). + 1030 + 3daac7f4-2241-db11-898a-0007e9e17ebd @@ -543058,6 +597548,13 @@ Activity 1033 + + fd9afad2-0b56-4027-982b-ac58c3c83dde + + true + Aktivitet + 1030 + 3caac7f4-2241-db11-898a-0007e9e17ebd @@ -543163,6 +597660,13 @@ Unique identifier of the activity party. 1033 + + ac914cb7-380e-403c-8dfc-15956a291bc2 + + true + Entydigt id for aktivitetsparten. + 1030 + 14aac7f4-2241-db11-898a-0007e9e17ebd @@ -543181,6 +597685,13 @@ Activity Party 1033 + + 26e2b283-ada3-4607-b666-9aa903622b2a + + true + Aktivitetspart + 1030 + 13aac7f4-2241-db11-898a-0007e9e17ebd @@ -543282,6 +597793,13 @@ Email address to which an email is delivered, and which is associated with the target entity. 1033 + + 3cdd9f31-2ce6-4ee6-9547-1091a3f029cd + + true + Den mailadresse, en mail sendes til, og som er knyttet til målobjektet. + 1030 + 3599ba00-2341-db11-898a-0007e9e17ebd @@ -543300,6 +597818,13 @@ Address 1033 + + 054e3bb9-8570-40a3-af15-c89c3ad8e080 + + true + Adresse + 1030 + 3499ba00-2341-db11-898a-0007e9e17ebd @@ -543360,7 +597885,7 @@ true addressused - 2025-11-06T05:04:17.9970048 + 2026-04-04T10:06:54.7970048 false canmodifyrequirementlevelsettings @@ -543412,6 +597937,13 @@ Email address column number from associated party. 1033 + + 07b5a515-4fa7-45e7-b140-69c6158d2c35 + + true + Nummer på mailadressekolonne fra tilknyttet part. + 1030 + 7612fa03-95f8-42d5-9ba3-f649811ecfd1 @@ -543430,6 +597962,13 @@ Email column number of party 1033 + + 3dc67361-9447-46dc-8aaf-e0f6977f9e8d + + true + Partens mailkolonnenummer + 1030 + 013a32f7-1aa4-4be2-a367-87b3d2e53dd4 @@ -543536,6 +598075,13 @@ Information about whether to allow sending email to the activity party. 1033 + + 97d0cc50-72a4-468f-88eb-2b7352441f6a + + true + Angiver, om det skal være tilladt at sende e-mails til aktivitetsparten. + 1030 + ba53c2fa-2241-db11-898a-0007e9e17ebd @@ -543554,6 +598100,13 @@ Do not allow Emails 1033 + + eed6e202-dfa5-4e5b-ab39-990d92b1eff9 + + true + Tillad ikke e-mails + 1030 + b953c2fa-2241-db11-898a-0007e9e17ebd @@ -543642,6 +598195,13 @@ Information about whether to allow sending email to the activity party. 1033 + + 104c1ad5-9280-4cdf-b47a-51ba19fe665a + + true + Angiver, om det skal være tilladt at sende e-mails til aktivitetsparten. + 1030 + db199bcf-cab4-4c71-910d-d34875bcfae2 @@ -543660,6 +598220,13 @@ Do not allow Emails 1033 + + d10ecd86-db48-47b9-b130-57b9737cbe74 + + true + Tillad ikke e-mails + 1030 + 6a98377c-3f13-442a-826d-7551a245bf42 @@ -543701,6 +598268,13 @@ Allow 1033 + + b563fd6d-1663-4e93-9171-c7d9722d6da0 + + true + Tillad + 1030 + bc53c2fa-2241-db11-898a-0007e9e17ebd @@ -543734,6 +598308,13 @@ Do Not Allow 1033 + + 74e8f026-b2dc-4dfb-88e7-9aa51ee84bbf + + true + Tillad ikke + 1030 + be53c2fa-2241-db11-898a-0007e9e17ebd @@ -543867,6 +598448,13 @@ Information about whether to allow sending faxes to the activity party. 1033 + + dcf7748e-322a-4abb-8775-dd11650cb6b4 + + true + Angiver, om det skal være tilladt at sende faxer til aktivitetsparten. + 1030 + e851c2fa-2241-db11-898a-0007e9e17ebd @@ -543885,6 +598473,13 @@ Do not allow Faxes 1033 + + acd93774-0664-4682-af7c-9832004ab63c + + true + Tillad ikke faxer + 1030 + e751c2fa-2241-db11-898a-0007e9e17ebd @@ -543973,6 +598568,13 @@ Information about whether to allow sending faxes to the activity party. 1033 + + 4216ab68-e9dc-420f-a46e-717eb00cd2f1 + + true + Angiver, om det skal være tilladt at sende faxer til aktivitetsparten. + 1030 + d038e0e3-5f67-4408-8240-9298c04a8ccd @@ -543991,6 +598593,13 @@ Do not allow Faxes 1033 + + 1c1ecb88-1036-4e97-b361-76a56894910d + + true + Tillad ikke faxer + 1030 + 660f553a-b211-43a0-8eac-591dfe53bd0c @@ -544032,6 +598641,13 @@ Allow 1033 + + 97e3dff1-2246-44e5-be4b-2d83fdaed781 + + true + Tillad + 1030 + ea51c2fa-2241-db11-898a-0007e9e17ebd @@ -544065,6 +598681,13 @@ Do Not Allow 1033 + + b62b5141-9e4d-4d39-96e2-0df698a20833 + + true + Tillad ikke + 1030 + ec51c2fa-2241-db11-898a-0007e9e17ebd @@ -544198,6 +598821,13 @@ Information about whether to allow phone calls to the lead. 1033 + + 7055b2c8-524d-485b-ac74-0ecb3ee7bbe5 + + true + Angiver, om det skal være tilladt at ringe til kundeemnet. + 1030 + 14ce89fe-60ef-48b4-876b-0720f8f40fae @@ -544216,6 +598846,13 @@ Do not allow Phone Calls 1033 + + 0047cb1b-653a-4784-9374-fdff0ff6b722 + + true + Tillad ikke telefonopkald + 1030 + aa722d3a-49a2-4284-8bcc-1fd86e51ac51 @@ -544304,6 +598941,13 @@ Information about whether to allow phone calls to the lead. 1033 + + 7e2c53af-a2e3-4066-a867-92e242bf3059 + + true + Angiver, om det skal være tilladt at ringe til kundeemnet. + 1030 + 826d88de-bc56-4834-839e-57ffe78517e1 @@ -544322,6 +598966,13 @@ Do not allow Phone Calls 1033 + + 278a69cf-46a6-4e1b-97cd-d631d9266c29 + + true + Tillad ikke telefonopkald + 1030 + 6f41c48c-1765-4e12-911b-7331637759de @@ -544363,6 +599014,13 @@ Allow 1033 + + f2351256-feb5-41ce-9957-4a569bbe881b + + true + Tillad + 1030 + 3c162a8f-4aa4-4096-83a5-f2ef97daa53a @@ -544396,6 +599054,13 @@ Do Not Allow 1033 + + 7d9e8ee7-cc54-4151-91ab-3f4e7feacc3e + + true + Tillad ikke + 1030 + dc0bac46-5106-4bc4-82e4-c04a39f6e1a1 @@ -544529,6 +599194,13 @@ Information about whether to allow sending postal mail to the lead. 1033 + + 626cb938-c153-49a6-b533-f096bea69a0d + + true + Angiver, om det skal være tilladt at sende alm. post til kundeemnet. + 1030 + 4e46af88-6d98-4936-9c2f-0df32f794f7e @@ -544547,6 +599219,13 @@ Do not allow Postal Mails 1033 + + 5041f8ba-b52c-42a7-9b5d-978b529aa8b8 + + true + Tillad ikke post + 1030 + 0b742d6d-23f3-4d41-9aaa-ee1ce1e313cd @@ -544635,6 +599314,13 @@ Information about whether to allow sending postal mail to the lead. 1033 + + c9b75cbb-8c22-4444-bffd-dbbee0478de0 + + true + Angiver, om det skal være tilladt at sende alm. post til kundeemnet. + 1030 + ce7f2ddb-d317-452f-97ac-d144d870dc03 @@ -544653,6 +599339,13 @@ Do not allow Postal Mails 1033 + + b2866725-c1b0-4ea4-9c75-5cab30702862 + + true + Tillad ikke post + 1030 + 51c24a86-198b-44b6-8868-88034237342b @@ -544694,6 +599387,13 @@ Allow 1033 + + d7165b51-bca5-476d-9754-8f5c2e42994b + + true + Tillad + 1030 + 6b872794-5b28-42eb-aa05-fe35604b3f35 @@ -544727,6 +599427,13 @@ Do Not Allow 1033 + + a2c2346d-89ec-4db6-99d9-1fb7d442a32a + + true + Tillad ikke + 1030 + ca87e504-91ce-4de7-ae4c-f44fb8aed42e @@ -544860,6 +599567,13 @@ Amount of effort used by the resource in a service appointment activity. 1033 + + e9194cd3-f478-4b66-a5fb-037bd2fee397 + + true + Den indsats, der kræves af ressourcen i en serviceaftaleaktivitet. + 1030 + ee91aa12-2341-db11-898a-0007e9e17ebd @@ -544878,6 +599592,13 @@ Effort 1033 + + 7f5a847c-5157-4f8e-a811-d99226351391 + + true + Indsats + 1030 + ed91aa12-2341-db11-898a-0007e9e17ebd @@ -544985,6 +599706,13 @@ For internal use only. 1033 + + 03366440-0786-4c85-941f-5702be036d53 + + true + Kun til intern brug. + 1030 + 4641b506-2341-db11-898a-0007e9e17ebd @@ -545003,6 +599731,13 @@ Exchange Entry 1033 + + 618202a6-d809-41fd-9094-af691bd7a819 + + true + Exchange-post + 1030 + 4541b506-2341-db11-898a-0007e9e17ebd @@ -545115,6 +599850,13 @@ The external id used when the party does not have an email address. 1033 + + fe301587-1d16-4607-845e-a608f6bc28b2 + + true + Det eksterne id, når parten ikke har en mailadresse. + 1030 + 164bb829-44b6-4bbb-8f5a-0cd65bf7f44e @@ -545133,6 +599875,13 @@ External Id 1033 + + e909a9ea-9a1d-4fba-b7de-564897d05f48 + + true + Eksternt id + 1030 + d8bcd075-306d-4ad3-a609-b13d02a067bb @@ -545193,7 +599942,7 @@ true externalid - 2025-11-06T05:04:18.2169984 + 2026-04-04T10:06:55.3929984 true canmodifyrequirementlevelsettings @@ -545245,6 +599994,13 @@ The external id type used when the party does not have an email address. 1033 + + a58d5a44-fc34-41d5-89d7-bd32de7c018c + + true + Den eksterne id-type, når parten ikke har en mailadresse. + 1030 + 2022ea78-d56b-4822-96c0-080a66e767be @@ -545263,6 +600019,13 @@ External Id Type 1033 + + 96d6f9a1-429c-4c8f-8f0a-6d99421d073f + + true + Eksternt id-type + 1030 + 1470e687-edc3-4f65-93e7-0461b87d9903 @@ -545323,7 +600086,7 @@ true externalidtype - 2025-11-06T05:04:18.2470016 + 2026-04-04T10:06:55.7670016 true canmodifyrequirementlevelsettings @@ -545375,6 +600138,13 @@ Type of instance of a recurring series. 1033 + + 73add505-ce61-468a-90a8-09a7603f7003 + + true + Forekomsttype for en tilbagevendende serie. + 1030 + d2173690-50bc-4e0f-961e-e70f5d382ecb @@ -545393,6 +600163,13 @@ Appointment Type 1033 + + 84badb96-298a-4ad4-8adf-29a3c4b60a9d + + true + Aftaletype + 1030 + 1470275c-8c2d-447b-b2f3-a9a42c144f0b @@ -545481,6 +600258,13 @@ Type of instance of a recurring series. 1033 + + 6750cda1-3f3e-42ee-ba20-5a88fa983300 + + true + Forekomsttype for en tilbagevendende serie. + 1030 + 07c70d7b-01bf-4ab6-b65a-b8f26eee8e9b @@ -545499,6 +600283,13 @@ Appointment Type 1033 + + 0c5ff41c-4763-411b-a470-e8f1c479de62 + + true + Aftaletype + 1030 + 7e9ac783-89bd-495b-8d5d-dd56857d7251 @@ -545541,6 +600332,13 @@ Not Recurring 1033 + + 3a8bfb2f-80be-4316-8508-0fb70b0df89f + + true + Skal ikke gentages + 1030 + b40dfea8-b8d6-4124-ac38-62c837f79c84 @@ -545574,6 +600372,13 @@ Recurring Master 1033 + + 7ab462da-9255-4760-b1fc-dcb971aab4bb + + true + Gentaget master + 1030 + d545bdf4-2805-4f2f-be40-22905028cf66 @@ -545607,6 +600412,13 @@ Recurring Instance 1033 + + 5016a0d3-8045-410f-b05f-7aaa305ddbfa + + true + Gentaget forekomst + 1030 + c280ba38-e811-4fe9-ae93-5b6973fef9ad @@ -545640,6 +600452,13 @@ Recurring Exception 1033 + + 0df56e73-f9ca-4f29-a12a-5c135d9548fb + + true + Gentaget undtagelse + 1030 + b449639b-e97d-4edc-a8a9-2553eabdb7f6 @@ -545673,6 +600492,13 @@ Recurring Future Exception 1033 + + 9e21e5e3-def5-4864-bc4b-b627aa5d7ee2 + + true + Gentaget fremtidig undtagelse + 1030 + d13b9933-698d-412c-b956-d004d312619b @@ -545811,6 +600637,13 @@ Information about whether the underlying entity record is deleted. 1033 + + 325952be-f42b-4591-85d9-af2d5d4f5cb4 + + true + Oplysninger om, hvorvidt den underliggende objektpost er slettet. + 1030 + d660a65e-fb50-48ba-9446-310cc2d6f179 @@ -545829,6 +600662,13 @@ Is Party Deleted 1033 + + 6fdf3af8-8991-4fa4-b34c-6303905b671e + + true + Er parten slettet? + 1030 + e57238f4-169b-4ec4-b724-05a2239dbae8 @@ -545917,6 +600757,13 @@ Information about whether the actual party record is deleted. 1033 + + 411b1925-5d8d-4081-a4ed-e019ab4bef13 + + true + Angiver, om den faktiske partpost er slettet. + 1030 + dcea429f-c6da-470a-b9e5-07261ad898d2 @@ -545935,6 +600782,13 @@ Is Party Deleted 1033 + + 55fcc7f2-be06-4fa9-b6c2-ef46dcf77386 + + true + Er parten slettet? + 1030 + b2df0e63-23f2-42ff-8f89-c7d4493e7bdd @@ -545976,6 +600830,13 @@ No 1033 + + f0614577-1570-4bc5-9a4b-855fd98f1f4e + + true + Nej + 1030 + 8be94c28-1efc-4874-863e-65aa438c889d @@ -546009,6 +600870,13 @@ Yes 1033 + + fd0be701-364f-4731-86f6-4274043127b6 + + true + Ja + 1030 + 0c7df0e5-887f-42b8-8eed-8a73241ae393 @@ -546142,6 +601010,13 @@ Unique identifier of the user or team who owns the activity_party. 1033 + + d1ee8945-1bd4-4baf-b1e4-ff59f74a4618 + + true + Entydigt id for den bruger eller det team, der ejer activity_party. + 1030 + 2f572795-aba8-4228-ae9d-0676ebcc0a01 @@ -546160,6 +601035,13 @@ Owner 1033 + + 6c43ae4f-f6db-4398-869d-532cee047603 + + true + Ejer + 1030 + 2f572795-aba8-4228-ae9d-0676ebcc0b01 @@ -546543,6 +601425,13 @@ Role of the person in the activity, such as sender, to, cc, bcc, required, optional, organizer, regarding, or owner. 1033 + + 40fd3583-bd07-4601-a82e-67d2b1799060 + + true + Rollen for personen i aktiviteten, f.eks. afsender, til, cc, bcc, nødvendig, valgfri, organisator, angående eller ejer. + 1030 + cfe9af0c-2341-db11-898a-0007e9e17ebd @@ -546561,6 +601450,13 @@ Participation Type 1033 + + 8cb1c301-c7d9-4040-b0d7-4933f6d906ce + + true + Deltagelsestype + 1030 + cee9af0c-2341-db11-898a-0007e9e17ebd @@ -546621,7 +601517,7 @@ true participationtypemask - 2025-11-06T05:04:18.2930048 + 2026-04-04T10:06:56.1730048 false canmodifyrequirementlevelsettings @@ -546649,6 +601545,13 @@ Role of the person in the activity, such as sender, to, cc, bcc, required, optional, organizer, regarding, or owner. 1033 + + b985f3a1-fb1b-468f-bb52-7db1b464dce9 + + true + Rollen for personen i aktiviteten, f.eks. afsender, til, cc, bcc, nødvendig, valgfri, organisator, angående eller ejer. + 1030 + f7b93bb0-7a33-462a-9d90-5fae6b7ef2bd @@ -546667,6 +601570,13 @@ Participation Type 1033 + + a55760f4-5e33-4623-8645-12409b25964d + + true + Deltagelsestype + 1030 + c69529ca-2172-436d-88db-7f27b0132653 @@ -546709,6 +601619,13 @@ Sender 1033 + + cb3f9e98-4fd0-4528-bc60-adbce621c4dc + + true + Afsender + 1030 + d1e9af0c-2341-db11-898a-0007e9e17ebd @@ -546742,6 +601659,13 @@ To Recipient 1033 + + 6b2a96fd-7932-42ee-8463-f0e4df867ee0 + + true + Til-modtager + 1030 + d3e9af0c-2341-db11-898a-0007e9e17ebd @@ -546775,6 +601699,13 @@ CC Recipient 1033 + + 1f0d91b1-7bbc-4206-bdd7-5d703830fa2e + + true + CC-modtager + 1030 + d5e9af0c-2341-db11-898a-0007e9e17ebd @@ -546808,6 +601739,13 @@ BCC Recipient 1033 + + 360346ef-ef10-48bf-9260-9185fb15f679 + + true + BCC-modtager + 1030 + d7e9af0c-2341-db11-898a-0007e9e17ebd @@ -546841,6 +601779,13 @@ Required attendee 1033 + + 88fdf6ad-2ee9-4ac6-bd04-2355ca134bde + + true + Nødvendig deltager + 1030 + d9e9af0c-2341-db11-898a-0007e9e17ebd @@ -546874,6 +601819,13 @@ Optional attendee 1033 + + 2114e871-c45d-4e4f-8616-d10c852e3d1c + + true + Valgfri deltager + 1030 + dbe9af0c-2341-db11-898a-0007e9e17ebd @@ -546907,6 +601859,13 @@ Organizer 1033 + + 137054a7-c573-4dcb-b285-c0c0240959b0 + + true + Arrangør + 1030 + dde9af0c-2341-db11-898a-0007e9e17ebd @@ -546940,6 +601899,13 @@ Regarding 1033 + + c53253a8-ee88-4732-b2c2-f104e618b00b + + true + Angående + 1030 + dfe9af0c-2341-db11-898a-0007e9e17ebd @@ -546973,6 +601939,13 @@ Owner 1033 + + bfe4f185-dae9-4dc2-83d2-0483f584e79a + + true + Ejer + 1030 + e1e9af0c-2341-db11-898a-0007e9e17ebd @@ -547006,6 +601979,13 @@ Resource 1033 + + efe19201-7373-44af-a2d1-a81d5676fa91 + + true + Ressource + 1030 + e3e9af0c-2341-db11-898a-0007e9e17ebd @@ -547039,6 +602019,13 @@ Customer 1033 + + e99400a0-d8c3-42aa-a375-11e9c6996bf2 + + true + Kunde + 1030 + e5e9af0c-2341-db11-898a-0007e9e17ebd @@ -547072,6 +602059,13 @@ Chat Participant 1033 + + e5aee724-5ec2-4cf3-8ee3-83f8009906ba + + true + Chatdeltager + 1030 + 11beb4b0-6b65-49b7-b399-b3c3bb6fa6bb @@ -547105,6 +602099,13 @@ Related 1033 + + cf3f95cc-431a-44e3-8f72-ee66f7652111 + + true + Relaterede + 1030 + e636d53a-2932-4e2f-85e4-2f7ec6673af0 @@ -547243,6 +602244,13 @@ Unique identifier of the party associated with the activity. 1033 + + 3fa101af-7198-4153-b7a1-feccf2cbdf04 + + true + Entydigt id for den part, der er tilknyttet aktiviteten. + 1030 + dcaac7f4-2241-db11-898a-0007e9e17ebd @@ -547261,6 +602269,13 @@ Party 1033 + + ea0213f2-264e-4f4c-9e75-570d5a105d79 + + true + Part + 1030 + dbaac7f4-2241-db11-898a-0007e9e17ebd @@ -547567,6 +602582,13 @@ Scheduled end time of the activity. 1033 + + 02c3a62e-eb45-4b8b-9105-406833ac25ae + + true + Aktivitetens planlagte sluttidspunkt. + 1030 + 41e8af0c-2341-db11-898a-0007e9e17ebd @@ -547585,6 +602607,13 @@ Scheduled End 1033 + + 1b9ffbb7-bf39-421a-998f-4b14c2194e7f + + true + Planlagt slutning + 1030 + 40e8af0c-2341-db11-898a-0007e9e17ebd @@ -547698,6 +602727,13 @@ Scheduled start time of the activity. 1033 + + a5fdcd4f-5be6-4ff5-afc6-8e7254de6b15 + + true + Aktivitetens planlagte starttidspunkt. + 1030 + 6253c2fa-2241-db11-898a-0007e9e17ebd @@ -547716,6 +602752,13 @@ Scheduled Start 1033 + + f0fef9d5-564e-4e85-ac31-c83b3851952b + + true + Planlagt start + 1030 + 6153c2fa-2241-db11-898a-0007e9e17ebd @@ -547829,6 +602872,13 @@ The name of the party to be used when the party is not resolved to an entity. 1033 + + e188b2fd-c5a5-4674-8e43-1fc68142f010 + + true + Navnet på den part, der skal bruges, når parten ikke er løst til et objekt. + 1030 + ad7bf6ac-9a68-47e7-a218-ee06d148fb5b @@ -547847,6 +602897,13 @@ Unresolved Party Name 1033 + + 35c08ddd-e78f-47c7-a592-fca3cd6a2f5a + + true + Navn på ukendt part + 1030 + e9d17cca-dc14-4c49-8d98-486013c1d728 @@ -547907,7 +602964,7 @@ true unresolvedpartyname - 2025-11-06T05:04:18.2630016 + 2026-04-04T10:06:55.9399936 true canmodifyrequirementlevelsettings @@ -548103,6 +603160,13 @@ Person or group associated with an activity. An activity can have multiple activity parties. 1033 + + 1dd9f795-e5a4-4b54-beb8-3e32d1303057 + + true + Den person eller gruppe, der er tilknyttet en aktivitet. En aktivitet kan have flere aktivitetsparter. + 1030 + 38dc01b9-2241-db11-898a-0007e9e17ebd @@ -548121,6 +603185,13 @@ Activity Parties 1033 + + 46b74434-080c-45c8-a008-fdde4c7a0c37 + + true + Aktivitetsparter + 1030 + 3adc01b9-2241-db11-898a-0007e9e17ebd @@ -548139,6 +603210,13 @@ Activity Party 1033 + + c6aa47e8-91b8-44b3-8fac-ee2a746411b4 + + true + Aktivitetspart + 1030 + 39dc01b9-2241-db11-898a-0007e9e17ebd @@ -548244,7 +603322,7 @@ - f50ae162-4efb-4d64-8184-d8d4921d007d + 72ce3803-3a65-474a-8c3c-55c59f96a12f false @@ -548254,7 +603332,7 @@ true true - account_activity_parties + queue_activity_parties Append 5.0.0.0 OneToManyRelationship @@ -548288,17 +603366,17 @@ false false - accountid - account - account_activity_parties + queueid + queue + queue_activity_parties partyid activityparty - partyid_account + partyid_queue 1 - 5fabfec5-bbf7-4cb7-87f1-8cf3c1ecea05 + 8377ff05-d5a6-40ea-a475-aad97678b50d false @@ -548308,9 +603386,9 @@ true true - letter_activity_parties - None - 5.0.0.0 + knowledgearticle_activity_parties + Append + 8.0.0.0 OneToManyRelationship DoNotDisplay @@ -548342,17 +603420,17 @@ false false - activityid - letter - letter_activity_parties - activityid + knowledgearticleid + knowledgearticle + knowledgearticle_activity_parties + partyid activityparty - activityid_letter + partyid_knowledgearticle - 0 + 1 - 264d0ecb-a99b-4736-9dc8-7a37c49518fb + 891c4d19-72fb-4da8-a2c5-fa5a378ff3a8 false @@ -548362,8 +603440,8 @@ true true - phonecall_activity_parties - None + activitypointer_activity_parties + ParentChild 5.0.0.0 OneToManyRelationship @@ -548384,7 +603462,7 @@ NoCascade NoCascade - NoCascade + Cascade NoCascade NoCascade NoCascade @@ -548397,28 +603475,28 @@ false false activityid - phonecall - phonecall_activity_parties + activitypointer + activitypointer_activity_parties activityid activityparty - activityid_phonecall + activityid_activitypointer - 0 + 2 - 8ccbdf7e-5df9-4818-aaf1-7dc46cc875ab + b3917323-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - task_activity_parties + adx_inviteredemption_activity_parties None - 5.0.0.0 + 1.0.2407.1 OneToManyRelationship DoNotDisplay @@ -548451,28 +603529,28 @@ false false activityid - task - task_activity_parties + adx_inviteredemption + adx_inviteredemption_activity_parties activityid activityparty - activityid_task + activityid_adx_inviteredemption_activityparty 0 - f05a12a0-7b67-41a9-9d4a-2ac08e2fa052 + d0e2a029-f3ba-f011-bbd3-7c1e52365f30 false - false + true iscustomizable - false + true - true + false true - recurringappointmentmaster_activity_parties + adx_portalcomment_activity_parties None - 5.0.0.0 + 1.0.2407.1 OneToManyRelationship DoNotDisplay @@ -548505,70 +603583,16 @@ false false activityid - recurringappointmentmaster - recurringappointmentmaster_activity_parties + adx_portalcomment + adx_portalcomment_activity_parties activityid activityparty - activityid_recurringappointmentmaster + activityid_adx_portalcomment_activityparty 0 - 593d46e7-9f4b-460f-beb8-fcb6f1a1d04e - - false - - false - iscustomizable - false - - true - true - contact_activity_parties - Append - 5.0.0.0 - OneToManyRelationship - - DoNotDisplay - Details - - - - - - true - - false - - - 00000000-0000-0000-0000-000000000000 - - - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - NoCascade - - - - - false - false - contactid - contact - contact_activity_parties - partyid - activityparty - partyid_contact - - 1 - - - 65f684ea-0597-44db-9838-5db18930ce4d + 0ea84449-1a6e-4dc4-a594-523bdb1f7a24 false @@ -548578,7 +603602,7 @@ true true - system_user_activity_parties + appointment_activity_parties None 5.0.0.0 OneToManyRelationship @@ -548612,17 +603636,17 @@ false false - systemuserid - systemuser - system_user_activity_parties - partyid + activityid + appointment + appointment_activity_parties + activityid activityparty - partyid_systemuser + activityid_appointment 0 - 0ea84449-1a6e-4dc4-a594-523bdb1f7a24 + f50ae162-4efb-4d64-8184-d8d4921d007d false @@ -548632,8 +603656,8 @@ true true - appointment_activity_parties - None + account_activity_parties + Append 5.0.0.0 OneToManyRelationship @@ -548666,14 +603690,14 @@ false false - activityid - appointment - appointment_activity_parties - activityid + accountid + account + account_activity_parties + partyid activityparty - activityid_appointment + partyid_account - 0 + 1 0bacb177-47d5-4e61-a34c-5020407c0249 @@ -548730,7 +603754,7 @@ 0 - 72ce3803-3a65-474a-8c3c-55c59f96a12f + 8ccbdf7e-5df9-4818-aaf1-7dc46cc875ab false @@ -548740,8 +603764,8 @@ true true - queue_activity_parties - Append + task_activity_parties + None 5.0.0.0 OneToManyRelationship @@ -548774,29 +603798,29 @@ false false - queueid - queue - queue_activity_parties - partyid + activityid + task + task_activity_parties + activityid activityparty - partyid_queue + activityid_task - 1 + 0 - 8377ff05-d5a6-40ea-a475-aad97678b50d + 380c3e85-c8ba-f011-bbd3-7c1e52365f30 false false iscustomizable - false + true true true - knowledgearticle_activity_parties - Append - 8.0.0.0 + chat_activity_parties + None + 6.0.0.0 OneToManyRelationship DoNotDisplay @@ -548828,17 +603852,17 @@ false false - knowledgearticleid - knowledgearticle - knowledgearticle_activity_parties - partyid + activityid + chat + chat_activity_parties + activityid activityparty - partyid_knowledgearticle + activityid_chat_activityparty - 1 + 0 - c36f5fd7-7dcc-4e46-a2a1-aa0133837f22 + f05a12a0-7b67-41a9-9d4a-2ac08e2fa052 false @@ -548848,7 +603872,7 @@ true true - email_activity_parties + recurringappointmentmaster_activity_parties None 5.0.0.0 OneToManyRelationship @@ -548883,11 +603907,11 @@ false false activityid - email - email_activity_parties + recurringappointmentmaster + recurringappointmentmaster_activity_parties activityid activityparty - activityid_email + activityid_recurringappointmentmaster 0 @@ -548946,7 +603970,7 @@ 0 - 891c4d19-72fb-4da8-a2c5-fa5a378ff3a8 + 5fabfec5-bbf7-4cb7-87f1-8cf3c1ecea05 false @@ -548956,8 +603980,8 @@ true true - activitypointer_activity_parties - ParentChild + letter_activity_parties + None 5.0.0.0 OneToManyRelationship @@ -548978,7 +604002,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -548991,28 +604015,28 @@ false false activityid - activitypointer - activitypointer_activity_parties + letter + letter_activity_parties activityid activityparty - activityid_activitypointer + activityid_letter - 2 + 0 - 380c3e85-c8ba-f011-bbd3-7c1e52365f30 + 264d0ecb-a99b-4736-9dc8-7a37c49518fb false false iscustomizable - true + false true true - chat_activity_parties + phonecall_activity_parties None - 6.0.0.0 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -549045,28 +604069,28 @@ false false activityid - chat - chat_activity_parties + phonecall + phonecall_activity_parties activityid activityparty - activityid_chat_activityparty + activityid_phonecall 0 - b3917323-f3ba-f011-bbd3-7c1e52365f30 + c36f5fd7-7dcc-4e46-a2a1-aa0133837f22 false - true + false iscustomizable - true + false - false + true true - adx_inviteredemption_activity_parties + email_activity_parties None - 1.0.2407.1 + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -549099,28 +604123,28 @@ false false activityid - adx_inviteredemption - adx_inviteredemption_activity_parties + email + email_activity_parties activityid activityparty - activityid_adx_inviteredemption_activityparty + activityid_email 0 - d0e2a029-f3ba-f011-bbd3-7c1e52365f30 + 593d46e7-9f4b-460f-beb8-fcb6f1a1d04e false - true + false iscustomizable - true + false - false + true true - adx_portalcomment_activity_parties - None - 1.0.2407.1 + contact_activity_parties + Append + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -549152,21 +604176,17 @@ false false - activityid - adx_portalcomment - adx_portalcomment_activity_parties - activityid + contactid + contact + contact_activity_parties + partyid activityparty - activityid_adx_portalcomment_activityparty + partyid_contact - 0 + 1 - - 2025-11-06T05:04:19.3100032 - 135 - - 0460c205-f770-4932-8076-94c3e969d2ac + 65f684ea-0597-44db-9838-5db18930ce4d false @@ -549175,8 +604195,8 @@ false true - false - userentityinstancedata_activityparty + true + system_user_activity_parties None 5.0.0.0 OneToManyRelationship @@ -549198,7 +604218,7 @@ NoCascade NoCascade - Cascade + NoCascade NoCascade NoCascade NoCascade @@ -549210,29 +604230,33 @@ false false - activitypartyid - activityparty - userentityinstancedata_activityparty - objectid - userentityinstancedata - objectid_activityparty + systemuserid + systemuser + system_user_activity_parties + partyid + activityparty + partyid_systemuser 0 + + 2026-04-04T10:06:58.3929984 + 135 + - ad6220c0-8ff3-4568-b8f5-202374f9e87a + 0460c205-f770-4932-8076-94c3e969d2ac false false iscustomizable - true + false true - true - ActivityParty_SyncErrors - Append - 8.1.0.0 + false + userentityinstancedata_activityparty + None + 5.0.0.0 OneToManyRelationship DoNotDisplay @@ -549251,12 +604275,12 @@ NoCascade - Cascade + NoCascade Cascade - Cascade - Cascade - Cascade - Cascade + NoCascade + NoCascade + NoCascade + NoCascade NoCascade @@ -549266,12 +604290,12 @@ false activitypartyid activityparty - ActivityParty_SyncErrors - regardingobjectid - syncerror - regardingobjectid_activityparty_syncerror + userentityinstancedata_activityparty + objectid + userentityinstancedata + objectid_activityparty - 1 + 0 a20f836c-daba-f011-bbd3-7c1e52365f30 @@ -549327,6 +604351,60 @@ 0 + + ad6220c0-8ff3-4568-b8f5-202374f9e87a + + false + + false + iscustomizable + true + + true + true + ActivityParty_SyncErrors + Append + 8.1.0.0 + OneToManyRelationship + + DoNotDisplay + Details + + + + + + true + + false + + + 00000000-0000-0000-0000-000000000000 + + + NoCascade + Cascade + Cascade + Cascade + Cascade + Cascade + Cascade + NoCascade + + + + + false + false + activitypartyid + activityparty + ActivityParty_SyncErrors + regardingobjectid + syncerror + regardingobjectid_activityparty_syncerror + + 1 + 8 @@ -549715,6 +604793,13 @@ Fiscal Period of Goal 1033 + + e0b2d3c7-dd08-4ac3-962a-5705d7a7f31f + + true + Målets regnskabsperiode + 1030 + 1ce64055-f113-df11-a16e-00155d7aa40d @@ -549733,6 +604818,13 @@ Fiscal Period 1033 + + 3f9d3c96-d35c-40bc-87d9-17d129ba6a84 + + true + Regnskabsperiode + 1030 + 1be64055-f113-df11-a16e-00155d7aa40d @@ -549775,6 +604867,13 @@ Quarter 1 1033 + + 20342b4e-7af0-4d41-a8a7-83903241d596 + + true + 1. kvartal + 1030 + 0b9bc51d-2c85-41df-aeec-6c11e0440c84 @@ -549808,6 +604907,13 @@ Quarter 2 1033 + + 9a6267c2-81ad-49b5-a9fd-3ccf29a4cd86 + + true + 2. kvartal + 1030 + c8c7cf27-605c-4c65-959e-d7b7cdb5d45c @@ -549841,6 +604947,13 @@ Quarter 3 1033 + + 16222e3c-d6b7-42b4-a2e3-d9491c86542a + + true + 3. kvartal + 1030 + 44fee19c-8df9-4fb5-bd13-2a525df2f4dc @@ -549874,6 +604987,13 @@ Quarter 4 1033 + + ab8a3179-6c71-4113-aa22-49d7a83806bf + + true + 4. kvartal + 1030 + 7594448e-4862-46ce-a110-b0c1db5fba79 @@ -549907,6 +605027,13 @@ January 1033 + + c7eb6a74-6983-4ad3-b037-045eab3c7069 + + true + Januar + 1030 + feb01aee-b317-4acb-ac69-f8ccfd4f3eed @@ -549940,6 +605067,13 @@ February 1033 + + 58a2595c-b485-4ee5-9a3a-c30f92fb0715 + + true + Februar + 1030 + ef1113ac-af38-4586-8d67-cb7d11f5133c @@ -549973,6 +605107,13 @@ March 1033 + + 1402b75b-fa58-44a2-8912-22a80609018c + + true + Marts + 1030 + ba7fbd5b-d4e0-4701-b0f9-94b736ea9f86 @@ -550006,6 +605147,13 @@ April 1033 + + 24a4e4d4-8a75-49c9-a84f-aedf420b6457 + + true + April + 1030 + c922c617-aa78-4ed7-8f0e-5a9b8b4ef981 @@ -550039,6 +605187,13 @@ May 1033 + + c3f193f7-26af-4c5e-815a-cb69d956aea9 + + true + Maj + 1030 + 5c792114-2597-4c78-98ac-76176e2debf0 @@ -550072,6 +605227,13 @@ June 1033 + + cecb5885-0e00-4355-b555-f34490304c3b + + true + Juni + 1030 + 29f6ea4f-3d32-450a-8190-8609e648c2fa @@ -550105,6 +605267,13 @@ July 1033 + + b3d84da2-9c90-4dbd-bbff-d30257f3bd53 + + true + Juli + 1030 + 7d83aadf-39ff-4115-bb27-cb0e93ddfcdb @@ -550138,6 +605307,13 @@ August 1033 + + 3ef14c83-21b4-4b85-a74d-e361fd706f6d + + true + August + 1030 + dea6d853-b3d8-4e84-b622-2cc803b2a87b @@ -550171,6 +605347,13 @@ September 1033 + + 9be6f158-e68b-4de6-a7ec-444be108a583 + + true + September + 1030 + d811a049-ffef-4c95-b7ed-f12657ce6a69 @@ -550204,6 +605387,13 @@ October 1033 + + 1e3344f5-5734-43e8-8d99-b2e66cacf13b + + true + Oktober + 1030 + 0ca4030f-77f1-4ae2-8468-3575a838f75e @@ -550237,6 +605427,13 @@ November 1033 + + 7a84685d-f8b4-4326-a1ee-d1d9743ac4d1 + + true + November + 1030 + 6e25f7c6-72e9-48ad-ba76-e4666dbb2470 @@ -550270,6 +605467,13 @@ December 1033 + + 56d7ca59-d1e8-4695-98fb-ad98c2666a3f + + true + December + 1030 + 4499455d-dff9-493e-a5a9-408e45686992 @@ -550303,6 +605507,13 @@ Semester 1 1033 + + 35c6cc96-20c9-4f43-8490-eab78eff377c + + true + 1. semester + 1030 + 362d064e-04f6-4b0f-bac1-1225cfa77a88 @@ -550336,6 +605547,13 @@ Semester 2 1033 + + 3298ed55-6f2a-4e08-91ec-31a15f7c3475 + + true + 2. semester + 1030 + 04c810f6-b038-4636-b644-82225a165b1c @@ -550369,6 +605587,13 @@ Annual 1033 + + 167685e6-498e-4de2-9376-aed6db4e1670 + + true + Årligt + 1030 + 7805bfb4-fc3c-40e1-89df-5538ab70fcb6 @@ -550402,6 +605627,13 @@ P1 1033 + + ee637cb2-4360-4411-8b24-3718156d7717 + + true + P1 + 1030 + 6003ffa7-5afa-45e0-9f67-236c50f6f6ac @@ -550435,6 +605667,13 @@ P2 1033 + + d02db983-d1ad-4b24-bb82-fd46aad4187d + + true + P2 + 1030 + 5312432a-abe4-4299-afbc-c00519b55fda @@ -550468,6 +605707,13 @@ P3 1033 + + f7094d91-de5c-4e22-838a-e1d08bd96744 + + true + P3 + 1030 + 4ad8c82a-7bb9-4414-b131-369bced55ef2 @@ -550501,6 +605747,13 @@ P4 1033 + + 1af35e00-3573-4797-b5a9-6efe02baffd1 + + true + P4 + 1030 + 5f17944c-27ac-4bd6-99c9-b02bb963b781 @@ -550534,6 +605787,13 @@ P5 1033 + + 12ac09b2-9f24-4dba-9b0c-4fa46d87fd9b + + true + P5 + 1030 + 998fb621-6a30-42a0-a5db-9a1306d1de97 @@ -550567,6 +605827,13 @@ P6 1033 + + dbecb2d9-fecf-4d12-8f59-dc58ca728403 + + true + P6 + 1030 + 9483ad4c-759d-43f0-9576-24aafcb45454 @@ -550600,6 +605867,13 @@ P7 1033 + + a7d52d83-95bb-46fb-a0f2-09c6506ce33a + + true + P7 + 1030 + aa4b678a-eeab-46c3-a77f-8d1e954f45d7 @@ -550633,6 +605907,13 @@ P8 1033 + + f3dbc890-30b3-4b73-89fb-9203554c8c1e + + true + P8 + 1030 + 89b71534-0d9f-4ba2-8046-1d577c92220f @@ -550666,6 +605947,13 @@ P9 1033 + + aee758b0-fb29-4c6a-8ea8-917397722b3c + + true + P9 + 1030 + 08f38bd1-68c0-4c9b-9e60-d97299426c18 @@ -550699,6 +605987,13 @@ P10 1033 + + 43909523-4fd6-42a0-b224-241f51e0acf2 + + true + P10 + 1030 + f28b7667-120d-4ac5-b6b7-d3f9c37e8cad @@ -550732,6 +606027,13 @@ P11 1033 + + fc995db9-22d8-4b7b-a6ab-68ca48555603 + + true + P11 + 1030 + 918c2668-4e16-460f-935d-3ac7bb16864c @@ -550765,6 +606067,13 @@ P12 1033 + + 1829bd92-da6c-42b9-9c2f-139412cb49a1 + + true + P12 + 1030 + cc6b725f-d1ed-46c4-89f4-aac299d0b6ab @@ -550798,6 +606107,13 @@ P13 1033 + + e0bc10f9-d599-4791-938a-daeb926a094d + + true + P13 + 1030 + ec7a3600-6298-485d-8f78-7f5f27c6c2c0 @@ -550826,6 +606142,13 @@ Fiscal Year of Goal 1033 + + bcc98c37-e6d9-47a6-8588-4bd9492299a8 + + true + Målets regnskabsår + 1030 + 9c55fd63-f113-df11-a16e-00155d7aa40d @@ -550844,6 +606167,13 @@ Fiscal Year 1033 + + 4809b8e8-4b53-44ea-920d-707ed23c808f + + true + Regnskabsår + 1030 + 9b55fd63-f113-df11-a16e-00155d7aa40d @@ -550886,6 +606216,13 @@ FY2038 1033 + + 223baa1c-5310-413d-a082-357287c6407b + + true + RÅ2038 + 1030 + b2538da7-0250-45d6-981a-a55ccea59d56 @@ -550919,6 +606256,13 @@ FY2037 1033 + + 4121b5a3-d977-40e6-bc14-706d71b50548 + + true + RÅ2037 + 1030 + b0a622da-461d-48a9-a977-54508ac9b28c @@ -550952,6 +606296,13 @@ FY2036 1033 + + 087a8dfa-21d6-422d-b965-11d48482d4d5 + + true + RÅ2036 + 1030 + 18fae3bd-faae-4f32-aa3d-e62b1189f4e1 @@ -550985,6 +606336,13 @@ FY2035 1033 + + 3db2ddce-1ee9-4cb5-8c7c-46b62c085f5b + + true + RÅ2035 + 1030 + ca188765-5827-4ade-b32e-0d30ae2d344e @@ -551018,6 +606376,13 @@ FY2034 1033 + + afce614f-1d8c-451c-be17-b103728285f1 + + true + RÅ2034 + 1030 + 98529987-616f-47ab-b286-70ea538935d4 @@ -551051,6 +606416,13 @@ FY2033 1033 + + 7535d77b-fd17-4bba-a0d9-656ee32259c1 + + true + RÅ2033 + 1030 + acb88f49-b340-46ce-9bc5-ac0ab8d7389e @@ -551084,6 +606456,13 @@ FY2032 1033 + + f18eec74-3e4f-481d-8bf9-5a0f6334f19f + + true + RÅ2032 + 1030 + 216a2ec7-4e6a-4ccc-a4f7-a0136bf937d3 @@ -551117,6 +606496,13 @@ FY2031 1033 + + e8131d90-c932-4bb0-a026-ee1fa5d0140c + + true + RÅ2031 + 1030 + 798a1e19-4dd3-43da-bb74-4d22bde9b150 @@ -551150,6 +606536,13 @@ FY2030 1033 + + c9d5a24b-cdf6-4cf2-bc2e-8f54bbd93cb3 + + true + RÅ2030 + 1030 + 3856be3d-446e-4086-a4bb-3860e936fa0f @@ -551183,6 +606576,13 @@ FY2029 1033 + + 70fd0e90-9644-4de4-b79b-a3bcabfa44e4 + + true + RÅ2029 + 1030 + fc938b78-c2ef-4289-9856-102f93b940a8 @@ -551216,6 +606616,13 @@ FY2028 1033 + + 8817c78a-efdc-4567-ab6c-6af5c8095c8c + + true + RÅ2028 + 1030 + 79c3ccac-71e3-467f-8f26-88c049617a44 @@ -551249,6 +606656,13 @@ FY2027 1033 + + 122153e7-e2b5-499e-8572-bde0e303da1d + + true + RÅ2027 + 1030 + 614eb813-7973-4fc2-b985-a7c29a304ed9 @@ -551282,6 +606696,13 @@ FY2026 1033 + + e071edfa-6739-4537-b40f-e17daa76bc13 + + true + RÅ2026 + 1030 + 3d6ddb48-9279-45c4-a5d0-fa71c25b0b31 @@ -551315,6 +606736,13 @@ FY2025 1033 + + 1fc8ab4c-f229-4f2f-a875-a43ac1854860 + + true + RÅ2025 + 1030 + ad2f76bf-e4c1-4c67-9a2d-c98cc5a805e1 @@ -551348,6 +606776,13 @@ FY2024 1033 + + d881e492-3e3c-4c32-9b11-5903ea1ed401 + + true + RÅ2024 + 1030 + 358704a0-b1c6-4c53-b21d-04560f66a76c @@ -551381,6 +606816,13 @@ FY2023 1033 + + c5a41a1b-0741-4ee2-a877-2f967abf1072 + + true + RÅ2023 + 1030 + d2e1d1c9-9547-4741-a604-8d739a40a8df @@ -551414,6 +606856,13 @@ FY2022 1033 + + 847941a3-6aa9-4c33-bbc0-7bb8dd9cf401 + + true + RÅ2022 + 1030 + 48bca35a-19ab-47c8-8d8c-78ed18e3d80a @@ -551447,6 +606896,13 @@ FY2021 1033 + + 24a61274-b413-4de7-94b3-ebdf4d0c7f5a + + true + RÅ2021 + 1030 + e72f75eb-c305-4c2d-9da4-0690a10539c6 @@ -551480,6 +606936,13 @@ FY2020 1033 + + 88224c9e-0987-4ec6-a852-7af088977ddd + + true + RÅ2020 + 1030 + 6baa8b49-b3ad-480c-b718-b9d9a1f5d746 @@ -551513,6 +606976,13 @@ FY2019 1033 + + ea080a65-76bd-439b-9215-5878cf723c2b + + true + RÅ2019 + 1030 + 88025b29-ca7e-4294-bcb3-d04828dcf509 @@ -551546,6 +607016,13 @@ FY2018 1033 + + 5005c3dc-6a93-4b6c-a287-fc80dd93f16a + + true + RÅ2018 + 1030 + 465bc8fd-f559-4c2f-8839-c4ff50756540 @@ -551579,6 +607056,13 @@ FY2017 1033 + + 40814baa-3514-43df-aae0-7e6e06c9af81 + + true + RÅ2017 + 1030 + 4bb1f0f0-b298-4147-907d-e582924100a2 @@ -551612,6 +607096,13 @@ FY2016 1033 + + 311d2265-7327-4283-8fa4-d099b1253a77 + + true + RÅ2016 + 1030 + e7940fe8-883a-45a9-80b3-2698b4ca3ca5 @@ -551645,6 +607136,13 @@ FY2015 1033 + + 9c069933-4194-4914-a7ef-cc5c9b7bbb73 + + true + RÅ2015 + 1030 + a298cd07-e006-47c2-8702-4343b8473fa2 @@ -551678,6 +607176,13 @@ FY2014 1033 + + 44ff0fe6-3db6-463e-b25a-b90bfdb6d217 + + true + RÅ2014 + 1030 + c657cb0f-eaed-43a7-b530-d2391179c5fe @@ -551711,6 +607216,13 @@ FY2013 1033 + + 3a755c30-777c-4c36-bf7e-0ace9b94cd72 + + true + RÅ2013 + 1030 + 6371817b-c780-4abb-9e7e-8bfa0891e566 @@ -551744,6 +607256,13 @@ FY2012 1033 + + c24598ae-565a-4376-a7ed-52bd06ab2893 + + true + RÅ2012 + 1030 + 2d7648b3-b24a-4241-9003-37c6cb3edcb1 @@ -551777,6 +607296,13 @@ FY2011 1033 + + 3eb9bdc1-1c12-48f9-b732-e14242c526d1 + + true + RÅ2011 + 1030 + 764e1d33-7a6d-4800-8cec-2aecf69739e1 @@ -551810,6 +607336,13 @@ FY2010 1033 + + a026a964-3059-41e5-8d57-b5a16faa2a6b + + true + RÅ2010 + 1030 + f9359205-285c-4018-8959-16b8fb84af7d @@ -551843,6 +607376,13 @@ FY2009 1033 + + dbdeff4c-7774-47b3-90c6-948d75edb79a + + true + RÅ2009 + 1030 + b1a973dc-17a6-406c-89a4-0c7ff9e10ae7 @@ -551876,6 +607416,13 @@ FY2008 1033 + + 20ad7334-df55-49e2-9b07-553f37d7696a + + true + RÅ2008 + 1030 + cc6d255c-ff00-4fdc-a255-fef72a845d9e @@ -551909,6 +607456,13 @@ FY2007 1033 + + 1e1278b3-d9f2-4ee4-bd08-bbd70b96c7f1 + + true + RÅ2007 + 1030 + 9f2b4634-d3fa-4182-932a-ad37709176a0 @@ -551942,6 +607496,13 @@ FY2006 1033 + + 483b8ffd-ebd2-4a69-9614-5b37c9b76bc3 + + true + RÅ2006 + 1030 + f13cd196-ff46-4494-92b1-763fa203d445 @@ -551975,6 +607536,13 @@ FY2005 1033 + + 3b0b9128-6f67-43ac-bad5-bd950e13e157 + + true + RÅ2005 + 1030 + d1d6fd8a-adfa-4faf-a136-6b41102ba757 @@ -552008,6 +607576,13 @@ FY2004 1033 + + 276d740c-f012-4b5d-8f1c-9e66a66cc970 + + true + RÅ2004 + 1030 + bc62aed2-7503-48f6-8c1b-1e0daaf63246 @@ -552041,6 +607616,13 @@ FY2003 1033 + + a58f25fb-93c9-46a6-a042-e64909d7454a + + true + RÅ2003 + 1030 + 09a81c7c-d435-4f85-8228-527c60f7b122 @@ -552074,6 +607656,13 @@ FY2002 1033 + + fe10ab62-457e-414e-851f-052831405c1d + + true + RÅ2002 + 1030 + a277524a-adbe-4aa9-80d1-af644b01bc26 @@ -552107,6 +607696,13 @@ FY2001 1033 + + 741e0326-4e57-4f8e-9844-6b013785c1f5 + + true + RÅ2001 + 1030 + ba1bcbb8-0fa1-4afe-af5a-491f7399df95 @@ -552140,6 +607736,13 @@ FY2000 1033 + + 91b6202f-c3dd-4291-9184-8164a1712e8b + + true + RÅ2000 + 1030 + 4b7976fb-d8ed-4ddb-87ca-f4b6bda68a80 @@ -552173,6 +607776,13 @@ FY1999 1033 + + 29867fa6-16f7-4db4-8fec-51a26ee64bcb + + true + RÅ1999 + 1030 + 46c63061-889b-4473-9b69-540bacb995b1 @@ -552206,6 +607816,13 @@ FY1998 1033 + + b232b7c8-299f-4bfc-b982-a354b1aabcf9 + + true + RÅ1998 + 1030 + 009d94ff-ccaf-49c1-b35a-13bb6c6bef4b @@ -552239,6 +607856,13 @@ FY1997 1033 + + 678c1570-3e09-4b18-87f4-0547e344dd4f + + true + RÅ1997 + 1030 + e06210c8-5a20-4189-afb5-b8f4090696c6 @@ -552272,6 +607896,13 @@ FY1996 1033 + + e954ed2b-35ac-42ab-acbe-be1790981a69 + + true + RÅ1996 + 1030 + d727603b-9262-4c34-b613-a40150f89f7b @@ -552305,6 +607936,13 @@ FY1995 1033 + + dfd1572d-4a83-4be8-9a75-569841e31e31 + + true + RÅ1995 + 1030 + 89f82b69-4287-43fa-bef5-169b7f4ad03a @@ -552338,6 +607976,13 @@ FY1994 1033 + + 1235a11f-282f-4448-b309-099f06222252 + + true + RÅ1994 + 1030 + 6596d23f-7452-4536-b901-8e10bbc70557 @@ -552371,6 +608016,13 @@ FY1993 1033 + + 3c766eaf-f185-403d-8749-e35a7db1deb4 + + true + RÅ1993 + 1030 + 8213a71e-6db2-4f0b-a8a9-6623c36adf50 @@ -552404,6 +608056,13 @@ FY1992 1033 + + bf7bc3c3-12c4-4726-aa85-f68b265ea9bf + + true + RÅ1992 + 1030 + 3357f84f-a24a-4f11-a58b-958c9c6044aa @@ -552437,6 +608096,13 @@ FY1991 1033 + + e0bbeea3-26e5-40dd-b14a-450780ebfbac + + true + RÅ1991 + 1030 + eb8827e7-a57c-44fb-9b81-f10342123622 @@ -552470,6 +608136,13 @@ FY1990 1033 + + f8c3d9a3-5a57-4f3a-9cb7-983d6f145789 + + true + RÅ1990 + 1030 + 084eb38a-811f-46cf-b5be-39d747b44120 @@ -552503,6 +608176,13 @@ FY1989 1033 + + 184bcaba-d48e-45bc-ad20-c25502faf3e3 + + true + RÅ1989 + 1030 + 47d1fa52-9466-4e44-a225-4b3cf0172f89 @@ -552536,6 +608216,13 @@ FY1988 1033 + + f8864773-4720-4a94-9a8b-1066ad2cc878 + + true + RÅ1988 + 1030 + e0095814-7a9b-463f-8f53-758f4a16b651 @@ -552569,6 +608256,13 @@ FY1987 1033 + + 88e5324d-d186-4b40-b302-f64bc02d3fd7 + + true + RÅ1987 + 1030 + 98cc5828-e77d-489d-a34b-af5697ffdab8 @@ -552602,6 +608296,13 @@ FY1986 1033 + + 4b11913d-3c71-4df6-84b1-95c43332d05b + + true + RÅ1986 + 1030 + aa79e1f3-be00-4246-8f2a-6ef1ac7aaa57 @@ -552635,6 +608336,13 @@ FY1985 1033 + + 3b8d6b12-7746-46f8-b5b1-972755387cdc + + true + RÅ1985 + 1030 + df47f1b9-0e83-4355-9378-af04f5dd4f06 @@ -552668,6 +608376,13 @@ FY1984 1033 + + 53d815cb-2084-4218-b4a6-4f824e6c27be + + true + RÅ1984 + 1030 + 0e49c6da-20b3-4359-9223-e2aa521d3c88 @@ -552701,6 +608416,13 @@ FY1983 1033 + + 8c631b67-3f9a-4891-ba70-7b5318ca000d + + true + RÅ1983 + 1030 + ab6207a1-ae61-4f76-bdc5-f10821834f5a @@ -552734,6 +608456,13 @@ FY1982 1033 + + 95194ec0-85cd-4419-bad8-af20b466dc7d + + true + RÅ1982 + 1030 + 8862df14-f62c-4398-b6ce-25368b0071ea @@ -552767,6 +608496,13 @@ FY1981 1033 + + fa5f63aa-7f24-4be4-a76a-694399eb62c1 + + true + RÅ1981 + 1030 + 343b5009-73e9-468d-a968-6420bdc148bd @@ -552800,6 +608536,13 @@ FY1980 1033 + + f9d2a6fa-816a-493a-bc09-552f0259c370 + + true + RÅ1980 + 1030 + 0bbb8790-347d-4d2b-8a14-09e11c620991 @@ -552833,6 +608576,13 @@ FY1979 1033 + + 347271fb-86b5-4a32-a37f-b24b79d28bf5 + + true + RÅ1979 + 1030 + 165f9131-81f3-491b-859a-2ceb467e565e @@ -552866,6 +608616,13 @@ FY1978 1033 + + 4d564559-74dd-45d1-8ccb-861ad297cebb + + true + RÅ1978 + 1030 + b2b0904f-8200-403f-8258-a8521e9f42e9 @@ -552899,6 +608656,13 @@ FY1977 1033 + + 30a5acd4-da33-4df2-b4dd-6aa75fc54154 + + true + RÅ1977 + 1030 + 00face8e-37bc-4c20-b372-5c7d341c12a4 @@ -552932,6 +608696,13 @@ FY1976 1033 + + 62969cca-f9c2-4398-b676-1f789934cc5c + + true + RÅ1976 + 1030 + c8b5ca13-a51f-4431-9250-2213e8c6eb4f @@ -552965,6 +608736,13 @@ FY1975 1033 + + 66d4860a-b05e-4c0d-b00a-2a9b632cf1b9 + + true + RÅ1975 + 1030 + ccfc88be-5957-4989-8f4a-0d8219939543 @@ -552998,6 +608776,13 @@ FY1974 1033 + + 0089f873-33de-47d6-b546-d85123489c5f + + true + RÅ1974 + 1030 + 9c4fbfb8-6a9b-4e12-af1a-cd85565cec25 @@ -553031,6 +608816,13 @@ FY1973 1033 + + ada55567-0df2-4c7e-ba2d-4a731c575cf7 + + true + RÅ1973 + 1030 + 245a8387-0624-4191-a2db-cfa45021b36d @@ -553064,6 +608856,13 @@ FY1972 1033 + + cfb417a1-83da-4ae6-a832-77634503d53f + + true + RÅ1972 + 1030 + ebb9bd42-3d19-4c7f-bcbf-b7f635c788df @@ -553097,6 +608896,13 @@ FY1971 1033 + + 9b510174-9c03-4bdf-a35d-1781c4af2063 + + true + RÅ1971 + 1030 + 16f16762-c4f4-47c9-a81a-25c64010fab0 @@ -553130,6 +608936,13 @@ FY1970 1033 + + 6abbca4d-1bdf-4dc1-a673-41dd972bfe80 + + true + RÅ1970 + 1030 + 48ffdd26-4c12-4891-b694-4ca54771e797 @@ -553158,6 +608971,13 @@ Data type of the amount. 1033 + + 920515bf-fa90-47bc-b7f6-c450e3b02f26 + + true + Datatypen for beløbet. + 1030 + 5a465852-f913-df11-a16e-00155d7aa40d @@ -553176,6 +608996,13 @@ Goal Type 1033 + + 1cdcf250-39ec-4aac-8907-91fee48d6131 + + true + Måltype + 1030 + 59465852-f913-df11-a16e-00155d7aa40d @@ -553218,6 +609045,13 @@ Money 1033 + + 97cbc0df-d867-4544-ba41-7dfc0435c453 + + true + Penge + 1030 + 6b4f3877-75b2-4b4f-ac0b-85f4ff57ca23 @@ -553251,6 +609085,13 @@ Decimal 1033 + + 3d7ffbeb-a6d5-4d76-9809-e9e657dccf18 + + true + Decimal + 1030 + a4fe51a6-a8cd-42ef-a35a-920de9a0d08f @@ -553284,6 +609125,13 @@ Integer 1033 + + 5b277dd0-557f-402d-a707-4ffdf851c030 + + true + Heltal + 1030 + ae685bd1-ea3a-4a2f-aa44-eeffb9acb18e @@ -553312,6 +609160,13 @@ The state of this component. 1033 + + f7f4f652-1c0d-49ef-af51-d10220ccad08 + + true + Komponentens tilstand. + 1030 + faece0a1-cefc-11de-8150-00155da18b00 @@ -553330,6 +609185,13 @@ Component State 1033 + + fae2729c-7fb2-4ab6-878f-7b137809d4a3 + + true + Komponenttilstand + 1030 + faece0a0-cefc-11de-8150-00155da18b00 @@ -553372,6 +609234,13 @@ Published 1033 + + 70c6cc18-219d-48a6-8b06-b7438ebfd290 + + true + Udgivet + 1030 + faece0a3-cefc-11de-8150-00155da18b00 @@ -553405,6 +609274,13 @@ Unpublished 1033 + + 0b3a6c0c-00d3-42a5-a959-a4f39fcefdaf + + true + Ikke-udgivet + 1030 + faece0a5-cefc-11de-8150-00155da18b00 @@ -553438,6 +609314,13 @@ Deleted 1033 + + 19fbfb90-4251-41db-9758-511a17934830 + + true + Slettet + 1030 + faece0a7-cefc-11de-8150-00155da18b00 @@ -553471,6 +609354,13 @@ Deleted Unpublished 1033 + + 8f7bf3bb-6c6b-4e97-8211-705906b723c9 + + true + Ikke-publicerede blev slettet + 1030 + 1f83e0bb-cefd-11de-8150-00155da18b00 @@ -553499,6 +609389,13 @@ IsEnabled 1033 + + 97e1a3e2-245d-414d-824e-849d546ed085 + + true + IsEnabled + 1030 + cd30a9f4-0332-e611-80d5-00155dcf0c03 @@ -553517,6 +609414,13 @@ IsEnabled 1033 + + 16d6aedd-4b80-4f1e-80c7-2d34779a1e0b + + true + IsEnabled + 1030 + cc30a9f4-0332-e611-80d5-00155dcf0c03 @@ -553558,6 +609462,13 @@ No 1033 + + 04f6dae4-b050-4ab2-9d43-dfc87e04e0f5 + + true + Nej + 1030 + c430a9f4-0332-e611-80d5-00155dcf0c03 @@ -553591,6 +609502,13 @@ Yes 1033 + + 1ed69ae4-8d3f-4ec0-b4d1-4f46e5ae677c + + true + Ja + 1030 + c530a9f4-0332-e611-80d5-00155dcf0c03 @@ -553617,6 +609535,13 @@ Select whether access to email channel is allowed or not. 1033 + + 1ffe2a03-1d80-4a98-b64a-ac49cce20bd6 + + true + Vælg, om adgang til mailkanalen er tilladt eller ej. + 1030 + 646ae57d-3700-e511-80de-00155dcf6501 @@ -553635,6 +609560,13 @@ Email Access 1033 + + 343ae8bf-9e62-49a9-befc-6bd501e9a86c + + true + Mailadgang + 1030 + 636ae57d-3700-e511-80de-00155dcf6501 @@ -553676,6 +609608,13 @@ No 1033 + + 43f73080-b965-4414-b731-b67c066c6147 + + true + Nej + 1030 + 54e822e7-c7eb-40cd-b66f-eb0b47733a00 @@ -553709,6 +609648,13 @@ Yes 1033 + + 701fe18a-2fd0-4a17-ace4-be0470bbeb67 + + true + Ja + 1030 + e58cbd29-6a51-4ab7-bdaa-6e55a65a4800 @@ -553735,6 +609681,13 @@ Select whether access to face book channel is allowed or not. 1033 + + 1b7fc639-c11b-46b9-abbf-08386c215efa + + true + Vælg, om adgang til Facebook-kanalen er tilladt eller ej. + 1030 + c4b06724-3800-e511-80de-00155dcf6501 @@ -553753,6 +609706,13 @@ Facebook Access 1033 + + d65fbb8c-ff53-434f-8ba0-daebaf199219 + + true + Facebook-adgang + 1030 + c3b06724-3800-e511-80de-00155dcf6501 @@ -553794,6 +609754,13 @@ No 1033 + + be002f42-ac7f-48c2-8b44-f7ae20bebc7e + + true + Nej + 1030 + 54e822e7-c7eb-40f5-b66f-eb0b47733a01 @@ -553827,6 +609794,13 @@ Yes 1033 + + 34f9c5b4-f112-40bb-b02d-32bcdd5bfe6a + + true + Ja + 1030 + e58cbd29-6aa1-4ab7-bdca-6e55a65a4b01 @@ -553853,6 +609827,13 @@ Select whether access to phone channel is allowed or not. 1033 + + bf121be6-5beb-44d4-9288-3bb03081c57b + + true + Vælg, om adgang til telefonkanalen er tilladt eller ej. + 1030 + a77e6cae-3700-e511-80de-00155dcf6501 @@ -553871,6 +609852,13 @@ Phone Access 1033 + + 13361d1b-b52c-47bc-9c71-b9e07ba9037d + + true + Telefonadgang + 1030 + a67e6cae-3700-e511-80de-00155dcf6501 @@ -553912,6 +609900,13 @@ No 1033 + + 12002805-df8c-45ba-b075-177cdc37ded6 + + true + Nej + 1030 + 54e822e7-c7eb-40c5-b66f-ebfb47733a02 @@ -553945,6 +609940,13 @@ Yes 1033 + + 7f09994a-d301-4529-a95e-cbee71f03f2d + + true + Ja + 1030 + e58cbd29-6a51-4ab7-bdca-6e55af5a4802 @@ -553971,6 +609973,13 @@ Select whether access to twitter channel is allowed or not. 1033 + + d71cb9fd-f916-48ba-9ec4-d60cd538b2f6 + + true + Vælg, om adgang til Twitter-kanalen er tilladt eller ej. + 1030 + 8a6d3f13-3800-e511-80de-00155dcf6501 @@ -553989,6 +609998,13 @@ Twitter Access 1033 + + 0eb35a0a-82bb-47fd-9ab0-d861cf33af90 + + true + Twitter-adgang + 1030 + 896d3f13-3800-e511-80de-00155dcf6501 @@ -554030,6 +610046,13 @@ No 1033 + + e0414c84-1575-4533-912f-1a97fe4c5214 + + true + Nej + 1030 + 54e822e7-c7eb-40c5-b66f-eb0b46733a03 @@ -554063,6 +610086,13 @@ Yes 1033 + + 39e4c56c-75e0-48a4-94ba-73a041e63632 + + true + Ja + 1030 + e58cbd29-6a51-4ab7-bdca-6e55a65af803 @@ -554089,6 +610119,13 @@ Select whether access to web channel is allowed or not. 1033 + + da18be6f-d0ef-4e5a-8f4d-bc74f3a3c2ef + + true + Vælg, om adgang til webkanalen er tilladt eller ej. + 1030 + b15fc5d2-3700-e511-80de-00155dcf6501 @@ -554107,6 +610144,13 @@ Web Access 1033 + + 54073135-c63c-44bf-939e-645844de5e44 + + true + Webadgang + 1030 + b05fc5d2-3700-e511-80de-00155dcf6501 @@ -554148,6 +610192,13 @@ No 1033 + + b01c40f2-9f1d-4e57-ba7c-d0156ca88f11 + + true + Nej + 1030 + 54e822e7-c7eb-40c5-b66f-eb0b47d33a04 @@ -554181,6 +610232,13 @@ Yes 1033 + + 0f2d94f9-7257-402b-8cf6-cfd6fa97c4c7 + + true + Ja + 1030 + e58cbd29-6a51-4ab7-bdca-6e55a65a6804 @@ -554207,6 +610265,13 @@ Select whether access to view knowledge articles is allowed or not. 1033 + + 275a7305-7374-4044-b56a-8554b4f8fa9b + + true + Vælg, om adgang til visning af vidensartikler er tilladt eller ej. + 1030 + 646ae5ad-3700-e511-80de-00155dcf6501 @@ -554225,6 +610290,13 @@ View Knowledge Articles 1033 + + 6ea6fa1f-bd7f-404e-8eff-2f17d922cce5 + + true + Vis vidensartikler + 1030 + 636ae5ad-3700-e511-80de-00155dcf6501 @@ -554266,6 +610338,13 @@ Do Not Allow 1033 + + 34c6f352-96e0-4fb7-9e2d-68c96deeb658 + + true + Tillad ikke + 1030 + 54e822ea-c7eb-40cd-b66f-eb0b47733a00 @@ -554299,6 +610378,13 @@ Allow 1033 + + 11e1f63f-d146-41af-a218-d0043c54c759 + + true + Tillad + 1030 + e5acbd29-6a51-4ab7-bdaa-6e55a65a4800 @@ -554325,6 +610411,13 @@ Select whether access to view knowledge article rating is allowed or not. 1033 + + e2276ae8-f39c-4883-805f-3a067ab4f687 + + true + Vælg, om adgang til visning af klassificering af vidensartikler er tilladt eller ej. + 1030 + 646ab57d-3700-e511-80de-00155dcf6501 @@ -554343,6 +610436,13 @@ View Article Rating 1033 + + 5ff04251-400c-47bc-a998-a97430223809 + + true + Vis artikelklassificering + 1030 + 656ae57d-3700-e511-80de-00155dcf6512 @@ -554384,6 +610484,13 @@ Do Not Allow 1033 + + ad67909c-3d42-4ec7-bfb0-a86d341c6f2f + + true + Tillad ikke + 1030 + 54e8b2e7-c7eb-40cd-b66f-eb0b47733a00 @@ -554417,6 +610524,13 @@ Allow 1033 + + 20b768b9-8548-46ec-9e01-b9b7003bdfe3 + + true + Tillad + 1030 + e58cbdb9-6a51-4ab7-bdaa-6e55a65a4800 @@ -554443,6 +610557,13 @@ Select whether access to rate knowledge articles is allowed or not. 1033 + + 2f2b1c62-516c-4cbb-882e-809f1ccaee45 + + true + Vælg, om adgang til klassificering af vidensartikler er tilladt eller ej. + 1030 + 646ac57d-3700-e511-80de-00155dcf6501 @@ -554461,6 +610582,13 @@ Rate Knowledge Articles 1033 + + ccb0df88-2045-4c6c-a3ec-b758f83e6301 + + true + Klassificer vidensartikler + 1030 + 636aec7d-3700-e511-80de-00155dcf6501 @@ -554502,6 +610630,13 @@ Do Not Allow 1033 + + dd5b19ec-ff3f-44dc-af4a-4fa04375424d + + true + Tillad ikke + 1030 + 54ec22e7-c7eb-40cd-b66f-eb0b47733a00 @@ -554535,6 +610670,13 @@ Allow 1033 + + 5dda7b5d-611f-4e44-992b-cf89a19a305a + + true + Tillad + 1030 + e58cbc29-6a51-4ab7-bdaa-6e55a65a4800 @@ -554561,6 +610703,13 @@ Select whether access to submit feedback on knowledge articles is allowed or not. 1033 + + 4149d24c-2ffc-4e8b-a82a-8cace0af83e1 + + true + Vælg, om adgang til angivelse af feedback til vidensartikler er tilladt eller ej. + 1030 + 646ad57d-3700-e511-80de-00155dcf6501 @@ -554579,6 +610728,13 @@ Submit Feedback 1033 + + 630fd1a8-3327-4845-94c7-042529e561a4 + + true + Send feedback + 1030 + 636aed7d-3700-e511-80de-00155dcf6501 @@ -554620,6 +610776,13 @@ Do Not Allow 1033 + + d7e4938a-da93-4bab-992d-4d980ec84fe8 + + true + Tillad ikke + 1030 + 54d822e7-c7eb-40cd-b66f-eb0b47733a00 @@ -554653,6 +610816,13 @@ Allow 1033 + + 9b7eff87-aaef-4b2d-a581-aff63d5e037b + + true + Tillad + 1030 + e58cbdd9-6a51-4ab7-bdaa-6e55a65a4800 @@ -554679,6 +610849,13 @@ Information regarding whether the activity is a regular activity type or event type. 1033 + + 9f43e93e-a030-4545-9a71-a3f06c14f018 + + true + Oplysninger om, hvorvidt aktiviteten er en almindelig aktivitetstype eller hændelsestype. + 1030 + 78651ca0-4376-11de-a6d5-001cc46616fb @@ -554697,6 +610874,13 @@ Is Regular Activity 1033 + + 4df21669-f81f-48f1-a7b1-0d2528118df8 + + true + Er en almindelig aktivitet + 1030 + 78651c9f-4376-11de-a6d5-001cc46616fb @@ -554738,6 +610922,13 @@ No 1033 + + fde5dcb6-c4bd-492f-ada6-8b1fa9e92cbd + + true + Nej + 1030 + 78651ca2-4376-11de-a6d5-001cc46616fb @@ -554771,6 +610962,13 @@ Yes 1033 + + 1c8ac816-1352-4617-adda-b886d3cf1d2f + + true + Ja + 1030 + 78651ca4-4376-11de-a6d5-001cc46616fb @@ -554785,6 +610983,390 @@ + + 9180158a-5c03-f111-8407-002248a347f8 + + + + + 9380158a-5c03-f111-8407-002248a347f8 + + false + Option set created solely for testing context generation using XrmContext. + 1033 + + + + 9380158a-5c03-f111-8407-002248a347f8 + + false + Option set created solely for testing context generation using XrmContext. + 1033 + + + + + + 9280158a-5c03-f111-8407-002248a347f8 + + false + + 1033 + + + + 9280158a-5c03-f111-8407-002248a347f8 + + false + + 1033 + + + + true + + true + iscustomizable + true + + true + false + ctx_xrmcontextoptions + Picklist + 1.0.0.0 + + + + + + + + + 18654ee8-359d-4420-9c8c-cb528882877e + + false + + 1033 + + + + 18654ee8-359d-4420-9c8c-cb528882877e + + false + + 1033 + + + + false + false + + + + c8b10ddd-0783-4bbc-9d62-912e6da20f07 + + false + \n + 1033 + + + + c8b10ddd-0783-4bbc-9d62-912e6da20f07 + + false + \n + 1033 + + + + 770790000 + + + + + + + + + + 3ca61820-a24b-4236-a019-b049273534b3 + + false + + 1033 + + + + 3ca61820-a24b-4236-a019-b049273534b3 + + false + + 1033 + + + + false + false + + + + c39cd5f0-d3ff-4b0a-aad9-8faa2b0cbe71 + + false + Tab + 1033 + + + + c39cd5f0-d3ff-4b0a-aad9-8faa2b0cbe71 + + false + Tab + 1033 + + + + 770790001 + + + + + + #36ff57 + + + + 83f626ff-ef3f-4703-96d9-e9fc958fae8e + + false + + 1033 + + + + 83f626ff-ef3f-4703-96d9-e9fc958fae8e + + false + + 1033 + + + + false + false + + + + aa4354a8-76e6-476c-b1a6-7bc3faff5469 + + false + ✔️ + 1033 + + + + aa4354a8-76e6-476c-b1a6-7bc3faff5469 + + false + ✔️ + 1033 + + + + 770790002 + + + + + + #ff0000 + + + + c869ecaa-ac89-4548-a0ab-b0f490ad8202 + + false + + 1033 + + + + c869ecaa-ac89-4548-a0ab-b0f490ad8202 + + false + + 1033 + + + + false + false + + + + 7f6de37a-bd90-4886-81ad-163044ee6460 + + false + ✖️ + 1033 + + + + 7f6de37a-bd90-4886-81ad-163044ee6460 + + false + ✖️ + 1033 + + + + 770790003 + + + + + + + + + + 3675d03b-82bf-4db5-9a4b-547380f0b133 + + false + + 1033 + + + + 3675d03b-82bf-4db5-9a4b-547380f0b133 + + false + + 1033 + + + + false + false + + + + 123172ee-3da4-4e95-acd3-e9c90881f785 + + false + 1 + 1033 + + + + 123172ee-3da4-4e95-acd3-e9c90881f785 + + false + 1 + 1033 + + + + 770790004 + + + + + + + + + + 6b528718-ca38-4f27-87e7-62ac444cecb8 + + false + + 1033 + + + + 6b528718-ca38-4f27-87e7-62ac444cecb8 + + false + + 1033 + + + + false + false + + + + 3923a9d3-0884-4dc4-9753-c8113de08b59 + + false + 1 + 1033 + + + + 3923a9d3-0884-4dc4-9753-c8113de08b59 + + false + 1 + 1033 + + + + 770790005 + + + + + + + + + + 7542cd89-7014-40cb-87db-48d6ffad2bde + + false + + 1033 + + + + 7542cd89-7014-40cb-87db-48d6ffad2bde + + false + + 1033 + + + + false + false + + + + 328121c0-1c49-4fc9-a472-72686b5acad9 + + false + $/£/€ + 1033 + + + + 328121c0-1c49-4fc9-a472-72686b5acad9 + + false + $/£/€ + 1033 + + + + 770790006 + + + + + fe3a6fcb-afd1-4f43-8ba7-01ef3ce10557 @@ -554797,6 +611379,13 @@ Types of reports. 1033 + + 34a67944-2d1f-4644-97d6-5d2b00aff2ad + + true + Typer af rapporter. + 1030 + b4d3ca53-e9ba-f011-bbd3-7c1e52365f30 @@ -554815,6 +611404,13 @@ Report types 1033 + + 1ae80266-4385-4a07-8260-a94cd389eb70 + + true + Rapporttyper + 1030 + b3d3ca53-e9ba-f011-bbd3-7c1e52365f30 @@ -554857,6 +611453,13 @@ All applicable records 1033 + + 66b70f11-1f95-49fe-aca1-9159cc576c58 + + true + Alle relevante poster + 1030 + 91519ea6-4df6-4004-bd1b-14370b48e338 @@ -554890,6 +611493,13 @@ The selected records 1033 + + f1be83e6-2b70-4235-b165-bd33cd0a4c9c + + true + De valgte poster + 1030 + 39fd0203-5df4-41ad-949f-2154326e5166 @@ -554923,6 +611533,13 @@ All records on all pages in current view 1033 + + bf39b707-7a05-4423-bc8d-e0c65179e8a2 + + true + Alle poster på alle sider i den aktuelle visning + 1030 + a543557e-3a73-42b0-ac7b-bc4d5a5e5040 @@ -554951,6 +611568,13 @@ Type of entity with which the workflow log is associated. 1033 + + 11c571e1-3822-4c12-b451-09207b7b44ba + + true + Den type objekt, som arbejdsprocesloggen er tilknyttet. + 1030 + 96a5aacf-c340-492b-aa25-064ed2a3c481 @@ -554969,6 +611593,13 @@ Object Type 1033 + + f8694e16-0cee-42b4-8455-98844fb2d902 + + true + Objekttype + 1030 + 96a5aace-c340-492b-aa25-064ed2a3c481 @@ -555011,6 +611642,13 @@ System Job 1033 + + db2452ae-c07b-4cdc-a863-e4118a5e2f84 + + true + Systemjob + 1030 + 96a5aac1-c340-492b-aa25-064ed2a3c481 @@ -555044,6 +611682,13 @@ Workflow Session 1033 + + e81eaa84-8384-4a9a-83e5-45836c2f7367 + + true + Arbejdsprocessession + 1030 + 96a5aac3-c340-492b-aa25-064ed2a3c481 @@ -555077,6 +611722,13 @@ Flow Session 1033 + + ef4e38cb-7f5b-4996-bb5b-f6fbb3210797 + + true + Flowsession + 1030 + d5b72971-dca6-40c9-ac82-d379d126d0ca @@ -555105,6 +611757,13 @@ To indicate whether to select current Version/Translation or all its related Versions/Translations 1033 + + 23b5385a-842c-44d9-b081-ec640d911b5c + + true + Til at angive, om der skal vælges aktuel version/oversættelse eller alle relaterede versioner/oversættelser + 1030 + e173a6ee-c328-4c38-8c6d-41642fb24746 @@ -555123,6 +611782,13 @@ Select Versions 1033 + + 90a1c88c-80ba-45c8-8463-0417f3955b22 + + true + Vælg versioner + 1030 + 0eb1b488-2a10-4cab-a752-e3e55787e0e8 @@ -555164,6 +611830,13 @@ This version only 1033 + + 556e06cb-556d-409e-ba7f-a7af739713f2 + + true + Kun denne version + 1030 + 1fedb3fe-09a0-4b62-a9ad-fee90e451aab @@ -555197,6 +611870,13 @@ All versions and translations 1033 + + df5ea649-d3fc-431f-bedc-784a71b71707 + + true + Alle versioner og oversættelser + 1030 + ec9c9706-d96d-4dbc-87e7-d2473b1ca40d @@ -555223,6 +611903,13 @@ Information about whether the mobile offline profile is ready to sync or not. 1033 + + deb98bcd-f02b-4222-9431-13f1c13fce68 + + true + Angiver, om Mobile Offline-profilelementet er klar til at blive synkroniseret eller ej. + 1030 + fc42d712-a650-4f84-a3f0-3cc1d75effa8 @@ -555241,6 +611928,13 @@ Is Validated 1033 + + 739fb2ec-b9b4-4033-b3a6-c705678f3cfc + + true + Er valideret + 1030 + c8a08eed-609e-404b-be48-8a5b6e361f52 @@ -555282,6 +611976,13 @@ No 1033 + + ac6ef53c-58e7-4ce2-b9f5-db1d6776ecbb + + true + Nej + 1030 + c4ca4a24-4612-4dcb-9e76-d0fc7b101ab8 @@ -555315,6 +612016,13 @@ Yes 1033 + + ab377df1-defa-4022-b851-27da075c603b + + true + Ja + 1030 + 404e2590-ff7e-435c-8369-fc6801b32cd4 @@ -555341,6 +612049,13 @@ Information about whether an associated encrypted attribute has a value. 1033 + + fb60d1d2-d5c9-41cd-bfd7-f7bd3fdf333b + + true + Oplysninger om, hvorvidt en tilknyttet krypteret attribut har en værdi. + 1030 + 75bc633e-e8de-4ead-850b-5d17fc9f5220 @@ -555359,6 +612074,13 @@ Is Encrypted Attribute Value Set 1033 + + 47b838fb-154a-40d7-a62e-d92b7f29b2c2 + + true + Er krypteret attributværdi angivet + 1030 + 3db0e44d-bf0e-47b6-a72e-d4c0308ec1d3 @@ -555400,6 +612122,13 @@ No 1033 + + 33a90666-1ad7-44a6-b7bd-f2903f5488f8 + + true + Nej + 1030 + 4f3aa649-7e06-4995-811d-b86f518567e7 @@ -555433,6 +612162,13 @@ Yes 1033 + + 376d8694-a062-4143-9f80-49d8dd424b89 + + true + Ja + 1030 + 92421800-a49a-4d95-a429-0b34f21c4b53 @@ -555459,6 +612195,13 @@ Indication of whether queue item remove checked 1033 + + 38291f28-6473-45aa-b913-b4ba8a23d075 + + true + Angiver, om fjernelse af køelement er markeret + 1030 + 76d2612e-64b0-4451-bbc5-46d013911491 @@ -555477,6 +612220,13 @@ Queue Item Remove 1033 + + 6b5c87ba-79df-4949-97e4-b5be2fa88821 + + true + Fjernelse af køelement + 1030 + 28436f68-d95c-41dd-9ac8-f79b8ce08eeb @@ -555518,6 +612268,13 @@ No 1033 + + 3a3d226c-1bd9-4b3b-b3db-09376a4b59fb + + true + Nej + 1030 + c4f3081f-3c58-4d94-b905-adb3d60ef730 @@ -555551,6 +612308,13 @@ Yes 1033 + + 42a80775-3b08-46be-b32f-661afe666351 + + true + Ja + 1030 + cfe7ed23-5b58-436d-9689-c688da95ecf5 @@ -555577,6 +612341,13 @@ To check whether to approve related translations with article 1033 + + 7045f5a0-9b45-4334-9fd2-76650c9905b1 + + true + For at kontrollere, om der skal godkendes relaterede relationer med artikel + 1030 + 1d6649f2-bd9a-4add-b465-1c1a91d0f187 @@ -555595,6 +612366,13 @@ Approve Article 1033 + + f16263c7-a76b-41b7-bff7-22dc37350091 + + true + Godkend artikel + 1030 + a4e985e9-a528-4bb4-be02-a7a608b3ec68 @@ -555636,6 +612414,13 @@ No 1033 + + d8064cfa-9803-4bae-9249-6baf69afd0bd + + true + Nej + 1030 + e3051542-8c51-4328-a93d-eb2c05fd8461 @@ -555669,6 +612454,13 @@ Yes 1033 + + 95983f7b-8e4b-4be7-bdd0-eb110db3e7e1 + + true + Ja + 1030 + a207f378-d965-4891-84a0-d74aaf6ab15f @@ -556003,6 +612795,53 @@ 5 + + + + + + + + 38391ac1-c5ed-4d5f-921a-c926d28a353c + + true + BaseServerReference + 1033 + + + + 38391ac1-c5ed-4d5f-921a-c926d28a353c + + true + BaseServerReference + 1033 + + + + false + true + + + + b399fb7e-0a79-4036-8039-3b95f906f7ed + + true + BaseServerReference + 1033 + + + + b399fb7e-0a79-4036-8039-3b95f906f7ed + + true + BaseServerReference + 1033 + + + + 6 + + @@ -556805,6 +613644,13 @@ 1033 + + ee494441-6843-41a2-a5ca-91a3c21b0f64 + + true + + 1030 + 5a4fe3b2-f1ba-f011-bbd3-7c1e52365f30 @@ -556823,6 +613669,13 @@ Maker Fewshot SQL Correctness 1033 + + 617274c9-9a60-4a2e-93ec-9f41d9636097 + + true + Maker Fewshot SQL-korrekthed + 1030 + 594fe3b2-f1ba-f011-bbd3-7c1e52365f30 @@ -556865,6 +613718,13 @@ Pending Validation 1033 + + 05852425-2be9-4978-8d0f-8c6df4396741 + + true + Afventer validering + 1030 + de484922-4b8e-4b64-92b0-e40692d265ae @@ -556898,6 +613758,13 @@ Valid 1033 + + eacce8cd-2fae-4c70-a357-c2d674073158 + + true + Gyldig + 1030 + ebedee97-285a-45db-aea8-f85795b966a0 @@ -556931,6 +613798,13 @@ Invalid 1033 + + e6e43939-cdba-43be-9105-fbd4a42f5845 + + true + Ugyldig + 1030 + 5993aa86-86f2-4f9b-88c1-9bee81f34d64 @@ -556964,6 +613838,13 @@ NotSure 1033 + + 3deb9064-c506-4ebb-a45b-d8531e18fb87 + + true + NotSure + 1030 + 57eb4f3d-343a-46ab-8a34-462cd07e7451 @@ -556992,6 +613873,13 @@ To check whether to copy from primary article 1033 + + 22703681-5efb-4246-aff1-1575de36e8f0 + + true + For at kontrollere, om der skal kopieres fra en primær artikel + 1030 + 099581b7-3798-449a-952f-fbaa7701c156 @@ -557010,6 +613898,13 @@ Copy Article 1033 + + a41d35a7-b2a8-4774-a261-a3110fc4a35b + + true + Kopiér artikel + 1030 + c826dd67-dbf6-4cc6-b007-3600da0d171e @@ -557051,6 +613946,13 @@ No 1033 + + 66e24424-c47b-417a-a17e-4abaeefc2847 + + true + Nej + 1030 + ffb1070e-dd83-4fd6-b356-8ac245502a3f @@ -557084,6 +613986,13 @@ Yes 1033 + + 295c6ae6-909d-4742-8b0a-148ac8a2c037 + + true + Ja + 1030 + 3eab1337-b554-4bd3-b3ae-0b6f12a4602c @@ -557110,6 +614019,13 @@ Months in a year used under Yearly recurrence pattern 1033 + + 57dc4537-2b71-4f8e-8ef9-76b6a95a6d6f + + true + Måneder i et år, der bruges under et årligt gentagelsesmønster + 1030 + c53c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -557128,6 +614044,13 @@ Month 1033 + + f829fcf8-0d9d-4ad0-887a-70429d88b4e5 + + true + Måned + 1030 + c43c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -557163,6 +614086,13 @@ January 1033 + + 42edb66a-3bae-4ba8-8f70-b31c8dc43a07 + + true + Januar + 1030 + 42f57901-6feb-481c-b21a-ce02e068b0c2 @@ -557184,6 +614114,13 @@ January 1033 + + 0b5434f4-99b9-4911-8b04-b99034fa57da + + true + Januar + 1030 + b92bdfc1-c6df-4642-90fc-80009f792e63 @@ -557210,6 +614147,13 @@ February 1033 + + 7ba55c67-cf59-499c-8bfb-1dff7db96659 + + true + Februar + 1030 + 14f13447-4551-4d51-915c-9ee51c13a816 @@ -557231,6 +614175,13 @@ February 1033 + + bdaf6695-95b6-4617-9695-f060760ed8f5 + + true + Februar + 1030 + 7172c312-d16d-46f9-9289-d6fd78e651f1 @@ -557257,6 +614208,13 @@ March 1033 + + 9cfca885-3fa7-49ed-b0b5-36481b0d26d9 + + true + Marts + 1030 + 480d1ce7-66aa-4654-ac3c-729b9f3e4e9a @@ -557278,6 +614236,13 @@ March 1033 + + 6df0933c-7ef4-4d8e-86da-d89e59ba4bb9 + + true + Marts + 1030 + 4f1a0c88-652f-41b5-a13c-58ccac08747a @@ -557304,6 +614269,13 @@ April 1033 + + fedd82df-246d-4a5e-8d6b-5a3e7d4c4348 + + true + April + 1030 + c066b06a-864a-4f63-b44b-5ef663aace64 @@ -557325,6 +614297,13 @@ April 1033 + + f5d9a7d1-fd64-4646-970d-5c7062d30b4d + + true + April + 1030 + fabcc040-e914-421b-919a-99b6e8d18ff3 @@ -557351,6 +614330,13 @@ May 1033 + + 798c589f-b906-47e4-bcb8-32402db57f09 + + true + Maj + 1030 + 148f45e2-47ee-4fb0-a9a1-6f88a63fcbcb @@ -557372,6 +614358,13 @@ May 1033 + + 13c3df19-4728-4426-a2f7-8b46dadedef0 + + true + Maj + 1030 + 63b6b127-e5ae-4de3-bd5e-c192743cffc1 @@ -557398,6 +614391,13 @@ June 1033 + + 3cfae4a8-8cd9-4d66-b0f9-d1285ffe563e + + true + Juni + 1030 + cb59a54e-d7c8-4ef7-9340-6c782371c320 @@ -557419,6 +614419,13 @@ June 1033 + + be42f969-4b02-4e42-b140-093ed2164c40 + + true + Juni + 1030 + 4dc1e0e6-c814-456d-a59d-9e39b8a7e1e4 @@ -557445,6 +614452,13 @@ July 1033 + + f9f1d10d-558b-434e-95dd-fdc1bb4aff85 + + true + Juli + 1030 + 3ed4431b-ac4d-4b67-90ac-86e0dcb2b110 @@ -557466,6 +614480,13 @@ July 1033 + + eaf7c46b-2b58-4db6-82f9-3fc5f7fde035 + + true + Juli + 1030 + abdd19cd-784c-47fd-8974-21c47a50f67a @@ -557492,6 +614513,13 @@ August 1033 + + 6232c557-7851-41aa-a72c-a0a41ce626ab + + true + August + 1030 + fd431939-28b2-49d2-9ac4-4ba8c14dd7e6 @@ -557513,6 +614541,13 @@ August 1033 + + 297afd0e-7b9b-44d3-a145-4a0891d47a4f + + true + August + 1030 + d2f5b623-21f1-4fd0-8393-e9cd5989ca45 @@ -557539,6 +614574,13 @@ September 1033 + + 8ec0d4c1-3ce8-468c-801f-11768e3de759 + + true + September + 1030 + 1e835cf9-18ad-4d9e-aeb1-b6a63f5ce542 @@ -557560,6 +614602,13 @@ September 1033 + + fee33741-0d3b-4629-aa8c-0575209bbe78 + + true + September + 1030 + 97e2462d-6047-4b16-a086-7833d25ce24f @@ -557586,6 +614635,13 @@ October 1033 + + f56c4612-290c-4ba6-a00f-4ef0db00b7c3 + + true + Oktober + 1030 + e38527ac-f61d-4c6c-b799-d0aa87669c9d @@ -557607,6 +614663,13 @@ October 1033 + + aa0e6777-dcad-4cf8-a9d6-d0fa645c1725 + + true + Oktober + 1030 + bf3b396a-90eb-47d8-ad25-285cb085bb01 @@ -557633,6 +614696,13 @@ November 1033 + + 174be822-ffd9-459d-aed3-0478948605e6 + + true + November + 1030 + 3fc5885a-b7d3-4547-9730-1a2802458d7b @@ -557654,6 +614724,13 @@ November 1033 + + ef30a81f-a1e2-4076-82f9-0ef8346a0fad + + true + November + 1030 + 0f0c5b29-dfb6-47fc-8b59-a24baf91c41b @@ -557680,6 +614757,13 @@ December 1033 + + dbbbfe6e-72d8-4f56-bdc3-7e5af8f40d5f + + true + December + 1030 + a6bf6f2f-b3d5-43c9-a9b8-213495b19b9d @@ -557701,6 +614785,13 @@ December 1033 + + 90ec5571-4b49-48fa-a009-0a794d31995f + + true + December + 1030 + 982e0c9a-d774-4053-aaf8-d0c56ecc7dae @@ -557878,6 +614969,13 @@ Categories for connection roles. 1033 + + 341f9ae3-aa8c-477c-8104-51b0ae2fbb6c + + true + Kategorier for forbindelsesroller. + 1030 + f98d2d40-1207-4350-a168-fe5538ee46fa @@ -557896,6 +614994,13 @@ Category 1033 + + 8f2fef24-f4b4-4acd-8058-a6eb8e9d4dff + + true + Kategori + 1030 + 4957cccd-e2cc-48d5-8952-e8cf57c3e3c2 @@ -557938,6 +615043,13 @@ Business 1033 + + d4f878a3-1eec-41a0-b0c2-51d1eddb5ec6 + + true + Forretning + 1030 + e29dce6d-0c3a-40da-bb3d-9e20e4576701 @@ -557971,6 +615083,13 @@ Family 1033 + + b2e483d1-676e-4c5d-9e97-767ae1a73de1 + + true + Familie + 1030 + 19b20242-b833-4d51-8bf1-3f29fa583416 @@ -558004,6 +615123,13 @@ Social 1033 + + efa71da8-4c32-4e33-a219-11d46370dcdb + + true + Social + 1030 + 1d20ece5-ed1b-4b37-b42b-0c0cf4189761 @@ -558037,6 +615163,13 @@ Sales 1033 + + 178f6fe6-71e9-42ef-9130-f89cb3c52bc5 + + true + Salg + 1030 + d0af13d1-5b1e-432c-95d8-4eaffb7f556d @@ -558070,6 +615203,13 @@ Other 1033 + + 2e1b95a8-b5d4-4ff8-baf5-1ed869516c85 + + true + Andet + 1030 + 43c88a60-ac09-44f7-9344-d9620c1f5ed5 @@ -558103,6 +615243,13 @@ Stakeholder 1033 + + 9a849641-bd70-4351-b78e-9898b56b4fce + + true + Interessent + 1030 + deabec85-f7ee-4bc2-a6b8-32e87b4a0f7b @@ -558136,6 +615283,13 @@ Sales Team 1033 + + dca0568d-41d1-43a3-a318-62bc6fce17ea + + true + SALGSTEAM + 1030 + 760cbad2-071d-47cc-b5eb-a1e44c0ed8a9 @@ -558169,6 +615323,13 @@ Service 1033 + + 4bd1dcde-9749-4a97-ab91-73aeca560c05 + + true + Service + 1030 + 1846c23e-70ad-40c3-bf09-32113dd3e26c @@ -558197,6 +615358,13 @@ Dialog default option 1033 + + 61b42a9e-a5be-48c1-818b-f18b192c467c + + true + Standardindstilling for dialog + 1030 + bdb7e150-a749-4924-bdfa-dc9717feb7f4 @@ -558215,6 +615383,13 @@ Dialog Default Option 1033 + + f474f30c-22f3-4ab0-8bb6-6008559ec9f6 + + true + Standardindstilling for dialog + 1030 + e0cfc5c9-2a77-415a-98ea-b3e2d695bf9d @@ -558256,6 +615431,13 @@ No 1033 + + ea5bda0f-7923-46ba-9420-e77edc48508a + + true + Nej + 1030 + b22b43de-f999-4f6e-bab1-6f4b7e9ccf61 @@ -558289,6 +615471,13 @@ Yes 1033 + + 9194a4ec-0638-4c80-bd85-598ef6bfe1cf + + true + Ja + 1030 + 851d4395-9ef8-450e-a069-d51fc988126e @@ -558315,6 +615504,13 @@ Information about whether the current component is managed. 1033 + + 4926a164-41a7-471b-9eca-5caa7c002bed + + true + Angiver, om den aktuelle komponent er administreret. + 1030 + b41954a2-f3a5-47e9-ae13-ceb49de4465b @@ -558333,6 +615529,13 @@ Is Component Managed 1033 + + 1bbb0f37-bd63-430a-bd56-19c65e91d567 + + true + Er komponenten administreret? + 1030 + 45a188b1-91a8-4019-b582-cebda8081064 @@ -558374,6 +615577,13 @@ Unmanaged 1033 + + aa1b7c7d-46d3-4382-a11a-d05d1468a3db + + true + Ikke administreret + 1030 + 443c7078-b7cb-47e7-8547-08dfa82950d0 @@ -558407,6 +615617,13 @@ Managed 1033 + + 1bfb2901-f100-4d63-a887-3cf0f93900e0 + + true + Administreret + 1030 + ec886b5b-7e97-4c62-b30c-bf295639d540 @@ -558433,6 +615650,13 @@ Options for how often should an appointment repeat? 1033 + + bc3ef37e-5e8e-48c5-9ce7-7b19220ffc5c + + true + Indstillinger for, hvor ofte en aftale skal gentages? + 1030 + 5c3c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -558451,6 +615675,13 @@ Repeat 1033 + + 39320218-dbaf-4a8c-9fca-c0952658a19f + + true + Gentag + 1030 + 5b3c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -558486,6 +615717,13 @@ 1033 + + 8752159e-417f-479b-9265-a8a96aded060 + + true + + 1030 + 442bd049-70b9-4ea5-8d37-0239785e3180 @@ -558507,6 +615745,13 @@ Daily 1033 + + 99f14b1f-7575-4c02-8f90-a465820c05d1 + + true + Dagligt + 1030 + 4d2df2fa-9c87-4e43-af53-68c7e3670d2d @@ -558533,6 +615778,13 @@ 1033 + + e6b62b31-c8d9-4abd-a7a3-e07ce4ad73d3 + + true + + 1030 + 9a7bd548-e01a-4878-b61f-219388dee35e @@ -558554,6 +615806,13 @@ Weekly 1033 + + 204ca89c-b0d2-44e6-8a59-cf7ec7f43374 + + true + Ugentligt + 1030 + 10eda5bc-514b-40bd-b7e1-cbf970ab075a @@ -558580,6 +615839,13 @@ 1033 + + 7f7e448a-fc52-4aba-9527-cf20a969e0cb + + true + + 1030 + 33eb29e8-ca18-425e-ab44-acdce6fe6a0b @@ -558601,6 +615867,13 @@ Monthly 1033 + + 43ab8b09-480f-4135-9099-df157e75272f + + true + Månedligt + 1030 + 98c9f7a8-6107-4d6d-bace-ef0d83deaf32 @@ -558627,6 +615900,13 @@ 1033 + + 1a4f4ad7-31f3-4ad4-8289-ae06133a79cd + + true + + 1030 + 25ee0eb6-aaf2-4851-bc83-ba34ba915417 @@ -558648,6 +615928,13 @@ Yearly 1033 + + 628a37e0-54ff-4919-bd36-dac4c5748d16 + + true + Årligt + 1030 + 133d1a45-8354-4d4b-a4cd-a5aa15dca24f @@ -558676,6 +615963,13 @@ IsPreviewCard 1033 + + 41c0f298-7ada-4b11-b678-612a0b9dfe00 + + true + IsPreviewCard + 1030 + ece80690-fbab-44f0-a62f-51078c74d6fc @@ -558694,6 +615988,13 @@ IsPreviewCard 1033 + + 27275a92-ee43-4b59-87bf-df99e1601840 + + true + IsPreviewCard + 1030 + f594f49d-475c-4081-8b4a-76fb7ab8a5af @@ -558735,6 +616036,13 @@ No 1033 + + 14a46507-2df7-4c24-a505-0b3b0189f3cb + + true + Nej + 1030 + c987ad57-628e-49cd-b9f4-3180854e40c6 @@ -558768,6 +616076,13 @@ Yes 1033 + + 3f33cbc1-c591-49c4-803d-729e774cd721 + + true + Ja + 1030 + bc815d47-c64f-4902-aed1-27f60579eb1e @@ -558788,15 +616103,22 @@ - d890d0d0-c4bd-4428-899e-9e4776f49bc1 + 4bf88130-45fc-431b-ae76-bbebdd1670c0 true The role is inherited 1033 + + 7ed5b61a-105b-4a54-b79a-3e92d5132ebd + + true + Rollen er nedarvet + 1030 + - d890d0d0-c4bd-4428-899e-9e4776f49bc1 + 4bf88130-45fc-431b-ae76-bbebdd1670c0 true The role is inherited @@ -558806,15 +616128,22 @@ - 6f921d2f-fece-47ae-8a1a-a5cfdeb0d5cf + 96d9e4ac-7106-4a00-84cc-42fb9611bbf8 true Is Inherited 1033 + + 2639f9b5-b709-4de4-9996-224c9128d602 + + true + Er nedarvet + 1030 + - 6f921d2f-fece-47ae-8a1a-a5cfdeb0d5cf + 96d9e4ac-7106-4a00-84cc-42fb9611bbf8 true Is Inherited @@ -558848,15 +616177,22 @@ - a0f9d7c4-329a-41a0-9ca2-8786f2640cab + 130c571b-8668-4056-820f-d484bea3fcc9 true Team privileges only 1033 + + 0a9b40aa-0ccf-437c-8352-14f8c6ab2b70 + + true + Kun Team-rettigheder + 1030 + - a0f9d7c4-329a-41a0-9ca2-8786f2640cab + 130c571b-8668-4056-820f-d484bea3fcc9 true Team privileges only @@ -558881,15 +616217,22 @@ - 40eb97dc-4075-4757-9899-6423bb1d9d1d + c5f24b0e-99d3-4567-9675-f683833f8b4a true Direct User (Basic) access level and Team privileges 1033 + + acdc8e7c-41da-47ca-b20b-aa29a3cd0e32 + + true + Adgangsniveau som direkte bruger (basis) og Team-rettigheder + 1030 + - 40eb97dc-4075-4757-9899-6423bb1d9d1d + c5f24b0e-99d3-4567-9675-f683833f8b4a true Direct User (Basic) access level and Team privileges @@ -558915,6 +616258,13 @@ Indication of whether a SDKMessage/Plugin is of ReadOnly or ReadWrite Intent 1033 + + cb0c8c7c-c938-45eb-8725-76e3ab19c631 + + true + Angiver, om SDKMessage/plug-in er med hensigten ReadOnly eller ReadWrite + 1030 + b0bfcb58-06cf-42fb-80ff-dbf772fd7bba @@ -558933,6 +616283,13 @@ Is Operation Intent Read Only 1033 + + 014a971a-ca3c-4972-bb85-ca8fc53d6940 + + true + Er handlingens hensigt skrivebeskyttet + 1030 + 59ff6b6f-5aa5-481b-8d6a-0e7a76d2c58f @@ -558974,6 +616331,13 @@ No 1033 + + ff4010a7-1da1-4163-9349-98a338bc5cbb + + true + Nej + 1030 + 689c7bc5-a039-4084-bd1c-3e1930a82567 @@ -559007,6 +616371,13 @@ Yes 1033 + + b08d97f1-7288-48a2-95b6-026fbcb55032 + + true + Ja + 1030 + 5b05f5da-d6db-4bd1-be75-167605fcccdc @@ -559033,6 +616404,13 @@ Plot Option referenced by configuration. 1033 + + 49130290-97c7-44de-9271-e1563b4b0930 + + true + Afbildningsindstilling, der refereres til i konfigurationen. + 1030 + e9086b8c-4e92-413d-aa68-e0937e163608 @@ -559051,6 +616429,13 @@ Plot Option 1033 + + b07b3fb4-099a-423c-afc0-4665f0e600c4 + + true + Afbildningsindstilling + 1030 + 72c862c8-33e2-4773-a0fe-5580855687d0 @@ -559093,6 +616478,13 @@ Line 1033 + + 11f06e18-0757-4886-9dc6-3f335d2b6f82 + + true + Kurve + 1030 + 559fe78a-eeec-44aa-a1b4-f57511ef5890 @@ -559126,6 +616518,13 @@ Column 1033 + + bbfee8db-98b2-436e-8c7a-eb73f7443afa + + true + Kolonne + 1030 + 9026cff8-5fbc-4b13-bf37-8e535f37ba40 @@ -559159,6 +616558,13 @@ Area 1033 + + e6bc2fe4-e4de-45ea-9931-2130c5351f40 + + true + Område + 1030 + 5fe20343-66a4-4024-ac4b-f2e7f9cc7728 @@ -559192,6 +616598,13 @@ Pie 1033 + + 9f52b8cd-282a-4802-b577-6ed721deba22 + + true + Cirkeldiagram + 1030 + 77806f6a-0ecd-4246-b807-bb7ae72ceedc @@ -559225,6 +616638,13 @@ Bar 1033 + + 59832ce1-9784-4042-89d4-dfc95cfe67ca + + true + Liggende søjlediagram + 1030 + df27bdf6-b37c-4704-b666-07cf5f050f92 @@ -559258,6 +616678,13 @@ Donut 1033 + + c74c1ebb-d2b1-4e8f-b3cf-de1e0caba4a2 + + true + Krans + 1030 + db0629b5-6a07-4735-a818-6fa659fbf110 @@ -559291,6 +616718,13 @@ Infocard 1033 + + 0eda4393-5583-45b3-a25f-e9232a8c5fe4 + + true + Oplysningskort + 1030 + 2e34609c-662e-46e9-98df-d6ac81bbdd20 @@ -559324,6 +616758,13 @@ List 1033 + + 8dd8da9e-7ec8-4850-ac32-3e4759772c6c + + true + Liste + 1030 + a9594b35-7e46-4462-8635-6c37f1cca6ab @@ -559357,6 +616798,13 @@ DoubleDonut 1033 + + 7542d857-558f-48d7-82e1-7d8159e1e476 + + true + Dobbeltkrans + 1030 + e336c5d2-a234-4a39-a87b-f40b0d6c10d2 @@ -559390,6 +616838,13 @@ LinearGauge 1033 + + ccf2e7ce-94a3-4f88-a6e7-94df55120e6d + + true + Lineær måler + 1030 + 625511c4-27c3-4d64-b71a-989d19480517 @@ -559423,6 +616878,13 @@ Bubble 1033 + + 7635e740-9e95-4109-a7f8-abf11c5bd783 + + true + Boble + 1030 + f600df04-90a0-41a1-b4bf-307110eb4677 @@ -559455,6 +616917,13 @@ Component collection sharing role type 1033 + + 801b6fd1-95a4-49bf-95cf-00f6445cdb2d + + true + Rolletype for deling af komponentsamling + 1030 + 27875ee6-c0ba-f011-bbd3-7c1e52365f30 @@ -559490,6 +616959,13 @@ Copilot user has access to the content of the component collection 1033 + + edd7d661-d6f4-4f3a-90d7-0737a111d375 + + true + Copilotbrugeren har adgang til indholdet af komponentsamlingen + 1030 + fce78f0e-9277-4fcb-88bd-b50f362d75c3 @@ -559511,6 +616987,13 @@ Copilot user 1033 + + b3326e3e-8d3a-4c52-a098-60d8cbfb92b2 + + true + Copilotbruger + 1030 + 8b36814e-f6ab-4dec-8a03-ac966065292e @@ -559537,6 +617020,13 @@ Has access to the content of the component collection and can add component collection to the copilot 1033 + + ac87ed83-2837-4a48-9dd0-a31f85aed1ce + + true + Har adgang til indholdet af komponentsamlingen og kan føje komponentsamling til copiloten + 1030 + 907a9f70-0ff6-4168-a340-2b7df0cc14e6 @@ -559558,6 +617048,13 @@ Component collection user 1033 + + 43561134-0052-47b7-98e2-58d67bd5a89b + + true + Bruger af komponentsamling + 1030 + 6dde9202-1749-4471-a287-98f86d580f08 @@ -559584,6 +617081,13 @@ Can author the component collection 1033 + + ec72d515-23d7-4dff-bbf7-7baa944e4f7d + + true + Kan oprette komponentsamlingen + 1030 + 8e9fd433-8949-46da-bb2a-2c60b79f11d4 @@ -559605,6 +617109,13 @@ Component collection author 1033 + + f39525f0-3eaf-48fe-bc28-0698eb45e019 + + true + Forfatter af komponentsamling + 1030 + f2c3451f-0ae9-4d7d-b834-80842e152e61 @@ -560063,6 +617574,13 @@ 1033 + + 399264ff-9577-4d28-9502-22e61e0c6d27 + + true + + 1030 + daae9cae-b9ba-f011-bbd3-7c1e52365f30 @@ -560081,6 +617599,13 @@ Capability 1033 + + 4c09ea33-afb0-4940-b912-c2af075b1fcd + + true + Capability + 1030 + d9ae9cae-b9ba-f011-bbd3-7c1e52365f30 @@ -560123,6 +617648,13 @@ composite 1033 + + 9ae2fb43-2c7d-42f2-bf89-b7eaa8429bdb + + true + composite + 1030 + 1eb1daff-f06d-4425-b1aa-626a26689bd4 @@ -560156,6 +617688,13 @@ tabular 1033 + + 0353cdd0-4a52-4a0e-b682-5439c2971eaf + + true + tabular + 1030 + 7c500cfb-5cae-4953-83e0-91668c844329 @@ -560189,6 +617728,13 @@ blob 1033 + + 61111e87-58e6-4d4a-9bce-b127f8d96576 + + true + blob + 1030 + d8b06701-2193-467c-9e87-1dfd36554d0e @@ -560222,6 +617768,13 @@ gateway 1033 + + fd8bb86f-6b0c-4747-95e3-c7cc98560d64 + + true + gateway + 1030 + 0ceface6-184c-4587-a74b-eed7ad03c71a @@ -560255,6 +617808,13 @@ cloud 1033 + + 3a22b0ac-8a5d-477c-969c-8b42d7ef712b + + true + cloud + 1030 + f577fd9c-4afc-40b0-bf30-9dc35e984170 @@ -560288,6 +617848,13 @@ actions 1033 + + 207de480-d7bc-4bd0-ba42-a9f29de35f65 + + true + actions + 1030 + 0aa1fcc0-b0ee-4be3-ac8f-da4743ef9607 @@ -560316,6 +617883,13 @@ Location type of the SharePoint document location. 1033 + + 1eb7e076-e591-4bf3-9ac5-2472dcdfcd63 + + true + Placeringstype for placeringen af SharePoint-dokumentet. + 1030 + 33cc9538-55b7-4064-ade9-4d2a1089295b @@ -560334,6 +617908,13 @@ Location Type 1033 + + 8e7e5ad0-4c22-4d52-a0e9-a1c89426a6be + + true + Placeringstype + 1030 + f4ec7178-54d6-489a-a313-3ece392bd3ac @@ -560376,6 +617957,13 @@ General 1033 + + 7ef1edb2-9a45-4801-a16b-6b102d909f4c + + true + Generelt + 1030 + dd1a0de0-b5c1-47f4-b3dc-c0fa55d558b0 @@ -560409,6 +617997,13 @@ Dedicated for OneNote Integration 1033 + + c47a27b2-b51e-47d3-9fa0-fac87ee262ea + + true + Dedikeret til OneNote-integration + 1030 + ac7d583a-4829-42cc-892a-0cab41b19090 @@ -560586,6 +618181,13 @@ Shows the different options for online meetings. 1033 + + a0a5a54f-6109-4ed5-b8d1-278d16f391d9 + + true + Viser de forskellige indstillinger for onlinemøder. + 1030 + 065705cb-c7ba-f011-bbd3-7c1e52365f30 @@ -560604,6 +618206,13 @@ Online Meeting Type 1033 + + effb0f2d-5052-4c2b-a5f8-d7fd66e2608c + + true + Onlinemødetype + 1030 + 055705cb-c7ba-f011-bbd3-7c1e52365f30 @@ -560646,6 +618255,13 @@ Teams Meeting 1033 + + d87e93d1-c7b1-4329-85df-13ed04c54814 + + true + Teams-møde + 1030 + acce86f6-e46e-4ebb-bbc6-b9ca8389c487 @@ -561011,6 +618627,13 @@ Power Pages Languages 1033 + + d0f82d82-cf77-4b13-81c6-1df7a1b6d66f + + true + Power Pages-sprog + 1030 + a6fbb96a-f2ba-f011-bbd3-7c1e52365f30 @@ -561029,6 +618652,13 @@ Power Pages Languages 1033 + + 4ceabe91-6df7-4606-a024-039999aa9ceb + + true + Power Pages-sprog + 1030 + a5fbb96a-f2ba-f011-bbd3-7c1e52365f30 @@ -561085,6 +618715,13 @@ Arabic 1033 + + 2ab4a51d-f417-425e-830b-0a26483128e0 + + true + Arabisk + 1030 + 95d15630-b60c-4aee-a37e-6d901188a5df @@ -561132,6 +618769,13 @@ Basque - Basque 1033 + + 03d65f2a-2461-4cf4-a919-09480ef7979a + + true + Baskisk - baskisk + 1030 + fd815511-8d67-4aac-a07d-0c820ce30a0c @@ -561179,6 +618823,13 @@ Bulgarian - Bulgaria 1033 + + 187a7793-05dd-49d1-991e-7b962dd9d4d0 + + true + Bulgarsk - Bulgarien + 1030 + 97c23558-a2ba-4226-a017-9312d42fda33 @@ -561226,6 +618877,13 @@ Catalan - Catalan 1033 + + f6935d6a-b7f7-4038-8117-aa0102bfba1f + + true + Catalansk - catalansk + 1030 + 78bbc8de-d944-4d4b-b9a0-393cf5b5f909 @@ -561273,6 +618931,13 @@ Chinese - China 1033 + + 061c9898-6c79-443c-83da-e01645d2ed64 + + true + Kinesisk - Kina + 1030 + 221fbd65-ee2e-4369-9d3e-cba4eff10f29 @@ -561320,6 +618985,13 @@ Chinese - Hong Kong SAR 1033 + + f01f3076-0781-4a01-a55a-530df59efd7d + + true + Kinesisk – SAR Hongkong + 1030 + 658aace4-97e2-4024-89de-236edb40cbd4 @@ -561367,6 +619039,13 @@ Chinese - Traditional 1033 + + 01c1f9b7-5dbb-415a-b33d-b5b03f05967e + + true + Kinesisk - traditionelt + 1030 + 7de54807-a443-4223-860b-86d95e2b0453 @@ -561414,6 +619093,13 @@ Croatian - Croatia 1033 + + 75524c59-352b-4ab3-b4c0-37ff4717d1de + + true + Kroatisk - Kroatien + 1030 + 92e43f8f-b167-4768-b6c1-b1dddb3e77ca @@ -561461,6 +619147,13 @@ Czech - Czech Republic 1033 + + b4afc884-9a4a-42fb-beac-e88d4f351ec7 + + true + Tjekkisk – Den Tjekkiske Republik + 1030 + 761f53dd-706e-4dd5-9fb5-fd7d08fc6a74 @@ -561508,6 +619201,13 @@ Danish - Denmark 1033 + + 211f94e2-aee8-470a-9ccc-1ae8ee638d06 + + true + Dansk - Danmark + 1030 + 55702a7d-c92e-4f24-9d1c-6ea033e3fc65 @@ -561555,6 +619255,13 @@ Dutch - Netherlands 1033 + + d212bd4f-5323-4097-ad99-2afc0ed512fe + + true + Hollandsk – Nederlandene + 1030 + d912c794-228a-4449-beab-fb4d71113ab0 @@ -561602,6 +619309,13 @@ English 1033 + + abded012-688a-44d2-a076-fcd26d7c5a2f + + true + Engelsk + 1030 + f29a715a-ead6-492b-9645-52c8e907a401 @@ -561649,6 +619363,13 @@ Estonian - Estonia 1033 + + 4e9e0643-f4a2-43fb-a0b5-7731e74e13ce + + true + Estisk - Estland + 1030 + aebfbfc6-e9dd-470f-a733-74a73dd3c5a8 @@ -561696,6 +619417,13 @@ Finnish - Finland 1033 + + b444e76a-03db-4e32-ae58-6b9865589afe + + true + Finsk – Finland + 1030 + 3b958e5d-fab5-41c9-9b76-58fe9c14e77e @@ -561743,6 +619471,13 @@ French - France 1033 + + bc7fef2e-9a99-4ce7-af97-67c9d4b74585 + + true + Fransk - Frankrig + 1030 + e10fa2d7-fc1e-442d-9a55-ebc9aedc2e81 @@ -561790,6 +619525,13 @@ Galician - Spain 1033 + + f351b8c1-58fc-4beb-9765-50b0a06aa80b + + true + Galicisk – Spanien + 1030 + a778b46b-fe0f-4a14-ba9c-bd208f8060aa @@ -561837,6 +619579,13 @@ German - Germany 1033 + + dc9cfd20-66cf-4413-9ed8-453702b7ed31 + + true + Tysk - Tyskland + 1030 + 172646cc-e42e-4d95-a621-35ffb2cab9cf @@ -561884,6 +619633,13 @@ Greek - Greece 1033 + + 862c2b80-a9b1-4a35-b70a-09ba12ab9a26 + + true + Græsk - Grækenland + 1030 + 3f605dcf-c647-4fab-b3b1-c06ac16e8b79 @@ -561931,6 +619687,13 @@ Hebrew 1033 + + ff25adc2-ae0a-417d-b9b0-a00c185a7ba0 + + true + Hebraisk + 1030 + 8c949bd4-8361-433a-9e8b-5b480466482a @@ -561978,6 +619741,13 @@ Hindi - India 1033 + + 8a87057e-b789-4262-b782-ad19d1a2900f + + true + Hindi - Indien + 1030 + c4930530-3b00-43d5-948d-7e74a3008056 @@ -562025,6 +619795,13 @@ Hungarian - Hungary 1033 + + f39faf11-69c9-41d7-b84f-ff84166af30f + + true + Ungarsk - Ungarn + 1030 + 859d238f-528f-4ca3-aa76-11c58f4b8be3 @@ -562072,6 +619849,13 @@ Indonesian - Indonesia 1033 + + f67035b8-f0e1-46bc-9301-67967726033c + + true + Indonesisk - Indonesien + 1030 + 5b9cb547-3e6c-44b4-918e-a0ad804b4efa @@ -562119,6 +619903,13 @@ Italian - Italy 1033 + + 21e13f86-baf6-47b5-99ac-82e953697df4 + + true + Italiensk - Italien + 1030 + bf952530-0d8a-4b07-b8cd-73bf8f6d3ddb @@ -562166,6 +619957,13 @@ Japanese - Japan 1033 + + 4ce26812-b2a8-4788-b34b-8198160005bc + + true + Japansk – Japan + 1030 + d216664b-9c64-4b63-ac43-0140ba42988a @@ -562213,6 +620011,13 @@ Kazakh - Kazakhstan 1033 + + 2a2ea3a3-ee2b-4824-ad8a-74b6771021e8 + + true + Kasakhisk – Kasakhstan + 1030 + 45a4da8f-d16e-4f1f-9611-39bd36774834 @@ -562260,6 +620065,13 @@ Korean - Korea 1033 + + 4c0b6025-bb1f-4b1b-963d-e865a69c81cb + + true + Koreansk – Sydkorea + 1030 + 348e81c4-0102-4ee4-85aa-6655beb777b9 @@ -562307,6 +620119,13 @@ Latvian - Latvia 1033 + + 31f26f78-4131-4fcf-b3d0-ab31da2130ac + + true + Lettisk - Letland + 1030 + 5febdea1-b46e-415c-9517-91264ec75d05 @@ -562354,6 +620173,13 @@ Lithuanian - Lithuania 1033 + + 717877e1-fbfc-45e7-a6ff-bd9c7f2fb9eb + + true + Litauisk - Litauen + 1030 + 9428b56a-3412-4a71-83fe-4fe000aad949 @@ -562401,6 +620227,13 @@ Malay - Malaysia 1033 + + 20df6eb0-34bf-46b2-af7e-4e6c9ca83248 + + true + Malajisk – Malaysia + 1030 + 4b9b74e5-cc83-4ab1-9ab4-446877d4809a @@ -562448,6 +620281,13 @@ Norwegian (Bokmål) - Norway 1033 + + 6f881ec9-0e41-4177-8e8f-b164287e71a7 + + true + Norsk (bokmål) – Norge + 1030 + c82a01f7-0a3c-4c9e-bf32-267b90a2f717 @@ -562495,6 +620335,13 @@ Polish - Poland 1033 + + 2d5f7e05-0a0b-42a5-b745-67abfeb14d4d + + true + Polsk - Polen + 1030 + 30ad60a7-5a75-4e73-92f6-a7fb2db8f133 @@ -562542,6 +620389,13 @@ Portuguese - Brazil 1033 + + 63e96f57-43b9-4e8b-8f1a-13dcd74b58bf + + true + Portugisisk - Brasilien + 1030 + e131d35f-1b83-4eff-8dc8-6e0cf38e4f97 @@ -562589,6 +620443,13 @@ Portuguese - Portugal 1033 + + e3d4b380-69a7-446b-b09b-ef6c5d117585 + + true + Portugisisk - Portugal + 1030 + 536cd791-702c-43b4-82c3-967ceee50037 @@ -562636,6 +620497,13 @@ Romanian - Romania 1033 + + 29f088d3-cb36-408e-bf71-a2aaf638496e + + true + Rumænsk - Rumænien + 1030 + acd030cb-8fa8-41d6-a9ca-8c8b680047e3 @@ -562683,6 +620551,13 @@ Russian - Russia 1033 + + 65fe47e4-de97-4cd8-b921-c8d373d74558 + + true + Russisk - Rusland + 1030 + 56d96c5d-f5e0-45bb-a873-96adde5f2f3b @@ -562730,6 +620605,13 @@ Serbian (Cyrillic) - Serbia 1033 + + 59015143-6711-4cbb-8be7-b2350e5a5280 + + true + Serbisk (kyrillisk) – Serbien + 1030 + 4e82082a-292e-4559-a5d3-d1400bccb9e3 @@ -562777,6 +620659,13 @@ Serbian (Latin) - Serbia 1033 + + 97582ef7-4dcd-41d7-a880-2e652830b03a + + true + Serbisk (latinsk) – Serbien + 1030 + ac905bd0-40c6-4407-aab5-d8de8a267397 @@ -562824,6 +620713,13 @@ Slovak - Slovakia 1033 + + b41e2ad4-1638-4bb1-aca4-917dd34ec571 + + true + Slovakisk - Slovakiet + 1030 + b5c797d9-de7d-438a-bd72-ec7e8215f623 @@ -562871,6 +620767,13 @@ Slovenian - Slovenia 1033 + + c355e25a-dbbc-4df5-8108-1b79afdb8bb7 + + true + Slovensk - Slovenien + 1030 + c23e8037-ff0a-4c4c-ad0f-f7a6cc1fc46a @@ -562918,6 +620821,13 @@ Spanish (Traditional Sort) - Spain 1033 + + 6c28bd66-232b-4add-bc83-79590c2a9b79 + + true + Spansk (traditionel sortering) - Spanien + 1030 + 40f41cdf-db51-412f-bcbd-08e9de772088 @@ -562965,6 +620875,13 @@ Swedish - Sweden 1033 + + fc5e93ca-c77c-4500-85f7-098a9e207247 + + true + Svensk - Sverige + 1030 + ba7849f7-ff76-4f47-ab02-6ca4ddbbaef0 @@ -563012,6 +620929,13 @@ Thai - Thailand 1033 + + 77adf3f2-caf1-4865-95e9-c51db33c04f6 + + true + Thailandsk – Thailand + 1030 + 37a53507-bab1-46dc-a197-ab1726256914 @@ -563059,6 +620983,13 @@ Turkish - Türkiye 1033 + + 0de29406-3833-4de6-ad20-1cae203f2c82 + + true + Tyrkisk – Tyrkiet + 1030 + efad8d94-d7c3-4c78-8b7d-aee679322e97 @@ -563106,6 +621037,13 @@ Ukrainian - Ukraine 1033 + + 7d75981f-f6cb-48f4-a303-cc203ba3cf79 + + true + Ukrainsk - Ukraine + 1030 + 98fa7cb3-53c8-49aa-bfa0-629ce5493af0 @@ -563153,6 +621091,13 @@ Vietnamese - Vietnam 1033 + + 31a4df1b-7c99-41b5-98dd-917819747ad2 + + true + Vietnamesisk - Vietnam + 1030 + cb13835d-035b-484a-a811-5b353fd409ec @@ -563181,6 +621126,13 @@ Publish 1033 + + 5cf0b768-1d5d-45f2-965d-2b36065f9701 + + true + Udgiv + 1030 + 08d13518-1e05-45eb-aab5-8201b0d1fdf5 @@ -563199,6 +621151,13 @@ Publish 1033 + + 1a6479b4-e745-4531-8198-441b5c6f53c0 + + true + Udgiv + 1030 + 7dafe74c-136c-4eb9-bbbd-b9ce23c9fe9a @@ -563240,6 +621199,13 @@ Now 1033 + + 5c196cb1-194c-4dd3-acd5-8b511f7c63f2 + + true + Nu + 1030 + 4dd6dc68-bc06-4765-a249-686f179a584c @@ -563273,6 +621239,13 @@ In The Future 1033 + + b87850be-657c-49bb-bfd4-c7a5a2393b8c + + true + I fremtiden + 1030 + d422a05d-a80a-4772-867f-4e4cba9e83be @@ -563299,6 +621272,13 @@ Priority of delivery of the activity to the email server. 1033 + + 9369f0c5-885b-411d-b541-ded5280d1989 + + true + Prioritet for levering af aktiviteten til mailserveren. + 1030 + 7264430c-c5b1-4b81-9189-a25d07d321b9 @@ -563317,6 +621297,13 @@ Delivery Priority 1033 + + f1321411-173e-4538-ac72-ba96654f213e + + true + Leveringsprioritet + 1030 + e0ee0a05-e0ca-430f-897d-ecf3cc669f47 @@ -563359,6 +621346,13 @@ Low 1033 + + 7f291390-c832-4be8-a4ce-a82b1d970217 + + true + Lav + 1030 + dbc0f26f-9159-4d4c-be73-e3c2b4c6895a @@ -563392,6 +621386,13 @@ Normal 1033 + + 1d86b04a-d420-49ca-9058-333e1aa90f8d + + true + Normal + 1030 + 256e48d9-5e3b-4aaa-8942-415be3788839 @@ -563425,6 +621426,13 @@ High 1033 + + 6bc26392-f76c-407f-8d91-d5c88137f9f3 + + true + Høj + 1030 + 396d26b6-905b-44da-9d3a-81bed58d1846 @@ -563640,6 +621648,13 @@ Queue item route to Queue and User/Team options 1033 + + f1aedebb-3eba-4fad-ad70-d7f1cd6b8450 + + true + Indstillinger for afsendelse af køelement til kø og bruger/team + 1030 + 1538ae92-3228-4185-985b-818d08f7c51f @@ -563658,6 +621673,13 @@ Queue Item Route To Options 1033 + + 466d23fe-af90-4d4f-82cc-36bb54b8fb7c + + true + Indstillinger for afsendelse af køelement til + 1030 + f368bb98-e1e0-4d6c-b81f-85004fe17819 @@ -563699,6 +621721,13 @@ Queue 1033 + + 73e67009-2568-4bec-8cf3-a14cec5754e3 + + true + + 1030 + b6502395-1d84-4a85-bbd5-04e0da2d0cc2 @@ -563732,6 +621761,13 @@ User/Team 1033 + + 1a906a19-cbee-4cee-9af7-f8ee754db2b9 + + true + Bruger/team + 1030 + 6655e7b5-d7ac-4899-b7d5-c5455dfe3bdf @@ -563945,6 +621981,13 @@ Version Type to be created such as Major, Minor 1033 + + cebf4459-3081-49b7-8d32-d94ffe35d2d3 + + true + Versionstype skal oprettes f.eks. som Overordnet, Underordnet + 1030 + 2af07cad-53da-4d9f-8070-1cf48aca8b6b @@ -563963,6 +622006,13 @@ Version Type 1033 + + cd3431ec-a9e6-4b8b-bfbd-c02af6fbf3d4 + + true + Versionstype + 1030 + 1ecc8da9-f0ba-483c-a4fe-1ad14b3227d8 @@ -564004,6 +622054,13 @@ Major 1033 + + e48c0681-9edb-4314-a54b-db6a09b7fef4 + + true + Overordnet + 1030 + dc292c33-4ea9-4143-9edc-364decd1f655 @@ -564037,6 +622094,13 @@ Minor 1033 + + c67809c1-ac41-4968-9f74-59df40e18145 + + true + Underordnet + 1030 + 16f4aa5c-05f5-4931-b36c-11c23b39b3d2 @@ -564063,6 +622127,13 @@ Type of connection to use with RunDesktopFlow action. 1033 + + 4a685abb-19bb-4346-a02b-f7b56d51b36e + + true + Den forbindelsestype, der skal bruges til handlingen RunDesktopFlow. + 1030 + 92ef27e4-baba-f011-bbd3-7c1e52365f30 @@ -564081,6 +622152,13 @@ RunDesktopFlow connection type 1033 + + 2a0d3c26-ad7f-4628-99ba-9fabf2876813 + + true + RunDesktopFlow-forbindelsestype + 1030 + 91ef27e4-baba-f011-bbd3-7c1e52365f30 @@ -564123,6 +622201,13 @@ Connection 1033 + + a37ab242-922e-464f-ac3f-b9b2ce37d6e9 + + true + Forbindelse + 1030 + 05c4eaed-08be-4280-abb2-f543497569fc @@ -564156,6 +622241,13 @@ Connection reference 1033 + + d703b578-1d58-4afd-907a-35d6c17c30ca + + true + Forbindelsesreference + 1030 + 02036a66-07c7-4543-913c-eafe5cedb33d @@ -564184,6 +622276,13 @@ For internal use only. 1033 + + aafb6b59-8724-4dd9-8b3b-9192356f0847 + + true + Kun til intern brug. + 1030 + 28832794-db51-421a-b8ad-e8c50c86822d @@ -564202,6 +622301,13 @@ Boolean Option Set 1033 + + c9fc06a5-6cd7-48f6-bbdc-4462eac56819 + + true + Boolesk grupperet indstilling + 1030 + ffb76afe-a71a-463e-813f-dfb23ff0d17e @@ -564243,6 +622349,13 @@ No 1033 + + 7301070b-8077-40e6-b957-0ed4c4f1ee8b + + true + Nej + 1030 + 730b0071-7dd3-4169-bf14-99c54bb089ab @@ -564276,6 +622389,13 @@ Yes 1033 + + f271f014-f9d6-46ad-8ec3-27c10a91f921 + + true + Ja + 1030 + 1326e62b-9049-4ca3-b5ec-2031a0af7410 @@ -564302,6 +622422,13 @@ Type of Reuse Policy associated with Copilot Studio copilot components. 1033 + + dd4854bf-910b-4607-af84-d43a37c27683 + + true + Den type politik for genbrug, der er tilknyttet copilot-komponenter i Copilot Studio. + 1030 + 32875ee6-c0ba-f011-bbd3-7c1e52365f30 @@ -564320,6 +622447,13 @@ Copilot Component Reuse Policy 1033 + + c7aaff3b-b70d-4bf9-b0ff-e29fe0f7d01a + + true + Politik for genbrug af copilotkomponent + 1030 + 31875ee6-c0ba-f011-bbd3-7c1e52365f30 @@ -564355,6 +622489,13 @@ Not Reusable. By default, a copilot component is not reusable and Reuse Policy is None 1033 + + 60eff43a-7b23-4c0b-a883-4d3ebadfd7f7 + + true + Kan ikke genbruges. En copilot-komponent kan som standard ikke genbruges, og politikken for genbrug er Ingen + 1030 + 097a0b96-9c00-4918-98c2-fc193efd3528 @@ -564376,6 +622517,13 @@ None 1033 + + 0a87cd02-c4c2-4385-b33e-d63f6e9e99b8 + + true + Ingen + 1030 + 05350603-c854-4205-bb29-3dee21d738cb @@ -564402,6 +622550,13 @@ Is required by one or more Public copilot component, but is not directly invokable or visible 1033 + + feece7d8-3850-4498-b47c-ea4289c96266 + + true + Kræves af én eller flere underkomponenter til offentlig copilot, men kan ikke aktiveres direkte eller er ikke synlig + 1030 + 843cf80a-ebea-4d63-8645-9cfba8c96921 @@ -564423,6 +622578,13 @@ Private 1033 + + 35f5a0ab-234e-4a6c-a4ba-245dafe10ae7 + + true + Privat + 1030 + ede2250a-3e25-49eb-ace4-d99b56a190ba @@ -564449,6 +622611,13 @@ Visible shared / reusable copilot component for use in all bots in the environment 1033 + + 446b9da8-1af5-4d40-bd96-9b0499b37e01 + + true + Synlig delt/genanvendelig copilot-komponent til brug i alle robotter i miljøet + 1030 + 11febbb4-fd2f-4a71-921b-05281d64014d @@ -564470,6 +622639,13 @@ Public 1033 + + f250c999-09a3-44c9-867f-2f722fbe9ca2 + + true + Offentlig + 1030 + de3e1001-3676-4d0f-bd22-4d3eb8811e83 @@ -564788,6 +622964,13 @@ Full sync required or not 1033 + + 72bfbd99-f396-4166-be31-9b068f293452 + + true + Fuld synkronisering kræves eller ej + 1030 + 54f9ddeb-4a4e-4642-a691-cf9f32928d4c @@ -564833,6 +623016,13 @@ No 1033 + + cf129c18-7b14-400a-bfb4-22d419250093 + + true + Nej + 1030 + d7736996-69e4-4d47-90fd-fdf910ae7d06 @@ -564866,6 +623056,13 @@ Yes 1033 + + d6acaaac-75fe-487d-8be6-6ca4bb2a5717 + + true + Ja + 1030 + 7c19d071-10ea-4459-80d5-f81b1f43bb93 @@ -564892,6 +623089,13 @@ Select the entity for which SLA is to be created 1033 + + 79b37b3c-8a05-4328-835d-058ed16cdf93 + + true + Vælg det objekt, som SLA'en skal oprettes for + 1030 + 0c9a3a2c-8600-4027-8a50-f1d9cc021af7 @@ -564910,6 +623114,13 @@ SLA new MDD dialog 1033 + + 5f3c0d58-16c3-4967-a6e2-fa40265c37f8 + + true + Ny MDD-dialogboks for SLA + 1030 + 56196c54-a61b-4219-8298-c9986b079ef8 @@ -564946,6 +623157,13 @@ Power Pages Source File Type 1033 + + 10f5dac0-7daf-4893-a612-b83042f064c6 + + true + Power Pages-kildefiltype + 1030 + d6fbb96a-f2ba-f011-bbd3-7c1e52365f30 @@ -564964,6 +623182,13 @@ Power Pages Source File Type 1033 + + 741f68e0-b4d5-4027-a500-207585769bf8 + + true + Power Pages-kildefiltype + 1030 + d5fbb96a-f2ba-f011-bbd3-7c1e52365f30 @@ -565020,6 +623245,13 @@ Html 1033 + + 343ae2d6-a69c-4fe8-9291-d90b464b4c9f + + true + Html + 1030 + 0d5687c4-33b7-4764-aee7-b2036c7e647a @@ -565067,6 +623299,13 @@ Java script 1033 + + a676ddbc-7726-4dae-a74c-f72c8a80cbf6 + + true + Java script + 1030 + bc4216cd-f835-4163-8b24-d92989b58d9b @@ -565114,6 +623353,13 @@ CSS 1033 + + 1402c8de-5380-406d-a7b9-3f2c14601ada + + true + CSS + 1030 + 59c021fe-0a74-44c2-bfc5-7c90a1712028 @@ -565161,6 +623407,13 @@ TSX 1033 + + 20618c4d-910a-4b60-bebf-34addd6870ca + + true + TSX + 1030 + 1512b532-ae4c-4176-bb90-f0ad53854101 @@ -565208,6 +623461,13 @@ XML 1033 + + 7504a738-13ac-45d9-92a5-f881b1ac53a6 + + true + XML + 1030 + 9c8d52b4-0683-43d5-b081-9936c858aab5 @@ -565255,6 +623515,13 @@ JSON 1033 + + 117e40eb-fda2-428f-bb94-bf10e9d2c62a + + true + JSON + 1030 + 9d30a897-4c2c-43e8-be05-b1f2f72b9270 @@ -565302,6 +623569,13 @@ Yml 1033 + + ca7a2ae5-1d0d-4e25-a041-e4421de5e6f9 + + true + Yml + 1030 + c1036605-569c-477b-b97c-751e77663ab9 @@ -565349,6 +623623,13 @@ Web Template 1033 + + e1110c57-0489-43c6-85fd-7517957ec212 + + true + Webskabelon + 1030 + f5a41421-7de1-40bf-87bc-a27e650ac3ca @@ -565377,6 +623658,13 @@ Information on whether this is an online meeting. 1033 + + 22c55300-f590-4c1f-979c-c24d34969e48 + + true + Oplysninger, der angiver, om der er et onlinemøde. + 1030 + 005705cb-c7ba-f011-bbd3-7c1e52365f30 @@ -565395,6 +623683,13 @@ Is Online Meeting 1033 + + 8a18318b-7239-42c5-a396-c4e7c7c1fd96 + + true + Er onlinemøde + 1030 + ff5605cb-c7ba-f011-bbd3-7c1e52365f30 @@ -565436,6 +623731,13 @@ No 1033 + + 94e469a7-cb60-4799-9c9e-332620a0c7b0 + + true + Nej + 1030 + 83b6bcda-d7fb-417d-8e6f-3facdae94446 @@ -565469,6 +623771,13 @@ Yes 1033 + + cb393aaa-f291-43e8-9e0c-f9ef3fd7e98a + + true + Ja + 1030 + 0f8e6694-5fcf-496e-8345-4a39600c88a1 @@ -565826,6 +624135,13 @@ Assign type, such as Assign to me or Assign to another user or team. 1033 + + a2df0219-a2ff-4443-ad8d-c2f26e3d28c0 + + true + Tildel type, f.eks. Tildel til mig eller Tildel til en anden bruger eller et andet team. + 1030 + f259d9b4-0587-4fb2-bdce-fb0aba793ed7 @@ -565844,6 +624160,13 @@ Assign type 1033 + + d5ccbde2-675a-45ae-8739-79b1cb6c3aec + + true + Tildel type + 1030 + c8b342bb-cf45-4e44-bb91-e4b12ed36449 @@ -565885,6 +624208,13 @@ Me 1033 + + 6196ef79-d987-466a-a389-fa9abaae1696 + + true + Mig + 1030 + 2ebebf70-c4c1-4b6d-9b77-db1f65546227 @@ -565918,6 +624248,13 @@ User or team 1033 + + b4999a58-9346-4116-8534-53b82a6db175 + + true + Bruger eller team + 1030 + 0701cebc-7e2f-44a0-a0e3-8940375bd095 @@ -566375,6 +624712,13 @@ All of the possible component types for solutions. 1033 + + 9f75a6da-592a-43f9-ba98-374a051c5fe2 + + true + Alle de mulige komponenttyper for løsninger. + 1030 + 3250e1f4-b9bb-11de-844f-00155da18b00 @@ -566393,6 +624737,13 @@ Component Type 1033 + + 501f9977-ed07-46c3-a183-2737e526d456 + + true + Komponenttype + 1030 + 3250e1f3-b9bb-11de-844f-00155da18b00 @@ -566435,6 +624786,13 @@ Entity 1033 + + fe72ef59-ace9-4cae-a297-2795fb61c3c5 + + true + Objekt + 1030 + 3250e1f6-b9bb-11de-844f-00155da18b00 @@ -566468,6 +624826,13 @@ Attribute 1033 + + 55615991-abca-46a3-a140-139f1d26413f + + true + Attribut + 1030 + 3250e1f8-b9bb-11de-844f-00155da18b00 @@ -566501,6 +624866,13 @@ Relationship 1033 + + c9ece387-8ca0-4f62-acbb-e3693f4beaec + + true + Relation + 1030 + 3250e1fa-b9bb-11de-844f-00155da18b00 @@ -566534,6 +624906,13 @@ Attribute Picklist Value 1033 + + 8e3cd8e3-5a68-4dc2-a077-cb9d38cb8392 + + true + Værdi på valgliste med attributter + 1030 + 3250e1fc-b9bb-11de-844f-00155da18b00 @@ -566567,6 +624946,13 @@ Attribute Lookup Value 1033 + + 714ffbd8-e3eb-41f5-a17a-3004edbf956c + + true + Opslagsværdi for attribut + 1030 + 3250e1fe-b9bb-11de-844f-00155da18b00 @@ -566600,6 +624986,13 @@ View Attribute 1033 + + 73849f39-3f89-4c9b-b37b-1b950b63e6be + + true + Vis attribut + 1030 + 3250e200-b9bb-11de-844f-00155da18b00 @@ -566633,6 +625026,13 @@ Localized Label 1033 + + 21be73c4-2497-4f2f-9797-d283e120a9ca + + true + Lokaliseret etiket + 1030 + 3250e202-b9bb-11de-844f-00155da18b00 @@ -566666,6 +625066,13 @@ Relationship Extra Condition 1033 + + ff2d0745-7437-4260-8b5a-c6aac37d1628 + + true + Ekstra betingelse i relation + 1030 + 3250e204-b9bb-11de-844f-00155da18b00 @@ -566699,6 +625106,13 @@ Option Set 1033 + + 34a2b6fd-4336-48f2-ac72-29f9ab03a634 + + true + Grupperet indstilling + 1030 + 3250e206-b9bb-11de-844f-00155da18b00 @@ -566732,6 +625146,13 @@ Entity Relationship 1033 + + c1965ed6-2f4a-40ad-b9e8-635002b9f01d + + true + Objektrelation + 1030 + 3250e208-b9bb-11de-844f-00155da18b00 @@ -566765,6 +625186,13 @@ Entity Relationship Role 1033 + + be80b00f-f107-49e5-920e-e09328a50b56 + + true + Rolle i objektrelation + 1030 + 3250e20a-b9bb-11de-844f-00155da18b00 @@ -566798,6 +625226,13 @@ Entity Relationship Relationships 1033 + + 3dd44a68-27ba-4fd2-ad55-d697227d1984 + + true + Relationer i objektrelation + 1030 + 3250e20c-b9bb-11de-844f-00155da18b00 @@ -566831,6 +625266,13 @@ Managed Property 1033 + + 789c5bb1-8f6c-4aeb-858d-ae898680bb3b + + true + Administreret egenskab + 1030 + b66c9941-227d-11df-8577-00155da18b00 @@ -566864,6 +625306,13 @@ Entity Key 1033 + + 6c346370-cb82-45ea-a4fa-0ff096e0bd7c + + true + Objektnøgle + 1030 + 44b455a2-680b-44a3-98e6-af05d7fac1b2 @@ -566897,6 +625346,13 @@ Privilege 1033 + + 25547ca7-6775-468e-9d84-144e136d7440 + + true + Rettighed + 1030 + 223f03be-0e3f-4f76-b6ff-0ff1264afa58 @@ -566930,6 +625386,13 @@ PrivilegeObjectTypeCode 1033 + + dc598bed-733c-40d4-b2e3-eaae4579aff7 + + true + PrivilegeObjectTypeCode + 1030 + 30d7f58d-55ab-4eb8-8b19-a576555921bd @@ -566963,6 +625426,13 @@ Role 1033 + + d281e93a-af94-45b4-81aa-b63b97b92414 + + true + Rolle + 1030 + 35dbde9c-b9bd-11de-844f-00155da18b00 @@ -566996,6 +625466,13 @@ Role Privilege 1033 + + fcf32711-1167-4924-b0d0-c95d1d44fb94 + + true + Rollerettighed + 1030 + 35dbde9e-b9bd-11de-844f-00155da18b00 @@ -567029,6 +625506,13 @@ Display String 1033 + + 3b43f0fe-9a21-4b2c-a487-503ef211b739 + + true + Visningsstreng + 1030 + 35dbdea0-b9bd-11de-844f-00155da18b00 @@ -567062,6 +625546,13 @@ Display String Map 1033 + + 29f0f956-9d11-4a19-92a9-361c65e75989 + + true + Visningsstrengtilknytning + 1030 + 35dbdea2-b9bd-11de-844f-00155da18b00 @@ -567095,6 +625586,13 @@ Form 1033 + + 2288adcc-1e1d-453e-b5e1-6dcc5c26a7eb + + true + Formular + 1030 + 35dbdea4-b9bd-11de-844f-00155da18b00 @@ -567128,6 +625626,13 @@ Organization 1033 + + ea054f55-30b6-4aac-9926-d66c71998d92 + + true + Organisation + 1030 + 35dbdea6-b9bd-11de-844f-00155da18b00 @@ -567161,6 +625666,13 @@ Saved Query 1033 + + e2adda6d-07d6-4642-aa74-90c598df9a65 + + true + Gemt forespørgsel + 1030 + 35dbdea8-b9bd-11de-844f-00155da18b00 @@ -567194,6 +625706,13 @@ Workflow 1033 + + 4830f9e8-457a-43da-868f-a3793e6c0d97 + + true + Arbejdsproces + 1030 + 35dbdeae-b9bd-11de-844f-00155da18b00 @@ -567227,6 +625746,13 @@ Report 1033 + + d834ba5f-1b49-46a6-bf2e-2097927d6dab + + true + Rapport + 1030 + 2d2fa8a6-df9c-436b-89c1-cb9a79a94a1d @@ -567260,6 +625786,13 @@ Report Entity 1033 + + f109aaf3-72f3-4ccd-9ab7-985c97a5be53 + + true + Rapportobjekt + 1030 + e48fd8ee-6621-40bd-a9a1-a1e00544643e @@ -567293,6 +625826,13 @@ Report Category 1033 + + 09feed14-9a0f-4373-9e2e-2580ca87f79c + + true + Rapportkategori + 1030 + 91a7a3f9-d7a6-479b-b520-48e02f7319f9 @@ -567326,6 +625866,13 @@ Report Visibility 1033 + + 650a2e4e-7d47-4d82-967d-ed3efea31c65 + + true + Rapportsynlighed + 1030 + 270c9f8b-4f74-4bce-a7ab-ce3baa4e6093 @@ -567359,6 +625906,13 @@ Attachment 1033 + + ab962989-70f9-4196-9b78-80704eae0370 + + true + Vedhæftet fil + 1030 + f0e8d73c-b474-4c8d-9ae0-df0aea227d2e @@ -567392,6 +625946,13 @@ Email Template 1033 + + 96734669-465e-4489-a670-64bbba76c94a + + true + E-mail-skabelon + 1030 + 35dbdeb2-b9bd-11de-844f-00155da18b00 @@ -567425,6 +625986,13 @@ Contract Template 1033 + + e1ad718a-a5bf-4322-8402-9471d98168d7 + + true + Kontraktskabelon + 1030 + 35dbdeb4-b9bd-11de-844f-00155da18b00 @@ -567458,6 +626026,13 @@ KB Article Template 1033 + + 7b929693-574c-4cb0-8370-f7715c11fa90 + + true + Skabelon til KnowledgeBase-artikel + 1030 + 35dbdeb6-b9bd-11de-844f-00155da18b00 @@ -567491,6 +626066,13 @@ Mail Merge Template 1033 + + ceddb5ea-7f3d-4ae6-be1c-38adeea03cbd + + true + Skabelon til brevfletning + 1030 + 35dbdeb8-b9bd-11de-844f-00155da18b00 @@ -567524,6 +626106,13 @@ Duplicate Rule 1033 + + 8ffa522f-4c35-4345-90bd-9670f3063c9b + + true + Duplikeret regel + 1030 + 35dbdeba-b9bd-11de-844f-00155da18b00 @@ -567557,6 +626146,13 @@ Duplicate Rule Condition 1033 + + b74f7cd8-50cc-40f6-9f1d-3ed1be08f93c + + true + Dubletregeltilstand + 1030 + 35dbdebc-b9bd-11de-844f-00155da18b00 @@ -567590,6 +626186,13 @@ Entity Map 1033 + + 9f89bbb7-12b8-46c5-ab8c-7afc88822a4b + + true + Objekttilknytning + 1030 + 35dbdebe-b9bd-11de-844f-00155da18b00 @@ -567623,6 +626226,13 @@ Attribute Map 1033 + + d25dbd8a-b046-47b8-aaab-38922783eefc + + true + Attributtilknytning + 1030 + 35dbdec0-b9bd-11de-844f-00155da18b00 @@ -567656,6 +626266,13 @@ Ribbon Command 1033 + + e7b9e5e9-bf7d-43f3-bbed-0b9f4a5d5f22 + + true + Kommando på bånd + 1030 + 35dbdec2-b9bd-11de-844f-00155da18b00 @@ -567689,6 +626306,13 @@ Ribbon Context Group 1033 + + e1a03d3d-8c6c-4343-ab69-43e44030a2b8 + + true + Genvejsmenu til gruppe på bånd + 1030 + 35dbdec4-b9bd-11de-844f-00155da18b00 @@ -567722,6 +626346,13 @@ Ribbon Customization 1033 + + 21f2b89c-e834-49e9-b1bf-bf72796e17b1 + + true + Tilpasning af båndet + 1030 + 35dbdec6-b9bd-11de-844f-00155da18b00 @@ -567755,6 +626386,13 @@ Ribbon Rule 1033 + + 392b0442-f1d0-43cd-9b32-1aaa082e3a4d + + true + Båndregel + 1030 + 35dbdec8-b9bd-11de-844f-00155da18b00 @@ -567788,6 +626426,13 @@ Ribbon Tab To Command Map 1033 + + 7123f030-87a6-4b0e-9eb3-1bc6a496a8ae + + true + Tilknytning mellem fane på båndet og kommando + 1030 + 35dbdeca-b9bd-11de-844f-00155da18b00 @@ -567821,6 +626466,13 @@ Ribbon Diff 1033 + + 32a1984f-e0d7-49c1-8623-4ecbcf27fa8e + + true + Difference på bånd + 1030 + 35dbdecc-b9bd-11de-844f-00155da18b00 @@ -567854,6 +626506,13 @@ Saved Query Visualization 1033 + + 37683582-0d17-49ee-b2c6-a883fccc1bc8 + + true + Visualisering af forespørgsel blev gemt + 1030 + e4261e0c-b9bd-11de-844f-00155da18b00 @@ -567887,6 +626546,13 @@ System Form 1033 + + e29a885e-70a0-4e57-b71b-ae6d4e2bbf95 + + true + Systemformular + 1030 + e4261e0e-b9bd-11de-844f-00155da18b00 @@ -567920,6 +626586,13 @@ Web Resource 1033 + + 2558e188-d2f1-4fc4-bcd4-8a6dae6413bd + + true + Webressource + 1030 + e4261e10-b9bd-11de-844f-00155da18b00 @@ -567953,6 +626626,13 @@ Site Map 1033 + + 004ecd08-a085-4093-aba4-209440491a2d + + true + Oversigt over websted + 1030 + e4261e12-b9bd-11de-844f-00155da18b00 @@ -567986,6 +626666,13 @@ Connection Role 1033 + + 8af2a10f-7e4e-4535-ad38-330323c60881 + + true + Forbindelsesrolle + 1030 + e4261e14-b9bd-11de-844f-00155da18b00 @@ -568019,6 +626706,13 @@ Complex Control 1033 + + 3babdd2f-6d5e-4d4f-9868-b9d5cedff35f + + true + Komplekst kontrolelement + 1030 + 0d4bd12a-5149-49b2-925f-d09ce20c4be8 @@ -568052,6 +626746,13 @@ Field Security Profile 1033 + + 550cdfd3-3b45-491a-97fb-bcc4acef11fb + + true + Profil for feltsikkerhed + 1030 + 9d15b865-2d55-11df-838b-0019b9279bfb @@ -568085,6 +626786,13 @@ Field Permission 1033 + + a9205f4c-a02a-473d-ad85-79fcfad4ab56 + + true + Feltrettighed + 1030 + af8018e1-2d55-11df-838b-0019b9279bfb @@ -568118,6 +626826,13 @@ Plugin Type 1033 + + 4bd335bf-46a3-44ff-8ddb-7b229b67c54a + + true + Type af plug-in + 1030 + bda86701-56d0-48d3-8328-7891c3f3984f @@ -568151,6 +626866,13 @@ Plugin Assembly 1033 + + 609c5670-2988-4a54-9d74-74e5df1bf34e + + true + Plug-in-assembly + 1030 + bda86711-56d0-48d3-8328-7891c3f3984f @@ -568184,6 +626906,13 @@ SDK Message Processing Step 1033 + + b19ae986-efd8-4052-81fb-b954b2785948 + + true + Behandlingstrin for SDK-meddelelse + 1030 + bda86721-56d0-48d3-8328-7891c3f3984f @@ -568217,6 +626946,13 @@ SDK Message Processing Step Image 1033 + + e45102e8-f993-4346-901b-2fe40a35a7ac + + true + Behandlingstrinsbillede for SDK-meddelelse + 1030 + bda86731-56d0-48d3-8328-7891c3f3984f @@ -568250,6 +626986,13 @@ Service Endpoint 1033 + + 53b9d86b-2d66-4c9a-8894-8f3589fe05bd + + true + Slutpunkt for tjeneste + 1030 + bda86751-56d0-48d3-8328-7891c3f3984f @@ -568283,6 +627026,13 @@ Routing Rule 1033 + + 43301a2a-dbe3-415e-814e-ba40f6dd26df + + true + Ruteregel + 1030 + c7d53761-14ad-4e06-8a90-73d7cc57bde9 @@ -568316,6 +627066,13 @@ Routing Rule Item 1033 + + 90086ea8-9293-40d5-a890-210996693fab + + true + Ruteregelelement + 1030 + 7397d0fd-fa77-40ab-989a-c1d8593f6264 @@ -568349,6 +627106,13 @@ SLA 1033 + + d25a06f5-4a55-41f1-9498-e930fd4716e6 + + true + SLA + 1030 + 2a368df3-91be-4ea7-9de4-c8882819c31c @@ -568382,6 +627146,13 @@ SLA Item 1033 + + bac09a04-ded7-443a-8db3-a22f8ec17216 + + true + SLA-element + 1030 + e917239c-0bb9-437d-8d51-3457c11dec55 @@ -568415,6 +627186,13 @@ Convert Rule 1033 + + 4cea389b-cf0b-4a7b-b08b-7a9f6cd61939 + + true + Konverteringsregel + 1030 + 5e4fc65e-6512-418a-ad35-34102609a6f2 @@ -568448,6 +627226,13 @@ Convert Rule Item 1033 + + 7ec2f1fb-0944-436d-8135-bf28b71e1976 + + true + Konverteringsregelelement + 1030 + 0cfb2ee8-e1d5-4c51-b058-3044804a7c98 @@ -568481,6 +627266,13 @@ Hierarchy Rule 1033 + + 5c2709d2-21ad-4541-9087-e0cc9f77a235 + + true + Hierarkiregel + 1030 + 2286e0fd-9a69-4668-9ca1-fb18a8826ceb @@ -568514,6 +627306,13 @@ Mobile Offline Profile 1033 + + 00436c9c-d151-4e0c-86b6-48545234c71e + + true + Mobile Offline-profil + 1030 + 9c99d6bb-3790-47b0-950c-014b747d12a9 @@ -568547,6 +627346,13 @@ Mobile Offline Profile Item 1033 + + ca1ce0f0-07ad-459a-bb00-f6a80d40b1aa + + true + Mobile Offline-profilelement + 1030 + a0d3a0b9-ee17-4be1-86f1-e7b5ebbe1a7a @@ -568580,6 +627386,13 @@ Similarity Rule 1033 + + b1eb4c2f-1ccf-42af-9320-6b3d04c18508 + + true + Lighedsregel + 1030 + d606c762-0741-4f34-b2b1-818f5b6128b7 @@ -568613,6 +627426,13 @@ Custom Control 1033 + + 2ed52491-1c28-4656-bedd-454d771f9894 + + true + Brugerdefineret kontrolelement + 1030 + 631ced83-509a-49c4-99b4-8f3ffc55d3c2 @@ -568646,6 +627466,13 @@ Custom Control Default Config 1033 + + 5626e407-9409-49bc-a9ec-2e5d73504f00 + + true + Standardkonfiguration for brugerdefineret kontrolelement + 1030 + ec71a702-a778-4074-b883-3dae457283a7 @@ -568679,6 +627506,13 @@ Data Source Mapping 1033 + + 90eb0735-28ba-4c55-828e-e5cefc304a0f + + true + Tilknytning af datakilde + 1030 + a5f448d5-eada-4970-8c13-ede8b219ee2e @@ -568712,6 +627546,13 @@ SDKMessage 1033 + + bc3a7841-0450-4770-b87d-b04c83fad233 + + true + SDKMessage + 1030 + 1325e625-8828-4ffb-9051-0564fc17286a @@ -568745,6 +627586,13 @@ SDKMessageFilter 1033 + + 3ef77621-5b46-4741-9a69-4ef0b5876559 + + true + SDKMessageFilter + 1030 + 653e864d-912c-42e1-9323-927a95fd78ce @@ -568778,6 +627626,13 @@ SdkMessagePair 1033 + + 60426e5f-0e6b-4e9c-ab63-612172705013 + + true + SdkMessagePair + 1030 + f3ba0616-fadc-4eca-ba00-281ff81f1ce2 @@ -568811,6 +627666,13 @@ SdkMessageRequest 1033 + + 5e8b1b8f-0735-415d-ad82-d134bcfddb6c + + true + SdkMessageRequest + 1030 + d62f2300-1dbe-4580-aa3f-f7e888b4f139 @@ -568844,6 +627706,13 @@ SdkMessageRequestField 1033 + + e89ae203-51cf-48a4-ba20-dace5d633425 + + true + SdkMessageRequestField + 1030 + d57c7e80-58f1-47f1-94ff-3626baf79966 @@ -568877,6 +627746,13 @@ SdkMessageResponse 1033 + + bb874c1a-cf23-49c0-b0b9-350ee707d44c + + true + SdkMessageResponse + 1030 + c6c6f188-bf75-4300-939b-1130b7c69917 @@ -568910,6 +627786,13 @@ SdkMessageResponseField 1033 + + f60e7181-7d6b-4a78-9e31-d1bbae050586 + + true + SdkMessageResponseField + 1030 + 442e93ae-098b-478c-8104-5e295d3af482 @@ -568943,6 +627826,13 @@ WebWizard 1033 + + c88b35e7-6808-4d35-8322-f9291e862373 + + true + WebWizard + 1030 + f830a047-67f3-457d-85e1-a9d7805e8c75 @@ -568976,6 +627866,13 @@ Index 1033 + + 4105ce0a-58fa-4ff9-9aeb-7969b2c0d5b2 + + true + Indeks + 1030 + a61eef9c-5117-42f9-b74c-ed2160034963 @@ -569009,6 +627906,13 @@ Import Map 1033 + + ccf1adf1-4edb-4d58-8c21-214d03ddf7fc + + true + Importer tilknytning + 1030 + eb593ac5-ebf3-4966-a57e-159610980deb @@ -569036,15 +627940,22 @@ - 45f97a20-93cd-4d9d-9373-badc5121726f + 905fd089-2e64-4ec8-b673-8b8a6e4017e4 true Canvas App 1033 + + 8d436e17-d959-4212-8530-f00d9fb1a4a1 + + true + Lærred-app + 1030 + - 45f97a20-93cd-4d9d-9373-badc5121726f + 905fd089-2e64-4ec8-b673-8b8a6e4017e4 true Canvas App @@ -569069,15 +627980,22 @@ - 6174e48e-ff3e-4b1a-a2cd-764c6de5f7be + fe6c5ab8-afbf-4035-b314-3bd3b326c84a true Connector 1033 + + 0e5eb4a9-92cf-4e2c-b811-fcca7721768e + + true + Connector + 1030 + - 6174e48e-ff3e-4b1a-a2cd-764c6de5f7be + fe6c5ab8-afbf-4035-b314-3bd3b326c84a true Connector @@ -569102,15 +628020,22 @@ - 11118f8e-5d20-422e-aabc-8259c8b2b201 + 1b801d8e-ff15-4970-b046-8d116621a990 true Connector 1033 + + afba9ecc-4f77-49e1-af32-cd3dd3181173 + + true + Connector + 1030 + - 11118f8e-5d20-422e-aabc-8259c8b2b201 + 1b801d8e-ff15-4970-b046-8d116621a990 true Connector @@ -569135,15 +628060,22 @@ - d62332b2-a2de-495b-99ec-4b55cd633c40 + 9c28d347-aa84-4213-beac-f5b51896c404 true Environment Variable Definition 1033 + + 1806fe85-af4a-43a1-9142-f82979576c89 + + true + Definition af miljøvariabel + 1030 + - d62332b2-a2de-495b-99ec-4b55cd633c40 + 9c28d347-aa84-4213-beac-f5b51896c404 true Environment Variable Definition @@ -569168,15 +628100,22 @@ - 7d297a52-017f-424f-9df0-6ad5ea19befe + b2c46bc9-c529-4f38-bf70-26cf91785202 true Environment Variable Value 1033 + + 1066f318-c9b1-4b2f-b53b-b0f82d19f989 + + true + Værdi for miljøvariabel + 1030 + - 7d297a52-017f-424f-9df0-6ad5ea19befe + b2c46bc9-c529-4f38-bf70-26cf91785202 true Environment Variable Value @@ -569201,15 +628140,22 @@ - 1a41e6de-e242-4e69-9c16-29fb4374b1d5 + 4232109e-df1d-4d7d-ae0d-2a1a08add409 true AI Project Type 1033 + + 7040fa9b-179d-4aea-b3c0-acc51d41a7c2 + + true + AI-projekttype + 1030 + - 1a41e6de-e242-4e69-9c16-29fb4374b1d5 + 4232109e-df1d-4d7d-ae0d-2a1a08add409 true AI Project Type @@ -569234,15 +628180,22 @@ - b13734e9-b00b-4220-bfa9-7506ab708525 + 38358320-4c5c-4a00-90da-2ba6f151641b true AI Project 1033 + + dc5d0dc6-7915-4ea2-b789-d84e585d54cb + + true + AI-projekt + 1030 + - b13734e9-b00b-4220-bfa9-7506ab708525 + 38358320-4c5c-4a00-90da-2ba6f151641b true AI Project @@ -569267,15 +628220,22 @@ - 174406b5-3ace-4a56-9577-7233c581d4cc + 1b655b86-48c8-4924-9449-ea68bca515cc true AI Configuration 1033 + + 5dc96c46-c703-4775-9aad-8d34195f3fb2 + + true + AI-konfiguration + 1030 + - 174406b5-3ace-4a56-9577-7233c581d4cc + 1b655b86-48c8-4924-9449-ea68bca515cc true AI Configuration @@ -569300,15 +628260,22 @@ - aa86702d-6cc4-4196-9821-6f56400572b9 + f2fe6a02-5c54-4417-817e-a69781951729 true Entity Analytics Configuration 1033 + + 471eb7e1-ff83-41a4-a864-cb4e19723605 + + true + Konfiguration af objektanalyse + 1030 + - aa86702d-6cc4-4196-9821-6f56400572b9 + f2fe6a02-5c54-4417-817e-a69781951729 true Entity Analytics Configuration @@ -569333,15 +628300,22 @@ - 52e92361-c366-4d8f-ae85-c042b5d2cbaf + 02812233-6e28-4e72-9be0-8d1ba3e4f71e true Attribute Image Configuration 1033 + + a328000c-5190-4142-80d6-506516bb4887 + + true + Konfiguration af attributbillede + 1030 + - 52e92361-c366-4d8f-ae85-c042b5d2cbaf + 02812233-6e28-4e72-9be0-8d1ba3e4f71e true Attribute Image Configuration @@ -569366,15 +628340,22 @@ - 92999c72-6cdc-475e-b701-b26b29c6f554 + 1ac70d4c-91e2-47b1-8244-8e547447594f true Entity Image Configuration 1033 + + 8dc52ee6-d60d-4250-bad8-c1a79995cdb8 + + true + Konfiguration af objektbillede + 1030 + - 92999c72-6cdc-475e-b701-b26b29c6f554 + 1ac70d4c-91e2-47b1-8244-8e547447594f true Entity Image Configuration @@ -569400,6 +628381,13 @@ Type of sharing roles associated with Copilot Studio agents. 1033 + + 40e57a30-4e9e-4e10-9204-de377885c8a0 + + true + Type af delingsroller, der er forbundet med Copilot Studio-agenter. + 1030 + 3d875ee6-c0ba-f011-bbd3-7c1e52365f30 @@ -569418,6 +628406,13 @@ Agent sharing role type 1033 + + 9242dd40-83d0-4dc2-a8bb-bcad3a8e2d0c + + true + Rolletypen agentdeling + 1030 + 3c875ee6-c0ba-f011-bbd3-7c1e52365f30 @@ -569453,6 +628448,13 @@ A manager has full access to all bot content, can publish content, is accountable for bot operations, and can configure hand-off, channels and other operational information. 1033 + + 67a43fe4-fcea-40e2-8651-30f2a0e99b9b + + true + En leder har fuld adgang til alt robotindhold, kan udgive indhold, er ansvarlig for robothandlinger og kan konfigurere overlevering, kanaler og andre driftsoplysninger. + 1030 + 944ac8fd-a46d-40c2-aad2-e81009924b84 @@ -569474,6 +628476,13 @@ Copilot manager 1033 + + a2b7fccc-7435-461c-9b44-9ac270b4c537 + + true + Copilotstyring + 1030 + f3bcd261-6773-41a2-859c-22bfa5918fec @@ -569500,6 +628509,13 @@ Creates, edit and maintains bot content (trigger phrases, topic content, entities and variables). USes Power Automate solutions, authentication action and other extensibility integrations (e.g. skill) provided by developers in content editing. 1033 + + c488112e-8268-4707-b45a-4cdbc7ed7a90 + + true + Opretter, redigerer og vedligeholder robotindhold (udløserudtryk, emneindhold, objekter og variabler). Bruger Power Automate-løsninger, godkendelseshandling og andre udvidelsesintegrationer (f.eks. færdigheder), der leveres af udviklere i indholdsredigering. + 1030 + 7c5a7a71-11d9-406a-9172-afdcd933b0fc @@ -569521,6 +628537,13 @@ Copilot author 1033 + + e2308c55-c7a4-4b64-8340-e63ca6945025 + + true + Copilotforfatter + 1030 + c4b369cb-851a-4efd-a865-ded404c41906 @@ -569547,6 +628570,13 @@ View bot performance in analytics section, monitors CSAT, provides feedback and suggestions. 1033 + + 87f92eaf-06eb-4654-bbb0-d15c5aaf3890 + + true + Får vist robotydeevne i analysesektion, overvåger CSAT, sender feedback og forslag. + 1030 + d023bc60-bbad-4b7f-8796-68be28fd501b @@ -569568,6 +628598,13 @@ Copilot reviewer 1033 + + e6067f73-8949-4851-a3ee-d2bdeb1c5530 + + true + Copilotkorrekturlæser + 1030 + 9f541080-e6b1-42ef-8aa8-e6e86eed6616 @@ -569596,6 +628633,13 @@ The state of the dataflow template 1033 + + a26c9ab7-401a-442e-ab32-27df27fa11d9 + + true + Tilstanden for dataflowskabelonen + 1030 + 0555473b-c3ba-f011-bbd3-7c1e52365f30 @@ -569614,6 +628658,13 @@ Dataflow Template State 1033 + + e741b568-387d-43c4-bcff-a05d7323b8a9 + + true + Tilstand for dataflowskabelon + 1030 + 0455473b-c3ba-f011-bbd3-7c1e52365f30 @@ -569656,6 +628707,13 @@ Draft 1033 + + 3fbb75bf-dc12-4b22-b303-6c84c00b8976 + + true + Kladde + 1030 + 098055f3-521b-4828-af6e-c4f8bd2f7ae7 @@ -569689,6 +628747,13 @@ Active 1033 + + c5e6d8ba-66a8-40cc-9f83-1eb327df15ea + + true + Aktiv + 1030 + 593194c1-7a87-4edd-a411-3293a8f6d36e @@ -569722,6 +628787,13 @@ Published 1033 + + a7ef9f55-38bf-405d-a0d0-92ec766ceb33 + + true + Publiceret + 1030 + 1389e30b-31ac-4245-9c77-9e23b7e6010f @@ -569755,6 +628827,13 @@ Deprecated 1033 + + 7746d505-bf40-4150-b5fd-da720c30318c + + true + Udfaset + 1030 + 49bbc853-83c0-471d-b46d-0296816933e6 @@ -569783,6 +628862,13 @@ Power Pages Component Type 1033 + + d06fd381-3062-45b6-8cd1-c9c644340a4b + + true + Power Pages-komponenttype + 1030 + 3cfbb96a-f2ba-f011-bbd3-7c1e52365f30 @@ -569801,6 +628887,13 @@ Power Pages Component Type 1033 + + 86119e23-2bb7-4a03-ad96-bebefc5d2fe5 + + true + Power Pages-komponenttype + 1030 + 3bfbb96a-f2ba-f011-bbd3-7c1e52365f30 @@ -569857,6 +628950,13 @@ Publishing State 1033 + + ab5c007d-e3f5-4d74-9458-e32603248677 + + true + Publiceringstilstand + 1030 + b80ad0df-3940-4f32-a469-f60fb0d98117 @@ -569904,6 +629004,13 @@ Web Page 1033 + + 37d8f8ce-f0e1-4c7b-9d5d-594b16d4cf13 + + true + Webside + 1030 + 9e6b4f96-d040-4277-98bd-98d77b7f40ff @@ -569951,6 +629058,13 @@ Web File 1033 + + 5a12483f-dcde-4fbf-8206-604cc074de01 + + true + Webfil + 1030 + 1da31c48-4d10-48b4-91ff-279cb8806dd2 @@ -569998,6 +629112,13 @@ Web Link Set 1033 + + c0f62e09-9751-4530-9e62-4b16019c218f + + true + Weblinksæt + 1030 + 4f9e4704-279b-475c-9c47-de71f13448e4 @@ -570045,6 +629166,13 @@ Web Link 1033 + + e8ef5a45-4fb3-44e4-a209-382cb1b301f1 + + true + Weblink + 1030 + 749aa28e-f774-4c9b-b7e4-5eefec464b87 @@ -570092,6 +629220,13 @@ Page Template 1033 + + 89a8551b-683c-4600-95ca-feaa9dee363a + + true + Sideskabelon + 1030 + 1e2f4fac-ed44-441a-b858-e442cbe4646b @@ -570139,6 +629274,13 @@ Content Snippet 1033 + + e322d358-951e-46e5-bb6d-17d182a78213 + + true + Indholdskodestykke + 1030 + 936b3e4d-7982-4d55-93e1-2f9f5577412e @@ -570186,6 +629328,13 @@ Web Template 1033 + + b3838694-22cb-4fec-a761-b9f006b4102d + + true + Webskabelon + 1030 + 59f83507-0ef1-46da-8b8f-9922b3b579c9 @@ -570233,6 +629382,13 @@ Site Setting 1033 + + 6dc1291e-0818-4850-8c7d-5edc384cb733 + + true + Indstilling for websted + 1030 + decdfebb-f375-45fa-8dc3-cf2ed3d1ba31 @@ -570280,6 +629436,13 @@ Web Page Access Control Rule 1033 + + 5bcc4ba4-291f-4e81-b2c0-99baf32efbbe + + true + Adgangskontrolregel for webside + 1030 + 65b85150-7770-4c8a-91e4-5e59a6ac6ce1 @@ -570327,6 +629490,13 @@ Web Role 1033 + + b7ff658c-16b7-4bb1-808f-282d013d311f + + true + Webrolle + 1030 + 8a30ebda-28ed-4994-922e-1b350031fe77 @@ -570374,6 +629544,13 @@ Website Access 1033 + + 35d925e9-85e1-4689-aa46-681bfb112db5 + + true + Adgang til websted + 1030 + e0543dc5-1d6a-46fa-be82-bddce4616676 @@ -570421,6 +629598,13 @@ Site Marker 1033 + + 0e1a96ce-907f-4f44-b861-8fde609f46e8 + + true + Webstedsmærke + 1030 + b5fb0762-f9f2-454e-9217-cc36b9bcb94a @@ -570468,6 +629652,13 @@ Basic Form 1033 + + 4e3f4b67-6f94-475d-a4df-ea3147db2afd + + true + Basisformular + 1030 + 565abf34-466d-4efd-b1ba-fc04cf2756c1 @@ -570515,6 +629706,13 @@ Basic Form Metadata 1033 + + 2fde9df0-b26c-4164-b897-463b4930a26a + + true + Metadata i basisformular + 1030 + 8400b9ca-8548-41ef-b492-213139f514e6 @@ -570562,6 +629760,13 @@ List 1033 + + 96ea04fa-067b-4420-81f9-3d377c57bd21 + + true + Liste + 1030 + fb4d2055-ef50-476a-b86e-461fb903fcdb @@ -570609,6 +629814,13 @@ Table Permission 1033 + + 09d3fe0e-8393-4f7f-a3e5-471a4cc71f4b + + true + Tabeltilladelse + 1030 + cb2fabd1-7907-482b-931b-a620138cbc04 @@ -570656,6 +629868,13 @@ Advanced Form 1033 + + 3a10c395-8ac9-44d1-b991-8f0d32b4a39e + + true + Avanceret formular + 1030 + 19b4337b-b462-4962-9cc2-4e4263f35987 @@ -570703,6 +629922,13 @@ Advanced Form Step 1033 + + 5c6124d9-2059-4318-a879-7a5d937293a4 + + true + Trin i avanceret formular + 1030 + a4122e26-0268-4312-ae19-fad067296e15 @@ -570750,6 +629976,13 @@ Advanced Form Metadata 1033 + + c7b89639-fbd5-4691-a5db-57812fb7b1e3 + + true + Metadata i avanceret formular + 1030 + a7635d73-c524-4029-8a24-4abc28d5adda @@ -570797,6 +630030,13 @@ Poll Placement 1033 + + 1b2c0e39-a3ea-40e8-b6f0-390568681c70 + + true + Afstemningssted + 1030 + 28ec2aea-b5ff-443e-bf62-403b01155f18 @@ -570844,6 +630084,13 @@ Ad Placement 1033 + + 429555da-b197-41cf-8baa-b8ac446c65a2 + + true + Reklameplacering + 1030 + 574cfeeb-5a62-41f8-b777-50d0e12e54b7 @@ -570891,6 +630138,13 @@ Bot Consumer 1033 + + 2ba5ded7-2095-4265-b19e-35ca9c32e4bb + + true + Robotforbruger + 1030 + ca3657d9-fe7c-4f90-877c-da9cf99adaf9 @@ -570938,6 +630192,13 @@ Column Permission Profile 1033 + + eb8dffb4-8c83-4f0e-bf10-5b7d08a5cf05 + + true + Kolonnetilladelsesprofil + 1030 + 9ad8504f-f392-4fe3-ba0d-a12c223bbb31 @@ -570985,6 +630246,13 @@ Column Permission 1033 + + b485929b-5682-40b1-bf4f-bd5b0ce54fcc + + true + Kolonnetilladelse + 1030 + 0a64c3e1-d1d7-4612-98b7-b72924b9dbf4 @@ -571032,6 +630300,13 @@ Redirect 1033 + + b109d237-b25f-4477-a089-1d58e07291c6 + + true + Omdiriger + 1030 + 5751d3c4-19eb-4658-a45e-215164741f79 @@ -571079,6 +630354,13 @@ Publishing State Transition Rule 1033 + + 8349a4e7-7ad3-4796-bd4e-b7c62673ae7a + + true + Regel for publiceringstilstandsovergang + 1030 + 4cb75439-8c14-4d40-a5ed-ff2425b1c9ce @@ -571126,6 +630408,13 @@ Shortcut 1033 + + 8765151e-e5c7-4bad-bb29-f60d0cc8e80b + + true + Genvej + 1030 + f0c0e95c-d1db-4b41-8282-b51d310f8d7a @@ -571173,6 +630462,13 @@ Cloud Flow 1033 + + 47007a43-f7a3-4fdb-b475-9c849991ca21 + + true + Cloudflow + 1030 + 13a8d99b-fca5-4fe1-b2da-0ec72170b665 @@ -571220,6 +630516,13 @@ UX Component 1033 + + ba4c5496-4a8c-4ce6-a8f8-8b0f3c6a983d + + true + UX-komponent + 1030 + fbdb5f2e-0877-4567-bce1-57f5031c1b9c @@ -571267,6 +630570,13 @@ Server Logic 1033 + + 78f0751f-d86f-4003-ba87-1050cb6b5e91 + + true + Serverlogik + 1030 + 2b69d770-2ac6-436e-89da-d50d82123135 @@ -571295,6 +630605,13 @@ System evaluated state of email follow. If evaluated state is False,email activity will not be followed. 1033 + + accd65d6-45fc-42e2-91fe-3362fd257c29 + + true + Systemevalueret tilstand på at følge mail. Hvis den evaluerede tilstand er Falsk, følges mailaktiviteten ikke. + 1030 + 98c1f88c-dd18-4802-aaf6-f6631bcd66f2 @@ -571313,6 +630630,13 @@ Email following 1033 + + 36d854bd-1d07-4ec9-a68d-d99217a2df56 + + true + Mail følges + 1030 + 72e773f0-1727-447e-8d8b-dfb3c24aec66 @@ -571354,6 +630678,13 @@ No 1033 + + 17597d9d-ad42-470e-a3de-18c4b0e850ad + + true + Nej + 1030 + d52ee872-9657-4efb-b90d-76e22f5e7d84 @@ -571387,6 +630718,13 @@ Yes 1033 + + 3174f199-708e-44ed-8964-88a454b5a50b + + true + Ja + 1030 + 0be9135c-56b0-4760-a5b9-68eaa703d039 @@ -571600,6 +630938,13 @@ Type of activity. 1033 + + c2347a8e-1a15-40a5-9c9e-c3881459f8c4 + + true + Aktivitetstypen. + 1030 + 78ab1d4b-2b68-4d0c-87bf-16acc63915bd @@ -571618,6 +630963,13 @@ Activity Type 1033 + + 60eeb313-9ca2-4f13-9a0a-674301d7b008 + + true + Aktivitetstype + 1030 + 618267fc-5290-4a1c-9ba8-6e3a06f8e078 @@ -571660,6 +631012,13 @@ Fax 1033 + + 5459cb12-4d5b-4652-beb4-d869bc852cb5 + + true + Fax + 1030 + daa9c7f4-2241-db11-898a-0007e9e17ebd @@ -571693,6 +631052,13 @@ Phone Call 1033 + + 2591ffbc-a3a5-4a7f-93e9-ce713275ac71 + + true + Telefonopkald + 1030 + dca9c7f4-2241-db11-898a-0007e9e17ebd @@ -571726,6 +631092,13 @@ Email 1033 + + f55f6ec0-ee05-4dd8-9cc5-dd76b950de39 + + true + Mail + 1030 + dea9c7f4-2241-db11-898a-0007e9e17ebd @@ -571759,6 +631132,13 @@ Letter 1033 + + f2fa5f23-928d-4c2c-a7ed-9d1ffeb8c2ed + + true + Brev + 1030 + e0a9c7f4-2241-db11-898a-0007e9e17ebd @@ -571792,6 +631172,13 @@ Appointment 1033 + + 8e8a740e-ada0-44a2-b971-1aa049b958ba + + true + Aftale + 1030 + e2a9c7f4-2241-db11-898a-0007e9e17ebd @@ -571825,6 +631212,13 @@ Task 1033 + + 7e0dc065-286c-46c9-a2e5-cf002d3199cf + + true + Opgave + 1030 + eea9c7f4-2241-db11-898a-0007e9e17ebd @@ -571858,6 +631252,13 @@ Recurring Appointment 1033 + + 7f939998-ae75-4060-b8de-f0ed225f8a0f + + true + Gentaget aftale + 1030 + b4b8b032-e7a8-11dd-947e-001b787fbb2c @@ -571985,6 +631386,13 @@ Specifies the system user account under which a workflow executes 1033 + + 581a1dd2-b51b-4d93-83ee-9edf0af35600 + + true + Angiver den systembrugerkonto, der bruges til at udføre en arbejdsproces + 1030 + 325cd504-8cc0-4342-ae38-bf41e53863da @@ -572003,6 +631411,13 @@ Executing User 1033 + + 86793401-4d3c-4f97-8a22-124704be44a9 + + true + Udførende bruger + 1030 + db57bded-a254-4ac2-a1fc-b80e58687656 @@ -572045,6 +631460,13 @@ Owner 1033 + + e62b6c7f-b3f7-4697-aa66-50cd571fe34b + + true + Ejer + 1030 + 1c4cc751-90c8-4a3c-b7f6-d0280fdcb7e5 @@ -572078,6 +631500,13 @@ Calling User 1033 + + 56ca58eb-3eff-4abc-a1ae-d6528a72e0a7 + + true + Kaldende bruger + 1030 + 5f0fe707-3142-49a7-b493-5d5f5254b763 @@ -572397,6 +631826,669 @@ + + 2afd6079-e337-f111-88b4-7ced8d45df84 + + + + + 2cfd6079-e337-f111-88b4-7ced8d45df84 + + false + These are the personal status options of a person registered in CPR + 1033 + + + a65cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + Dette er personstatusindstillingerne for en person registreret i CPR + 1030 + + + + 2cfd6079-e337-f111-88b4-7ced8d45df84 + + false + These are the personal status options of a person registered in CPR + 1033 + + + + + + 2bfd6079-e337-f111-88b4-7ced8d45df84 + + false + Cpr Personal Status + 1033 + + + a45cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + CPR Personalestatus + 1030 + + + + 2bfd6079-e337-f111-88b4-7ced8d45df84 + + false + Cpr Personal Status + 1033 + + + + true + + true + iscustomizable + true + + true + false + cpr_cprpersonalstatus + Picklist + 2.0.0.6 + + + + + + + + + 23a573bf-6cda-4549-829a-57ccc34f9f00 + + false + + 1033 + + + + 23a573bf-6cda-4549-829a-57ccc34f9f00 + + false + + 1033 + + + + false + false + + + + d220734e-204c-4c29-8dbb-274d39baaa65 + + false + Resident in Denmark + 1033 + + + a95cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + Bosiddende i Danmark + 1030 + + + + d220734e-204c-4c29-8dbb-274d39baaa65 + + false + Resident in Denmark + 1033 + + + + 769490000 + + + + + + + + + + 1466daaa-6140-4b74-8a56-3c34362045bb + + false + + 1033 + + + + 1466daaa-6140-4b74-8a56-3c34362045bb + + false + + 1033 + + + + false + false + + + + e43159ea-2700-4251-ba6d-f17faf0ea3ae + + false + Without a permanent residence in a Danish municipality + 1033 + + + ab5cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + Uden fast bopæl i en dansk kommune + 1030 + + + + e43159ea-2700-4251-ba6d-f17faf0ea3ae + + false + Without a permanent residence in a Danish municipality + 1033 + + + + 769490001 + + + + + + + + + + dbb06e38-22a6-4723-a26c-7492ab72d2c2 + + false + + 1033 + + + + dbb06e38-22a6-4723-a26c-7492ab72d2c2 + + false + + 1033 + + + + false + false + + + + 1106f081-e9c3-41f4-a8d2-8f951e4a569d + + false + Resident in Greenland + 1033 + + + ad5cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + Bosiddende i Grønland + 1030 + + + + 1106f081-e9c3-41f4-a8d2-8f951e4a569d + + false + Resident in Greenland + 1033 + + + + 769490002 + + + + + + + + + + cf7db5d3-7157-455c-97b2-004dd604b682 + + false + + 1033 + + + + cf7db5d3-7157-455c-97b2-004dd604b682 + + false + + 1033 + + + + false + false + + + + 6a77cc38-c91f-4b33-a738-0c9ebc250b8a + + false + Without a permanent residence in Greenland + 1033 + + + b05cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + Uden fast bopæl i Grønland + 1030 + + + + 6a77cc38-c91f-4b33-a738-0c9ebc250b8a + + false + Without a permanent residence in Greenland + 1033 + + + + 769490003 + + + + + + + + + + ccf5b08b-8246-42c4-b821-8078d734caba + + false + + 1033 + + + + ccf5b08b-8246-42c4-b821-8078d734caba + + false + + 1033 + + + + false + false + + + + 78562b8c-c6eb-462f-a566-8b6c09d44afb + + false + No residence + 1033 + + + b25cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + Ingen bopæl + 1030 + + + + 78562b8c-c6eb-462f-a566-8b6c09d44afb + + false + No residence + 1033 + + + + 769490004 + + + + + + + + + + f37a9a1b-b5c5-4b82-95c7-13fc158ec0aa + + false + + 1033 + + + + f37a9a1b-b5c5-4b82-95c7-13fc158ec0aa + + false + + 1033 + + + + false + false + + + + 2cf8d214-dfd8-4c14-8975-44e9fd13dd6a + + false + Cancelled + 1033 + + + b45cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + Annulleret + 1030 + + + + 2cf8d214-dfd8-4c14-8975-44e9fd13dd6a + + false + Cancelled + 1033 + + + + 769490005 + + + + + + + + + + 5aa6df0a-85c6-492a-ac51-b30e82769447 + + false + + 1033 + + + + 5aa6df0a-85c6-492a-ac51-b30e82769447 + + false + + 1033 + + + + false + false + + + + c1b9c66a-cfb0-40d7-95cf-fd08c831618d + + false + Deleted CPR number + 1033 + + + b65cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + Slettet CPR nummer + 1030 + + + + c1b9c66a-cfb0-40d7-95cf-fd08c831618d + + false + Deleted CPR number + 1033 + + + + 769490006 + + + + + + + + + + 3dec60f3-cfa3-46c3-9583-d7d99e090c78 + + false + + 1033 + + + + 3dec60f3-cfa3-46c3-9583-d7d99e090c78 + + false + + 1033 + + + + false + false + + + + c7dcb4a4-90fd-4041-8cab-a8720f9d6717 + + false + Missing Person + 1033 + + + b85cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + Forsvundet person + 1030 + + + + c7dcb4a4-90fd-4041-8cab-a8720f9d6717 + + false + Missing Person + 1033 + + + + 769490007 + + + + + + + + + + 83d40765-4f98-4b1c-8a9c-29c28b780bbc + + false + + 1033 + + + + 83d40765-4f98-4b1c-8a9c-29c28b780bbc + + false + + 1033 + + + + false + false + + + + 31c34c6f-297a-4d75-8ba6-7a042f189eb6 + + false + Emigrated + 1033 + + + ba5cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + Udvandret + 1030 + + + + 31c34c6f-297a-4d75-8ba6-7a042f189eb6 + + false + Emigrated + 1033 + + + + 769490008 + + + + + + + + + + c1041972-067c-4dcc-90c5-f4c12e2115b7 + + false + + 1033 + + + + c1041972-067c-4dcc-90c5-f4c12e2115b7 + + false + + 1033 + + + + false + false + + + + 337d8ae0-e3db-4b98-bf1f-165a4ea0c1c5 + + false + Dead + 1033 + + + bc5cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + Død + 1030 + + + + 337d8ae0-e3db-4b98-bf1f-165a4ea0c1c5 + + false + Dead + 1033 + + + + 769490009 + + + + + + + + + + 650b9802-8926-4287-a47b-05a6460e57a2 + + false + + 1033 + + + + 650b9802-8926-4287-a47b-05a6460e57a2 + + false + + 1033 + + + + false + false + + + + 40fc9ad3-0756-44bb-9b3a-05f8dcf8548f + + false + Unknown + 1033 + + + be5cc5fb-fc37-f111-88b4-7ced8d45df84 + + false + Ukendt + 1030 + + + + 40fc9ad3-0756-44bb-9b3a-05f8dcf8548f + + false + Unknown + 1033 + + + + 769490010 + + + + + 4fa1d9e1-3091-4827-aef2-7dab96d47a5a @@ -572409,6 +632501,13 @@ Lookback referenced by configuration. 1033 + + b476be80-8038-42c9-9d72-a973da6d1a05 + + true + Tilbageblik, der refereres til i konfigurationen. + 1030 + b4cee6de-c68f-4efd-ae9f-637aee21a6e0 @@ -572427,6 +632526,13 @@ Lookback 1033 + + 8cf3bf8f-de22-4949-a602-f555f8302e75 + + true + Tilbageblik + 1030 + 6a2c31d8-7689-4ba6-9dba-a4f29b00e64a @@ -572469,6 +632575,13 @@ 2H 1033 + + d4ac1a0b-0e21-4d70-b82e-6311ead4486f + + true + 2T + 1030 + 51a536f4-3cc7-411c-92a6-079b2cc2afb2 @@ -572502,6 +632615,13 @@ 48H 1033 + + f82cc170-c156-44e0-b7fd-8b7cb2df5d23 + + true + 48T + 1030 + 348e148c-abe0-42da-9262-70165c1846b6 @@ -572535,6 +632655,13 @@ 7D 1033 + + 1cc7dfdb-876c-41ab-b417-0685f148fc47 + + true + 7D + 1030 + 75c076df-3a34-4cee-8949-cd46b7d49463 @@ -572568,6 +632695,13 @@ 30D 1033 + + 52df2acf-db7e-418f-a47a-1287ac73f1e1 + + true + 30D + 1030 + 2630c930-b458-4a42-8b73-2cab717333b9 @@ -572596,6 +632730,13 @@ Information about whether the SDK message is automatically transacted. 1033 + + 28bb2097-b862-4ab9-ad7f-cdf602ae1106 + + true + Oplysninger, der viser, om der er er udført en automatisk transaktion for SDK-meddelelsen. + 1030 + 489912ed-46e5-4991-8c30-747336d877bb @@ -572641,6 +632782,13 @@ No 1033 + + beaf0eb3-1ff5-4e51-9787-b196db17ecce + + true + Nej + 1030 + 0725b0cb-e780-db11-9b85-00137299e160 @@ -572674,6 +632822,13 @@ Yes 1033 + + 7fc87027-73e6-414c-a9e7-ad2fe5590ee8 + + true + Ja + 1030 + 0925b0cb-e780-db11-9b85-00137299e160 @@ -572700,6 +632855,13 @@ Validation status of the record URL. 1033 + + cf1af380-cbcd-41ac-82f3-5c4341d78ae2 + + true + Valideringsstatus for postens URL-adresse. + 1030 + e1a6f132-c23e-49d3-afc4-107fca54e925 @@ -572718,6 +632880,13 @@ Validation Status 1033 + + e34ae51d-ddd0-45b1-8bb7-a03d0c6f52f4 + + true + Valideringsstatus + 1030 + 43234f7d-5da8-4459-a4c5-81ee0dbe3b5c @@ -572760,6 +632929,13 @@ Not Validated 1033 + + 0c091074-ad1d-43ab-9605-e4fb86668c23 + + true + Ikke valideret + 1030 + d0d55319-6cae-47f9-8c76-01281ad8ea2b @@ -572793,6 +632969,13 @@ In Progress 1033 + + e171b21e-e889-4494-bf96-191d1edf3fd2 + + true + I gang + 1030 + 2affde25-3edc-4333-8d42-f6d2e82fe06f @@ -572826,6 +633009,13 @@ Invalid 1033 + + 82cceb23-5b6f-4f17-abbe-8e6f8526ad6b + + true + Ugyldig + 1030 + f40f6d92-d06d-4165-b309-52d92877c7c2 @@ -572859,6 +633049,13 @@ Valid 1033 + + 2a80ebec-9a82-4312-a0e0-1870cd8d3030 + + true + Gyldig + 1030 + 9ee5fbcc-9607-4e91-a79b-c960c7e27f00 @@ -572892,6 +633089,13 @@ Could not validate 1033 + + abfeaed2-18d1-4d24-81ee-bafa4f6872f7 + + true + Der kunne ikke udføres validering + 1030 + 6af4b371-1636-4b90-9e63-928685e5b7d0 @@ -573116,6 +633320,13 @@ Type of entity with which the activity attachment is associated. 1033 + + 6b293658-8d33-4681-931d-8fb6e96e775d + + true + Den type objekt, som den vedhæftede aktivitet er tilknyttet. + 1030 + 1f3c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -573134,6 +633345,13 @@ Object Type 1033 + + 8dde1075-ed18-4452-b5d5-1ddf62cbe206 + + true + Objekttype + 1030 + 1e3c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -573169,6 +633387,13 @@ Post 1033 + + 69e58e02-c6fb-4ffc-b435-80cede4f844a + + true + Post + 1030 + e500e5f4-01d9-4478-9463-0d76ad93c215 @@ -573190,6 +633415,13 @@ Post 1033 + + 9993989d-f2c2-41a8-9ad1-ed3073ca1541 + + true + Post + 1030 + 5f5a77c4-1c00-4600-ad23-c03fe657fd8c @@ -573216,6 +633448,13 @@ Post Comment 1033 + + 848f1e3b-285e-467e-aeae-2ac69578fd73 + + true + Slå kommentar op + 1030 + 7d0ad5bf-99e2-4b51-bf73-9adc84760e3e @@ -573237,6 +633476,13 @@ Post Comment 1033 + + d47ddd0b-499a-4321-8857-1f76a60a50a7 + + true + Slå kommentar op + 1030 + cb7e91c6-b8fe-4686-8a6a-4d67c8106f0d @@ -573939,6 +634185,13 @@ Select the records to send the direct email to 1033 + + 63d5bba8-9bbe-44fb-ad45-928e0511029f + + true + Select the records to send the direct email to + 1030 + dd1f544c-c8ba-f011-bbd3-7c1e52365f30 @@ -573957,6 +634210,13 @@ Send Direct Email To 1033 + + 8bf0deae-31cc-4765-bf69-6675f6589f21 + + true + Send Direct Email To + 1030 + dc1f544c-c8ba-f011-bbd3-7c1e52365f30 @@ -574013,6 +634273,13 @@ Selected records on current page 1033 + + 30a76505-d72d-4886-986a-aa148be98c4e + + true + Selected records on current page + 1030 + cfc84722-9f2c-467e-b34a-9c392545097f @@ -574060,6 +634327,13 @@ All records on current page 1033 + + 628bad7e-22ee-40f1-958c-ca53ce68a0c7 + + true + All records on current page + 1030 + ca0f4e8d-c43d-425b-bb4e-2d16a7ac8bd2 @@ -574107,6 +634381,13 @@ All records on all pages 1033 + + e84d2506-2c44-4664-a730-10db5a68f4d2 + + true + All records on all pages + 1030 + 826722dd-f6ab-45c5-b940-0b3c2d0a9506 @@ -574331,6 +634612,13 @@ IsLiveOnly 1033 + + c48dd1a2-f35c-4229-a74b-0f66517df979 + + true + IsLiveOnly + 1030 + cb5ed121-9e93-4253-ba87-6c9df4370092 @@ -574349,6 +634637,13 @@ IsLiveOnly 1033 + + e34bb282-7c6f-4682-962b-b7f4e1312a97 + + true + IsLiveOnly + 1030 + fdd4e9ff-18a3-432b-a021-e1605575afb0 @@ -574390,6 +634685,13 @@ No 1033 + + d872e676-7604-4ce3-b853-ab30e7a4b7ce + + true + Nej + 1030 + b0327985-2011-4079-aa52-4024bc6407e5 @@ -574423,6 +634725,13 @@ Yes 1033 + + e24eddc7-7f85-495c-9e4b-b422eb360305 + + true + Ja + 1030 + f834d810-b1ac-43f5-969a-a6959477c856 @@ -574449,6 +634758,13 @@ Information that specifies whether a feature is enabled for the organization. 1033 + + 9aa58f12-110b-435b-9270-294a78494bba + + true + Oplysninger, der angiver, om en funktion er aktiveret for organisationen. + 1030 + 05aedb96-402f-4dff-86e7-54b577874b2f @@ -574494,6 +634810,13 @@ No 1033 + + b40c88a6-6120-4a59-b17e-027813abff41 + + true + Nej + 1030 + af1983aa-9de4-4ac0-bc79-0db12fd0b8cc @@ -574527,6 +634850,13 @@ Yes 1033 + + 1f01b352-0d79-492b-ad28-a565586d068b + + true + Ja + 1030 + f35414f9-6316-4617-82ea-dfb3602119e3 @@ -574553,6 +634883,13 @@ Authentication protocol used when connecting to the email server. 1033 + + da72ac18-3337-41ea-9970-a68b0420f7b8 + + true + Godkendelsesprotokol, der bruges til at oprette forbindelse til mailserveren. + 1030 + fa384fc9-ffea-45ed-87dc-85196be1acfc @@ -574571,6 +634908,13 @@ Authentication Protocol 1033 + + 8ba19086-0c47-439d-89da-b4eb8accbf1f + + true + Godkendelsesprotokol + 1030 + f32c5d54-c992-4b33-b79b-1582ad254f14 @@ -574613,6 +634957,13 @@ Auto Detect 1033 + + 3d8e983d-f1ed-4a2b-99a7-951d43dfed6d + + true + Registrer automatisk + 1030 + cc39c83d-38be-4892-9fca-408315b46364 @@ -574646,6 +634997,13 @@ Negotiate 1033 + + f2fd73c2-a23f-4d87-b0b1-5d5b86409783 + + true + Negotiate + 1030 + 6f2b8bf4-2436-492e-8f43-e090c64ee755 @@ -574679,6 +635037,13 @@ NTLM 1033 + + 4518426a-fc93-4121-86c5-34e851b78bdf + + true + NTLM + 1030 + b2db2c27-fb50-43f5-8f8f-2f3f69f606c0 @@ -574712,6 +635077,13 @@ Basic 1033 + + 7381d97f-942f-4e0b-9d31-64c5aee8eba3 + + true + Grundlæggende + 1030 + fb09af2f-bbf5-4a58-a540-b914f1d76178 @@ -574739,15 +635111,22 @@ - 6515645c-4696-4464-bcb9-aeb99cb29971 + b977bffe-be4c-412a-b159-9160565f03fa true OAuth 1033 + + 5f8788de-4de8-43d8-aa90-90a4f5e3d7e2 + + true + OAuth + 1030 + - 6515645c-4696-4464-bcb9-aeb99cb29971 + b977bffe-be4c-412a-b159-9160565f03fa true OAuth @@ -574773,6 +635152,13 @@ Shows the service type of the SharePoint site 1033 + + 1ab0a7db-016a-4aee-878d-8578046f40fd + + true + Viser tjenestetypen for SharePoint-webstedet + 1030 + d1a4aba0-865a-4607-a930-c11c7b84965e @@ -574791,6 +635177,13 @@ ServiceType 1033 + + bbdd2a36-ecfa-45a8-b56f-90458b030d55 + + true + ServiceType + 1030 + 4943ad74-eaba-4484-a756-de21df934f6a @@ -574833,6 +635226,13 @@ SharePoint 1033 + + a7689e0c-f0c6-41a0-af03-13eec1ef24df + + true + SharePoint + 1030 + db6b691a-524d-4b77-8277-7424f98c48f6 @@ -574866,6 +635266,13 @@ OneDrive 1033 + + 0f22ae80-0237-414d-adca-ae4c33068ead + + true + OneDrive + 1030 + 744c8854-5d5c-4afe-85b1-1c981dc79d65 @@ -574899,6 +635306,13 @@ Shared with me 1033 + + e93b4914-ed7c-4022-af47-87df7d970327 + + true + Delt med mig + 1030 + 47a0a675-fb53-4218-b1e5-11163a4a87a0 @@ -574926,15 +635340,22 @@ - 4625c747-b948-4e78-a26b-af4081a6a99d + 5718bf3c-a1ce-423d-85e5-18ef9d7a5578 true MS Teams 1033 + + 92e106e5-1169-441a-bf3f-fe37f4a1cc1c + + true + MS-team + 1030 + - 4625c747-b948-4e78-a26b-af4081a6a99d + 5718bf3c-a1ce-423d-85e5-18ef9d7a5578 true MS Teams @@ -574960,6 +635381,13 @@ 1033 + + a2cb480c-52a2-4b6b-8578-bab847eb7ac0 + + true + + 1030 + 454fe3b2-f1ba-f011-bbd3-7c1e52365f30 @@ -574978,6 +635406,13 @@ Copilot Example Question Knowledge Type 1033 + + 0b7bbb98-11b8-4ff3-859f-0e95537ffb15 + + true + Videntype for Copilot-eksempelspørgsmål + 1030 + 444fe3b2-f1ba-f011-bbd3-7c1e52365f30 @@ -575013,6 +635448,13 @@ 1033 + + 54e20d40-d391-4d2b-806d-429e143d24a7 + + true + + 1030 + f1496095-0f40-4c84-9307-b3ffe3b9d02f @@ -575034,6 +635476,13 @@ Example Question 1033 + + b82a337d-befc-4fef-86d3-d5745da39073 + + true + Eksempelspørgsmål + 1030 + 47efd630-80b4-4c53-b25b-1a44100dca00 @@ -575060,6 +635509,13 @@ 1033 + + eb702f47-c8fd-4f59-b359-068c408686a6 + + true + + 1030 + 193c93ec-eed2-4732-a790-0c57327a371a @@ -575081,6 +635537,13 @@ Example Knowledge 1033 + + cbfa5df0-a9a0-41dc-84b6-78308f785ea2 + + true + Eksempel på viden + 1030 + 3d562735-ac49-4239-9542-1a4c4455c3fd @@ -575109,6 +635572,13 @@ Option set for selecting the type of the office document. 1033 + + 1e55bf11-fc5b-438d-881d-c0fb6b216922 + + true + Grupperet indstilling for valg af Office-dokumenttypen. + 1030 + 8c508262-e996-4154-9a4f-d6fe23d68ffa @@ -575127,6 +635597,13 @@ Document Type 1033 + + b9b12b2b-fa48-481e-834c-8dd4af10b831 + + true + Dokumenttype + 1030 + fa3622cd-aa64-4f37-b8e2-1772e65e7c44 @@ -575169,6 +635646,13 @@ Microsoft Excel 1033 + + 391019a0-a288-46a2-adb5-2096f38ab499 + + true + Microsoft Excel + 1030 + 8d97dc59-1331-450e-8a82-d76ee2d296f3 @@ -575202,6 +635686,13 @@ Microsoft Word 1033 + + 4bb0eafb-6516-4f95-8606-58f5171eb489 + + true + Microsoft Word + 1030 + 1fbb31c6-d0fb-4936-a92b-bdfb7f6bec57 @@ -575234,6 +635725,13 @@ Connector Type 1033 + + 2b89e547-5a69-446d-96ef-c631293c9960 + + true + Forbindelsestype + 1030 + e1ae9cae-b9ba-f011-bbd3-7c1e52365f30 @@ -575276,6 +635774,13 @@ ConnectionLess 1033 + + 1bc65c52-1c30-4975-9c64-c5f16755ee90 + + true + ConnectionLess + 1030 + 5099c0fe-1ed1-4ff1-a1ac-87b7ac8a2782 @@ -575309,6 +635814,13 @@ CustomConnector 1033 + + 0aa62257-b329-473c-a934-1f3564321147 + + true + CustomConnector + 1030 + 51fc7f96-8eea-4481-b6a1-42ea90b4bf3e @@ -575342,6 +635854,13 @@ NotSpecified 1033 + + d0b08e05-9172-452b-8187-c44a24ee3b80 + + true + NotSpecified + 1030 + 3d55d232-efd5-4c11-9884-2e9d4e991a22 @@ -575519,6 +636038,13 @@ Profile is blocked or not. 1033 + + ee33a8e6-6b04-4837-9341-68b6251945a4 + + true + Profilen er blokeret eller ikke-blokeret. + 1030 + fb3cc90a-6a7d-4ca0-9b38-b099679e13fb @@ -575537,6 +636063,13 @@ Blocked Profile 1033 + + 52a660d3-bd75-4e4c-8f9e-b382a2d8448f + + true + Blokeret profil + 1030 + c5e4b163-65c4-4596-a8ec-660dba1dc751 @@ -575578,6 +636111,13 @@ No 1033 + + 52362356-71c3-40d5-b94d-735b0eb71a82 + + true + Nej + 1030 + 8a031a3b-a4fc-4e78-85df-92bd259b8b39 @@ -575611,6 +636151,13 @@ Yes 1033 + + 0912d909-55a6-4acc-89bd-cdaf2481bded + + true + Ja + 1030 + bd6f46eb-0f36-4612-9420-3a7a06e3fb08 @@ -575913,6 +636460,13 @@ For internal use only. 1033 + + be8c9708-b668-42a5-8fbd-8c9226e48967 + + true + Kun til intern brug. + 1030 + 36c6bad9-e7b6-4364-8266-c1fb3898853a @@ -575931,6 +636485,13 @@ Is Guest profile 1033 + + ba0bbe40-8f9f-4187-a39f-b8bdb61b7e28 + + true + Er gæsteprofil + 1030 + 9cc5059c-616a-4f2b-9ee4-8d5749d43a26 @@ -575972,6 +636533,13 @@ No 1033 + + d20aaab9-63bc-489f-be4b-efc743d2c2df + + true + Nej + 1030 + d79edf86-99cc-49bb-8d16-5fe546e4a971 @@ -576005,6 +636573,13 @@ Yes 1033 + + 9821faf9-0701-457a-bbb4-0632b3e5535e + + true + Ja + 1030 + be546034-0d22-483f-b0fe-17a451046ffa @@ -576031,6 +636606,13 @@ Field permission to read unmasked values. 1033 + + ed7efeab-9f4e-4142-a777-190d406d2255 + + true + Felttilladelse til at læse umaskerede værdier. + 1030 + 66a12272-d9ba-f011-bbd3-7c1e52365f30 @@ -576049,6 +636631,13 @@ Read Unmasked 1033 + + 766f6973-ce07-4cff-aa1e-9ed5ecccc6d1 + + true + Læs umaskerede + 1030 + 65a12272-d9ba-f011-bbd3-7c1e52365f30 @@ -576091,6 +636680,13 @@ Not Allowed 1033 + + b59c4bb8-af7d-43a8-a917-daf6b0b35f1f + + true + Ikke tilladt + 1030 + 926a3f0b-4c37-4c4b-ba67-3acad9ced524 @@ -576124,6 +636720,13 @@ One Record 1033 + + 5ac8d8e1-a3a9-4a14-af9f-d67afa084864 + + true + Én post + 1030 + 9500eedd-361b-4f30-91bc-e1f4b87c46ce @@ -576157,6 +636760,13 @@ All Records 1033 + + 156b0414-c896-4a27-ac3c-248cf1998dcc + + true + Alle poster + 1030 + a0ad20ba-e150-4a7d-80e4-75bb12b4fd6f @@ -576381,6 +636991,13 @@ List of Mobile Offline Enabled Entities. 1033 + + 256084bf-86d6-462c-8a8f-72fc0fa12555 + + true + Liste med mobile offline-aktiverede objekter. + 1030 + 86cb3ce3-c995-4e54-8135-b7f952929f1f @@ -576399,6 +637016,13 @@ Mobile Offline Enabled Entities 1033 + + d5908ba2-34ca-4166-bb8b-c53cbe2c0bba + + true + Mobile offline-aktiverede objekter + 1030 + 7c0a36ee-712d-46bd-b049-47a8f6c2bfa9 @@ -576441,6 +637065,13 @@ Account 1033 + + acfc5423-ce9a-46c5-9c5e-eb8bf5e59f21 + + true + Firma + 1030 + 03eca4f8-ff41-4f67-8725-232bee6f7526 @@ -576474,6 +637105,13 @@ Contact 1033 + + 6bb5c77d-cbf7-4e6c-8d22-6bf0c8a4871e + + true + Kontaktperson + 1030 + 2bf6831a-fbf3-4b73-bf01-87f88ed7ccf1 @@ -576507,6 +637145,13 @@ Note 1033 + + 3c5c6a03-a3d8-459b-8c5e-8db8ad0b57c1 + + true + Note + 1030 + 94c3f936-8865-47bc-86d8-15704a3f7f61 @@ -576540,6 +637185,13 @@ User 1033 + + 2810de48-606d-4712-a287-4bf3b6ee3eaf + + true + Bruger + 1030 + 67ba4569-263d-447c-bbef-9075efd4b225 @@ -576573,6 +637225,13 @@ Team 1033 + + 1b8eaf87-de7e-4430-b705-851addf17a6c + + true + Team + 1030 + 9f6d4c07-685b-4fa5-9af9-b1549268d3b6 @@ -576606,6 +637265,13 @@ Attachment 1033 + + 3b453e4d-d216-4fcb-a705-91b1376d9a53 + + true + Vedhæftet fil + 1030 + aca4de9c-50af-4d10-a659-be779d30d8ca @@ -576639,6 +637305,13 @@ Queue 1033 + + 87b4a83d-9d19-463f-8b3a-d9a039aa3c75 + + true + + 1030 + 2ec57b5c-be5a-4f96-8b7a-9515f4753b3c @@ -576672,6 +637345,13 @@ Queue Item 1033 + + d7b00579-47a4-4805-a893-7db8c81a746d + + true + Køelement + 1030 + f87bcfd6-3507-45e5-b36b-07d0cca62f22 @@ -576705,6 +637385,13 @@ Appointment 1033 + + 1c998935-c095-45b7-bcce-22e7c08153b2 + + true + Aftale + 1030 + 2c1d8ed1-c74c-4d2f-81bb-09842976daf8 @@ -576738,6 +637425,13 @@ Email 1033 + + 0e6d2865-8c5c-4fc2-ad9b-6f34d6097f70 + + true + Mail + 1030 + c8cad5ff-170c-4462-a01a-f7ec8e8ad9ce @@ -576771,6 +637465,13 @@ Task 1033 + + 1d026b98-9017-4f1b-945c-f3e57ce00558 + + true + Opgave + 1030 + c39b4dbd-2d4d-47a0-97cd-0d9d1135ad41 @@ -576804,6 +637505,13 @@ SLA KPI Instance 1033 + + ae4af19a-961e-4401-b8f7-6b91a78dbb3d + + true + SLA-nøgletalsforekomst + 1030 + 028ab462-322d-4b77-8f63-32f09d9d4751 @@ -577623,23 +638331,23 @@ - d21d7d14-5321-4d42-85b5-a87b971e41ac + bf9b7f51-da97-4180-842f-309fa9692520 false - Reserve entity 00ba0620c4 + Reserve entity 1b8013ca25 1033 - d21d7d14-5321-4d42-85b5-a87b971e41ac + bf9b7f51-da97-4180-842f-309fa9692520 false - Reserve entity 00ba0620c4 + Reserve entity 1b8013ca25 1033 - 10558 + 10559 @@ -577656,23 +638364,23 @@ - bf9b7f51-da97-4180-842f-309fa9692520 + c57d39aa-c98a-408f-a369-1125148bb029 false - Reserve entity 1b8013ca25 + Reserve entity 773c368eae 1033 - bf9b7f51-da97-4180-842f-309fa9692520 + c57d39aa-c98a-408f-a369-1125148bb029 false - Reserve entity 1b8013ca25 + Reserve entity 773c368eae 1033 - 10559 + 10560 @@ -577689,23 +638397,23 @@ - c57d39aa-c98a-408f-a369-1125148bb029 + 80ab58eb-4b55-421d-bf73-6d224e753bbc false - Reserve entity 773c368eae + Reserve entity 8890401f86 1033 - c57d39aa-c98a-408f-a369-1125148bb029 + 80ab58eb-4b55-421d-bf73-6d224e753bbc false - Reserve entity 773c368eae + Reserve entity 8890401f86 1033 - 10560 + 10561 @@ -577722,23 +638430,23 @@ - 80ab58eb-4b55-421d-bf73-6d224e753bbc + 1a540772-15ee-4d2a-83bc-067f3185b17e false - Reserve entity 8890401f86 + Reserve entity 5475eb7589 1033 - 80ab58eb-4b55-421d-bf73-6d224e753bbc + 1a540772-15ee-4d2a-83bc-067f3185b17e false - Reserve entity 8890401f86 + Reserve entity 5475eb7589 1033 - 10561 + 10562 @@ -577755,23 +638463,23 @@ - 1a540772-15ee-4d2a-83bc-067f3185b17e + d28415f8-f471-4208-9d07-f43085d244b2 false - Reserve entity 5475eb7589 + Reserve entity 484e00b888 1033 - 1a540772-15ee-4d2a-83bc-067f3185b17e + d28415f8-f471-4208-9d07-f43085d244b2 false - Reserve entity 5475eb7589 + Reserve entity 484e00b888 1033 - 10562 + 10564 @@ -577788,23 +638496,23 @@ - 1544037e-9d43-442e-bf5a-d226918a5719 + 23840bf5-5b11-4a98-86a8-05ef9aa9acbb false - Reserve entity 077f6524fc + Reserve entity cd14651fa6 1033 - 1544037e-9d43-442e-bf5a-d226918a5719 + 23840bf5-5b11-4a98-86a8-05ef9aa9acbb false - Reserve entity 077f6524fc + Reserve entity cd14651fa6 1033 - 10563 + 10568 @@ -577821,23 +638529,23 @@ - d28415f8-f471-4208-9d07-f43085d244b2 + 1896945b-a87c-4037-8a3b-049be69fa742 false - Reserve entity 484e00b888 + Reserve entity fbc6f78fa4 1033 - d28415f8-f471-4208-9d07-f43085d244b2 + 1896945b-a87c-4037-8a3b-049be69fa742 false - Reserve entity 484e00b888 + Reserve entity fbc6f78fa4 1033 - 10564 + 10585 @@ -577854,23 +638562,23 @@ - 23840bf5-5b11-4a98-86a8-05ef9aa9acbb + c279d83a-a5ab-4487-b0a9-0b1f754b4602 false - Reserve entity cd14651fa6 + Reserve entity 5c0367fc71 1033 - 23840bf5-5b11-4a98-86a8-05ef9aa9acbb + c279d83a-a5ab-4487-b0a9-0b1f754b4602 false - Reserve entity cd14651fa6 + Reserve entity 5c0367fc71 1033 - 10568 + 10601 @@ -577887,23 +638595,23 @@ - 1896945b-a87c-4037-8a3b-049be69fa742 + 2923bbba-8106-46ad-95d8-b7b32e0351bd false - Reserve entity fbc6f78fa4 + Reserve entity 919aa5fd97 1033 - 1896945b-a87c-4037-8a3b-049be69fa742 + 2923bbba-8106-46ad-95d8-b7b32e0351bd false - Reserve entity fbc6f78fa4 + Reserve entity 919aa5fd97 1033 - 10585 + 10615 @@ -577920,23 +638628,23 @@ - c279d83a-a5ab-4487-b0a9-0b1f754b4602 + b7f719c9-ffde-424e-ac8a-480b0a533b79 false - Reserve entity 5c0367fc71 + Reserve entity 77bedcb367 1033 - c279d83a-a5ab-4487-b0a9-0b1f754b4602 + b7f719c9-ffde-424e-ac8a-480b0a533b79 false - Reserve entity 5c0367fc71 + Reserve entity 77bedcb367 1033 - 10601 + 10712 @@ -577953,23 +638661,188 @@ - 2923bbba-8106-46ad-95d8-b7b32e0351bd + 0e2302f9-84bd-4a13-9685-ec809df9e6ff false - Reserve entity 919aa5fd97 + Reserve entity 7ff5e62c41 1033 - 2923bbba-8106-46ad-95d8-b7b32e0351bd + 0e2302f9-84bd-4a13-9685-ec809df9e6ff false - Reserve entity 919aa5fd97 + Reserve entity 7ff5e62c41 1033 - 10615 + 10714 + + + + + + + + + + + + false + false + + + + 8e3e068f-50c3-48a6-b0ac-110a9a48d39f + + false + Reserve entity bb26390a84 + 1033 + + + + 8e3e068f-50c3-48a6-b0ac-110a9a48d39f + + false + Reserve entity bb26390a84 + 1033 + + + + 10715 + + + + + + + + + + + + false + false + + + + 45bfbe40-0622-407e-a80c-dec19ab6ca54 + + false + Reserve entity d4a542dcbd + 1033 + + + + 45bfbe40-0622-407e-a80c-dec19ab6ca54 + + false + Reserve entity d4a542dcbd + 1033 + + + + 10716 + + + + + + + + + + + + false + false + + + + 789dc042-8190-4d80-9b83-acfd3e85e2bb + + false + Power Apps Wrap Build + 1033 + + + + 789dc042-8190-4d80-9b83-acfd3e85e2bb + + false + Power Apps Wrap Build + 1033 + + + + 10721 + + + + + + + + + + + + false + false + + + + dfb8ad68-4036-4bf5-80d3-b4d09e017fe3 + + false + Bulk Harvest Run Log + 1033 + + + + dfb8ad68-4036-4bf5-80d3-b4d09e017fe3 + + false + Bulk Harvest Run Log + 1033 + + + + 10723 + + + + + + + + + + + + false + false + + + + 27e63920-7d29-428d-a7b7-4856633b4955 + + false + Reserve entity 9bc411c82d + 1033 + + + + 27e63920-7d29-428d-a7b7-4856633b4955 + + false + Reserve entity 9bc411c82d + 1033 + + + + 10737 @@ -577986,23 +638859,23 @@ - 14ac02ed-1c01-4110-9fe9-58f9102d196b + e842996f-865a-46e7-afc3-53be6d8a675d false - Reserve entity 2daceb8fee + Harvest Work Item 1033 - 14ac02ed-1c01-4110-9fe9-58f9102d196b + e842996f-865a-46e7-afc3-53be6d8a675d false - Reserve entity 2daceb8fee + Harvest Work Item 1033 - 10629 + 10724 @@ -578019,23 +638892,23 @@ - b7f719c9-ffde-424e-ac8a-480b0a533b79 + 53df5ffe-5093-4f6e-b74e-833e4a7a14b7 false - Reserve entity 77bedcb367 + Historical Case Harvest Run Log 1033 - b7f719c9-ffde-424e-ac8a-480b0a533b79 + 53df5ffe-5093-4f6e-b74e-833e4a7a14b7 false - Reserve entity 77bedcb367 + Historical Case Harvest Run Log 1033 - 10712 + 10742 @@ -578052,23 +638925,23 @@ - 0e2302f9-84bd-4a13-9685-ec809df9e6ff + 2c912de9-b2bd-44ee-b4db-f21c51dcebca false - Reserve entity 7ff5e62c41 + AthenaReconciliationInfo 1033 - 0e2302f9-84bd-4a13-9685-ec809df9e6ff + 2c912de9-b2bd-44ee-b4db-f21c51dcebca false - Reserve entity 7ff5e62c41 + AthenaReconciliationInfo 1033 - 10714 + 10743 @@ -578085,23 +638958,23 @@ - 8e3e068f-50c3-48a6-b0ac-110a9a48d39f + 5497ab3d-b995-489c-81b6-11c5a836cc6d false - Reserve entity bb26390a84 + CPR Sub Run 1033 - 8e3e068f-50c3-48a6-b0ac-110a9a48d39f + 5497ab3d-b995-489c-81b6-11c5a836cc6d false - Reserve entity bb26390a84 + CPR Sub Run 1033 - 10715 + 10629 @@ -578118,23 +638991,23 @@ - 45bfbe40-0622-407e-a80c-dec19ab6ca54 + cd0096c5-4388-4b5b-9bf7-dbf73c2660ef false - Reserve entity d4a542dcbd + CPR Run 1033 - 45bfbe40-0622-407e-a80c-dec19ab6ca54 + cd0096c5-4388-4b5b-9bf7-dbf73c2660ef false - Reserve entity d4a542dcbd + CPR Run 1033 - 10716 + 10563 @@ -578152,6 +639025,13 @@ Type of channel activities. 1033 + + c686de36-f9f0-435f-ad90-04607b98e776 + + true + Type af kanalaktiviteter. + 1030 + 18ca8fea-7d0f-4782-a510-a63283dd6e21 @@ -578170,6 +639050,13 @@ Channel Activities 1033 + + a6c28373-193a-4a6e-897b-3a2b371a78c9 + + true + Kanalaktiviteter + 1030 + 2dc745d8-1e19-434a-a805-e9972afaf6db @@ -578212,6 +639099,13 @@ Phone Call 1033 + + 9033c504-4b1d-4c7c-bf12-69ad152edf2b + + true + Telefonopkald + 1030 + 802631c1-be2f-4d1e-8255-be5762102572 @@ -578245,6 +639139,13 @@ Email 1033 + + 33e0f8a2-4827-4c19-9c83-e4621ea97fe5 + + true + Mail + 1030 + 174da366-a0e3-4a36-9b07-85fa24095b13 @@ -578278,6 +639179,13 @@ Appointment 1033 + + 1be8bd78-9bd3-43c2-bd51-9fc4950e76eb + + true + Aftale + 1030 + bd534d6d-376a-4ada-a53a-bf85ee9f7fdf @@ -578311,6 +639219,13 @@ Task 1033 + + c54f514b-4949-4283-a910-9f28a447bcbf + + true + Opgave + 1030 + 71c769bb-65e5-4edf-9326-7b8bccbf21b3 @@ -578344,6 +639259,13 @@ Social Activity 1033 + + d7b996a9-ddd6-41e4-bc0d-379e5342f878 + + true + Social aktivitet + 1030 + b5e75def-487c-48fe-b558-4f2a6fe4ce25 @@ -578471,6 +639393,13 @@ Information about whether the document template is active. 1033 + + cc228e7b-172b-44ee-832b-d513207e91fe + + true + Oplysninger, der viser, om dokumentskabelonen er aktiv. + 1030 + 789553f5-bd89-435d-81ae-cfd5810769e2 @@ -578489,6 +639418,13 @@ Status 1033 + + c100f97b-7008-476f-aeab-cc93cf24ad87 + + true + Status + 1030 + b87f860b-3e87-450a-a29e-a4b30c946175 @@ -578530,6 +639466,13 @@ Activated 1033 + + 64bda3be-5a79-4806-8c8e-275ffa04d399 + + true + Aktiveret + 1030 + 38df5859-cf68-4884-93fa-1f507d9d2220 @@ -578563,6 +639506,13 @@ Draft 1033 + + b8bb5438-db4d-47b0-b471-cb2501b0f768 + + true + Kladde + 1030 + fb49cb22-7b4e-46d5-aaa4-6b72425fdaea @@ -578589,6 +639539,13 @@ this is the optionset for relationships for selected entity in parent mobile offline profile item. 1033 + + b54387ba-cbc1-422c-bc6e-ada7274129af + + true + dette er de grupperede indstillinger for relationerne for det valgte objekt i det overordnede Mobile Offline-profilelement. + 1030 + f43b26fc-b2f7-403c-84b8-8306fa9437fc @@ -578607,6 +639564,13 @@ Selected Mobile Offline Enabled Entities Relationships 1033 + + ccd90be0-518f-4f17-9d74-49ce027c52a4 + + true + Valgte relationer for Mobile Offline-aktiverede objekter + 1030 + b5a49e43-fd82-4600-9a81-ffd2d1672b92 @@ -579027,6 +639991,13 @@ Day of the week used under Monthly/Yearly recurrence patterns 1033 + + 2d68ab37-b67a-4965-8012-a456a72fc2b2 + + true + Den ugedag, der bruges i gentagelsesmønstre for måned/år + 1030 + 773c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -579045,6 +640016,13 @@ Day 1033 + + 3cb4e29f-0051-470f-855e-cdde3b7fa590 + + true + Dag + 1030 + 763c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -579080,6 +640058,13 @@ 1033 + + 7e270fc1-e367-4eab-91c8-203e30b7732c + + true + + 1030 + 9d9e6018-fedf-4e63-8786-7294299fb207 @@ -579101,6 +640086,13 @@ Day 1033 + + 30f365bc-fcc1-4011-8f2b-8721bdf01922 + + true + Dag + 1030 + 7e8c71ed-c491-47c7-817f-efa753894cd6 @@ -579127,6 +640119,13 @@ 1033 + + 3abbae07-e1fb-4bcf-a4a5-284b96128904 + + true + + 1030 + e88f1159-8f18-4b30-b1d5-44392cd4484d @@ -579148,6 +640147,13 @@ Weekday 1033 + + b5ec7212-609e-4e96-9534-dee441a5016d + + true + Ugedag + 1030 + c349056e-2bfb-4f22-aeaf-c06ddbe3979e @@ -579174,6 +640180,13 @@ 1033 + + 5188d553-5637-4c2f-9552-dc472deb13c2 + + true + + 1030 + c21b73f2-82fa-4af7-b786-af8dcd88da24 @@ -579195,6 +640208,13 @@ Weekend Day 1033 + + 9e09d86e-2fe8-43a4-a5f9-f3ccf8a211a7 + + true + Dag i weekenden + 1030 + 720600ba-9000-487e-8f5e-df6beaf08cef @@ -579221,6 +640241,13 @@ 1033 + + 62b15ae7-6572-40a4-a7f5-97d912ca3ea9 + + true + + 1030 + f4afcbeb-393b-4dc5-ba13-1eb4553aceca @@ -579242,6 +640269,13 @@ Sunday 1033 + + 3f3d31be-924a-42b7-b325-9b27b2504824 + + true + Søndag + 1030 + 42679eca-2c27-43f6-ad3f-5c79e0307463 @@ -579268,6 +640302,13 @@ 1033 + + 0ef53d1a-0b4f-4e98-840b-c738c76efacd + + true + + 1030 + 108433b0-25e1-40e6-812a-f5031e0b7aa8 @@ -579289,6 +640330,13 @@ Monday 1033 + + 72dd0cdf-4fd7-4017-9120-1109e9bb66c5 + + true + Mandag + 1030 + e2b9fb19-b5c7-4b76-955d-525fb36748b3 @@ -579315,6 +640363,13 @@ 1033 + + 9f72fcaa-331c-4b35-a29a-639312df2726 + + true + + 1030 + 692aa505-79b1-4555-ad34-324faf64f00b @@ -579336,6 +640391,13 @@ Tuesday 1033 + + 99b77fea-0712-48c5-a28f-79483897a711 + + true + Tirsdag + 1030 + fd251d55-1fc0-43de-af1a-f5d2c03c2a74 @@ -579362,6 +640424,13 @@ 1033 + + 16f68bd1-1bf2-4a61-a92d-004d3527ccff + + true + + 1030 + e0ba4edf-702c-447f-a632-77a1b37a5a4d @@ -579383,6 +640452,13 @@ Wednesday 1033 + + af866ad1-2b07-4714-8f27-e3997bfbc2ce + + true + Onsdag + 1030 + e8dda6ec-af06-4104-a5a6-dfba9652a5d5 @@ -579409,6 +640485,13 @@ 1033 + + e98db0ba-8fb6-4018-a8c2-f8d968bb804e + + true + + 1030 + 5c542de5-aebe-4feb-9a54-7a84cd5f4e83 @@ -579430,6 +640513,13 @@ Thursday 1033 + + ad938960-ef52-4fd5-8ced-e1a567c8bd1a + + true + Torsdag + 1030 + 2dc85030-f3a9-4a1d-aa3f-978e383115bc @@ -579456,6 +640546,13 @@ 1033 + + 33715596-8b1f-4c45-b8d2-91f03823c005 + + true + + 1030 + 7f5fec34-d03b-4902-8a82-b28df5408dd5 @@ -579477,6 +640574,13 @@ Friday 1033 + + 9a7ca034-c2e5-4024-aa21-1469c2c205fc + + true + Fredag + 1030 + 0feb42d0-dc43-479f-82c5-455c08010673 @@ -579503,6 +640607,13 @@ 1033 + + d91870e8-c646-44f8-afb7-716a84c157b3 + + true + + 1030 + 2953db32-0739-475e-8292-5d2f01a7c9b8 @@ -579524,6 +640635,13 @@ Saturday 1033 + + 8b729e0e-380e-45a8-a135-1ed06217aa8d + + true + Lørdag + 1030 + ca63db9c-fe9f-4aae-a18f-ef76b2ebc98c @@ -580016,6 +641134,13 @@ Expiration State 1033 + + 222ae85e-7b33-436e-8c82-5997f1bc01b8 + + true + Udløbsstatus + 1030 + 4041ee8a-c6a4-4ea0-85ce-dd964e403da1 @@ -580034,6 +641159,13 @@ Expiration State 1033 + + eaa57514-bcb0-426e-8aa7-20ed625dc6c4 + + true + Udløbsstatus + 1030 + c11127e1-6f51-4acb-9264-3a5392f18857 @@ -580076,6 +641208,13 @@ Expired 1033 + + 4dea8d09-2b3f-4208-b5f5-c095b7c2562a + + true + Udløbet + 1030 + da31f75b-f05e-4374-955a-ae9da937257d @@ -580109,6 +641248,13 @@ Published 1033 + + 75d7370c-5b7d-4949-b867-e00cd445c1f0 + + true + Udgivet + 1030 + 4d74e4db-ec99-42a0-8225-8a8dd821abe0 @@ -580142,6 +641288,13 @@ Archived 1033 + + 0af7d602-b1dc-40fc-a102-b01f3d5bb544 + + true + Arkiveret + 1030 + 0f1355af-4595-43f1-9049-a3a2b8a950c1 @@ -580352,6 +641505,13 @@ 1033 + + 18e277e1-76fc-4e6e-a9b3-84d4d098f30d + + true + + 1030 + 4e4fe3b2-f1ba-f011-bbd3-7c1e52365f30 @@ -580370,6 +641530,13 @@ Main Fewshot Entity Supported Type 1033 + + 7dcd9720-8e48-4c3f-8737-13ec5ca607e3 + + true + Understøttet hovedtype for Fewshot-objekt + 1030 + 4d4fe3b2-f1ba-f011-bbd3-7c1e52365f30 @@ -580405,6 +641572,13 @@ 1033 + + a53da7a8-af51-46d2-a376-e7ff13fd230c + + true + + 1030 + 8fcac7fd-eb0b-403d-b0e8-71728ef95640 @@ -580426,6 +641600,13 @@ OOB 1033 + + 446dcad8-e30b-40e5-9eb0-5cf268263973 + + true + OOB + 1030 + 14ae2d28-0f11-4cad-8789-01146f408511 @@ -580452,6 +641633,13 @@ 1033 + + 9e5362f5-5025-4ddb-a66b-882e84368b35 + + true + + 1030 + e6cff08e-4835-4a84-a833-4b328b12e2a5 @@ -580473,6 +641661,13 @@ Custom 1033 + + 568ca3f1-e50b-4006-a476-f68e5db3c12a + + true + Brugerdefineret + 1030 + 23dbc2ce-9aa0-4942-958d-b49c1e07d407 @@ -580501,6 +641696,13 @@ Post message type private or direct. 1033 + + 779062fc-4122-461e-b942-daa21f93a4a0 + + true + Opslagets meddelelsestype privat eller direkte. + 1030 + 4006f035-56c0-465b-b1a2-cc52db843aeb @@ -580519,6 +641721,13 @@ Post Message type 1033 + + c1d8ec08-14e6-4784-b4a9-a9e845251bac + + true + Indlæggets meddelelsestype + 1030 + c94b4aa4-a448-47de-9160-5c63a1860e01 @@ -580561,6 +641770,13 @@ Public Message 1033 + + 88f95653-402b-4df4-b5d4-9e2c83d5baec + + true + Offentlig meddelelse + 1030 + 531797fe-4bb3-4a30-b52e-29d3037fcb97 @@ -580594,6 +641810,13 @@ Private Message 1033 + + 939deee3-d15f-411e-ae68-e80e87e7f504 + + true + Privat meddelelse + 1030 + 6850412b-ca0c-4709-9e8b-aeb8c4b33f58 @@ -580622,6 +641845,13 @@ For internal use only 1033 + + 60e7e63d-5bd2-47ff-8f82-393d8eb36e9c + + true + Kun til intern brug + 1030 + 9746766d-ec9e-4a68-9173-d5d0f5b94cc6 @@ -580640,6 +641870,13 @@ Have Privileges Changed 1033 + + 4ea9059e-c087-4336-a0ad-ecc9533ca12e + + true + Få rettigheder ændret + 1030 + 4133aa6a-f876-4a55-88b6-100ca234c90c @@ -580681,6 +641918,13 @@ No 1033 + + 4ea02f2a-77fe-4144-9f40-13ab28af5160 + + true + Nej + 1030 + fa4fdefb-d29b-47aa-b550-eba2b25a0068 @@ -580714,6 +641958,13 @@ Yes 1033 + + dd00edea-7b57-48fa-b051-6f791b452e79 + + true + Ja + 1030 + 7452b634-d40e-406d-8027-ad2d8c178ebe @@ -581311,6 +642562,13 @@ Indication of whether the configuration is the default 1033 + + 97d60292-7ce0-4e5c-910a-892d86163923 + + true + Angivelse af, om konfigurationen er standarden + 1030 + 355dc575-d9d6-4a32-83d8-ea988e5c9858 @@ -581329,6 +642587,13 @@ Is Default 1033 + + 540884b1-9da5-4869-98f9-63469da1a2ca + + true + Er standard + 1030 + 23b0813a-dcdf-4955-91f6-232537cb136b @@ -581370,6 +642635,13 @@ No 1033 + + 1e85b922-4ce8-4076-87f1-1c4c8b940699 + + true + Nej + 1030 + b00ae051-1ea3-40ae-b7ee-02d3369a7fa0 @@ -581403,6 +642675,13 @@ Yes 1033 + + b5be4da8-290c-4ed2-bf72-b189ee3f7d96 + + true + Ja + 1030 + 1e832b62-45c9-4667-bcec-8807d3e6536d @@ -581433,6 +642712,13 @@ Sync Direction 1033 + + db540853-9900-40de-b5a5-487cddd41976 + + true + Synkroniseringsretning + 1030 + 5cbec564-2bf1-4e85-a9be-998481cee73f @@ -581475,6 +642761,13 @@ None 1033 + + e6d56a23-f712-4934-8d2c-a4dce4bfd121 + + true + Ingen + 1030 + 3bb6945b-fb0a-4360-8bac-33c5c177c2d6 @@ -581508,6 +642801,13 @@ ToExchange 1033 + + f8a5ad19-939a-41f5-9792-eea4418c8929 + + true + ToExchange + 1030 + 87f116c5-b60a-41ec-ac0d-ae8670d8d1ae @@ -581541,6 +642841,13 @@ ToCRM 1033 + + 39c44848-2aef-4acf-a3a2-152a00e7ea7a + + true + ToCRM + 1030 + 319c63cb-3024-4b22-b11c-06cdbe2d2e0b @@ -581574,6 +642881,13 @@ Bidirectional 1033 + + 2df8ba8e-db50-41cd-989c-00b87c2a0498 + + true + Tovejs + 1030 + dffbdef6-0b92-4955-a945-aa0737f0b893 @@ -581602,6 +642916,13 @@ Stage in which the Workflow executes 1033 + + 32c4ff70-fe3c-4e4b-b40c-02a06bf50938 + + true + Fase for udførelse af arbejdsprocessen + 1030 + 2fbda1fd-c6b0-4e07-8a32-1507eaf6b69d @@ -581620,6 +642941,13 @@ Workflow Stage 1033 + + 2bec79a4-cb8f-46e4-ba1c-e5bbfa2d88ab + + true + Trin i arbejdsproces + 1030 + cff4ec6d-5535-41cc-b9d2-1ecfd8117dab @@ -581662,6 +642990,13 @@ Pre-operation 1033 + + 18c03d19-94ae-466e-bd4f-8e421d26e109 + + true + Starthandling + 1030 + 23ce47ec-06fe-11e1-a5fd-1cc1de634c82 @@ -581695,6 +643030,13 @@ Post-operation 1033 + + 9c9edd81-8dca-4f87-98a8-11cda6510b0e + + true + Efterfølgende handling + 1030 + 23ce47ee-06fe-11e1-a5fd-1cc1de634c82 @@ -581723,6 +643065,13 @@ Week of the month used under Monthly/Yearly recurrence patterns 1033 + + 353e40f2-7051-4df3-a61b-fa6925e3ca68 + + true + Den uge i måneden, der bruges i gentagelsesmønstre for måned/år + 1030 + 9e3c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -581741,6 +643090,13 @@ Week 1033 + + ed7e2ca6-bd5c-4ccd-9570-1913a9c4b7af + + true + Uge + 1030 + 9d3c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -581776,6 +643132,13 @@ First week of the month 1033 + + 23e1bb82-647b-4ce7-93b2-a886f958ba13 + + true + Første uge i måneden + 1030 + 3a3d2f03-c87e-42cb-a76d-f938fbfd6921 @@ -581797,6 +643160,13 @@ First 1033 + + 85965549-4b2c-4f30-a716-3ee7fa612af3 + + true + Første + 1030 + 060c1246-52a7-4817-a084-9a6d256335ab @@ -581823,6 +643193,13 @@ Second week of the month 1033 + + d7392534-8f2d-45e7-916e-ae4bb31c64df + + true + Anden uge i måneden + 1030 + 006a4873-c383-4c1e-91c2-3355b6c9c19e @@ -581844,6 +643221,13 @@ Second 1033 + + c469822e-55e0-40d2-9ae5-47b23cd16e08 + + true + Anden + 1030 + 6c0abaaf-0d68-415c-b77b-4635edb079b5 @@ -581870,6 +643254,13 @@ Third week of the month 1033 + + 814aa422-7155-4d3a-8ac6-34959a272158 + + true + Tredje uge i måneden + 1030 + a229ae71-d4c3-4497-bbc0-4bfb5d4f12c8 @@ -581891,6 +643282,13 @@ Third 1033 + + 276b119b-ca64-435b-b922-6125d14be822 + + true + Tredje + 1030 + 9ff15a0e-2773-48c4-b259-5bbc72c4ef6c @@ -581917,6 +643315,13 @@ Fourth week of the month 1033 + + 46a84c4e-2fd1-49cc-b0e6-01bac14751de + + true + Fjerde uge i måneden + 1030 + 51eb3ff2-6b6b-4bd1-a484-8e26362ae012 @@ -581938,6 +643343,13 @@ Fourth 1033 + + 7372f545-f8a9-4f7e-9058-4d7b93f99ccb + + true + Fjerde + 1030 + c8070fa5-2ea9-4e69-9c3a-73ca19b07f35 @@ -581964,6 +643376,13 @@ Last week of the month 1033 + + 8a9c82c9-6f9d-49a6-a1d9-c3830beb01a4 + + true + Sidste uge i måneden + 1030 + 6b3b1d26-bb91-4f46-b209-d933c56bbad3 @@ -581985,6 +643404,13 @@ Last 1033 + + 5824dbe0-8e9b-4bb9-a4f7-980ad3fc6d04 + + true + Sidste + 1030 + 4a56263c-e9cc-4825-a311-32e668dd4e39 @@ -582013,6 +643439,13 @@ Associated EntityType Code for the DocumentTemplate. 1033 + + 2f32b73b-3d03-4e24-a4b6-b4ffe4922fca + + true + Tilknyttet EntityType-kode for DocumentTemplate. + 1030 + f177fbe3-b781-4733-8baa-7b08fb714d31 @@ -582031,6 +643464,13 @@ Associated EntityType Code 1033 + + 78b3c6d2-0c93-4971-9a7e-0e08a70b6d69 + + true + Tilknyttet EntityType-kode + 1030 + bcac9daa-1744-4f3e-9771-457f03426ab1 @@ -582067,6 +643507,13 @@ To indicate whether an article is internal 1033 + + c576265a-736d-4832-b37b-4ee7fb62ea8c + + true + Til angivelse af, om en artikel er intern + 1030 + 54179608-2f1d-47c5-a371-60f2f0952ca5 @@ -582085,6 +643532,13 @@ Is Internal 1033 + + 3c7cefa5-f29d-4c1d-899b-63d54a45c5d4 + + true + Er intern + 1030 + 6d09e674-683a-46ca-82d4-157e5395b186 @@ -582126,6 +643580,13 @@ No 1033 + + 4d42a7a8-bfd6-4774-8bfd-b4d0b4d3d02a + + true + Nej + 1030 + 61a96bc5-d8d8-46d4-860c-d62c63c402f8 @@ -582159,6 +643620,13 @@ Yes 1033 + + 408d13db-c84c-4ba8-8500-c1e3cab1f0e8 + + true + Ja + 1030 + c7b7194c-d3d8-4fa9-beb6-13b072c0f9c7 @@ -582189,6 +643657,13 @@ Is Computed 1033 + + 33f6818e-7f9e-4164-aecc-d3c7cb248fe7 + + true + Er beregnet + 1030 + c5951b49-8d89-4785-b558-b2f15cefb79b @@ -582230,6 +643705,13 @@ No 1033 + + d44e4789-515e-44f0-8339-2b393fe5c588 + + true + Nej + 1030 + 353e7444-23e0-48c7-af23-88f551d90730 @@ -582263,6 +643745,13 @@ Yes 1033 + + eef90018-ce84-4e8c-abb2-17d5420f0935 + + true + Ja + 1030 + 0a823797-9fab-45cc-a9d5-ca75259e06a4 @@ -582289,6 +643778,13 @@ System evaluated state of email Remainder. If evaluated state is False,email activity will not be followed. 1033 + + ca90e370-286f-46fd-8b2b-725be391a612 + + true + Systemevalueret tilstand for mailpåmindelse. Hvis den evaluerede tilstand er Falsk, følges mailaktiviteten ikke. + 1030 + 39f9b63b-1055-4c91-8947-fd79f5a963d4 @@ -582307,6 +643803,13 @@ Email Remainder set 1033 + + 2e4e0a25-d115-46f2-adf4-30087ad8d5d4 + + true + Mailpåmindelsessæt + 1030 + f513ceb9-2ecf-4663-8bff-de8cfddef1a6 @@ -582348,6 +643851,13 @@ No 1033 + + c89c42e8-1c4e-4fe5-bec5-42e5591b7002 + + true + Nej + 1030 + 9ec305da-dfff-4379-a0cb-9beb2e921c36 @@ -582381,6 +643891,13 @@ Yes 1033 + + e641abde-c4b8-4480-836c-73024165d199 + + true + Ja + 1030 + e18a240a-43e6-4206-ab35-34f76e0d792a @@ -582407,6 +643924,13 @@ Select the records to send the direct email to 1033 + + 59f97532-bace-4028-99f4-a1e588fa2c03 + + true + Vælg de poster, der skal sendes direkte mail til + 1030 + 303c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -582425,6 +643949,13 @@ Send Direct Email To 1033 + + 77418331-e927-4a92-a6c2-10b1ac41e5cc + + true + Send direkte mail til + 1030 + 2f3c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -582460,6 +643991,13 @@ Send direct email only to the records you selected on this page. 1033 + + d2d5f7d4-1295-4e62-b9aa-fd0d05d8cb68 + + true + Send kun direkte mail til de poster, du har markeret på denne side. + 1030 + 9643c6f7-0ad7-4c46-9f5d-db626116245c @@ -582481,6 +644019,13 @@ Selected records on current page 1033 + + 0978c862-486c-4583-9dec-342fb52c1f06 + + true + Valgte poster på den aktuelle side + 1030 + d3f0e21b-55f6-40e9-bfd1-780e0d79ab70 @@ -582507,6 +644052,13 @@ Send direct email to all the records on this page. 1033 + + c5bcee69-cbdc-44e2-826d-45bc7a7d139b + + true + Send direkte mail til alle poster på denne side. + 1030 + d3b02e3f-1f49-40b1-8a91-55b9b8c4b682 @@ -582528,6 +644080,13 @@ All records on current page 1033 + + a3f1ac86-a9ce-4d9a-9aec-f79d3532e695 + + true + Alle poster på den aktuelle side + 1030 + e49ce0d5-4516-4c6f-9a07-7a5ae495ceaf @@ -582554,6 +644113,13 @@ Send direct email to all the records on all the pages in the current view. 1033 + + b062e4bf-7bea-4e12-86c8-0f4e5f803505 + + true + Send direkte mail til alle poster på alle sider i den aktuelle visning. + 1030 + 1ea4aa5d-f564-4960-9259-033f55557691 @@ -582575,6 +644141,13 @@ All records on all pages 1033 + + dcf63d1f-68ec-475f-84c3-3c2e763155dc + + true + Alle poster på alle sider + 1030 + a0b93be0-30ab-409b-a96d-22168cbd4087 @@ -582752,6 +644325,13 @@ Indicates whether this configuration indicates a drilldown chart 1033 + + 499bde1a-6ccf-425c-97da-ca7a8668cdfa + + true + Angiver, om denne konfiguration er et detailudledningsdiagram + 1030 + b3c0b215-3e71-46e1-bc37-c3ba41b07929 @@ -582770,6 +644350,13 @@ Is Drilldown 1033 + + 9c2ab19d-e6b2-4cc1-8667-a7d9ba8364ac + + true + Er detailudledning + 1030 + 779eaca4-e686-416e-a63d-de59cecabe2e @@ -582811,6 +644398,13 @@ No 1033 + + 0faaf6c7-1876-4e36-835d-bcd7194ed04e + + true + Nej + 1030 + 09f0cbe7-fbd4-447c-94b2-55b80bfa21bc @@ -582844,6 +644438,13 @@ Yes 1033 + + fec93592-65d5-477d-95d6-5ca3a9f9f438 + + true + Ja + 1030 + 913b4248-cd82-4460-9569-5e5d048311a0 @@ -582870,6 +644471,13 @@ The kind of dependency. 1033 + + 484b05b7-c2b6-47e4-8d27-91ed54b3d5c8 + + true + Typen af afhængighed. + 1030 + 9718f246-b9be-11de-844f-00155da18b00 @@ -582888,6 +644496,13 @@ Dependency Type 1033 + + 34c06bd6-8d5a-4263-ab72-b2d97396aca6 + + true + Afhængighedstype + 1030 + 9718f245-b9be-11de-844f-00155da18b00 @@ -582930,6 +644545,13 @@ None 1033 + + 2b93d1e9-0813-41ab-9acb-9d59e192460f + + true + Ingen + 1030 + 9718f248-b9be-11de-844f-00155da18b00 @@ -582963,6 +644585,13 @@ Solution Internal 1033 + + dbaac7e7-d71d-4cf6-bcf0-8aee667b17d9 + + true + Løsning internt + 1030 + 9718f24a-b9be-11de-844f-00155da18b00 @@ -582996,6 +644625,13 @@ Published 1033 + + 3861ed4e-293e-40ea-852c-5bbbbbf0c64f + + true + Udgivet + 1030 + 9718f24c-b9be-11de-844f-00155da18b00 @@ -583029,6 +644665,13 @@ Unpublished 1033 + + 8ed92677-c265-4b9e-967a-d166c32293ed + + true + Ikke-udgivet + 1030 + 9718f24e-b9be-11de-844f-00155da18b00 @@ -583057,6 +644700,13 @@ Indicates type of Metric. 1033 + + 5805dcb3-c9f5-4432-8aac-d790cc135fdb + + true + Angiver typen af metrik. + 1030 + 3fdfca7d-e300-4f79-8c85-2261ea362481 @@ -583075,6 +644725,13 @@ Metric Type 1033 + + f0150cb4-e8cb-4388-a733-322982275afe + + true + Metriktype + 1030 + 70cfdb03-3998-4660-bedc-36af9f8a2b38 @@ -583116,6 +644773,13 @@ Count 1033 + + 80a76b69-1a33-49e0-bdd2-7a20d412c612 + + true + Antal + 1030 + 0a519cd2-db43-4f63-818b-8f01d00363e8 @@ -583149,6 +644813,13 @@ Amount 1033 + + a7ebef33-9a6b-4f91-b028-ffcfd4719cf3 + + true + Beløb + 1030 + 7b6117b4-fd38-43f5-9096-6b3ba8c07278 @@ -583175,6 +644846,13 @@ Power Pages Site Type 1033 + + 5e2eb430-f0ab-47b5-9ff3-d1954595c266 + + true + Power Pages-webstedstype + 1030 + c0fbb96a-f2ba-f011-bbd3-7c1e52365f30 @@ -583193,6 +644871,13 @@ Power Pages Site Type 1033 + + 67b23c31-75a6-4db9-ae38-ea90ca0a4972 + + true + Power Pages-webstedstype + 1030 + bffbb96a-f2ba-f011-bbd3-7c1e52365f30 @@ -583249,6 +644934,13 @@ Default 1033 + + d2ed033b-e4d1-4aa1-a8f7-943a5a215de5 + + true + Standard + 1030 + 98137935-7a6d-4d38-8e84-6dbd805cfe8f @@ -583296,6 +644988,13 @@ Code Site 1033 + + 1e2a3ea1-75cb-4cf8-9084-5b91ca9594ae + + true + Kode for sted + 1030 + de864f71-5339-4ce9-b4dc-63c4195e598f @@ -583324,6 +645023,13 @@ Identifies where the social profile originated from, such as Twitter, or FaceBook. 1033 + + cc36ec94-d2ad-41a3-b6ac-86af6b3cd248 + + true + Identificerer, hvor den sociale profil stammer fra, f.eks. fra Twitter eller FaceBook. + 1030 + 5b6d2847-9e30-4817-84ff-c959f987db10 @@ -583342,6 +645048,13 @@ Social Channel 1033 + + 1981c286-405d-4034-844d-ed56e9f47275 + + true + Social kanal + 1030 + 96ff97be-dd9e-437a-a1e0-c17a1de2d864 @@ -583398,6 +645111,13 @@ Facebook 1033 + + 84ae48e1-6c92-4b1f-a4df-5c5b566fba4c + + true + Facebook + 1030 + 2f00d6b8-b5cc-4f28-8562-f09df9b9a58c @@ -583445,6 +645165,13 @@ Twitter 1033 + + 70720484-f8c1-4554-a3b3-cb7e0c7c11a1 + + true + Twitter + 1030 + 44451dc2-ca8f-4fb3-80b2-397fca72f1b2 @@ -583492,6 +645219,13 @@ Other 1033 + + a43f5fc7-7f6d-4ac4-bd32-319745f639b2 + + true + Andet + 1030 + be55d176-6000-4d7a-9887-3b5d9f0f217f @@ -583520,6 +645254,13 @@ 1033 + + 004c52d1-556a-4d6d-b28f-1de70513488a + + true + + 1030 + ce25c5d3-f3ba-f011-bbd3-7c1e52365f30 @@ -583538,6 +645279,13 @@ Column Permission Values 1033 + + 56208002-ebf2-42c1-afc8-271212219657 + + true + Kolonnetilladelsesværdier + 1030 + cd25c5d3-f3ba-f011-bbd3-7c1e52365f30 @@ -583594,6 +645342,13 @@ Create 1033 + + b68f8071-cac0-4d8a-a36c-8633e19ae505 + + true + Opret + 1030 + bfe4df02-d49f-43cb-9d7d-03f24b632caf @@ -583641,6 +645396,13 @@ Read 1033 + + b2798d5a-6262-4468-b01e-9edfb01d1589 + + true + Læs + 1030 + 67939abf-6ed5-4f2a-b8e1-e2e06a722527 @@ -583688,6 +645450,13 @@ Update 1033 + + 11fcc57f-5915-4d6b-a031-d7c4a6038de3 + + true + Opdater + 1030 + 13d52701-6811-44e3-909d-19b763759867 @@ -583716,6 +645485,13 @@ A Yes or No boolean. 1033 + + 1b5b67c0-f9a1-4ec9-9bc2-080d668cf3d1 + + true + En boolesk værdi: Ja eller Nej. + 1030 + ec3292b6-f02e-40e2-be84-04cfe5744735 @@ -583734,6 +645510,13 @@ A Yes or No boolean 1033 + + 68cff64d-9a6e-441a-8966-b222fcf583a9 + + true + En boolesk værdi: Ja eller Nej + 1030 + 54e9e97c-5a1b-44fa-8d12-20c47deb1cef @@ -583776,6 +645559,13 @@ Not Allowed 1033 + + b12e1701-1c5e-4512-ba80-831e4d34c14f + + true + Ikke tilladt + 1030 + db789f8b-1605-4bbd-8756-a35a4479311d @@ -583809,6 +645599,13 @@ Allowed 1033 + + 0f9916d1-5e78-4386-8fff-86b967326e34 + + true + Tilladt + 1030 + 4071d6f4-75d6-4ea1-8b83-766d1b1a3088 @@ -583841,6 +645638,13 @@ Photo Resolution 1033 + + e358c93b-3b40-4d2d-90d4-5309ed2d7365 + + true + Billedopløsning + 1030 + e133bcc5-696d-4f77-8c20-e3746af3a149 @@ -583883,6 +645687,13 @@ Device Default 1033 + + 39eb9333-1a3b-482a-93ad-08586ca9ec32 + + true + Enhedsstandard + 1030 + 5db66690-e518-4530-a726-70035d6a9a3f @@ -583916,6 +645727,13 @@ 640 x 480 1033 + + 21d27da3-92dc-4d58-ab52-3c6259d280f9 + + true + 640 x 480 + 1030 + 2c1586d8-03da-4fc0-a33b-f73f950117a7 @@ -583949,6 +645767,13 @@ 1024 x 768 1033 + + c398e291-8756-463f-8801-f4a5390ed60b + + true + 1024 x 768 + 1030 + e4f772e8-0858-409f-a903-65cc7363e2b1 @@ -583982,6 +645807,13 @@ 1600 x 1200 1033 + + 1aa1a1b5-be3c-4675-88e3-ae9703c2fc96 + + true + 1600 x 1200 + 1030 + 8b5be22c-3355-4ecc-a1a1-2a45bef17cf9 @@ -584015,6 +645847,13 @@ 2048 x 1536 1033 + + a75d04ef-e8b0-4deb-a047-449ce98ef18e + + true + 2048 x 1536 + 1030 + a97fe3e4-a721-4304-b60c-20e9624d4222 @@ -584048,6 +645887,13 @@ 2592 x 1936 1033 + + 80cb1f0d-16d4-4c4b-9b62-a7c7d7f11341 + + true + 2592 x 1936 + 1030 + bc7473cd-0aa3-4460-a6a6-c1c4e46dc45a @@ -584108,6 +645954,13 @@ Off 1033 + + bf017f12-3cbf-4c52-a518-d84c636ad73e + + true + Fra + 1030 + 8470ffb6-4d03-4da1-b7b3-a348a2f69a92 @@ -584141,6 +645994,13 @@ On 1033 + + 7fe6c217-a4c8-4db8-953f-59c553df9988 + + true + Til + 1030 + 25c0c046-7a18-4ddc-8965-25a571aa49dc @@ -584169,6 +646029,13 @@ To check whether the version is latest version or not 1033 + + 47cd61db-0fd3-4545-b35f-fc1cbab1d94f + + true + For at kontrollere, om versionen er den seneste version eller ej + 1030 + 39c93ab4-9606-49c2-a7e6-472bf0de7251 @@ -584187,6 +646054,13 @@ Latest Version 1033 + + 561e0d5d-b497-4eb7-8d13-ecbdcf2a4c3e + + true + Seneste version + 1030 + a7151d38-7d4b-4606-a4b1-afa32373729d @@ -584228,6 +646102,13 @@ No 1033 + + 095cdd09-85ac-4022-9504-a0f00b3a7a58 + + true + Nej + 1030 + 439ac813-4327-4bb7-836c-d3d28c4712d6 @@ -584261,6 +646142,13 @@ Yes 1033 + + b5f35e42-ab2e-4175-867d-4e905ebb4f23 + + true + Ja + 1030 + 52f60f69-a615-49cb-b13b-e51bf406d8ce @@ -584408,6 +646296,13 @@ Category of the process stage. 1033 + + 87d79c61-71ab-47cf-aa0b-2824757faea7 + + true + Procesfasens kategori. + 1030 + 8fc0f765-a4ee-4c92-b6b6-240cde76bb0b @@ -584426,6 +646321,13 @@ Stage Category 1033 + + dd71f9a6-cd57-4ddc-a158-3b6c97d7f110 + + true + Fasekategori + 1030 + ab233117-bf6c-4749-85c0-76d10d8fecbb @@ -584468,6 +646370,13 @@ Qualify 1033 + + 0e4f21b3-a20c-456a-b42b-abf1ec636a30 + + true + Kvalificer + 1030 + cbc0365f-0149-4be0-af95-8cf968441309 @@ -584501,6 +646410,13 @@ Develop 1033 + + ae4f73b8-c134-4225-9590-86d171c1f0fb + + true + Opstil tilbud + 1030 + 04287e0f-3511-4931-abdd-df4f9d602057 @@ -584534,6 +646450,13 @@ Propose 1033 + + faff87b9-22ed-47a4-b6d3-cf9cfa54d0f5 + + true + Afgiv tilbud + 1030 + 5d5881e8-0823-41f2-9b23-1caa4582a037 @@ -584567,6 +646490,13 @@ Close 1033 + + 57d369af-d608-46bc-b512-e2cbb1183a0d + + true + Luk + 1030 + 9c62f645-64a7-47a9-94e2-d7f33c1d7a63 @@ -584600,6 +646530,13 @@ Identify 1033 + + dfe0dcac-383b-44bd-a55c-2dbbd74303fb + + true + Identificer + 1030 + b91ed572-738a-441a-8d52-6f8e32657354 @@ -584633,6 +646570,13 @@ Research 1033 + + e38dbeb5-1e00-44ef-b56c-02a3c4017ec9 + + true + Undersøgelser + 1030 + 553231da-bc60-4358-8a9c-7fc17c7707e2 @@ -584666,6 +646610,13 @@ Resolve 1033 + + 33ebf1c7-7315-4bb5-8acd-28e341a5dc46 + + true + Løs + 1030 + 2afa0962-3c08-4e54-90ef-3ebb90321832 @@ -584699,6 +646650,13 @@ Approval 1033 + + 9ba980f6-948e-4c3c-9d15-78a2db3654b9 + + true + Godkendelse + 1030 + 03144e21-9924-49a7-9121-5dc353319bbf @@ -584727,6 +646685,13 @@ 1033 + + f9bc37b9-f993-4789-a2c7-6ef09eb9b59e + + true + + 1030 + 60875ee6-c0ba-f011-bbd3-7c1e52365f30 @@ -584745,6 +646710,13 @@ Copilot Language 1033 + + ddc45946-6484-4796-9b99-a0a190af9c91 + + true + Copilotsprog + 1030 + 5f875ee6-c0ba-f011-bbd3-7c1e52365f30 @@ -584787,6 +646759,13 @@ English 1033 + + 62c8ab70-d897-4c9d-8624-389d79d4c924 + + true + Engelsk + 1030 + 6c1791cf-7db2-4cfe-9a5b-99d8a87b5753 @@ -584820,6 +646799,13 @@ Spanish 1033 + + b406e4ae-8702-4955-a70c-bc9484819a74 + + true + Spansk + 1030 + 50e71e6e-e13d-4050-8cd7-20787413d105 @@ -584853,6 +646839,13 @@ Portuguese (Brazilian) 1033 + + 5d01c2c0-268c-47ea-88aa-ab72ffa58436 + + true + Portugisisk (Brasilien) + 1030 + b654da73-0574-4d63-b8f9-627dddb4bd7e @@ -584886,6 +646879,13 @@ French 1033 + + fcb5bf32-700c-41dc-997d-414e88a75b4f + + true + Fransk + 1030 + 477243d5-0b1d-48d8-8731-a71d442a028a @@ -584919,6 +646919,13 @@ Dutch 1033 + + f34e9d6c-515d-43d9-b0fa-e7da3f3898f5 + + true + Hollandsk + 1030 + b17a585e-494f-40d6-8c99-f89bf857ec7c @@ -584952,6 +646959,13 @@ Norwegian 1033 + + d933b25c-2949-4d61-a3c6-e63444fc98c7 + + true + Norsk + 1030 + e08e70b2-53a7-4ba0-8819-afecc46bb6d5 @@ -584985,6 +646999,13 @@ Danish 1033 + + 1040efa8-8053-4fd1-ab9d-0bbb10296cc6 + + true + Dansk + 1030 + d530920a-b5f7-4918-9dbf-724d73d092c5 @@ -585018,6 +647039,13 @@ Swedish 1033 + + 6470d92f-c550-4571-bdc0-23dcca3ad164 + + true + Svensk + 1030 + 76710390-632f-4cea-869a-99ff637ef6e3 @@ -585051,6 +647079,13 @@ Italian 1033 + + 7d5d7fa4-a4cf-46dd-810d-485d8a548f8c + + true + Italiensk + 1030 + b5dbbba3-22e6-47f4-b037-c8e058ac09d6 @@ -585084,6 +647119,13 @@ German 1033 + + 57cdb0b0-c6f6-4f8b-ba4e-967bdc68ff77 + + true + Tysk + 1030 + 98d0a220-5822-454c-b4d1-8038bd4523f3 @@ -585117,6 +647159,13 @@ Chinese (Simplified) 1033 + + 2e9d42f5-59e3-457d-a412-06de8cc15636 + + true + Kinesisk (forenklet) + 1030 + 5097aeec-538f-4f35-b8fc-ba421ff9edb9 @@ -585150,6 +647199,13 @@ Chinese (Traditional) 1033 + + 06d75e50-c600-4de1-ae41-a1ef4fc0e411 + + true + Kinesisk (traditionelt) + 1030 + 1f21b794-fc31-4360-b82e-998d932376f0 @@ -585183,6 +647239,13 @@ Arabic 1033 + + 933cb8ef-a5a3-4be0-92de-6632428ac01f + + true + Arabisk + 1030 + 4037e8af-b8a0-49a0-aaea-8b7f366cb6e0 @@ -585216,6 +647279,13 @@ Japanese 1033 + + 52d138e3-29da-4823-a922-85d4d329040a + + true + Japansk + 1030 + 58c34df0-758f-4ce6-a0bf-1216a2a01275 @@ -585249,6 +647319,13 @@ Korean 1033 + + d5681a60-8b7d-4e34-9b32-d9660065f3d7 + + true + Koreansk + 1030 + 8bb6c23c-5d2b-43aa-bbe5-7c3aed327e23 @@ -585282,6 +647359,13 @@ Hindi 1033 + + 7871f1f2-1305-4558-95d0-e1ce5987ab46 + + true + Hindi + 1030 + 8dd553dd-8eab-4375-ba7a-b6932cf1e047 @@ -585315,6 +647399,13 @@ Indonesian 1033 + + 5f7e9c3d-46f7-4a5b-ae75-cc984e3fed73 + + true + Indonesisk + 1030 + 65942149-92c5-40d1-8ac1-20bc1bbd6f36 @@ -585348,6 +647439,13 @@ Russian 1033 + + 6909cc83-4134-4e53-af65-a9cd1f0b6c8c + + true + Russisk + 1030 + 3ceaef20-3254-4548-96f9-269adfc03997 @@ -585381,6 +647479,13 @@ Polish 1033 + + 7a58774f-c71e-40cf-a491-1c6c703b338c + + true + Polsk + 1030 + 41558c39-73bc-4a32-90c4-cf2f9aa9770c @@ -585414,6 +647519,13 @@ Turkish 1033 + + 3eb11528-dc4e-4bb9-b029-a6b1581006ea + + true + Tyrkisk + 1030 + 52b610b2-5ed5-41a8-ad4a-767381d37d2b @@ -585447,6 +647559,13 @@ Thai 1033 + + eca683db-7a00-4982-973d-084b0af45f60 + + true + Thai + 1030 + 9aaec74b-119c-43f2-8723-2dd6b5306a1e @@ -585480,6 +647599,13 @@ Finnish 1033 + + 7bba51ea-45af-4e5f-aba4-fc1a6a770eab + + true + Finsk + 1030 + e3db7f01-eb47-422d-841e-f367eaca3553 @@ -585513,6 +647639,13 @@ Greek 1033 + + 66810599-01e5-4914-becb-c0ee5756d5a0 + + true + Græsk + 1030 + ed8bd389-dc53-4e82-a722-757cd59618c5 @@ -585546,6 +647679,13 @@ Czech 1033 + + 411199fb-c828-41b4-8c32-248d4678ccd6 + + true + Tjekkisk + 1030 + 4e7346c7-116c-4bbc-a3a8-d372aacb2fe0 @@ -585579,6 +647719,13 @@ English (United Kingdom) 1033 + + c074c163-a3ed-43fa-8aa1-027c489a148b + + true + Engelsk (Storbritannien) + 1030 + 535ab094-3dc3-49ad-ab4b-2546267d8725 @@ -585612,6 +647759,13 @@ French (Canada) 1033 + + 48a6ef48-1ed3-410a-ba1b-acdcffce5285 + + true + Fransk (Canada) + 1030 + 15692570-a20f-4711-9158-c1f97e95e0c1 @@ -585645,6 +647799,13 @@ Spanish (United States) 1033 + + 9c249c93-de51-4de0-9947-537d30533d25 + + true + Spansk (USA) + 1030 + 4b8218da-baf0-4615-b9df-e8820a5ed6fd @@ -585678,6 +647839,13 @@ English (Australia) 1033 + + 7b6eef93-0488-4305-8575-f569a46fa0ba + + true + Engelsk (Australien) + 1030 + e525dcba-3397-4d53-899d-19f7f6ec2b47 @@ -585711,6 +647879,13 @@ Hebrew 1033 + + fcceb4ed-0bce-4024-8898-4ef64fec5b45 + + true + Hebraisk + 1030 + 8082121f-1ae9-40d7-accc-a5d7f7ba5ef4 @@ -585744,6 +647919,13 @@ Portuguese (Portugal) 1033 + + e4bb5c0b-fd0d-4237-9a01-d25b77c44033 + + true + Portugisisk (Portugal) + 1030 + aa45983d-e5b9-411f-bc18-3e84df749710 @@ -585757,6 +647939,766 @@ 2070 + + + + + + + + + + false + true + + + + 2d585a91-77e4-4374-aae7-cd2af00baa95 + + true + Spanish (Puerto Rico) + 1033 + + + a3cabec0-40fd-4257-bee6-07eeb4a51952 + + true + Spansk (Puerto Rico) + 1030 + + + + 2d585a91-77e4-4374-aae7-cd2af00baa95 + + true + Spanish (Puerto Rico) + 1033 + + + + 20490 + + + + + + + + + + + + false + true + + + + b541ad44-0512-49c8-8925-5449341e38cd + + true + Hungarian + 1033 + + + 4ec6d912-35d2-4741-9b93-62567a902a8e + + true + Ungarsk + 1030 + + + + b541ad44-0512-49c8-8925-5449341e38cd + + true + Hungarian + 1033 + + + + 1038 + + + + + + + + + + + + false + true + + + + 6e15eeb4-7eb4-4aec-b20f-d814ef459450 + + true + Ukrainian + 1033 + + + 2d758f0b-d6eb-40c4-b9d3-96204b27b8e1 + + true + Ukrainsk + 1030 + + + + 6e15eeb4-7eb4-4aec-b20f-d814ef459450 + + true + Ukrainian + 1033 + + + + 1058 + + + + + + + + + + + + false + true + + + + dabbb292-09e2-4523-939d-4889848d7107 + + true + Lithuanian + 1033 + + + b6a60c91-9d52-45fc-a7f7-9f7d86c3604d + + true + Litauisk + 1030 + + + + dabbb292-09e2-4523-939d-4889848d7107 + + true + Lithuanian + 1033 + + + + 1063 + + + + + + + + + + + + false + true + + + + 8b2c7ab7-5ad0-4026-9b6c-a46e8f4f3e12 + + true + Romanian + 1033 + + + 4bfaa288-d8c2-4573-9519-a85ac148101a + + true + Rumænsk + 1030 + + + + 8b2c7ab7-5ad0-4026-9b6c-a46e8f4f3e12 + + true + Romanian + 1033 + + + + 1048 + + + + + + + + + + + + false + true + + + + 09fdfdb9-54a7-4cc6-8bfe-8ad5e8c2b106 + + true + Latvian + 1033 + + + be0a2677-6da3-48ad-964f-f2fd7abc578b + + true + Lettisk + 1030 + + + + 09fdfdb9-54a7-4cc6-8bfe-8ad5e8c2b106 + + true + Latvian + 1033 + + + + 1062 + + + + + + + + + + + + false + true + + + + 41ff470c-2405-4756-8429-75b1cafc06c9 + + true + Estonian + 1033 + + + 589407d6-1c88-4c5d-9e04-c3983fe4825d + + true + Estisk + 1030 + + + + 41ff470c-2405-4756-8429-75b1cafc06c9 + + true + Estonian + 1033 + + + + 1061 + + + + + + + + + + + + false + true + + + + 8d94cb97-c21e-4a35-b4ff-277300b396f1 + + true + Slovenian + 1033 + + + 238f6438-192c-4d27-b503-2016fe9a4688 + + true + Slovensk + 1030 + + + + 8d94cb97-c21e-4a35-b4ff-277300b396f1 + + true + Slovenian + 1033 + + + + 1060 + + + + + + + + + + + + false + true + + + + ad5cb2e6-426d-4e5e-be39-bebb179d7ccd + + true + Vietnamese + 1033 + + + 72e30cc9-a1da-4ca2-95aa-a5bdce1a3ae5 + + true + Vietnamesisk + 1030 + + + + ad5cb2e6-426d-4e5e-be39-bebb179d7ccd + + true + Vietnamese + 1033 + + + + 1066 + + + + + + + + + + + + false + true + + + + 68c5a767-4d7d-4cdd-ba81-3fb2a26a76e0 + + true + Croatian + 1033 + + + 206638f6-8b84-4371-a049-906c6976ec05 + + true + Kroatisk + 1030 + + + + 68c5a767-4d7d-4cdd-ba81-3fb2a26a76e0 + + true + Croatian + 1033 + + + + 1050 + + + + + + + + + + + + false + true + + + + 868f8ac0-676a-4327-800c-540cc113ae67 + + true + Serbian (Latin) + 1033 + + + ad7d54a6-d2d0-46b9-bfcb-87ba6b476e8d + + true + Serbisk (latinsk) + 1030 + + + + 868f8ac0-676a-4327-800c-540cc113ae67 + + true + Serbian (Latin) + 1033 + + + + 2074 + + + + + + + + + + + + false + true + + + + 7c14098a-af12-4fd3-a74d-19fd66948fdd + + true + Bulgarian + 1033 + + + 8c9a2b3c-9b48-4029-bd71-e8bf37839f7a + + true + Bulgarsk + 1030 + + + + 7c14098a-af12-4fd3-a74d-19fd66948fdd + + true + Bulgarian + 1033 + + + + 1026 + + + + + + + + + + + + false + true + + + + 3d69ec96-87a7-418d-9793-084688577f23 + + true + Slovak + 1033 + + + 2457ad95-cb2d-4c4a-a1cc-6ea97cf6ee5d + + true + Slovakisk + 1030 + + + + 3d69ec96-87a7-418d-9793-084688577f23 + + true + Slovak + 1033 + + + + 1051 + + + + + + + + + + + + false + true + + + + 7c7f25b6-41b8-4e31-a062-f6656406f365 + + true + Catalan + 1033 + + + 1381efdd-a87d-4051-bafb-a1a694f3daa1 + + true + Catalansk + 1030 + + + + 7c7f25b6-41b8-4e31-a062-f6656406f365 + + true + Catalan + 1033 + + + + 1027 + + + + + + + + + + + + false + true + + + + c2274fad-c299-4f97-bd70-b4f673358244 + + true + Serbian (Cyrillic) + 1033 + + + a16a348e-9929-474d-a446-7d85abfc003b + + true + Serbisk (kyrillisk) + 1030 + + + + c2274fad-c299-4f97-bd70-b4f673358244 + + true + Serbian (Cyrillic) + 1033 + + + + 3098 + + + + + + + + + + + + false + true + + + + 44622800-d2b1-487a-9f19-cf543f0f2bae + + true + Basque + 1033 + + + 32170cc7-07ee-4f94-b7d8-25bd75ef7c76 + + true + Baskisk + 1030 + + + + 44622800-d2b1-487a-9f19-cf543f0f2bae + + true + Basque + 1033 + + + + 1069 + + + + + + + + + + + + false + true + + + + 5def8c3d-a11d-4732-85c5-ca9516f1a20e + + true + Galician + 1033 + + + e8dc4a22-2d0f-4f36-9e6e-4927dc4fde71 + + true + Galicisk + 1030 + + + + 5def8c3d-a11d-4732-85c5-ca9516f1a20e + + true + Galician + 1033 + + + + 1110 + + + + + + + + + + + + false + true + + + + cf1832d4-9428-498a-9458-bc996fb2f0cf + + true + Kazakh + 1033 + + + a037a006-135f-4c15-8540-359946a56cbd + + true + Kasakhisk + 1030 + + + + cf1832d4-9428-498a-9458-bc996fb2f0cf + + true + Kazakh + 1033 + + + + 1087 + + + + + + + + + + + + false + true + + + + 6b194262-7c1c-4f88-97cd-6b0fd6d56db8 + + true + Malaysian + 1033 + + + 024a1a14-675e-47cd-ba46-9ca745c8090b + + true + Malaysisk + 1030 + + + + 6b194262-7c1c-4f88-97cd-6b0fd6d56db8 + + true + Malaysian + 1033 + + + + 1086 + + @@ -585968,6 +648910,13 @@ Choose when the appointment should end 1033 + + 9c2413f8-8845-4d21-a297-4ebe3480a129 + + true + Vælg, hvornår aftalen skal slutte + 1030 + 4f3c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -585986,6 +648935,13 @@ Range Ends 1033 + + 62ff361a-53eb-4ba6-8a48-c29c2e6ef97b + + true + Intervalafslutninger + 1030 + 4e3c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -586021,6 +648977,13 @@ The appointment series never ends 1033 + + 830eb88b-54e1-4f28-9dff-6f06e4319903 + + true + Aftaleserien slutter aldrig + 1030 + 7e14b3fd-0868-4ea5-a124-893056b1d628 @@ -586042,6 +649005,13 @@ Never 1033 + + dd3c84b7-d30a-4633-9bf2-6fa57f3c9c7f + + true + Aldrig + 1030 + daef4608-c0ad-4191-a93d-7c8c89f9d0e5 @@ -586068,6 +649038,13 @@ The appointment series ends after a specified number of occurences 1033 + + 6493d3be-94c9-45da-96ea-e4bd6a433776 + + true + Aftaleserien slutter efter et angivet antal forekomster + 1030 + a814bbfa-d38c-4a18-975b-ccbf38a99b80 @@ -586089,6 +649066,13 @@ By number of occurrences 1033 + + 78a8651b-fa4b-48fc-8a22-43f67987c3a1 + + true + Efter antal forekomster + 1030 + 5047792d-45bb-4eaf-a090-26902dc74974 @@ -586115,6 +649099,13 @@ The appointment series ends by a specied end date 1033 + + 3c37ed81-e5a9-4b96-9ae0-94090e4f9955 + + true + Aftaleserien slutter med en angivet slutdato + 1030 + 3f3d30ce-e020-4374-ad2b-a9621fd09499 @@ -586136,6 +649127,13 @@ By end date 1033 + + 967b49f0-8ea6-4098-9602-b6819fb9fbcc + + true + Efter slutdato + 1030 + ebbe8f67-a979-4dd1-99ee-daebf77af9bd @@ -586164,6 +649162,13 @@ Generic yes/no optionset for use across sharepoint dialogs 1033 + + b4131a88-7adc-423a-9fe6-578486294683 + + true + Generisk ja/nej optionset til brug i Sharepoint-dialogbokse + 1030 + 02946033-f1a8-4697-84e4-20703bc7cbb7 @@ -586182,6 +649187,13 @@ Sharepoint generic yes/no optionset 1033 + + c9790663-f3d3-4a2c-abb6-da19060d7e9e + + true + Sharepoint generisk ja/nej optionset + 1030 + ee8a7835-5c35-4bc4-9959-9e492280052a @@ -586223,6 +649235,13 @@ No 1033 + + 9e24d515-69f0-485c-977e-fa39c0c0d618 + + true + Nej + 1030 + 72bc53f5-65cf-4166-a544-b9880d35cdf6 @@ -586256,6 +649275,13 @@ Yes 1033 + + e4df4995-94a2-46be-9aad-8a76cd5272dc + + true + Ja + 1030 + 824bb02d-dc94-4639-9a64-2c6a87400285 @@ -586525,6 +649551,13 @@ Validation status reason of the record URL. 1033 + + e1df1ca7-8602-45bc-8fa9-e3af4e218e68 + + true + Årsag til valideringsstatus for postens URL-adresse. + 1030 + 99c89ffb-31c2-4f1c-8514-eee55815a0f1 @@ -586543,6 +649576,13 @@ Validation Status Reason 1033 + + 91376fbf-9523-4c0a-93fe-736d0d484205 + + true + Årsag til valideringsstatus + 1030 + d42b65ce-64ca-4cf3-b3a1-ebdcebf63c6c @@ -586585,6 +649625,13 @@ This record's URL has not been validated. 1033 + + b98c0470-a701-4755-a94c-e0384088e726 + + true + Denne posts URL-adresse er ikke valideret. + 1030 + 74dea35e-6aa4-4505-8416-69efdb7c6167 @@ -586618,6 +649665,13 @@ This record's URL is valid. 1033 + + 83d0ab31-3301-4d4c-8668-df70e74d59ab + + true + Postens URL-adresse er gyldig. + 1030 + 0244e093-672f-4c8a-82dc-005a2adba6b5 @@ -586651,6 +649705,13 @@ This record's URL is not valid. 1033 + + 60f6ac41-53dd-4773-9374-7c05a3831b5c + + true + Postens URL-adresse er ugyldig. + 1030 + 9c7e3f4b-650c-4bcd-be50-84a06421580b @@ -586684,6 +649745,13 @@ The URL schemes of Microsoft Dynamics 365 and SharePoint are different. 1033 + + ccb6e80f-27b0-4ed0-a94c-50370107a5a5 + + true + URL-skemaerne for Microsoft Dynamics 365 og SharePoint er forskellige. + 1030 + e94082d1-d1a2-4be9-940d-0cc9f06e2e49 @@ -586717,6 +649785,13 @@ The URL could not be accessed because of Internet Explorer security settings. 1033 + + 2cad177f-682c-4f72-9617-f86df0ed87d4 + + true + Der kunne ikke opnås adgang til URL-adressen på grund af sikkerhedsindstillinger i Internet Explorer. + 1030 + facb5af6-0068-433f-aa73-f04958918a8a @@ -586750,6 +649825,13 @@ Authentication failure. 1033 + + d0e1d7b1-f334-4930-aa58-12c257af1f8c + + true + Godkendelsen lykkedes ikke. + 1030 + 41e671f4-88bc-4532-8289-3dd400bb7f85 @@ -586783,6 +649865,13 @@ Invalid certificates. 1033 + + 18c5da62-6e8c-4801-b0e6-c547b00b3efe + + true + Ugyldige certifikater. + 1030 + f54e24d8-ed23-431e-84c9-357a7801d75d @@ -586811,6 +649900,13 @@ Specifies the month of the year valid for the recurrence pattern. 1033 + + 2b986d2e-582e-4697-b14d-ad7e01c0c60a + + true + Angiver den måned i året, der er gyldig for gentagelsesmønsteret. + 1030 + 6ea7ddf7-ac7d-470d-b39c-7d6c805e0071 @@ -586829,6 +649925,13 @@ MonthOfYear 1033 + + 4809dadd-32b6-4287-8eff-7271f6cf3ac1 + + true + Måned i året + 1030 + b1b9147a-115e-4c10-a924-0f9227a6d644 @@ -586871,6 +649974,13 @@ Invalid Month Of Year 1033 + + 2109e741-293b-4dcb-8d30-499b35584032 + + true + Ugyldig måned i året + 1030 + 59ba34d0-c00f-47d2-bd33-da59be5b25a7 @@ -586904,6 +650014,13 @@ January 1033 + + d48a0d85-f80e-4d1a-85b7-3de96a5d88c6 + + true + Januar + 1030 + 478a2992-f0ac-457c-b97f-391c34d70c81 @@ -586937,6 +650054,13 @@ February 1033 + + edbd8475-a658-4381-a62b-c6c7a15466a8 + + true + Februar + 1030 + 8ef9717a-15a2-45af-8db2-48cbcd65d87f @@ -586970,6 +650094,13 @@ March 1033 + + a36ac374-2f27-4d5e-95e9-01db371e471c + + true + Marts + 1030 + 71eefced-bd80-4c9b-9926-6e75cad0e357 @@ -587003,6 +650134,13 @@ April 1033 + + f515da5e-946b-4a37-89e5-c3baf8ddad93 + + true + April + 1030 + 282ac8d8-53dc-4489-904b-6f9516f3bb15 @@ -587036,6 +650174,13 @@ May 1033 + + 52aa25c1-a993-4423-b545-3eedec2577fb + + true + Maj + 1030 + 5b3de10f-1e26-4974-a4f2-0bacbe76bd68 @@ -587069,6 +650214,13 @@ June 1033 + + 5e95268d-146b-431f-9b53-d2b6e59de68e + + true + Juni + 1030 + c8a29d60-46dc-4417-a3c5-f8f6a8fc2284 @@ -587102,6 +650254,13 @@ July 1033 + + 7f654372-8366-4d67-999a-8a1e4389ecf7 + + true + Juli + 1030 + 32d08d03-acd9-4530-95ff-604331f23321 @@ -587135,6 +650294,13 @@ August 1033 + + 4c360a28-18a8-4cdc-9a6c-af9ad33c5ccb + + true + August + 1030 + 6741b879-5867-40c4-87cf-22fc88f51538 @@ -587168,6 +650334,13 @@ September 1033 + + 1e472222-14d8-44ff-8c3d-d8d858bdb25a + + true + September + 1030 + 51bf8a11-4152-4ea3-997b-67145c2f41d5 @@ -587201,6 +650374,13 @@ October 1033 + + 86f66319-ac29-482f-97de-1cd763b7c22f + + true + Oktober + 1030 + 070934a3-e0ab-403c-9582-1e7d5dc63ecd @@ -587234,6 +650414,13 @@ November 1033 + + e171e668-7c84-4f32-8d60-b5c315202af4 + + true + November + 1030 + c431542d-b98d-45f8-a348-69c773b3824c @@ -587267,6 +650454,13 @@ December 1033 + + 7a69e5d6-8fb0-4bd4-80cb-69947b56c54b + + true + December + 1030 + 7103dcd5-9b4f-46a8-931e-4c21a127098c @@ -587295,6 +650489,13 @@ Options on Convert Activity Dialog. 1033 + + 3563dd7d-1ed4-4a9e-ac85-935d2ce58961 + + true + Indstillinger i dialogboksen Konvertér aktivitet. + 1030 + dfd6f3bd-2fba-4a22-be3b-719cb5611625 @@ -587313,6 +650514,13 @@ Convert Activity 1033 + + c3ba070d-ab5d-4e8f-9cd6-26e91454b4a7 + + true + Konvertér aktivitet + 1030 + c97503d5-2766-476a-8bb2-3a9695629387 @@ -587354,6 +650562,13 @@ No 1033 + + c3d710d9-c2d9-4587-9e84-8f63340c96d5 + + true + Nej + 1030 + 8b32bd67-04f8-4889-981a-d1d732a1491a @@ -587387,6 +650602,13 @@ Yes 1033 + + 5c56b221-f4ff-4576-9533-184b790716dd + + true + Ja + 1030 + f598a69d-a23f-4565-9865-742791337837 @@ -587413,6 +650635,13 @@ Shows the sync status. 1033 + + c717d2db-46f8-49cd-ab04-3c76e6668841 + + true + Viser synkroniseringsstatussen. + 1030 + 4d83b50a-ceba-f011-bbd3-7c1e52365f30 @@ -587431,6 +650660,13 @@ Sync Status 1033 + + ef8aa60a-00c8-4640-8d25-efd220a63d33 + + true + Synkroniseringsstatus + 1030 + 4c83b50a-ceba-f011-bbd3-7c1e52365f30 @@ -587473,6 +650709,13 @@ Not Enabled 1033 + + e7de3418-cb29-4942-b440-962aeadbc0de + + true + Ikke aktiveret + 1030 + c9a90414-42de-42de-aba9-38cbcb9701c6 @@ -587506,6 +650749,13 @@ Pending 1033 + + 358b3e22-5f48-4891-b4f5-ba22fc95191e + + true + Udestående + 1030 + 11c509b6-af26-4765-a264-644a93d0bd9f @@ -587539,6 +650789,13 @@ Enabled 1033 + + 30aba16f-2586-4fd1-b561-01fc42a50c46 + + true + Aktiveret + 1030 + 7ab10e6d-45ff-4ffa-a586-f9f7a850b17e @@ -587567,6 +650824,13 @@ How would you like to delete this series? 1033 + + 20c83f13-c5a9-46a5-b2f2-d0a10d0a1e01 + + true + Hvordan vil du slette denne serie? + 1030 + 3b3c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -587585,6 +650849,13 @@ Confirm delete appointment series 1033 + + ed8f457b-8264-4fc7-9097-2c5e20f4d6d0 + + true + Bekræft sletning af aftaleserie + 1030 + 3a3c437f-c8ba-f011-bbd3-7c1e52365f30 @@ -587620,6 +650891,13 @@ Delete all instances 1033 + + 481e4f42-e755-4371-b7ee-3c6ce7b558af + + true + Slet alle forekomster + 1030 + 4d86f4c4-f047-48b0-9474-c029a4c4cf8c @@ -587641,6 +650919,13 @@ All instances 1033 + + b22a948a-1bd6-4190-a1e1-efa1e7202bc7 + + true + Alle forekomster + 1030 + a55bf8af-5aae-493b-8fc4-d7a0804bcc2e @@ -587667,6 +650952,13 @@ Delete all series except the past appointments 1033 + + 321ca20c-6473-40ed-97a0-67243d394d14 + + true + Slet alle serier med undtagelse af de tidligere aftaler + 1030 + 08eaf201-c6c2-443b-a8f8-7be010cc7ca8 @@ -587688,6 +650980,13 @@ The series, leave past appointments 1033 + + 520fffa0-a6b9-4acd-ba6d-d1527c91d939 + + true + Serien, lad tidligere aftaler være + 1030 + 75c0faac-36ec-4c67-b0ea-14027abf1224 @@ -587716,6 +651015,13 @@ IsBaseCard 1033 + + 585e4272-4899-46b6-8e31-12b45ec8c926 + + true + IsBaseCard + 1030 + 2df9afef-d879-492b-b100-05c1a06bd957 @@ -587734,6 +651040,13 @@ IsBaseCard 1033 + + c4ac5e5a-9dd6-42f6-8d8a-e4f9d2cf3dd5 + + true + IsBaseCard + 1030 + 4e09282d-443e-4f0a-a82f-b5339ffe7d7b @@ -587775,6 +651088,13 @@ No 1033 + + 64861682-5aa8-4b65-85da-0129c4558016 + + true + Nej + 1030 + 1e9ededf-e4a9-4793-ac37-47c5306f4d40 @@ -587808,6 +651128,13 @@ Yes 1033 + + ed4b5abe-724a-4a0b-8522-fea9dc328b4b + + true + Ja + 1030 + 5d35480c-4015-462f-9e2e-61b4e019d4db @@ -587834,6 +651161,13 @@ 1033 + + e3215e82-f6af-435a-9ad5-7013fdac73ab + + true + + 1030 + 6a4fe3b2-f1ba-f011-bbd3-7c1e52365f30 @@ -587852,6 +651186,13 @@ Registration Status Supported Type 1033 + + 2ed25e8c-440e-4bc3-9f77-28efef509acd + + true + Understøttet type for registreringsstatus + 1030 + 694fe3b2-f1ba-f011-bbd3-7c1e52365f30 @@ -587887,6 +651228,13 @@ 1033 + + 99d7e059-9d0d-41ed-a21c-936f4c447416 + + true + + 1030 + 99b9d306-0760-4f60-8a72-59071be96dee @@ -587908,6 +651256,13 @@ NotRegistered 1033 + + acf37e7c-5c78-4cf9-aa05-6d036620d504 + + true + Ikke-registreret + 1030 + 7317cd93-74ef-4836-92c1-bb60068d5b02 @@ -587934,6 +651289,13 @@ 1033 + + a25e135f-b843-4973-9e8a-128fd641267c + + true + + 1030 + f160ff14-7f81-4c87-ac22-c287cb2070d3 @@ -587955,6 +651317,13 @@ Registered 1033 + + e14cc829-d88f-4523-a8d3-6485e9879f96 + + true + Registreret + 1030 + 75e24c2d-60b1-48a3-bff2-4e7b82395baf @@ -587981,6 +651350,13 @@ 1033 + + b72d025b-a1c6-489e-8f9e-fe5995326df0 + + true + + 1030 + 1c44aaca-1ab1-4bf9-ac28-7b34229eae14 @@ -588002,6 +651378,13 @@ InProgress 1033 + + ac89a5eb-2547-4a37-8134-24ffd58e9cdf + + true + Igangværende + 1030 + 5f251257-f97a-41b9-b90b-aa65ffb8cb41 @@ -588028,6 +651411,13 @@ 1033 + + df2f4d2a-8caa-43ab-b631-ccff5b4e9e44 + + true + + 1030 + 89e0f554-9c47-4033-a3ea-3cfae9c58ffd @@ -588049,6 +651439,13 @@ Failed 1033 + + 445d60cd-5952-4f0e-974c-3df92cae396e + + true + Mislykkedes + 1030 + 8add330a-e9a3-463b-a8df-4074d83d3c4b @@ -588077,6 +651474,13 @@ 1033 + + bc7882c0-80f0-4419-b815-6e7e337dedcf + + true + + 1030 + 1ff4cb42-caba-f011-bbd3-7c1e52365f30 @@ -588095,6 +651499,13 @@ Number of Search Results Options 1033 + + 77d94c20-e56a-45b6-ad52-92c112e1b9b8 + + true + Indstillinger for antal søgeresultater + 1030 + 1ef4cb42-caba-f011-bbd3-7c1e52365f30 @@ -588130,6 +651541,13 @@ 1033 + + 4527a055-d038-4cd5-b475-cf24482e3ba4 + + true + + 1030 + 5020b5f7-a240-4513-bc49-444814e5e4b6 @@ -588151,6 +651569,13 @@ 10 1033 + + da2f8ce4-d0aa-42ec-b732-c34885db6c25 + + true + 10 + 1030 + 39b43cd8-b8fc-4e23-94e0-2dc3bac8b6b0 @@ -588177,6 +651602,13 @@ 1033 + + 4a9bafbf-2c67-492a-8534-63c5a0399085 + + true + + 1030 + 593cbd83-9fe6-43dd-90b0-6c29b0d9a8a7 @@ -588198,6 +651630,13 @@ 15 1033 + + 0a30236d-37ed-498a-ad26-ca77e809a3ba + + true + 15 + 1030 + 9eaad0ed-0d2e-470d-9035-539a763a3b39 @@ -588224,6 +651663,13 @@ 1033 + + 622e9e23-70db-4fd9-a8d3-e2a21293f627 + + true + + 1030 + cc01ac2b-1ddf-4dd8-bbfc-3928aac2f5aa @@ -588245,6 +651691,13 @@ 20 1033 + + 7c82274a-ab03-4f0e-abff-2c225b7180d2 + + true + 20 + 1030 + 7caacbbd-61cd-4fac-9543-651ac5e01de7 @@ -588271,6 +651724,13 @@ 1033 + + 92011dd7-974f-451b-ae8b-892858f7885b + + true + + 1030 + e5e713fd-aea8-468e-9fee-0e4ed963ac10 @@ -588292,6 +651752,13 @@ 25 1033 + + bc1ac71f-a73c-4919-b586-e5e2f8288820 + + true + 25 + 1030 + 5efd9b54-d280-4830-bb0f-694b52294954 @@ -588318,6 +651785,13 @@ 1033 + + f9190ed8-77ea-479f-812c-2cd601fcc72e + + true + + 1030 + c5e57dc5-c5b4-4e51-a981-a1bd6f843253 @@ -588339,6 +651813,13 @@ 30 1033 + + 86adf45d-f03d-4b4d-ab34-17384b7623e0 + + true + 30 + 1030 + 6ece177e-5b0b-43bb-9fb8-5fd4e720bd61 @@ -588365,6 +651846,13 @@ 1033 + + 22b0317e-70f7-4f12-a410-a68d58e35dff + + true + + 1030 + 8dded448-dc79-4049-b060-efc502adb35f @@ -588386,6 +651874,13 @@ 40 1033 + + 2c92291f-9fe3-4a8d-96cd-7bb1dc052d97 + + true + 40 + 1030 + f625a1ce-3686-4129-b669-c71a70e6212b @@ -588412,6 +651907,13 @@ 1033 + + 2129309e-ee97-4f6e-8b9b-9654b5026565 + + true + + 1030 + 830004dc-50c6-4fb0-be5b-63c1d35bf9cd @@ -588433,6 +651935,13 @@ 50 1033 + + 947be904-951a-4e9a-bc30-8413ec591ba6 + + true + 50 + 1030 + ae6291c7-b659-418b-992e-1627707c8128 @@ -588461,6 +651970,13 @@ 1033 + + 08b56449-9c30-4b13-bb99-4d337a7d254c + + true + + 1030 + 7f4fe3b2-f1ba-f011-bbd3-7c1e52365f30 @@ -588479,6 +651995,13 @@ Search Entity 1033 + + a3680fe3-3101-40da-9458-0b409cd46711 + + true + Søg efter objekt + 1030 + 7e4fe3b2-f1ba-f011-bbd3-7c1e52365f30 @@ -588514,6 +652037,13 @@ 1033 + + 08749b97-40dc-44fb-80db-8c6b290d0374 + + true + + 1030 + 078bacb5-9979-40e1-ba19-c3c0eff50412 @@ -588535,6 +652065,13 @@ Entity1 1033 + + af9a85d6-63ef-4995-a494-06f0a556bc0d + + true + Objekt1 + 1030 + a2e0cff6-e5a4-4547-ba06-748cae48d200 @@ -588561,6 +652098,13 @@ 1033 + + 5b72b1be-8f6c-46d8-9933-411393434f4c + + true + + 1030 + 2c7688a4-52f2-4942-a005-13269d7f98c1 @@ -588582,6 +652126,13 @@ Entity2 1033 + + ac4e5b42-dae2-4db9-842d-bbfb70440fc2 + + true + Objekt2 + 1030 + f0b4b037-57b7-4884-8d6e-ebf03e624b2c @@ -588608,6 +652159,13 @@ 1033 + + 738e3103-a68e-4160-8430-93fd0df0349e + + true + + 1030 + a0dee098-5fc8-4b23-a29c-1588e7ddbca2 @@ -588629,6 +652187,13 @@ ReferencedEntity 1033 + + 93c491bb-18b0-4e3b-b78e-a262de40a9f9 + + true + ReferencedEntity + 1030 + f4198adb-a2ca-44f3-8678-f121acd58437 @@ -588661,6 +652226,13 @@ Sync Direction 1033 + + 52e8d013-017d-4ac9-8317-cac4c99850b2 + + true + Synkroniseringsretning + 1030 + a22048de-2004-4ad1-87f7-43f47691686c @@ -588703,6 +652275,13 @@ None 1033 + + ad79d079-efc6-4d09-b2a6-92516c058b0c + + true + Ingen + 1030 + 1298dd14-c0cc-43c5-a044-520d29f7de63 @@ -588736,6 +652315,13 @@ ToExchange 1033 + + e9fea848-17c8-475f-bf8f-b4f43340b1c7 + + true + ToExchange + 1030 + a5b60908-7a93-4a18-afad-9e5711f75386 @@ -588769,6 +652355,13 @@ ToCRM 1033 + + 6f82b732-d119-4348-965d-ebb1deabf221 + + true + ToCRM + 1030 + 4fffce3d-16f9-4e26-a247-3b6d054bf252 @@ -588802,6 +652395,13 @@ Bidirectional 1033 + + e62a9cf5-e7d5-459a-b0be-9b2d8f80463f + + true + Tovejs + 1030 + fbcbc310-2ddb-43ef-b938-0fedd12c7837 @@ -588818,390 +652418,6 @@ - - 9180158a-5c03-f111-8407-002248a347f8 - - - - - 9380158a-5c03-f111-8407-002248a347f8 - - false - Option set created solely for testing context generation using XrmContext. - 1033 - - - - 9380158a-5c03-f111-8407-002248a347f8 - - false - Option set created solely for testing context generation using XrmContext. - 1033 - - - - - - 9280158a-5c03-f111-8407-002248a347f8 - - false - - 1033 - - - - 9280158a-5c03-f111-8407-002248a347f8 - - false - - 1033 - - - - true - - true - iscustomizable - true - - true - false - ctx_xrmcontextoptions - Picklist - 1.0.0.0 - - - - - - - - - 18654ee8-359d-4420-9c8c-cb528882877e - - false - - 1033 - - - - 18654ee8-359d-4420-9c8c-cb528882877e - - false - - 1033 - - - - false - false - - - - c8b10ddd-0783-4bbc-9d62-912e6da20f07 - - false - \n - 1033 - - - - c8b10ddd-0783-4bbc-9d62-912e6da20f07 - - false - \n - 1033 - - - - 770790000 - - - - - - - - - - 3ca61820-a24b-4236-a019-b049273534b3 - - false - - 1033 - - - - 3ca61820-a24b-4236-a019-b049273534b3 - - false - - 1033 - - - - false - false - - - - c39cd5f0-d3ff-4b0a-aad9-8faa2b0cbe71 - - false - Tab - 1033 - - - - c39cd5f0-d3ff-4b0a-aad9-8faa2b0cbe71 - - false - Tab - 1033 - - - - 770790001 - - - - - - #36ff57 - - - - 83f626ff-ef3f-4703-96d9-e9fc958fae8e - - false - - 1033 - - - - 83f626ff-ef3f-4703-96d9-e9fc958fae8e - - false - - 1033 - - - - false - false - - - - aa4354a8-76e6-476c-b1a6-7bc3faff5469 - - false - ✔️ - 1033 - - - - aa4354a8-76e6-476c-b1a6-7bc3faff5469 - - false - ✔️ - 1033 - - - - 770790002 - - - - - - #ff0000 - - - - c869ecaa-ac89-4548-a0ab-b0f490ad8202 - - false - - 1033 - - - - c869ecaa-ac89-4548-a0ab-b0f490ad8202 - - false - - 1033 - - - - false - false - - - - 7f6de37a-bd90-4886-81ad-163044ee6460 - - false - ✖️ - 1033 - - - - 7f6de37a-bd90-4886-81ad-163044ee6460 - - false - ✖️ - 1033 - - - - 770790003 - - - - - - - - - - 3675d03b-82bf-4db5-9a4b-547380f0b133 - - false - - 1033 - - - - 3675d03b-82bf-4db5-9a4b-547380f0b133 - - false - - 1033 - - - - false - false - - - - 123172ee-3da4-4e95-acd3-e9c90881f785 - - false - 1 - 1033 - - - - 123172ee-3da4-4e95-acd3-e9c90881f785 - - false - 1 - 1033 - - - - 770790004 - - - - - - - - - - 6b528718-ca38-4f27-87e7-62ac444cecb8 - - false - - 1033 - - - - 6b528718-ca38-4f27-87e7-62ac444cecb8 - - false - - 1033 - - - - false - false - - - - 3923a9d3-0884-4dc4-9753-c8113de08b59 - - false - 1 - 1033 - - - - 3923a9d3-0884-4dc4-9753-c8113de08b59 - - false - 1 - 1033 - - - - 770790005 - - - - - - - - - - 7542cd89-7014-40cb-87db-48d6ffad2bde - - false - - 1033 - - - - 7542cd89-7014-40cb-87db-48d6ffad2bde - - false - - 1033 - - - - false - false - - - - 328121c0-1c49-4fc9-a472-72686b5acad9 - - false - $/£/€ - 1033 - - - - 328121c0-1c49-4fc9-a472-72686b5acad9 - - false - $/£/€ - 1033 - - - - 770790006 - - - - - @@ -589257,11 +652473,11 @@ modifiedon - 11/5/2025 11:48 PM + 11/6/2025 12:48 AM createdon - 11/5/2025 11:48 PM + 11/6/2025 12:48 AM isdisabled diff --git a/Tests.Integration/Metadata/SecurityRoles/SystemCustomizer.xml b/Tests.Integration/Metadata/SecurityRoles/SystemCustomizer.xml index 93485e2..ba701f7 100644 --- a/Tests.Integration/Metadata/SecurityRoles/SystemCustomizer.xml +++ b/Tests.Integration/Metadata/SecurityRoles/SystemCustomizer.xml @@ -2119,6 +2119,99 @@ + + msec_cleanup + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + sharedlinksetting @@ -2895,6 +2988,99 @@ + + mcpresourcecontent + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + entityanalyticsconfig @@ -7055,6 +7241,99 @@ + + flowtriggerinstance + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + fxexpression @@ -8176,6 +8455,99 @@ + + ctx_child + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + msdyn_aibdatasetrecord @@ -8269,6 +8641,77 @@ + + athenareconciliationinfo + + + AppendToAccess + + AppendToAccess + false + false + true + false + Global + + + + ReadAccess + + ReadAccess + false + false + true + false + Global + + + + CreateAccess + + CreateAccess + false + false + true + false + Global + + + + DeleteAccess + + DeleteAccess + false + false + true + false + Global + + + + WriteAccess + + WriteAccess + false + false + true + false + Global + + + + AppendAccess + + AppendAccess + false + false + true + false + Global + + + + mobileofflineprofile @@ -10080,34 +10523,12 @@ - aipluginauth + new_eventaggregator - ReadAccess - - ReadAccess - true - true - true - true - Global - - - - WriteAccess - - WriteAccess - true - true - true - true - Global - - - - CreateAccess + AssignAccess - CreateAccess + AssignAccess true true true @@ -10116,9 +10537,9 @@ - DeleteAccess + AppendToAccess - DeleteAccess + AppendToAccess true true true @@ -10127,9 +10548,9 @@ - AssignAccess + ShareAccess - AssignAccess + ShareAccess true true true @@ -10138,9 +10559,9 @@ - ShareAccess + ReadAccess - ShareAccess + ReadAccess true true true @@ -10160,9 +10581,9 @@ - AppendToAccess + DeleteAccess - AppendToAccess + DeleteAccess true true true @@ -10170,11 +10591,6 @@ Global - - - - githubappconfig - WriteAccess @@ -10197,6 +10613,11 @@ Global + + + + aipluginauth + ReadAccess @@ -10209,20 +10630,9 @@ - DeleteAccess - - DeleteAccess - true - true - true - true - Global - - - - ShareAccess + WriteAccess - ShareAccess + WriteAccess true true true @@ -10231,9 +10641,9 @@ - AppendAccess + CreateAccess - AppendAccess + CreateAccess true true true @@ -10242,9 +10652,9 @@ - AppendToAccess + DeleteAccess - AppendToAccess + DeleteAccess true true true @@ -10263,44 +10673,170 @@ Global - - - - msdyn_planattachment - - - ReadAccess - - ReadAccess - true - true - true - true - Global - - - - WriteAccess - - WriteAccess - true - true - true - true - Global - - - - AppendToAccess - - AppendToAccess - true - true - true - true - Global - - + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + + + githubappconfig + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + + + msdyn_planattachment + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + ShareAccess @@ -11386,6 +11922,99 @@ + + msdyn_bulkharvestrunlog + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + aipluginoperation @@ -12880,23 +13509,12 @@ - indexedtrait + new_gaurdianhealthchecks - ReadAccess - - ReadAccess - true - true - true - true - Global - - - - AppendToAccess + CreateAccess - AppendToAccess + CreateAccess true true true @@ -12916,9 +13534,9 @@ - CreateAccess + ReadAccess - CreateAccess + ReadAccess true true true @@ -12948,6 +13566,28 @@ Global + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + WriteAccess @@ -12961,6 +13601,181 @@ + + indexedtrait + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + + + new_eventaggregatorscans + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + mspp_pagetemplate @@ -14673,12 +15488,12 @@ - msdyn_interimupdateknowledgearticle + uxagentcomponentrevision - AppendAccess + AssignAccess - AppendAccess + AssignAccess true true true @@ -14698,9 +15513,9 @@ - WriteAccess + ReadAccess - WriteAccess + ReadAccess true true true @@ -14709,9 +15524,9 @@ - ShareAccess + DeleteAccess - ShareAccess + DeleteAccess true true true @@ -14720,9 +15535,9 @@ - DeleteAccess + CreateAccess - DeleteAccess + CreateAccess true true true @@ -14731,9 +15546,9 @@ - AssignAccess + WriteAccess - AssignAccess + WriteAccess true true true @@ -14742,9 +15557,9 @@ - CreateAccess + AppendAccess - CreateAccess + AppendAccess true true true @@ -14753,9 +15568,9 @@ - ReadAccess + ShareAccess - ReadAccess + ShareAccess true true true @@ -14766,19 +15581,8 @@ - msdyn_dmssyncstatus + msdyn_interimupdateknowledgearticle - - CreateAccess - - CreateAccess - true - true - true - true - Global - - AppendAccess @@ -14791,9 +15595,9 @@ - ShareAccess + AppendToAccess - ShareAccess + AppendToAccess true true true @@ -14813,20 +15617,124 @@ - ReadAccess - - ReadAccess - true - true - true - true - Global - - - - AppendToAccess + ShareAccess - AppendToAccess + ShareAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + + + msdyn_dmssyncstatus + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess true true true @@ -15000,6 +15908,99 @@ + + msdyn_harvestworkitem + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + ctx_pyramid @@ -15645,6 +16646,99 @@ + + ctx_parent + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + mspp_weblink @@ -16886,6 +17980,99 @@ + + agentconversationmessagefile + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + componentversiondatasource @@ -17487,6 +18674,99 @@ + + flowtrigger + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + msdyn_aiodlabel @@ -18930,43 +20210,71 @@ - territory + mcpresource + + WriteAccess + + WriteAccess + true + true + true + true + Global + + ReadAccess ReadAccess - false - false + true + true true - false + true Global - WriteAccess + ShareAccess - WriteAccess - false - false + ShareAccess + true + true true - false + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true Global - - - - savedquery - DeleteAccess DeleteAccess - false - false + true + true true - false + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true Global @@ -18974,10 +20282,75 @@ CreateAccess CreateAccess - false - false + true + true true - false + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + + + territory + + + ReadAccess + + ReadAccess + false + false + true + false + Global + + + + WriteAccess + + WriteAccess + false + false + true + false + Global + + + + + + savedquery + + + DeleteAccess + + DeleteAccess + false + false + true + false + Global + + + + CreateAccess + + CreateAccess + false + false + true + false Global @@ -21665,6 +23038,99 @@ + + computeruseagent + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + mspp_columnpermissionprofile @@ -22650,39 +24116,12 @@ - organization + msdyn_historicalcaseharvestrunlog ReadAccess ReadAccess - false - false - true - false - Global - - - - WriteAccess - - WriteAccess - false - false - true - false - Global - - - - - - mcpserver - - - AssignAccess - - AssignAccess true true true @@ -22691,9 +24130,9 @@ - AppendAccess + AppendToAccess - AppendAccess + AppendToAccess true true true @@ -22702,9 +24141,9 @@ - AppendToAccess + DeleteAccess - AppendToAccess + DeleteAccess true true true @@ -22713,9 +24152,9 @@ - DeleteAccess + WriteAccess - DeleteAccess + WriteAccess true true true @@ -22724,9 +24163,9 @@ - ReadAccess + AppendAccess - ReadAccess + AppendAccess true true true @@ -22735,9 +24174,9 @@ - WriteAccess + AssignAccess - WriteAccess + AssignAccess true true true @@ -22770,19 +24209,8 @@ - mspp_webformmetadata + organization - - DeleteAccess - - DeleteAccess - false - false - true - false - Global - - ReadAccess @@ -22805,48 +24233,15 @@ Global - - AppendAccess - - AppendAccess - false - false - true - false - Global - - - - CreateAccess - - CreateAccess - false - false - true - false - Global - - - - AppendToAccess - - AppendToAccess - false - false - true - false - Global - - - toolinggatewaymcpserver + mcpserver - CreateAccess + AssignAccess - CreateAccess + AssignAccess true true true @@ -22855,9 +24250,9 @@ - AppendToAccess + AppendAccess - AppendToAccess + AppendAccess true true true @@ -22866,9 +24261,9 @@ - ShareAccess + AppendToAccess - ShareAccess + AppendToAccess true true true @@ -22877,9 +24272,9 @@ - AppendAccess + DeleteAccess - AppendAccess + DeleteAccess true true true @@ -22888,9 +24283,9 @@ - DeleteAccess + ReadAccess - DeleteAccess + ReadAccess true true true @@ -22910,9 +24305,9 @@ - ReadAccess + CreateAccess - ReadAccess + CreateAccess true true true @@ -22921,9 +24316,9 @@ - AssignAccess + ShareAccess - AssignAccess + ShareAccess true true true @@ -22934,7 +24329,7 @@ - searchresultscache + mspp_webformmetadata DeleteAccess @@ -22948,9 +24343,9 @@ - AppendToAccess + ReadAccess - AppendToAccess + ReadAccess false false true @@ -22992,9 +24387,9 @@ - ReadAccess + AppendToAccess - ReadAccess + AppendToAccess false false true @@ -23005,12 +24400,12 @@ - msdyn_pmrecording + toolinggatewaymcpserver - WriteAccess + CreateAccess - WriteAccess + CreateAccess true true true @@ -23019,9 +24414,9 @@ - AssignAccess + AppendToAccess - AssignAccess + AppendToAccess true true true @@ -23030,9 +24425,9 @@ - ReadAccess + ShareAccess - ReadAccess + ShareAccess true true true @@ -23041,9 +24436,9 @@ - ShareAccess + AppendAccess - ShareAccess + AppendAccess true true true @@ -23052,9 +24447,9 @@ - CreateAccess + DeleteAccess - CreateAccess + DeleteAccess true true true @@ -23063,9 +24458,9 @@ - AppendToAccess + WriteAccess - AppendToAccess + WriteAccess true true true @@ -23074,9 +24469,9 @@ - AppendAccess + ReadAccess - AppendAccess + ReadAccess true true true @@ -23085,9 +24480,9 @@ - DeleteAccess + AssignAccess - DeleteAccess + AssignAccess true true true @@ -23098,23 +24493,12 @@ - msdyn_solutioncomponentsummary + searchresultscache - AppendToAccess - - AppendToAccess - false - false - true - false - Global - - - - ReadAccess + DeleteAccess - ReadAccess + DeleteAccess false false true @@ -23123,9 +24507,9 @@ - AppendAccess + AppendToAccess - AppendAccess + AppendToAccess false false true @@ -23133,11 +24517,6 @@ Global - - - - msdyn_workflowactionstatus - WriteAccess @@ -23149,17 +24528,6 @@ Global - - CreateAccess - - CreateAccess - false - false - true - false - Global - - AppendAccess @@ -23172,9 +24540,9 @@ - AppendToAccess + CreateAccess - AppendToAccess + CreateAccess false false true @@ -23193,26 +24561,15 @@ Global - - DeleteAccess - - DeleteAccess - false - false - true - false - Global - - - report + msdyn_pmrecording - CreateAccess + WriteAccess - CreateAccess + WriteAccess true true true @@ -23221,9 +24578,9 @@ - AppendToAccess + AssignAccess - AppendToAccess + AssignAccess true true true @@ -23232,9 +24589,9 @@ - WriteAccess + ReadAccess - WriteAccess + ReadAccess true true true @@ -23254,9 +24611,9 @@ - DeleteAccess + CreateAccess - DeleteAccess + CreateAccess true true true @@ -23265,9 +24622,9 @@ - AppendAccess + AppendToAccess - AppendAccess + AppendToAccess true true true @@ -23276,9 +24633,9 @@ - AssignAccess + AppendAccess - AssignAccess + AppendAccess true true true @@ -23287,9 +24644,9 @@ - ReadAccess + DeleteAccess - ReadAccess + DeleteAccess true true true @@ -23300,12 +24657,12 @@ - approvalprocess + agentconversationmessage - ShareAccess + WriteAccess - ShareAccess + WriteAccess true true true @@ -23314,9 +24671,9 @@ - ReadAccess + AppendAccess - ReadAccess + AppendAccess true true true @@ -23325,9 +24682,9 @@ - DeleteAccess + ReadAccess - DeleteAccess + ReadAccess true true true @@ -23336,9 +24693,9 @@ - CreateAccess + ShareAccess - CreateAccess + ShareAccess true true true @@ -23347,9 +24704,9 @@ - AppendAccess + AssignAccess - AppendAccess + AssignAccess true true true @@ -23358,9 +24715,9 @@ - AssignAccess + CreateAccess - AssignAccess + CreateAccess true true true @@ -23380,9 +24737,9 @@ - WriteAccess + DeleteAccess - WriteAccess + DeleteAccess true true true @@ -23393,71 +24750,76 @@ - msdyn_knowledgeassetconfiguration + msdyn_solutioncomponentsummary - AppendAccess + AppendToAccess - AppendAccess - true - true + AppendToAccess + false + false true - true + false Global - CreateAccess + ReadAccess - CreateAccess - true - true + ReadAccess + false + false true - true + false Global - WriteAccess + AppendAccess - WriteAccess - true - true + AppendAccess + false + false true - true + false Global + + + + msdyn_workflowactionstatus + - DeleteAccess + WriteAccess - DeleteAccess - true - true + WriteAccess + false + false true - true + false Global - AssignAccess + CreateAccess - AssignAccess - true - true + CreateAccess + false + false true - true + false Global - ShareAccess + AppendAccess - ShareAccess - true - true + AppendAccess + false + false true - true + false Global @@ -23465,10 +24827,10 @@ AppendToAccess AppendToAccess - true - true + false + false true - true + false Global @@ -23476,17 +24838,28 @@ ReadAccess ReadAccess - true - true + false + false true - true + false + Global + + + + DeleteAccess + + DeleteAccess + false + false + true + false Global - traitregistration + report CreateAccess @@ -23522,9 +24895,9 @@ - ReadAccess + ShareAccess - ReadAccess + ShareAccess true true true @@ -23533,9 +24906,9 @@ - AssignAccess + DeleteAccess - AssignAccess + DeleteAccess true true true @@ -23544,9 +24917,9 @@ - DeleteAccess + AppendAccess - DeleteAccess + AppendAccess true true true @@ -23555,9 +24928,9 @@ - AppendAccess + AssignAccess - AppendAccess + AssignAccess true true true @@ -23566,9 +24939,9 @@ - ShareAccess + ReadAccess - ShareAccess + ReadAccess true true true @@ -23579,12 +24952,12 @@ - reconciliationentityinfo + approvalprocess - AppendAccess + ShareAccess - AppendAccess + ShareAccess true true true @@ -23593,9 +24966,9 @@ - DeleteAccess + ReadAccess - DeleteAccess + ReadAccess true true true @@ -23604,9 +24977,9 @@ - AssignAccess + DeleteAccess - AssignAccess + DeleteAccess true true true @@ -23615,9 +24988,9 @@ - AppendToAccess + CreateAccess - AppendToAccess + CreateAccess true true true @@ -23626,9 +24999,9 @@ - CreateAccess + AppendAccess - CreateAccess + AppendAccess true true true @@ -23637,9 +25010,9 @@ - ShareAccess + AssignAccess - ShareAccess + AssignAccess true true true @@ -23648,9 +25021,288 @@ - ReadAccess + AppendToAccess - ReadAccess + AppendToAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + + + msdyn_knowledgeassetconfiguration + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + + + traitregistration + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + + + reconciliationentityinfo + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess true true true @@ -24994,6 +26646,99 @@ + + msdyn_knowledgeharvestplan + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + organizationdatasyncsubscriptionfnotable @@ -26225,30 +27970,8 @@ - powerbidatasetapdx + cpr_cprsubrun - - ReadAccess - - ReadAccess - true - true - true - true - Global - - - - AppendToAccess - - AppendToAccess - true - true - true - true - Global - - ShareAccess @@ -26260,148 +27983,356 @@ Global - - AssignAccess - - AssignAccess - true - true - true - true - Global - - - - WriteAccess - - WriteAccess - true - true - true - true - Global - - - - CreateAccess - - CreateAccess - true - true - true - true - Global - - - - AppendAccess - - AppendAccess - true - true - true - true - Global - - - - DeleteAccess - - DeleteAccess - true - true - true - true - Global - - - - - - appactionrule - - - AppendAccess - - AppendAccess - false - false - true - false - Global - - - - CreateAccess - - CreateAccess - false - false - true - false - Global - - - - ReadAccess - - ReadAccess - false - false - true - false - Global - - - - DeleteAccess - - DeleteAccess - false - false - true - false - Global - - - - AppendToAccess - - AppendToAccess - false - false - true - false - Global - - - - WriteAccess - - WriteAccess - false - false - true - false - Global - - - - - - approvalstageintelligent - - - CreateAccess - - CreateAccess - true - true - true - true - Global - - + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + + + powerbidatasetapdx + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + + + appactionrule + + + AppendAccess + + AppendAccess + false + false + true + false + Global + + + + CreateAccess + + CreateAccess + false + false + true + false + Global + + + + ReadAccess + + ReadAccess + false + false + true + false + Global + + + + DeleteAccess + + DeleteAccess + false + false + true + false + Global + + + + AppendToAccess + + AppendToAccess + false + false + true + false + Global + + + + WriteAccess + + WriteAccess + false + false + true + false + Global + + + + + + mcpprompt + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + + + approvalstageintelligent + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + AppendAccess @@ -26552,6 +28483,99 @@ + + agentrule + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + msdyn_knowledgearticleimage @@ -27885,6 +29909,88 @@ + + agentprompt + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + sourcecontrolbranchconfiguration @@ -28005,6 +30111,99 @@ + + new_gaurdianfullscan + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + userrating @@ -28639,6 +30838,99 @@ + + flowtestsession + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + solutioncomponentattributeconfiguration @@ -30164,23 +32456,340 @@ - flowevent + flowevent + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + + + appmodulecomponentnode + + + DeleteAccess + + DeleteAccess + false + false + true + false + Global + + + + AppendAccess + + AppendAccess + false + false + true + false + Global + + + + WriteAccess + + WriteAccess + false + false + true + false + Global + + + + CreateAccess + + CreateAccess + false + false + true + false + Global + + + + AppendToAccess + + AppendToAccess + false + false + true + false + Global + + + + ReadAccess + + ReadAccess + false + false + true + false + Global + + + + + + mspp_webpageaccesscontrolrule + + + WriteAccess + + WriteAccess + false + false + true + false + Global + + + + AppendAccess + + AppendAccess + false + false + true + false + Global + + + + DeleteAccess + + DeleteAccess + false + false + true + false + Global + + + + AppendToAccess + + AppendToAccess + false + false + true + false + Global + + + + CreateAccess + + CreateAccess + false + false + true + false + Global + + + + ReadAccess + + ReadAccess + false + false + true + false + Global + + + + + + skill + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + + + msdyn_rtestructuredtemplateconfig - AppendToAccess - - AppendToAccess - true - true - true - true - Global - - - - AssignAccess + ShareAccess - AssignAccess + ShareAccess true true true @@ -30200,9 +32809,9 @@ - CreateAccess + WriteAccess - CreateAccess + WriteAccess true true true @@ -30211,9 +32820,9 @@ - DeleteAccess + AssignAccess - DeleteAccess + AssignAccess true true true @@ -30222,9 +32831,9 @@ - AppendAccess + CreateAccess - AppendAccess + CreateAccess true true true @@ -30233,9 +32842,9 @@ - ShareAccess + DeleteAccess - ShareAccess + DeleteAccess true true true @@ -30244,9 +32853,9 @@ - WriteAccess + AppendAccess - WriteAccess + AppendAccess true true true @@ -30254,145 +32863,14 @@ Global - - - - appmodulecomponentnode - - - DeleteAccess - - DeleteAccess - false - false - true - false - Global - - - - AppendAccess - - AppendAccess - false - false - true - false - Global - - - - WriteAccess - - WriteAccess - false - false - true - false - Global - - - - CreateAccess - - CreateAccess - false - false - true - false - Global - - AppendToAccess AppendToAccess - false - false - true - false - Global - - - - ReadAccess - - ReadAccess - false - false - true - false - Global - - - - - - mspp_webpageaccesscontrolrule - - - WriteAccess - - WriteAccess - false - false - true - false - Global - - - - AppendAccess - - AppendAccess - false - false - true - false - Global - - - - DeleteAccess - - DeleteAccess - false - false - true - false - Global - - - - AppendToAccess - - AppendToAccess - false - false - true - false - Global - - - - CreateAccess - - CreateAccess - false - false - true - false - Global - - - - ReadAccess - - ReadAccess - false - false + true + true true - false + true Global @@ -31453,6 +33931,99 @@ + + msdyn_powerappswrapbuild + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + aipluginconversationstartermapping @@ -32787,6 +35358,99 @@ + + msdyn_harvesteligibilitycondition + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + partnerapplication @@ -32872,88 +35536,296 @@ Global - - DeleteAccess - - DeleteAccess - true - true - true - true - Global - - - - AppendToAccess - - AppendToAccess - true - true - true - true - Global - - - - ShareAccess - - ShareAccess - true - true - true - true - Global - - - - ReadAccess - - ReadAccess - true - true - true - true - Global - - - - AppendAccess - - AppendAccess - true - true - true - true - Global - - - - CreateAccess - - CreateAccess - true - true - true - true - Global - - - - AssignAccess - - AssignAccess - true - true - true - true - Global - - - - - - msdyn_kbattachment - + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + + + msdyn_kbattachment + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + + + msdyn_dataworkspace + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + + + uxagentcomponent + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + DeleteAccess @@ -32976,77 +35848,6 @@ Global - - AssignAccess - - AssignAccess - true - true - true - true - Global - - - - WriteAccess - - WriteAccess - true - true - true - true - Global - - - - AppendAccess - - AppendAccess - true - true - true - true - Global - - - - CreateAccess - - CreateAccess - true - true - true - true - Global - - - - AppendToAccess - - AppendToAccess - true - true - true - true - Global - - - - ShareAccess - - ShareAccess - true - true - true - true - Global - - - - - - msdyn_dataworkspace - ShareAccess @@ -33059,20 +35860,9 @@ - ReadAccess - - ReadAccess - true - true - true - true - Global - - - - DeleteAccess + AppendToAccess - DeleteAccess + AppendToAccess true true true @@ -33091,28 +35881,6 @@ Global - - WriteAccess - - WriteAccess - true - true - true - true - Global - - - - AppendToAccess - - AppendToAccess - true - true - true - true - Global - - CreateAccess @@ -33124,17 +35892,6 @@ Global - - AssignAccess - - AssignAccess - true - true - true - true - Global - - @@ -33826,6 +36583,77 @@ + + uxagentprojectfile + + + DeleteAccess + + DeleteAccess + false + false + true + false + Global + + + + ReadAccess + + ReadAccess + false + false + true + false + Global + + + + AppendToAccess + + AppendToAccess + false + false + true + false + Global + + + + WriteAccess + + WriteAccess + false + false + true + false + Global + + + + AppendAccess + + AppendAccess + false + false + true + false + Global + + + + CreateAccess + + CreateAccess + false + false + true + false + Global + + + + msdyn_schedule @@ -35877,6 +38705,77 @@ + + uxagentproject + + + AppendAccess + + AppendAccess + false + false + true + false + Global + + + + ReadAccess + + ReadAccess + false + false + true + false + Global + + + + WriteAccess + + WriteAccess + false + false + true + false + Global + + + + CreateAccess + + CreateAccess + false + false + true + false + Global + + + + AppendToAccess + + AppendToAccess + false + false + true + false + Global + + + + DeleteAccess + + DeleteAccess + false + false + true + false + Global + + + + purviewlabelinfo @@ -36100,9 +38999,238 @@ - CreateAccess + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + + + flowsessionbinary + + + AppendAccess + + AppendAccess + true + true + true + true + Global + + + + ShareAccess + + ShareAccess + true + true + true + true + Global + + + + AppendToAccess + + AppendToAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + WriteAccess + + WriteAccess + true + true + true + true + Global + + + + DeleteAccess + + DeleteAccess + true + true + true + true + Global + + + + + + userqueryvisualization + + + CreateAccess + + CreateAccess + true + false + false + false + Basic + + + + ShareAccess + + ShareAccess + true + false + false + false + Basic + + + + DeleteAccess + + DeleteAccess + true + false + false + false + Basic + + + + ReadAccess + + ReadAccess + true + false + false + false + Basic + + + + AssignAccess + + AssignAccess + true + false + true + false + Basic + + + + WriteAccess + + WriteAccess + true + false + false + false + Basic + + + + + + sdkmessageprocessingstepsecureconfig + + + ReadAccess + + ReadAccess + false + false + true + false + Global + + + + + + flowgroup + + + CreateAccess + + CreateAccess + true + true + true + true + Global + + + + ReadAccess + + ReadAccess + true + true + true + true + Global + + + + AssignAccess + + AssignAccess + true + true + true + true + Global + + + + WriteAccess - CreateAccess + WriteAccess true true true @@ -36110,15 +39238,10 @@ Global - - - - flowsessionbinary - - AppendAccess + DeleteAccess - AppendAccess + DeleteAccess true true true @@ -36127,9 +39250,9 @@ - ShareAccess + AppendAccess - ShareAccess + AppendAccess true true true @@ -36148,145 +39271,14 @@ Global - - AssignAccess - - AssignAccess - true - true - true - true - Global - - - - ReadAccess - - ReadAccess - true - true - true - true - Global - - - - CreateAccess - - CreateAccess - true - true - true - true - Global - - - - WriteAccess - - WriteAccess - true - true - true - true - Global - - - - DeleteAccess - - DeleteAccess - true - true - true - true - Global - - - - - - userqueryvisualization - - - CreateAccess - - CreateAccess - true - false - false - false - Basic - - ShareAccess ShareAccess true - false - false - false - Basic - - - - DeleteAccess - - DeleteAccess - true - false - false - false - Basic - - - - ReadAccess - - ReadAccess - true - false - false - false - Basic - - - - AssignAccess - - AssignAccess - true - false - true - false - Basic - - - - WriteAccess - - WriteAccess - true - false - false - false - Basic - - - - - - sdkmessageprocessingstepsecureconfig - - - ReadAccess - - ReadAccess - false - false + true true - false + true Global @@ -41091,6 +44083,77 @@ + + sourcecontroloperationtracking + + + DeleteAccess + + DeleteAccess + false + false + true + false + Global + + + + CreateAccess + + CreateAccess + false + false + true + false + Global + + + + AppendAccess + + AppendAccess + false + false + true + false + Global + + + + ReadAccess + + ReadAccess + false + false + true + false + Global + + + + AppendToAccess + + AppendToAccess + false + false + true + false + Global + + + + WriteAccess + + WriteAccess + false + false + true + false + Global + + + + msdyn_pmcalendarversion @@ -45328,6 +48391,77 @@ + + msdyn_evalresult + + + CreateAccess + + CreateAccess + false + false + true + false + Global + + + + WriteAccess + + WriteAccess + false + false + true + false + Global + + + + DeleteAccess + + DeleteAccess + false + false + true + false + Global + + + + ReadAccess + + ReadAccess + false + false + true + false + Global + + + + AppendToAccess + + AppendToAccess + false + false + true + false + Global + + + + AppendAccess + + AppendAccess + false + false + true + false + Global + + + + webwizard diff --git a/Tests.Integration/Metadata/TypeDeclarations.cs b/Tests.Integration/Metadata/TypeDeclarations.cs index 4c53a49..79b32e6 100644 --- a/Tests.Integration/Metadata/TypeDeclarations.cs +++ b/Tests.Integration/Metadata/TypeDeclarations.cs @@ -1,9 +1,7 @@ using System; -namespace DG.Tools.XrmMockup -{ - public struct SecurityRoles - { +namespace DG.Tools.XrmMockup { + public struct SecurityRoles { public static Guid SystemCustomizer = new Guid("78ff07f1-a1ba-f011-bbd3-7c1e52365f30"); } } diff --git a/Tests/ManagedIdentity/IdentitySyncServiceTests.cs b/Tests/ManagedIdentity/IdentitySyncServiceTests.cs index 1e4031d..7a2f247 100644 --- a/Tests/ManagedIdentity/IdentitySyncServiceTests.cs +++ b/Tests/ManagedIdentity/IdentitySyncServiceTests.cs @@ -14,7 +14,7 @@ public class IdentitySyncServiceTests { private readonly ISolutionReader solutionReader = Substitute.For(); private readonly IManagedIdentityReader managedIdentityReader = Substitute.For(); - private readonly IManagedIdentityWriter managedIdentityWriter = Substitute.For(); + private readonly IManagedIdentityReconciler managedIdentityService = Substitute.For(); private readonly ILogger logger = Substitute.For>(); private readonly Guid solutionId = Guid.NewGuid(); @@ -36,7 +36,7 @@ private IdentitySyncService CreateService( return new IdentitySyncService( solutionReader, managedIdentityReader, - managedIdentityWriter, + managedIdentityService, Options.Create(options), logger); } @@ -44,12 +44,11 @@ private IdentitySyncService CreateService( // --- Remove operation tests --- [Fact] - public async Task RemoveDeletesManagedIdentityWhenLinkedToAssembly() + public async Task RemoveDelegatesToServiceWhenAssemblyFound() { // Arrange var assemblyId = Guid.NewGuid(); - var miId = Guid.NewGuid(); - var miRef = new EntityReference("managedidentity", miId); + var miRef = new EntityReference("managedidentity", Guid.NewGuid()); solutionReader.RetrieveSolution(SolutionName).Returns((solutionId, "test")); managedIdentityReader.GetPluginAssemblyManagedIdentity(solutionId, "MyPlugin") @@ -61,43 +60,24 @@ public async Task RemoveDeletesManagedIdentityWhenLinkedToAssembly() await service.Sync(CancellationToken.None); // Assert - managedIdentityWriter.Received(1).Remove(miId); + managedIdentityService.Received(1).Remove(miRef, "MyPlugin"); } [Fact] - public async Task RemoveDoesNotDeleteWhenNoManagedIdentityLinked() + public async Task RemoveWarnsAndDoesNotThrowWhenAssemblyNotFound() { // Arrange - var assemblyId = Guid.NewGuid(); - solutionReader.RetrieveSolution(SolutionName).Returns((solutionId, "test")); managedIdentityReader.GetPluginAssemblyManagedIdentity(solutionId, "MyPlugin") - .Returns((assemblyId, (EntityReference?)null)); + .Returns(((Guid, EntityReference?)?)null); var service = CreateService(IdentityOperation.Remove); - // Act + // Act — a missing assembly must not block removal await service.Sync(CancellationToken.None); - // Assert - managedIdentityWriter.DidNotReceive().Remove(Arg.Any()); - } - - [Fact] - public async Task RemoveThrowsWhenAssemblyNotFound() - { - // Arrange - solutionReader.RetrieveSolution(SolutionName).Returns((solutionId, "test")); - managedIdentityReader.GetPluginAssemblyManagedIdentity(solutionId, "MyPlugin") - .Returns(((Guid, EntityReference?)?)null); - - var service = CreateService(IdentityOperation.Remove); - - // Act & Assert - var exception = await Assert.ThrowsAsync( - () => service.Sync(CancellationToken.None)); - Assert.Contains("MyPlugin", exception.Message); - Assert.Contains("not found", exception.Message); + // Assert — nothing was removed + managedIdentityService.DidNotReceive().Remove(Arg.Any(), Arg.Any()); } [Fact] @@ -122,52 +102,46 @@ public async Task RemoveDerivesAssemblyNameFromPath() // --- Ensure operation tests --- [Fact] - public async Task EnsureCreatesManagedIdentityAndLinksToAssembly() + public async Task EnsureDelegatesToServiceWithResolvedAssemblyAndIdentity() { // Arrange var assemblyId = Guid.NewGuid(); - var createdMiId = Guid.NewGuid(); var clientId = Guid.NewGuid(); var tenantId = Guid.NewGuid(); solutionReader.RetrieveSolution(SolutionName).Returns((solutionId, "test")); managedIdentityReader.GetPluginAssemblyManagedIdentity(solutionId, "MyPlugin") .Returns((assemblyId, (EntityReference?)null)); - managedIdentityWriter.Create(Arg.Any(), Arg.Any(), Arg.Any()) - .Returns(createdMiId); var service = CreateService(IdentityOperation.Ensure, clientId: clientId.ToString(), tenantId: tenantId.ToString()); // Act await service.Sync(CancellationToken.None); - // Assert - MI was created with correct values - managedIdentityWriter.Received(1).Create("TestSolution Managed Identity", clientId, tenantId); - - // Assert - Assembly was linked to the new MI - managedIdentityWriter.Received(1).LinkToAssembly(assemblyId, createdMiId); + // Assert + managedIdentityService.Received(1).Ensure(assemblyId, null, SolutionName, clientId, tenantId); } [Fact] - public async Task EnsureNoOpsWhenManagedIdentityAlreadyLinked() + public async Task EnsurePassesExistingIdentityToService() { // Arrange var assemblyId = Guid.NewGuid(); var existingMiRef = new EntityReference("managedidentity", Guid.NewGuid()); + var clientId = Guid.NewGuid(); + var tenantId = Guid.NewGuid(); solutionReader.RetrieveSolution(SolutionName).Returns((solutionId, "test")); managedIdentityReader.GetPluginAssemblyManagedIdentity(solutionId, "MyPlugin") .Returns((assemblyId, existingMiRef)); - var service = CreateService(IdentityOperation.Ensure, - clientId: Guid.NewGuid().ToString(), tenantId: Guid.NewGuid().ToString()); + var service = CreateService(IdentityOperation.Ensure, clientId: clientId.ToString(), tenantId: tenantId.ToString()); // Act await service.Sync(CancellationToken.None); // Assert - managedIdentityWriter.DidNotReceive().Create(Arg.Any(), Arg.Any(), Arg.Any()); - managedIdentityWriter.DidNotReceive().LinkToAssembly(Arg.Any(), Arg.Any()); + managedIdentityService.Received(1).Ensure(assemblyId, existingMiRef, SolutionName, clientId, tenantId); } [Fact] @@ -229,7 +203,7 @@ public async Task EnsureThrowsWhenAssemblyNotFound() var service = CreateService(IdentityOperation.Ensure, clientId: Guid.NewGuid().ToString(), tenantId: Guid.NewGuid().ToString()); - // Act & Assert + // Act & Assert — Ensure needs the assembly to link the identity to var exception = await Assert.ThrowsAsync( () => service.Sync(CancellationToken.None)); Assert.Contains("MyPlugin", exception.Message); @@ -237,7 +211,7 @@ public async Task EnsureThrowsWhenAssemblyNotFound() } [Fact] - public async Task EnsureUsesSolutionNameForManagedIdentityName() + public async Task EnsurePassesSolutionNameToService() { // Arrange var assemblyId = Guid.NewGuid(); @@ -245,8 +219,6 @@ public async Task EnsureUsesSolutionNameForManagedIdentityName() solutionReader.RetrieveSolution("CustomSolution").Returns((solutionId, "custom")); managedIdentityReader.GetPluginAssemblyManagedIdentity(solutionId, "MyPlugin") .Returns((assemblyId, (EntityReference?)null)); - managedIdentityWriter.Create(Arg.Any(), Arg.Any(), Arg.Any()) - .Returns(Guid.NewGuid()); var service = CreateService(IdentityOperation.Ensure, solutionName: "CustomSolution", clientId: Guid.NewGuid().ToString(), tenantId: Guid.NewGuid().ToString()); @@ -255,8 +227,8 @@ public async Task EnsureUsesSolutionNameForManagedIdentityName() await service.Sync(CancellationToken.None); // Assert - managedIdentityWriter.Received(1).Create( - "CustomSolution Managed Identity", Arg.Any(), Arg.Any()); + managedIdentityService.Received(1).Ensure( + assemblyId, null, "CustomSolution", Arg.Any(), Arg.Any()); } [Fact] @@ -268,8 +240,6 @@ public async Task EnsureDerivesAssemblyNameFromPath() solutionReader.RetrieveSolution(SolutionName).Returns((solutionId, "test")); managedIdentityReader.GetPluginAssemblyManagedIdentity(solutionId, "Custom.Plugin.Assembly") .Returns((assemblyId, (EntityReference?)null)); - managedIdentityWriter.Create(Arg.Any(), Arg.Any(), Arg.Any()) - .Returns(Guid.NewGuid()); var service = CreateService(IdentityOperation.Ensure, assemblyPath: "some/nested/path/Custom.Plugin.Assembly.dll", clientId: Guid.NewGuid().ToString(), tenantId: Guid.NewGuid().ToString()); diff --git a/Tests/ManagedIdentity/ManagedIdentityReconcilerTests.cs b/Tests/ManagedIdentity/ManagedIdentityReconcilerTests.cs new file mode 100644 index 0000000..a180366 --- /dev/null +++ b/Tests/ManagedIdentity/ManagedIdentityReconcilerTests.cs @@ -0,0 +1,184 @@ +using Microsoft.Extensions.Logging; +using Microsoft.Xrm.Sdk; +using NSubstitute; +using XrmSync.Dataverse.Interfaces; +using XrmSync.Model.Identity; +using XrmSync.SyncService; + +namespace Tests.ManagedIdentity; + +public class ManagedIdentityReconcilerTests +{ + private readonly IManagedIdentityReader reader = Substitute.For(); + private readonly IManagedIdentityWriter writer = Substitute.For(); + private readonly ILogger logger = Substitute.For>(); + + private const string SolutionName = "TestSolution"; + private const string ExpectedName = "TestSolution Managed Identity"; + + private ManagedIdentityReconciler CreateService() => new(reader, writer, logger); + + // --- Ensure: create + link --- + + [Fact] + public void EnsureCreatesAndLinksWhenNoCurrentIdentity() + { + // Arrange + var assemblyId = Guid.NewGuid(); + var clientId = Guid.NewGuid(); + var tenantId = Guid.NewGuid(); + var createdId = Guid.NewGuid(); + writer.Create(Arg.Any(), Arg.Any(), Arg.Any()).Returns(createdId); + + // Act + CreateService().Ensure(assemblyId, null, SolutionName, clientId, tenantId); + + // Assert + writer.Received(1).Create(ExpectedName, clientId, tenantId); + writer.Received(1).LinkToAssembly(assemblyId, createdId); + writer.DidNotReceive().Update(Arg.Any(), Arg.Any(), Arg.Any(), Arg.Any()); + } + + // --- Ensure: upsert in place --- + + [Fact] + public void EnsureUpdatesInPlaceWhenApplicationIdDiffers() + { + // Arrange + var assemblyId = Guid.NewGuid(); + var miId = Guid.NewGuid(); + var current = new EntityReference("managedidentity", miId); + var clientId = Guid.NewGuid(); + var tenantId = Guid.NewGuid(); + + reader.GetManagedIdentity(miId).Returns(new ManagedIdentityInfo(miId, ExpectedName, Guid.NewGuid(), tenantId)); + + // Act + CreateService().Ensure(assemblyId, current, SolutionName, clientId, tenantId); + + // Assert + writer.Received(1).Update(miId, ExpectedName, clientId, tenantId); + writer.DidNotReceive().Create(Arg.Any(), Arg.Any(), Arg.Any()); + } + + [Fact] + public void EnsureUpdatesInPlaceWhenTenantIdDiffers() + { + // Arrange + var assemblyId = Guid.NewGuid(); + var miId = Guid.NewGuid(); + var current = new EntityReference("managedidentity", miId); + var clientId = Guid.NewGuid(); + var tenantId = Guid.NewGuid(); + + reader.GetManagedIdentity(miId).Returns(new ManagedIdentityInfo(miId, ExpectedName, clientId, Guid.NewGuid())); + + // Act + CreateService().Ensure(assemblyId, current, SolutionName, clientId, tenantId); + + // Assert + writer.Received(1).Update(miId, ExpectedName, clientId, tenantId); + } + + [Fact] + public void EnsureUpdatesInPlaceWhenNameDiffers() + { + // Arrange + var assemblyId = Guid.NewGuid(); + var miId = Guid.NewGuid(); + var current = new EntityReference("managedidentity", miId); + var clientId = Guid.NewGuid(); + var tenantId = Guid.NewGuid(); + + reader.GetManagedIdentity(miId).Returns(new ManagedIdentityInfo(miId, "Old Name", clientId, tenantId)); + + // Act + CreateService().Ensure(assemblyId, current, SolutionName, clientId, tenantId); + + // Assert + writer.Received(1).Update(miId, ExpectedName, clientId, tenantId); + } + + [Fact] + public void EnsureNoOpsWhenEverythingMatches() + { + // Arrange + var assemblyId = Guid.NewGuid(); + var miId = Guid.NewGuid(); + var current = new EntityReference("managedidentity", miId); + var clientId = Guid.NewGuid(); + var tenantId = Guid.NewGuid(); + + reader.GetManagedIdentity(miId).Returns(new ManagedIdentityInfo(miId, ExpectedName, clientId, tenantId)); + + // Act + CreateService().Ensure(assemblyId, current, SolutionName, clientId, tenantId); + + // Assert — nothing changes + writer.DidNotReceive().Update(Arg.Any(), Arg.Any(), Arg.Any(), Arg.Any()); + writer.DidNotReceive().Create(Arg.Any(), Arg.Any(), Arg.Any()); + writer.DidNotReceive().LinkToAssembly(Arg.Any(), Arg.Any()); + } + + [Fact] + public void EnsureRecreatesWhenLinkedRecordMissing() + { + // Arrange + var assemblyId = Guid.NewGuid(); + var miId = Guid.NewGuid(); + var current = new EntityReference("managedidentity", miId); + var clientId = Guid.NewGuid(); + var tenantId = Guid.NewGuid(); + var createdId = Guid.NewGuid(); + + reader.GetManagedIdentity(miId).Returns((ManagedIdentityInfo?)null); + writer.Create(Arg.Any(), Arg.Any(), Arg.Any()).Returns(createdId); + + // Act + CreateService().Ensure(assemblyId, current, SolutionName, clientId, tenantId); + + // Assert + writer.Received(1).Create(ExpectedName, clientId, tenantId); + writer.Received(1).LinkToAssembly(assemblyId, createdId); + } + + [Fact] + public void EnsureUsesSolutionNameForIdentityName() + { + // Arrange + var assemblyId = Guid.NewGuid(); + writer.Create(Arg.Any(), Arg.Any(), Arg.Any()).Returns(Guid.NewGuid()); + + // Act + CreateService().Ensure(assemblyId, null, "CustomSolution", Guid.NewGuid(), Guid.NewGuid()); + + // Assert + writer.Received(1).Create("CustomSolution Managed Identity", Arg.Any(), Arg.Any()); + } + + // --- Remove --- + + [Fact] + public void RemoveDeletesWhenLinked() + { + // Arrange + var miId = Guid.NewGuid(); + var current = new EntityReference("managedidentity", miId); + + // Act + CreateService().Remove(current, "MyPlugin"); + + // Assert + writer.Received(1).Remove(miId); + } + + [Fact] + public void RemoveNoOpsWhenNotLinked() + { + // Act + CreateService().Remove(null, "MyPlugin"); + + // Assert + writer.DidNotReceive().Remove(Arg.Any()); + } +} diff --git a/Tests/Plugins/PluginServiceTests.cs b/Tests/Plugins/PluginServiceTests.cs index 068c989..d7136bb 100644 --- a/Tests/Plugins/PluginServiceTests.cs +++ b/Tests/Plugins/PluginServiceTests.cs @@ -1,5 +1,6 @@ using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; +using Microsoft.Xrm.Sdk; using NSubstitute; using XrmSync.Dataverse.Interfaces; using XrmSync.SyncService; @@ -26,6 +27,8 @@ public class PluginServiceTests private readonly ICustomApiWriter customApiWriter = Substitute.For(); private readonly ILocalReader assemblyReader = Substitute.For(); private readonly ISolutionReader solutionReader = Substitute.For(); + private readonly IManagedIdentityReader managedIdentityReader = Substitute.For(); + private readonly IManagedIdentityReconciler managedIdentityService = Substitute.For(); private readonly IDifferenceCalculator differenceUtility = Substitute.For(); private readonly IDescription description = new Description(); private readonly PluginSyncCommandOptions options = new(string.Empty, "solution"); @@ -45,6 +48,8 @@ public PluginServiceTests() customApiWriter, assemblyReader, solutionReader, + managedIdentityReader, + managedIdentityService, differenceUtility, description, Options.Create(options), logger); @@ -603,4 +608,97 @@ public void UpdatePluginsCallsWriter() customApiWriter.Received(1).UpdateRequestParameters(data.RequestParameters.Updates.ConvertAll(upd => upd.Local.Entity).ArgMatches()); customApiWriter.Received(1).UpdateResponseProperties(data.ResponseProperties.Updates.ConvertAll(upd => upd.Local.Entity).ArgMatches()); } + + // --- Managed identity integration --- + + private PluginSyncService CreatePluginWithOptions(PluginSyncCommandOptions opts) => + new( + pluginAssemblyReader, + pluginAssemblyWriter, + pluginReader, + pluginWriter, + pluginValidator, + customApiValidator, + customApiReader, + customApiWriter, + assemblyReader, + solutionReader, + managedIdentityReader, + managedIdentityService, + differenceUtility, + description, + Options.Create(opts), logger); + + private static AssemblyInfo CrmAssembly(Guid id, string name = "TestAssembly") => + new(name) { Id = id, DllPath = "path", Hash = "hash", Version = "1.0.0.0", Plugins = [] }; + + [Fact] + public void EnsureManagedIdentityDoesNothingWhenNotConfigured() + { + // Arrange — no managed identity values in options + var service = CreatePluginWithOptions(new(string.Empty, "solution")); + + // Act + service.EnsureManagedIdentity(Guid.NewGuid(), CrmAssembly(Guid.NewGuid())); + + // Assert + managedIdentityReader.DidNotReceive().GetPluginAssemblyManagedIdentity(Arg.Any(), Arg.Any()); + managedIdentityService.DidNotReceive().Ensure(Arg.Any(), Arg.Any(), Arg.Any(), Arg.Any(), Arg.Any()); + } + + [Fact] + public void EnsureManagedIdentityDelegatesWhenConfiguredAndNoCurrentIdentity() + { + // Arrange + var solutionId = Guid.NewGuid(); + var assemblyId = Guid.NewGuid(); + var clientId = Guid.NewGuid(); + var tenantId = Guid.NewGuid(); + var crmAssembly = CrmAssembly(assemblyId); + + managedIdentityReader.GetPluginAssemblyManagedIdentity(solutionId, crmAssembly.Name) + .Returns(((Guid, EntityReference?)?)null); + + var service = CreatePluginWithOptions(new("path", "TestSolution", clientId.ToString(), tenantId.ToString())); + + // Act + service.EnsureManagedIdentity(solutionId, crmAssembly); + + // Assert + managedIdentityService.Received(1).Ensure(assemblyId, null, "TestSolution", clientId, tenantId); + } + + [Fact] + public void EnsureManagedIdentityPassesCurrentIdentityWhenLinked() + { + // Arrange + var solutionId = Guid.NewGuid(); + var assemblyId = Guid.NewGuid(); + var clientId = Guid.NewGuid(); + var tenantId = Guid.NewGuid(); + var miRef = new EntityReference("managedidentity", Guid.NewGuid()); + var crmAssembly = CrmAssembly(assemblyId); + + managedIdentityReader.GetPluginAssemblyManagedIdentity(solutionId, crmAssembly.Name) + .Returns((assemblyId, miRef)); + + var service = CreatePluginWithOptions(new("path", "TestSolution", clientId.ToString(), tenantId.ToString())); + + // Act + service.EnsureManagedIdentity(solutionId, crmAssembly); + + // Assert + managedIdentityService.Received(1).Ensure(assemblyId, miRef, "TestSolution", clientId, tenantId); + } + + [Fact] + public void EnsureManagedIdentityThrowsOnInvalidClientId() + { + // Arrange + var service = CreatePluginWithOptions(new("path", "TestSolution", "not-a-guid", Guid.NewGuid().ToString())); + + // Act & Assert + Assert.Throws( + () => service.EnsureManagedIdentity(Guid.NewGuid(), CrmAssembly(Guid.NewGuid()))); + } } diff --git a/XrmSync/Commands/PluginSyncCommand.cs b/XrmSync/Commands/PluginSyncCommand.cs index 5913eab..0fc449f 100644 --- a/XrmSync/Commands/PluginSyncCommand.cs +++ b/XrmSync/Commands/PluginSyncCommand.cs @@ -15,6 +15,8 @@ internal class PluginSyncCommand : XrmSyncCommandBase public PluginSyncCommand() : base("plugins", "Synchronize plugins in a plugin assembly with Dataverse") { Add(CommandOptions.Assembly); + Add(CommandOptions.ClientId); + Add(CommandOptions.TenantId); AddSharedOptions(); AddSyncOptions(); @@ -25,13 +27,15 @@ public PluginSyncCommand() : base("plugins", "Synchronize plugins in a plugin as public override async Task ExecuteFromProfile(SyncItem syncItem, ExecutionContext ctx, CancellationToken ct) { if (syncItem is not PluginSyncItem plugin) return null; - return await RunCore(plugin.AssemblyPath, ctx.SolutionName ?? string.Empty, ctx.DryRun, ctx.CiMode, ctx.LogLevel, ctx.ProfileName, ct); + return await RunCore(plugin.AssemblyPath, ctx.SolutionName ?? string.Empty, plugin.ManagedIdentityClientId, plugin.ManagedIdentityTenantId, ctx.DryRun, ctx.CiMode, ctx.LogLevel, ctx.ProfileName, ct); } private async Task ExecuteAsync(ParseResult parseResult, CancellationToken cancellationToken) { var assemblyPath = parseResult.GetValue(CommandOptions.Assembly); var solutionName = parseResult.GetValue(CommandOptions.Solution); + var clientId = parseResult.GetValue(CommandOptions.ClientId); + var tenantId = parseResult.GetValue(CommandOptions.TenantId); var dryRun = parseResult.GetValue(CommandOptions.DryRun); var logLevel = parseResult.GetValue(CommandOptions.LogLevel); var ciMode = parseResult.GetValue(CommandOptions.CiMode); @@ -40,12 +44,16 @@ private async Task ExecuteAsync(ParseResult parseResult, CancellationToken // Resolve final options eagerly (CLI + profile merge) string finalAssemblyPath; string finalSolutionName; + string? finalClientId; + string? finalTenantId; if (profileName == null && !string.IsNullOrWhiteSpace(assemblyPath) && !string.IsNullOrWhiteSpace(solutionName)) { // Standalone mode: all required values supplied via CLI finalAssemblyPath = assemblyPath; finalSolutionName = solutionName; + finalClientId = clientId; + finalTenantId = tenantId; } else { @@ -65,14 +73,18 @@ private async Task ExecuteAsync(ParseResult parseResult, CancellationToken finalAssemblyPath = assemblyPath.GetValueOrDefault(pluginSyncItem?.AssemblyPath ?? string.Empty); finalSolutionName = solutionName.GetValueOrDefault(profile.SolutionName); + finalClientId = clientId.GetValueOrDefault(pluginSyncItem?.ManagedIdentityClientId ?? string.Empty); + finalTenantId = tenantId.GetValueOrDefault(pluginSyncItem?.ManagedIdentityTenantId ?? string.Empty); } - return await RunCore(finalAssemblyPath, finalSolutionName, dryRun, ciMode, logLevel, profileName, cancellationToken); + return await RunCore(finalAssemblyPath, finalSolutionName, finalClientId, finalTenantId, dryRun, ciMode, logLevel, profileName, cancellationToken); } private async Task RunCore( string assemblyPath, string solutionName, + string? managedIdentityClientId, + string? managedIdentityTenantId, bool? dryRun, bool? ciMode, LogLevel? logLevel, @@ -82,6 +94,16 @@ private async Task RunCore( var errors = XrmSyncConfigurationValidator.ValidateAssemblyPath(assemblyPath) .Concat(XrmSyncConfigurationValidator.ValidateSolutionName(solutionName)) .ToList(); + + // Both managed identity values must be present together when either is supplied + var hasClientId = !string.IsNullOrWhiteSpace(managedIdentityClientId); + var hasTenantId = !string.IsNullOrWhiteSpace(managedIdentityTenantId); + if (hasClientId || hasTenantId) + { + errors.AddRange(XrmSyncConfigurationValidator.ValidateGuid(managedIdentityClientId ?? string.Empty, "Managed identity client ID")); + errors.AddRange(XrmSyncConfigurationValidator.ValidateGuid(managedIdentityTenantId ?? string.Empty, "Managed identity tenant ID")); + } + if (errors.Count > 0) return ValidationError("plugins", errors); @@ -94,7 +116,7 @@ private async Task RunCore( CiMode = ciMode ?? baseOptions.CiMode, DryRun = dryRun ?? baseOptions.DryRun }) - .AddSingleton(MSOptions.Create(new PluginSyncCommandOptions(assemblyPath, solutionName))) + .AddSingleton(MSOptions.Create(new PluginSyncCommandOptions(assemblyPath, solutionName, managedIdentityClientId, managedIdentityTenantId))) .AddLogger() .BuildServiceProvider(); diff --git a/XrmSync/Commands/XrmSyncRootCommand.cs b/XrmSync/Commands/XrmSyncRootCommand.cs index ec0b660..623c62b 100644 --- a/XrmSync/Commands/XrmSyncRootCommand.cs +++ b/XrmSync/Commands/XrmSyncRootCommand.cs @@ -74,7 +74,9 @@ private async Task ExecuteAsync(ParseResult parseResult, CancellationToken { PluginSyncItem plugin => plugin with { - AssemblyPath = assemblyOverride.GetValueOrDefault(plugin.AssemblyPath) + AssemblyPath = assemblyOverride.GetValueOrDefault(plugin.AssemblyPath), + ManagedIdentityClientId = clientIdOverride.GetValueOrDefault(plugin.ManagedIdentityClientId ?? string.Empty), + ManagedIdentityTenantId = tenantIdOverride.GetValueOrDefault(plugin.ManagedIdentityTenantId ?? string.Empty) }, PluginAnalysisSyncItem analysis => analysis with {