cancel
Showing results for 
Search instead for 
Did you mean: 

what is webdynpro?

Former Member
0 Kudos

anyone please let me know what is webdynpro?when do we use webdynpro? and provide me some materials for webdynro.

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Hi,

you can find all the relevant information in the <a href="https://wiki.sdn.sap.com/wiki/display/WDABAP/Main">SDN WDA Wiki</a>

Regards, Heidi

Former Member
0 Kudos

Now about when to use ?

Situation where you need to develope Custom Developement for Client with SAP you can use WebDynpro . Just take case that client want that his some business process to be automised over web then we will go for WebDynpro .Eg. Let client want that his shopfloor worker should be able fill BOM , Q-form over web .For that some web site adress (URL ) will be give to him . He can fill that data from anywhere just need to have browser . So by WebDynpro your SAP will be completely aviiable over Web .

Not just that it seems that future will be WebDynpros.

<b>

About Material</b>

First of all start doing SAP SDN tutorials .

Create some compenents with BAPI , Component usage and ALV .

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/02e1fa45-0801-0010-10a0-f1c...

/people/marilyn.pratt/blog/2005/12/20/web-dynpro-for-abap

Try to Download demo tutorials from SDN library & Try to search WebDynpro ABAP WebLogs .

Wait not just that SAP has provided you with ample demo example of WD ABAP already bundled with SAP . Just Try out Components starting with WDR . I can tell you few like WDR_TEST_EVENTS ( It shows how every UI elments to use )

See packages like SWDP_DEMO , SALV_WD_DEMO

there are many more .

/people/marilyn.pratt/blog/2005/12/20/web-dynpro-for-abap

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a282c952-0801-0010-1eb5-87953e03...

Cheers

Parry

Former Member
0 Kudos

Hi Sanmugam,

Welcome to Web Dynpro ABAP !

In web dynpro ABAP we follow MVC(Model View Controller) architecture.

In this object oriented ABAP is used to provide background functionality. Here, your ABAP skills can be utilized to the fullest. Programming in web dynpro ABAP is different than conventional ABAP programming. Here we strictly follow MVC architecture in terms of controller interface. Also there are many wizards available so that we can directly pick the code from wizards.

e.g We can call BAPI through a service call in web dynpro application. Thus automatically backgroud code for BAPI execution will be generated.

To start with Web dynpro ABAP you can try following tutorial:

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a282c952-0801-0010-1eb5-87953e03...

You can start with tutorials and all. There are around six tutorials in SDN library.

Web Dynpro for ABAP

http://help.sap.com/saphelp_erp2005/helpdata/en/a5/1a1e3e7181b60ae10000000a114084/frameset.htm

best tutorials in wbdynpro for ABAP to start with :

https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/webcontent/uuid/fed073e5-0901-0010-4eb... [original link is broken]

Cheers,

Darshna.

Former Member
0 Kudos

what is webdynpro?

Answer :

<b>A Programming Model for User Interfaces</b>

Defines a standard structure for user interface applications

Derived from the MVC (“model-view-controller”) design pattern

<b>A Set of Tools for User Interface Design</b>

Focus on graphical modelling

Code is generated from meta-model declarations

Integrated in SAP NetWeaver Developer Studio and the ABAP

Workbench

<b>A Runtime Environment for Applications</b>

Framework running on SAP Web AS server offers common services

<b>A Technology for Software Modularization</b>

Components help structure applications and support pattern-based

UIs

<b>Benefits</b>

Deliver an Enterprise Quality

Web Development Environment

minimize coding, maximize design

separate layout and logic

support arbitrary backend systems

support reuse of components

configuration of UI patterns

support Web services and data-binding

Achieve Independence

run on multiple platforms

Improve User Experience through a

"High Fidelity Web UI"

browser based, zero footprint

screen updates w/o page reloads

client-side dynamics

performance through caching

and now about WD ABAP

1) Web Dynpro ABAP

As the name suggests Web Dynpro for ABAP uses exactly the same meta model as its cousin Web Dynpro for Java. A Web Dynpro component, a Web Dynpro view, a Web Dynpro model, a Web Dynpro controller have the same semantics both for ABAP and Java. The main difference is the designtime environment, the development infrastructure and the runtime environment.

The designtime environment is properly embedded in the ABAP Workbench where Web Dynpro artifacts are simply a new category like BSP applications or classical dynpro based applications before. Also no surprises regarding the development infrastructure. The correction and transport system keeps track on all changes that are done, versions them and helps to propagate the Web Dynpro application from development to production like you would do with ordinary BSP or dynpro-based applications.

Last not least the execution platform is the ABAP server that produces application content ready to be integrated in the NetWeaver Portal seamlessly. Features like portal eventing can be used between applications written in ABAP or applications developed with Java.

Cheers

Parry

Former Member
0 Kudos