Anda di halaman 1dari 39

Question Excerpt From Final What you can control using the field catalog of SAP ALV GRID

Control (3 correct answer)

Q.1)

A. B. C. D.

Hide Individual Columns Specify color of the list rows set the output characteristics of a column position or width Influence the format properties of column contents, such as number of decimal places or the alignment of the content cell. Which of the following are true about subscreens (2 correct answer)

Q.2)

A. B. C. D.

Subscreens have their own ok code fields Subscreens may have their own PBO and PAI logic you call subscreen using ABAP command CALL SUBSCREEN you call subscreen using SCREEN command CALL SUBSCREEN. Which statement about the internal table concerning program performance are correct? (There are 2 correct answers)

Q.3)

A. B. C. D.

The cost for reading a data record from the hashed table do not depends upon number of entries. If the field symbol is assigned with READ ASSIGNING statement, the entry in the internal table can be changed directly using field symbols If you have a standard table , searching an entry using a fully qualified key is faster than searching by index The cost for reading a data record are higher for a large number of entries in a sorted table than for a large number of entries in a standard table For a new colleague you have to explain the necessary steps for defining a database view in the ABAP Dictionary. What are the necessary steps for definition of database view in the ABAP Dictionary? (There are 3 correct answers )

Q.4)

A. B. C. D.

You have to define selection criteria for the view You have to define the Join condition for this view You have to name the database table where the view gets data You have to choose the fields from the tables that should be part of the view After creating a Search Help in ABAP dictionary you have to attach this search help to a field (There are 3 correct answers)

Q.5)

A. B. C. D.

A Search Help can be attached directly to a field of structure or table A Search help can be attached to a check table of the ABAP dictionary field A Search Help can be attached to the data element. A Search Help can be attached to the domain. Your colleague need advise on several ABAP types, Which of the following statement are correct? (There are 3 correct answers)

Q.6)

A. B. C. D.

Data object of ABAP type STRING initially takes up no spaces, If any data is put into it at runtime , it takes up exactly the space that is needed . If its cleared the value changes to spaces, but the previous length remains. A data Object of type X has fixed length while data object of type XSTRING the length changes dynamically depending upon the length of the content Type X is useful for working with bit information You can compute date with the following DATA: old_date type d, new_date type d, old_date = sy-datum. new_date = old_date + 14. Which view allows a read only access? (Only 1 correct answer)

Q.7)

A. B. C.

Database view with more than 1 table Maintainence View Projection view with 1 table You have have written an ABAP executable program that displays the flight connections between cities for your customer. You hand over your program to your customer maintainence and need to explain to the customer's programmer the properties of event blocks (2 correct answers)

Q.8)

A. B. C. D.

Event Blocks starts with event key word and end with the start of any other modularization block. For example , another event block or subroutine. Event Blocks are executed in sequence they occur in the program. The ABAP runtime decides in which sequence to execute the event blocks Event blocks can be nested , for example , you can have event blocks inside another event blocks You want to add two field to SAP standard table using append technique. What do you have to keep in mind of this technique? (Only 2 correct answers)

Q.9)

A. B. C. D. E.

The name of Append structure should start with ZZ or YY. An Append structure can be assigned to more than 1 table The fields of the Append structure should start with ZZ or YY Append structures must be compared with the SAP original in release upgrade Append structures are not possible for tables containing long field What kind of controllers exists within a Web Dynpro component ? (Only 3 correct answers)

Q.10)

A. B. C. D.

View Controllers Exactly one Component Controller User Controller Window Controller You defined two classes cl_airplane and cl_passenger_plane, where cl_passenger_plane is subclass of cl_airplane. In the class cl_airplane , the public instance method display_attributes is defined, which has no parameters. In the sub class of cl_passenger_plane, the public instance method display_number_of_seats is defined which has no parameters.In your program, you have implemented the following lines: DATA: r_plane type ref to cl_airplane, r_passenger type ref to cl_passenger_plane. create object r_passenger. r_plane = r_passenger. Q.11) Which of the methods are syntantically correct? (3 correct answers)

