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

script n event

Former Member
0 Likes
455

script is eventdriven program r not?

smartform is eventdriven program r not?

if they then what r the events we use?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
426

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
Read only

Former Member
0 Likes
426

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.

Read only

Former Member
0 Likes
427

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.