cancel
Showing results for 
Search instead for 
Did you mean: 

two script forms for single driver pgm

Former Member
0 Kudos

Hi all,

Is it possible to have two script forms for single driver pgm , each for diff output type.If so watz d procedure.Kindly reply.

Thanks ,

kavitha

View Entire Topic
former_member196280
Active Contributor
0 Kudos

Yes, it is possible to have such scenario,

Ex, Try to read the form name from output type...

OPEN_FORM

IF Formname = <FORM1>

    • Display all form1 realted windows

WRITE_FORM <All windows in script 1>

WRITE_FORM

........

........

ElseIF FORMNAME = <FORM2>

    • Display all form2 realted windows

WRITE_FORM

WRITE_FORM

........

........

CLOSE_FORM

Regards,

Sairam