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

Similar Messages

  • Sending SMS notification via business workflow

    Hello Experts,
    I want to send SMS notification fron business object BUS2078
    via worflow please help me out process in ABAP program.

    Hi,
    Please Check this Blog,
    /people/ronen.fox/blog/2007/12/06/sending-sms-notification-via-business-workflow
    Thanks.

  • Sending sms notification

    Hi guys , i have small requirement that i need to send sms notification for new activities in crm application,please can anyone guide me.i dont have any idea in sms or mail application in adf.

    Hi,
    It is helpfull if you are mentioning Jdev version which you are working on.
    For your query please refer below link
    http://docs.oracle.com/cd/E2176401/webcenter.1111/e10148/jpsdg_notifications.htm
    Thanks,
    Santosh

  • Send SMS as Workflow Notification

    Hi,
    I want to send an SMS and Email as workflow notification.
    Can any one Help?
    Thanks in Advance
    Anish

    Hi Anish,
    First thing to do is configure SAP Connect to send SMS and mails..
    http://help.sap.com/saphelp_nw04/helpdata/en/af/73563c1e734f0fe10000000a114084/frameset.htm
    The you need to configure worflow notifications to use them
    http://help.sap.com/saphelp_nw04s/helpdata/en/d5/581ee8d56f1247bf34cfcd66d16d81/frameset.htm
    Regards
    Juan
    Please reward with points if helpful

  • Error while sending SMS

    Hi ,
    I have done the setup for SMPP Driver properties.
    We have a clickatell account and registered the server IP with them.
    I am getting the following error while running the BPEL process to send SMS. Please help.
    Error while sending notification to 'sms:919876543210; 7074de6c8d92005d036d07190f170cb5'.
    Possible causes : SDPMessaging Driver not configured; Invalid To Address is used; Email server/Messaging gateway is down; using IP address as part of email ID instead of domain name;.
    Regards,
    Surendra
    Edited by: svsingh on Mar 18, 2010 5:09 AM

    Hallo,
    Possible Error Sources
    ●     The database is not running, or the database URL is incorrect
                    -> The problem can be solved using the Visual Administrator or by a manual modification of the data-sources.xml file
    ●     Wrong user or password parameters
                    -> The problem can be solved via the Visual Administrator or by a manual modification of the data-sources.xml file.
    ●     Maximum count of simultaneous connections to the database has been reached
                    -> To increase the maximum number of opened connections and/or the time to wait for a new connection you should change the DataSource properties in the Visual Administrator or manually modify of the data-sources.xml file.
    ●     Problem with connection sharing if J2EE transaction is running
                   -> The problem is caused while in an active JTA transaction there is an inappropriate attempt to open a second connection. There is either an attempt to get a second connection from an un-shareable non-XA DataSource, or an attempt to get it from another non-XA DataSource.
    Br,
    Rajesh Gupta.

  • How to send SMS by using ABAP program

    HI Gurus,
    I need to notify the vendor through sms when his goods are received. His details are stored in vendor master.
    My problem is that I am not able to find any function module for the same.
    Do any of you know how to send 'sms' to particular mobile number using ABAP.
    Are there any basis settings required for the same?
    Thanks and Regards,
    Saurabh

    Hi,
    Pls check the below links
    http://help.sap.com/saphelp_nw04/helpdata/en/58/97c43af280463ee10000000a114084/frameset.htm
    /people/ronen.fox/blog/2007/12/06/sending-sms-notification-via-business-workflow
    http://www.****************/Tutorials/Workflow/Workflow.htm
    You can use the FM: 'SO_DOCUMENT_SEND_API1' &
    'SO_DOCUMENT_SEND_API1_NEW'.
    to send the mail,sms etc.
    But you have to make some chamnges in the reciever table, jus go thru FM documnetaion once, you will fine the option for sending SMS thru either of this FM.
    Below is a sample code for sending e-mail.
    so, u can take help from this.
    data declarations
    DATA : v_sender TYPE soextreci1-receiver,
    v_doc TYPE sodocchgi1,
    it_paklist TYPE STANDARD TABLE OF sopcklsti1 ,
    wa_paklist TYPE sopcklsti1 ,
    it_obj_head TYPE STANDARD TABLE OF solisti1 ,
    it_obj_bin TYPE STANDARD TABLE OF solisti1 ,
    it_obj_txt TYPE STANDARD TABLE OF solisti1 ,
    it_obj_rcv TYPE STANDARD TABLE OF somlreci1 ,
    wa_obj_rcv TYPE somlreci1 ,
    v_desc(100).
    CONSTANTS: c_start(12) TYPE c VALUE '000000000000001',
    c_num(12) TYPE c VALUE '000000000000002',
    c_num1(12) TYPE c VALUE '000000000010030',
    c_raw(3) TYPE c VALUE 'RAW',
    c_test(4) TYPE c VALUE 'TEST',
    c_X(1) TYPE c VALUE 'X'.
    refresh internal tables
    REFRESH : it_paklist, it_obj_rcv.
    clear internal tables
    CLEAR : it_paklist, it_obj_rcv, v_sender.
    v_sender = sy-uname.
    fill internal table it_paklist
    wa_paklist-head_start = c_start.
    wa_paklist-head_num = c_num.
    wa_paklist-body_start = c_start.
    wa_paklist-body_num = c_num1.
    wa_paklist-obj_name = c_test .
    wa_paklist-doc_type = c_raw .
    wa_paklist-transf_bin = c_X .
    APPEND wa_paklist TO it_paklist.
    clear: wa_paklist.
    Data in the Header/subject Line
    v_desc = text-005 .
    v_doc-obj_name = c_objname .
    v_doc-obj_descr = v_desc.
    Mail text
    APPEND v_desc TO it_obj_txt.
    Preparing the receiver list
    wa_obj_rcv-rec_type = 'U'.
    wa_obj_rcv-rec_type = 'C'.
    v_dlist = 'SCE_TEST'.
    wa_obj_rcv-receiver = v_dlist. "Distribution list.
    wa_obj_rcv-receiver = Enter the mail id .
    APPEND wa_obj_rcv TO it_obj_rcv.
    Call the function module to send mail
    IF NOT it_obj_rcv[] IS INITIAL.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = v_doc
    sender_address = v_sender
    sender_address_type = 'B'
    put_in_outbox = 'X'
    commit_work = 'X'
    TABLES
    packing_list = it_paklist
    object_header = it_obj_head
    contents_bin = it_obj_bin
    contents_txt = it_obj_txt
    receivers = it_obj_rcv
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    IF sy-subrc NE 0.
    MESSAGE text-006 TYPE 'I' .
    ENDIF.
    ENDIF .

  • Automatic SMS/Mail notification for local auto-reaction method

    Hello!
    We would like to be informed via SMS/Mail about the Availability of satellite system.
    When we assign a Local auto-reaction method for this MTE (Availability_SysPercent_ABAP) we receive the SMS/Mail notification only in case we manually start the auto reaction method from RZ20.
    When we try to assign the central auto reaction method from RZ20 we get the following error:
    Assignment for local system only works with nodes from agent segments
    What is the procedure for the automatic SMS/Mail notification in case of local auto-reaction method?
    Thank you very much!

    Dear Team,
    As I have understood, you want to be informed each time a satellite system is not up and running ?
    Option 01
    ========
    1. Install the CCSMPING agent in SOLMAN
    2. Create your satellites systems through RZ21 - Technical Infrastructure - Availability Monitoring - Configure CCMSPING ...
        Create all satelittes systems ...
    3. Then, from SOLMAN_WORCENTER, in SYSTEM Monitoring, you have the status of each satellites systems created
        in RZ21 (point 2).
    This option will not advised when a satellite system is down. But from one WEB page, you will have the status of all satellites systems.
    Option 02
    ========
    1.Install the CCSMPING agent in SOLMAN
    2. Create your satellites systems through RZ21 - Technical Infrastructure - Availability Monitoring - Configure CCMSPING ...
        Create all satellites systems.
    3. RZ20 - SAP CCMS Monitor Templates - Double-click on "Availability and Performance Overview"
        Open "Availability" - Then, all satellites systems which have been added under point 2 will appear.
    4. Select one satelitte system
    5. Open "Availability"
    6. Select "ABAP: Checked by CCMSPING.<solman-hostname>.00"
    7. When selected, click on "Properties" button.
    8. Then, you assign here an auto-reaction method - for example :
        "ccms_send_alert_to_alm_ccms_containerv4".
    9. Copy this method to Zccms_send_alert_to_alm_ccms_containerv4.
    10. In this method, add you email address.
    11. Then, check that job "SAP_CCMS_MONI_BATCH_DP is running. This job collects data in the CCCMS (RZ20).
    12. Then, the alert will be automatically sends to your email adress.
    Hope it helps ?
    Best regards
    SAPNetWeaverAdmin

  • API's for sending SMS messages

    Where can I find documentation on how to send/receive SMS messages via Oracle WE? Are there any API's available? I am currently on v1.0.2.2.

    Hi Friend,
    It is a great difficult to find API for sending SMS messages....but i succeeded....for sending SMS messages there is a Class Calles SmsSender and use
    sendSms(String mobileno, String message).....it will send message to the given mobile no...before i hope u have configured SMS Properties in Notification.properties file..
    and Coming to receive SMS...there is one more Class SmsServer which listens to all the messages coming on the configured port..now you need to customize this class...
    All the best....
    Cheers
    Krishna

  • Sending sms to a specific port using j2se

    Hi,
    I want to send sms to a specific port from j2se platform not from j2me.Is there any way to send it through a modem or through a third party service provider like SMSJunction or Clickatell?If anyone have the code of doing this,plzz help me.
    Arnab.

    I don�t know but i use the JAVA ME JSR 120
    import javax.microedition.io.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    import javax.wireless.messaging.*;
    public class SmsConnecter // implements MessageListener
         String port = "5001";
         public SmsConnecter()
    public boolean sendSMS(byte data[]) {
         try {
              String destAddress = "sms://4681234567:5001";
              MessageConnection smsConnection =
                   (MessageConnection)Connector.open(destAddress);
              //Create binary message
              BinaryMessage binaryMSG = (BinaryMessage)smsConnection.newMessage(
                   MessageConnection.BINARY_MESSAGE);
              //Setting destination add
              binaryMSG.setAddress(destAddress);
              //Add payload data
              binaryMSG.setPayloadData(data);
              //Now send the message
              smsConnection.send(binaryMSG);
              smsConnection.close();
              return true;
         } catch(Exception e) {
              //System.out.println("e="+e);
             return false;   
    }Ad about port...
    Port number Description
    2805 WAP WTA secure connection-less session service
    2923 WAP WTA secure session service
    2948 WAP Push connectionless session service (client side)
    2949 WAP Push secure connectionless session service (client side)
    5502 Service Card reader
    5503 Internet access configuration reader
    5508 Dynamic Menu Control Protocol
    5511 Message Access Protocol
    5512 Simple Email Notification
    9200 WAP connectionless session service
    9201 WAP session service
    9202 WAP secure connectionless session service
    9203 WAP secure session service
    9207 WAP vCal Secure
    49996 SyncML OTA configuration
    49999 WAP OTA configuration
    //Mickenull

  • Sending SMS with Simplewire SDK to a specific port, not working

    Hi,
    I guess most ppls are familiar with the simplewire SDK. I tried sending SMS to a port on my number thru the SimpleWire SDK but I guess it is not delivering the the apt port.
    The reason is quite simple:
    I tired sending to the same port on the same phone thru the java wireless API on the same phone and the midlet picked up the SMS.
    Anytime I send thru the Simplewire SDK, it comes to the phone (though my ringtone never rings, which suggest it may not going to the default port), but my midlet never picks.
    I am suspectign the mode of settin the port may be faulty. Here is my settings
    SMS sms = new SMS();
    sms.setDestPort(port);
    // Where port = (short) 16000

    I don�t know but i use the JAVA ME JSR 120
    import javax.microedition.io.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    import javax.wireless.messaging.*;
    public class SmsConnecter // implements MessageListener
         String port = "5001";
         public SmsConnecter()
    public boolean sendSMS(byte data[]) {
         try {
              String destAddress = "sms://4681234567:5001";
              MessageConnection smsConnection =
                   (MessageConnection)Connector.open(destAddress);
              //Create binary message
              BinaryMessage binaryMSG = (BinaryMessage)smsConnection.newMessage(
                   MessageConnection.BINARY_MESSAGE);
              //Setting destination add
              binaryMSG.setAddress(destAddress);
              //Add payload data
              binaryMSG.setPayloadData(data);
              //Now send the message
              smsConnection.send(binaryMSG);
              smsConnection.close();
              return true;
         } catch(Exception e) {
              //System.out.println("e="+e);
             return false;   
    }Ad about port...
    Port number Description
    2805 WAP WTA secure connection-less session service
    2923 WAP WTA secure session service
    2948 WAP Push connectionless session service (client side)
    2949 WAP Push secure connectionless session service (client side)
    5502 Service Card reader
    5503 Internet access configuration reader
    5508 Dynamic Menu Control Protocol
    5511 Message Access Protocol
    5512 Simple Email Notification
    9200 WAP connectionless session service
    9201 WAP session service
    9202 WAP secure connectionless session service
    9203 WAP secure session service
    9207 WAP vCal Secure
    49996 SyncML OTA configuration
    49999 WAP OTA configuration
    //Mickenull

  • Send SMS when Device is Locked.

    Hi All,
    As Services in android,is there anything similar in Windows phone 8.x?
    I want to schedule a task,which can send message when my device is locked from background.Or i want to schedule a task for particular time to send message to my friend on his birthday.
    Please help me out,is there any possibility in windows phone to do this.
    Thanks in Adv.

    Windows Phone does not provide a public API that allows you to send SMS without user interaction and a background task cannot call an API which require user interaction*.  (*except for Toast notification.)
    However, you could write a resource intensive background task to call some web service that sends an SMS. 
    Eric Fleck, Windows Store and Windows Phone Developer Support. If you would like to provide feedback or suggestions for future improvements to the Windows Phone SDK please go to http://wpdev.uservoice.com/ where you can post your suggestions and/or cast
    your votes for existing suggestions.

  • 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)!

  • How to send sms from gsm modem(AT commands) to j2me application(not inbox)

    hi
    i want to send sms from gsm modem to a j2me application, for this to happen i have to send sms to a specific port in which j2me application is running.when i m trying to send sms from modem it doesnt go to application it goes to inbox.
    is it related to udh settings if yes then how do i set port no in settings?if no what are the other ways.

    Hi Vignesh,
    Might be you can call ActiveX or DLL objects of the software installed for modem from LabVIEW, if it is unblocked.
    Have a  look on the link > http://zone.ni.com/devzone/cda/tut/p/id/2983
    CLA 2014
    CCVID 2014

  • Having horrible service with 4GLTE I have had 3G for several weeks (I am not the only person I know having this problem), I have reset my network settings and it did not resolve the issue.  I am also unable to send SMS and text messages without them eithe

    Having horrible service with 4GLTE I have had 3G for several weeks (I am not the only person I know having this problem), I have reset my network settings and it did not resolve the issue.  I am also unable to send SMS and text messages without them either failing or not sending at all.  Is there an outage in the Cleveland, Ohio area (zip codes 44129, 44134, 44137) or anything else I can do to resolve this issue?

    Not that I'm a Verizon employee, but I have experience in the field. An LTE tower will only extend up to, on a perfect day, with no elevation, 6-7 miles. On a typical day, you will be lucky at four (4) miles. The three ZIP codes you've given are all within about a 12 mile radius. That would mean that 2-3 towers are currently down at the same time, and Verizon would know about it within the hour. Being it's Cleveland, I'm sure they would receive numerous calls regarding an outage of that size.
    My point is that if you're having issues in all three ZIP codes, chances are it's a phone issue. If you're handset is simply not receiving LTE, but still receiving 3G, that would signify a SIM card issue. You need to get your SIM card replaced.

Maybe you are looking for

  • Ipod touch getting an error message when I try to sync

    I am trying to sync my Ipod touch (2nd generation, updated) and it keeps telling me 'Ipod touch cannot be synced. An error occured while reading from the device'. Then it says the required disk cannot be found. I have tried plugging it out and in, et

  • Photoshop 2.0 versus Photophop 10

    Year ago I purchased Adobe Photoshop and Album  2 for Windows XP computer.  Loved working with it, howver, I can no longer update program and after editing photos, cannot save them due to "program error". So this year, I purchased Windows 8 computer

  • Ideapad U410 not working in Normal Mode

    Hi, My Lenovo Ideapad U410 has suddenly stopped working in normal mode. If I need to open a link or an important document, I open it in a safe mode. Has anyone faced a similar kind of issue? I don't want to format the system as i would first like to

  • Installer Can Not Write Register(s)

    iTunes in the LAST TWO upgrades (7.1 and now 7.1.1) can not (install correctly) write register errors (hello, I am admin - I should be able to do anything). This is getting so **** old it is not longer even a funny joke like why did the chicken cross

  • Purchasing from itunes in another country

    Less a question and more a point. It is transparently ridiculous that inter-country purchases cannot be made both in terms of a service to customers to exercise choice and the 'bad taste' that these restrictive practices leave in the mouth of consume