16
1 of 50 How to add text to a UI label in WD layout for different language? A) Text elements / Text symbols B) Hardcode is all login language C) OTR / Binding D) Resume/Exit 2 of 50 In SAP ERP 6.0 EhP 5, how can you make a ABAP program Unicode compliant A) All ABAP programs are Unicode compatible B) Check the Unicode tickbox on attributes C) Done during system installation D) Specify in the ABAP program code 3 of 50 Agent determination results into 4 agents for a particular step. One of the agent excutes the work item however recognizing that it has to be executed by another person, does not complete the work item processing and cancels his action. In this case work item will A) be available in SAP inbox of all agents and anybody of them wil be able to execute it B) not be available to anybody of them C) Will be available only to agent who has acted on this work item D) Wil be avaibale to workflow administrator only 4 of 50 Assuming tab1-fld7 is not a key field, how can you prevent reading all the table rows? SELECT fld1 fld2 fld3 FROM tab1 INTO (fld4, fld5, fld6)

ABAP technie

Embed Size (px)

DESCRIPTION

Sample question and ans to clear

Citation preview

Page 1: ABAP technie

1 of 50How to add text to a UI label in WD layout for different language?

A) Text elements / Text symbols

B) Hardcode is all login language

C) OTR / Binding

D) Resume/Exit

2 of 50In SAP ERP 6.0 EhP 5, how can you make a ABAP program Unicode compliant

A) All ABAP programs are Unicode compatible

B) Check the Unicode tickbox on attributes

C) Done during system installation

D) Specify in the ABAP program code

3 of 50Agent determination results into 4 agents for a particular step. One of the agent excutes the work item however recognizing that it has to be executed by another person, does not complete the work item processing and cancels his action. In this case work item will

A) be available in SAP inbox of all agents and anybody of them wil be able to execute it

B) not be available to anybody of them

C) Will be available only to agent who has acted on this work item

D) Wil be avaibale to workflow administrator only

4 of 50Assuming tab1-fld7 is not a key field, how can you prevent reading all the table rows? SELECT fld1 fld2 fld3 FROM tab1 INTO (fld4, fld5, fld6) WHERE fld7 = pfld7. WRITE: /1 fld4, fld5, fld6. ENDSELECT.

A) Take fld7 out of the WHERE clause

Page 2: ABAP technie

B) Create an index in the ABAP Dictionary for tab1-fld7

C) Use INTO TABLE instead of just INTO

D) Take the WRITE statement out of the SELECT_ENDSELECT

5 of 50In an SAP R/3 4.6C system, what should you do to maintain Chinese and Japanese as Logon languages in addition to English and German?

A) Make SAP R/3 4.6C as Unicode Compatible

B) Install a Blended Code page

C) Install separate systems for CHINESE and JAPANESE languages

D) Chinese and Japanese are not supported on SAP R/3 4.6C

6 of 50Advantages of Web services area) Reusabilityb) Deploy abilityc) Interoperability d) Internet friendliness

A) a , b and c

B) a, c and d

C) b ,c and d

D) a,b,c and d

7 of 50What is the interface to show information messages in Webdynpro abap?

A) IF_WD_GET_MESSAGE

B) IF_WD_MESSAGE_MANAGER

C) IF_WD_GET_REPORT_MESSAGE

Page 3: ABAP technie

D) IF_WD_REPORT_MESSAGE

8 of 50What is the cardinality of node to the Drop down by key UI Element?

A) 0:n

B) 1:n

C) 1:1

D) 0:1

9 of 50What are field symbols? A. Field symbols are like pointers in C that can point to any data object in ABAP/4 and to structures defined in ABAP/4 dictionary.B. Field symbols have to be created with type specifications only.C. You cannot assign one field symbol to another.D. All operations you have programmed with the field symbol are carried out with the assigned field.

A) Only B

B) A and D only

C) A , B and D only

D) A, B and C only

10 of 50Fully integrated into the SAP NetWeaver 2004 platform, SAP Interactive Forms enables developers toa) Design templates and create interactive forms in the SAPNWDS tool or the ABAP workbench using Adobe LiveCycle Designer softwareb)Integrate SAP Interactive Forms with any SAP applicationc)Distribute interactive forms from within SAP applications tousers for a multitude of business processes

A) a and b

B) a and c

C) b and c

D) a , b and c

Page 4: ABAP technie

11 of 50Report variant are used for

A) Defaulting set of selection criteria for the report

B) Group together a set of selection criteria to be used for transaction

C) Set up the system so that the selection criteria can not be changed

D) Set up the system so that the selection criteria can be changed

12 of 50If you are getting SOAP runtime exception, no system response errors, what could be the possible reason?

