The "Keyed Name" value normally follows "Name" value, and the value may be very long in some special scenarios. Default length of "Keyed Name" Property is 128, but it can't be modified due to system restrictions (see Restriction on Modifying System Property).
All operations on Aras Innovator will be validated before executing command in database. Therefore, it is impossible to modify with AML or configure on system interface. The alternative way is to modify column definition in database directly.
Use below the SQL command to achieve:
All operations on Aras Innovator will be validated before executing command in database. Therefore, it is impossible to modify with AML or configure on system interface. The alternative way is to modify column definition in database directly.
Use below the SQL command to achieve:
ALTER TABLE [Table Name] ALTER COLUMN [keyed_name] NVARCHAR(New Length) NULL;
UPDATE [Property] SET [stored_length]=New Length WHERE [id]='Property ID';
※Please use the command very carefully because there is no any system check for it.
Comments
Post a Comment