Country region specific condition in AX 2012 / D365
Get link
Facebook
X
Pinterest
Email
Other Apps
-
#ISOCountryRegionCodes
if (SysCountryRegionCode::isLegalEntityInCountryRegion([#isoDK])
{
}
Get link
Facebook
X
Pinterest
Email
Other Apps
Comments
Popular posts from this blog
-
Contract Class: Microsoft Dynamics AX 2012 introduces the concept of attributes. Attributes provide a way to specify metadata about classes and methods. Two of these attributes are used when creating data contracts: the DataContractAttribute and DataMemberAttribute attributes. The DataContractAttribute attribute is used to define that a class is a data contract. The DataMemberAttribute attribute is added to methods of data contracts that represent data members that have to be exposed. Contracts are used to define what can be communicated. A data contract are used for defining parameters to the SSRS report. We can define any number of parameters using X++ statements of any data type, which can be passed on to the RDP class. A data contract class is an X++ class which contains parm methods with the DataMemberAttribute defined at the beginning of the method. RDP Class: The RDP class is a data provider that allows you to add business logic for the data that is di...
How to use "Like" operator in the QueryBuildRange.Value To make something as the "LIKE" operator in a query, you should just assign a value to the queryRange including a wildcard. The query framework will then change the statement into a LIKE statement. If the value does not contain a wildchard the query framework will change the statement to ==. .here qbr.valu("!P*,C*"); will come letter not start with C,P letters if we use qbr.value("P*,C*") will get particular values start with P,c letter.. Using NOT LIKE in X++ select statements and query ranges source: http://basicax.blogspot.com/2014/08/using-not-like-in-x-select-statements.html
Comments
Post a Comment