list down and describe the sub systems vailable
Answers were Sorted based on User's Feedback
Answer / sudhir
Just type WRKSBS command to get all the subsystems..
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / vinu sharad
List of subsystems are:
QINTER,QBATCH,QBASE,QCMN,QSPL,QCTL
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / swetha p rao
QINTER,QPGMR ,QBATCH,QBATCH2 are some of the system
subsystems
qinter is the subsystem where you login and for interactive
jobs
Qbatch is for batch jobs
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / chandrababu
Simple IBM supplied Subsystem configuration:
-> QBASE : Supports Interactive, Batch and communication jobs.
-> QSPL : Spool subsystem that supports reader/writer jobs.
-> QCTL : Controlling Subsystem that starts up the system console.
-> QINTER : Supports Interactive jobs.
-> QBATCH : Supports Batch jobs.
-> QCMN : Supports all communication jobs.
Hope this is clear..
Chandra.
| Is This Answer Correct ? | 0 Yes | 0 No |
How can i check the object existance in RPG program without using QCMDEXC command.
How to create a key field for a logical file inside RPG?
I have some doubts on subfile----------- -----I wrote a prog on subfile to display the records. Every thing is clear but i defined a field called "opt" as input field in subfile record format from that input field i wish to enter into new screen called "EDIT" which i created it as a separate RCD in display file. i gave opt as 2 for edit just like in WRKMBRPDM screen please telll me the code and how can i code for it in RPG.
If my rpg program has a date field, what extra care I have to take while compiling that rpg program? If the file is keyed and I have declared the file as well as key list properly in my program. Still am getting an error message like "chain/reade operation is not allowed" what may be the case?
how to find whether a date format is valid or not in RPG400 not in RPGILE.Can you please write the coding for this sir,i'm new to AS400.Please help.
How Commitment and Roll back control is used in as400, explain with real time senario ???
Can we create 300 logical files based on a single physical file using the CRTLF command only once?.
How do you find out whether a record is present in the physical file without reading the file? for Example Employee No: 100 in an Employee master.How do we find out whther 100 is present in Employee master without reading the file?
11 Answers Bank Of America, CSC, IBM,
Why Rpg/400 is Famous?
without logical file we cannot access the data in physical file.but we specify physical file in the program(ie:- Ffile IF E k disk).how can it be accessed?
i)What is the command to lock a file in a program ii)2. Can you get a level check error in a CL program
can any body correct the following code? Following a procedure which returns the maximum of two numbers.Correct the following code. P GETMAX B D GETMAX PI D NUM1 35 0 D NUM2 45 0 C IF NUM1 > NUM2 C RETURN NUM1 C ELSE C RETURN NUM2 C ENDIF P GETMAX E