× 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.



Jeremy,

As Jon said. Your admin folks will understand. Basically it takes the fundamentals of "work management" as documented at:
https://www.ibm.com/docs/en/i/7.5?topic=management-work
A good reference but not a good study guide.

What version of the OS are you running?

Basically there are a few ways of doing autostart stuff. I'll try to speak in your language: SQL. However some of the is limited to the release of OS you are at.

One way is by the program listed in:
select *
from qsys2.system_value_info
where SYSTEM_VALUE_NAME = 'QSTRUPPGM';

One is by using the command ADDAJE so that the entry appears in
select *
from qsys2.autostart_job_info;
You could also modify one of the existing entries in that list.
This will fire off those jobs when those subsystems are started.
This is tied to the entries in:
select *
from qsys2.job_description_info jd
join qsys2.autostart_job_info aje
on jd.job_description_library = aje.job_description_library
and jd.job_description = aje.job_description
;

Ok for you to read the SQL's but I would leave the modifying up to your admins.

For more information see the toc in the link I provided earlier or see the following:
https://www.ibm.com/support/pages/node/1119123




Rob Berendt

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
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.