Live Demo of sending SMS from Oracle Forms.

I've just a posted a live demo of how to develop code to call a web service to send and SMS from Oracle Forms.
Regards
Grant
http://otn.oracle.com/formsdesignerj2ee
http://groundside.com/blog/GrantRonald?title=live_demo_of_sending_an_sms_from_forms&more=1&c=1&tb=1&pb=1

Welcome to the Oracle Forums. Please take a few minutes to review the following:
<ul>
<li>Before posting on this forum please read
<li>10 Commandments for the OTN Forums Member
<li>Announcement: Forums Etiquette / Reward Points
</ul>
Do anybody know about sending the sms from oracle forms.If anybody had means please send me the script...... This is a commonly asked question. Have you tried searching the forum for possible solutions? Take a look at this search result. I would also recommend you take a look at the Oracle Forms Services 11g web page and scroll down to the Oracle Forms 11g calling a web service link. This is a white paper published by Grant Ronald that specifically describes the process of sending SMS from Oracle Forms.
Craig B-)
If someone's response is helpful or correct, please mark it accordingly.

Similar Messages

  • Howe to send sms from oracle forms

    i need your help plzz i wana to send sms from my applicatin

    in normal case you will need an provider for sending sms (pswin,clickatell...) and the easiest way send sms is with a http-api, provided by most of these providers.
    You can do the http-request in forms, by using web.show_document or webutil or, that is the method i prefer put it in the database and let a stored procedure handle the sms-sending. Here is a example of using such an api:
    url := 'http://xxx.xxx.com/send/?typ=2&from=mecker&to='
    || UTL_URL.escape(vMobileNo, true, 'ISO-8859-1')
    || '&txt=' || UTL_URL.escape(vMessageText, true, 'ISO-8859-1')
    ||'&id=myaccount&pwd=testpw&autoroute=1';
    UTL_HTTP.SET_TRANSFER_TIMEOUT(120);
    resp_pieces := utl_http.request_pieces(url);
    for i in 1..resp_pieces.count loop
    value := value || resp_pieces(i);
    end loop;
    There is another example on the pswin homepage at:
    http://www.pswin.com/_pswincom/Downloads/SMS_UTIL.PKS.txt
    I am also sending SMS with unicode, a little bit more complex, if you need unicode-characters let me know ([email protected]), i will give you an example.

  • Regards sending text sms from oracle forms 10g

    Do anybody know about sending the sms from oracle forms.If anybody had means please send me the script......

    Welcome to the Oracle Forums. Please take a few minutes to review the following:
    <ul>
    <li>Before posting on this forum please read
    <li>10 Commandments for the OTN Forums Member
    <li>Announcement: Forums Etiquette / Reward Points
    </ul>
    Do anybody know about sending the sms from oracle forms.If anybody had means please send me the script...... This is a commonly asked question. Have you tried searching the forum for possible solutions? Take a look at this search result. I would also recommend you take a look at the Oracle Forms Services 11g web page and scroll down to the Oracle Forms 11g calling a web service link. This is a white paper published by Grant Ronald that specifically describes the process of sending SMS from Oracle Forms.
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • How to Send SMS from Oracle Database to Mobile

    Hi All,
    I need urgent help in how to send sms from oracle database to mobile
    thanks and best regards

    you can use smslib..... . i have made a program with this. its working fine with oracle database.
    see the links here ...
    http://halimdba.blogspot.com/2011/08/send-sms-from-oracle-database-with.html
    by the way, how you can say "urgent help" ?
    regards
    Halim

  • How to send sms from oracle application to cell phone

    Hi all
    please send me in how to send sms from oracle application to cell phone. Is there any way to solve this task. if so please suggest me.

    Please see old threads for similar discussion -- http://forums.oracle.com/forums/search.jspa?threadID=&q=SMS&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Sending email from Oracle Forms with attachments

    Hi,
    Is there any package or option available in Oracle forms to send email with attachments?
    Your reply will be highly appreciated.
    Regds,
    noneda

    There are a couple of ways to send email (with attachements) from Oracle Forms. Check out these links to some examples.
    using OLE2 or CLIENT_OLE2 to access a mail-client via Mail-Api ( Get and set Outlook properties )
    using MAILTO in conjunction with HOST or CLIENT_HOST to "start" a mail-client ( Re: Open Microsoft Outlook new massage with TO containing the email address )
    using UTL_SMTP for database-side-mailing ( Re: Send mail with attachment )
    Hope this helps,
    Craig...

  • How to sending email from Oracle Forms

    How to sending email from Oracle 6i(Forms)
    I need to send email to a distribution list(multiple email addresses).

    send email of multiple email address
    [email protected],[email protected],[email protected]
    create or replace function mailout
    (sender in varchar2,
    recipient in varchar2,
    ccrecipient in varchar2,
    subject in varchar2,
    message in varchar2) return number
    is
    crlf varchar2(2) := chr(13)||chr(10);
    connection utl_smtp.connection;
    mailhost varchar2(50) := 'Add email server Ip Address here';
    header varchar2(4000);
    v_num number :=1;
    str number:=0;
    email varchar2(50);
    begin
    connection := utl_smtp.open_connection(mailhost,25);
    header := 'Date: '||to_char(sysdate,'dd mon yy hh24:mi:ss')||crlf||
    'From: '||sender||' '||crlf||
    'Subject: '||subject||crlf||
    'To: '||recipient||crlf||
    'Cc: '||ccrecipient||crlf||message;
    utl_smtp.helo(connection,mailhost);
    utl_smtp.mail(connection,sender);
    utl_smtp.rcpt(connection,recipient);
    while (instr(ccrecipient,',',1,v_num)>0) loop
    email:=substr(ccrecipient,str+1,instr(ccrecipient,',',1,v_num)-str-1);
    dbms_output.put_line(email);
    utl_smtp.rcpt(connection,email);
    str:=instr(ccrecipient,',',1,v_num);
    v_num:=v_num+1;
    end loop;
    utl_smtp.open_data(connection);
    -- utl_smtp.write_data(connection,header);
    utl_smtp.write_data(connection,'MIME-Version:1.0'||crlf||'Content-type:text/html'||crlf||header);
    utl_smtp.close_data(connection);
    utl_smtp.quit(connection);
    return 0;
    exception
    when utl_smtp.invalid_operation then
    dbms_output.put_line('Invalid Operation in SMTP transaction');
    return 1;
    when utl_smtp.transient_error then
    dbms_output.put_line('Temporary problem with sending email ');
    return 2;
    when utl_smtp.permanent_error then
    dbms_output.put_line('Permanent problem with sending email ');
    return 3;
    end;

  • How to send SMS from Oracle Marketing

    Hi,
    Please let me know which trigger is fired on campaign schedule activation, so that i could configure my application for sending sms through oracle marketing.
    Thanks
    Kunal

    Please see old threads for similar discussion -- http://forums.oracle.com/forums/search.jspa?threadID=&q=SMS&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Send SMS From Oracle To GSM Mobile Device

    Dear All,
    My concern is that I want to send a SMS using a GSM mobile device from database when ever a record is updated or inserted. I have searched the forum but does not find any convenient method with easy steps.
    please share your valuable views and solutions that are easy to follow for me.
    I am using
    Operating System Linux Redhat 4.6
    Database Oracle Database 10g Release 10.2.0.1.0 - 64bit
    Regards,
    Zafar Iqbal
    Edited by: Zafar Iqbal on Jun 8, 2012 3:48 PM

    Zafar Iqbal wrote:
    Is there no any alternative solution??Numerous solutions.
    as I have searched the forum or Google only find above solutions. Above solution is costly and other more above solution is only for nokia phone and dependent on Linus machine only
    There is no any Oracle recommended solution????Why would Oracle recommend a solution? It is like saying that Oracle needs to recommend what keyboard manufacturer to use for keyboards used to enter data and commands for SQL-Developer and TOAD...
    The "solution" depends entirely on the SMS interface(s) available for use.
    One can manually create the SMS transmission infrastructure - by hooking up a mobile via USB to a server and sending SMS's via it.
    One can use existing infrastructure from a cellular provider for sending bulk SMS's. This can be, for example, done via a web service of the provider.
    We use a TCP network service ourselves - where our PL/SQL code (using the UTL_TCP interface) sends a special formatted messages (including a service tag, mobile numbers, message) to the service and this service delivers this as SMS's.
    Some cellular provides used to support a SMTP interface - allowing you to send an e-mail to a specific address (sometimes with the mobile number as e-mail subject), where the e-mail body contains the SMS to send.
    So there is no single recommended solution. There is wide variety of solutions. And it would be advisable to talk to cellular providers about the SMS bulk-send interface services they provide. These comes with discounts, SLAs, support, service reports and so on.

  • Send sms from oracle database/application server

    HI all
    I Wanted to send and recieve SMS not mails from oracle(database/application server).any possible solutions and what are the things that i required for that.i-e any service provider or any machine or somethings else.and secound thing can i use wirless server and what are the requirments for that

    Handle:      taimur
    Status Level:      Newbie
    Registered:      Aug 3, 2009
    Total Posts:      42
    Total Questions:      16 (16 unresolved)
    so many questions without ANY answers.
    http://forums.oracle.com/forums/ann.jspa?annID=718
    http://www.lmgtfy.com/?q=oracle+send+sms

  • Sending Mail from Oracle forms or reports

    Hi
    I have to send mail from forms or reports . Is there any way or builtin to do this.
    If anybody have experience in this please give the
    detailed example on this.
    Regards
    Arun

    Look at http://www.oracle.com/technology/sample_code/tech/pl_sql/htdocs/maildemo_sql.txt
    It creates a package in the database for sending mail.
    If you want to send mail from the local machine using Outlook, you'll have to use OLE, but it's not something I've tried.

  • Sending email from oracle forms

    Hi, I want to send an email within oracle forms 10g.
    If anyone could help me.
    Thanks.

    Hi,
    I didn't understand.....
    Isn't it convienient to you , to create a button , for example , and call the UTL_MAIL.SEND(......<parameters given in text items of your form>......) buolt in procedure....????? or the equivalent procedure in UTL_SMTP ....????
    Regards,
    Simon

  • Sending sms from oracle to mobile

    Hi Experts,
    EBS : R12.1.3 with shared appl_top pcp enables 2 nodes ( EBS1 , EBS2)
    DB   : 11gR2 : 11.2.0.2 with RAC enabled two nodes
    OS : RHEL 5.3 64 Bit
    we want to send notification via sms to mobile . For example like 'whenever a shipment is received ' or ' payroll run ' or 'concurrent manager failure' etc .
    if anyone have implemented this , please share the solution .
    thanks
    Mapps

    Pl do not post duplicates - using mobile sms alerts in R12

  • Sending SMS from the Oracle Forms10g.

    Hello All,
    I am using Oracle 10g 10.1.2.3.0 version. My requirment is to send the SMS through the Oracle forms or PLSQL. I got it in the some forum, but every body are using the "esendex" username, password and account. Is there any other way to do it through the forms or PLSQL. I do not want to use the "esendex" account. Please advice..
    Thanks,
    SUN
    Edited by: User SUN@ on Jul 20, 2009 6:09 PM

    Hi,
    Check out this link (Unable to send mail from oracle forms
    Hope it helps you.
    Navnit

  • How to sending email from Oracle 6i(Forms)

    How can I send email from Oracle Forms(6i).
    I need to send email to a distribution list(multiple email addresses).

    send email of multiple email address
    [email protected],[email protected],[email protected]
    create or replace function mailout
    (sender in varchar2,
    recipient in varchar2,
    ccrecipient in varchar2,
    subject in varchar2,
    message in varchar2) return number
    is
    crlf varchar2(2) := chr(13)||chr(10);
    connection utl_smtp.connection;
    mailhost varchar2(50) := 'Add email server Ip Address here';
    header varchar2(4000);
    v_num number :=1;
    str number:=0;
    email varchar2(50);
    begin
    connection := utl_smtp.open_connection(mailhost,25);
    header := 'Date: '||to_char(sysdate,'dd mon yy hh24:mi:ss')||crlf||
    'From: '||sender||' '||crlf||
    'Subject: '||subject||crlf||
    'To: '||recipient||crlf||
    'Cc: '||ccrecipient||crlf||message;
    utl_smtp.helo(connection,mailhost);
    utl_smtp.mail(connection,sender);
    utl_smtp.rcpt(connection,recipient);
    while (instr(ccrecipient,',',1,v_num)>0) loop
    email:=substr(ccrecipient,str+1,instr(ccrecipient,',',1,v_num)-str-1);
    dbms_output.put_line(email);
    utl_smtp.rcpt(connection,email);
    str:=instr(ccrecipient,',',1,v_num);
    v_num:=v_num+1;
    end loop;
    utl_smtp.open_data(connection);
    -- utl_smtp.write_data(connection,header);
    utl_smtp.write_data(connection,'MIME-Version:1.0'||crlf||'Content-type:text/html'||crlf||header);
    utl_smtp.close_data(connection);
    utl_smtp.quit(connection);
    return 0;
    exception
    when utl_smtp.invalid_operation then
    dbms_output.put_line('Invalid Operation in SMTP transaction');
    return 1;
    when utl_smtp.transient_error then
    dbms_output.put_line('Temporary problem with sending email ');
    return 2;
    when utl_smtp.permanent_error then
    dbms_output.put_line('Permanent problem with sending email ');
    return 3;
    end;

Maybe you are looking for

  • Can't load Windows 7 on Bootcamp 3.0.4

    So, I've got a couple things working against me.  I traded my friend for his late 2006 Macbook 2,1 and have upgraded to Snow Leopard.  The only issue with the computer itself is the optical drive is broken, but I have purchased an external USB drive,

  • PdDoc.open(filePath) gives me an error message.

    Hello, I am using pdDoc.Open(filePath) in my application. Its working fine with Acrobat 8.0 in both Windows XP and Vista. But with Acrobat 9.0 in Windows Vista, I am getting the following error message. "There was an error opening the document. The f

  • ACE Load balancing FTP connections.

    I have my ACE blade (running A1(4d) ) currently set-up to static nat to an FTP server. I have tried setting up a sticky SLB VIP for FTP across this server and an additional box but firewall in front of the ACE throws the connections. It appears that

  • Problem with multiple requests

    I have a problem with the users submitting multiple requests simultaneously. Let me put it this way: 1. User is on a tabbed panel with clear and search buttons. 2. User clicks on 'clear' button from any tab (request one). On successful completion, it

  • 2 x UAD-1e + Mac Pro

    Hi everybody, I hope somebody out there has the same system as I have ... just without my problems and therefore is able to give me some advice: I'm running a Mac Pro 2,66GHz, 5 GB Ram and Logic 7.2.3. I put one UAD-1e card in PCI slot no. 4 (opposit