‎2008 Jun 17 1:10 PM
Hi,
What are the various reasons for leading to dump,
like for example
-
> Type mismatch
what could be the other reasons
regards
‎2008 Jun 17 1:14 PM
Hi,
In the SAP R/3 system when serious program error occurs, the system terminates the current program and generates an ABAP/4 short dump. The ABAP/4 short dump is basically a list containing explanation about the possible causes of error. Short dumps are kept in a table called SNAP. It is the job of the administrator to regularly check the dump entries (if any) in the system on a daily basis, and take necessary corrective action by consulting with the user who has generated the short dump. Perform the following sequence of actions in order to view and analyze the short dumps in the system:
u2022 From the SAP R/3 main screen choose the option Tools -> Administration, Monitor -> Dump Analysis. Alternately execute the transaction ST22.
u2022 On the following u2018ABAP/4 Dump Analysisu2019 screen we can view the number of dumps generated in the current day and the previous day.
u2022 Select the current day, and click the u2018Display listu2019 icon.
u2022 On the following screen we will get a list of the short dumps. Double click on any one of them to go to the corresponding dump analysis screen. Read the short dump analysis and come up with a solution (if possible). If we are unable to solve the problem ourselves, then we should communicate the problem to SAP Helpdesk and send them a copy of the relevant portion of the dump analysis report.
If we want to keep a particular dump for further analysis, then we can prevent it from being deleted by periodic background housekeeping jobs by selecting the dump in the list of dumps and choosing the menu option Short Dump -> Keep/Release.
go through this links:
Regards
Adil
‎2008 Jun 17 1:14 PM
There are many reasons that lead to a dump..
like ..
1.u are calling a function module, there u are missing one parameter.
2.in select statement u are not fetching data in proper order..
and many other reasons are there.............
If u are having a dump..u can see and analyze the same in st22.
It will show where and how the dump occured.
Reward points if the above is useful
Edited by: Rudra Prasanna Mohapatra on Jun 17, 2008 2:14 PM
‎2008 Jun 17 1:14 PM
Other can be field symbol not assigned .It occurs in ALv report if you don't fill the fieldcatalog properly.Also if there is mismatch between the parameters passed to the function modules,you an see the dump.U can analyze them through tcode ST22.
‎2008 Jun 17 1:14 PM
Hi,
In the SAP R/3 system when serious program error occurs, the system terminates the current program and generates an ABAP/4 short dump. The ABAP/4 short dump is basically a list containing explanation about the possible causes of error. Short dumps are kept in a table called SNAP. It is the job of the administrator to regularly check the dump entries (if any) in the system on a daily basis, and take necessary corrective action by consulting with the user who has generated the short dump. Perform the following sequence of actions in order to view and analyze the short dumps in the system:
u2022 From the SAP R/3 main screen choose the option Tools -> Administration, Monitor -> Dump Analysis. Alternately execute the transaction ST22.
u2022 On the following u2018ABAP/4 Dump Analysisu2019 screen we can view the number of dumps generated in the current day and the previous day.
u2022 Select the current day, and click the u2018Display listu2019 icon.
u2022 On the following screen we will get a list of the short dumps. Double click on any one of them to go to the corresponding dump analysis screen. Read the short dump analysis and come up with a solution (if possible). If we are unable to solve the problem ourselves, then we should communicate the problem to SAP Helpdesk and send them a copy of the relevant portion of the dump analysis report.
If we want to keep a particular dump for further analysis, then we can prevent it from being deleted by periodic background housekeeping jobs by selecting the dump in the list of dumps and choosing the menu option Short Dump -> Keep/Release.
go through this links:
Regards
Adil
‎2008 Jun 17 1:15 PM
you could call a function module by passing the wrong parameters. That could be a reason for dump. Dump could eveb occur if ur program takes long to execute. As an abaper you never know when a dump occurs...It could be coz of a small mistake.
Nayan
‎2008 Jun 17 1:16 PM
hi,
u cannot specify certain reasons for dump.
any statement which cannot be rectified by the system will lead to dump.
check the errors in ST22 .
reward points if hlpful.
‎2008 Jun 17 1:16 PM
hiii
In select query if order of the fields are different then in structure then also program goes for dump.Many other reasons are there for dump.if logic is incorrect & program doesnt know what to means a big error then dump will be there as an error.It is not sure every time that when program will go for dump.
reward if useful
thx
twinkal
‎2008 Jun 17 1:17 PM
Hi ,
type mismatch occurs when you are giving one type of value to another type of variable.
Mostly while using function module we do this type of mistake while passing the parameters .If the type parameter type is not matching with the variable we are passing to the parameter then this type of dump occurs.
‎2008 Jun 17 1:18 PM
Hi abap learner,
welcome to sdn.,
pls refer this links....
http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/f2bbcb142c11d3b93a0000e8353423/content.htm
http://help.sap.com/saphelp_nw04s/helpdata/en/d9/4a903d51ea11d189570000e829fbbd/content.htm
http://www.sapfans.com/sapfans/repos/saptips.htm
thanks
shankar
reward me if usefull
‎2008 Jun 17 1:31 PM