Hi,
I am pretty new to this iSeries stuff so bear with me
My machine runs V5R4 and I have a few things that I need it to do whenever it IPL's. I need it to start a couple of subsystems, a program and Keyes fax communication. I am doing the programming in IBM Rational Developer. One thing I want a few opinions on is whether to create a new program and then set it as the startup program and write it like so
PGM
QSYS/CALL PGM(QSYS/QSTRUP)
MONMSG MSGID(CPF0000)
QSYS/STRSBS SBSD(DSTACX)
MONMSG MSGID(CPF0000)
QSYS/STRSBS SBSD(WEBJOBS)
MONMSG MSGID(CPF0000)
QSYS/CALL PGM(DSTDATA/STRTURBOWD)
MONMSG MSGID(CPF0000)
ENDPGM
So that the original IBM Supplied startup program doesn't get touched at all. Or it is better to just retrieve the source for the originally supplied program and edit that then when I compile it compile to a different library such as QGPL and the make that the startup program or just edit that original program and compile to the QSYS library. I have a few other questions but they depend on the answer of the original question. Hopefully some of you guru's can give me your opinions on this.
Thanks,
Kelly Peterson
I am pretty new to this iSeries stuff so bear with me

My machine runs V5R4 and I have a few things that I need it to do whenever it IPL's. I need it to start a couple of subsystems, a program and Keyes fax communication. I am doing the programming in IBM Rational Developer. One thing I want a few opinions on is whether to create a new program and then set it as the startup program and write it like so
PGM
QSYS/CALL PGM(QSYS/QSTRUP)
MONMSG MSGID(CPF0000)
QSYS/STRSBS SBSD(DSTACX)
MONMSG MSGID(CPF0000)
QSYS/STRSBS SBSD(WEBJOBS)
MONMSG MSGID(CPF0000)
QSYS/CALL PGM(DSTDATA/STRTURBOWD)
MONMSG MSGID(CPF0000)
ENDPGM
So that the original IBM Supplied startup program doesn't get touched at all. Or it is better to just retrieve the source for the originally supplied program and edit that then when I compile it compile to a different library such as QGPL and the make that the startup program or just edit that original program and compile to the QSYS library. I have a few other questions but they depend on the answer of the original question. Hopefully some of you guru's can give me your opinions on this.
Thanks,
Kelly Peterson





Comment