BASIS Technology Review Questions: Question 1 - in The R/3 Architecture, What Component of

You might also like

Download as ppt, pdf, or txt
Download as ppt, pdf, or txt
You are on page 1of 30

BASIS Technology review questions

Question 1 - In the R/3 architecture, what component of


the application server do SAPGuis communicate with.
 
Answer 1: The ENQ work process.
 
Answer 2: The DISPATCHER
 
Answer 3: The RFC MONITOR
 
Answer 4: The GATEWAY service
 
Answer 5: The MESSAGE server
BASIS Technology review questions

Question 1 - In the R/3 architecture, what component of


the application server do SAPGuis communicate with.
 
Answer 1: The ENQ work process.
 
Answer 2: The DISPATCHER
 
Answer 3: The RFC MONITOR
 
Answer 4: The GATEWAY service
 
Answer 5: The MESSAGE server
ABAP workbench review questions
Question 3 - An internal table with the fields :

kunde (Type C, Length 30) and lifnr (Type I) is filled using the following statements:
 
itab-kunde = 'Meier'. itab-lifnr = 8. APPEND itab.
itab-kunde = 'Lehmann'. itab-lifnr = 7. APPEND itab.
itab-kunde = 'Schulze'. itab-lifnr = 4. APPEND itab.
itab-kunde = 'Schmidt'. itab-lifnr = 10. APPEND itab.
 
Which of the following statements would you use to read the entry for Schmidt?
 
 
Answer 1: SELECT SINGLE * FROM itab WHERE kunde = 'Schmidt'.
 
Answer 2: READ TABLE itab WITH KEY 'Schmidt' BINARY SEARCH.
 
Answer 3: READ TABLE itab WITH KEY 'Schmidt'.
 
Answer 4: READ TABLE itab INDEX 10.
ABAP workbench review questions
Question 3 - An internal table with the fields :

kunde (Type C, Length 30) and lifnr (Type I) is filled using the following statements:
 
itab-kunde = 'Meier'. itab-lifnr = 8. APPEND itab.
itab-kunde = 'Lehmann'. itab-lifnr = 7. APPEND itab.
itab-kunde = 'Schulze'. itab-lifnr = 4. APPEND itab.
itab-kunde = 'Schmidt'. itab-lifnr = 10. APPEND itab.
 
Which of the following statements would you use to read the entry for Schmidt?
 
 
Answer 1: SELECT SINGLE * FROM itab WHERE kunde = 'Schmidt'.
 
Answer 2: READ TABLE itab WITH KEY 'Schmidt' BINARY SEARCH.
 
Answer 3: READ TABLE itab WITH KEY 'Schmidt'.
 
Answer 4: READ TABLE itab INDEX 10.
ABAP workbench review questions

Question 6 – You need to build a screen that will be shared by different


programs. What technique, if any, should you use.
Answer 1: Screens are program dependant and cannot be shared.

Answer 2: Save the screen in a development class ( not $TMP ). Other programs can now use it.

Answer 3: Put the screen in a function group. Have this screen displayed by a function module within that
same group.
ABAP workbench review questions

Question 6 – You need to build a screen that will be shared by different


programs. What technique, if any, should you use.
Answer 1: Screens are program dependant and cannot be shared.

Answer 2: Save the screen in a development class ( not $TMP ). Other programs can now use it.

Answer 3: Put the screen in a function group. Have this screen displayed by a function module within that
same group.
ABAP workbench review questions

Question 7 – Which of the following best represents an array fetch of


KNA1 into an internal table called ITAB.
Answer 1: SELECT * FROM KNA1 INTO WA.
APPEND WA TO ITAB.
ENDSELECT.
 
Answer 2: EXPORT KNA1 INTO ITAB.
 
Answer 3: SELECT * FROM KNA1 INTO TABLE ITAB.
 
Answer 4: SELECT * FROM KNA1 INTO WA.
COLLECT WA TO ITAB.
ENDSELECT.
ABAP workbench review questions

Question 7 – Which of the following best represents an array fetch of


KNA1 into an internal table called ITAB.
Answer 1: SELECT * FROM KNA1 INTO WA.
APPEND WA TO ITAB.
ENDSELECT.
 
Answer 2: EXPORT KNA1 INTO ITAB.
 
Answer 3: SELECT * FROM KNA1 INTO TABLE ITAB.
 
Answer 4: SELECT * FROM KNA1 INTO WA.
COLLECT WA TO ITAB.
ENDSELECT.
ABAP workbench review questions

Question 8 – Select the methods you can use in order to permit the
reuse of components in ABAP.
Answer 1: LDBs

Answer 2: Function modules

Answer 3: Global classes


 
Answer 4: Global development classes
ABAP workbench review questions

Question 8 – Select the methods you can use in order to permit the
reuse of components in ABAP.
Answer 1: LDBs

Answer 2: Function modules

Answer 3: Global classes


 
Answer 4: Global development classes
ABAP workbench review questions

Question 9 – You have created the report ZMYPROG1 in


client 400. Is the code of this report :
Answer 1: Client dependant

Answer 2: Client independent


 
ABAP workbench review questions

Question 9 – You have created the report ZMYPROG1 in


client 400. Is the code of this report :
Answer 1: Client dependant

Answer 2: Client independent


 
ABAP workbench review questions

Question 10 – You have created a table in client 400. The


first field of this table is MANDT and it is based on a domain
of type CLNT. This table is considered :
Answer 1: Client dependant

Answer 2: Client independent


 
ABAP workbench review questions

Question 10 – You have created a table in client 400. The