A. B. C. D.

r_airplane->display_attributes( ). r_passenger->display_number_of_seats( ). r_airplane->display_number_of_seats( ). r_passenger->display_attributes( ). Which kind of enhancements can BADIs provide? (3 correct answers)

Q.12)

A. B. C. D. E.

Table Enhancement Menu Enhancement Functional Enhancement Data Element Enhancement Screen Enhancement You want to write subroutine names check_booking that receives a parameters of type sbook. You want to change fields of the actual parameter within your subroutine but only if your subroutine executes without any error. How do you declare the subroutine (1 correct answer)

Q.13)

A.

FORM check_booking USING VALUE(p_book = TYPE sbook ).

B. C. D.

FORM check_booking CHANGING VALUE(p_book) TYPE sbook ORM check_booking CHANGING p_book type sbook ON RETURN FORM check_booking USING p_book TYPE sbook. You want to select the fields MATNR, ENAM and EDAT from table MARA to display them in report. Whats the best way to do this? (1 correct answer)

Q.14)

A. B. C. D.

Declare the work area containing fields MATNR, ENAM and EDAT and use select matnr ename edat from MARA into wa. ENDSELECT. Declare the work area of type MARA and use select* from MARA into wa.ENDSELECT. Declare the work area of type MARA use select matnr ename edat from MARA into wa.ENDSELECT. Declare the work area containing fields MATNR, ENAM and EDAT and use select* from MARA into correspodnig fields of wa.ENDSELECT. When analyzing older program as associate consultant will often find the definition and use of an internal table with a header line, for example DATA: it TYPE TABLE of spfli WITH HEADER LINE. Which statements about the internal table with header lines are correct? (2 correct answer)

Q.15)

A. B. C. D.

To address a component of the header line you can use the following : it[]-component = 'ABC'. Internal tables with header lines are faster than internal tables without header lines Instead of LOOP at IT .. ENDLOOP one might as well use LOOP at it into it. . ENDLOOP. Two data objects with the same name exists , the internal table's body and header line, which is a structure of the row type of the table You like to create a list with the global class CL_GUI_ALV_GRID. In the class the event DOUBLE_CLICK is defined. This event is triggered whenever a user double clicks a line in the ALV,. In your case every time the user makes the double click on the list a popup should appear which shows the number of the line on which has been double clicked. What do you have to do therefore? (2 correct answer)

Q.16)

A. B. C. D.

Define a local class in which event DOUBLE_CLICK is redefined and raised. Write a handler method for the event DOUBLE_CLICK of the class CL_GUI_ALV_GRID, which calls the dialog box. Register for the event DOUBLE_CLICK by using SET_HANDLER statement. Catch the Event DOUBLE_CLICK with the CATCH statement under which the dialog box call is implemented Some transactions contain SELECT statements in their applications that causes a very long runtimes. You should now improve the performance without changing the program. What techniques can be suitable for increasing the performance during database table access? (2 correct answers)

Q.17)

A. B. C.

To unit the appropriate database in pool table To define indexes for the appropriate database tables To use table buffering for appropriate database tables To put the appropriate database table in a special fast access tablespace of the D. database You create function group ZATP that contains couple of function modules to manage Q.18) material master data. What is the name of the correspondnig main program?

A. B. C. D. E.

SAPLZATP SAPTZATP SAPFZATP SAPMZATP ZATP You can realize the polymorphism between objects from different classes if these classes are connected via inheritance. For objects of classes that are not connected via inheritance, another technique exists to achieve polymorphism. With which of the following concepts you can also acheive polymorphism?

Q.19)

A. B. C.

The Friend concept The Interface concept The Event concept You should implement search help, where the data of search help should be selected via outer join . Which of the following types would you use?

Q.20)

A. B. C.

The HELP view The DATABASE view The MAINTAINENCE view You need to create an integer data object and you wonder about the features of ABAP type I. Which of the following statements are correct.

Q.21)

A. B. C.

