Skip to main content

173 Error when calling a COBOL program in a different rununit.

  • February 15, 2013
  • 0 replies
  • 0 views

Problem:

You can get a 173 Error Exception in .Net is you attempt to call a program that resides in a different namespace if that other assembly has not already been loaded.

Resolution:

You can fix this by adding the namespace to the call:-

call "namespace1.program1" using .....

Old KB# 3887