‎2007 Mar 01 7:24 PM
HI
Can anyone give me an example in ABAP code for manage an interactive on-line form??
I want to enter some fields in an interactive form and when i press some button, the info will be recorder.
thanks
‎2007 May 17 7:47 PM
hi Leo...
take a look at this link
/people/thomas.jung/blog/2006/06/20/web-dynpro-abap-demonstration-videos
i hope that it help you
‎2007 Mar 01 11:02 PM
I am not sure what exactly is your requirement but i can suggest you 2 ways
1. desgin your form in the selection-screen of the program and you can update these fields in the database table or do the action based on the requirement.
2. Go to SE51 write a dialog program designing the form you like to and can update the details to the database.
Example for 1st one.
selection-screen begin of block b1.
parameters: p_fname(10),
p_mname(5),
p_lname(30).
selection-screen end of block b1.
or you can display the report like thing with the details entered and once everything is confirmed after hitting a button can update these fields to the database table depending on the action to be taken.
‎2007 May 17 7:47 PM
hi Leo...
take a look at this link
/people/thomas.jung/blog/2006/06/20/web-dynpro-abap-demonstration-videos
i hope that it help you