|
Written by Amit khari
|
|
Sunday, 10 June 2007 |
|
There are a number of jobs that should be scheduled to run on a daily, weekly, or monthly basis. You can run the jobs manually first, and devide how often they should run for the particular system, and then schedule them to run automatically. These jobs delete obsolete files such as print logs, job logs, and ABAP dumps.
- RSBTCDEL: Deletes old batch jobs (sugg. older than 30 days)
- RSPO0041: Deletes old print jobs (sugg. older than 7 days)
- RSBDCREO: Reorganizes batch sessions and logs (sugg. older than 7 days)
- RSSNAPDL: Deletes short dumps (sugg. default values)
- RSBPSTDE: Deletes old job statistics (sugg. older than 30 days)
- RSCOLL00: Statistics collector for performance monitor (this actually is not a cleanup job, but it should be scheduled hourly).
Additionally, there are some cleanup jobs that should be executed manually on a regular basis (usually once a month). These include:
- sqldba: Use the Show/Cleanup commands.
- tp: Use the check all and clearold all commands. Make sure to backup the transport directory first.
- TemSe (temporary seuential data) database check: Transaction SP12. Execute the menu command TemSe database->Consistency Check and delete inconsistent data.
|
|
|
Written by Kevin Wilson
|
|
Thursday, 07 June 2007 |
|
|
|
Read more...
|
|
|
Written by Amit khari
|
|
Thursday, 07 June 2007 |
ABAP/4 Optimization Techniques |
|
Read more...
|
|
|
Written by Amit khari
|
|
Tuesday, 05 June 2007 |
The Debugger is a programming tool that you can use to execute ABAP programs, by line or by section. With this tool, you can display data objects and check the flow logic of programs. Two types of debugging are currently possible: Debugging with the classic Debugger for release levels up to and including 6.40 or debugging with the new Debugger, which is available for all releases after 6.40. The main differences between the classic and the new ABAP Debuggers are described below: |
|
Read more...
|
|
|
Written by Anon.
|
|
Tuesday, 05 June 2007 |
|
How to use the Debugger as a test tool for finding errors in the source code of an ABAP program. |
|
Read more...
|
|
|
Written by Anon.
|
|
Tuesday, 05 June 2007 |
|
Providing information on how to use the New Debugger as a test tool for finding errors in the source code of an ABAP program. |
|
Read more...
|
|
|
Written by Dany Charbonneau
|
|
Tuesday, 05 June 2007 |
It's a known fact that customers are very sensitive to the appeal of charts. Creating graphical charts (bar, pie char, lines graphs) in ABAP is simple. There are two main methods for creating charts in ABAP - Using the class CL_GFW
- Using the function module GFW_PRES_SHOW
There are also other classes and function modules derived from these ones. Use transaction GRAL to explore all possibilities provided by this class and this FM. The following are two short examples of the huge potential of function module GFW_PRES_SHOW : |
|
Read more...
|
|
|
Written by P. Renjith Kumar
|
|
Wednesday, 30 May 2007 |
|
Here you can find the 5 Types of RFC : |
|
Last Updated ( Wednesday, 30 May 2007 )
|
|
Read more...
|
|
|
Written by P. Renjith Kumar
|
|
Wednesday, 30 May 2007 |
|
Here You can find the concepts about LUW : |
|
Last Updated ( Wednesday, 30 May 2007 )
|
|
Read more...
|
|
|
Written by P. Renjith Kumar
|
|
Wednesday, 30 May 2007 |
|
Here You can find the general definition related to Enhancements and Modifications |
|
Last Updated ( Wednesday, 30 May 2007 )
|
|
Read more...
|
|
|
Written by Anon.
|
|
Wednesday, 30 May 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Wednesday, 30 May 2007 |
|
This example shows you how to get the runtime between statements in your ABAP code. |
|
Last Updated ( Wednesday, 30 May 2007 )
|
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Wednesday, 30 May 2007 |
Yes, you can catch a division by zero error... How??? |
|
Read more...
|
|
|
Written by Anon.
|
|
Wednesday, 30 May 2007 |
REPORT demo_mod_tech_macros .
DATA: result TYPE i, n1 TYPE i VALUE 5, n2 TYPE i VALUE 6.
DEFINE operation. result = &1 &2 &3. output &1 &2 &3 result. END-OF-DEFINITION.
DEFINE output. write: / 'The result of &1 &2 &3 is', &4. END-OF-DEFINITION.
operation 4 + 3. operation 2 ** 7. operation n2 - n1. |
|
|
Written by Anon.
|
|
Wednesday, 30 May 2007 |
|
|
|
Last Updated ( Wednesday, 30 May 2007 )
|
|
Read more...
|
|