上一页 1 2 3 4 5 6 7 ··· 13 下一页
To deploy reports from within Microsoft Dynamics AX1.In the AOT, expand the Report Libraries node.2.Right-click the report library that you want to de... Read More
posted @ 2014-09-10 08:50 Sprite.z Views(256) Comments(0) Diggs(0) Edit
1. Install and configure the SQL server reporting server, then add a user as administrator for current user, the user name format is just domain\user.... Read More
posted @ 2014-09-10 08:48 Sprite.z Views(196) Comments(0) Diggs(0) Edit
To create a menu item for a report1.Open Microsoft Dynamics AX.2.In the AOT, expand the Menu Items node.3.Right-click the Output node, and then click ... Read More
posted @ 2014-09-10 08:47 Sprite.z Views(175) Comments(0) Diggs(0) Edit
Reduce the number of Reports Libraries and Reports per Language. By default, reports from all languages that are enabled in the LANGUAGETABLE of the A... Read More
posted @ 2014-09-10 08:43 Sprite.z Views(223) Comments(0) Diggs(0) Edit
We could easyly to write a method to send the mail by C#, in axapta we can use the System.Net.Mail to send mail as C#. 1 void sendMail 2 ( 3 str _Subject, 4 str _MailTo, 5 str _CCTo, 6 str _Body, 7 str _Attachment 8 ) 9 { 10 System.Net.Mail.MailAddress ... Read More
posted @ 2013-08-22 09:00 Sprite.z Views(947) Comments(0) Diggs(0) Edit
Recently I was instructed to updated a table field, It is easy to write a simple statement to complete the task. But I have no idea about that there may be some tables having the same field in the system. So I writed a job to verify mine suspicious. 1 static void Jinn_FindExtendedType(Args _args) .. Read More
posted @ 2013-05-31 09:28 Sprite.z Views(237) Comments(0) Diggs(0) Edit
1 public void fld1_1_lookup(FormControl _formControl, Name _ReportName) 2 { 3 Query query = new Query(); 4 QueryBuildDataSource queryBuildDataSource; 5 SysTableLookup sysTableLookup; 6 FormStringControl _control = dialog.formRun().controlCalling... Read More
posted @ 2012-11-15 11:19 Sprite.z Views(359) Comments(0) Diggs(0) Edit
1. Use the info() method to info the control field's name. 1 protected Object dialog(DialogRunbase _dialog, boolean forceOnClient) 2 { 3 ; 4 5 dialog = super(_dialog, forceOnClient); 6 7 dlg_field1 = dialog.addFieldValue(Types::String, g_Value); 8 9 info(dlg_field1.name()); //The ... Read More
posted @ 2012-11-13 15:59 Sprite.z Views(316) Comments(0) Diggs(0) Edit
1 public Axapta Logon() 2 { 3 // NameValueCollection settings = (NameValueCollection)System.Configuration.ConfigurationSettings.GetConfig("AXConnection "); 4 string username = System.Configuration.ConfigurationSettings.AppSettings["UserName"].ToString(); 5 string password = Syste Read More
posted @ 2012-11-13 09:54 Sprite.z Views(253) Comments(0) Diggs(0) Edit
微软Axapta中PDF不支持中文,但字体设置成嵌入式字体,只要将字体改成以下字体就可以了。Arial Unicode MS来自官方的说明:http://support.microsoft.com/kb/945075 Read More
posted @ 2012-11-13 09:52 Sprite.z Views(195) Comments(0) Diggs(0) Edit
上一页 1 2 3 4 5 6 7 ··· 13 下一页