A data object of type I always have length of 8 bytes A data object of type I always have length of 4 bytes A data object of type I have length of 1,2 and 4 bytes depending upon the content Why do we need to bundle database updates in your dialog programs? (2 correct answer)

Q.22)

A. B. C. D.

To increase the performance of your program. Because there is no implicit database commit after each dialog step To keep the database in a consistent state if the user wants to cancel the transactions Because there is an implicit database commit after each dialog step. You want to display a dialog box window . Which statement can you use to do this?

Q.23)

A.

WINDOW 200 starting at 5 5.

B. C. D.

CALL SCREEN 200 STARTING AT 5 5. CALL SCREEN 200. SET SCREEN 200 You want to have user entries on the selection screen checked( for example authorization check) . If there is any error , the user must correct the entries, which step you need to program?

Q.24)

You need to program the check at the event AT SELECTION-SCREEN, if there is any error an E type MESSAGE must be output. You need to program the check at the event END-OF-SELECTION, if there is any error B. an E type MESSAGE must be output. You need to program the check at the event AT SELECTION-SCREEN, if there is any C. error , processing must be interrupted with a STOP statement and an message type I must be output. If you want the system to output the list in the program using SAP ALV Grid control, in Q.25which order you need to carry out the steps in order to acheive this ) A.

A. B. C. D.

A D C B which of the following statement concerning with structures and internal tables in ABAP debugger?

Q.26)

A. B. C.

With the ABAP debugger, you can edit internal tables(for example append lines, delete lines, change contents With ABAP debugger you can change the definition of the structure at run time With the ABAP debugger you can create new data objects even if they are structures or internal tables. Which of the following are tools of ABAP Workbench? (3 correct answer)

Q.27)

A. B.

Human Capital Management System Class Builder

C. D. E.

Easy Access Menu Screen Painter Function Builder You review a ABAP program that needs to be migrated to a Unicode system. Within the program, two data objects city and member are declared in following way DATA: city(20) TYPE c, Begin of Member, firstname(20) TYPE c, lastname(20) TYPE c, age TYPE i, city(20) TYPE c, End of Member. START-OF-SELCTION. city = member+44(20). Why the above line doesnot work as expected?

Q.28)

A. B. C. D.

Because you cannot read beyond the non character data within the structure using offset notations Because the result of offset calculations depends on the Unicode codepage used. Because the integer has 8 bytes Because of the Unicode systems, offsets are allowed for unstructured data objects only. You have implemented a class CL_CUSTOMER where you have defined a private instance variable , from where you can access the private instance attribute directly? (2 correct answer)

Q.29)

A. B. C. D.

You have direct access to the attribute name from all methods of the class cl_customer itself you have direct access to the attribute name from the main part of the program. You have the direct access to the attribute name of all methods of all the subclasses of cl_customer you have direct access to the attribute name from all the methods of a class cl_friend, where cl_customer grants friendship to the class cl_friend. You need to create the ABAP program that list a invoice from a supplier. What types of programs can you create to achieve this goal?

Q.30) (2 correct answer)

A. B. C. D.

ABAP WebDynpro applications ABAP Executable Program. ABAP subroutine ABAP Include program. Which of the following statements are true about data type? (3 correct answer)

Q.31)

A. B. C. D.

Data types can be defined only in ABAP dictionary Data type can be used to define a variable of constants. Data types can be defined in the program. Data types can be defined in ABAP dictionary You want to write the dialog program that changes data on the screen . You want to bundle all updates by using UPDATE FUNCTION MODULE. What do function modules have to do if they encounter problems?

Q.32)

A. B. C. D.

ABORT the message with message axxx(nnn). Write an error message with message exxx(nnn) Write a warning message with message wxxx(nnn) Inform the user with message ixxx(nnn) What do you do if you want to extend SAP table sbook although in your company its strictly forbidden to modify SAP obejcts?

Q.33)

A. B. C.

