Share via


AxdBaseCreate.insertMethodInPropertyInfoMap Method [AX 2012]

Updates the specified map between parameter methods and property information including the properties behind the property name, the base type, the extended type ID, the array size, the enumeration ID, and the number of decimals.

Syntax

protected Map insertMethodInPropertyInfoMap(
    str _dataSourceName, 
    ClassId _classId, 
    TableId _tableId, 
    str _method, 
   [Map _map])

Run On

Server

Parameters

  • _dataSourceName
    Type: str
  • _classId
    Type: ClassId Extended Data Type
    The ID of the AxInternalBase class that holds the method named in the _method parameter.
  • _method
    Type: str
    The name of the parameter method in the map.
  • _map
    Type: Map Class
    The current map between the parameter methods and the property information of the _classId parameter; optional.

Return Value

Type: Map Class
The map between parm methods and property information.

Remarks

This method also updates the axdBaseProperty parameter with the property information of the current property.

This protected method is internal to the AxdBaseCreate class, and is intended to be used only from the findType method to cache property information.

The returned map will have a new entry inserted into it. It will be inserted either into the map specified by the _map parameter or into a new map.

See Also

Reference

AxdBaseCreate Class