메뉴 건너뛰기

SAP 한국 커뮤니티

ABAP/4 Optimization Techniques

sapjoy 2007.06.30 13:21 조회 수 : 4894 추천:28

ABAP/4 Optimization Techniques



  1. ABAP/4 programs can take a very long time to execute, and can make other processes have to wait before executing. Here are some tips to speed up your programs and reduce the load your programs put on the system:

  2. Use the GET RUN TIME command to help evaluate performance. It's hard to know whether that optimization technique REALLY helps unless you test it out. Using this tool can help you know what is effective, under what kinds of conditions. The GET RUN TIME has problems under multiple CPUs, so you should use it to test small pieces of your program, rather than the whole program.


  3. Generally, try to reduce I/O first, then memory, then CPU activity. I/O operations that read/write to hard disk are always the most expensive operations. Memory, if not controlled, may have to be written to swap space on the hard disk, which therefore increases your I/O read/writes to disk. CPU activity can be reduced by careful program design, and by using commands such as SUM (SQL) and COLLECT (ABAP/4).

  4. Avoid 'SELECT *', especially in tables that have a lot of fields. Use SELECT A B C INTO instead, so that fields are only read if they are used. This can make a very big difference.
    Field-groups can be useful for multi-level sorting and displaying. However, they write their data to the system's paging space, rather than to memory (internal tables use memory). For this reason, field-groups are only appropriate for processing large lists (e.g. over 50,000 records). If you have large lists, you should work with the systems administrator to decide the maximum amount of RAM your program should use, and from that, calculate how much space your lists will use. Then you can decide whether to write the data to memory or swap space. See the
    Fieldgroups ABAP example.

  5. Use as many table keys as possible in the WHERE part of your select statements.
    Whenever possible, design the program to access a relatively constant number of records (for instance, if you only access the transactions for one month, then there probably will be a reasonable range, like 1200-1800, for the number of transactions inputted within that month). Then use a SELECT A B C INTO TABLE ITAB statement.

  6. Get a good idea of how many records you will be accessing. Log into your productive system, and use SE80 -> Dictionary Objects (press Edit), enter the table name you want to see, and press Display. Go To Utilities -> Table Contents to query the table contents and see the number of records. This is extremely useful in optimizing a program's memory allocation.

  7. Try to make the user interface such that the program gradually unfolds more information to the user, rather than giving a huge list of information all at once to the user.

  8. Declare your internal tables using OCCURS NUM_RECS, where NUM_RECS is the number of records you expect to be accessing. If the number of records exceeds NUM_RECS, the data will be kept in swap space (not memory).

  9. Use SELECT A B C INTO TABLE ITAB whenever possible. This will read all of the records into the itab in one operation, rather than repeated operations that result from a SELECT A B C INTO ITAB... ENDSELECT statement. Make sure that ITAB is declared with OCCURS NUM_RECS, where NUM_RECS is the number of records you expect to access.

  10. If the number of records you are reading is constantly growing, you may be able to break it into chunks of relatively constant size. For instance, if you have to read all records from 1991 to present, you can break it into quarters, and read all records one quarter at a time. This will reduce I/O operations. Test extensively with GET RUN TIME when using this method.

  11. Know how to use the 'collect' command. It can be very efficient.

  12. Use the SELECT SINGLE command whenever possible.

  13. Many tables contain totals fields (such as monthly expense totals). Use these avoid wasting resources by calculating a total that has already been calculated and stored.

 

번호 제목 글쓴이 날짜 조회 수
127 트리 만들기 [6] 푸른밤 2007.07.31 5348
126 인용부호를 변수에 저장하려면 [2] 푸른밤 2007.07.31 3847
125 일/주/월/분기/년..연산가능 펑션~ [7] 초짜 2007.07.31 5204
124 user-exit 찾기 [12] file 솔로몬 2007.07.31 6039
123 pop up message 보내고 싶을때 허접하지만 오다리 2007.07.30 4392
122 설명이 비교적 자세하고 원리를 알수 있는 효과적인 ABAP코딩 문서.doc [13] file 박영신 2007.07.26 4041
121 Five Different "User Types" D.Y.Kim 2007.07.20 4779
120 What Are Lock Objects ? D.Y.Kim 2007.07.20 7687
119 SELECT statement D.Y.Kim 2007.07.20 23647
118 일자에 포멧에 맞게 자동으로 처리하는 프로그램 [1] 박종갑 2007.07.13 3741
117 평가영역 에서 자재 평가는 불일치성 합니다(이전전기시 에러) [1] sapjoy 2007.07.03 7867
» ABAP/4 Optimization Techniques [1] sapjoy 2007.06.30 4894
115 텍스트파일 다운받을때 유니코드 문제 해결 [8] file 솔로몬 2007.06.28 13780
114 ALV 활용해 보기 [4] file 박진만 2007.06.28 3727
113 System Administration Made Easy - Performace file 박진만 2007.06.26 2985
112 Report Program Download.. [4] 김지성 2007.06.26 4006
111 바탕화면에 바로가기 생성하기 [1] 김윤승 2007.06.25 5141
110 심플한 Progress 올려봅니다. [2] 김지성 2007.06.19 4073
109 Open SQL에서 SUM 사용시 유의사항. [11] 나침반친구 2007.06.07 9549
108 New ABAP Editor Concept [4] file D.Y.Kim 2007.06.07 3847