[quote author=nabnikulin link=topic=1860.msg6074#msg6074 date=1160379981]
Hi!
I as cannot solve two questions in my strategy:
Strategy is intended for voice interactions.
1. If there is some event that it is necessary to send the message on e-mail or flash alarm on SCI. As it to make and what objects to use?
2. It is necessary to storage a variable as temporary result. Then other strategy reads out this result and clear. As it to make and what objects to use?
Please result examples.
Thanks.
[/quote]
Hi,
regarding (1), the easiest way to do it would be actually defining an alarm in SCI. Go to SCI, click on new alarm, and then press Help. It will show you all the possible codes you can use to base your reaction on. Chances are most of the alarms you want to create are already in SCS

Then, you can use Reaction in SCI to send an email or SNMP
regarding (2), I would suggest to use sub-routines, because you can pass variables from one strategy to another.
Genesys does have global variables, but their scope is only within the strategy itself, so it would not do you any good. If you have to call one strategy from another, I strongly urge you to consider having one global strategy with subroutines that can be called along with parameters you want to pass both to subroutine and from them.
One thing you do not want to do is use attach-data to pass data from one strategy to another, because in almost all of the instances attach-data would not arrive in time for your second strategy to read it.