Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP query performance

Former Member
0 Likes
1,107

Dear gurus,

I want to use ABAP query. However, i wonders about its performance.

Would anyone please show your opinion and experience using this tool?

Is it taking long time to run this tool? Will it effect the overall performace of the system if i use this tool? <b><REMOVED BY MODERATOR></b>

Thanks

Ammy

Message was edited by:

Alvaro Tejada Galindo

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
690

hi pavinee

r u saying abap standard query?

if it is yes

in the performence wise good if u works on standard tables

beacuse it works on standard sap memory

defenetly it will effects the performence of the system

beware using the standard query hw u r using ..................

otherwise if u want to create ur own query that is depends in u r coding

5 REPLIES 5
Read only

Former Member
0 Likes
691

hi pavinee

r u saying abap standard query?

if it is yes

in the performence wise good if u works on standard tables

beacuse it works on standard sap memory

defenetly it will effects the performence of the system

beware using the standard query hw u r using ..................

otherwise if u want to create ur own query that is depends in u r coding

Read only

JozsefSzikszai
Active Contributor
0 Likes
690

hi Pavinee,

the perormance of ABAP query is very bad by default, becuase it is using logical DB, which is a very general tool and not really useful for specific things. (For example it is retreiving always all the fields (could be several hundreds), when you need only a dozen)

try to avoid using Queries.

hope this helps

ec

Read only

0 Likes
690

Hi

Abap query gives less perfoamance than the normal report .

The reasons are it generates code by itself with lot of <b>select and endselect</b>

statements

The ohther hand there are lot of joins across the tables to fetch the data out of them ,this too reduces the performance.

In general functional consultants make use of them .

ABAP query is another tool for ABAP. It provides efficency for ABAP reports.

Transaction Code : SQ01

The advantage with ABAP QUERY is logic required for classic & interactive reports system design automatically 80%.

For ABAP QUERY handle these

SQ01 ; QUERY

SQ02 : INFOSET OR FUNCTIONAL AREA

SQ03: USER GROUP.

[Edit section] Report Writer

Key Concept :

Super users and end users can use Report Painter/Report Writer tools to write their own reports.

Giving them the ability to report on additional fields at their discretion shifts the report maintenance burden to them, saving SAP support groups time and effort normally spent creating and maintaining the reports.

Sail

Sail

Read only

Former Member
0 Likes
690