Data Binding in Web Dynpro

by | Dec 29, 2019 | SAP Web Dynpro

Home » SAP » SAP Web Dynpro » Data Binding in Web Dynpro

Preface – This post is part of the SAP ABAP Web Dynpro series.

Introduction

A Web Dynpro Application is developed using MVC (Model View Controller) Architecture. It means whatever data model is there that requires binding with the View elements (e.g. Input Field, Check box, Table, etc.). This binding can be achieved using view and controller. In this article we will explore data binding in Web Dynpro.

Data Binding in Web Dynpro

In Web Dynpro, we have multiple components. In our previous article, we have already discussed that we have something called Context which is a data container which stores data at runtime. A context can have multiple nodes e.g. Table nodes which will store table data. These nodes can have multiple Attributes that are the fields of the table.

Definition

Binding of the attributes or nodes of a context with UI elements (e.g. Table, Input Fields, etc.) is known as Data Binding in Web Dynpro.

Data Binding in Web Dynpro

Why we need Data Binding

  1. To show Customer Data on the Web Dynpro screen
  2. To auto fill the input fields based on pre-defined selections
  3. To provide search helps for an input element
  4. To maintain/provide conditions on UI based on backend data

Types of Data Binding

  1. Internal Mapping
    It is a mapping between contexts of single component.
  2. External Mapping
    It is a mapping between multiple contexts using their interface controller.

Setup and Coding for Data Binding

In our previous articles we have already shared steps to create a Web Dynpro View and publish it as an application. You can follow steps and code mentioned here to convert that application in an Application which utilizes data binding.

Author

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Author