Does anyone know what this error means? And why I am getting it on an unmodified version of NAV2016 GB when trying to import an excel file into the Rapid Start Configuration Package?
This error really comes when you dont have instantiated your DotNet or Automation Variables.
Your error reflects for DotNet so to instantiate DotNet variable we use to write this Code
IF ISNULL(DotNetVariable) THEN
DotNetVariable := DotNetVariable.Constructor;
But in this it seems to be a standard Object so you need to crosscheck this.
I could have strongly recommended you to write the code what i wrote above if it would have been your customized object but the point is its a standard object of NAV not the custom one.
Did you ever did anything to the standard code or modified some object with your custom one Or else can you please apply debugger and check which line of code is executing the issue
I hate to ask the hard question, but is Excel installed and working, and of a version that 2016 supports? According to the installation requirements, it has to be Microsoft Office 2016, Microsoft Office 2013 SP1, Microsoft Office 2010 SP2, or Microsoft Office 365.
Kyle - this is a completely fair question! And might just hold the answer. I am running NAV on a Parralels desktop with windows7. The excel is actually the mac version. I will try to install on a newer Windows/Office and see where that takes me. Thanks!
Comments
Is it a standard object?
Hey thomast ,
This error really comes when you dont have instantiated your DotNet or Automation Variables.
Your error reflects for DotNet so to instantiate DotNet variable we use to write this Code
IF ISNULL(DotNetVariable) THEN
DotNetVariable := DotNetVariable.Constructor;
But in this it seems to be a standard Object so you need to crosscheck this.
Thanks
Blog - https://twitter.com/rockwithnav
Twitter - https://twitter.com/rockwithnav
Blog - rockwithnav.wordpress.com/
Twitter - https://twitter.com/RockwithNav
Facebook - https://facebook.com/rockwithnav/
Are you suggesting that I put the code you have written into the standard code?
Thanks again!
I could have strongly recommended you to write the code what i wrote above if it would have been your customized object but the point is its a standard object of NAV not the custom one.
Did you ever did anything to the standard code or modified some object with your custom one Or else can you please apply debugger and check which line of code is executing the issue
Thanks
Blog - https://twitter.com/rockwithnav
Twitter - https://twitter.com/rockwithnav
Blog - rockwithnav.wordpress.com/
Twitter - https://twitter.com/RockwithNav
Facebook - https://facebook.com/rockwithnav/