A) Adobe Rendering error

B) Adobe Configuration Error

C) Adobe Connection error

D) Adobe Database Error

13 of 50What is the pre-requisite for transaction WSPUBLISH?

A) set up a connection to PI system

B) SOAmanager

C) set up a connection to SOLMAN

D) set up a connection to the Services Registry

14 of 50Read the following two statements and choose correct one. (I) SELECT * FROM sflightINTO xflight.CHECK xflight-carrid = 'LH '.CHECK xflight-connid = '0300'.CHECK xflight-fldate(4) = '2002'.WRITE: / xflight-fldate.

Page 5: ABAP technie

ENDSELECT.

(II) SELECT * FROM sflightINTO xflightWHERE carrid = 'LH ' ANDconnid = '0300' ANDfldate LIKE '2002%'.WRITE: / xflight-fldate.ENDSELECT

A) Statement (I) will work more efficiently.

B) Statement (II) will work more efficiently.

C) Statement (I) and (II) will take same time to execute.

D) Both Statement will take more time to execute

15 of 50What makes up the application platform of SAP NetWeaver

A) Database

B) A runtime environment for ABAP

C) A runtime environment for JAVA

D) HTTP

16 of 50International Payroll Driver Program is

A) RPCALCX0

B) RPCALCU0

C) RPCALCY0

D) RPCALCZ0

17 of 50Views :

Page 6: ABAP technie

A) Are embedded into window

B) Can contain HTML or scripting via CSS

C) Defines the visible layout via predefined UI elements

D) UI elements cannot be defined for a secondary view at runtime

18 of 50Initializing an object in a subclass requires that the constructor of the superclass is first called. Identify the correct syntax.

A) Call Method Super Constructor

B) Call Method Constructor

C) Call Method Super-> Constructor

D) Call Method Constructor-> Super

19 of 50What components are part of the make up of a Business Add In

A) Functional Exits

B) Adapter Class

C) Business Object

D) Interface

20 of 50What is output by the following code? DATA: BEGIN OF itab OCCURS 0, letter type c, END OF itab. itab-letter = 'A'. APPEND itab. itab-letter = 'B'. APPEND itab. itab-letter = 'C'. APPEND itab. itab-letter = 'D'. APPEND itab. LOOP AT itab. SY-TABIX = 2. WRITE itab-letter.

Page 7: ABAP technie

EXIT. ENDLOOP.

A) A

B) A B C D

C) B

D) B C D

21 of 50Rules when developed are

A) Client specific

B) Available only in Golden client

C) Cross client

D) Available only in client 000

22 of 50Which of the project phase is most important from process design and definition perspective

A) Realization

B) Project Preparation

C) Blueprint

D) Acceptance testing

23 of 50What is the difference between two methods BIND_ELEMENTS and BIND_ELEMENT of interface IF_WD_CONTEXT_NODE in WDA.

A) both method contains parameter ELEMENT of referenced type IF_WD_CONTEXT_ELEMENT

B) BIND_ELEMENT contains parameter ELEMENT of referenced type IF_WD_CONTEXT_ELEMENT whereas BIND_ELEMENTS does not.

Page 8: ABAP technie

C) BIND_ELEMENTS contains parameter ELEMENT of referenced type IF_WD_CONTEXT_ELEMENT whereas BIND_ELEMENT does not.

D) both method does not contain parameter ELEMENT of referenced type IF_WD_CONTEXT_ELEMENT

24 of 50A SAP system has golden client (100), development client(500) and Unit test client (400). For testing the workflow development, workflow customizing needs to be carried out in

A) Client 100

B) Client 500

C) client 400

D) Any client

25 of 50Why Dynamic programming is required?

A) If the data structure is only known during runtime.

B) If the data structure not known during Run time

C) If generic applications have to be developed.

D) If the structure for views is generic.

26 of 50While calling 'POPUP_WINDOW from main view this code snippet will:      method ONACTIONCLICK_POPUP .      data lo_window_manager type ref to if_wd_window_manager.      data lo_window         type ref to if_wd_window.         lo_window         = lo_window_manager->create_window(                   window_name            = 'POPUP_WINDOW'                   ).      lo_window->open( ).

A) Open the popup_window

B) Syntax error

C) Runtime error

Page 9: ABAP technie

D) None

27 of 50Global Class cl_flight has been defined using the class builder. The development class is ZCL. What is the key entry in the repository table TADIR

A) R3TR cl_flight

B) R3TR CLAS cl_flight

C) R3TR ZCL CLASS

D) R3TR GLOB CLASS

28 of 50Which ABAP statement is used to call a customer enhancement from an SAP program?

A) CALL FUNCTION ZXY_APPLICATION-001

