Two Enter commands: In an InputScript I would like to call a second transaction after saving the document. I tried
     Screen SAPMV50A.2000
     Enter "/11"
     Enter "/nVL02N"
but GuiXT then fails to carry out the "Save" function. What is wrong with my code?

For each screen there is only one "Enter" that can be executed. When you have two Enter commands, the second function code specified will override the first one.

It will work if you add a further "Screen" command for the screen that is processed after the "/11":

Screen SAPMV50A.2000

   Enter "/11"

Screen SAPMV50A.4004

  Enter "/NVL02N"