|
Sybernet / Supplied Functions Reference
Release 3.00 Oct 14, 2002 |
|
This function allows you to send a pager message.
FUNCTION SP_PAGER
(
TELEPHONENUMBER VARCHAR2
, MESSAGE VARCHAR2
, PLATFORM VARCHAR2
, TIMESTAMP VARCHAR2
, SENDER VARCHAR2
)
RETURN NUMBER;
| Parameter | Description |
|---|---|
telephonenumber |
The telephone number to dial. |
message |
The numeric message you wish to leave. |
platform |
The platform where Sybercron will issue this command. |
timestamp |
When the message should be left. |
sender |
The e-mail address where the results are mailed. |
The ROW_ID of this entry in the CRON.
The following example illustrates how to call sp_pager.
declare
row_id binary_integer;
begin
row_id:=http.pager('5328','666');
end;