dynamics-ax-prasankumar.blogspot.com
Dynamics AX: 6/1/13 - 7/1/13
http://dynamics-ax-prasankumar.blogspot.com/2013_06_01_archive.html
Wednesday, June 19, 2013. AX 2012 – SSRS Reporting : Selecting the report design at the runtime based on the static parameter (dialog field) values. Here is a solution to select the design at the runtime based on dialog field values in AX 2012 SSRS reports. Hope this will help you. In the controller() class and follow the below steps. SrsReportDataContract dataContract = this.parmReportContract();. SrsReportRdlDataContract contract = dataContract.parmRdlContract();. Xxx controller = new. There was an err...
dynamics-ax-prasankumar.blogspot.com
Dynamics AX: 8/1/12 - 9/1/12
http://dynamics-ax-prasankumar.blogspot.com/2012_08_01_archive.html
Thursday, August 16, 2012. Convert/Upgrade MorphX Report to SSRS in Dynamics AX. Convert/Upgrade MorphX Report to SSRS in Dynamics AX. Please follow the link. Http:/ dynamicspost.blogspot.com/2012/04/convertupgrade-morphx-report-to-ssrs-in.html. Thursday, August 2, 2012. For some better AX links-. Subscribe to: Posts (Atom). Yelkoloke yen ede bidri. View my complete profile. Mukesh Hirwani - Dynamics Ax. Convert/Upgrade MorphX Report to SSRS in Dynamics . There was an error in this gadget.
dynamics-ax-prasankumar.blogspot.com
Dynamics AX: Code to check the current user have system administartor rights in AX X++ code
http://dynamics-ax-prasankumar.blogspot.com/2014/07/code-to-check-current-user-have-system.html
Thursday, July 24, 2014. Code to check the current user have system administartor rights in AX X code. Sometime before I was written a big statement to find out the System admin rights of current user. Later I realized about global function that will help us to find the same. Will tell you the current user is having the admin rights or not. If isSystemAdministrator() return true then the user is having system admin rights, else not a system admin. Hope this helps you. AX 2012 Admin rights X code.
dynamics-ax-prasankumar.blogspot.com
Dynamics AX: 7/1/13 - 8/1/13
http://dynamics-ax-prasankumar.blogspot.com/2013_07_01_archive.html
Tuesday, July 30, 2013. Finding the current company curreny code in AX 2012. Here is the code to find the company currency code in AX 2012. CurrencyCode = Ledger: accountingCurrency(CompanyInfo: current() ;. CurrencyCode = Ledger: accountingCurrency(CompanyInfo: Find().recid);. CurrencyCode = CompanyInfo: standardCurrency();. Labels: #AX 2012 Company curreny code. Subscribe to: Posts (Atom). Yelkoloke yen ede bidri. View my complete profile. Mukesh Hirwani - Dynamics Ax. There was an error in this gadget.
axaptabuilder.blogspot.com
Axapta programming blog: practical HOWTOs: September 2006
http://axaptabuilder.blogspot.com/2006_09_01_archive.html
Axapta programming blog: practical HOWTOs. Wednesday, September 20, 2006. How to make Dynamics AX interface more user friendly with Tabax? Does it sound familiar for you when you work with Axapta you get heaped with different windows after some time? Maksim Belugin has developed a great tool called Tabax to help organize all your opened windows into tabs, quickly change their positions and so on. Tool and more information about it can be found on the front page of www.axaptapedia.com. I haven't got enoug...
dynamics-ax-prasankumar.blogspot.com
Dynamics AX: Updating the value of existing dimesnions - Default dimension
http://dynamics-ax-prasankumar.blogspot.com/2014/09/updating-value-of-existing-dimesnions.html
Monday, September 22, 2014. Updating the value of existing dimesnions - Default dimension. Here is a code to update the value of particular dimensions for items. DimStorage = DimensionAttributeValueSetStorage: find(inventTable.DefaultDimension);. DimAttrOpDiv = DimensionAttribute: findByName( "DIMENSION NAME. DimAttributeValue = DimensionAttributeValue: findByDimensionAttributeAndValue(dimAttrOpDiv, 'VALUE'. InventTable.DefaultDimension = dimStorage.save();. Subscribe to: Post Comments (Atom).
dynamics-ax-prasankumar.blogspot.com
Dynamics AX: 8/1/11 - 9/1/11
http://dynamics-ax-prasankumar.blogspot.com/2011_08_01_archive.html
Thursday, August 4, 2011. Writing Data to CSV file from Dyanamics AX. Here is a code to write date from Microsoft Dyanics Ax to comma separated file(.csv). Static void AX2CSV(Args args). Define.filename('u: items.CSV'). File = new CommaTextIO(#filename, #io write);. Throw error("File cannot be opened.");. FileoutFieldDelimiter(';'); / for semicolon seperator and default field delimitter is ,(comma). Line = [invenTable.ItemId,invenTable.ItemName,invenTable.ItemGroupId];. Good Luck. :). Labels: AX to CSV.
dynamics-ax-prasankumar.blogspot.com
Dynamics AX: 7/1/12 - 8/1/12
http://dynamics-ax-prasankumar.blogspot.com/2012_07_01_archive.html
Friday, July 13, 2012. AX2012- Error executing code:. Object does not have method construct. When working with AX 2012 outbound document service, I faced this issue. When I clicked the send electronically button on my custom created form, then the I could see the message is queued in queue manager form. On running of the batch I could see status as error with description "Error executing code: empty class object does not have method construct". Secondly, compile the base class - AxInternalBase. Please co...
dynamics-ax-prasankumar.blogspot.com
Dynamics AX: 9/1/14 - 10/1/14
http://dynamics-ax-prasankumar.blogspot.com/2014_09_01_archive.html
Monday, September 22, 2014. Updating the value of existing dimesnions - Default dimension. Here is a code to update the value of particular dimensions for items. DimStorage = DimensionAttributeValueSetStorage: find(inventTable.DefaultDimension);. DimAttrOpDiv = DimensionAttribute: findByName( "DIMENSION NAME. DimAttributeValue = DimensionAttributeValue: findByDimensionAttributeAndValue(dimAttrOpDiv, 'VALUE'. InventTable.DefaultDimension = dimStorage.save();. Subscribe to: Posts (Atom).
dynamics-ax-prasankumar.blogspot.com
Dynamics AX: 7/1/14 - 8/1/14
http://dynamics-ax-prasankumar.blogspot.com/2014_07_01_archive.html
Thursday, July 24, 2014. Code to check the current user have system administartor rights in AX X code. Sometime before I was written a big statement to find out the System admin rights of current user. Later I realized about global function that will help us to find the same. Will tell you the current user is having the admin rights or not. If isSystemAdministrator() return true then the user is having system admin rights, else not a system admin. Hope this helps you. AX 2012 Admin rights X code.