× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Thanks Rob and Chuck! A combination of both...I created a QCMDEXC stored
procedure and used it to add the library list entry. I'm then able to call
the mts_rtv_test_data_srvpr and it's getting the data from the correct
table.


On Wed, Jul 24, 2013 at 2:40 PM, CRPence <CRPbottle@xxxxxxxxx> wrote:

On 24 Jul 2013 11:00, Michael Ryan wrote:
Using Navigator, I'm invoking a service program procedure that
returns a result set. I'm not picking up the data that I want. Here's
the little script in Navigator:

set path = 'MPOSSTAG';
call mts_rtv_test_data_srvpr(011,0,' ');

The stored procedure is executing the service program procedure and
returning the result set. However, the data in the result set isn't
from library MPOSSTAG, it's from library NEWSYS. NEWSYS is in all
jobs library list, but I thought the SET PATH statement would put
library MPOSSTAG in the library list (effectively) so it would be
searched too.

That isn't happening. Any ideas? Thanks!

The PATH establishes where to search for executable code, not where
to search for the data. For locating data, that is either the library
list for system naming, the authorization id for SQL naming, or the
current SCHEMA [aka default collection]. What the above SQL does in two
statements, is effecting most notably in the one statement; i.e.
effectively qualifies the procedure named on the SQL CALL:

call MPOSSTAG.mts_rtv_test_data_srvpr(011, 0, ' ');

p.s. Note how I added a blank after each of the commas to ensure the
SQL recognizes there are three arguments, the first two are integer and
the last is varchar(1), irrespective of language.

--
Regards, Chuck
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.