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
1
vote
1 answer

Web Dynpro ABAP in Mac OS

I'm using sap gui in macbook os x. Whenever I execute the web dynpro programs, the browser will be opened and is keep on loading and it never ends. How can I fix this issue?
BalajiB
  • 326
  • 6
  • 29
1
vote
1 answer

Get localhost of client machine in Java WD

I have created a Java Web Dynpro in the portal intranet. The localhost of the local machine is needed, but I'm only able to get the servername, serverlocalhost and the local machine ip-address. When I'm running following code on a local java…
user2206834
  • 379
  • 1
  • 5
  • 13
1
vote
2 answers

How do I create an SAP interface to pull some data from our webapplication?

We have a Java web application built on a relational database and we would like to create a SAP module to pull some data in from this application into SAP. What would be involved? My understanding so far is that we would need a Java Web Dynpro…
G Sharman
  • 11
  • 1
  • 2
1
vote
0 answers

MatrixLayout placing UI element in a specific cell

I'm working on a WebDynpro in SAP right now and I need to place a few UI elements in the right side of the WD and the rest on the left side for example. I know how to group elements but I don't know how to place them to the right side of the screen.…
Dyrdek
  • 411
  • 4
  • 12
  • 33
1
vote
1 answer

How do I programmatically set a filter in a FPM list UIBB

In Floorplan Manager I want to programmatically set the filter of a column in the list view. I can turn filtering on by doing the following: method if_fpm_guibb_list~get_definition. data: structure type ref to cl_abap_structdescr, …
Esti
  • 3,677
  • 8
  • 35
  • 57
1
vote
0 answers

ABAP Webdynpro error in supply function for a singleton

The following error text was processed in system EH5 : Invalid operand type for the MOVE-CORRESPONDING statement. ◾ The error occurred on the application server CRMEHP2_EH5_24 and in the work process 8 . ◾ The termination type was: RABAX_STATE ◾…
gram77
  • 361
  • 1
  • 12
  • 30
1
vote
1 answer

Access controls of another Webdynpro ABAP component

If I am in a Webdynpro ABAP component, how can I get the attribute of another Webdynpro component, passing the content of some input fields?
1
vote
2 answers

How to get the selected entry in WebDynpro ABAP table?

I have a webdynpro containing a table displaying numerous lines. After the user clicks the delete button I want to delete the selected line of the table. My problem right now is, that I don't know how to implement this in the event-call. How can I…
Philipp Andre
  • 997
  • 3
  • 11
  • 18
1
vote
2 answers

SQL selecting all records with IN statement

In my case, only the first 2 parameters are mandatory. When the users hasn't given the rest of the parameters, I'm using the charachter '%' for the LIKE statement so all data will be shown. Any idea how to solve this for the IN statement? The…
Timvdb92
  • 63
  • 9
1
vote
1 answer

NULL Error in Web Dynpro ABAP on CL_NW7_VIEW_ELEMENT_ADAPTER

My Web Dynpro View generates a short dump at runtime before displaying but after correctly running trough the WDDOINIT and WDDOMODIFYVIEW methods. The short dump indicates that "Access via 'NULL' object reference not possible." and occurs several…
Lilienthal
  • 4,327
  • 13
  • 52
  • 88
1
vote
2 answers

Combine ASP.NET (or Silverlight) with SAP Webdynpro

Does anybody knows possibilities or approaches to combine ASP.NET with SAP Webdynpro (or to embed/integrate Webdynpro in a ASP.NET (or Silverlight) application) ?
Elmex
  • 3,331
  • 7
  • 40
  • 64
1
vote
0 answers

Multiple upload files with flex 3 and Web dynpro java

I'm trying to do multi upload files with flex 3 and web dynpro java. I have the flex part: http://weblog.cahlan.com/files/file_uploads/srcview/index.html Here life demo: http://weblog.cahlan.com/files/FileUpload/FileUploadApp.html But I need to…
MrVila
  • 95
  • 9
1
vote
0 answers

iText character not shown

I'm working in java webdynpro. I've created a PDF with iText but not all character are shown in the pdf. In my case I want to fill the field TextField17Place in my pdf with the value: D'entrée. form.setField("TextField17Place",…
1
vote
2 answers

SCMS_AO_URL_READ returns Communication error when called from SAP Portal

We have upgraded our development SAP system from (ECC6 and SAP Portal) from SPS3 to SPS5. Now when a user logs onto the SAP Portal and run a bespoke Java Web Dynpro screen (which in turn calls SAP standard Function Module SCMS_AO_URL_READ in order…
Techboy
  • 4,286
  • 5
  • 36
  • 45
1
vote
1 answer

POI 3.2 Excel file Data has been lost

I'm generating an Excel file in Java with POI 3.2 (Latest version I can use for my client). Here is my code. As you can see I'm using HSSF because I need to make a XLS file. HSSFWorkbook wb = new HSSFWorkbook(); HSSFSheet sheet =…
user3388946
  • 49
  • 3
  • 8