B) PERFORM ZXYZ1234

C) CALL CUSTOMER-FUNCTION 001

D) CALL DIALOG ZXY-APPLICATION-001

29 of 50Which Interface is used for Reporting Messages.

A) IF_WD_MESSAGE_MANAGER

B) IF_WD_MESSAGES_MANAGER

C) IF_WD_MESSAGE

D) IF_MESSAGE_MANAGER

30 of 50What is the critical success factor for Upgrade?

A) More resources

Page 10: ABAP technie

B) Systems Hardware

C) Extensive Regression Testing

D) High Memory

31 of 50Which of the below is not a day types?

A) 0 work paid

B) 1 off paid

C) 4-9 customer specific

D) 10 special day

32 of 50Which of the following statement about SAP Interactive Forms by Adobe in the Java environment is true

A) The BI integration allows you to print dynamic reports on the fly.

B) Guided Procedures combines process management with forms

C) Web Dynpro Java is preferred custom development environment.

D) Transaction for designing the form is SMARTFORMS

33 of 50Which UI elements does not allow the display of recursive data?

A) UI-element Tree

B) UI-element Table

C) UI-element Contextual Navigation Panel

D) None of These

Page 11: ABAP technie

34 of 50While creating GUI status for RF which of the below are part of it

A) Menu Bar

B) Application Toolbar

C) Function keys

D) Screen Keys

35 of 50The SAP Web Application Server implements the following basic Web services standards a)eXtensible Markup Language (XML) b)Simple Object Access Protocol (SOAP)c)Universal Description, Discovery, and Integration (UDDI)

A) a only

B) b only

C) a and c

D) a ,b and c.

36 of 50Which one of the following class does not correspond to the layout?

A) Cl_wd_melting_group_data

B) Cl_wd_matrix_head_data

C) Cl_wd_matrix_row_data

D) Cl_wd_row_data

37 of 50The standard SAP service for Tax withholding W4 is _____

A) PZ00

B) PZ01

Page 12: ABAP technie

C) PZ10

D) PZ11

38 of 50How many Miscellaneous Activities can be performed in CDMC

A) 1

B) 2

C) 5

D) 3

39 of 50What is the supper class to assistance class?

A) CL_WD_COMPONENT_ASSIST_CLASS

B) CL_WD_COMPONENT_ASSISTANCE

C) CL_WD_ASSISTANCE_COMPONENT

D) CL_WD _COMPONENT_ASSIST

40 of 50In the below code which uses text elements.     data: lv_string type string.     lv_string = wd_assist->if_wd_component_assistance~get_text('025'). 

A) text elements cant be used in webdynpro

B) text elements can be used in webdynpro

C) code is wrong

D) None of them

41 of 50

Page 13: ABAP technie

Default MODE when declaring Infotypes in a program is ____

A) MODE P

B) MODE N

C) MODE X

D) MODE Y

42 of 50What is playback?

A) use the data recorded during a Web service call to simulate a call to the provider without starting your Web service consumer

B) use the data recorded during a Web service call to simulate a call to the consumer without starting your Web service provider

C) Record web service calls

D) Display web service calls

43 of 50Which of the below is not a form of trace available?

A) Payload trace

B) SOAP trace

C) Performance trace

D) Functional trace

44 of 50Standard function group which contains the standard RF developments in SAP

A) LMAT

B) XLRF

Page 14: ABAP technie

C) LMOB

D) LMBP

45 of 50If a data type D is converted into N, then

A) The characters of the source field are transferred left-aligned into the target field

B) Trailing blanks from the source field are copied

C) If the target field is longer than the source field, the field is filled from the right with "0" characters

D) You can not convert D into N

46 of 50The mappings of Logical to Physical Screens are done in which Transaction

A) LRFMD

B) LM00

C) SPRO

D) LRF2

47 of 50Which of the following is not true about Adobe Print Form?

A) Importing existing PDF files or forms

B) Adobe LiveCycle Designer uses the script languages JavaScript and FormCalc

C) You can use output parameters to specify print and archive settings

D) Smart Forms are not supported anymore.

48 of 50Purpose of "Determine Active user Exits"

Page 15: ABAP technie

A) Gives active user exits for the selected development classes

B) Gives active user exits for the selected programs

C) Gives active user exits for the selected interface

D) Gives active user exits for the selected screen

49 of 50What does MDMP stand for

A) Multiple Data Multiple Print

B) Multi Display Mutli Processing

C) Multi Dialog Multi Print

D) Multi Document Multi Printer

50 of 50Which of the following is true about Master Pages

A) Form design can have no master page

B) Master pages represents the number of pages in the form

C) Page format can't be defined using master pages

D) Master page can be used for defining header and footer of the form output.