Week2

35 Questions | Attempts: 112
Share
Please wait...
Question 1 / 35
0 %
0/100
Score 0/100
1. If a Table called as CUSTOMER which has data in the DB , has been changed in the ABAP DICTIONARY and activated which has resulted in conversion process, during the conversion process in one of the steps before data is transported , SAP creates the table with the new changed information in db as ______________
Submit
Please wait...
About This Quiz
Reasoning Quizzes & Trivia

This is a mock up exam covering week2 of the course. This test no way should be associated with the real exam, it just give you a feeler and gauge your current knowledge.
Passing this test no way guarantees that you will pass the actual exam you still need to... see moreread the books and study more till the exam

Best of Luck
SN see less

Tell us your name to personalize your report, certificate & get on the leaderboard!
2. If you have created a Type Group named Z01 in abap dictionary and if in this type group you need to define a constant called pi, such constants declared in type group should be defined  ____________ to adhere to the naming conventions of type group.
Submit
3. In which of the following types there is an one-to-one relationship between the table defined in ABAP dictionary and the relevant physical table in database
Submit
4. You have defined a screen with required entries. You want the "CANCEL" function to work even if all the required entry field are not filled. How can you do this?
Submit
5. Which statement at the time of AT SELECTION-SCREEN causes the selection screen to be displayed again and fields ready to input and message in the status line?
Submit
6. What do you get when you refer to client specific transparent table in the ABAP Dictionary , if you have data definition with DATA?
Submit
7. If you create a variant for a report program(zrep) , and name the variant as zvar00. When you transport the report (zrep) will the variant (zvar00) also automatically transported

Explanation

For automatic transportation customer should create the variant with naming convention CUS&xxx, for any other name for variant need to be added manually in the change request

Submit
8. If as a programmer or development manager, you want to check the performance of your ABAP programs, What tool does SAP provide to do this
Submit
9. In which of the following events, would you ideally write the validation code for the data entered in the selection screen by the user

Explanation

At Selection-screen should be used for all validations, as if you raise any message of type E it will stop the processing and the error field will be ready to input

Submit
10. Does a PAI occur when you switch between tab pages whose titles have function type 'P' in a tabstrip
Submit
11. If Primary Key of a table is also a Foreign key to another table which of the following is the Foreign Keys characteristics
Submit
12. Changes to Active transparent table : the type for the non key field is to be changed from NUMC to CHAR. What follow up actions are to be expected?
(more than 1 correct answer)
Submit
13. Which of the following statements about indexes are correct (More than 1 correct answer)
Submit
14. Which of the following assertions are right. (More than 1 correct answer)
Submit
15. Evaluate the following code snippet

data: it_sflight type table of sflight.

Authority-Check Object 'S_CARRID'
                             ID        'CARRID' field 'AA'
                             ID        'ACTVT' field '03'.
select * from sflight into table it_sflight where carrid = 'AA'.
Assuming there is no syntax error, which of the following would be valid

Explanation

If the Authority-Check fails, you need to check the return code sy-subrc, else it will return all the rows

Submit
16. Which conditions must be fulfilled in a programmed check so that s screen input field is made ready for input again ?
(More than 1 correct answer)
Submit
17. Which of the following statements about subscreen are correct
(more than 1 correct answer)
Submit
18. Which of the following are valid screen flow logic statements if you want the module to be executed when a single field content are not equal to initial value
Submit
19. Evaluate the following code snippet
data: wa_spfli type spfli.
select-options : so_carr for wa_spfli-connid.

select * from spfli into wa_spfli where carrid in so_carr.
write:/ wa_spfli-carrid, wa_spfli-connid.
endselect.


When you run the above report, assuming that user do not key in any values in selection screen .Which of the following statement are true in this condition

Explanation

If the select-options is empty , then all the rows from the table is fetched.

Submit
20. Which of the following one are correct sequence mechanism for determining the input Help or search help?
Submit
21. To interrupt the processing of the current screen and branch to new screen, or sequence of screen, you can use which of the following statements
(Only 1 correct answer)

Explanation

Call Screen will suspend(interrupt) the current call and branch to the specified screen , once all the screen sequence is over it returns to process the remaining module code.

Submit
22. Which of the following statements about field transport from ABAP to screen are correct
(more than 1 correct answers)

Explanation

If you give a Field statement in PAI, the transport of the all the fields are not done,
For any transport between ABAP to Screen there should be same name data object in ABAP as well as Screen
From ABAP to screen first PBO modules gets executed then the transport takes place from ABAP to Screen.
If you have made screen fields from Dictionary table/structures then in ABAP you have to use the TABLES keyword to create the data object

