SAP Reports

  Home  Systems, Applications, and Products (SAP)  SAP Reports


“SAP Reports Interview Questions and Answers will guide us that how to create reporting in SAP, and how to get a job in SAP Reports so start learning with the help of this SAP Reports Interview Questions with Answers guide”



54 SAP Reports Questions And Answers

43⟩ What is SQL Trace?

SQL Tracer is a tool used to measure the performance of ABAP program. T.code :st05

 165 views

45⟩ What are the difference between table controls and step loops in dialog programming?

1. Function modules use a special screen to define the parameters where as subroutines use the same ABAP/4 editor to define its parameters.

2. Tables work area can be commonly shared by calling program and subroutine where as function modules do not share commonly.

3. Calling a function module syntax (Call function.) is different from calling a subroutine syntax (perform….).

4. With raise statement user can exit from a function module where as exit is used in subroutines.

 240 views

46⟩ What is the difference between transparent and non transparent database tables?

Transparent tables have 1 - 1 cardinality b/w Data Dictionary and Database, and non transparent ( Cluster and Pooled) tables have Many - 1 cardinality. Transparent table can access with using OPen & NAtive SQL stmts where as Nontransparent only OPen Sql. Transparent trables can store Table relevent data and non transparent tables can store system data/ application data based on the transparent tables

 188 views

49⟩ What is an Unpack command?

UNPACK field1TO field2 .Unpacks the packed field field1 and places it in the field field2 with leading zeros. If field2 is too short, it is truncated on the left.

 177 views

51⟩ Difference between Table-Controls and Step-loops?

Table controls are modified / mproved versions of step loops. in controls we can do, horizontal scrolling, vertical scrolling, scrolling in a perticular field, resize the table, can save the settings for future use, can make selective columns editable,....etc these things are not possible with step loops. step loops are controlled by loop-endloop statements.

 195 views

53⟩ How will you find out where the user exits are available?

CMOD : This transaction allows you to create a PROJECT by identifying its ENHANCEMENT(S). After determining all of the ENHANCEMENTS that are part of the PROJECT, you will have to activate the PROJECT. You will still need to code your user-exit; therefore, you may want to wait until this step is completed before activating the PROJECT. §SMOD : This transaction allows you to create an ENHANCEMENT, which you will include in a PROJECT, by identifying its COMPONENT(S). In the case where SAP has already created an ENHANCEMENT for its pre-defined user-exits, you will not need to use transaction SMOD; instead, you should just use transaction CMOD.

 210 views