SAP Adobe Forms MCQs

SAP Adobe Forms MCQs

These SAP Adobe Forms multiple-choice questions and their answers will help you strengthen your grip on the subject of SAP Adobe Forms. You can prepare for an upcoming exam or job interview with these SAP Adobe Forms MCQs.
So scroll down and start answering.

1: What is the name of the export parameter used to send messages back to the calling program?

A.   BAPIRET

B.   BAPIRET2

C.   RETURN

D.   SENDBACK

2: Among the most frequently used enhancement concepts in ABAP, you find customer exits. Which of the following statements about customer exits are correct?

A.   If a customer exit is not implemented, the program offering this customer exit will dump (terminate abnormally) at runtime.

B.   Within one SAP system, a customer exit can have a maximum of one implementation

C.   Within one client of an SAP system, a customer exit can have multiple implementations.

D.   Once a customer exit has been implemented in an SAP system, the implementation can be changed, but it cannot be deactivated any more

3: In a report, you want to define a SELECT-OPTION so_xyz. What are possible ways of defining its type?

A.   Refer to a table type directly, using TYPE

B.   Refer to a previously defined elementary data object in the same pro-gram, using LIKE

C.   Refer to a previously defined elementary data object in the same pro-gram, using FOR

D.   Refer to a Dictionary table type with columns SIGN, OPTION, LOW, and HIGH, using FOR

4: What is the difference between the TYPE and LIKE statements in data declaration?

A.   LIKE is used to define variables that are similar to the ones previously defined whereas TYPE is used to define variables that exist in data dictionary.

B.   LIKE is used to define variables that are similar to the ones previously defined whereas TYPE is used to define variables to refer ABAP internal data elements.

C.   LIKE is used to define variables that exist in data dictionary whereas TYPE is used to define variables to refer ABAP internal data elements.

D.   Both of them can be used interchangeably, there is no difference.

5: In program A function module F is called from function group G for the first time. Which one is correct:

A.   Coding of entire function group G is loaded in the roll area

B.   Global data from A can be accessed in F

C.   A and F have common work areas for dictionary table

D.   Function module F is called in a separate internal session

E.   Function module F can not call any sessions

6: What is the valid combination among these for SAP R/3.

A.   2 –Application server and 1-data base server

B.   2-database server and 1- Application server

C.   2-Application server and 2-Database server

D.   3-Application Server and 2-Database server

7: Can database view used to fetch the data from the database using SELECT Query?

A.   True

B.   False

8: Parameter id is assigned at what level?

A.   Domain

B.   Data element

C.   Field level

D.   None of the above

9: A database table without MANDT field is called?

A.   Client dependent

B.   Client in-dependent

C.   Structure

D.   Database View

10: What is the basic object of data Dictionary?

A.   Domains

B.   Documentation

C.   Data Models

D.   Dynpro

11: What are the check tables and value tables?

A.   Check table will be at field level checking

B.   Value table will be at domain level checking

C.   Value table will be at field level checking

D.   Check table will be at domain level checking

12: How many types of tables exist in data dictionary?

A.   Transparent tables

B.   Internal Table

C.   Pool tables

D.   Hash Table

13: What are the differences between SAP memory and ABAP memory?

A.   SAP Memory is a memory area in the internal session (roll area) of an ABAP program. Data within this area is retained within a sequence of program calls, allowing you to pass data between programs that call one another. It is also possible to pass data be

B.   ABAP Memory is a memory area to which all sessions within a SAPgui have access. You can use SAP memory either to pass data from one program to another within a session (as with ABAP memory) or to pass data from one session to another

C.   ABAP Memory is a memory area in the internal session (roll area) of an ABAP program. Data within this area is retained within a sequence of program calls, allowing you to pass data between programs that call one another. It is also possible to pass data b

D.   SAP Memory is a memory area to which all sessions within a SAPgui have access. You can use SAP memory either to pass data from one program to another within a session (as with ABAP memory) or to pass data from one session to another

14: Must Exits be predefined by SAP programmers?

A.   No

B.   Yes

C.   Customers can determine for themselves where they want to use exits