Restarting the Software Update Checklist

Today I did an inplace upgrade of AX 2012 CU 8 to CU 10 and found myself having a strange issue. As part of the upgrade you need to complete a checklist including such things as Compile application and detect conflicts… and there is also a couple of times where you need to restart the AOS. When I did this the checklist disapeared and I could not find it. Turns out you can restart it by going to System administration > Setup > Checklists > Software Update Checklist

That all for today folks…

/Johan

En Liten Podd Om It – Avsnitt 57 – Sex laxar i en laxask

Hejsan Hoppsan…

 

I veckans avsnitt
betar vi precis som vanligt av nyheterna från veckan. Vi hinner givetvis med en
del Microsoft nyheter så som en ny alarm app, Surface gate, Office insider på
Mac och en hel del till. Förutom det pratar vi även om hur Svenska staten har planer
på att filtrera internet och en liten teaser om hemautomation. På pryllistan
finns bland annat en knapp…

Länken till förklaringen till Amazon Prime Air

Nu kör vi

 

Mats & Johan 

En Liten Podd Om It – Avsnitt 56 – #Pappaledighetsxboxone

Hej och välkomna till Hajk…

Vi är nu tillbaka
med årets andra avsnitt där vi som vanligt avhandlar vad som som hänt i veckan.
Det har kommit inte mindre än tre nya builds; en Windows 10 Mobile, en för alla
och en för fast ring. Vi pratar en del om Microsoft utspel att äldre versioner
av Windows inte kommer att fungera på nyare hårdvara. Mats gottar sig i årets
kommande speltitlar. Vi kikar lite på buggen i Apples gatekeeper.

 

I avsnittet pratar
vi om hur man döljer notifieringarna Windows 10 uppdateringen: https://support.microsoft.com/en-us/kb/3080351

Mats & Johan

En Liten Podd Om It – Avsnitt 55 – Äger du en selfiestick?

God fortsättning

 

Nu är vi äntligen
tillbaka efter ett långt och välbehövligt jullov och bränner av ett av de
längsta avsnitten i poddens historia. I dagens avsnitt pratar vi en del Xbox,
lite krypteringsnycklar för Windows 10, lite CES, lite Google och äntligen en
lyssnarfråga 🙂

 

Nytt åt nya poddat,
nu kör vi!

 

Mats & Johan

 

Länken i podden

http://www.engadget.com/2015/12/27/homemade-laser-lightsaber/

En Liten Podd Om It – Avsnitt 54 – Det är fanboy bonusen…

Natten går tunga
fjät och Staffan var en stalledräng… idag sitter vi här på Lucia och snackar
prylar och en del annat. I veckans avsnitt pratar vi OneDrive, Cortana, Skype
Translate, Marshmallow, Apples Battery Pack, Google Authenticator och en hel
massa annat…

 

På pryllistan ligger
idag nerdprylar som vi som är nerdar kan köpa till personer som inte är nerdar
eller extremt teknikintresserade.

 

Nu kör vi

 

Mats & Johan

 

Onedrivelänken: https://preview.onedrive.com/bonus/

En Liten Podd Om It – Avsnitt 53 – Dell, julklappar och kondomer

Hejsan hoppsan…

Några enstaka helger
till jul och vi sitter här som vanligt och myser en söndagsmorgon över kaffe
och pratar teknik. I dagens avsnitt pratar vi en del om Windows 10 Mobile där
vi i veckan har fått information om Project Astoria och en ny build. Vi pratar
även om en lite udda telefon som fått Marshmallow. Vidare har OnePlus gjort
något av en trojansk häst i veckan och givetvis en hel massa till

 

Pryllistan följer
samma tema som förr veckan, nämligen julklappar till nerdar

Nu kör vi

Mats & Johan

Creating a crash dump of a crashing service

Once in a while it happens that processes and services crashes and when they do you will need a dump. There are some ways to do this using for instance Sysinternals ProcDump, but at some of our customers they have policy do log inactive users of the servers and since ProcDump is running interactively that will not work.

Instead you can use Windows Error Reporting to do this and the good thing… it is builtin to Windows. Here is how you do it:

  1. Start Regedit
  2. Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps (if the LocalDumps key does not exist, just create it)
  3. Create a new key with name of the process you are trying to debug, in my case Ax32Serv.exe
  4. Under the key you just created you create the settings… in my case
    DumpCount = 1
    DumpType = 2
    Which means I want one full dump. The dump will end up in the default directory %LOCALAPPDATA%\CrashDumps (all of these settings are documented in the first link below)

And now we wait…

Links
https://msdn.microsoft.com/en-us/library/windows/desktop/bb787181(v=vs.85).aspx
http://blogs.technet.com/b/kristinw/archive/2012/10/03/procdump-how-to-properly-gather-dump-dmp-files-for-crashes-and-hangs.aspx

The DefaultValue expression for the report parameter ‘AX_CompanyName’ contains an error: Request for the permission of type ‘System.Security.Permissions.EnvironmentPermission

This is a follow up to the last post regarding Reports in AX.

When I tried the report I published I got an other error:  The DefaultValue expression for the report parameter ‘AX_CompanyName’ contains an error: Request for the permission of type ‘System.Security.Permissions.EnvironmentPermission

image

When I tried the report again it worked… Weird!

Apparently it has to do with the configuration of SSRS. If you open the SSRS configuration file called rssrvpolicy.config in

C:\Program Files\Microsoft SQL Server\MSRS12.MSSQLSERVER\Reporting Services\ReportServer

Find the line PermissionSetName=’Execution’ and change it to PermissionSetName=”FullTrust” (remember to make a backup of the file before you change it)

/Johan

Links
https://community.dynamics.com/ax/b/axsupport/archive/2012/02/02/microsoft-dynamics-ax-2012-reporting-extensions-error-system-security-permissions-environmentpermission-while-running-report

rsItemNotFount in AX 2012

So this one involves Reporting Services and AX. One of my customers had an issue printing a report today and the error he got was that the report did not exist.

image

I checked the SSRS web UI and sure enough I could see it… The problem was that it was not correctly published from AX. To fix this I went into the UAT (Ctrl?D), found the report, right-clicked it and clicked Deploy Element.

image

I tried it and everything looked fine and dandy… or so I thought Sad smile

When I went into the SSRS Web I found that the reports I just published ended up in a new subfolder and not in the standard DynamicsAX folder

image

Turned out there was an error in the AX Reporting Server Setup
image should be image

So I changed it and everything worked fine. Remember to delete the extra folder that was created by mistake in SSRS Web.

So the problem was actually in my case not an issue with a published report… it was an error with the path containing reports…

That’s all for today

/Johan

Links:
http://axbloggerblog.blogspot.se/2012/01/deploy-dynamics-ax-2012-default-ssrs.html

En Liten Podd Om It – Avsnitt 52 – Dell, julklappar och kondomer

Hejsan
Vi börjar närma oss December med stormsteg och tänkte därför ha med en liten lista med de bästa nerdjulklapparna för er som är lite osäkra. Men innan dess pratar vi om Windows 10 mobile, the fall uptate, black friday, Dell, Googles Star Wars Nerderi och en hel del annat
För er om inte sett filmen som det pratas om i podden är här ett klipp: https://youtu.be/Ky5u6vm44ak?t=221
Nu kör vi
/Mats & Johan