preparation

7
1. ------------- is not related to agent determination in workflow. A) Possible Agents B) Excluded Agents C) Included Agents D) Responsible Agents 2. Which UI element is used to display step by step workflows to enable an application development to display small steps to clearly defined work process A) RoadMap B) BreadCrumbs C) Iview D) Both Roadmap and BreadCrumbs 3. What is the use of XCI file? A) It contains information about form design B) Definition of the data which an application uses C) It’s a configuration file, which specifies different configurable settings D) It contains information about structure and data 4. Enhancement options are automatically available at certain pre- defined places. Some of the implicit options are A) Before all Call transaction statements B) Above all the message C) At the end of function modules D) Above sy-subrc checks. E) In ABAP programs, implicit enhancement options are predefined at the following places: F) · At the end of an include. There are some restrictions, for example, not at the end of a method include. G) · At the end of a PUBLIC-, PROTECTED-, PRIVATE-SECTION of a class. H) · At the end of the implementation part of a class (before the ENDCLASS, which belongs to CLASS …IMPLEMENTATION). I) · At the end of an interface definition (before the ENDINTERFACE). J) · At the end of a structure definition (before TYPES END OF, DATA END OF, CONSTANTS END OF, andSTATICS END OF). K) · At the beginning and at the end of a procedure (FORM, FUNCTION, METHOD). That is, after commands FORM,FUNCTION, and METHOD, and before statements ENDFORM, ENDFUNCTION, and ENDMETHOD.

Upload: anil-kumar-reddy

Post on 05-Jan-2016

6 views

Category:

Documents


2 download

DESCRIPTION

fddf

TRANSCRIPT

Page 1: Preparation

1. ------------- is not related to agent determination in workflow.A) Possible AgentsB) Excluded AgentsC) Included AgentsD) Responsible Agents2. Which UI element is used to display step by step workflows to enable an application

development to display small steps to clearly defined work processA) RoadMapB) BreadCrumbsC) IviewD) Both Roadmap and BreadCrumbs

3. What is the use of XCI file?A) It contains information about form designB) Definition of the data which an application usesC) It’s a configuration file, which specifies different configurable settingsD) It contains information about structure and data

4. Enhancement options are automatically available at certain pre-defined places. Some of the implicit options areA) Before all Call transaction statementsB) Above all the messageC) At the end of function modulesD) Above sy-subrc checks.

E) In ABAP programs, implicit enhancement options are predefined at the following

places:

F) ·  At the end of an include. There are some restrictions, for example, not at the

end of a method include.

G) ·  At the end of a PUBLIC-, PROTECTED-, PRIVATE-SECTION of a class.

H) ·  At the end of the implementation part of a class (before the ENDCLASS, which

belongs to CLASS …IMPLEMENTATION).

I) ·  At the end of an interface definition (before the ENDINTERFACE).

J) ·  At the end of a structure definition (before TYPES END OF, DATA END

OF, CONSTANTS END OF, andSTATICS END OF).

K) ·  At the beginning and at the end of a procedure (FORM, FUNCTION, METHOD).

That is, after commands FORM,FUNCTION, and METHOD, and before

statements ENDFORM, ENDFUNCTION, and ENDMETHOD.

L) ·  At the end of the CHANGING-, IMPORTING-, EXPORTING-parameter list of a

method. These enhancement options are located in the middle of a statement.mplicit enhancement options always exist and no enhancement spot is assigned to them.

5. Units of scale and measurement can be changed in which palette?A) Drawing AidsB) ObjectC) Hierarchy

Page 2: Preparation

D) Data view

http://wiki.scn.sap.com/wiki/display/ABAP/Adobe+Forms+from+Scratch

The properties of all objects in the layout are maintained in palettes - 'Layout', 'Border', 'object' and 'Accessibility'.Designing of the form can be made, at your comfort level, by setting the scales and measurements in the palette 'Drawing Aids'.  

6. What are the major activities done during GO-LIVE PREPARATION of the projectA) Transport configurationB) Handle master data requirementC) Handle open documentsD) Optimizing overall system performance

7. At what time does an object reference get assigned to the SENDER during event handling?Methods: get_paid FOR EVENT cheque_issued of lcl_flight Importing im_flight_number SENDER.A) Set Handler get_paid for all instancesB) Set handler get_paid for SENDERC) Raise Event cheque_issuedD) When the event handler method get_paid is executed

8. Which of the following method is called for all visible views at the time of action is executed?A) WDONACTIONB) WDDOPOSTPROCESSINGC) WDDOAFTERNAVIGATIOND) WDDOAFTERACTION

WDDOAFTERACTION

•          This method is called for all visible views at the time an action is executed.

•          Here functions can be placed that are carried out equally for all associated event handlers.

WDDOBEFOREACTION

•          Before an action is triggered, you can perform your own validations using this method.

•          The method can only be used for view controllers.

•          It is used for all visible views of the component assigned to the current phase model instance. These

include all embedded components

WDDOPOSTPROCESSING

•          This method is called in the last process step before rendering. Therefore, it allows you to add

application-specific clean-up processes

WDDOBEFORENAVIGATION

Page 3: Preparation

•          The method WDDOBEFORENAVIGATION can be used to perform an additional validation of those

