To send Mobile message

Hi
How to send a message to mobile through ABAP

Hi Surendra,
Please check the following link:
Re: SMS through ABAP
Hope this will help you.
Regards,
Nitin.

Similar Messages

  • Send a message from  mobile to PC

    Hello everybody!
    Can anyone help me regarding how can we send a message(sms) from a mobille that is not connected to the pc to a pc..

    Depends.
    Many mobile providers offer an SMS to email gateway service (which typically requires registration, e.g. here is a [german] howto for T-Mobile customers: http://www.t-mobile.de/mms/0,9622,13789-_,00.html).
    Sending an SMS with content "[email protected] Hello world!" to a special number will result in an email with content "Hello world" being sent to the email address <[email protected]>. This email can then be retrieved by your PC by standard methods.
    Alternatively, if your PC has an ISDN card, it should in theory be possible to send an SMS to that ISDN number, though I have no experience with that.
    hagman

  • Send short message from Java application on mobile phone to server; http

    Hello!
    My question is: can I send short message from Java application on mobile phone to server - with the use of SMS (WMA) or http connection?
    I found this topic http://forums.sun.com/thread.jspa?threadID=5405431 about: "how to send data from midlet to servlet using doPost method".
    There is also such topic http://forums.sun.com/thread.jspa?threadID=5408046&tstart=0 about: "CLDC and MIDP - sending SMS to server -> Wireless Messaging API (WMA)".
    Please, kindly help me.
    Code from the topic mentioned above, edited by me so that it can be read easily:
    //http://forums.sun.com/thread.jspa?threadID=5405431
    //CLDC and MIDP - Re: how to send data from midlet to servlet using doPost method
    I want to know how to pass the values .
    for examples : this is what i wrote for doGet
    String url = setting.getUrl().toString()"/testProServlet/servlet/UpdateCompanyProfile?userId="+loggedInUserId"&svComp="saveCompHex;
    userId and svComp has the data which is very long so i wanted to use doPost.
    Now i dont know how to do it.
    This is what i have done in doGet (midlet)
    public void saveCompanyProfile(String saveComp,int flag,String blankFieldNm)
         System.out.println("flag===" flag);
         if (flag==1)
              displayAlert("Company Profile Edit",blankFieldNm+" field cannot be blank.",AlertType.ERROR, edCmpRecForm, true);
         else
              String saveCompHex = helper.encodeHexString(saveComp);
              // String saveCompHex =saveComp;
              HttpConnection httpConn = null;
              serverSettings setting = new serverSettings();
              System.out.println("saveCompHex===" saveCompHex);
              String url = setting.getUrl().toString()"/testProServlet/servlet/UpdateCompanyProfile?userId="loggedInUserId"&svComp="saveCompHex;
              System.out.println("url of save company profile:: "+url);
              InputStream is = null;
              OutputStream os = null;
              try {
                   // Open an HTTP Connection object
                   httpConn = (HttpConnection) Connector.open(url);
                   System.out.println("urlMidlet1 save edited company data===::" url.length());
                   // Setup HTTP Request
                   httpConn.setRequestMethod(HttpConnection.POST);
                   httpConn.setRequestProperty("User-Agent","Profile/MIDP-1.0 Confirguration/CLDC-1.0");
                   System.out.println("urlMidlet2===" url);
                   int respCode = httpConn.getResponseCode();
                   System.out.println("respCode edit company profile=====" respCode);
                   if (respCode == httpConn.HTTP_OK)
                        StringBuffer sb = new StringBuffer();
                        os = httpConn.openOutputStream();
                        is = httpConn.openDataInputStream();
                        int chr;
                        while ((chr = is.read()) != -1)
                             sb.append((char) chr);
                        String sResultSvCompanyProfile= sb.toString();
                        System.out.println("+++++++++++++Company sResult+++++++++++++==="sResultSvCompanyProfile);
                        if (resultViewCompanyProfile.trim().equals(""))
                             System.out.println("++++++++++++++If++++++++++++++SaveCompanyProfile===");
                             displayAlert("Login Incorrect","Username and Password incorrect", AlertType.ERROR, mainForm, true);
                        else
                             System.out.println("++++++++++++++Else++++++++++++++SaveCompanyProfile===");
                             //companyProfile();
                             displayAlert1("Information","Company Profile edited successfully", AlertType.INFO, profileMenuScreen, true);
                   else
                        System.out.println("Error in opening HTTP Connection. Error#" respCode);
                        //the line below divided into two lines because it was too long
                        displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                        AlertType.ERROR, mainForm, false);
              catch(IOException e)
                   e.getMessage();
              finally {
                   if(is!= null)
                        try
                             is.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
                   if(os != null)
                        try
                             os.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
                   if(httpConn != null)
                        try
                             httpConn.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
              } //end finally
         } //end else (?)
    } //end savecompany

    hi,
    SMS API(WMA) is an optional package. It is not a MIDP1.0 or MIDP2.0 api's.
    There are phones which has WMA api with MIDP1.0 support .... Nokia 3650
    Seimens has some phone with their own api's to send sms.Check out seimens site for more info
    BTW, What do you mean buy sending SMS to Server????
    If you want to send message to server you can do it with Http.
    HTH
    phani

  • Send a message to mobile phones

    Please help me how to write a program that can really send a message from a computer to a mobile phone (not a mobile simulator). If possible, please show me the mechanism of the system or where resources are.

    For that you'd have to know how to program. Programmers are skilled people, while you obiviously are not.

  • Need  help sending e-mail a mobile messages

    hi!
    i'm a n00b in Java. Can you please tell how can i send e-mail and mobile messages in java?
    thnx!!

    First of all, before you do any programming, if you want to have your computer send e-mail messages then you must have access to an SMTP server.
    Next, if you do have access to one, then JavaMail is a common way to write programs that send e-mail.
    As for mobile messages ("text messages" to a cellphone?) you usually need a contract with some phone company to do that, so they can bill you for it.
    When you find out about that, they should provide you with documentation on how to proceed. If it involves sending e-mail to a particular address, see part 1 of this reply.

  • Can't send video messages from the Skype by mobile

    hi,
    i have nokia x2 mobile pone. i had installed skype in it. i can take vedio calls from skype using the camera. but i can't recode vedios to send vedio messages. when i start to recode vedio to send. application stops. sometimes entire skype application is stop. please help me to fix this problem.

    Ok. Trying to send a video message fro the desktop. Some contacts when chosen do not have this as an option, the ones that do, when I click on it, I get an error message that says:
    "OOPS! Somrthing went wrong. Please tray again or get in touch." Trying again gets the same result, and I can find nowhere to "Get in touch" with skype.
    Thank you.

  • Cannot send text message to one mobile number

    Recently moved from iphone 4 to iphone 6 and changed the carrier from Tmobile to Verizon, post this change I am not able to send text message to one specific mobile number. The other person can send text to my number. The message sent to this specific phone number from iphone 6 appears green as sent but is not received by the other specific number. I can send messages to all the other friends but not to this specific number. The other person reached to his carrier (Tmobile) and they confirmed that it is not coming in their network after doing the testing from my end. This problem started when moved from Tmobile to verizon.

    Hi,
    This was already checked with the Tmobile carrier and their technicians as test from verizon side. It is not that it is not being received on their network, the issue is it is not being sent out from Verizon network. I have checked in my online account of Verizon with my SMS usage and it shows that no SMS has been sent out to this T-mobile number. I have tried sending SMS 30 - 40 times and there is no record in my online account about the SMS sent out. This means that the SMS is not going out from verizon network to this specific user. I hope I have made myself clear here in terms of issue definition. I have tried all possible options of deleting message thread, deleting contacts at both the sides, resetting network, switching off imessage, Airplane mode on-off, sending SMS by adding 001 to the mobile number etc.
    Kindly help urgently.

  • My mobile device won't send picture messages

    I have a problem where my mobile device simply won't send picture messages.  I have clear reception right now.  I've tried shutting the phone off and restarting it and taking out the battery.
    Why am I paying for a service that doesn't work?
    Anybody know what the problem is?

    You can call customer service and have them check the provisioning on your account to be sure that picture messaging is enabled.
    SOme things that may affect picture messaging:
    1) 1X service only - you need EV service to send picture messages
    2) Your phone says Extended network - picture messaging will be unavailable.
    3) You have a total data block on your phone, to prevent data charges. It also prevents picture messaging. You can block mobile web, and downloads separately, without blocking picture messaging.
    If none of these seem to apply, then I'm at a loss. What happens when you try to send a picture message? Do you get an error message?

  • Send sms message from pc to mobile

    hi...
    what we need to send sms message from pc to mobile and how can send it ????
    plz give me step by step
    thx

    Sending an sms message from your PC can be done in many ways. Firstly this can be send via email, simply type in the to field the number followed by the gateway. for example, [email protected] There are also a number of websites that allows you to do this simple search google for "send text message" and will see a list. The one I use is [http://www.wetextfree.com] it works and its free. Hope this helps you.

  • How to send sms message from webdynpro to mobile

    Hi
    i am working on QA project.when system QA parameters are above standard values ,then i need to send SMS  message to Mobile of supervisor.Can anybody suggest how to implement this?
    Thanks
    Prasad

    Hai,
    Create a web service model for this web servicehttp://www.webservicex.net/SendSMS.asmx?WSDL
    this web service provides sms service through india.
    But it can only work :If your mobile number is 098XXXXXXXX ,Please enter as 98XXXXXXXX
    Create a view with two input fields (ToMobilenumber, from mail Addrees)
    Create a textedit Elemnt (Message).
    Create a button set the parameters to your web service and execute it.
    regards,
    Naga Raju

  • Why is my Z10 sending Text Messages to my Contact's Home phone numbers over their Mobile?

    I send Text Messages as Chats (sent to multiple recipients which I can then later send subsequent messages to) because as far as I know there isn't a way to setup a Distribution Group with the Z10.
    When I select Compose, and then select a Contact, it is selecting some Home phone numbers instead of their Mobile. WHY?
    Any help would be appreciated!

    mattwalma wrote:
    I send Text Messages as Chats (sent to multiple recipients which I can then later send subsequent messages to) because as far as I know there isn't a way to setup a Distribution Group with the Z10.
    When I select Compose, and then select a Contact, it is selecting some Home phone numbers instead of their Mobile. WHY?
    Any help would be appreciated!
    Groups can be created, new icon added with latest update.

  • I can't use iphone5 China Mobile Network in China, unable to register activation, could not send text messages, not GPRS

    Dear Sir or Madam,
    As I bought my iPhone 5 (16GB,White) in the USA from Sprint, full price with tax,  unlocked ,it was excepted to be a global phone. But now I come across with some problems in China  using local carrier, everything is working properly except sending text message, and iMessage and Facetime also seem not to work.This is very serious for Apple and me! Will I have the chance to fix this?
    I tried all the possible solutions from the Internet, and the Official solution offered by Apple (http://support.apple.com/kb/TS4459), but it doesn't seem to work.
    Will Apple help me with this issue? Please do.

    The Sprint iPhone 5 is NOT unlocked. The SIM slot can only be unlocked by Sprint for Sprint customers in good standing.
    How exactly, did you "unlock" the phone?  There are known issues with SMS on foreign networks.
    If the article you linked to did not fix it, you'll have to work with your carrier.
    The bottom line is, you should not have purchased a Sprint phone with the intent of using it without Sprint service.

  • How do I make it so my phone can send Multimedia messages again? Samsung Intensity II

    I'm not sure if this is even where I am supposed to post this, I've been having a few difficulties navigating around the site as it is, so my apologies if it is in the incorrect section or anything.
    I have a Samsung Intensity II, and up until today it was perfectly fine. but now it wont send Multimedia messages anymore, I think I may have accidentally changed a setting on it some how. So far I haven't seen any other problems with it.
    Every time I try to send a Multimedia message of any kind, to anyone, it will sort of freeze on the percentage sent bar, for about 5 or so minutes, and then it will continue through all the way to 100% pausing like that, and then say "send failed would you like to try again?"
    I can receive Multimedia messages, and text messages, I can send text messages, but not multimedia messages. It fails every time.
    I have turned my phone off and back on, I have removed the battery and put it back in, nothing has changed. actually about the only thing I've seen change since the first time it wouldn't send, is that it pauses on 29% instead of 19%.
    If you can tell me what setting may have changed this, or another way for me to transfer my pictures, I would be very appreciative. Thank you for your time.

        Hi okikust,
    I use picture messages all of the time! I understand why you would want this corrected as soon as possible. I would like to look at your account, in order to determine the root cause of the issue and fix it! Please send me a DM with your name, mobile number, and contact number. I will be happy to review this personally. Thanks!
    Christina B
    VZW Support
    Follow us on Twitter @VZWSupport

  • TS2755 My wife and I both have iPhone 5s, I can't send text messages to non iPhone people that I use to but iPhone people I can, My wife can send text to non iPhone numbers.  I have checked and we both have the same settings.

    My wife and I both have iPhone 5s, I can't send text messages to non iPhone people that I use to but iPhone people I can, My wife can send text to non iPhone numbers.  I have checked and we both have the same settings.  Both of our phones are up to date 7.0.4.

    The ability to see and send calendar invites is a function of the calendar you are subscribing to and who owns it. We need more information, like what calendar are you subscribing to? MS Exchange? Google? Mobile Me?

  • A copy has been placed in your outbox. sending the message content to the server failed

    all of the sudden my phone wont send emial but will receive them. I have tried everything suggested as far as turn on/off, delete acct and set it up again and nothing seems to be working. Can someone help me please?? the error message i receive is "a copy has been placed in your outbox. sending the message content to the server failed"

    I think what happened to me was that my yahoo account was compromised by http://thenextweb.com/insider/2013/01/07/yahoo-mail-users-hit-by-widespread-hack ing-xss-exploit-seemingly-to-blame/
    Yahoo responds to these reports at the end saying they fixed the issue.  I think what that my mobile yahoo mail was somehow blocked by yahoo because that was the device that i logged into right before (the hacker) blasted all of my inbox.  That is the only thing I can think of.  Exactly 24 hours later I was able to send email.  I did figure out that for the iPhone 4gs you can go into your settings and yahoo mail and change the outgoing server from yahoo to gmail if you have gmail set up on your phone and that will allow you to send from yahoo through gmail.  I also sent a feedback form to yahoo, that is the only way to contact them, and have heard nothing.  There is nothing about this on their support site.  So let us know if after 24 hrs you are magically able to send.   Yahoo really should use that log in history where they can see that a log in has occurred from a strange IP to block that and warn the user.   My log in history right before this happened went:  home IP in the US, home IP, homeIP, home IP, Morroco, home IP, home IP, etc.    So it is blatantly obvious.  My little software company can block IP's, I know yahoo can.

Maybe you are looking for

  • [MSI PRO MOD] IRON MAIDEN bY Mario Viana (2XHAF XB)

    [MSI PRO MOD] IRON MAIDEN bY Mario Viana (2XHAF XB) DESIGN: Iron Maiden: COOLER MASTER HAF XB DUAL "Modder MVIANA" I apologize for the photos, they are mobile and also do not dominate the English The hardware is not as current, however still gives a

  • Problem with hp deskjet 6940

    I have been using this printer for the past year now and now today all of a sudden it will not print.  When I try to print it says there is one job in the print queue but when I check the queue it says error. I cannot print anything!  What should I d

  • Output Video Playback Help

    Hello Again, I first wanted to thank those who helped with my initial issue. I went through the 16 steps and was able to fix the blue hue over my output video. Now I have an issue where when I go to playback in the output video, it is very choppy or

  • Perform syntax in script

    Hi all, I want to display user name using subroutines in script..my code is not working.. pls check and let me know the correct way. /: PERFORM get_user IN PROGRAM ZTEST USING &UNAME& /: ENDPERFORM. /: &UNAME&. REPORT ZTEST. FORM GET_USER USING UNAME

  • Why does text on some websites (BBC, Guardian Unlimited) show as bold? But in others (Facebook, this communities site), it doesn't?

    I'm sure I've clicked some silly setting, which means that a whole bunch of websites now show their text as bold. This include the BBC, the Guardian, and generally text-heavy news sites. But other ones like Facebook, the text appears normal-weighted.