You have to define a structure where you put in the field travel_agency in and include this structure in the SAP table sbook. You have to create an append structure where you can define an appropriate field with name zztravel_agency You have to extend the SAP table sbook by adding the field travel_agency directly into the definition of the table sbook. On a classical screen (Dynpro) there is an input field for an airline code coming from the field carrid of the database table zcarr. This field carrid refers to the data element z_carr_id which itself refers to the domains z_char_3. You task is to change the F1 help of the field carrid on the dynpro. The documentation of which object do you have change in order the F1 help on the dynpro?

Q.34)

A. B. C.

Documentation of the domain z_char_3. Documentation of the data element z_carr_id Documentation of the field carrid of the table zcarr. The database interface is responsible for which tasks? (3 correct answers)

Q.35)

A. B.

Database independence of applications programs Syntax check of native SQL statements Conversion of Open SQL statements from ABAP statements into the corresponding C. database statements D. Data consistency check with respect to foreign Keys relationships E. Usage of SAP buffers You want to create Web Dynpro component with two view. The selection view contains two input fields for departure and arrival city and a button to trigger the search flight Q.36) connections between two cities. The resulting view contains a table that displays the found flight connections and a button to navigate back to selection. In each view you

have defined an outbound plug that will be fired by pressing the button in that view. Furthermore you have defined the inbound plug in each view. Which is the easiest way to define the navigation structure between two views?

A.

B.

C.

D.

Create a combi view that contains two viewcontainerui element controls. Embed the combi view in a window and the other two views in the viewcontainerui element . Then connect the outbound plug of selection view to the inbound plug of result view and the outbound plug of result view to inbound plug of selection view. Embed each view in its own window . Then connect the outbound plug of the selection view to the inbound plug of result view and the outbound plug of result view to inbound plug of selection view. Embed both the views in same window, within the window connect the outbound plug of selection view to the inbound plug of result view and the outbound plug of result view to inbound plug of selection view. Create a combi window that contains two Viewcontainerui element , Embed these two view in two viewcontainerui element. The connect outbound plug of selection view to the inbound plug of result view and the outbound plug of result view to inbound plug of selection view. You are writing BSP applications where you use global class CL_BSP_CONTROLLER2. This class has implemented the global interface IF_BSP_CONTROLLER in which the method HANDLE_EVENT is defined. There is no other method in the class CL_BSP_CONTROLLER2 with the name HANDLE_EVENT. In your program we find following lines: DATA: r_class TYPE REF to CL_BSP_CONTROLLER2, r_int TYPE REF to IF_BSP_CONTROLLER. CREATE OBJECT r_class. CREATE OBJECT r_int TYPE CL_BSP_CONTROLLER2. Which of the following methods calls are syntantically correct (in relation to above coding)? (2 correct answer)

Q.37)

A. r_int->handle_event( ). B. r_int->if_bsp_controller~handle_event( ). C. r_class->handle_event( ). D. r_class->if_bsp_controller~handle_event( ) Q.38) You are writing application to stores data in internal table temporarily. Since application

is runtime critical, you wonder which type of internal table to use. Which statements about internal table are correct? (2 correct answers)

A. B. C. D.

There are four types of internal table, standard, sorted, hashed and indexed tables. If you want to add entry to sorted table, sort sequence must remain same. You can use index to access hashed tables. You can use the INSERT TABLE statements to add data records to all types of internal tables. Which of the following ABAP statements referring to type t1 is syntantically correct? TYPES:BEGIN of t1, comp1 type scarr-carrid, comp2 type scarr-carrname, END of t1. (2 correct answers)

Q.39)

A. B. C. D.

Data: str1 like t1. TYPES str1 type t1. Data: str1 type t1. TYPES: t2 like t1. In classical screen programming , where can you set the status and title for modal dialog box(popup)?

Q.40)

A. B. C. D.

At the event TOP-OF-PAGE. In the PBO module of corresponding screen In the PAI module of corresponding screen In the attribute of corresponding screen Which of the following command are allowed not if you are working with internal table of Q.41) type sorted? (1 correct answers)

A. B. C. D.