controller contexts that are required in the application but have not been validated in the request/response

cycle yet .

•          This method can only be used for the component controller

9. How to use add custom field into table PAnnnnA) AppendB) Include new structureC) Include ci_structureD) Directly add the field into the table.

10. What should be the cardinality of the Context data source node, that is used for transferring data from WD ABAP to Adobe forms?A) 0..nB) 1..nC) 0..1D) 1..1

DataSource(Cardinality 1..1)

  --> Table (Cardinality 0..n)

11. What is true about Assistance class?A) Is automatically instantiated when a component is calledB) The instance is available to each controller of the component through attribute WD_ASSISTC) The class CL_WD_COMPONENT_ASSISTANCE provides central functions through which a

Wen Dynpro component can access text symbol of the assistance classD) All the above statements are true

12. Which method resets the range table of a selection field?A) CLEAR_SELECTION_FIELDB) REFRESH_SELECTION_FIELDC) REST_SELECTION_FIELDD) CLEAR_FIELD

13. Components of SAP NetWeaver application platform does not includeA) JAVA 2 platform, Enterprise edition (J2EE) engineB) Adobe Livecylce DesignerC) SAP Netweaver developer studioD) Web runtime engine Dynpro

Answer is not absolutely correct please check

14. Which method is used to add an element?A) Add_new()B) Add_child()

Page 4: Preparation

C) Add_new_element()D) Add_new_child()

In class “CL_WD_UIELEMENT_CONTAINER” only add_child() method is present . SO, going for the same option

15. The value of PNP-SW-FOUND is 1 whats the significance?A) Sy-subrc = 0B) Sy-subrc = 4C) Sy-subrc = 1D) Sy-subrc = 8

16. Which method used for sorting columnsA) COLUMN_SORTING method interface IF_WD_TABLE_HNDL_METHODB) APPLY_SORTING method of interface IF_WD_TABLE_METHOD_HNDLC) COULMN_SORTING method of interface IF_WD_TABLE_METHOD_HNDLD) APPLY_SORTING method of interface IF_WD_TABLE)HNDL_METHOD

17. How many modification logs are available in your system?A) 1 for every releaseB) Determined by Basis group –this is a configurable itemC) Minimum of 1D) Maximum of 1

18. What are used to construct the layout of tables in Smartforms?A) TemplatesB) NodesC) Row typesD) Line Types

19. Which of the following are True for Exits plugsA) Exit plugs are outbound plugs used to close the webdynpro applicationB) They can be called from the views which are embedded in the windowC) Exit plugs won’t work in portal environmentD) Exit plugs cannot be used to pass the call to another URL

Exit plugs do not work in a portal environment.

Exit plugs can also be used to pass the call to another URL

The exit plug is a special outbound plug.

If a Web Dynpro window is closed by means of an exit plug, the associated application is

ended automatically. For this reason an exit plug can only be used if it is available to the

interface view of the window.

20. Tcode used to monitor proxy message communication

Page 5: Preparation

A) SXNB_MONIB) SXMB_MONIC) SHDB_MONID) SMDB_MONI

SXMB_MONI - Integration Engine – Monitoring

SMQ2 - qRFC Monitor (Inbound Queue) Basis - RFC

SPROXY - Enterprise Repository Browser Basis - Proxy Generation

SMQ1 - qRFC Monitor (Outbound Queue) Basis - RFC

SXI_CACHE - Integration Directory Cache Basis - Integration Builder - Configuration

SXMB_ADM - Integration Engine - Administration Basis - Integration Engine

Read more: http://www.tcodesearch.com/tcodes/search?q=proxy+communication#ixzz3meLGL6Hf

21. Which of the below is a standard macro used in HR?A) Rp_provide_from_frstB) Rp_provide_from_lstC) Rp_provide_from_firstD) Rp_provide_from last

22. One of the component of System landscape DirectoryA) Component informationB) Integration repositoryC) Integration directoryD) Integration server

23. Protocol stack of web service are in order as followA) Discovery protocol->Messaging protocol->Description protocol-> Transport protocolB) Transport protocol-> Messaging protocol-> Description protocol-> Discovery protocolC) Discovery protocol-> Description protocol -> Messaging protocol-> Transport protocolD) Transport protocol -> Description protocol-> Messaging protocol -> Discovery protocol

24. Why are asynchronous updates used for dialog transactions?A) Only asynchronous updates can access the SAP system buffersB) Because this allows the user to proceed with the next task before the update on the

database has finishedC) Because only update work processes can change database entriesD) Because only update work process can delete database entries

25. Which of the following is trueA) Time constraint can only be maintained at infotype level and the subtype will inherit time

constraint from the infotype

Page 6: Preparation

B) Time constraint is only meant for infotypes without subtypesC) Time constraint cannot be set if an infotype has subtypeD) Time constraint can be maintained at subtype level

26. The reference to the meta data of a context node is determined using the method of the nodes referenceA) get_node_ref()B) get_node_context()C) get_node_info()D) get_context_node_info()

27. Which of the following statement is true.A) Adobe document services expose their functionality to the PDF object implementation directlyB) Access to ADS cannot be provided using PDF objectC) Access to Adobe document services is provided using web Dynpro and form processingD) Access to ADS can be provided using PDF object.