Tuesday, December 29, 2009

AS/400 Jobs

Please post your AS/400 job requirements here.



Read More...

AS/400 Programmer Contacts

For AS/400 Job Seekers, please post your qualifications here:

Sample Information
Name : Juan Dela Cruz
Location : Philippines
E-Mail : jdelacruz@gmail.com
Skills : RPG, RPG-ILE, CL, CL-ILE, SQL/400
Yrs. of Exp. : 5 yrs.
Availability : ASAP



Read More...

Monday, December 14, 2009

(Tips) AS/400 Free Connection

FREE AS/400 connection, SIGNUP now!

RZKH is a modern and independant Consulting and service company. They offer service in whole germany, austria, switzerland and adjoining countries. Their main business activities cover the IBM system i (also known as iSeries or AS/400).

To connect to the AS/400 you may DOWNLOAD Mochasoft's TN 5250 client for FREE (30 days) or you may use any 5250 telnet program.
Read More...

Thursday, December 10, 2009

(Q&A) How To Display Library Contents Using CL?

(From : aaaadddd1)

Does anyone knows a process or CL that uses DSPLIB to display the contents of a library and their attributes, such as their size and last used date, followed by creating a file that I can query against?

My goal is to first list the name, last used date and size of all objects in a production library and delete objects that have not been used in more than a year.

You can do this by using:
DSPOBJD OBJ(MYLIBRARY/*ALL) OBJTYPE(*ALL) OUTPUT(*OUTFILE)OUTFILE(QTEMP/MYFILE)

Where:
MYLIBRARY - the desired library.
MYFILE - Outfile Filename.

You can use these fields as reference:
ODLBNM - Libray
ODOBNM - Object Name
ODOBTP - Object Type
ODOBSZ - Object Size
ODCDAT - Creation Date
ODCTIM - Creation Time
ODOBOW - Object Owner
ODLDAT - Change Date
ODLTIM - Change Time

I hope this will help you.
Read More...