UtilIdElementsOld Table
Id: 65511
Label: UtilIdElementsOld
Security key: AdminTables
Settings shown are initial values.
Note |
|---|
|
This table enables you to create, read, update, and delete X++ code and metadata. Ensure that the user has access to the Development Security Key (SysDevelopment) before calling this API. |
Note |
|---|
|
At the time of publication, portions of this topic were intentionally left blank. For the most current information, visit Microsoft Dynamics AX Online. |
|
Field |
Description |
|---|---|
|
utilLevel ID: 1 Enum: UtilEntryLevel Enumeration Label: utilLevel |
|
|
recordType ID: 2 Enum: UtilElementType Enumeration Label: recordType |
|
|
parentId ID: 3 Type: Integer Label: parentId |
|
|
name ID: 4 Type: String Size: 40 Extended data type: identifiername Extended Data Type Label: Name |
Unique name of the ID. |
|
baseVersion ID: 5 Type: Integer Label: baseVersion |
|
|
version ID: 6 Type: Integer Label: version |
|
|
saveCount ID: 7 Type: Integer Label: saveCount |
|
|
id ID: 8 Type: Integer Label: id |
|
|
code ID: 9 Type: Container Label: code |
|
The following example reads some properties from the UtilIdElementsOld table. The example then ascertains whether the user has the required security key before performing modification.
server static public void Main(Args _args)
{
UtilIdElementsOld u;
str name;
str dataArea;
;
if (hasSecuritykeyAccess(securitykeynum(SysDevelopment), AccessType::View))
{
dataArea = u.dataAreaId;
name = u.Name;
}
}
Note