SMS through SAP ABAP in ECC 6.0

hi
i want to send the SMS through SAP ABAP,for that I need any FM or any other thing.
currenlty user send SMS through the TCODE SO01,but i want to do it through abap code.
please tell me is there any FM exits in SAP to do this,or any other code i have to write.
regds
vipin

Hi Vipin,
Just check if the
FM - SO_DYNP_SHORT_MESSAGE
        SO_NEW_DOCUMENT_ATT_SEND_API1
is useful for you.
If helpful award points
Regards,
Vivek
I think the below FM would be more helpful, check -
1. SO_DOCUMENT_SEND_API1
2. SO_DOCUMENT_SEND_API1_NEW
Edited by: Vivek on Feb 7, 2009 2:57 PM

Similar Messages

  • SMS through SAP ABAP program

    Hello Guys..
    I am creating a program which is basically alert program. As per the requirement if delivery is pending as on date , a SMS need to send the sales guys.
    is there any  stranded function for that, which help me ragarding the same. Mobile no of all are maintain in z table..
    Regards
    Swati....

    Hello,
    please check this:
    http://help.sap.com/saphelp_nw04/helpdata/en/58/97c43af280463ee10000000a114084/frameset.htm
    Re: SMS through SAP
    /people/anilkumar.vippagunta2/blog/2005/07/20/developing-web-application-without-writing-single-line-of-code-my-first-web-log
    <b>/people/durairaj.athavanraja/blog/2005/07/12/send-sms-to-india-from-abap
    /people/durairaj.athavanraja/blog/2005/07/12/send-sms-to-india-from-abap
    http://www.webservicex.net/WS/WSDetails.aspx?CATID=4&WSID=59
    /people/thomas.jung3/blog/2004/11/17/bsp-a-developers-journal-part-xiv--consuming-webservices-with-abap
    Re: SMS through SAP
    Reagrds,
    Beejal
    **Reward if this helps

  • New line problem in sending sms through SAP

    Hi all,
    I need to send sms through sap. I have a code working fine.
    constants: c_tab type c value cl_abap_char_utilities=>NEWLINE.
    concatenate 'Sales INFO-' date3  into line1 separated by space.
      move 'Order Input' to line2.
      concatenate 'Day: Rs.' day_oamt   into line3 separated by space.
      concatenate 'MTH: Rs.' month_oamt into line4 separated by space.
      concatenate 'YTD: Rs.' yord       into line5 separated by space.
      move 'Billing' to line6.
      concatenate 'Day: Rs.' day_bamt   into line7 separated by space.
      concatenate 'MTH: Rs.' month_bamt into line8 separated by space.
      concatenate 'YTD: Rs.' ybill      into line9 separated by space.
    concatenate line1 line2 line3 line4 line5 line6 line7 line8 line9 into text separated by C_TAB
    concatenate '+91' m_no+len(10) into m_no.
    'http://************************************='
      M_NO
      '&msg='
       text
        '&************************************************=text'
       inTO WF_STRING.
    CALL METHOD cl_http_client=>create_by_url
        EXPORTING
          url                = wf_string
        IMPORTING
          client             = http_client
        EXCEPTIONS
          argument_not_found = 1
          plugin_not_active  = 2
          internal_error     = 3
          OTHERS             = 4.
      CALL METHOD http_client->send
        EXCEPTIONS
          http_communication_failure = 1
          http_invalid_state         = 2.
      CALL METHOD http_client->receive
        EXCEPTIONS
          http_communication_failure = 1
          http_invalid_state         = 2
          http_processing_failed     = 3.
      CLEAR result .
      result = http_client->response->get_cdata( ).
    I am able to send the message but it gets displayed in one line.
    SALES INFO- <dd.mm.yyyy> Order Input DAY: Rs.123 MTH: Rs.123 YTD: Rs.123 Billing DAY: Rs.123 MTH: Rs.123 YTD: Rs.123
    What I need to do is this.
    SALES INFO- <dd.mm.yyyy>
    Order Input
    DAY: Rs.123
    MTH: Rs.123
    YTD: Rs.123
    Billing
    DAY: Rs.123
    MTH: Rs.123
    YTD: Rs.123

    Have you tried with line feed?
    i.e.
    instead of:
    constants: c_tab type c value cl_abap_char_utilities=>NEWLINE.
    try:
    constants: c_tab type c value cl_abap_char_utilities=>CR_LF.

  • Pdf live cycle  form through sap abap editor to validate user input by java script coding

    I am new to apply a java script in a Adobe form.
    So i need of help that i have 9 page form of HR module i need to verify every blank field and wrong entry field also.
    I look around a lot of code but still i am not able to perform good validation in a Adobe form.
    I am using SAP ABAP editor where i am making through PDF Live cycle FORM & try to put java script validation on the field.
    My problem is that how can i link or configured to Adobe form.
    Here are some event are given "mouseup","validate" or more are given.So how i can do.
    i wrote the code like
    / Get the field value
    var f1 = this.getField("VORNA");----why it is not working.Some thing is wrong?
    var v1 = f1.valueAsString;
    if (v1) {
    } else {
       app.alert("Field: " + f1.name + " is blank.", 1);
    //above code is not working.
    but here we used rawValue() method it works , but it popup message  javascript with window error.
    if( this.rawValue()==' ' || this.rawValue==null)---------this works
    xfa.host.MessageBox("First name is blank!");---------this works
    "VORNA" is "First name" field name binding with this value.
    How we can linked java script file with Adobe form.
    Kindly help me

    You're mixing code for an acroform with code for an XFA form. SInce you're creating the form with LiveCycle Designer, it wold be better if you posted this to the LiveCycle Designer forum, if you haven't already.

  • Pdf live form through sap abap editor to validate user input by java script coding

    I am new to apply a java script in a Adobe form.
    So i need of help that i have 9 page form of HR module i need to verify every blank field and wrong entry field also.
    I look around a lot of code but still i am not able to perform good validation in a Adobe form.
    I am using SAP ABAP editor where i am making through PDF Live cycle FORM & try to put java script validation on the field.
    My problem is that how can i link or configured to Adobe form.
    Here are some event are given "mouseup","validate" or more are given.So how i can do.
    i wrote the code like
    / Get the field value
    var f1 = this.getField("VORNA");----why it is not working.Some thing is wrong?
    var v1 = f1.valueAsString;
    if (v1) {
    } else {
       app.alert("Field: " + f1.name + " is blank.", 1);
    //above code is not working.
    but here we used rawValue() method it works , but it popup message  javascript with window error.
    if( this.rawValue()==' ' || this.rawValue==null)---------this works
    xfa.host.MessageBox("First name is blank!");---------this works
    "VORNA" is "First name" field name binding with this value.
    How we can linked java script file with Adobe form.
    Kindly help me.

    You're mixing code for an acroform with code for an XFA form. SInce you're creating the form with LiveCycle Designer, it wold be better if you posted this to the LiveCycle Designer forum, if you haven't already.

  • SMS through SAP B1

    Can someone help me in SDK codes for sending SMS from SAP B1.
    Can i get the sample source code for the same.
    I also want to know can i use the SMS Message dynamically.
    Thanks & Regards
    Shiv

    Hi,
    As Told by arun, U need to get the details from an SMS service provider.
    The general logic is, The SMS provider would be providing u with a API which u need to use in your application, in turn the API would contact the SMS webserver and send the SMS.
    Let me know if u require details of an SMS service provider.
    Hope it helps,
    Vasu Natari.

  • How to mail a formatted excel(Having complex template from microsoft) file as attachment from presentation server through SAP ABAP

    Hello everyone,
    I have an requirement to attach an excel file in mail while sending from SAP ABAP. This excel file is a formatted one and its having a proper template which is stored in wwwdata table in sap. My program will pick the file with no changes in format from presentation server i.e. my desktop and will be sent to external email-ids .
    I have searched in scn but couldn't get a proper answer which will send the .xls file as attachment with no changes in format of template and data of excel.
    Please suggest the approaches how to handle this one.
    Regards,
    Madhusmita

    I have read those two help file and was able to use it in the ABAP proxy code.  Thanks.
    This is the current outcome.  I totally understand that SAP PI communicates via XML.  So when PI picks up a file that contains XML tags, the Inbound proxy is triggered.  I can see its processing in SM50.  However, when I give the Sender FTP adapter a non-XML file to pick up, the Inbound Proxy does not trigger.  The file itself should be read into memory so that I can save it to the application server via ABAP code (with no mapping).  That is why there is no operation mapping
    The reason I am using using FTP to ABAP proxy is because I need to call a subsequent RFC step to process the file.  Else, I will just use FTP to File Adapter scenario.
    Question 1: I am thinking that that file is the attachment.  Is that where I am incorrect and I still need to send in an XML file with the attachment as an addition?
    Question 2: Is this the best approach or should I use BPM?  If BPM, what steps do I need?

  • How to Send SMS through SAP?

    Hello friends,
                      I got know tht Function module SO_OBJECT_SEND is used to send SMS to customer after inquiry is created. Here in receivers pass the values as mobilenumber "at"domain.com/org etc....but i am not getting the correct information an anyone share me the procedure for triggering SMS?
    Thks points will be rewarded for helpful answer.

    Hi Venkateswar,
    As i already tld u have to pass same parameters which we will pass for mail sending. U can get plenty of sample codes for mail sending in SDN itself. Only difference is data of receivers parameter. Check below code.
          SELECT SINGLE cell_carr_string
          FROM zcarrier
          INTO w_carr
          WHERE zcarrier EQ wa_zsent-cell_carrier.
          IF sy-subrc EQ 0.
            REFRESH i_rec[].
            CONCATENATE wa_zsent-cell_number
                                    w_carr  INTO w_email.
    i_rec-receiver = w_email.*
    i_rec-rec_type = 'U'.              "internet*
            APPEND i_rec.
    ENDIF.
              CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
                EXPORTING
                  document_data                    = doc_chng
               document_type                    = 'RAW'
                TABLES
               object_content                   = objcont
                  receivers                        = i_rec
             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
    Thanks,
    Vinod.

  • 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

  • Send SMS through GSM modem

    Hello,
    We have a requirement of sending SMS after PGI . Could anybody please help me on how to use GSM Modem to send SMS through SAP?

    Hey, I can give you another tip. I am using a very reliable integration program. Its name is Ozeki NG SMS Gateway. I hope they dont cut my tip out, because this software is very useful and stable. You are also able to add this message sending function to different clients for example HP Openview or Sharepoint etc.
    Sorry again, I did not intend to advertise or something like that.
    http://www.sms-integration.com/
    Have a nice day
    Jozef

  • SMS thru SAP System

    Hi All
    My requirement is I want to send SMS to Vendor when order is placed thru ME21N tcode. Can any one tell me how do I proceed.
    Regards,
    Rajesh Vasudeva

    Hi,
    You can opt for the Vendors who provide SMS Web Services.
    Kindly go through the belwo link using SAP as an option....
    Link: [SMS through SAP;
    Regards
    Arbind

  • ECC = SNC ReplenishmentOrderNotification custom message through SAP PI

    Helllo,
    I have one issue during proxy call in SNC. We are implementing SNC system with our ECC 6.0 system for PO processing, PO Confirmation Processing. The interfaces used is the standard SNC PI package from SAP through SAP PI; however, we have extended PO IDOCs in ECC for some Z-fields and created a new message type in SAP PI and mapped them properly. The problem, when it reached SNC, I checked the XML message and it was as expected with the new Z-fields but when the inbound proxy is called, I got the following error:
    Error during proxy processing An exception with the type CX_SY_DYN_CALL_ILLEGAL_TYPE occurred, but was neither handled locally, nor declared in a RAISING clause The function call of /SCA/BIF_REPLORD_BO failed; a field may have been assigned to the parameter IS_REPLORD_NOTIF whose type is not compatible with this parameter
    it seems that the newly generated service interface is not reconginzing the new ReplenishmentOrderNotification message structure with the Z-fields
    How can we resolve this issue and make the inbound proxy reconginze the new message stucture?
    By the way, I found this Badi: BAdI for ReplenishmentOrderNotification_In? and I have no clue how it works if we need to implement it?
    Thank you,

    Hi Alan,
    Please check below threads.
    1. INTERFACE_REGISTRATION_ERROR (inbound ABAP proxy)
    2. ABAP ->INTERFACE_REGISTRATION_ERROR for outboud sync ABAP proxy
    3. INTERFACE_REGISTRATION_ERROR using File-to-File method
    Regards,
    Deepak

  • ECC TO SRM-MDM CATALOG THROUGH SAP PI

    We have a scenario where we are sending data from ECC to SRM-MDM Catalog through SAP PI and data is coming from ECC through proxy and sending to SRM u2013MDM catlog through file adapter. In ESR part we have used SAP defined standard service interfaces (CatalogueUpdateNotification as sender interface and MDMInfoRecordDataTransmission as a receiver interface). The mapping used is also standard one.
    Now we have got requirement to send the data for vendor mat no, manufacturer field of info records from ECC to SRM-MDM catlog.  But we are unable to find out these two fields in standard interfaces/messages. Can anybody guide us how to add these fields in the current data types or is there any other standard interfaces we can use.
    Thanks in advance.

    Hi Shiv,
    Many thanks for your reply.
    Since we're not using XI / PI scenario and this is an upgrade from SRM 5.5 to SRM 7, Iu2019m using the same approach that was already used in SRM 5.5 with CCM 2.0.
    The idea is that the catalogue and all the records maintained need to be associated to a contract. So, I add the contract ID and the correspondent contract item in the import file, in addition to the supplier name, product ID, price information and so on. I mapped the contract ID with the field contract price.
    In relation to the price information fields, as I want it to be visible for any user that accesses the product catalogue, I tried different approaches:
    1.Using OCI Price information u2013 amount, currency, price base quantity and price base quantity UoM;
    2.Using OCI Price contract u2013 amount, currency, price base quantity and price base quantity UoM;
    The first approach didnu2019t work very well, as I was not able to see price information when accessing the catalogue. I could only see it once I transfer the items to the SC. In addition, this approach had one problem. The products were displayed but it was not possible to select the items one by one. To do that I needed to select all the items of the catalogue and after that the detail of the contract ID was displayed in every item, allowing me to choose the items that I want to select to my SC.
    The second approach was better as the information was visible when accessing the SC and I was able to select all the items, one by one, as it should be. The main problem of this approach was that Iu2019m getting errors in the SC when the materials have stock u2013 u201CInterface data contains errorsu201D. Or alternatively, if the items didnu2019t have stock, the SC was possible, but when I tried to create a PO from that SC, It simply does not work.
    So, can someone help me? Any ideas?
    Thanks in advance.
    Best regards,
    Andreia

  • Guidance For Doing Certification in SAP ABAP through Online Training.

    Happy New Year to All the Members of SAP Community Network,
    I am 2014 MCA (Master of computer applications) Pass Out . I have completed my 6 months industrial training in SAP ABAP From an unauthorized institute (DUCAT ,Noida) while doing my MCA. But, now i am planning to do the SAP ABAP certification from an Authorized Study center like ATOS ,Delhi . I CHOOSE OLT(ONLINE TRAINING) FOR 3 MONTHS FROM ATOS , DELHI.
    QUESTIONS:
    1. How Complete scenario of online training going on like yes a candidate have to complete 200 hours of training and its a online process no instructor is provided as the candidate who register for the course have full excess for 3 months for study material or ppt provided online or is it for a stipulated time period ?
    2. What Do's and Dont's a candidate have to follow while undergoing OLT ?
    3. What Is the prerequisite for SAP ABAP Crtification through OLT like we know candidate must have a basic knowledge of any programming language.
    but upto what extend ?
    4. How much time a candidate must devote and how a candidate prepare a blue print or a time table for preparing for there certification exam as well as having in depth knowledge of ABAP.
    Please Help to find the answers of the Above Questions .
    Thanx
    regards
    Rizu Yadav

    Hi,
    Wow, that sounds like pretty bad service from your training centre. I would take my business elsewhere.
    Anyway, I might be able to help a little questions 3 and 4. I did my ABAP certification a few years ago.
    "3. What Is the prerequisite for SAP ABAP Crtification through OLT like we know candidate must have a basic knowledge of any programming language but upto what extend ?"
    To learn ABAP you need to know programming basics. It's not much different to other languages. To become certified you need broad ABAP & SAP knowledge and (ideally) some real experience.
    "4. How much time a candidate must devote and how a candidate prepare a blue print or a time table for preparing for there certification exam as well as having in depth knowledge of ABAP"
    It took me about 6 months (part-time) of rereading the course notes, practicing on sample tests, and making up sample questions.
    Here are some tips on what to do in the certification exam itself:
    http://scn.sap.com/community/training-and-education/certification/blog/2013/08/26/10-hot-tips-for-passing-sap-certification-exams
    good luck!
    Paul

  • Facing Problem In Accessing SAP System through Eclipse ABAP Tool

    Hi All,
    I am willing to learn SAP ABAP.
    I installed SAP GUI 7.30 for windows and Eclipse ABAP Tool.
    I also connected to E66 [dkmgd37] System through Consolut but
    Whenever i am trying to access SAP System from eclipse ABAP project, it is showing you are not authorized to access this system for ABAP Development.
    Could anyone plz help me out. I am also attaching the image of SYSTEM CONNECTION PARAMETERS for E66 System(For Reference).
    Thanks & Regards,
    Priyanshu

    Hi Priyanshu,
    To create development objects in SAP , you must have developer access key . Do you have developer access key ? If yes then not have enough roles to create the objects.
    To check which authorization object , after getting the error run transaction SU53. Contact the authorization team who created the ID to provide developer roles
    Thanks & Regards,
    Arun

Maybe you are looking for