cancel
Showing results for 
Search instead for 
Did you mean: 

How to sent data from WebDynpro Form to sap table

Former Member
0 Kudos

Hi! everyone!

I have a task and can't know how to compelte, so I very confused.

Now, said to you.

I want do a web Form, when user click the buttom can save the Form input data to sap table.

If you have experience for this ,can you said to me how to do ,

or give me some step . Is use BAPI ?

Thank you !

Accepted Solutions (1)

Accepted Solutions (1)

former_member197348
Active Contributor
0 Kudos

Hi Doke,

To exchange data from Web Dynpro to R/3 you can use RFC or BAPI.

Check this [tutorial|https://www.sdn.sap.com/irj/sdn/?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#15].

or this [PDF|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/user-interface-technology/webdynpro/wd%20java/wdjava%20archive/creating%20a%20web%20dynpro%20application%20accessing%20abap%20functions.pdf]

regards,

Siva

Edited by: Siva Rama Krushna on Feb 21, 2008 5:21 PM

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks everyone! let me try again.

Former Member
0 Kudos

Accept the Form values.And make use of a BAPI in that bapi declare the form values as import parameters.

Under tables (in BAPI) define a internal table(say ITAB) that is going to accept the values from the front end.

in the code of the bapi.

TAB-COLUMN1 = IMPORT PARAMETER 1.

ITAB-COLUMN2 = IMPORT PARAMETER 2.

INSERT INTO VALUES ITAB.