cancel
Showing results for 
Search instead for 
Did you mean: 

data entrying via Web-Dynpro

Former Member
0 Kudos

Dear All!

Can somebody help me to relaize the following requirement:

Through WebDynpro (Internet Browser) data entrying. Suppose there

are couples of input fields due to these fileds the user can entry

datas into the system.

Regards

Ilhan Ertas

Accepted Solutions (0)

Answers (6)

Answers (6)

Former Member
0 Kudos

Hello Murtuza!

"You can always have a webDynpro application without any backend system"

How can I run it and where can I run it. What is necessary for it ?

Is it possible connecting a WebDynro to SAP-System through

through a JCO in order to transfer datas into SAP-Table

regards

ilhan

Former Member
0 Kudos

Hi ilhan,

Web Dynpro application( <i>having parts:Web Dynpro[Application,model,Web Dynpro components,Web Dynpro component interfaces],Dictionary,Source</i>) to be run needs an <u>application</u> part to be cretaed where you specify Component,startup plug and interface view of application.

A simple web dynpro application can be created abd run without any single line of coding and for this your SAP J2EE engine has to be up and running.

Steps:

1) File->New->Web Dynpro Porject.

2) Right click on applications Create Application>Next(Create Component)>(Check Embed View)-->finish

3)Right click on application and say <b>deploy New Archive and Run</b>.

To connect to R/3 and transfer data to SAP table process followed is generally as follows:

1) Create remote enabled function module with appropriate import, export and table parameters.

2)Write DML query in fm which inserts data

3) Create model in Web Dynpro project using that fuinction module

4)Pass the data to function module from Web Dynpro view or component whihc does rest of work.( For this SLD configuration should be in place).

regards,

ganga.

Former Member
0 Kudos

OK.

Well how does it take place with the datas which the user has entered.

Will they tranfered thorough Java Connector or through another way

into the sap system?

1)

Is it possible to run a web dynpro without an aplication server in background.

Can I connect with JCo and make data entries via webdynpro to populate

an SAP Table . Is it possible?

regards

ilhan

Former Member
0 Kudos

Hi Ilhan,

I you want to pass data to your backend then yes it would be done through JCO destinations (importing RFC).

You can always have a webDynpro application without any backend system.

You need a web Application server to deploy your application. so you need to have WAS for that.

Warm Regards,

Murtuza

Former Member
0 Kudos

Hi

As you said your project is just for a testing purpose you can achieve your requirement without using a DC. anyways its better to learn and make use of DC.

If you don want to use the DC ,just follow the steps which i mentioned in my earlier post.

Regards

Chaitanya.A

Former Member
0 Kudos

Hi,

Pl go through the following liniks

Webdynpro Links

Programming UI and Navigation

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9214b1e5-0601-0010-fdb0-ec3...

Webdynpro for Java

http://help.sap.com/saphelp_nw2004s/helpdata/en/15/0d4f21c17c8044af4868130e9fea07/frameset.htm

Webdynpro Samples

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/web%20dy...

Web Dynpro User Interface

https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/webcontent/uuid/ce44a14c-0a01-0010-af8... [original link is broken]

PDf

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/com.sap.km.cm.docs/library/nw/netweaverdevelopersguide2004s/sap%20netweaver%20developer's%20Guide%202004s/UsingJava_00_PDFsList.ca

SAP Netweaver Application Server eLearning Catalog

https://www.sdn.sap.com/irj/sdn/elearn?rid=/webcontent/uuid/b1203f5e-0501-0010-bb88-915402c954f2 [original link is broken]

DTR

http://help.sap.com/saphelp_nw04/helpdata/en/88/cb0b405bacdd5fe10000000a155106/frameset.htm

Regards

Ayyapparaj

Former Member
0 Kudos

Hi,

I start NetWeaver Developer Studio choose File,New.

At that point there are two possibilities:

Web Dynpro Development Component and

Web Dynpro Project

Which one is the right one?

What are the next steps. Please can you tell me at least

the first steps.

Thank you very much for your hints.

Regards

ilhan

Former Member
0 Kudos

Hi IIhan,

If this project is just for testing purpose then go for new webDynpro project.

After this right click on webDynpro Component within the project hierarchy and select new WebDynproComponent(specify component, view and window name and the package).

Regards,

Murtuza

Former Member
0 Kudos

hello Murtuza ,

Does it matter whether this project is just for testing purpose or not if so why ?

I' m only pry.

Regards,

Ilhan

Former Member
0 Kudos

If you are dealing with NWDI then you need to go for DCs.

DCs will turn into reusable components. I mean the contents of one DC can be accessed in another which is not possible if you are going for simple Project.

Warm Regards,

Murtuza

Former Member
0 Kudos

Hello Murtuza,

is the above described solution by Chaitanya in that case not possible ?

What are DC's? Please help me on creating a web surface (not Abap but Java) in order to etry data into system.

Regards

ilhan

Former Member
0 Kudos

Hi,

Go through this link. It might throw some light on DC

http://help.sap.com/saphelp_nw04/helpdata/en/5f/0db14033c7b94ee10000000a1550b0/frameset.htm

Warm Regards,

Murtuza

Former Member
0 Kudos

Hi Ertas

1)Create one <b>Value Node</b> with two String type Value Attributes

2) Create a View and embbed that view in to a window

3)RootUIElementContainer>Right Click>Apply Template

4)Select <b>FORM</b> from the screen

5)Select the two value attributes and select FINISH

6) in the wdDoinit()

I<your node name>Element nodeEle=wdContext.Create<your node name>Element
nodeEle.set<>("xxx");
nodeEle.set<>("YYY");
wdContext.node<your node name>.addElement(nodeEle);

Regards

Chaitanya.A