DIXF:"Entity name must be filled in" In Ax 2012 R3 CU8, CU9, CU 10
Hi Friends, today while I was working on DIXF framework, I faced this warning message (Which is not allowing me to perform any other operations) "Entity name must be filled in".
This Issue has occurred in AX 2012 R3 CU8 version(for myself). I also found that when ever we upgrade to any higher version of AX 2012 like CU9, CU10 we will encounter with this same warning.
Solution to this issue can be done in two ways,
Important Note:
1st workaround will be helpful for the people who are working on AX 2012 R3 CU9, CU10.
2nd workaround will be helpful for the people who are working on AX 2012 R3 CU8 or any older versions.
This Issue has occurred in AX 2012 R3 CU8 version(for myself). I also found that when ever we upgrade to any higher version of AX 2012 like CU9, CU10 we will encounter with this same warning.
Solution to this issue can be done in two ways,
Important Note:
1st workaround will be helpful for the people who are working on AX 2012 R3 CU9, CU10.
2nd workaround will be helpful for the people who are working on AX 2012 R3 CU8 or any older versions.
SSRS DrillThrough Reports in Ax 2012
Hi Friends, today I would like to share my learning related to SSRS DrillThrough reports, Please follow the below steps to achieve the DrillThrough functionality.
1. Open the report for
which DrillThrough functionality needs to be applied.
2. Create a new data method as shown below
2. Create a new data method as shown below
3. Rename the newly
added data method to PurchaseOrder
4. Open the data method PurchaseOrder and we will find the
newly added Business logic project added to the same solution as show below.
Method Content:
X++ code for getting "BusinessUnit" Address based on "OmOperatingUnitNumber" & "OmOperatingUnitType" in D365 F&O || Ax 2012
Hi everyone,
The blow code snippet is used to get the Business unit address based on OmOperationUnitNumber and OmOperationUnitType.
static void getBusinessUnitaddress(Args _args)
{
OMOperatingUnit operatingUnits;
select firstOnly * from operatingUnits
where operatingUnits.OMOperatingUnitNumber == "047" && // operating unit number
operatingUnits.OMOperatingUnitType == OMOperatingUnitType::RetailChannel; // operating type
info(strFmt("%1",operatingUnits.primaryAddress()));
}
Proud To Be a DAX Developer :-)
static void getBusinessUnitaddress(Args _args)
{
OMOperatingUnit operatingUnits;
select firstOnly * from operatingUnits
where operatingUnits.OMOperatingUnitNumber == "047" && // operating unit number
operatingUnits.OMOperatingUnitType == OMOperatingUnitType::RetailChannel; // operating type
info(strFmt("%1",operatingUnits.primaryAddress()));
}
Proud To Be a DAX Developer :-)
Subscribe to:
Posts (Atom)