View previous topic :: View next topic |
Author |
Message |
Jai Beginner
Joined: 06 Jun 2003 Posts: 57 Topics: 20
|
Posted: Fri Sep 19, 2003 12:29 pm Post subject: S04E |
|
|
Hi Friends,
Please let me know how to resolve S04E Abend.
While inserting into Global Temporary Table, I am getting this error
I am selecting one more Global Temporary table inside while inserting the values in this Global Temporary table.
I heard that it can be due to pool allocation problem also.
Please let me know the possible solutions.
Thanks & Regards,
Jai _________________ Have a Great Day.
Thanks & Regards,
Jai |
|
Back to top |
|
 |
Bithead Advanced

Joined: 03 Jan 2003 Posts: 550 Topics: 23 Location: Michigan, USA
|
Posted: Fri Sep 19, 2003 12:32 pm Post subject: |
|
|
Please include SQLCode and Reason Code. |
|
Back to top |
|
 |
Jai Beginner
Joined: 06 Jun 2003 Posts: 57 Topics: 20
|
Posted: Fri Sep 19, 2003 12:46 pm Post subject: |
|
|
Hi Bithead,
Please find the details in systsprt:
DSN ENDED DUE TO ERROR+
SYSTEM ABEND CODE 04E REASON CODE 00E70005
Please find the details in sysout:
CEE3250C The system or user abend S04E R=00E70005 was issued.
From compile unit UPDTB2 at entry point UPDTB2 at statement 1760 at compile unit offset +00002312 at address 3EA6ADF2.
<> LEAID ENTERED (LEVEL 09/02/1999 AT 08.41)
<> LEAID ABENDAID DD ALLOCATED BY CWBMAKDD DYNALLOC RC =00000
In the line 1760 , I am inserting into one GTT(Global Temporary Table)
EXEC SQL
INSERT INTO SESSION.GTT3
(SELECT CAP_SE_NO FROM SESSION.GTT1
UNION
SELECT DISTINCT(CAP_SE_NO)
FROM SE_DETAIL
WHERE CAP_SE_NO <> '0000000000'
AND SKI_RT_LVL_CD = 'S' AND SE_HIER_CD = 'S'
)
END-EXEC
PERFORM SQL-INITIAL UNTIL SQL-INIT-DONE
CALL 'DSNHLI' USING SQL-PLIST13
and 1760 line is
CALL 'DSNHLI' USING SQL-PLIST13
and PERFORM SQL-INITIAL UNTIL SQL-INIT-DONE
CALL 'DSNHLI' USING SQL-PLIST13 is not in the program as you know.
GTTs are already declared.
Thanks in advance. _________________ Have a Great Day.
Thanks & Regards,
Jai |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
|
|