Questions tagged [webdynpro]

Web Dynpro is a web application user interface developed by SAP AG and exists in both ABAP and Java versions.

WebDynpro is a client-independent programming model used for developing sophisticated user interfaces for web based business applications.Dynpro means Dynamic Program.

The naming conventions to be followed while developing Web Dynpro applications is :

Web Dynpro context names should use only the characters A..Z, a..z, 0..9, _ . Digits can be used only from 2nd position. The JAVA naming conventions can be followed but avoid using unicode characters to keep the names simple. However one should avoid using the prefixes wd, WD or IWD since these are the prefixes used during generation of internal coding entities.

Basic Concept :

1. View – is the central logical layout element in the Web Dynpro application.It is responsible for the presentation logic and for the browser layout.

Description of a visible screen area Contains and lays out controls (aka widgets) Defines actions (i.e. relevant input on controls by the user), which trigger event handling

2. Controller – active part of web dynpro application,handles the data flow between the model and the view in both directions

Performs event handling Each component has a component controller Each view has a view controller Custom controllers may be added for further structuring

3. Model – is the interface to the back end systm and is responsible for providing data to the entire application.

Represents the data in the backend

4. Component

Reusable UI program package Mostly contains views, often uses models Communicates with other components via component interfaces

5. Application

Something runnable (from client application, i.e. web browser) Identified by URL Running an application means starting a component, navigating” to an initial view in an initial window.

6. Windows

Single UI unit representing a component’s user Interface/View Composition needed for embedding purposes.

7. Context

A controller contains a context which holds the data. The data flow between the contexts is referred to as context mapping..

87 questions
0
votes
1 answer

RowSelectionChanged-Event on entering an editable cell ( requirement:depending F4 OVS )

First things first: If I click into a NOT editable cell in a WebDynpro grid, its parent ( the entire row ) gets selected. For that it is properly set up in the layout painter ( row selectable = true ) . If I click into an editable cell, nothing like…
icbytes
  • 1,831
  • 1
  • 17
  • 27
0
votes
0 answers

FPM - WD - LPD: POWL as Listpopup to choose a record and then return it

The situation is like this: We have a POWL, where I added a toobar-button. The click on that button opens a FPM-POWL, which I created with the help of this link https://sapcodes.com/2016/03/25/powl-in-fpm/.... (INFO: This POWL takes it's data from a…
icbytes
  • 1,831
  • 1
  • 17
  • 27
0
votes
1 answer

How can I import a project in NWDS Web Dynpro from NetWeaver

I have to complete the work of a colleague who is ill. My problem is I cannot talk to him and cannot work with his files or his computer. I can see the Project in the component browser of the PO. I have imported some files in my workspace but I…
Francesco
  • 1
  • 2
0
votes
1 answer

How to call popup window from component controller and handle subscribe_to_button_event in WDA

I found this issue in some scenario, and that is how I've resolve. Scenario. Call a Popup window from the component-controller not from a the view. METHOD wddoinit. DATA: lo_popup_window TYPE REF TO if_wd_window, lo_window_manager TYPE REF TO…
EdgarMorales
  • 29
  • 1
  • 4
0
votes
1 answer

Getting button tooltip in method

In my webdynpro, when I click a button, I wan't to get the tooltip of the button and use it as the title of the pop-up window. method WDDOMODIFYVIEW . "write view to attribute so it can be accessed from other methods. wd_this->DETAILVIEW =…
Peter
  • 850
  • 5
  • 16
0
votes
1 answer

Web Dynpro Action on Button

There is some kind of Shopping Cart in which you have Product positions. There is a Button in web dynpro which is supposed to copy the text from the Inputfield from one position to the others. When I click one of the positions, and enter a text in…
0
votes
1 answer

Scan SAP Web Dynpro code written in SAP Netweaver Developer Studio using HPE SCA

Can I use HPE Static Code Analyzer to scan SAP Web Dynpro code written in SAP Netweaver Developer Studio?
Umar Hyatt
  • 31
  • 7
0
votes
0 answers

List UIBB Schema - add Column - how?

I want to add a Column on the existing UIBB Schema i have (SOLMAN_WORKCENTER - > TEST SUITE ANALYTICS - > Defect Analysis) I tried to Enhance the Component Configuration. So I thought i could simply add additional Columns of choice by entering the…
user8220047
0
votes
1 answer

Calling Java webdynpro from JSP or Java Servlet

Is it possible to call SAP Java web dynpro application from JSP or Java Servlet in another system ? If possible please advise how. -Vipin.
Vipin
  • 1
  • 1
  • 3
0
votes
1 answer

Call Pop-Up for WebDynpro from a Business AddIn?

We got a Web Dynpro Application which was created with the Floorplan Manager. By clicking a specific button I start a Business AddIn which check some conditions and then it should show a popup on the screen with a message for the user. Is there a…
Dyrdek
  • 411
  • 4
  • 12
  • 33
0
votes
1 answer

SAP Fiori FPM/WebDynpro Apps Activation

I am new to SAP Fiori, I have been assigned to activate SAP Fiori apps on our SAP S/4HANA 1511 FPS02. I have activated all assigned transactional apps, Our launchpad is running fine, but I am unable to activate FPM/WebDynpro applications. I have…
Eliza
  • 1
  • 2
0
votes
1 answer

Get index of LinkToAction on table - WD Java

I have a data table and I want to show detail when clicking each row on it. But the index always returns 0. int index= wdContext.getCurrentElement().index(); wdComponentAPI.getMessageManager().reportSuccess("test "+ index); Please help me review…
Phạm Quốc Bảo
  • 864
  • 2
  • 10
  • 19
0
votes
0 answers

Migration component webdynpro: Component is not yet ready to be converted

I'm using NWDS v7.31 and migrate the component in webdynpro application. On Cheat sheets - the Delete Implementation Coding from Interface Controller step, I have an error message: Unhandled event loop exception ObjectNotModifiableException:…
Phạm Quốc Bảo
  • 864
  • 2
  • 10
  • 19
0
votes
2 answers

Call parent component method in Web Dynpro Java

I'm working with two Web Dynpro Java components (SAP NetWeaver Developer Studio 7.0), where the first component is embedding another one and using it in a pop-up window. The embedded component has a method triggered on a button click, after this…
Mr. DMX
  • 653
  • 2
  • 9
  • 20
0
votes
3 answers

Display PDF from application server in Webdyn Pro ABAP

I'm working on a report which contains actions allowing the user to reach a a new page. In this new page pdf stored on the application server has to be displayed. On the PDF view I created an interactive form linked with my context (PDF_DATA-PDF :…
Stéphane
  • 1
  • 1
  • 2