0% found this document useful (0 votes)
47 views3 pages

Web Dynpro Interpreting in A Different Way

Web dynpro ABAP is a user interface technology for developing web applications in ABAP without writing front-end code. It uses a model-view-controller architecture where models hold data through contexts, views define the user interface, and controllers manage application logic. Data is automatically transferred between the front-end and back-end. Functionality is implemented through component controller methods that read input from contexts, access data from databases, and write results to contexts.

Uploaded by

ONLINE TRAINING
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
47 views3 pages

Web Dynpro Interpreting in A Different Way

Web dynpro ABAP is a user interface technology for developing web applications in ABAP without writing front-end code. It uses a model-view-controller architecture where models hold data through contexts, views define the user interface, and controllers manage application logic. Data is automatically transferred between the front-end and back-end. Functionality is implemented through component controller methods that read input from contexts, access data from databases, and write results to contexts.

Uploaded by

ONLINE TRAINING
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Web Dynpro => Interpreting in a different way

Web dynpro ABAP is an user interface technology for the


development of web applications in ABAP. It is based on HTML and
Javascript. The speciality is that we don’t have to write code for the
front end.
 The development takes place through the Transaction SE80
 The Web dynpro ABAP is based on model view controller
model
M  Models for holding data through contexts
V  Views for user interface
C  Controller for the logic
 The data transfer takes place automatically between the front end
and backend
Functionality implemented in the method of Component- Controller
1. The inputs are read from the context
2. The data from the Data bank is read for the selected input
3. The result table must be written in the context

Figure 1: Web dynpro Application Creation Process


How to bind data in the component controller method

Figure 2: Control flow in web dynpro component Controller method


implementation

The global attribute wd_context is used to assign the reference.


wd_context contains a method get_child_node(), which returns the
reference of the input node, which returns the reference of the input
node. The get_element() method of the input_node class is used to
assign the reference of the element.
Table 1 References used in component controller method
Class Instance Method Output Output Type
(Reference)
Wd_context Get_child_node Input or Reference
output node
Input node Get_element Input element Reference
Input element Get_attribute Attribute Value
value
Output node Bind_table Elements data Value
table

Thus the data binding is done between the input and output though
elements.
References: ABAP objects by Felix Roth

You might also like