what do you mean by SESSION/DEVOCE ERROR?
Answer / vikram malik
Session device error occurs normally with sub-files
whenever we are going to
1. Incorrect record number in subfile SFLRCDNBR
2. Trying to show empty subfile
3. Field and position in display file are matching
4. Trying to write more than 9999 records
| Is This Answer Correct ? | 7 Yes | 0 No |
We have job which is running as batch. It takes atleast 06 hours to complete tht job. But I wanna do tht job with in 3 hours?
what is data area and how it is used in rpg program ?
what happens when sflsiz = sflpag? What are the advantages and disadvantages?
what is use of sflnxtchg and use of MDT(modify data tag).both r same r not and can we use these on dspf and subfile.
What is the RPG cycle?
in which journalling which attributes are necessary
Hi, I am getting the error in RPG (All Record Formats for externally-described file ABCD ignored or dropped due to error; file ignored.) Please suggest any
what is program status data structure?
how can we find setll setgt chain read reade readp operations are successfull or not,give example.explain in detail.
can you debug ile rpg program using isdb?
wat is the difference between dataarea and data queue?
5 Answers Airtel, Four soft, Shahi Exports,
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