Skip to main content

Posts

Error while refreshing the Temp Table in Visual Studio and RDP Class design

If you are getting the error while refreshing the Temp Table in Visual Studio, and also getting the same error to add RDP class in Designing the SSRS report  Error is:  "An error occurred when retrieving the meta data for the query.  Exception occurred on the meta data service on client or server.  See Exception details below:  >data or calculated fields with type"Record" are not supported". Solution: 1.redeploy meta data, BI service from services node, also try refresh BC proxy setting from AX configuration 2.There is problem in RDP Class can you please Check any field is missing or else you can do one thing just in Visual studio Take the name for the DS and Remove and try to add once again ten you will find out the Error clearly then you can fix that from AX

select best choice before Resigning from job in MSDAX

If you are working  in ERP(AX) field then you are thinking to resign from job then select best choice before Resigning from job. Following point you should keep in mind. 1. Do not resign from job if you do not have any offer letter if you do that then if will very difficult for you to get new job but at the time of current job you could get other job easily. 2. Read carefully  about company profile where are you going like work environment,behaviour with employees,job shift,outsourcing work and salary structure. 3. In AX ERP TCS,Godrej,Tectura ,L & T,Sonata, Accenture,NDS could be your choice. 4. Select Mar to May month period for joining new job because that time your children will enter in new standard. 5. Always love to your job do not love to company.

Code to copy file from one location to other in MSD axapta

This is a sample of Code to copy file from one location to other in axapta.

How to set debug for Enterprise portal in MSD axapta

X++ code can be used in various parts of a page, such as Web forms, reports, and Weblets. You can debug X++ code for elements that display on pages by using the debugger for Microsoft Dynamics AX. You can debug Enterprise Portal code only on the system that is running Internet Information Services (IIS). Setting Up Debugging for Pages -------------------------------------------------------------------------------- To set up debugging for pages 1.Log into the server that is running the AOS. 2.Open the Microsoft Dynamics AX Server Configuration utility (Start > Control Panel > Administrative Tools > Microsoft Dynamics AX 2009 Server Configuration). 3.Create a new configuration that allows debugging. a.Click Manage and then click Create configuration. In the Create Configuration window, name the new configuration, such as "DAX Debugging". Click OK. b.On the Application Object Server tab, select Enable breakpoints to debug code X++ code running on this ser

Terminate all online users by code in MSD axapta

To Terminate all online users by code in axapta you can try following code.

Accept and Reject new client session request in MSD axapta

If you want to use accept and reject new client session request manually then in online user form this option is available and same thing you can do with job also.

How to Change user group of user from sql query editor for Axapta

If you are not able to change user group of particular user and any problem occurred then you can modify user group of user from SQL back end through update query using query editor. Select * from USERGROUPINFO   Select * from USERGROUPLIST To modify user group you can use following update statement to add user testuser to admin group   of Axapta. Update USERGROUPLIST set GROUPID='Admin' where USERID='testuser'