first field of this table is MANDT and it is based on a domain
of type CLNT. This table is considered :
Answer 1: Client dependant

Answer 2: Client independent


 
ABAP Dictionary review questions

Question 1 - The structure of a table has been changed in the


ABAP Dictionary. Which of the following adjustments in the
relevant database table is correct, if you want to retain the
previous data?
 
Answer 1: Delete and recreate the database table
 
Answer 2: Change the database table (ALTER TABLE) where the structure change with
ALTER TABLE is supported by the database.
 
Answer 3: Convert the table
ABAP Dictionary review questions

Question 1 - The structure of a table has been changed in the


ABAP Dictionary. Which of the following adjustments in the
relevant database table is correct, if you want to retain the
previous data?
 
Answer 1: Delete and recreate the database table
 
Answer 2: Change the database table (ALTER TABLE) where the structure change with
ALTER TABLE is supported by the database.
 
Answer 3: Convert the table
ABAP Dictionary review questions

Question 2 - In SAP terminology, what is a check table?


 
Answer 1: A value table specified in the definition of the domain for a field.
 
Answer 2: Any internal table, used to check input values.
 
Answer 3: A table assigned to one or more fields of a foreign key table for checking
input values.
 
Answer 4: The table created for a foreign key.
 
Answer 5: The table to which a foreign key refers.
ABAP Dictionary review questions

Question 2 - In SAP terminology, what is a check table?


 
Answer 1: A value table specified in the definition of the domain for a field.
 
Answer 2: Any internal table, used to check input values.
 
Answer 3: A table assigned to one or more fields of a foreign key table for checking
input values.
 
Answer 4: The table created for a foreign key.
 
Answer 5: The table to which a foreign key refers.
ABAP Dictionary review questions

Question 4 – What type of view does an inner join operation.


 
Answer 1: HELP VIEW
 
Answer 2: DATABASE VIEW
 
Answer 3: MAINTENANCE VIEW
 
Answer 4: LOGICAL VIEW
ABAP Dictionary review questions

Question 4 – What type of view does an inner join operation.


 
Answer 1: HELP VIEW
 
Answer 2: DATABASE VIEW
 
Answer 3: MAINTENANCE VIEW
 
Answer 4: LOGICAL VIEW
ABAP Dictionary review questions
Question 5 – Where can we apply search helps
 
Answer 1: Field of a table or a structure
 
Answer 2: Domain
 
Answer 3: Check table
 
Answer 4: Data element
 
Answer 5: Parameter ID
 
Answer 6: Value table
ABAP Dictionary review questions
Question 5 – Where can we apply search helps
 
Answer 1: Field of a table or a structure
 
Answer 2: Domain
 
Answer 3: Check table
 
Answer 4: Data element
 
Answer 5: Parameter ID
 
Answer 6: Value table
ABAP Dictionary review questions
Question 6 – When does a value table become a check table
 
Answer 1: When a foreign is defined
 
Answer 2: When the field associated to the value table gets used in the screen painter.
 
Answer 3: When a search help is associated to the value table
 
Answer 4: As soon as the domain that has a value table is referred to by a data element.
 
Answer 5: Never. It is check tables that become value tables.
ABAP Dictionary review questions
Question 6 – When does a value table become a check table
 
Answer 1: When a foreign is defined
 
Answer 2: When the field associated to the value table gets used in the screen painter.
 
Answer 3: When a search help is associated to the value table
 
Answer 4: As soon as the domain that has a value table is referred to by a data element.
 
Answer 5: Never. It is check tables that become value tables.
ABAP Dictionary review questions
Question 7 – What dictionary object gives the semantical
attributes of a field.
 
Answer 1: Data element
 
Answer 2: Domain
 
Answer 3: Search help
 
Answer 4: Lock object
 
Answer 5: None of the above
ABAP Dictionary review questions
Question 7 – What dictionary object gives the semantical
attributes of a field.
 
Answer 1: Data element
 
Answer 2: Domain
 
Answer 3: Search help
 
Answer 4: Lock object
 
Answer 5: None of the above
ABAP Dictionary review questions

Question 8 – What happens when you activate a lock object


 
Answer 1: A signal is sent to the ENQ work process telling him to enable page level locking at the
RDBMS level on the table specified in the lock object
 
Answer 2: 2 function modules are generated by the system ( ENQUEUE and DEQUEUE )
 
Answer 3: Locking has been activated on the table specified in the lock object
 
Answer 4: The table is no longer usable via SE16 ( data browser )
 
Answer 5: None of the above
ABAP Dictionary review questions

Question 8 – What happens when you activate a lock object


 
Answer 1: A signal is sent to the ENQ work process telling him to enable page level locking at the
RDBMS level on the table specified in the lock object
 
Answer 2: 2 function modules are generated by the system ( ENQUEUE and DEQUEUE )
 
Answer 3: Locking has been activated on the table specified in the lock object
 
Answer 4: The table is no longer usable via SE16 ( data browser )
 
Answer 5: None of the above
ABAP Dictionary review questions

Question 9 – What is the best way to add fields to an SAP supplied


table
 
Answer 1: Use SE11 and modify the table
 
Answer 2: Build a maintenance view for the table
 
Answer 3: Create an append structure for the table
 
Answer 4: Select the modified attributes checkbox for the table
 
Answer 5: None of the above
ABAP Dictionary review questions

Question 9 – What is the best way to add fields to an SAP supplied


table
 
Answer 1: Use SE11 and modify the table
 
Answer 2: Build a maintenance view for the table
 
Answer 3: Create an append structure for the table
 
Answer 4: Select the modified attributes checkbox for the table
 
Answer 5: None of the above

You might also like