Hi All,
Since last 3 days we are getting abap dump while running few Z as well as standard tcodes.
Pls find the details-:
Error analysis An R/3 System process was terminated by an operating system signal.
-
Possible reasons for this are:
1. Internal system error.
2. Process was terminated externally (by the system administrator).
-
Last error logged in SAP kernel
How to correct the error
The R/3 System work directory (e.g. /usr/sap/c11/D00/work ) often
contains a file called 'core'.
Save this file under another name.
If you cannot solve the problem yourself and want to send an error
notification to SAP, include the following information:
1. The description of the current problem (short dump)
To save the description, choose "System->List->Save->Local File
(Unconverted)".
Source Code Extract
Line SourceCde
250 FORM SELECT_DATA .
251
252 SELECT * FROM BKPF INTO CORRESPONDING FIELDS OF TABLE IT_BKPF
253 WHERE BUKRS IN P_BUKRS
254 AND GJAHR IN P_GJAHR
255 AND BUDAT IN P_BUDAT ."AND TCODE NE 'ZSISC'.
256 * AND BLDAT in P_BLADT.
257 IF SY-SUBRC NE 0.
258 MESSAGE 'No Records Found....!!' TYPE 'I' .
259 EXIT.
260 ELSEIF SY-SUBRC EQ 0.
261
262 IF NOT IT_BKPF[] IS INITIAL AND INPUT = 'X' ."OR INPUTVAR = 'X'.
263 SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF TABLE P_BSIK FOR ALL ENTRIES IN IT_BKP
264 WHERE BELNR = IT_BKPF-BELNR
265 AND BUKRS = P_BUKRS-LOW
266 AND GJAHR = P_GJAHR-LOW
267 * AND MWSKZ = P_MWSKZ .",''). " COMMENTED B
268 AND MWSKZ IN P_MWSKZ. " ADDED BY
269 SELECT * FROM BSAK APPENDING TABLE P_BSIK FOR ALL ENTRIES IN IT_BKPF[]
270 WHERE BELNR = IT_BKPF-BELNR
271 AND BUKRS = P_BUKRS-LOW
272 AND GJAHR = P_GJAHR-LOW
273 * AND MWSKZ = P_MWSKZ .",''). " COMMENTED B
274 AND MWSKZ IN P_MWSKZ. " ADDED B
275
276 SORT P_BSIK BY BUDAT DESCENDING.
277
waiting for your quick responses.
Regards,
Prashant
Edited by: Prashant Shukla on May 21, 2009 10:28 AM