SAP Web Dynpro Interview Questions


Advertisements


Dear readers, these SAP Web Dynpro Interview Questions have been designed specially to get you acquainted with the nature of questions you may encounter during your interview for the subject of SAP Web Dynpro. As per my experience good interviewers hardly plan to ask any particular question during your interview, normally questions start with some basic concept of the subject and later they continue based on further discussion and what you answer −

Web Dynpro is standard SAP UI technology that allows you to develop web applications using graphical tools and development environment integrated with ABAP workbench. Using graphical tools reduce the implementation effort and you can better reuse and maintain components in ABAP workbench.

To access Web Dynpro runtime environment and graphical tools in ABAP workbench, you can use Transaction code: SE80

These are key benefits of using Web Dynpro for developers in ABAP environment −

  • You can easily maintain and reuse components for development.

  • Less implementation time as use of graphical tools.

  • You can easily change layout and navigation using graphical tools.

  • Easy structure changes.

  • With use of data binding, you can use automatic data transport.

  • Ease of integration in ABAP environment.

  • Web Dynpro ABAP is same as Web Dynpro Java as support same set of functions for the application development.

Web Dynpro applications are based on MVC model, whereas −

Model

This allows the access to back end data in a Web Dynpro application.

View

This is used to ensure the representation of data in a web browser.

Controller

This is used to control communication between Model and view where it takes input from users and get the processes data from model and displays the data in browser.

Each Web Dynpro application contains at least one view and it is used to define layout of a user interface. Each view consists of multiple user element and a controller and context.

The controller is used to process user request and processing of data and context contains data to which elements of view are bound.

You can navigate between different views using inbound and outbound plugs. The inbound and outbound plugs are part of view controller and inbound plug defines the starting point of view and outbound plug tells the subsequent view to be called.

A view set is defined as predefined section where you can embed different views in a Web Dynpro application. View set allows you to display more than one view in a screen.

Below are few advantages of view set in designing an application −

  • You can reuse views in a Web Dynpro window.
  • You can easily make changes to layout at later stage.
  • More structured approach to use more than one view.

In Web Dynpro, window is used to use multiple views or view sets. A view can only be displayed when it is embed in a view and a window always contain one or more views which are connected by navigation links.

Each window contains inbound and outbound plugs and they can be included in navigation chain. Inbound plugs within a window lead from the outbound plug of a view to the embedding window. Just like all other inbound plugs, they represent an event and thus call the event handler assigned to them.

Controllers are used to define how a Dynpro application responds to user interactions. Each view has one controller which is responsible to perform actions as per user interaction.

In Dynpro application, you can define mapping between two global controller contexts or from view context to global controller context.

Data binding of a UI element property is set up in the view layout. For this purpose, you use the Binding column in the properties table of the embedded UI elements. You click the button to open a dialog box which provides the context structure of the corresponding view for an element selection.

You can create events to enable communication between controllers. You can allow one controller to trigger events in different controller. All events that you create in component controller they are available in component.

You can embed view in another view by using view container UI element. ViewContainerUIElement is an UI element to be used to hold the views in Web Dynpro application.

In Global controller, the data declared in this can be accessed by all views and window in that component.

View controller is a local controller for that view and can’t be accessed by other controllers.

Faceless components in Web Dynpro doesn’t contain any graphical components, no views or no windows. It only contains a component controller and you can add an additional custom controller.

Faceless components are specifically used for receiving and structuring the data. Faceless components can be embedded to other components using component usage and you can supply the required data to these components.

You can use version management to manage older version of an object, compare versions or you can also reset them.

Yes, using method create_external_window

Component Controller is only one. You can create multiple controllers, but those are called Custom Controllers.

If the node is going to be accessed in multiple views, it should be declared at the Component Controller level. However, If the node is absolutely specific to only one view, it can be defined in the View Controller.

A Model class is assistance class that contains business logic.

Using External breakpoints

Using inbound and outbound plugs

Yes for a component, you can create any number of applications.