MODIFY INSERT DELETE SORT In your program you need a name of the field of a structure wa_material at run time. Therefore you can use RTTI classes. The root class is CL_ABAP_TYPEDESCR, provides a public static functional methods describe_by_data. This method returns a reference of type CL_ABAP_TYPEDESCR.You have defined a reference r_descr as follows DATA: r_desc type ref to CL_ABAP_STRUCTDESCR. The class CL_ABAP_STRUCTDESCR is a subclass of CL_ABAP_TYPEDESCR. Which of the following statements are syntantically correct?

Q.42)

A. B. C.

r_desc = cl_abap_typedescr=>describe_by_data( wa_material ). r_desc ?= cl_abap_typedescr=>describe_by_data( wa_material ). r_desc != cl_abap_typedescr=>describe_by_data( wa_material ). You want to run a dialog program that update all the changes to the database. You want to bundle al the changes by using update function module. You want to inform the user of the update function module fails. Which is the easiest way to do it?

Q.43)

A. B. C. D.

perform the update synchronously, retrieve the status and write the message to the inbox of the user After the commit work , wait for couple of seconds , check the result of the update , write to the inbox of user Run a job periodically checks the result of the update and writes the message to the inbox of the user The system notifies the user automatically with the express message. You have to define two database tables where in both the tables you need fields change_date and change_time (which are not key fields) How do you proceed?

Q.44)

A. B. C.

Define a append structure with these two fields and assign the append structure to both the tables. Define two fields separately in both the tables. Define structure with these two fields and include the structure in both the database tables. You create the classical screen (dynpro) to enter flight connection data. Each connection is identified by the contents of the fields MANDT, CARRID and CONNID in the database table spfli. The carriers are stored in the scarr table and identified by CARRID . What is the easiest way to ensure that only CARRID values from field SCARR-CARRID can be entered in the dynpro?

Q.45)

A. B. C. D. E.

Maintain SCARR as the value table of the domain of SPFLI-CARRID. Implement a search help that ensures that user can enter only correct values. Implement a PAI module that check the user have entered correct values. Define SCARR-CARRID as foreign key with check table SPFLI and foreign key as MANDT and CARRID Define SPFLI-CARRID as foreign key with check table SCARR with foreign key as MANDT and CARRID Which of the following places uses TYPES? (3 correct answer)

Q.46)

A. B. C. D.

Definition of method parameters. Definition of subroutine parameters Definition of parameters for PBO modules Definition of selection screen parameters. You want to write a ABAP program that make use of SAP GUI . Which of the following UI types can you see? (2 correct answer)

Q.47)

A. B. C. D.

Business Server Pages(BSPs) Classical Screens(dynpros) with controls(like ALV control) ABAP WebDynpro Selection Screen You have written a classical dynpro with number 100 in module pool containing push button p_save. You have assigned function code 'SAV' against this button. In the PAI module USER_COMMAND_100 you want to check if the user has clicked on this button, how can yo achieve this?

Q.48)

A. B. C. D.

check if the field with the ok code attribute in the screen 100 contains the value 'SAV' check if p_save-okcode equals to 'SAV'. Check if field SY-OKCODE contains the value 'SAV'. Check if p_save-ACTIVE = 1.

One of your colleague has left the company and now you are in charge of al lhis programs.One program deals with handling the list, you go through the coding, and in the main part of the program you find the following lines DATA: current_list TYPE I. current_list = cl_list=>number_of_lists(). What type of component is the number_of_list?

Q.49)

A. B. C. D.

number_of_list is public static functional method of the class cl_list. number_of_list is public static attribute of class cl_list number_of_list is public instance functional method of class cl_list number_of_list is public instance attribute of class cl_list Which of the following statements about field transport between ABAP and classical screen (dynpro) are correct? (3 correct answers)

Q.50)

A. B. C. D.

Dictionary structures in SCREEN requires a TABLES statement in ABAP Name equivalence is imperative for field transport between ABAP and SCREEN Field transport from screen to ABAP is delayed if you have FIELD statement. Field transport from ABAP to screen generally takes place before the first PBO module of screen.

Q.5 What is the reasonable sequence for following ABAP statement 1)

