ABAP - C - Taw12 70
ABAP - C - Taw12 70
d) GO_SUB->SUPER_METHOD. .(correct)
6. What you can do in class builder. ( A NEW Q!!)...(3 ans)
a) Local class and Local interface from your local program.
b) Redefine classes and interfaces.
c) When you can define global class, you can use in F8 Function.
7. What are the components of ABAP Workbench.(3 ans)
a)
b)
c)
d)
Function builder.
Class Builder
Screen Painter
Two more options.
8. . In a table, when buffering settings are switched on and buffering style is single,
What would be the option .
a) SELECT SINGLE.(correct)
b) SELECT SINGLE...... UPDATE
c) SELECT... LOOP
d) One more option.
9. What is defined in ABAP Dictionary.(3 ans)
a)
b)
c)
d)
e)
Type pools.(correct)
Transparent tables.(correct)
Domains.(correct)
Internal tables
Methods
Fixed values.
Value check.
Selection method
Dialog behaviour
Lpos,spos,import,export
a)
b)
c)
d)
e)
Importing
Exporting
Changing
Returning
Transporting
18.
Line type(correct)
Access type(correct)
Primary key(correct)
Buffering settings
One more option.
If you want the data in the internal table to be copied without using the
headerline.. ,how will you pass
a) Field symbols ASSIGNING ( someting like this).
b) Itab1[] = itab2[]
c) Assign itab to <fs>
22.
How can you define an internal table using a Transparent. table(Page 359 of
10_1)
a)
b)
c)
d)
e)
Insert.(correct)
Delete.(correct)
Modify.(correct)
Select.
Update.
Role of Database Interface.(3 ans)
Converts open SQL statements to the underlying suitable native SQL(correct)
SAP Buffering.(correct)
Application independent program.(correct)
2 more options
25.
A and B are two tables,User wants the output in a way such that it should have
all records common from Table A and Table B , and also contain records from
table A.
a)
b)
c)
d)
26.
a) Function module.
b) Subroutines.
c) Events.
27. What can be implemented using BADIs. (3 ans)
a) Screen enhancements.(correct)
b) Menu enhancements(correct)
c) Source code enhancements. (correct)
28. What are the options,If you want to read data from Database, using select
statement...(3ans)
a)
b)
c)
d)
Pooled table.
Nested select statement.
Database View.
One more option.
EQ.(correct)
LIKE. (correct)
GT. (correct)
CT
CO.
31. When large table is buffered and there is a condition such that you always have to
specify The full unique key of the table . which table gives better access.
a)
b)
c)
d)
Standard table.
Access table.
Hashed table. (correct)
Sorted table.
Customizing.
Modification. (correct)
Enhancement.
Correction.
Context Attribute
Context Node
Supply function
Normal Method
Internal table
Nested Loop statement
Nested Structure
Data type string with elementary type
Data type F
Reference variable
b) Hashed
c) Pool
d) Cluster
38. If you want to create structure in two table with same field C_TIME and
C_DATE but with different name structure which method you will use?
a) Append Structure
b) Include
c) Define the field in both table separately.
39. How are Dialog step processed w.r.t work process in the application
layer
a) A dialog work process is assigned till the end of each SAP LUW
b) Usually, each dialog step is assigned to different work
processes(correct)
c) Different steps in different application servers.
40. What can we get using Code inspector (3 Answers)
a) Possible to get to know the time for program execution.
b) Database tables used
c) Variables not used
d) Two more options.
41. What is the common between local and global types
a) Documentation
b) Technical information
c) Search help
d) Fields
42. You have classical (dynpro) screen. You want to add documentation for
your input field. How you will do it(2 ans)
a)
b)
c)
d)
e)
Fixed value
Search help
Conversion exits
Semantic information
DATA TYPE
44.
45. You have got error with warning message for input field in a classical
Dynpro(SCREEN), how will you process it.
a) Enter the value and press Enter
b) Enter the value and Execute (F8)
c) Leave the field blank and press Enter
d) Leave the field blank and Execute (F8)
46. Which of the following conversion is invalid
a) Xstring Type to String Type
b) Char Type To I
c) Char Type Value 123 into char type length 2
47. Which of the following object have LEAD_SELECTION_INDEX( )
method.
a) List
b) Parameter
c) ContextNode
d) Context attributes
e) Window
48. How will you call a subscreen as a dialog modal in a window ?
a)
b)
c)
d)
49. Task T1 is processed by a team O1 and team leader wants to release it.Another
Developer who is not from team O1 wants to do some changes in T1.When he can do
changes.
a)
b)
c)
d)
When T1 is activated.
After O1 released the task T1.
During T1 is processed by O1.
One more option.
50. Your manager wants you to add fields to the tables. But as per SAP, you cannot
modify ABAP STANDARD OBJECTS are there any other ways of adding fields
to tables without modifying them.
a. if there is a long field at the end of the table you cannot append a
structure
b. Append structures start with the name ZZ or YY.
c. By appending more than one appends structures to a table.
d. Field names of append structures start with ZZ or YY.
e. By including the include structures.
51. Parameters are used in(Select 3)
a)
b)
c)
d)
Methods.
Functions.
Interface.
Two more options.
Custom controller(correct)
Window controller(correct)
View controller(correct)
Instane controller.
User controller.
53. When a user is using a update function module for updating the database and has
realized that all the previous work should be undone to get back database to
previous sate..
a) ROLLBACK
b) Exit
c) Message E type
54. Which table has 1:1 relation with database.
a) Transparent Table.
b) Reference Table.
c) Internal Table.
d) And two more options.
55. . You want to create a subscreen in a window? How you will create.
a) Set subscreen starting at 15 16 in a view.
b) Set subscreen starting at 15 16 in Flow logic.
c) Call subscreen starting at 15 16 in a view.
Xstring to string.
Fixed point to I.
Char -123 to char 3(something like this).
One more option.
CL_ SUPER->SUPER_METHOD.
CL_ SUPER->SUB_METHOD.
CL_ SUB->SUPER_METHOD.
CL_ SUB->SUB_METHOD.
65. Table with index result the performance in what kind of operations
a) Database Update
b) Database Retrieval
c) Database Access
66.
a)
b)
c)
d)
78. Where you can give GUI status and tittle.(pg 295 of 10-2).
PBO
79. What do u need to fully specify a table type(3 correct)
a) Table size
b) Line type
c) Table category
d) Header line
e) Table key
80. Button with name cancel is created and cancel function code is assigned to
it.What will happen when cancel button is pressed.
a) At exit command module will be executed
b) PAT processing will be executed
c) 2 more options
81. What should be created first when you want to create a module pool.
Oo transaction
Dialog transaction
Report transaction
Transaction variants..
82. What is the function of view in webdynpro?
Design the part of layout to the webdynpro
Contain values that can be reused by other controllers
Provide the navigation to various windows
Some others
83. What is the fastest way of accessing the internal table?(3)
Left justified key of hashed table
Index access of standard table
Index access of hashed table
Full key of sorted table
Left justified key of sorted table
84. In watch point(2)
Change any value for the specified
Change predefined value for specified
Change any value for any field variable
85. How will you automatically pass the value of the input field in a screen to the
variable in screen programming
By creating the variable with same name as the input field
By creating the variable with table statement
By creating the variable using data statement
86. Where can you declare global data types which is everywhere(2)
Global interface
Global method of a class
Global class
ddic
87. pass data to internal table w/o using wa.
Loop at itab into <fs>
Loop at itab into transporting <fs>
Loop at itab into assiginig <fs>
Loop at itab into referring <fs>
88. why we need to bundle database updates
implicit commit
89. steps to be taken when repository objects have to be transported
repository objects have to be assigned to a package
application component to be assigned to repository
90. how can internal table acess data from database easily
use index access for thr database
use buffering type for database
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.