Processing with "/o"
I am trying to create an inputscript that opens another session and processes a service order in transaction code cic0. When I run it for the first time, the script works perfectly. However, if I close the new session and run it again, I get an error. The code is as follows:
// Customer Interaction Center - select Order/Notification button
Screen SAPLCIC0.8100
Enter control="CONTAINERC TRL.Toolbar" item="%_L3;635; 262" event="2"
// Field Service orders L301 or Meter Shop orders L302
Screen SAPLCIC0.8100
if V[el27_service_ product<4]
// Customer Interaction Center
Enter control="CONTAINERC TRL.Toolbar" item="L301" event="1"
else
Enter control="CONTAINERC TRL.Toolbar" item="L302" event="1"
endif
When I run it the second time, on the trace I see an error "Control "CONTAINERCTRL. Toolbar" not found. One difference I noted between the first and second runs is that the round trip / flushes for the first time are 3/2, and are 2/1 for the subsequent executions. I don't know if that is significant.
Has anyone run into a similar issue? Any suggestions are appreciated!
Thanks,