A. B. C. D.

A B C D You have defined classical screen with mandatory input field, you want CANCEL fuction to work even if not all the mandatory fields have been filled. How can you achieve this?

Q.52)

A. B. C. D. E.

The CANCEL fumction must have function code BACK No special action required There is no way to do this, you need to always fill in the required fields you must temporarily switch of the required entry fields for the concerned input field within LOOP AT SCREEN... ENDLOOP. The CANCEL function should be of type 'E' and must be handled in the module AT EXIT-COMMAND. You as a ABAP consultant have been asked by customer to lists out the benefits of moving from non-unicode to unicode system? (2 correct answers)

Q.53)

A. B. C. D.

Unicode system requires less database space Transfer of character sets between two unicode systems from different cultures is easier than between NON-unicode systems. A unicode system can support users of different cultures A unicode system automatically translates between different cultures. Which statements concerning ABAP workbench are true? (3 correct answers)

Q.54)

A.

Workbench favorites can be maintained in the navigation area

B. C. D.

Navigation area and tool area are always coupled . For example you maintain a program in the tool area , the same program will automatically will appear in the object list of navigation area Navigation area can be hidden so that tool area appears in full screen mode. Within the object navigator you can maintain each type of ABAP workbench object ( programs, screen, includes etc..). You want to create a simple search help, last search help you created was long time ago. Therefore you try to recall what component are needed for simple search help (3 correct answer)

Q.55)

A. B. C. D.

The dialog behavior, for instance selection screen appear or not The interface, import and export parameter. The selection method, from which table or view the data should come from The attachment to a field, at which level search help should appear. SAP programer has written a standard program in way that it can call customer coding, you want to implement this coding . What is this technique called?

Q.56)

A. B. C. D. E.

Enhancements Modifications Corrections Personalization Repair Why doesnt SAP recommends to modify the SAP standard programs. (2 correct answer)

Q.57)

A. B. C. D.

To simplify the upgrade to new versions To avoid performance problems To ensure smooth support from SAP To protect SAP's intellectual property. You want to display data from transparent table BKPF and BPOS which contain header Q.58) data and position data of accounting documents. The primary key of BKPF is MANDT and BELNR(document number) . The primary key of BPOS is MANDT , BELNR and

POS(position). What are the options to select data from BKPF together with corresponding data of BPOS? (3 correct answers)

A. B. C. D.

Use a view Use a left outer join Use two nested select loops Use a inner join Yyou want to display the data of accounting documents with BELNR = 10000 from table BKPF and BPOS . These transparent tables contains HEADER data and POSITION data .The primary key of BKPF is MANDT and BELNR(document number) . The primary key of BPOS is MANDT , BELNR and POS(position).which would be the correct statement to achieve this ?

Q.59)

A. B. C.

Select * from bkpf INNER JOIN bpos on bkpf.belnr = bpos.belnr into wa WHERE bkpf.belnr = '1000'. Select * from bkpf RIGHT OUTER JOIN bpos on bkpf~belnr = bpos~belnr into wa WHERE bkpf~belnr = '1000' Select * from bkpf INNER JOIN bpos on bkpf~belnr = bpos~belnr into wa WHERE bkpf~belnr = '1000'. You execute the ABAP program with several dialogs steps(screen) which statements is correct?

Q.60)

A. B. C.

The ABAP dispatcher takes over the entire execution of the ABAP program and gets the user context of the program from roll area The program components for the individual dialog steps are usually executed in various dialog work processes that are released once the program components has been processed (while screen display on the front end). The entire program is processed in exactly one dialog process. This dialog process is reserved for that program while the screen is displayed on the front end.

In classical screen programming, which conditions must be fulfilled in programming check so that screen field is ready for input (2 correct answer)

Q.61)

A. B. C. D.

Module must output an E Type or W Type message An I type message must be outputted The check module must be called using FIELD field_name MODULE check_module. The check module must be called using FIELD field_name MODULE check_module MESSAGE Enn. In your team of ABAP developer there is lot of confusion concerning relationships between Enhancement point, Enhancement spots and Enhancement sections. Which statements about these concepts are true? (2 correct answers)

