Get previous page selected record(context) in EP page in AX 2009
If you would like to get the previous page’s selected record (Context) in EP in AX 2009 then you can use the following method in visual studio for it.
Subscribe to be the first to learn about a new blog post. Sign up today!
If you would like to get the previous page’s selected record (Context) in EP in AX 2009 then you can use the following method in visual studio for it.
Inserting/Deleting/Updating records into an external SQL database from AX 2009 using x++ can be done using ADO Classes in AX. This can be told from the following code snippet. In the below code snippet CCADOConnection is used to establish a connection with the external database and CCADOCommand is used to execute the command on the…
To display/upload the documents for a record in a newTable through EP in AX 2009, we can use the existing Web menu items like EPDocuList, EPDocuListPopUp, EPDocuListFromInfo etc., But if these menu items are directly used on our new EP pages then it doesn’t work properly. The solution would be to add a relation with…
Hi Folks, I have seen that most of the developers face the problem in displaying the Page footer only in the last page of the report. Epilog is printed just after the page footer on the last page in a report. So, this is printed in a separate page. But to print in the last…
I have seen that few developers have a problem in getting the total Sales order amount or sales quotation amount with Tax /discounts etc., in the preferred currency before invoicing because these are not stored into any specific tables. The below form shows, where we can see the sales totals, Accounts Receivable->Sales Order-> Inquiries Menu->Totals…
When you try to validate the Workflow URL, you might get an error saying “The request failed with HTTP status 405: Method Not Allowed.” To resolve this error , there are two ways : If your system configuration is 1. Windows 2008 R2 64 bit. 2. SQL Server 2008 3. IIS 7 To resolve this…
Here, I am telling you about how to register a COM wrapper dll and then extract & use it in AX. (i) Install the COM Wrapper DLL Files, into the bin directory of the AOS. (ii) Register it with the following Command,%WINDIR%Microsoft.NETFrameworkv2.0.50727regasm.exe Test.Wrapper.DLL /tlb:Test.Wrapper.tlb (iii) Now, After Successful Registration, Follow the below path and click…