Application Development 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: 

script n event

Former Member
0 Kudos

script is eventdriven program r not?

smartform is eventdriven program r not?

if they then what r the events we use?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi sunil,

Script/smart form are not event driven.

They are like templates which tell how the output looks like. They will be called from the Driver(ABAP) program using OPEN_FORM CLOSE_FORM and WRITE_FORM( in Script).

You need to populate data in ABAP program and pass it to script or smartform and display data as you wish to see.

2 REPLIES 2

Former Member
0 Kudos

Hi,

Script/Smart form are not event driven program.

They are called as layout. In other words you can call them as form template which will have some predefined structure and some dynamic structure, data for which will be filled via calling(driver program.

Former Member
0 Kudos

hi sunil,

Script/smart form are not event driven.

They are like templates which tell how the output looks like. They will be called from the Driver(ABAP) program using OPEN_FORM CLOSE_FORM and WRITE_FORM( in Script).

You need to populate data in ABAP program and pass it to script or smartform and display data as you wish to see.