• phone icon +44 7459 302492 email message icon info@uplatz.com
  • Register
0- - 0
Job Meter = High

SAP WEB DYNPRO for ABAP

Hours
Online Self-paced Training
USD 17 (USD 140)
Save 88% Offer ends on 30-Jun-2024
SAP WEB DYNPRO for ABAP course and certification
69 Learners

About this Course

Web DynPro is a web-based dynamic programming model from SAP, whose main objective is to work on the server-side business applications. It is a standard technology to build the User Interface for the web applications in the ABAP environment and a great modelling environment which stores the user-interface details in the form of metadata.

Web DynPro is derived from the MVC (model-view-controller) design pattern.  It focuses on graphical modelling where a code is generated from meta-model declarations. It is integrated into SAP Net Weaver Developer Studio and the ABAP Workbench. For developing the entities of a Web DynPro application, the Object Navigator has been enhanced.

Advantages of SAP ABAP DynPro

Some of the benefits of WebDynPro are:

-> It minimizes the coding and maximizes the design interface

-> It has a separate layout and logic

-> It supports the reuse of components and data binding

-> Runs on multiple platforms

-> It has a 508 accessibility support


On successful completion of the course, learners will be awarded a Certificate of Completion on the SAP Web DynPro course from Uplatz.

----------------------------------------------------------------------------------------------------------

SAP WEB DYNPRO for ABAP

Course Details & Curriculum

SAP WebDynpro is a great modeling environment whitch stores the user-interface details in the form of metadata. We can write less code and fix bugs in a shorter time with lesser effort. It increases a programmer’s productivity by manifolds.

Webdynpro is nothing but one framework for developement of user interface for use with SAP NetWeaver.It support programming for different platform such as JAVA, ABAP, .NET

----------------------------------------------------------------------------------------------------------


Job Prospects

-----------------------------------------------------------------------------------------------

SAP Web Dynpro Interview Questions

-----------------------------------------------------------------------------------------------

 

Q.1. What is Web Dynpro?

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.

 

Q.2. How do you access Web Dynpro environment and graphical tools in ABAP work bench?

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

 

Q.3. What are the advantages of using Web Dynpro?

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.

 

Q.4. What is the use of MVC programming model?

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.

 

Q.5. What is a View in Web Dynpro application?

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.

 

Q.6. What is the use of inbound and outbound plug-ins?

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.

 

Q.7. What is view set?

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.

 

Q.8. What are the advantages of using View set?

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.

 

Q.9. What is the use of Web Dynpro window?

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.

 

Q.10. What is the use of Controller in Web Dynpro application?

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.

 

Q.11. What is the use of mapping in Web Dynpro?

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.

 

Q.12. How do you manage communication between different Controllers?

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.

 

Q.13. To embed a view into another view, how you can do this?

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

 

Q.14. What is global and local controller in Web Dynpro?

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.

 

Q.15. What is a Faceless component?

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.

 

Q.16. Why do we use faceless component?

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.

 

Q.17. Why do we use version management in Web Dynpro application?

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

 

Q.18. Is it possible to call a Web Dynpro application from another Web Dynpro application?

Yes, using method create_external_window

 

Q.19. How many component controllers can a Web Dynpro Component have?

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

 

Q.20. How do you decide that a node is to be declared in the Component Controller or in the View Controller?

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.

 

Q.21. What is model class?

A Model class is assistance class that contains business logic.

 

Q.22. How do you debug a web based Web Dynpro application?

Using External breakpoints

 

Q.23. How do you navigate between views in Web Dynpro?

Using inbound and outbound plugs

 

Q.24. Can you create multiple applications using a component in Web Dynpro?

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

 

Q.25. How do you call a Web Dynpro application?

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.

 

Q.26. Which method can be used to access text symbols in assistance class?

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

 

Q.27. Which method can be used to set the break point for debugging purpose?

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

 

Q.28. How do you manage information for end users in Web Dynpro application?

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.

 

Q.29. How do you manage portal integration with Web Dynpro?

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

 

Q.30. What is the use of interactive forms?

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.

 

Q.31. What are the different scenarios that can be used in interactive forms?

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

 

Q.32. What is the use of SAP List Viewer in Web Dynpro?

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.

 

Q.33. What are the key features of ALV in Web Dynpro?

It supports 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.

 

Q.34. How can you limit the data in ALV output in Web Dynpro application?

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.

 

Q.35. What different administration tasks you have performed in Dynpro?

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

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

 

Q.36. How can you manage errors and problems in Dynpro application for specific users?

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

 

Q.37. What is the use of ICM tracing in Dynpro?

To trace the data stream in SAP Web Application server.

 

Q.38. How do you monitor a Web Dynpro application?

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

 

Q.39. What components you can monitor using Web Dynpro ABAP monitor?

  • Session Count
  • Application Count
  • CPU time
  • Data

 

Q.40. How do you create a tree in Web Dynpro application?

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

 

Q.41. To create ALV reports, which ALV component is required?

SALV_WD_TABLE

 

Q.42. How do you bound inbound and outbound plugs in window?

Using drag and drop option

 

Q.43. Why do you use interface views in Web Dynpro?

To use in other Web Dynpro components.

 

Q.44. What are init events and in what sequence they are triggered in Web Dynpro?

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

 

Q.45. What is the use of exit plugs in Web Dynpro?

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

 

Q.46. What is the use of OVS in Web Dynpro?

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

 

Q.47. What is the use of internationalization in Web Dynpro application?

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

 

Q.48. What is the meaning of 0:1 cardinality of context node in Web Dynpro application?

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

 

Q.49. What are the different controller types in Web Dynpro application?

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

 

Q.50. What is the use of Window Controller in Web Dynpro?

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

 

-----------------------------------------------------------------------------------------------


FAQ
Will this course help me clear the certification exam? +
Which is better - Self-paced training or Instructor-led training? +
Who are the trainers? +
What if I miss a class? +
How will I execute the practical? +
Is the course material accessible after completion of the course? +
Is there any offer/discount that I can avail? +
Will I get a refund if I cancel my enrollment? +
What if I have queries after completion of the course? +

Didn't find what you are looking for?  Contact Us

course.php