Skip to main content

Hello,

please when I try to do this:

call "CBL_DIR_SCAN_START"
using by reference handle
                                  pattern
by value search-attribute
                               flags
returning search-status
end-call

I got error 173 - Called program not found

I got this message on environment where I have Net Express 3.1. On the other one, where I have Net Express 5.1 everything work fine.


#COBOL

Hello,

please when I try to do this:

call "CBL_DIR_SCAN_START"
using by reference handle
                                  pattern
by value search-attribute
                               flags
returning search-status
end-call

I got error 173 - Called program not found

I got this message on environment where I have Net Express 3.1. On the other one, where I have Net Express 5.1 everything work fine.


#COBOL

The CBL_DIR_SCAN library routines were added in Net Express 4.0 and higher so they do not exist in NX 3.1. To scan a directories contents in NX 3.1 you should use the call by number routine X'91' function 69 which is documented here.


Hello,

please when I try to do this:

call "CBL_DIR_SCAN_START"
using by reference handle
                                  pattern
by value search-attribute
                               flags
returning search-status
end-call

I got error 173 - Called program not found

I got this message on environment where I have Net Express 3.1. On the other one, where I have Net Express 5.1 everything work fine.


#COBOL

Thanks