Forum Post: RE: WCF Error in AX 2012 R2 CU9
I found a solution! I deleted the ServiceGroup1 becasue we don't need it any more and after that, I complie and run full CIL and now it is working. Strange behavior becuase ServiceGroup1 just kills the...
View ArticleForum Post: RE: AX 2012 customized SalesPackingSlip report - Run new design...
Use the following code in outPutReport() method in your controller class. public void outputReport() { reportDesign = 'MyReport.Report_DesignA'; this.parmReportName(reportDesign);...
View ArticleForum Post: RE: Multiple report execution
Report viewer is a dialog, that is why you have to close one before the other one shows up. In order to open it parallel you need to detach the form and comment out the super() call in close function...
View ArticleForum Post: RE: How to show a real value in function strFmt with more than 2...
Unfortunately you can't have more than two decimal places in strFmt function. Try using num2str
View ArticleForum Post: RE: How to Print two Reports at a time based on user Selection???
Please check the following link for launching multiple report/design in parallel. thinkinginax.blogspot.com/.../launching-parallel-ssrs-reports-on.html
View ArticleForum Post: RE: Microsoft.Office.Interop.Excel in Batch
Unfortunately you cannot achieve this, excel object cannot be initialized on server side hence you cannot import/export excel file in code which is running on server side.
View ArticleForum Post: RE: How to create Document library in EnterPrise Portlal
Checkout the following link: support.office.com/.../SharePoint-document-libraries-I-An-introduction-a5a82359-bbde-46c8-9a0e-1a4628cc6603
View ArticleForum Post: RE: Use Different sales Invoice Design
Check the following link: thinkinginax.blogspot.com/.../changing-report-design-via-code-ssrs.html
View ArticleForum Post: RE: How to Solve XML Parsing Error in EP Site
Hi Jignesh, Does your enterprise portal contain custom apps/pages. I have seen this issue if aspx pages can't be parsed. Koen
View ArticleBlog Post: 80730AE Course Development Basics in Microsoft Dynamics AX 7 - Dev 1
Greetings All! Microsoft has released the courseware for Development Basics in Dynamics AX 7. You will need to login to Dynamics Training Portal using your PartnerSource Id Course Link - Dynamics AX 7...
View ArticleForum Post: RE: Microsoft.Office.Interop.Excel in Batch
Hi Take a look to this post You can create an Excel document from a batch job where Excel is not installed using Open XML.
View ArticleForum Post: RE: Adding a document to a row programmatically
Have you looked into DocuRef table and verify whether the records are created there ?
View ArticleForum Post: RE: Financial updating quantity must have same sign in the...
Thank you a lot for your sharing :)
View ArticleForum Post: RE: Postal code database or file to download and integreate into AX
Do not buy anything at mapanet, they sell outdated scraped data from GeoPostcodes. We use GeoPostcodes services for many year, they have reliable products.
View ArticleForum Post: Application compile after applying hotfix
Hello everyone, I just ran a hotfix axupdate to one of my test environment. Running through the checklist I'm using axbuild with four threads to compile the application. When I check SQL Server...
View ArticleForum Post: RE: Report gives error in another date
What is the second error in infolog ?
View ArticleForum Post: RE: Report gives error in another date
Hello Try to find out, wether the problem comes from the year or from the quantity of data to be processed. If the problem is caused by the latter, have a look at the properties of your tempdb, whitch...
View ArticleForum Post: RE: AX2013 R3 WHS Target license plate
Hi Vanya, I have location RR2001 that holds 15 pallets of same item (with 15 different LP). When work is generated the Location directive correctly splits the qty into full LP qty. If I pick the first...
View ArticleForum Post: RE: Problem in reading the XML TAG in X++ AX 2012
I think that you are not selecting nodes using the name spaces properly. After you instantiate your xmlDocument variable from the file, you need to create a name space manager similar to this. xmlNSMgr...
View ArticleForum Post: RE: Problem in reading the XML TAG in X++ AX 2012
Try the following code: static void XMLJob(Args _args) { #define.node('TrvPBSMaindataServiceCreateRequest') XmlDocument xmlDocument; XmlNode xmlInformationNode; XmlNodeList xmlInformationsNodeList;...
View Article