Q.62)

A. B. C. D.

An Enhancement point manages either new BADIs or explicit enhance point and enhancement section classical BADI's are not part of Enhancement spots Enhancement point organizes the explicit enhancement spots, enhancement sections and new BADI's Enhancement spots organize explicit enhancement point, enhancement sections and new BADI's You detected an error in SAP standard program , you need to correct this error in the development system and then transport it to the production system . What is this action called?

Q.63)

A. B. C.

Support Package Repair HotFix

D.

Modification When you refer to the field of database table typically you refer to a dataelement,which in turn refers to domain. But it is also possible to set to dataelement without refering to domain. Which feature do you get in , if you refer the dataelement to a domain?

Q.64)

A. B. C.

Only then you can add this field to the database view. Only then you can link the search help to this field Only then it is possible to define a check table for this field. For a database table zdepartment you have defined a text table zdepartmentt in the ABAP dictionary , where the names of the department are stored. How would you design the text table zdepartmenttso that it is a text table of zzdepartment. (3 correct answers)

Q.65)

A. B. C. D.

The text table zdepartmentt is linked with table zdepartment by a foreign key of type key fields of text table. The text table zdepartmentt as atleast one text field which is not a key field. The text table zdepartmentt is a cluster tables The text table zdepartmentt has same key fields as zdepartment plus one additional key field of data type LANG. You design an executable program that displays flight bookings, the selection screen of the program contains the parameters pa_car of type SCARR-CARRID for the carrier, you want to make sure that users will be forced to re enter the carrier , if they type in a carrier for which they don't have authorization. Hence you perform a authority check with authorization object S_CARRID. Where do you do this?

Q.66)

A. B. C. D.

In th event block GET SCARR. In the PBO module of the selection screen In the event block AT USER-COMMAND In the event block AT SELECTION-SCREEN. Which of the following statements are true about active and non active development objects?

Q.67)

A. B. C. D.

The inactive version can be seen only by the developer who has created it, that is there is no shared view of inactive versions If the inactive version is activated , it becomes the new active version of the object at the very moment the old active active version becomes inactive version. Inactive versions can be transported as long as they were originally created in development system. If a program P1 calls program P2 from outside of the development environment and even if there is a inactive version of program P2 , still the active version of P2 will be called. The SAP NetWeaver Application server offers the possibility to install an ABAP or JAVA stack. Which of the statements are true about possible combinations of ABAP and JAVA stack in one SAP NetWeaver Application Serve

Q.68)

A. B. C.

In one SAP NetWeaver Application Server there can be installed either an ABAP stack or JAVA stack , but never both the stacks. In one SAP NetWeaver Application Server there can be installed either a stand alone ABAP stack or a stand alone JAVA stack or combination of ABAP and JAVA stack In one SAP NetWeaver Application Server there can be installed either a stand alone ABAP stack or combination of ABAP and JAVA stack but never a stand alone JAVA stack. Which of the following statements are true about SAP NetWeaver? (3 correct answer)

Q.69)

A. B. C. D. E. F.

The main purpose of SAP NetWeaver is to integrate people, information and process to provide platform for applications. SAP ERP is part of SAP NetWeaver The Industrial Solution Utilities(ISU) is part of SAP NetWeaver SAP NetWeaver can be used to integrate non-SAP application systems. The Bank Analyzer is part of SAP NetWeaver SAP NetWeaver provides tools to integrate a hetrogeneous software landscape. When you implement a class you can use most of the procedural ABAP statements within the class. But some statements are forbidden within the class definitions? (3 correct answers)

Q.70)

A. B. C. D.

The TABLES statements Definition of nested structures Typing with LIKE to ABAP dictionary types Definition of internal table with header line. In a class cl_vehicle, you need get_fuel method , which estimates the fuel consumption of a vehicle. This method is implemented as functional method . How you define a functional method? (2 correct answers)

Q.71)

A. B. C. D.

