Data not sent to External Accessory in iOS7.1

We have an iPad application which communicates with External Accessory connected to ipad via USB/Bluetooth. While communicating to external accessory, application opens stream and starts pushing data and recieving data. In iOS 7.1 and iOS 7.1.1 we are facing issue where after initial connection and disconnection, when application reconnects to External Accessory it successfully detects, connects and open communication stream but after few data exchange the communication dies out. After debugging and carefull observation we have found that the response is coming from external accessory, but the  though the data is sent sucessfully from application never reaches external accessory.
What might be cause and resolution of this issue.
Thank you for the help and input.

Problem solved!

Similar Messages

  • App Ready Notification not sent to External Accessory in iOS7.1

    We have an iPad application which communicates with External Accessory connected to ipad via USB/Bluetooth. While communicating to external accessory, application sends app ready notification to external accessory after initial handshake. But after debugging and carefull observation we have found that the app ready notification do not go to external accessory hardware from iPad. This issue is only observed in iOS 7.1 and 7.1.1 onwards. On previous iOS version it is working fine. What might be cause and resolution of this issue.
    Thank you for the help and input.

    Is the SMTP server that is setup in the Mailer Configuration connected to the Internet? Please use this same SMTP server in your e-mail client such as Outlook or Netscape Messenger and send an e-mail to Yahoo!. If you receive the e-mail in your Y! account, the SMTP server is good to send e-mails internal as well as external.
    So, please check your SMTP server configuration to make sure it is able to communicate outside the firewall. No changes required in Workflow Manager.
    Hope this helps.
    Vijay

  • Email not sent to external email id

    Hi All,
    We have a particular user who is not receving the email notifications/ reminders to approve leaves on his lotus notes id.
    Its only this particular user who is having this problem.
    If i trace the workflow (leave sbmitted by his subordinates) the  sending notification task has completed status but in SOST there is no record of a mail sent.
    Have checked SU01 the user has an email address maintained both in ESS and R/3.
    As per config SO16 - home address is selected.
    In the profile his external email id is selected as home address.
    what should i check next to sort out the issue.
    Thanks & Regards,
    Swati Sahu

    Hi Swati,
    Try to maintain an auto-forwarding email address for this user using transaction SO36 and check if that solves your problem.
    Regards,
    Jigar

  • Mail not sent to External email address -SOST looks OK

    Hi,
    We've sent a report output to external email address.
    When I checked in SOST it shows as sent.But the user did not receive it.
    Could please advice what could be the cause of it.
    Thanks,
    Venkat

    Check with your Basis admin - there could be many possible causes, including problems with the mail server on either side. Also try sending to another email - sometimes spam-filtering software filters are too strict on the receiving end.
    This has nothing to do with ABAP IMHO.

  • XML data not displayed on external applications (Adobe, PowerPoint, Word)

    Hi,
    I have imported an XML file into Xcelsius using the XML data connection button in Xcelsius 2008 SP1.
    I would like to test whether the model is correctly picking up the data when XML file is updated.
    The XML file is stored locally on my PC.
    I'm able to view and refresh the data in Preview mode and in the .SWF file but when exporting to Adobe, PowerPoint or Word, I get #2148 error on opening.
    I did add the path to the swf file and xml file in the Flash Player security settings with no success.
    Any suggestions welcome
    Best regards,
    Jenni Jacob

    Hi Jenni,
    Adobe PDF usually works because like Xcelsius it allows the SWF to load data from anywhere so I am not sure why that one would not work...
    When you export to PowerPoint or Word that probably counts as a different SWF so try adding the folder where the PPT/DOC lives as trusted instead.
    When I am in a VM I tend to add C:\ folder as trusted (meaning I can run a SWF anywhere on my C drive in the VM with trusted permissions).
    Regards,
    Matt

  • How to extract data from custom made Idoc that is not sent

    Hi experts,
    Could you please advise if there is a way how to extract data from custom made idoc (it collects a lot of data from different SAP tables)? Please note that this idoc is not sent as target system is not fully maintained.
    As by now, we would like to verify - what data is extracted now.
    Any help, would be appreciated!

    Hi,
    The fields that are given for each segment have their length given in EDSAPPL table. How you have to map is explained in below example.
    Suppose for segment1, EDSAPPL has 3 fields so below are entries
    SEGMENT          FIELDNAME           LENGTH
    SEGMENT1         FIELD1                   4
    SEGMENT1         FIELD2                   2
    SEGMENT1         FIELD3                   2
    Data in EDID4 would be as follows
    IDOC           SEGMENT                          APPLICATION DATA
    12345         SEGMENT1                        XYZ R Y
    When you are extracting data from these tables into your internal table, mapping has to be as follows:
    FIELD1 = APPLICATIONDATA+0(4)        to read first 4 characters of this field, because the first 4 characters in this field would belong to FIELD1
    Similarly,
    FIELD2 = APPLICATIONDATA+4(2).
    FIELD3 = APPLICATIONDATA+6(2).  
    FIELD1 would have XYZ, FIELD2 = R, FIELD3 = Y
    This would remain true in all cases. So all you need to do is identify which fields you want to extract, and simply code as above to extract the data from this table.
    Hope this was helpful in explaining how to derive the data.

  • Forwarded successfully the workitem for BO-BUS2000220(complaint) in the worklist of other user: Problem in "Sent date"  not reflecting correctly in SAP CRM 7.0 Web UI

    I am working with SAP CRM 7.0. We have a workflow in the system which is triggered at the creation of complaint(BO:BUS2000220) and then assign the complaint workitem
    in the woklist of specified agent. I have created a report and scheduled it daily to forward the complaint into the worklist of user B from worklist of user A after 7 days
    from creation date of complaint. But the problem is that the forwarded complaint is showing in the worklist of user B with sent date(the creation date of complaint, not the
    forwarded date).
    Relevant code:
    IF gw_complain-PROCESS_TYPE = 'ZCMS' AND age_complaint = 8.
              CALL FUNCTION 'SAP_WAPI_WORKITEMS_TO_OBJECT'
               EXPORTING
    objtype         = 'BUS2000120'
    objkey          = obj_guid_key
    top_level_items = ' '
    SELECTION_STATUS_VARIANT       = 0001
               IMPORTING
    return_code     = return_code
               TABLES
    worklist        = it_worklist[].
    READ TABLE it_worklist INTO wa_worklist WITH KEY wi_type = 'W'.
    CALL FUNCTION 'SAP_WAPI_FORWARD_WORKITEM'
                EXPORTING
    workitem_id    = wa_worklist-wi_id
                  USER_ID        = wa_worklist_esc-ESC_USER
    LANGUAGE       = SY-LANGU
    DO_COMMIT      = 'X'
    CURRENT_USER   = wa_worklist_esc-CURRENT_USER
                IMPORTING
    RETURN_CODE    = lv_return_code
                TABLES
    MESSAGE_LINES  = lv_mesg
    * MESSAGE_STRUCT =
    * USER_IDS       =
    ENDIF.
    Can someone help me how to change the sent date to actual forwarded date of complaint.

    Hi Kavita,
    There is a standard column in UWL with name 'Sent Date'. Other functionalities in UWL for example deadline monitoring (Due date column) are based on this sent date. This shows an employee what was the date workitem was created (sent date) and when it will get escalated (due date). Displaying forwarding date in Sent date will not give clear picture to employee as the deadline will be calculated based on sent date only not based on forwarding date. this was just an example.
    even though if your client is insisting, i dont think it can be done without any enhancement in UWL web dynpro com sort of thing. you can check with your portal consultant too.
    Regards,
    Ibrahim

  • I just bought a new Mac and I want to transfer some data (not all) from my old Mac.  Basically, I want to move my itunes library, iphoto library, and a few documents.  I have not even turned on my new Mac yet.  Is the best way by an external hard drive?

    I just bought a new Mac and I want to transfer some data (not all) from my old Mac.  Basically, I want to move my itunes library, iphoto library, and a few documents.  I have not even turned on my new Mac yet.  Is the best way by an external hard drive?

    If both have Firewire ports then you can accomplish your goal by using Target Disk Mode. If this is not possible then you can do using an external drive or if you have a local network connect both to your network and use filesharing between the two computers.
    File Sharing on Macs
    Mac 101- File Sharing

  • My MacBook Pro is not recognizing my external hard drive.  The hard drive is listed in disk utilities but an icon does not pop up and I cannot access the data.  Is there any way to resolve this?

    My MacBook Pro is not recognizing my external hard drive.  The hard drive is listed in disk utilities but an icon does not pop up and I cannot access the data.  Is there any way to resolve this?

    WE know Disk Warrior is more reliable, hence more useful, and should be in any disk mechanics toolchest.
    For the record, I don't know anything of the kind. I have yet to see evidence that Disk Warrior is useful at all.
    What I do know is that you seem to take every opportunity you get to promote it in these forums. Do you work for Alsoft?
    Let me be a little more explicit. My opinion is that Disk Warrior is a waste of money if one has backups. If a journaled HFS directory is so badly corrupted that it can't be repaired by Disk Utility, then the volume should be reformatted and restored from backup, which has the same effect as running DW, but is probably faster and doesn't cost $99.

  • Message via SM59 "HTTP connection to external partner" not sent to partner

    I have a scenario where I am supposed to send a message to an external partner using https. I have created the HTTP connection in SM59 "HTTP connection to external server" and selected the default certificate. This connection is referenced in the http receiver CC in PI 7.1, but when I send the iDoc message from the backend it is not sent out of PI to the external partner.
    There are no apparent errors in the trace files in SMICM on the PI system, but our firewall guys say, that they cannot see the outgoing call in our firewall and the external partner cannot see the message either.
    There is connection to the external server from the PI server, which has been confirmed by a telnet connection.
    We think that there might be a problem on our web server, but we are not sure.
    We have previously succeeded in calling an other server at the external partner from the PI system using a different client certificate. When we do a connection test in SM59 we get an error 500 but the external partner can see the GET request in their firewall.
    Any suggestions are more than welcome
    MIkael

    The error message appears in the call adapter pipeline step before the supposed mapping is supposed to take place. The error message is:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?><!-- Call Adapter --> <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand=""><SAP:Category>XIAdapter</SAP:Category><SAP:Code area="PLAINHTTP_ADAPTER">ATTRIBUTE_CLIENT</SAP:Code><SAP:P1>400</SAP:P1><SAP:P2>ICM_HTTP_CONNECTION_FAILED</SAP:P2><SAP:P3/><SAP:P4/><SAP:AdditionalText/><SAP:Stack>HTTP client code 400 reason ICM_HTTP_CONNECTION_FAILED
    </SAP:Stack><SAP:Retry>A</SAP:Retry></SAP:Error>
    Mikael

  • Apple's External Accessory API

    According to information I gleaned off the internet, Flash Builder 4.5 or 4.6 (hereafter refered to as 4.x) does not support iOS BlueTooth at all, nor does it support BlueTooth in Android or Blackberry except indirectly via Java.
    This is really bad becuase I like Flash Builder 4.x
    But it seems if I want to build a data gatherer app (say for BlueTooth enabled remote monitoring station data grabber app) for these platforms I can do it but only in a piecemeal fashion and I can't use FlashBuilder 4.x
    EG: on IOS:
    Do not use Flash Builder 4.x : I checked and it seems that as of "Apple's External Accessory API" I have to sign up to the  "Made for iPhone" (MfI) program.  I can't do this within Flash Builder
    on Android and blackberry
         Do not use Flash Builder 4.x because I'd only be able to use the Bluetooth via a 3rd party Java API. Use Android SDK and BlackBerry Java
    Please tell me I am wrong! The world is a harsh enough place as it is! I'd love to be able to build an app, distribute it and not have to write it in Java/Android/iOS (let alone windows!) Is this really the case? are there any plans to remedy this in Flash Builder?
    any help would be much appreciated!
    Thank in advance

    You can access such low-level functions using AIR Native Exensions (ANE's). You'd write code in Objective-C (IOS), Java (Android) or C/C++ (PlayBook) to provide the functions that AIR does not provide, then call those functions from AS3.
    http://www.adobe.com/devnet/air/native-extensions-for-air.html

  • CO54: Message is not sent to any destination: Commit Work is getting failed

    Hello,
    While processing the Messages from XFP to SAP Update is getting terminated due to the use of Commit Work. SAP Note 147467 - Update termination when sending process messages has been referred which is for 4.6C, but we are in ECC6.0.
    While processing the message in second iteration Commit Work triggres and Update happens in the data base.
    Following Issue is only concerned with Nested HUs
    T-Code used CO54
    Following are the analysis:
    it looks like u201CCreate and Post a Physical Inventory Docu201D is failing in the initial processing because the inventory doc is created when the Transfer Order to the PSA (or the TO from the PSA) is not yet completed (quant is still locked somehow).
    CO54, process message category=ZHU_CONS: HU to be consumed is a nested pallet (unpacking/ repacking and TOs to/from) and qty to consume is greater that HU qty in SAP (creation of a physical inventory doc is required).
    1. The error occurs while clearing the inventory posting for the physical inventory document.
    2. The surprising factor is the u201CProcess Messageu201D is not processed correctly for the first time.
    3. Indeed it is successfully processed without any error if you do process it second time.
    Error Log from C054 T-Code.
    02.08.2010                                         Dynamic List Display                                                1
    Type
    Message text
    LTxt
    Message category: ZHU_CONS ---    Process message: 100000000000000621   "Send to All Destinations" Is Active
    Message to be sent to destination:
    ZHGI ZPP_0285_XFP_GOODSISSUE Individual Processing Is Active
    => Message will be sent to destination (check log for destination)
    Message category: ZHU_CONS ---    Process message: 100000000000000621   "Send to All Destinations" Is Active
    Message destination ZPP_0285_XFP_GOODSISSUE triggered COMMIT WORK
    Input parameters OK, passed to source field structure
    Step 0: Now checking if scenario with HU
    Step 2: Scenario with HU, Now checking if HU nested
    Step 3: HU nested, checking if HU in repack area
    Step 4: HU not in repack area, moving it to repack area
    HU moved to repack area, TO number 0000000873
    Step 5: Depacking nested HU...
    Nested HU depacked, HU pallet n°: 00176127111000461994
    Steps 6-7: Moving back HUs to supply storage type / bin...
    HU 00376127111000462001 moved back to original area with TO number 0000000875
    Steps 6-7: Moving back HUs to supply storage type / bin...
    No need to move back HU 00176127111000461994 (not in table LEIN)
    Step 8: Checking if HU fully used and quantity matches HU system quantity
    HU not fully used but picked quantity > HU quantity: inventory necessary
    Step 9: Inventory needed, creating physical inventory document...
    Physical inventory document 0000000126 created
    Step 10: Adding weighted quantity on inventory document...
    Weighted quantity entered in document 0000000126
    Step 11: Posting rectification in inventory document 0000000126...
    Physical inventory document 0000000126 rectified
    Error: rectification for doc 0000000126 not updated in DB!
    => Destination ZHGI ZPP_0285_XFP_GOODSISSUE can currently not process the message
    => Message is not sent to any destination
    The errors in SM13 for this contain the program SAPLZPP_0285_HUINV_ENH (creating/changing the HUM physical inventory doc). WM Function module L_LK01_VERARBEITEN is also involved.
    From SM13, it displays the following piece of code in include LL03TF2M (read the LEIN table=Storage Units table):
    WHEN CON_LK01_NACH.
           IF (LEIN-LGTYP = LK01-NLTYP AND         
                 LEIN-LGPLA = LK01-NLPLA) OR
                  NOT P_LEDUM IS INITIAL.
           ELSE.
    Das ist der Fall einer TA-Quittierung wo Von-Hu = Nach-HU ist und sofort die WA-Buchung erfolgt. Dann steht die HU noch auf dem Von-Platz, daher darf hier kein Fehler kommen, sondern es wird ein. Flag gesetzt, daß verhindert daß die LE fortgeschrieben wird.
             FLG_NO_LE_UPDATE = CON_X.
            MESSAGE A558 WITH P_LENUM.
           ENDIF.
    Translation in English of the German text via Google:
    "This is the case where confirmation of a TO source-HU = destination-HU, and now the WA (Good Issue?)- made book. Then, the HU is still on the From-space may therefore come here not a mistake, but it sets a flag that prevents that the LE is updated."
    Thanks and Regards,
    Prabhjot Singh
    Edited by: Prabhjot  Singh on Aug 2, 2010 4:39 PM

    Hope you have carried out following things in Production ( Please refer to SAP help before actually doing it in production).
    1. Transport the predefined characteristics from the SAP reference client (000) to your logon client.
    2. Adopt Predefined Message Categories - In this step, you copy the process message categories supplied by SAP from internal tables as Customizing settings in your plants.

  • Email gets queued, but not sent until I login to my account on the server.

    This is very strange. Let me explain.
    1. Snow Leopard Server 10.6.2 running on an iMac.
    2. I have the Mail Service running on the server. I can receive emails without problems.
    3. Using my Snow Leopard Server email account, I attempt to send an email to another account (e.g. a mac.com email account).
    4a. If I am actively logged into my Snow Leopard Server account *on the iMac* (e.g. via VNC, as long as my desktop is active), the email will arrive successfully. Here are the mail.log messages:
    postfix/smtpd\[69030]: connect from \[External Host Address]
    postfix/smtpd\[69030]: 942814AD55B: client=\[External Host Address], sasl_method=CRAM-MD5, sasl_username=MyUserName
    postfix/cleanup\[69037]: 942814AD55B: message-id=<[email protected]e. com>
    postfix/qmgr\[65313]: 942814AD55B: from=<[email protected]>, size=604, nrcpt=1 (queue active)
    postfix/smtpd\[69040]: connect from localhost\[127.0.0.1]
    postfix/smtpd\[69040]: C611B4AD568: client=localhost\[127.0.0.1]
    postfix/cleanup\[69037]: C611B4AD568: message-id=<[email protected]e. com>
    postfix/smtpd\[69040]: disconnect from localhost\[127.0.0.1]
    postfix/qmgr\[65313]: C611B4AD568: from=<[email protected]>, size=1043, nrcpt=1 (queue active)
    postfix/smtp\[69038]: 942814AD55B: to=<[email protected]>, relay=127.0.0.1\[127.0.0.1]:10024, delay=0.25, delays=0.1/0.01/0/0.14, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as C611B4AD568)
    postfix/qmgr\[65313]: 942814AD55B: removed
    postfix/smtp\[69042]: C611B4AD568: to=<[email protected]>, relay=smtp-mx005.mac.com\[17.148.17.5]:25, delay=0.48, delays=0/0.1/0.14/0.23, dsn=2.5.0, status=sent (250 2.5.0 Ok, envelope id [email protected])
    postfix/qmgr\[65313]: C611B4AD568: removed
    4b. If, however, my Snow Leopard Server account is either logged out, or even just "fast user switched" to the Login Window, the email gets queued, but not sent to the external email address. I get the following four messages in the mail.log file:
    postfix/smtpd\[69030]: connect from \[External Host Address]
    postfix/smtpd\[69030]: B5F574AD582: client=\[External Host Address], sasl_method=CRAM-MD5, sasl_username=MyUserName
    postfix/cleanup\[69037]: B5F574AD582: message-id=<[email protected]e. com>
    postfix/qmgr\[65313]: B5F574AD582: from=<[email protected]>, size=604, nrcpt=1 (queue active)
    4c. The instant I login to my machine at home (e.g. via VNC), the email finishes processing. The below messages are logged, and my external email account receives the email:
    postfix/smtpd\[69160]: connect from localhost\[127.0.0.1]
    postfix/smtpd\[69160]: 20B244AD5B0: client=localhost\[127.0.0.1]
    postfix/cleanup\[69037]: 20B244AD5B0: message-id=<[email protected]e. com>
    postfix/smtpd\[69160]: disconnect from localhost\[127.0.0.1]
    postfix/qmgr\[65313]: 20B244AD5B0: from=<[email protected]>, size=1043, nrcpt=1 (queue active)
    postfix/smtp\[69038]: B5F574AD582: to=<[email protected]>, relay=127.0.0.1\[127.0.0.1]:10024, delay=74, delays=0.1/0/0/73, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 20B244AD5B0)
    postfix/qmgr\[65313]: B5F574AD582: removed
    postfix/smtp\[69163]: 20B244AD5B0: to=<[email protected]>, relay=smtp-mx006.mac.com\[17.148.17.6]:25, delay=0.49, delays=0.09/0.01/0.15/0.25, dsn=2.5.0, status=sent (250 2.5.0 Ok, envelope id [email protected])
    postfix/qmgr\[65313]: 20B244AD5B0: removed
    I'm very much at a loss here. It's as if the act of logging out (or fast user switching to the Login Window) suspends some process that is required for my email to process. But .... why?
    Any ideas? Any additional information I can provide to help figure this out? Fwiw, I used to run Tiger Server (never tried Leopard Server) and never had this problem.
    Rob

    Looks to me like the anti-virus scanner, amavis. The clue is the line:
    postfix/smtp[69038]: 942814AD55B: to=<[email protected]>, relay=127.0.0.1\[127.0.0.1\]:10024, delay=0.25, delays=0.1/0.01/0/0.14, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as C611B4AD568)
    where the 10024 is the default port that Amavis runs on. Postfix is configured to pass mail through this port, and queues the mail until Amavis is available.
    My guess, therefore, is that Amavis is set to run under your account rather than under the system, which is why it only runs when you're logged in. Off hand I have no idea how you managed this and that makes it hard to work out how to fix it. I'd start by looking for org.amavis.amavisd.plist in /System/Library/LaunchDaemons, /Library/LaunchDaemons and ~/Library/LaunchDaemons (it should be in the former, but if its in the latter that could explain it.

  • I can't figure out how to log off of my daughter's iTunes account that has been loaded to my PC.  When I want to sync my iPhone, I get her data, not mine.

    I can't figure out how to log off of my daughter's iTunes account that has been loaded to my PC.  When I want to sync my iPhone, I get her data, not mine.

    Hi, Abril_Perez17.
    This may be related to a new feature embedded in iOS7 that shows all purchased music by default.  Go to Settings > Music, then turn off Show All Music.  See if the issue ceases once the feature has been disabled.  This information is located on page 63 of the user guide below. 
    iPhone User Guide
    Regards,
    Jason H. 

  • How to get a error message when sms is not sent to a mobile no.

    Scenario: once po is finally released sms is sent to the respective vendor.This has been done. But, Now the client want to see the error details(i.e, the mobile no. to whom sms i s sent) if the sms is not sent to any mobile no. and also wants a z program through which they can schedule the background job of resending the sms to those no. who have not received.
    As i tried a lot with this but unable to go ahead, so plz help me <removed by moderator>
    TABLES:LFA1.
    DATA : WA_FINAL  LIKE ZME_EKKO_RLS ,
          IT_FINAL  TYPE STANDARD TABLE OF ZME_EKKO_RLS.
    DATA GV_MSG TYPE STRING.
    DATA GV(16) TYPE C.
    DATA  : GV_RETURN  TYPE STRING.
    DATA: HTTP_CLIENT TYPE REF TO IF_HTTP_CLIENT .
    DATA: WF_STRING TYPE STRING ,
    RESULT TYPE STRING ,
    R_STR TYPE STRING .
    DATA: RESULT_TAB TYPE TABLE OF STRING.
    *BREAK-POINT.
    IF SY-TCODE = 'ME29N'.
      IF  SY-UCOMM = 'MESAVE' AND I_EKKO-PROCSTAT = '05'.
        SELECT * FROM ZME_EKKO_RLS INTO TABLE IT_FINAL
           WHERE  EBELN = I_EKKO-EBELN .
        IF NOT  IT_FINAL[] IS INITIAL .
          LOOP AT IT_FINAL INTO WA_FINAL .
            IF WA_FINAL-SSTAT = '02' .
              CONTINUE.
            ELSEIF  WA_FINAL-SSTAT = '01' .
              SELECT SINGLE * FROM LFA1 WHERE LIFNR = WA_FINAL-LIFNR.
              IF SY-SUBRC = 0.
                GV = LFA1-TELF1.
              ENDIF.
              CLEAR GV_MSG.
              CONCATENATE 'Dear Sir/Madam, PO No:' WA_FINAL-EBELN ' Dtd:' I_EKKO-BEDAT ' with reference to vendor no:' WA_FINAL-LIFNR 'has been released on you''.' 'Detail hardcopy will be sent to you soon' INTO GV_MSG.
              CLEAR WF_STRING.
              CONCATENATE
              'http://182.18.143.30/sendsms.php?username=edhik&password=194385&'
              'sender=TSIL&mobile='
              GV
              '&type=1&message='
              GV_MSG
              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.
    *if sy-subrc = 0.
    *call method http_client->get_last_error
    *importing
    *code =
    *message = gv_errortext.
    *endif.
              CLEAR RESULT .
              RESULT = HTTP_CLIENT->RESPONSE->GET_CDATA( ).
              REFRESH RESULT_TAB .
              SPLIT RESULT AT CL_ABAP_CHAR_UTILITIES=>CR_LF INTO TABLE RESULT_TAB .
              REFRESH RESULT_TAB .
              SPLIT RESULT AT CL_ABAP_CHAR_UTILITIES=>CR_LF INTO TABLE RESULT_TAB .
              LOOP AT RESULT_TAB INTO R_STR.
                CONCATENATE R_STR SPACE(1) INTO GV_RETURN.
               write:/ r_str.
              ENDLOOP .
              IF  NOT GV_RETURN IS INITIAL .
                UPDATE  ZME_EKKO_RLS
                       SET: SMSTX = GV_MSG ,
                             sstat = '01'
                   WHERE EBELN = WA_FINAL-EBELN .
                IF SY-SUBRC = 0 .
                  COMMIT WORK .
                ENDIF.
              ENDIF .
            ENDIF .
          ENDLOOP.
        ENDIF .
      ENDIF.
    ENDIF .
    Edited by: Vinod Kumar on Aug 1, 2011 2:58 PM

    Hi 
    when you call the webservce to send the sms using the method if it is successful it will return as success and if any issue it will raise the error which you have to handle, but it will not give you confirmation wether sms is sent ,
    regards
    m.a

Maybe you are looking for

  • My iPad mini won't download or update apps, but my phone will with the same Apple ID

    My iPad is only 1 day old. When I set it up I synced it with my iCloud backup for my phone but the apps wouldn't download. They started to but then they said waiting and would go back to the start over and over again. Then I plugged it into my comput

  • How to setup my iPhone 5 again

    Hello! While setting up my iPhone 5, I accidentally pressed "set up as new" instead of "restore from iTunes". How can I set up my iPhone again or restore it from iTunes using my iPhone 3G's backup? Thank you!

  • Firefox keeps crashing, the error report includes mentions of mswsock.dll being involved.

    I keep getting random crashes, supposedly including mswsock.dll. I checked the forums and found numerous entries, however different users had different solutions to work for them and so far, I haven't found the reason for my problems. Crash reports:

  • Reinstall Photoshop 9 to Mac OSX 10.8.3?

    I get exit code error 7. I tried the "Live Support".  They said they would help me then they said they wouldn't help me and told me to come here. This is a reinstall, from disk, after my hard drive crashed.  I have never had so much trouble with a di

  • TestStand Sequence Thread Termination

    I have created a Sequence which launches a VI to run in a parallel/background thread. This sequence gets called in my Main Sequence. In my Main Sequence, I'm trying to figure out how to terminate the background thread after the main sequence has comp