This is almost certainly due to security issues on the AS400.
The 83/1A is because the ICF (Intrasystem Communication File) device ODEXINTR00 cannot be contacted by the ODEX programs. This in turn is probably because it has been varied on to the wrong subsystem or that ODEX does not have the authorities to use it.
With AS400 installations you MUST do things in the exact sequence as defined in the manual.
The quickest way to resolve this is to start again on the security section of the manual on page 3-3 part 4 (where Libraryname is normally "ODEX400", UserProfile is normally "ODEXOWNER" and nn is normally numeric "00"):
Initial security logged on as QSECOFR:
RVKOBJAUT OBJ(Libraryname/*ALL) OBJTYPE(*ALL) USER(ODEXOWNER) AUT(*ALL)
RVKOBJAUT OBJ(Libraryname) OBJTYPE(*LIB) USER(ODEXOWNER) AUT(*ALL)
GRTOBJAUT OBJ(Libraryname) OBJTYPE(*LIB) USER(UserProfile) AUT(*ALL)
GRTOBJAUT OBJ(Libraryname/*ALL) OBJTYPE(*ALL) USER(UserProfile) AUT(*ALL)
Log off as QSECOFR and on again as ODEXOWNER (which will need to have SYSOPR privileges for the creation of the ICF device etc)
CALL PGM(Libraryname/CRTODXLIB) PARM(‘Libraryname‘ ‘nn‘ ‘UserProfile‘)
Then, to start the system up, (also logged on as ODEXOWNER):
Ensure ODEX00 subsystem is running
VRYCFG CFGOBJ(ODEXINTR00) CFGTYPE(*DEV) STATUS(*ON)
If you are using X.25 you will need:
WRKCFGSTS CFGTYPE(*LIN) CFGD(Line Description)
And then:
ODEXSTART
Basically it is all in the manual and, unlike Windows installations, this must be followed to the letter and all commands checked to ensure they have worked before moving on to the next.