Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Example of ABAP with Interactive Forms

Former Member
0 Likes
360

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
334

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

2 REPLIES 2
Read only

Former Member
0 Likes
334

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.

Read only

Former Member
0 Likes
335

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