SETUP DIFFERENT DATE FORMATS ON AX SSRS REPORT
Hi
If you want to setup a different Format Date on a SSRS report,
1- Modify date format for all date textbox present in the SSRS Report using the
Format function, like =Format(Fields!TransDate.Value, "dd/MM/yyyy")
2- If you want follow the User Timezone, for all date textbox you can use
ConvertUtcToAxUserTimeZoneForUser method, like
=Microsoft.Dynamics.Framework.Reports.DataMethodUtility.ConvertUtcToAxUserTimeZoneForUser(Parameters!AX_CompanyName.Value,
Parameters!AX_UserContext.Value, =Fields!TransDate.Value, "d",
Parameters!AX_RenderingCulture.Value)