Difference between revisions of "Timeout of conversation (Event Handler)"
From Zenitel Wiki
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{AI}} |
Using the [[SET TIMER|$ST (Set_Timer)]] message. | Using the [[SET TIMER|$ST (Set_Timer)]] message. | ||
Line 6: | Line 6: | ||
In [[AlphaPro]], go to [[Exchange_%26_System_%28AlphaPro%29#Events|Exchange and System -> Events]], press Insert and create the following events: | In [[AlphaPro]], go to [[Exchange_%26_System_%28AlphaPro%29#Events|Exchange and System -> Events]], press Insert and create the following events: | ||
------------ | ------------ | ||
− | '''Event 1''' | + | '''Event 1''' |
− | + | [[File:Application23A.png|thumb|left|500px|Start the timer on incoming call (180 sec)]] | |
− | + | <br style="clear:both;" /> | |
− | + | ||
− | + | {{Code2| | |
− | + | [[SET TIMER|$ST]] L%1.dir w%chg(1800,0) L%2.dir | |
− | + | }} | |
− | |||
− | |||
− | |||
− | |||
− | | | ||
− | |||
− | |||
− | |||
------------ | ------------ | ||
− | '''Event 2''' | + | '''Event 2''' |
− | + | [[File:Application23A.png|thumb|left|500px|Cancel conversation when timeout]] | |
− | + | <br style="clear:both;" /> | |
− | |||
− | | | ||
− | | | ||
− | | | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | {{Code2| | |
− | + | [[C KEY|$C]] L%1.dir | |
− | {| | + | }} |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
------------ | ------------ | ||
If the conversation timeout should apply for outgoing calls as well, add the following events: | If the conversation timeout should apply for outgoing calls as well, add the following events: | ||
− | '''Event | + | '''Event 3''' |
− | + | [[File:Application23A.png|thumb|left|500px|Start the timer (180 sec)]] | |
− | + | <br style="clear:both;" /> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | {{Code2| | |
− | + | [[SET TIMER|$ST]] L%1.dir w%chg(1800,0) L%2.dir | |
− | {| | + | }} |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
------------ | ------------ | ||
Line 96: | Line 38: | ||
− | [[Category:Applications]] | + | |
+ | [[Category:AlphaCom Applications]] | ||
+ | [[Category: ICX-AlphaCom Applications]] | ||
+ | [[Category:Applications using Event Handler]] |
Latest revision as of 10:32, 8 July 2022
Using the $ST (Set_Timer) message.
Timeout of incoming calls to one specific station:
In AlphaPro, go to Exchange and System -> Events, press Insert and create the following events:
Event 1
Action commands:
$ST L%1.dir w%chg(1800,0) L%2.dir
Event 2
Action commands:
$C L%1.dir
If the conversation timeout should apply for outgoing calls as well, add the following events:
Event 3
Action commands:
$ST L%1.dir w%chg(1800,0) L%2.dir
If the timeout should apply to a number of stations the easiest way is to assign the stations concerned to a UDP group, and then set the UDP group as Event Owner instead of the 'The station' in the above events.