Forum Post: RE: Automation Test Toolkit in NAV 2016
Maybe Luc van Vugt can answer it? [:)]
View ArticleForum Post: RE: Automation Test Toolkit in NAV 2016
Hey guys, I had seen your question Saravan, but am to busy performing a week long training. However Erik triggered me just now. Reading your "requirement" I guess you want to also run the standard test...
View ArticleForum Post: RE: Sales Invoice Report
That's totally a different concept altogether in NAV 2013 Reports. There's a concept called GetData and SetData which handles this on which you have stuck right now. In the body part of the report and...
View ArticleForum Post: RE: Sales Invoice Report
I can't seem to see that anywhere, if it helps I am working on 206 - Sales Invoice, does this show up when I open the report in report builder?
View ArticleForum Post: RE: Sales Invoice Report
That's my bad, I have found it hidden behind the report data, thanks for your help.
View ArticleForum Post: RE: How to Send Some field data from Sales Header and Line to a...
Make the fields in your new table with the same ID as that of Sales header and Sales Line and use TRANSFERFIELDS.
View ArticleForum Post: RE: Running Multiple instances of the same Report
Hi Aitor, Whenever you run the report, then it runs it for each of the packheaders in the filter. You need to filter the record you use to run the report, so that it only selects the one in your...
View ArticleForum Post: RE: Failed to add field in my sales line table NAV
Hi Erik, i purposely disable it as when i enable it... i will get error message as shows in my question.
View ArticleForum Post: RE: export to excel
i am not able to understand this can anyone else help me to do this
View ArticleForum Post: RE: Delete all the special characters from a string
HI, If you want to delete the special characters from string, you can use "strAlpha" function. This copies only the alphanumeric characters from a string. Ex : info(strFmt("%1",...
View ArticleForum Post: RE: Running Multiple instances of the same Report
Thank you both! I've solved the problem with this code: PackHeader.RESET; CurrPage.SETSELECTIONFILTER(PackHeader); IF PackHeader.FINDSET THEN REPEAT PackHeader2.reset; PackHeader2.setrange( "No." ,...
View ArticleForum Post: RE: Failed to add field in my sales line table NAV
Ok. But back to the basics then. Navision does not accept NULL values at all. Not even in version 4. So exactly how does this error happen? You write "user facing the error", is it only one user? Also...
View ArticleForum Post: RE: export to excel
Hii please share your code i can not understand properly,try this code.. //For NAV 2009 You can try this Code ExcelBuf.CreateBook; ExcelBuf.CreateSheet('SheetName','Headername',COMPANYNAME,USERID);...
View ArticleForum Post: RE: how to write code for editable and noneditable(Boolean type...
which version is it? Did you google it?
View ArticleForum Post: RE: Creating New database in Nav Development it throwing error
Hi, You get this error when trying to create it from DE, then I assume that you already created it with the same name in SQL? NAV cannot see it because it's just a SQL database, not NAV database. So it...
View ArticleBlog Post: My first Dynamics 365 Extension – step by step – eight step
Now we have gotten to Step 4 in the guided path Microsoft offered us on PartnerSource . Step 4: Provide your offer information After you have built your app, you will need to define all the attributes...
View ArticleForum Post: RE: Failed to add field in my sales line table NAV
Hi Erik, Yeah... i am adding a new field. not one user but all user cannot doing posting that involve sales line table. All forms that involve this "sales line" table cannot be use if i enable the new...
View ArticleForum Post: RE: how to write code for editable and noneditable(Boolean type...
Write Code something like If A THEN BEGIN B:=FALSE; C:=FALSE; END
View ArticleBlog Post: Check windows client’s execution mode at runtime
If you want to check if the windows client is run in config mode at runtime, then there is an easy method to do that: // variables Env : DotNet : System.Environment.'mscorlib, Version=4.0.0.0,...
View Article