Submit
23. Which of the following statements are true
(more than 1 correct answer)
Submit
24. Which of the following calls will return the control back to the calling program (More than 1 correct answer)
Submit
25. Which of the following view supports left outer join?
(more than 1 correct answer)
Submit
26. In Program ZPROG , the submit statement is used to call a report ZREP , how can you pass the data from ZPROG to ZREP?
(more than 1 correct answer)

Explanation

If you are calling a report (and if that report has selection screen) you can use submit with parameters =
You can also use ABAP memory (EXPORT /IMPORT)
You can use SAP memory (SET/GET Parameter)

Submit
27. In the PAI of screen 100 following flow logic statements are written, assuming you have 4 fields in the screen named f1,f2,f3 and f4 Module setStatus.
Field f1 module pai_f1_100.
Field f3 module pai_f3_100.
Module pai_4_100.
When module setStatus is executed which of the following fields are already transported to ABAP.
Submit
28. For Search Help you should have
Submit
29. Which of the following statements are true about push buttons
(More than 1 correct answer)

Explanation

Every Push button created in Application toolbar(GUI Status) should have a function key and Function Code.
Every Push button created in screen only have function code, function key is not required.
Function Code of type E is only used if you have a module AT EXIT-COMMAND in the PAI

Submit
30. Authorization concept in SAP System is used for (More than 1 correct answer)
Submit
31. If the following Open SQL select statement gives only one row as the output what could be possible reasons.
Select * from tab into wa where col = pa_col.
write: wa-col1, wa-col2, wa-col3.
EndSelect. (More than 1 correct answer)
Submit
32. Is it possible to increase number of key fields in the transparent table that is active?
Submit
33. Which of the following statements about SELECT statement are correct?
(More than 1 correct answer)
Submit
34. Which of the following syntax are correct for open SQL statement Select (More than 1 correct answer)
Assuming that transparent table tab exists in ABAP dictionary and following declarations are done in the program already
data: wa type tab.
data: it_tab type standard table of tab.

Explanation

For storing values in work area you can use
1) Select single * from tab into wa
2) Select single * from tab into corresponding fields of wa.
3) Select * from tab into wa. EndSelect.
4) Select * from tab into correspoding fields of wa. EndSelect.

For Storing data in internal table you can use
1) Select * from tab into table it_tab.
2) Select * from tab into corresponding fields of table it_tab.

Submit
35. Which of the following are true about Generic Buffering. (More than 1 correct answer)
Submit
View My Results

Quiz Review Timeline (Updated): Mar 20, 2022 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 20, 2022
    Quiz Edited by
    ProProfs Editorial Team
  • Mar 11, 2011
    Quiz Created by
    Satbond
Cancel
  • All
    All (35)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
If a Table called as CUSTOMER which has data in the DB , has been...
If you have created a Type Group named Z01 in abap dictionary and if...
In which of the following types there is an one-to-one relationship...
You have defined a screen with required entries. You want the "CANCEL"...
Which statement at the time of AT SELECTION-SCREEN causes the...
What do you get when you refer to client specific transparent table in...
If you create a variant for a report program(zrep) , and name the...
If as a programmer or development manager, you want to check the...
In which of the following events, would you ideally write the...
Does a PAI occur when you switch between tab pages whose titles have...
If Primary Key of a table is also a ...
Changes to Active transparent table : the type for the non key field...
Which of the following statements about ...
Which of the following assertions are ...
Evaluate the following code snippetdata: it_sflight type table of...
Which conditions must be fulfilled in a programmed check so that s...
Which of the following statements about subscreen are correct(more...
Which of the following are valid screen flow logic statements if you...
Evaluate the following code snippetdata: wa_spfli type...
Which of the following one are correct ...
To interrupt the processing of the current screen and branch to new...
Which of the following statements about field transport from ABAP to...
Which of the following statements are true(more than 1 correct answer)
Which of the following calls will ...
Which of the following view supports left outer join?(more than 1...
In Program ZPROG , the submit statement is used to call a report ZREP...
In the PAI of screen 100 following flow ...
For Search Help you should have
Which of the following statements are true about push buttons(More...
Authorization concept in SAP System is ...
If the following Open SQL select ...
Is it possible to increase number of key fields in the transparent...
Which of the following statements about SELECT statement are...
Which of the following syntax are ...
Which of the following are true about ...
Alert!

Advertisement