I'm using Dynamics AX 20102 by Citrix session. In case I try to export by CTRL + T record,
I would like to change the Excel language.
Is it possible to make a setup or configuration in order to change the excel language? For example, if I have my AX user language in English, I need to have the exported Excel page in Latin(just example...)
Thanks in advance.
Ctrl+tis handled by the kernel method\System Documentation\Classes\FormRun\task, but you can intercept it in\Classes\SysSetupFormRun\task.Specifically, you would look for
_p1 == #taskExportExcelwith the#taskmacro.That is where you would put whatever code modification you'd do. For the language switching, I'm not clear whether you mean character encoding or the actual AX user language configuration that controls the labels and things. If it's the labels and things, you could just intercept
Ctrl+tas I describe above and then before thesuper(), switch the user language, then after thesuper()switch it back.If you're talking about character encoding, you would have to figure something else out depending on your needs.