Object_Type_Attribute_Type
View linking object types to their available attribute types with configuration flags.
Definition
CREATE VIEW
[mr].[Object_Type_Attribute_Type] AS
SELECT
[r].[Attribute_Type_Id],
[a].[Enum_Key] [Attribute_Type],
[r].[Object_Type_Id],
[o].[Enum_Key] [Object_Type],
[r].[Has_User_Autofill],
[r].[Is_Read_Only]
FROM
[dbo].[R_Object_Attribute] [r]
JOIN [dbo].[C_Attribute_Type] [a] ON [a].[Attribute_Type_Id] = [r].[Attribute_Type_Id]
JOIN [dbo].[C_Object_Type] [o] ON [o].[Object_Type_Id] = [r].[Object_Type_Id]
Columns