Sending SMS throw portal

Hi Experts,
             How we implement SMS throw portal if we can implement explain the procedure.In our project we don't have R/3 in this phase.

Hi,
You can browse this link about alert management and sending alerts through mails,sms
http://help.sap.com/saphelp_nw04s/helpdata/en/3f/567ddea69d3d4c93a6aedabd08899e/frameset.htm
Regards
Radhika Kuthiala
Do award points for encouragement:)

Similar Messages

  • Problem on sending sms in jsp page

    hi to all,
    i am using smslib for sending sms from pc to mobile.it work fine in all java file but when i implement in jsp file it gane me error of serial port that"port does not exist".how can i solve this problem...
    Edited by: kinjal on May 30, 2008 9:36 AM

    hi,
    this was sort of an urgent requirement, i was using J2SE, no way to compile servlets,
    when i compile sample code in SE, it gave me 6 errors
    C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\star\WEB-INF\clas
    ses\com\stardeveloper\servlets>javac -cp %CATALINA_HOME%\lib\servlet-api.jar Tes
    tServlet.java
    TestServlet.java:7: package javax.servlet does not exist
    import javax.servlet.*;
    +^+
    TestServlet.java:8: package javax.servlet.http does not exist
    import javax.servlet.http.*;
    +^+
    TestServlet.java:10: cannot find symbol
    symbol: class HttpServlet
    +public class TestServlet extends HttpServlet {+
    +^+
    TestServlet.java:12: cannot find symbol
    symbol  : class HttpServletRequest
    location: class com.stardeveloper.servlets.TestServlet
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    +^+
    TestServlet.java:12: cannot find symbol
    symbol  : class HttpServletResponse
    location: class com.stardeveloper.servlets.TestServlet
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    +^+
    TestServlet.java:13: cannot find symbol
    symbol  : class ServletException
    location: class com.stardeveloper.servlets.TestServlet
    +throws IOException, ServletException {+
    +^+
    +6 errors+
    at the sametime sun site was offline, so i decided to do it in JSP,
    upto upadating DB im done,
    but get stuckd at sms part,
    now ive installed the J2EE, but stil when i compile, it gives the same old errors.
    im completely new to this area of web applications, dont hav know how of the operation.
    what i want is sending SMS using SMPP on button click in web page.
    pls pls help me get rid of this, either using servlets or JSP
    thanking u.....

  • Sending SMS on Win Mobile 5.0

    Hi !
    I am relatively new to J2Me and would like some help on sending SMS using a PDA. I have been trying to create a program (using WMA) which should enable me to send an sms via my PDA (O2 Zinc). Although there are no errors to the program, it simply refuse to send the SMS out.
    A portion of the codes is found below:
    private void jButton1MouseClicked(java.awt.event.MouseEvent evt) {                                     
    try {
    String addr = "sms://+6598292837";
    jLabel1.setText("address added");
    {color:#ff0000} MessageConnection conn = (MessageConnection) Connector.open(addr);{color}
    jLabel2.setText("message connection set");
    TextMessage msg =
    (TextMessage)conn.newMessage(MessageConnection.TEXT_MESSAGE);
    jLabel3.setText("text message set");
    msg.setPayloadText("Hello World!");
    jLabel4.setText("text set");
    conn.send(msg);
    }catch (Exception e){e.printStackTrace();}
    I added in the jLabel text change to see which are the lines being executed. And it was found that the codes after {color:#ff0000}
    MessageConnection conn = (MessageConnection) Connector.open(addr); {color:#000000}was never executed.
    I must apologise i kinda s.u.c.k in using exception but i try to add this in and it caught the connection not found exception.
    public void sendTxtMsg() throws IOException{
    try{ ......
    } catch (ConnectionNotFoundException ex) {ex.printStackTrace();jLabel3.setText("error: "+ex);}
    have i missed out on any steps? or should i use a different approach to the problem?
    Your help is very much appreciated! Thanks for all the help
    Desperate Programmer.
    {color}{color}

    The JavaFX Mobile 1.2 runtime can only be run on Windows Mobile 6.1 and up

  • Send SMS via web

    I am trying to make a java code that sends SMS using a website that offers free SMS http://www.starhub.com.sg/starfun/index.asp
    my code is as following:-
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class printMIMEHeader {
    public static void main(String args[]) {
    URL u;
    URLConnection uc;
    String header;
    try {
    u = new URL("http://www.starhub.com.sg/starfun/index.asp");
    uc = u.openConnection();
    for (int j = 1; ; j++) {
    header = uc.getHeaderField(j);
    if (header == null) {
    break;
    System.out.println(uc.getHeaderFieldKey(j) + " " + header);
    } // end for
    String setCookie = uc.getHeaderField("Set-Cookie");
    System.out.println(" " + setCookie);
    int index = setCookie.indexOf(";");
    if (index >= 0) {
    setCookie = setCookie.substring(0, index);
    System.out.println(" " + setCookie);
    u = new URL("http://www.starhub.com.sg/servlet/SMSServlet");
    uc = u.openConnection();
    uc.setRequestProperty("Cookie", setCookie);
    uc.setRequestProperty("referer","/d3fault.asp");
    uc.setRequestProperty("mobile", "91910069");
    uc.setRequestProperty("msg", "hi");
    uc.setRequestProperty("SendSMS","Send SMS");
    BufferedReader in = new BufferedReader(new InputStreamReader(uc.
    getInputStream()));
    int c;
    while ( (c = in.read()) != -1) {
    System.out.print( (char) c);
    in.close();
    } // end try
    catch (MalformedURLException e) {
    System.err.println("This is not a URL I understand." + e);
    catch (IOException e) {
    System.err.println(e);
    //} // end for
    } // end main
    } // end printMIMEHeader
    I am getting the following exception:-
    This is not a URL I understand.java.net.MalformedURLException: no protocol: nullPlea
    se%20sent%20your%20sms%20thru'%20our%20website.
    well it is quite clear that this website is not allowing to POST request thru java code and forces us to visit their website. I just want to know if there is some work around for this problem.
    ne help is appreciatedm, thanx in advance.
    cheers,
    deb

    Heres what i found from sum previous forums for ur reference
    http://forum.java.sun.com/thread.jsp?forum=29&thread=33055
    For Sending SMS through Java Program, u can refer to an open source website (SMS Gateway) such as:
    http://kannel.org
    Currently there is no service provider which lets u send SMS free of cost. If u r really inclined on sending SMS then u can visit site:
    http://www.simplewire.com
    (But I think they have also made it as paid service atleast for India users)
    You have to first register in this site. After registration it will give you subscriber_id & password. Download the API for sending SMS and put the jar files in classpath.
    I am also attaching a small program which sends SMS for your reference:
    import com.simplewire.sms.*;
    public class send_text
    public static void main(String[] args) throws Exception
    SMS sms = new SMS();
    // Subscriber Settings
    sms.setSubscriberID("225-745-372-63009");//"123-456-789-12345");
    sms.setSubscriberPassword("C96B0472");//"Password Goes Here");
    // Message Settings
    sms.setMsgPin("+915623738280");//"+1 100 510 1234");
    sms.setMsgFrom("Paritosh");
    sms.setMsgCallback("+917623736528");
    sms.setMsgText("Hi ....how r u ?");
    System.out.println("Sending message to Simplewire...");
    // Send Message
    sms.msgSend();
    // Check For Errors
    if(sms.isSuccess()){
    System.out.println("Message was sent!");
    else {
    System.out.println("Message was not sent!");
    System.out.println("Error Code: " + sms.getErrorCode());
    System.out.println("Error Description: " + sms.getErrorDesc());
    System.out.println("Error Resolution: " + sms.getErrorResolution() +
    "\n");
    Hope this helps
    Rohan

  • Sending SMS though Flashlite without the SMS editor

    I'm developing an application in Flashlite 2.1 and was
    wondering if there's any way to send an SMS via the application
    that doesn't result in the SMS message showing up in the editor.
    I'd also like to have the incoming SMS intercepted by the
    application, I presume this'd mean that the incoming SMS is somehow
    tagged.
    Any help would be appreciated.

    quote:
    Originally posted by:
    biskero
    actually it's not Flash Lite but rather how Nokia implemented
    the player on their phones for security reasons.
    Well, probably they figured out that the possibility of
    sending out SMS without the user being notified was a big problem;
    since SWF content does not need to be certified, it is certainly
    easy to create a malicious SWF movie that would consumes all your
    credit by sending SMS to a premium number.
    quote:
    Incoming SMS cannot be catch (current implementation) so you
    need to create some type of shell as Stephan, programming language
    depends on the platform you are developing for. For example Nokia
    S60 might be C++, J2ME or Python, S40 J2ME. For WM5 or Brew
    something else.
    C++ is the only solution, J2ME would throw several dialog
    boxes about security, authorization and so on, beside the important
    fact that it cannot communicate with the FL playter at all, only
    C++ based programs can do, Python is ok, unfortunately it is not an
    interpreter installed by default on the machines and certainly is
    not something to ask to user to install only becuase you want to
    send SMS in stealth mode.

  • Want to send sms using java

    I am developing a stand alone application in java that contains sending sms to certain numbers.
    I want to send sms using java and my phone connected to my pc by usb cable(Not through Bluetooth).
    I am using Linux operating system (Arch linux).
    I tried a few libraries that uses the the online sms portals,but for some reasons i dont want to pay those sites.(just want it to be done using my simcard cause its economical).
    Help appreciated

    880667 wrote:
    I am developing a stand alone application in java that contains sending sms to certain numbers.
    I want to send sms using java and my phone connected to my pc by usb cable(Not through Bluetooth).
    I am using Linux operating system (Arch linux).
    I tried a few libraries that uses the the online sms portals,but for some reasons i dont want to pay those sites.(just want it to be done using my simcard cause its economical).
    Help appreciatede First thing you need to check: are you able to access other services my connecting you mobile by USB to machine (Line GPRS, calling). Because it requires the calling or SMS port access. And you said it is economical by sending SMS using mobile it depends. But most of the times, it is better to use the SMS service provider getway. They provide the details either http or FTP, we just need to put or message in the accepitng form, rest of the things are done by the service provide.

  • Sending SMS from EP

    Hi,
          How can we send SMS to mobile from Enterprise portal.If it is possible what is the methodology to do so.
    Thanks .

    Kundan,
    You can consume webservice in portal if there is any webservice available to send SMS.
    Ram

  • I cannot send sms or imessage from iphone 5

    Hi guys...
    I can not send sms or imessage from my iphone 5... before i had an iphone 4s and both sms and imessage worked perfectly but now when i restored my new iphone 5 from iphone 4s back up... i can not send sms and imessage. please help me asap.
    Thanks

    I tried to make the steps but i got the below underlined error..
    my iPhone is not active now
    We’re unable to complete your activation.
    This device is not registered as part of the iPhone Developer Program.If you are a member of the Program, please register your device in the iPhone Developer Program Portal.

  • Send sms login

    hi
         i want to send sms when critical postion occurs. there is one web portal www.way2sms.com providing free sms through internet. my question is i want to login in my account and send sms through that... it is possible. if any idea plz...............
    Indrajit
    | [email protected] | [email protected] .

    Hello,
    I've an example download from NI in the past that could help you.
    Software developer
    www.mcm-electronics.com
    PS: Don't forget to rate a good anwser ; )
    Currently using Labview 2011
    PORTUGAL
    Attachments:
    autologin-national online trading.vi ‏43 KB

  • Send SMS as Notification

    Dear All,
    I want to send SMS as Notification from the portal.
    For this I went to System Administration -> System Configuration -> Universal Worklist -> Workflow -> Workflow Notification Settings. I tried to add new Notification Setting there. But the SMS Option was not available in the dropdown.
    I ve configured the channel, Channel Originator & the Notification Settings from System Administration -> System Configuration-> KM  -> Content Mangemenet -> Utilities & System Administration -> System Configuration -> Content Management -> Notification Service.
    We are using EP7.0 SP10.
    Can any let me know what else needs to be done for configuring SMS as notification.
    If possible can anyone provide any help documents on this.
    Thanks in Advance
    Anish

    Try this link:
    http://help.sap.com/erp2005_ehp_02/helpdata/en/39/a1bb5c4c0d4ab4a417e87ef35f1efa/frameset.htm

  • Sending SMS from Wireless

    Hi all,
    I have portal/wireless 902. I would like to send SMS to my mobile using Wireless.It should retrieve data from a table and send it as a message to a mobile phone.
    Any help on how this can be achieved would be appreciated.
    Thanks and regards.
    Sakshi.

    Hi,
    This is simple!
    Look at the following link:
    http://otn.oracle.com/tech/wireless/tools/content.html
    or the following viewlet:
    http://otn.oracle.com/tech/wireless/tools/jwe/wireless_enable_regular_j2ee_viewlet_swf.html
    To query your database you will need to write a custom application that reads out that data from your database that you want to send out. This custom application may be written in Java and JDBC for instance.
    You have 2 options of doing this:
    - Use the Web Services Push API (easy)
    - Use the Java APIs
    Look at the documentation for those sections in the documentation on learning on how to do it more.

  • Problem while sending SMS

    Hi,
    I wrote an app. which sends sms using wma api. It doesn' throws any exception or error. But when i tried to laod the app. on NOKIA 73 device it didn't send sms. It doesn't throw any exception.
    here is my code
    public void sendMsg()
              MessageConnection con=null;
              try
                   addr = "sms://+number";
                   con = (MessageConnection)Connector.open(addr);
                   frmMain.append("Connection opend..");
                   TextMessage tmsg =(TextMessage)con.newMessage(MessageConnection.TEXT_MESSAGE);
                   tmsg.setPayloadText("MY FIRST SMS");
                   con.send(tmsg);
                   frmMain.append("SMS send");
              }//try
    output on phone is
    Connection made......
    plz help me.
    Message was edited by:
    anu1

    hi all,
    i want to send SMS using j2me. im using netbeens IDE.
    if i put my sendSMS() method under startapp() it will work. but i want to send SMS using command button. ( when i press SEND command button i want to send my SMS)
    if u know how to do this please email me - [email protected]
    my method is given below. it's work............
    public void sendMessage(){
    String address = "sms://+5550001:1234";
    MessageConnection smsconn = null;
    try{
    smsconn = (MessageConnection)Connector.open(address);
    TextMessage txtMessage = (TextMessage)smsconn.newMessage(MessageConnection.TEXT_MESSAGE);
    txtMessage.setPayloadText("rosa");
    smsconn.send(txtMessage);
    smsconn.close();
    } catch (Exception e){
    e.printStackTrace();
    i want to send this message using command button , like this ..............
    public void commandAction(Command command,Displayable displayable)
    if (command == send)
    sendMessage();
    if i put like this it will give error
    (Running in the identified_third_party security domain
    Warning: To avoid potential deadlock, operations that may block, such as
    networking, should be performed in a different thread than the
    commandAction() handler.)
    but it's work under startapp(). any one know the answer please help me..............................
    [email protected]

  • Sending SMS from SAP

    Hi Experts,
    I have requirement where i need to send SMS to the client whenever their request has been responded.
    For Ex: If the user requesting for some upgrade from the current Plan of their mobile.(From Prepaid to Postpaid)
    if request has been responded they should be intimated through SMS from SAP.
    Is there any interface for that?
    Kindly throw some light on this issue.
    Higher points will be rewarded for useful inputs
    Thanks in Advance,
    Dharani

    Please check these links:
    SMS through SAP
    https://www.sdn.sap.com/sdn/collaboration.sdn?contenttype=url&content=https%3A//forums.sdn.sap.com/thread.jspa%3FforumID%3D50%26threadID%3D15685%26messageID%3D120429%23120429
    Sending SMS from SAP
    SMS from ABAP
    sending SMS
    If you can afford searching the forum, you can find many more threads on the same topic.
    Hope this helps.
    Kind Regards
    Eswar

  • HT3529 i am unable to send sms from my iphone 4s

    i am unable to send sms from my iphone 4s

    Try Settings > General > Reset > Reset Network Settings.
    If that does not resolve, SMS is a carrier feature, contact the carrier.

  • Unable to send SMS

    I've lost the capability to send SMS messages.  It's always switching to MMS mode even if I've set it up to always send text-only message as SMS.  The SMS settings in Text Messaging -> Options is also gone.  I used to be able to send SMS.  I've done soft and hard reset but the problem persists.  Please help.  How can I get the SMS settings back in Text Messaging -> Options screen?
    Thanks.

    Hey redj28,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    I would first suggest removing the battery and placing it back in.  Then try to send an SMS message.  When was the last time you were able to send an SMS message?  Did you do any changes to your account?
    I look forward to your reply.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

Maybe you are looking for