Distinguishing different notification types: I have a problem in my QM01 transaction scripts. When I choose notification type Q1 the script for the main screen is okay, but for other notification types such as Q2, Q3, Q4 I need a different screen layout. How can we make different scripts for different notification types?

You have 2 possibilities:

(1)

You put the statement

Link V[QM01_Type] F[Notification type]

into the script for the initial screen. In the following screens you then can use

if V[QM01_Type=Q1]

  Message ok

endif


(2)

Without the link statement, you can use the "::"-notation for access to values that the user has entered in previous screens:

Set V[QM01_Type] "&V[::Notification type]"

if V[QM01_Type=Q1]

  Message ok

endif