In a Web Dynpro application, component window has an inbound plug. This inbound plug can have parameters, which have to be specified as URL parameters.

Default values that are overwritten by the URL parameters can be set in the application for these parameters. If neither a default value nor a URL parameter is specified, a runtime error is triggered.

Using method _WD_COMPONENT_ASSISTANCE~GET_TEXT( ), this allows you to access text symbols of the assistance class in controller of your component.

It is suggested to set the breakpoint in method WDDOMODIFYVIEW under METHODS tab of Dynpro view.

In ABAP Workbench, you can also create and show messages that contain information for end users of Dynpro application. These messages are displayed on the screen. These are user interactive messages that displays important information about Web Dynpro application.

You can also integrate an ABAP application into enterprise portal. You can also manage portal functions from a Web Dynpro application.

You can call Web Dynpro code wizard to access portal manager methods. This can be used to perform the following functions −

  • Portal Events

To navigate between Web Dynpro application within portal or portal content. Following navigation types are supported −

  • Object Based navigation
  • Absolute navigation
  • Relative navigation
  • Work protect mode

You can create forms based on Adobe software and can use in context for Web Dynpro user interfaces. You can integrate Adobe lifecycle development tool with ABAP editor to ease the development of user interface. Interactive forms using Adobe software allows you to create efficiently and easy development of UI elements.

  • Interactive Scenario
  • Print Scenario
  • Offline Scenario
  • Using digital signature

SAP List viewer is used to add ALV component and provides a flexible environment to display lists and tabular structure. A standard output consist of header, tool bar and an output table and user can make the settings to add column display, aggregations, sorting options using additional dialog boxes.

It support many properties of table element as it is based on Web Dynpro table UI element.

ALV output can be filtered, sorted or you can also apply calculations.

User can perform application specific functions using UI elements in toolbar.

This allows user to save setting in different views.

You can also configure special areas above and below ALV output.

You can define extent to which ALV output can be edited.

Using filters you can limit the data in ALV output. You can create multiple number of filter conditions for each field. To create or delete a filter condition, you can use method of interface class IF_SALV_WD_FILTER.

In Web Dynpro ABAP administration, you can perform various administration tasks using different tools −

  • ICM Tracing
  • Web Dynpro Trace tool
  • Browser Tracing
  • Logging
  • Security

Web Dynpro trace tool can be used for checking the errors and problems in Dynpro application. You can activate Web Dynpro trace tool for a specific user.

To activate trace tool in SAP GUI client, use T-code: WD_TRACE_TOOL

To trace the data stream in SAP Web Application server.

You can monitor Web Dynpro application using ABAP monitor. Information is stored about Web Dynpro application and is stored. You can view this information using T-code: RZ20

  • Session Count
  • Application Count
  • CPU time
  • Data

You can use tree UI element to create a tree in Web Dynpro application.

SALV_WD_TABLE

Using drag and drop option

To use in other Web Dynpro components.

  • WDDOINIT of component Controller
  • WDDOINIT of window Controller
  • WDDOINIT of View Controller

Exit plugs are used to exit from Web Dynpro Window or Web Dynpro page.

It is used to generate F4 help for inputs field in Web Dynpro application.

It is used to create text is specific language and to provide translation in multiple languages in Web Dynpro application.

It means that at run time, no element or maximum one element can be instantiated.

  • Component Controller
  • Custom Controller
  • Configuration Controller
  • View Controller
  • Window Controller

Window controller exists for each window and contain method to write coding logic.

What is Next ?

Further you can go through your past assignments you have done with the subject and make sure you are able to speak confidently on them. If you are fresher then interviewer does not expect you will answer very complex questions, rather you have to make your basics concepts very strong.

Second it really doesn't matter much if you could not answer few questions but it matters that whatever you answered, you must have answered with confidence. So just feel confident during your interview. We at tutorialspoint wish you best luck to have a good interviewer and all the very best for your future endeavor. Cheers :-)


sap_web_dynpro_questions_answers.htm

Advertisements