Skip to main content

Posts

Encrypt Decrypt password or text in AXapta 2012

Encrypt or Decrypt in AX 2012 You can test following code in job before applying to main form. CryptoApi cryptoApi; Container container1,container2; ContainerClass concls; ; cryptoApi = new CryptoApi(99999999999); concls= new ContainerClass(["AbcCls"]); container1 = CryptoApi.encrypt(concls.toBlob()); container2 = ContainerClass::blob2Container(CryptoApi.decrypt(container1)); info(Strfmt("Encrypted:%1",BinData::dataToString(container1))); info(con2str(container2)); I hope you get your answer.

SQL Services Analysis Services Account for axapta

 The domain account the SQL Server Analysis Services (MSSQLSERVER) Windows service will run as. When installing Analysis Services, specify that the Analysis Services Windows service should run as the .NET Business Connector account. The .NET Business Connector account must have read access to the Microsoft Dynamics AX online transaction processing (OLTP) database.

The DefaultValue expression for the report parameter AX_CompanyName contains an error Dynamics Adapter LogonAs failed

On the SSRS server machine where you have .NET BC installed, check the following:  Check Microsoft.Dynamics.BusinessConnectorNet file version in :\windows\assembly folder (GAC). To do this, right-click on the file, select Properties then select the Version tab. Make sure it's the same version as your AOS version (ax32serv.exe) Make sure that the SSRS service account is the same as your Business Connector Proxy account in Dynamics AX. Check the Dynamics AX client configuration for the Business Connector (non-interactive use only) configuration and make sure it points to an active AOS in the Connection tab. (Administrative Tools> Microsoft Dynamics AX 2009 Configuration) Copy the Business Connector configuration to the desktop and double click on it to launch Dynamics AX. This will validate that the configuration is good Check the Application event log on the SSRS server to make sure you do not see other errors as to why Business Connector is not able to c

How to extract all the AOT modifiaction in axapta

How to extract all the AOT modifiaction in axapta Create a new project, then click (CTRL+F3 or Advanced Filter/ sort) >> then Grouping(AOT) > then SELECT >> in the LAYER field put >>usr>> in the criteria filed >> then OK Also there is an additional way  to do it easily.  going to the AOT > right click --> Export(Tick) -> Aplication Object layer Choose -> USR layer->OK  

Generate Ax lookup in enterprise portal axapta

AxLookup is used in data entry pages to help the user select a valid value for a field that references keys from other tables. In Enterprise Portal, lookups are metadata-driven by default, and they are automatically enabled for fields, based on the relationship that is defined in metadata in the AOT. An example is the customer group lookup on the customer creation page. The extended data type (EDT) and table relationship metadata in the AOT define a relationship between the customer table and the customer group table; therefore, a lookup is rendered so that the user can select a customer group in the customer group field when creating a customer record. You don’t need to write any code to enable this behavior—it happens automatically. void dataSetLookup(SysDataSetLookup sysDataSetLookup) { if (custTable.CountryRegionId) { sysDataSetLookup.parmQuery().dataSourceNo(1).addRange( fieldnum(AddressZipCode,CountryRegionId)).value(queryValue(custTable.CountryRegionId)); }