130
Installing [email protected]
11111
22222
33333
12345
SHIPDATE - An ASCII text file where each line contains an order number and its ship
date separated by a comma (one per line), for example:
11111,06301994
22222,07011994
33333,07061994
12345,07121994
Translating to Amanda’s Tokens:
1.
To ask the caller for an order number, use
R(G1,%S1,20)
where Greeting 1 has the
recording “Please enter the five-digit order number now.” After the caller enters the
order number, Amanda can perform some additional checking. For example, to
determine if a five-digit order number was entered, use
I(LEN[%S1],!,5,mailbox)
.
If the number of digits stored in %S1 is not equal to 5, Amanda continues processing
with
mailbox.
2.
To determine whether or not the order shipped, you examine the file SHIPPED to find
out if it contains the caller’s order number. Use
?(%S1,C:\\SHIPPED,mailbox)
to find
out whether or not a string (%S1), which contains the order number, is in a file
SHIPPED. If it is, Amanda continues processing with
mailbox.
3.
If the order number is not in the file SHIPPED, Amanda continues processing at the
token after the ?() token. Therefore, to tell the caller that an order has not shipped, you
use
P(G1)
where Greeting 1 plays, “Sorry, but your order has not yet shipped, please
call back tomorrow.” To tell the caller the order’s ship date, first determine that date
using
V(C:\\SHIPDATE,1,%S1,2,%S2)
, which scans the first column of the file SHIP-
DATE for the value in %S1. After finding the first match, Amanda stores the value in
the second column as %S2. Then you use
P(G1)P(%S2,D)
to tell the caller the date.
Here Greeting 1 plays, “Your order was shipped on.”
Summary
To summarize the above, the mailbox settings and tokens are as follows:
Mailbox
Extension/Recording
Done
Chain
2000
@R(G1,%S1,20) I(LEN[%S1],!,5,2001)G(2002)
2001
“Your order number must be five digits. Good-bye.”
999
2002
@?(%S1,SHIPPED,2003)P(G1)
999
2003
@V(SHIPDATE,1,%S1,2,%S2) P(G1)P(%S2,D)
999
Содержание [email protected] Version 3.xx
Страница 1: ...Installing AmAndA Work Place Version 3 xx Installer s Guide Edition 7 01...
Страница 4: ...iv Installing Amanda Work Place...
Страница 60: ...52 Installing Amanda Work Place...
Страница 68: ...60 Installing Amanda Work Place...
Страница 132: ...124 Installing Amanda Work Place...
Страница 150: ...142 Installing Amanda Work Place...
Страница 156: ...148 Installing Amanda Work Place...
Страница 194: ...186 Installing Amanda Work Place...
Страница 206: ...198Installing Amanda Work Place...