Functional method can have any number of importing and exporting parameters You can use functional methods directly in arithmetic expressions A functional methods needs atleast one return statement. A functional method has exactly one returning parameter. You want to create WebDynpro Application in the object navigator. What do you need to specify in the WebDynpro application?

Q.72)

A. B. C. D.

A Webdynopro component and window within this component. A Webdynopro component and context within this component A Webdynopro component and interface view within this component A Webdynopro component and controller within this component Your colleague need some advise on implicit conversion issues. Which of the following statements are true?

Q.73)

As a matter of principle , it is forbidden to assign a data object of type string to the content of type I. B. Implicit conversion works for ABAP types only, not for dictionary types. As a matter of principle , it is forbidden to assign a data object of type I to the contents C. of type STRING A data object of type N may be used for calculations (although Type N is not the best D. type to do so) You write a ABAP executable program that displays the flight connections between two Q.74) cities. You have provided selection parameters for departure city and destination city . In A.

your program you have written event blocks for events AT SELECTION-SCREEN, INITIALIZATION, LOAD-OF-PROGRAM, START-OF-SELECTION. In which sequence will ABAP runtime call these event blocks

A. B. C. D.

INITIALIZATION, LOAD-OF-PROGRAM,START-OF-SELECTION, AT SELECTIONSCREEN. INITIALIZATION, AT SELECTION-SCREEN, LOAD-OF-PROGRAM, START-OFSELECTION INITIALIZATION, LOAD-OF-PROGRAM, AT SELECTION-SCREEN, START-OFSELECTION LOAD-OF-PROGRAM, INITIALIZATION, AT SELECTION-SCREEN, START-OFSELECTION. Which of the following two statements about the organization of developments are correct? (2 correct answers)

Q.75)

A. B. C. D.

one important attribute of object directory entry of development object in the original system. It is convenient to use the production system as original system you can assign transport layer to each type of development object one important attribute of package is the transport layer which determines the following system for a regular transport of package's objects. A development object must be either assigned to package or declared as local objects. You want to implement a BADI that provides a functional enhancement. What do you need ?

Q.76)

A. B. C. D.

Define an interface for BADI Implement a class which implements BADI Create an enhancement project with CMOD call a BADI During the debugging of the program you find that only in certain constellations an error Q.77) appears. Watch points could help you to reach the erroneous constellations faster. Which statements about watch points are true? (2 correct answers)

A. B. C. D.

Watch point is always related to the data object of the debugged program . No matter how you define the watch point, the system will always stop the execution if the contents of related data objects is changed and issues a message Watchpoint reached Several watchpoints can be combined using AND or OR Watchpoint can be created using ABAP menu Goto->create watch point. You can define the watchpoint only from within the debugger. You design a classical screen with number 100 for an ABAP program,screen 100 contains input field that refers to ABAP dictionary structure SDYN_CONN. What do you have to do so that your ABAP program can access the data entered in the PAI processing?

Q.78)

A. B. C. D.

use the statement TABLES: SDYN_CONN to declare the structure named SDYN_CONN in the top include of your program. Use the statement GET FIELD SDYN_CONN in the PAI module user_command_100. Use DATA statement to declare a structure SDYN_CONN in the top include of your program. Use the statement GET FIELD in the PAI logic of the Dynpro. You want to display the data in a view of WebDynpro component. However the data you want to display are stored in the context of component controller . What is the best way to display the data?

Q.79)

A. B. C. D. Q.80)

Move the context of the component controller to the context of the view controller and bind the control that displays the data to the context of view controller. Copy the context of component controller to the context of view controller and bind the control data that displays the data to the context of view controller Bind the control that display the data to the context of component controller. Map the context of components controller to the context of the view controller and bind the control data that displays the data to the context of view controller. Which of the following Hook methods exists in View Controllers? (3 correct answers)

A. B. C. D. E. F.

wdDOBeforeNavigation wdDOModifyView wdDOInit wdDOPostProcessing wdDoBeforeAction wdDOApplicationStateChanged

Anda mungkin juga menyukai