16 February 2015

Claims to Windows Token Service in SharePoint Central Administration - AX 2012 R3 EP installation warning / error

Hi Gusys,

Claims to Windows Token Service in SharePoint Central Administration
Sol:
Share point central administration
-> System settings> Manage services on server

Start the Climes to windows token service


To check Default Share point portal:

http://axapp/sites/DynamicsAx/EmployeeServices/



22 January 2015

Test Services in AX 2012

Visual Studio Command Prompt by going to All Programs à Microsoft Visual Studio 2010 à Visual Studio Tools à Visual Studio Command Prompt.

Write wcftestclient and press enter. WCF Test Client will open.

Please click here for more information

21 January 2015

Default dimension in AX 2012 for customer or vendor X++ code

DimensionAttributeValueSetStorage valueSetStorage = new DimensionAttributeValueSetStorage();
DimensionDefault result;

int i;
DimensionAttribute dimensionAttribute;
DimensionAttributeValue dimensionAttributeValue;

// Note that "Item" is not one of the default dimension,
// but DimensionAttributeValueSetStorage will handle it gracefully
container conAttr = ["BusinessUnit","CostCenter","Department", "ItemGroup", "Project"];
container conValue = ["004", "009", "024","Services","000007"];
str dimValue;

for (i = 1; i <= conLen(conAttr); i++)
{
dimensionAttribute = dimensionAttribute::findByName(conPeek(conAttr,i));

if (dimensionAttribute.RecId == 0)
{
continue;
}

dimValue = conPeek(conValue,i);

if (dimValue != "")
{
// The last parameter is "true". A dimensionAttributeValue record will be created if not found.
dimensionAttributeValue =
dimensionAttributeValue::findByDimensionAttributeAndValue(dimensionAttribute,dimValue,false,true);

// Add the dimensionAttibuteValue to the default dimension
valueSetStorage.addItem(dimensionAttributeValue);
}
}

result = valueSetStorage.save();

14 January 2015

The CIL generator found errors and could not save the new assembly. Error + AX 2012 R3 CU8 Installation error

Hi Guys,

Please check the log in the below link:

\Program Files\Microsoft Dynamics AX\60\Server\YOUR_INSTANCE\bin\XppIL\Dynamics.Ax.Application.dll.log

Thanks
Happy daxing

19 December 2014

AX 2012 AOS load balancing and clustering

Dear Friends,

1. Install AOS with new TCP\ip port number and new wsdl port number
2. Start New AOS which is installed.
3. Create new client configuration with new AOS so you will find two configurations as follows
4. Goto administration > Setup > System > Cluster configuration
5.Press CTRL+N to create a new cluster.
6.Go to Map AOS instance cluster then select new AOS.
7.Click the Cluster name field to display a list of available clusters. Select the cluster that you want to add the AOS instance to.
8.Press CTRL+S to save your changes
9. If you want the AOS instance that you selected to function as a load balancer, select the Load balancer option.
as shown below


happy Daxing :-)

11 December 2014

Create new legal entity using X++ code in AX 2012

Hi Friends,
Below code snippet will help you to create new legal entities in AX 2012

static void CompanyUpload(Args _args)
{
OMNewLegalEntityViewModel oMNewLegalEntityViewModel = new OMNewLegalEntityViewModel();

oMNewLegalEntityViewModel.parmCompany("997");
oMNewLegalEntityViewModel.parmName("Test7");
oMNewLegalEntityViewModel.parmCountryRegion("IND");
oMNewLegalEntityViewModel.createLegalEntity();

info("Company has been created");
}

Happy Daxing..:-)

Merge Dimensions (MainAccountId and LedgerDimensions) defaultDimension in D365 F&O and X++

 public DimensionDynamicAccount getLedgerDimension(container _conData, TransDate _transDate = today()) {     int                            ...