axhelpline.blogspot.com
AX Dazzles: To Send Normal AX Reports in PDF Format according to System Date to Users through Batch Process in AX 2009
http://axhelpline.blogspot.com/2014/03/to-send-normal-ax-reports-in-pdf-format.html
Blog For AX Developers. Friday, March 14, 2014. To Send Normal AX Reports in PDF Format according to System Date to Users through Batch Process in AX 2009. First we need to work on how to send normal reports to PDF. Such That we need to create a new Class with given methods below is mandatory. Next in ReportPdf we have to write logic how to save normal ax reports to pdf file. Str reportName = "ProductionDailyReport";. Td = systemDateget();. Args = new Args(reportName);. Rr = new reportRun(args);. Mailer&...
axhelpline.blogspot.com
AX Dazzles: EDT Relations in AX 2012
http://axhelpline.blogspot.com/2014/06/edt-relations-in-ax-2012_14.html
Blog For AX Developers. Saturday, June 14, 2014. EDT Relations in AX 2012. Migration Tool in AX 2012 :. We have created relations on EDT level in AX 2009. In Microsoft Dynamics AX 2012, relations can no longer be created under extended data type (EDT) nodes in the Application Object Tree (AOT). Relations that are defined under EDT nodes are still effective, but in a future release they will be obsolete and deleted. Tools - Code upgrade - EDT relation migration tool. Refer this link for more details :.
axhelpline.blogspot.com
AX Dazzles: How To Use Temporary Tables In Reports
http://axhelpline.blogspot.com/2014/02/how-to-use-temporary-tables-in-reports.html
Blog For AX Developers. Friday, February 14, 2014. How To Use Temporary Tables In Reports. Step 1: Take a Report and Add a Table. Step 2: Make sure that Table Properties set as "Temporary: YES". OR) In Report init method write this code. Step 3: Apply this code in code in the report level Fetch Method :. Ret = super();. Tmtab 1.CustAccount = custTable.AccountNum;. Tmtab 1.doInsert();. Subscribe to: Post Comments (Atom). Dynamics AX Blog Lists. View my complete profile. Exporting Data to Excel By Code.
axhelpline.blogspot.com
AX Dazzles: October 2013
http://axhelpline.blogspot.com/2013_10_01_archive.html
Blog For AX Developers. Wednesday, October 23, 2013. How to configure the Batch Processing :. Go to - Administration Module - set Up - Batch Group. Here we need to select the batch server. Administration - set Up - Server configuration -. Here we need to select the server for sending mails to users. Next Basic Module - Common Forms - Batch Job List. Create the new job with description and go to View Task -. Select the class what we wrote. For sending Emails to users , choose the class and save it . 9 Rig...
axhelpline.blogspot.com
AX Dazzles: Writing Data to Text File in AX 2009 & 2012
http://axhelpline.blogspot.com/2014/02/writing-data-to-text-file-in-ax-2009.html
Blog For AX Developers. Thursday, February 13, 2014. Writing Data to Text File in AX 2009 and 2012. Static void DataToTxt(Args args). TextBuffer = new TextBuffer();. TextBuffer.setText(' );. Where purchTable.PurchStatus = PurchStatus: Backorder. TextBuffer.appendText(strfmt('%1 r',purchTable.PurchId) ;. TextBuffer.appendText(strfmt('%1 r',purchTable.PurchName) ;. TextBuffer.appendText(strfmt('%1 r n',purchTable.PurchStatus) ;. BinData = new BinData();. BinData.setStrData(textBuffer.getText() ;.
axhelpline.blogspot.com
AX Dazzles: February 2014
http://axhelpline.blogspot.com/2014_02_01_archive.html
Blog For AX Developers. Friday, February 14, 2014. How To Use Temporary Tables In Reports. Step 1: Take a Report and Add a Table. Step 2: Make sure that Table Properties set as "Temporary: YES". OR) In Report init method write this code. Step 3: Apply this code in code in the report level Fetch Method :. Ret = super();. Tmtab 1.CustAccount = custTable.AccountNum;. Tmtab 1.doInsert();. Thursday, February 13, 2014. Different Types Of Joins And Link Types With example. Static void JoinExamples(Args args).
axhelpline.blogspot.com
AX Dazzles: How to pass Control Values in Form to class in AX
http://axhelpline.blogspot.com/2014/07/how-to-pass-control-values-in-form-to.html
Blog For AX Developers. Wednesday, July 9, 2014. How to pass Control Values in Form to class in AX. Write the method in form level like :. Return control.Text();. Write this code in class level where we need to use this value:. If(formHasMethod(args.caller(), identifierstr(MethodName) ). Strcustname = args.caller().MethodName();. Subscribe to: Post Comments (Atom). Dynamics AX Blog Lists. View my complete profile. Code to Pass Argument Values from one form to anot.
axhelpline.blogspot.com
AX Dazzles: March 2014
http://axhelpline.blogspot.com/2014_03_01_archive.html
Blog For AX Developers. Friday, March 14, 2014. To Send Normal AX Reports in PDF Format according to System Date to Users through Batch Process in AX 2009. First we need to work on how to send normal reports to PDF. Such That we need to create a new Class with given methods below is mandatory. Next in ReportPdf we have to write logic how to save normal ax reports to pdf file. Str reportName = "ProductionDailyReport";. Td = systemDateget();. Args = new Args(reportName);. Rr = new reportRun(args);. Mailer&...
axhelpline.blogspot.com
AX Dazzles: Code to Pass Argument Values from one form to another form
http://axhelpline.blogspot.com/2014/07/code-to-pass-argument-values-from-one.html
Blog For AX Developers. Saturday, July 26, 2014. Code to Pass Argument Values from one form to another form. Step 1: In Form A Clicked Method. Args args = new Args();. New MenuFunction(MenuItemDisplayStr( Form B. MenuItemType: Display).run(args);. Step 2: In class Declaration you should create a buffer for that particular table. Public class FormRun extends ObjectRun. Step 3: In Form B init method. Tablelocal = element.args().record();. Subscribe to: Post Comments (Atom). Dynamics AX Blog Lists.
axhelpline.blogspot.com
AX Dazzles: June 2014
http://axhelpline.blogspot.com/2014_06_01_archive.html
Blog For AX Developers. Saturday, June 14, 2014. EDT Relations in AX 2012. Migration Tool in AX 2012 :. We have created relations on EDT level in AX 2009. In Microsoft Dynamics AX 2012, relations can no longer be created under extended data type (EDT) nodes in the Application Object Tree (AOT). Relations that are defined under EDT nodes are still effective, but in a future release they will be obsolete and deleted. Tools - Code upgrade - EDT relation migration tool. Refer this link for more details :.