PL/SQL - SMS integration

Has anyone done this before? if so, do you have some sample code I could use?

I think it depends on provider
All our mobile phones has definite e-mail address in form
[email protected], so You can use utl_smtp package to send mail to some address(-es)

Similar Messages

  • Sms integration with sap b1

    HI to all,
        can it possible if sms integration with sap business one. means if i create a/r invoice if i add the document automaticlly send sms to the customer  in that sms following matter to be send
    invoice number,posting date,due date,invoice amount.can it possible .if yes then what is requirement for that.pls reply i will waiting for your reply...
    Regards,
    vishal.

    hi
    1.Create  class library in Visual Studio 2005 C# Express Edition create assembley  SQLCore
    Write code:
    using System;
    using System.IO;
    using System.Text;
    using System.Net;
    namespace SQLCore
        public static class SMS
            public static void PlusSend(string Sender, string Recipient, string Message)
                string Destination = "http://www.text.plusgsm.pl/sms/sendsms.php";
                string Data = "?tprefix=" + Recipient.Substring(0, 3) + "&numer=" + Recipient + "&odkogo=" + Sender + "&termin=0&tekst=" + Message + "&godz=00&min=00";
                SMS.PostStringToURI(Destination, Data);
            private static void PostStringToURI(string URI, string String)
                byte[] Bytes = Encoding.UTF8.GetBytes(String);
                HttpWebRequest Request = (HttpWebRequest)WebRequest.Create(URI);
                Request.Method = "POST";
                Request.ContentLength = Bytes.Length;
                Request.ContentType = "application/x-www-form-urlencoded";
                Stream RequestStream = Request.GetRequestStream();
                RequestStream.Write(Bytes, 0, Bytes.Length);
                HttpWebResponse Response = (HttpWebResponse)Request.GetResponse();
                if (Response.StatusCode != HttpStatusCode.OK)
                    string Message = String.Format(
                    "POST failed. Response staus {0}.",
                    Response.StatusCode);
                    throw new ApplicationException(Message);
    for your localization you have to find your own sms gateway.
    2.Compile project .
    3.Copy dll to C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn
    4. Set SETTRUSTWORTHY on true using
    ALTER DATABASE databasename SETTRUSTWORTHYON;
    go;
    [more info about SETTRUSTWORTHY|http://msdn2.microsoft.com/en-us/library/ms187861.aspx ]
    5.Create Assembly for your dll.
    CREATE ASSEMBLY SQLCore
    FROM 'C:\Program Files\Microsoft SQLServer\MSSQL.1\MSSQL\Binn\SQLCore.dll'
    WITH PERMISSION_SET = EXTERNAL_ACCESS
    6. Create Procedure
    CREATE PROCEDURE dbo.[PlusSend](@Sender nvarchar(max), @Recipient nvarchar(max), Message nvarchar(max))
    AS EXTERNAL NAME SQLCore.[SQLCore.SMS].PlusSend
    go;
    7 .Fially execute using
    EXECUTE dbo.[PlusSend]('SENDER'','PHONE NUMBER','Message')
    Insert it in transaction notification.
    Hope it helps.

  • SMS Integration

    Hi Experts,
    I am doing IDoc-XI-File scenario.
    Scenario is done.
    Now issue is....In any case due to some issue file is not created...My Mean mapping Error OR any Error came in scenario.... So i need to send an Alert SMS to Client in such a case.
    My question are :
    <b>1. Is it possible That we can do SMS Integration with XI scenario?
    2. How can I integrate SMS with this scenario?</b>
    Regards,
    Umesh Laxkar

    Hi
    You can do it using Alerts.
    Alerts
    http://help.sap.com/saphelp_nw04/helpdata/en/da/a3a7408f031414e10000000a1550b0/frameset.htm
    Step by Step Alert Configuration
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    Thanks

  • I'm new to SQL Server Integration Services and I need help on how to begin learning SSIS. Is there any training for it besides msdn?

    I'm new to SQL Server Integration Services and I need help on how to begin learning SSIS. Is there any training for it besides msdn?

    Check this thread where people have already given their suggestion on learning SSIS
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/f2cc1cf3-204d-454a-a189-47df87a3aa23/i-want-to-learn-ssis?forum=sqlintegrationservices
    I would suggest to go for You tube videos (type learn SSIS or begin SSIS step by step) you will get lot of good tutorials to start with.
    Happy Learning!!
    If this post answers your query, please click "Mark As Answer" or "Vote as Helpful".

  • SQL Server Integration Services 11.0 not showing

    To whom it may concern,
    I have been using SSIS 2008 R2 without a problem.  I then installed VS 2012 and migrated my SSIS packages from VS 2010 to VS 2012.  I also installed the BI Components (SSDTBI_VS2012_x86_ENU) in VS 2012,
    All the SSIS packages runs fine within VS 2012.  As soon as I run the packages from the command line (i.e. "C:\Program Files\Microsoft SQL Server\110\DTS\Binn\dtexec.exe") the packages referencing any lookup objects provides the following
    error: 
    Error: 2014-04-21 13:20:15.85
    Code: 0xC000F427
    Source: Update Category SSIS.Pipeline
    Description: To run a SSIS package outside of SQL Server Data Tools you must install Derived Column of Integration Services or higher.
    End Error
    Error: 2014-04-21 13:20:15.85
    Code: 0xC000F427
    Source: Update Category SSIS.Pipeline
    Description: To run a SSIS package outside of SQL Server Data Tools you must install Lookup [Table Name] of Integration Services or higher.
    End Error
    I checked my services on my Local machine and the following integration service is the only one available:
    SQL Server Integration Service 10.0 (i.e. SQL Server Integration Service 11.0 is missing)
    I presume this is the problem.  
    I will appreciate it if someone can assist with this problem.  I have also tried to repair MS-SQL 2012 (Express Version) to no avail (Shared Features).
    Kind Regards,

    Hi, I am running SSIS on a Local Dev Machine and I am trying to execute the packages via the "C:\Program Files\Microsoft SQL Server\110\DTS\Binn\dtexec.exe" Command Line It look as though I need to remove my previous version of SSIS and then install the
    2012 SSIS.
    I have also downloaded the extend MS SQL 2012 Express Version (1.9 GB), but still no no avail.  It therefore seems to be related to the previous version of SSIS that I possibly need to remove and then try to reinstall SSIS for 2012.
    I will revert back as soon as I have done these tests.
    As I said before, the Express version doesn't have SSIS.
    MCSE SQL Server 2012 - Please mark posts as answered where appropriate.

  • Sql 2012 integration services settings grayed out

    Our DBAs are trying to change some settings for integration services by following this article:
    https://msdn.microsoft.com/en-us/library/aa337083.aspx?f=255&MSPPError=-2147217396
    however everything on the properties window is grayed out. I have the same issue despite being a local admin on this server. 
    Are there any other settings I need to change to gain access to this? I can change all other settings under dcom config 

    Hi vanquish12,
    Please make sure that you right click on “Component Services” and select "Run as Administrator" to start up “Component Services”.
    However, if the integration services settings are still grayed out, the issue could be due to permission restrictions on your system. Please perform the following steps to solve this issue.
    1. Right-click on SQL Server Integration Services 11.0 and select Properties in Component Services/Computers/My computer/DCOM Config. In the General tab, record the Application ID of SQL Server Integration Services 11.0.
    2. Start the registry editor (regedit), find the following key, then right click it and select Permissions, add your account in the Permissions dialog and grant full control rights to your account.
    HKEY_CLASSES_ROOT\AppID\{ Application ID of step 1}
    3. Check that if integration services settings are enabled in Component Services.
    For more details, please review the following link.
    http://www.wictorwilen.se/Post/Fix-the-SharePoint-DCOM-10016-error-on-Windows-Server-2008-R2.aspx
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Short Message Service(SMS) Integration in Siebel 8.0

    Hi All,
    Hi i want to configure Short message service(SMS) integration to our maxhine
    please help me any body have doc or link
    please help to me
    advance thanks:8}
    Rio

    You will need a SMTP to SMS gateway to be able to use SMS with Siebel.
    Have a look at:
    Siebel Communications Server Administration Guide
    http://download.oracle.com/docs/cd/B40099_02/books/PDF/CommSrvAdm.pdf
    In that Guide you will find:
    Connecting Directly to Wireless Network Operators
    http://download.oracle.com/docs/cd/B40099_02/books/CommSrvAdm/CommSrvAdm_Wireless4.html
    Axel

  • Google Hangouts SMS integration

    Does anyone know if the new Google Hangouts will support SMS integration for the Tablet Z? I have a Tablet Z and an Xperia Z. Hangouts with SMS integration works great on the phone and it would be awesome if I were also able to use it on my Tablet. I like the unified platform it provides. My Tablet is an LTE one so it can do SMS. 

    I'm not sure if they will add support for out tablet as well, but I hope so. 
     - Community Manager Sony Xperia Support Forum
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • SBO SMS Integration

    Hi All !!
    One of my client requires sms integration with SBO. They have a pvt software which provides gate way to send sms es and xpecting the same to e used with SBO. Can it be integrated?
    Kindly say me ...

    hi,
    Check this links
    SMS technology
    SMS Alert Setup
    Jeyakanthan

  • SMS integration in CRM

    Hi All,
    I am provided with a third party software ( URL) which provides SMS services. Kindly let me know how to configure through SCOT and steps. I have gone through various notes as well.
    As I am new to this, further details are appreciated.
    Detailed configuration steps/screen shots/pdf/any collections ect..
    Regards,
    Madhu

    Hi Madhu,
    I recommend you to visit the following website to get information about how to add SMS functionality to a CRM application:
    http://www.sms-integration.com/p-48-sms.html
    I hope this helps you.
    Regards,
    Altair

  • Nopcommerce on SQL with integration to OnPremise ERP

    Hi,
    I would like to properly configure a Nopcommerce website/store on a SQL backend integrated with onpremise ERP.  Can you advise which Azure services I should be looking at for :
    - a development environment
    - a production environment
    Thanks
    Gunther Coppens

    Hi,
    From my experience, we can host our website on azure website, cloud service, azure VM. We can see the detail difference at the following article, this article helps you understand your options and helps you make the right choice for your web scenario, hope
    it helps.
    #http://www.windowsazure.com/en-us/documentation/articles/choose-web-site-cloud-service-vm/
    Best Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is there any way to add SQL Server 2008 R2 "SQL Authentication" logins to SQL Server Integration Services

    Hi Experts, 
    We have a way to add the Windows Authentication-logins /OS users  in SSIS
    Component Services -> Computers -> My Computer -> DCOM Config -> MSDTSServer
    Right click on MSDTSServer
    Click properties
    Click on the Security tab
    Select Customize and add the users/groups to the Launch/Activation and Access tabs accordingly
    Add the user to the local Distributed COM Users group
    Restart the SSIS service
    +++But do we have a way to add SQL Server Authetication logins to SSIS, Please clarify me 
    Prem Gokull

    Hi PREM,
    If I understand correctly, you want to use SQL Server Authentication log to SQL Server Integration Services.
    Based on my research, only Microsoft Windows Authentication is available for SSIS. So we cannot use SQL Server Authentication log to SQL Server Integration Services. Besides, we can only add OS users in the DCOM Config permission area.
    Reference:
    Connect to Server (Integration Services)
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SQL Server Integration Service wont start.

    If integration services doesnt come online where should we check, apart from Event viewer, SQL Server Error logs and SQL Server Agent logs??
    The below error is what I see in Event viewer.
    Timeout (30000 milliseconds) waiting for the SQL Server Integration Services service to connect.
    The SQL Server Integration Services service failed to start due to the following error:
    The service did not respond to the start or control request in a timely fashion.
    This doesnt tell me the real problem.  The service account is Windows AD account. The other SQL Server services running under same account is up and running. Could you guys please help me in troubleshooting?

    Hi Shanoof,
    Please go through below links, hope these helps:
    http://blogs.msdn.com/b/ajaykumarks/archive/2010/11/13/a-short-story-about-the-quot-ssis-service-that-failed-to-start-quot.aspx
    http://biatlink.wordpress.com/2013/04/29/sql-server-request-failed-or-the-service-did-not-respond-in-a-timely-fashion

  • Implementation of CISCO IVR – with 2nd Level of SMS Authentication and Backend SQL Server Integration

    Hi All,
    All i need is to write a script in UCCX premium with below requirement.
    We do offer services to our customers through the IVR, the aim is to ask the Customer to register with our company, and then will be allowed to use the services from us. We want to ask the customer for second level of authentication when he is on our IVR in terms that we will send him the activation code on his registered mobile number and verification of Voice Signature by Voice Biometric System. Then he will be prompted for the services. In addition, once he has logged in then he can order new services for which we will record him request in the Database and then send him an SMS Notifications.
    Is this possible in the scripting?

    Hi,
    First customer calls in to the trigger, their will be a menu to select the language (English,Arabic,French,bla). After the language selection,
    customer will be prompted to login using their credentials (press 1),
    and if you are new user register your detail (Press 2).
    If customer press 1 , then there will a menu mentioning some company services, and customer can order those services by using his account. After successful order, sms gateway sends a notification to customer's mobile number.
    If the customer press 2 , then the registration process starts , after successful registration in the database we query the details and then send the activation code to customer's mobile number. Using the activation code he should be able to activate his account and select the services.
    Finally, this IVR should play only in the office hours. Non-working hours there will be different prompt.
    Hope you are clear about this call flow. If you have any queries please let me know.
    Thanks in advance
    Regards
    Kajen

  • Crystal report and SQL 2000  Integration to BW?

    HI All,
    We have following two requirements to be implemented
    1) We need crystal reports to be integrated with BW system.Please guide about the prerequisites as well as the procedure to be followed so as to generate Crystal reports once the plugins are in place.
    2) We need SQL 200 server to be interfaced with our BW system.Pleas do let me know apart from DB2 connect is there any other method that can be implemented and aslo If we use DB2 how should we go about handeling Delata.

    Hi
    1, once you setup the SAP Plugins you can connect to the BW system and view the tables and objects such as Query etc.
    then you build the report (Crystal Rep) using this data source.
    My experiance is that the performance is quite bad, so good luck to you.
    2, we use a data base level access in our BW.
    it means that the user has access rights on the DB level and then we can
    access the db using MS Query Analyzer.
    Reg's
    Edan

Maybe you are looking for