I have two sessions S1 & S2 under this 3 jobs(say j1,j2,j3
under session S1) And 2 jobs(Say j4, j5 Under session S2)is
running. How many QTEMP & how many LDA will create for the
same.
Answers were Sorted based on User's Feedback
Answer / naveen chandra joshi
For two sessions 2 LDA and 2 QTEMP will be created. Wihtin
the first session, 3 jobs are submitted so that these 3
jobs will have their own QTEMP (3 QTEMP) and LDA (3 LDA).
Second session submitted 2 jobs so that this will have its
own QTEMP (2 QTEMP) and LDA (2 LDA).
Total numbers of LDA and QTEMP will be 7 and 7 respectively.
| Is This Answer Correct ? | 37 Yes | 0 No |
Answer / mahadev
7 qtemp and 2 LDA is correct Answer.
For any job submission done through interactive session the
LDA of interactive session gets copied in submitted job.
(System does not create new LDA for submitted job).
For the jobs j1,j2,j3 submitted through s1, will take LDA of
s1 but new qtemp gets created for each job.
For the jobs j4,j5 submitted through s2, will take LDA of s2
but new qtemp gets created for each job.
The final count of qtemp will be 7 qtemp and 2 LDA.
Qtemp for job - s1, s2, j1, j2,j3,j4,j5
LDA for only - s1 and s2.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / ak
one qtemp for one session and another qtemp for another session.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / deepika
this is the right ans...
7 QTEMP and 2 data area's
| Is This Answer Correct ? | 3 Yes | 9 No |
I have one cl program which calls two rpg programs named a & b. I am loading a run time array in Pgm A and the control comes back to cl pgm. i call pgmb and I want to read the runtime array in pgmb which was loaded in pgma. How it can be acheived. I should not use any intermediate file or dataarea to store the loaded values.
explain sflclr, sflend, sfldlt, and sflcsrrrn?
What is the purpose of PUTOVR keyword?
What is the difference between ITER and DO ? I know both are used to execute set of statements repeatedly, but what is the main difference?
do you use message subfiles? What are the necessary keywords required coding a message subfile?
How can you delete records form a file in rpg without using "Delete" OPCODE?
RPG/400 number of Records present in a physical file using file information data structure FPF001 IP E DISK F KINFDS INFDS1 IINFDS1 DS I *RECORD RECORD Is this coding correct sir,i have given I P E that is I- input,P-primary file,E-externally described. Primary to use RPG logic cycle,is this the correct method because we have to find number of records present using file information data structure in RPG/400 without doing any input/output operations on the file and also without using DSPFD,SQL. If the above coding is correct means,when i compile the program it gets compiled,but if i call the program it does not return anything,i need number of records,please complete the coding sir.
Mr.Yallamanda Reddy P thanks for your answer sir,can we use test(D) opcode in RPG/400,if yes please help me by eloborating on that answer by writing a sample code for that sir
Whether a module can consists of many procedures or it can consist of subprocedures having a main procedure?If it is possible that it can contain many individual procedures than can we have different name for complete module and how do we call this module in main modul?
What is a record lock error?
what is an online rpg?
What will be the value of STRING after line 0106 is executed in the code below? 0101 E* Fromfiletofile..tabnameprnentlenpdatabnamlenpda 0102 E ARR 8 1 0103 ISTRING DS 0104 I 1 8 ARR 0105 C MOVE *BLANK STRING 0106 C MOVEA'ABC' ARR A) 'AAAAAAAA' B) 'BBBBBBBB' C) 'CCCCCCCC' D) 'ABC ' E) ' ABC'