Problem with sending sms with FM SO_NEW_DOCUMENT_SEND_API1

Hi All ,
I'm facing a peculiar issue where the SMS is being sent to one document type but not for second document type.
When the code is executed at this FM SO_NEW_DOCUMENT_SEND_API1  in the working scenario  I see that table SOSC is updated with transmission method  as 'PAG' (pager)and can see the entry in transaction SOST.
For the scenario not working this table is not being updated. When we checked the configuration it is same.
I've checked some threads where in commit work was placed after this FM. I tried this option but I see that this table is not getting updated with the transmission record entry.
It will be great if anyone has faced this issue and let us know what we are missing.
Any OSS note or hint in resolving this issue is appreciated
Thanks for your time.
Br,
Vijay

Solved the problem myself.
After this FM call the report with below code
SUBMIT rsconn01
    WITH mode   = 'INT'
    WITH output = ' '
    AND RETURN.
This ensures  sosc entry in the table for the request triggered.So the message SO 672 is ruled out.
Br,
VJ

Similar Messages

  • Problem in sending SMS?????????

    hi all,
    i have problem in sending sms using wma.its arises exception about "port format", whats the problem is???? anybody help me??

    firstway
    Please be clear on this. I have not accused you or anyone else of being dishonest. I have merely stated a point of fact, that sending a mail to an unknown recipient is not good policy.
    Forums are anyhow meant for open discussion, not as a gateway to private communication.
    No offence, but my daily schedule is just busy enough to make me not want to engage in Yahoo! or any other chat.
    All the best, Darryl
    ** Did you notice the starting date of this thread?

  • Problem to send sms

    We have made a test application in j2me which sends sms.
    The mobile server is "nokia 6681".
    Following is the result when we send sms to various other mobile
    Nokia 1100 message come but content says 'message can't be displayed'.
    Nokia 3310 sms reaches properly.
    Nokia 3120 sms never reaches and no other customize message come.
    will any body guide us what possiblily is the problem my id:[email protected]

    Hello ,
    I have the same problem, but on the nokia N70 and N90 ;
    the error message displayed is " ... security problem etc.... " but I have disabled all security setting on the phone and my App is compiled with a sign ; I don't understand why the App is run on some phone but doesn't it on nokia N90 e 9300 Communicator.
    Help me please!?

  • Problem in sending SMS via using java communication API

    I need to send SMS via my sony ericsson Z530i. It is connected to the com5 port of my system. I got the following code.
    import java.io.*;
    import java.util.BitSet;
    import javax.comm.*;
    import java.lang.*;
    public class SerialToGsm {
        InputStream in;
        OutputStream out;
        String lastIndexRead;
        String senderNum;
        String smsMsg;
        SerialToGsm(String porta) {
            try {
    //            CommPortIdentifier portId = CommPortIdentifier.getPortIdentifier("com5");
                CommPortIdentifier portId = CommPortIdentifier.getPortIdentifier(porta);
                SerialPort sp = (SerialPort)portId.open("Sms_GSM", 0);
                sp.setSerialPortParams(9600, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
                sp.setFlowControlMode(sp.FLOWCONTROL_NONE);
                in = sp.getInputStream();
                out = sp.getOutputStream();
                // modem reset
                sendAndRecv("+++AT", 30);       // delay for 20 sec/10
                sendAndRecv("AT&F", 30);
                sendAndRecv("ATE0", 30);        // echo off
                sendAndRecv("AT +CMEE=1", 30);  // verbose error messages
                sendAndRecv("AT+CMGF=0", 70);   // set pdu mode
    //            sendAndRecv("AT V1E0S0=0&D2&C1", 1000000);
            catch (Exception e) {
                System.out.println("Exception " + e);
             System.exit(1);
        private String sendAndRecv(String s, int timeout) {
            try {
                // clean serial port input buffer
                in.skip(in.available());
                System.out.println("=> " + s);
                s = s + "\r";         // add CR
                out.write(s.getBytes());
                out.flush();           
                String strIn = new String();
                for (int i = 0; i < timeout; i++){
                    int numChars = in.available();
                    if (numChars > 0) {
                        byte[] bb = new byte[numChars];
                        in.read(bb,0,numChars);
                        strIn += new String(bb);
                    // start exit conditions
                    if (strIn.indexOf(">\r\n") != -1) {
                        break;
                    if (strIn.indexOf("OK\r\n") != -1){
                        break;
                    if (strIn.indexOf("ERROR") != -1) { // if find 'error' wait for CR+LF
                        if (strIn.indexOf("\r\n",strIn.indexOf("ERROR") + 1) != -1) {
                            break;                                            
              Thread.sleep(100); // delay 1/10 sec
                System.out.println("<= " + strIn);
                if (strIn.length() == 0) {
                    return "ERROR: len 0";
                return strIn;
            catch (Exception e) {                 
                System.out.println("send e recv Exception " + e);
                return "ERROR: send e recv Exception";
        public String sendSms (String numToSend, String whatToSend) {
            ComputeSmsData sms = new ComputeSmsData();
            sms.setAsciiTxt(whatToSend);
            sms.setTelNum(numToSend);
    //        sms.setSMSCTelNum("+393359609600");  // SC fixed
            String s = new String();
            s = sendAndRecv("AT+CMGS=" + (sms.getCompletePduData().length() / 2) + "\r", 30);
    //        System.out.println("==> AT+CMGS=" + (sms.getCompletePduData().length() / 2));
    //        System.out.println("<== " + s);
            if (s.indexOf(">") != -1) {
    //            s = sendAndRecv(sms.getSMSCPduData() + sms.getCompletePduData() + "\u001A"); // usefull one day?
    //            System.out.println("Inviero questo >>>> " + sms.getCompletePduData());
                   // if this sintax won't work try remove 00 prefix
                s = sendAndRecv("00" + sms.getCompletePduData() + "\u001A", 150);
    //            System.out.println("<== " + s);
                return s;
            else {
                return "ERROR";
        // used to reset message data
        private void resetGsmObj() {
            lastIndexRead = null;
            senderNum = null;
            smsMsg = null;
        public String checkSms (){
            String str = new String();
            String strGsm = new String();                         
            strGsm = sendAndRecv("AT+CMGL=0", 30);  // list unread msg and sign them as read
            // if answer contain ERROR then ERROR
            if (strGsm.indexOf("ERROR") != -1) {
                resetGsmObj();
                return strGsm; // error
            strGsm = sendAndRecv("AT+CMGL=1", 30);  // list read msg
            // if answer contain ERROR then ERROR
            if (strGsm.indexOf("ERROR") != -1) {
                resetGsmObj();
                return strGsm; // error
            // evaluate message index
            if (strGsm.indexOf(':') <= 0) {
                resetGsmObj();
                return ("ERROR unexpected answer");
            str = strGsm.substring(strGsm.indexOf(':') + 1,strGsm.indexOf(','));
            str = str.trim(); // remove white spaces
    //        System.out.println("Index: " + str);
            lastIndexRead = str;
            // find message string
            // look for start point (search \r, then skip \n, add and one more for right char
            int startPoint = strGsm.indexOf("\r",(strGsm.indexOf(":") + 1)) + 2;
            int endPoint = strGsm.indexOf("\r",startPoint + 1);
            if (endPoint == -1) {
                // only one message
                endPoint = strGsm.length();
            // extract string
            str = strGsm.substring(startPoint, endPoint);
            System.out.println("String to be decoded :" + str);
            ComputeSmsData sms = new ComputeSmsData();
            sms.setRcvdPdu(str);
    //        SMSCNum = new String(sms.getRcvdPduSMSC());
            senderNum = new String(sms.getRcvdSenderNumber());
            smsMsg = new String(sms.getRcvdPduTxt());
            System.out.println("SMSC number:   " + sms.getRcvdPduSMSC());
            System.out.println("Sender number: " + sms.getRcvdSenderNumber());
            System.out.println("Message: " + sms.getRcvdPduTxt());
            return "OK";
        public String readSmsSender() {
            return senderNum;
        public String readSms() {
            return smsMsg;
        public String delSms() {  
            if (lastIndexRead != "") {               
                return sendAndRecv("AT+CMGD=" + lastIndexRead, 30);
            return ("ERROR");
    }When i compile, there is no error. But when i execute it, the following error comes:
    E:\java\JavaSmsApi>javac SerialToGsm.java
    E:\java\JavaSmsApi>java SerialToGsm
    Exception in thread "main" java.lang.NoSuchMethodError: main
    What might be the error? Somebody help me. Thanks in advance.

    You are probably trying to run this as a CLDC application instead of a MIDP application (aka a MIDLet). Since CLDC apps start with a main(....) your runtime looks for one but does not find it, hence the error. Please recheck the project configuration.

  • 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.

  • Problem on sending sms in jsp page

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

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

  • Problem while sending SMS

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

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

  • I am having problems with my messaging send duplicates messages

    is there a solution?

    Are you seeing this problem when sending SMS, MMS or iMessages?
    For the first two, you might be seeing a carrier side problem.
    Try the basics, restart and then restore the iPhone. You can also contact your carrier.

  • Problem sending SMS to non iPhone users

    Hi!
    I have this problem when sending SMS to non iPhone users (BB users and simple phone users) they get the message in chunks... For example if I send one message with 131 characters they get the sms in 5 chunks, pieces...
    I deactivated the MMS feature (in case that was that) but the problem persists...
    Any ideas?

    I exchange SMS on a fairly regular basis with non-iPhone users - with those who are also AT&T subscribers and with those who are not, and this has never been reported to me by any non-iPhone user that I exchange messages with.
    Doubtful this is being caused by the iPhone. I suggest calling AT&T technical support to report this and be prepared to answer a question such as which carrier the non-iPhone users are with.

  • Function module to send SMS to a telephone number

    Dear all,
    I am facing the problem to send sms to a perticular user or number. Please let me know is there any function module is present to fulfill the requirement.
    Import.
    telephone number
    user

    hi
    good
    go through this link
    Refer the following blog for sending SMS :
    /people/durairaj.athavanraja/blog/2005/07/12/send-sms-to-india-from-abap
    Also, refer the following links :
    http://help.sap.com/saphelp_nw04/helpdata/en/2b/d925bf4b8a11d1894c0000e8323c4f/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/af/73563c1e734f0fe10000000a114084/frameset.htm
    SMS through SAP
    /people/anilkumar.vippagunta2/blog/2005/07/20/developing-web-application-without-writing-single-line-of-code-my-first-web-log
    thanks
    mrutyun^

  • 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.

  • I have a problem with my iphone 4. My 3G always stays activated but I lose my network signal. The bars all get lost and I'm not able to receive / send sms, mms or phone calls. Could you guys please help me fix this problem? Ios 5.1.1

    I have a problem with my iphone 4. My 3G always stays activated but I lose my network signal. The bars all get lost and I'm not able to receive / send sms, mms or phone calls. Could you guys please help me fix this problem? Ios 5.1.1

    I haven't gotten a new sim card because the problem has been presenting itself in various cards not only mine. So far, all I've done is reset my network settings.
    Last night, I turned off the 3G tab and it had all the signal bars. Today, I did the network reset and it's working apparently. But like I said before, previously the bars just disappear and the iphone only has the 3G activated.

  • Problems with sending SMS from adress book

    Hi all,
    I have a new Kotorola MOTOKRZR K1 here.
    The Bluetooth connection with iMac is ok. I can send data to phone and I can receive data from phone, but I can't send SMS from adress book v4.0.5 (487) to the phone.
    The bluetooth button in adress book is disabled. I can click on this button, but address book open in this case always a dialog: "Pair with bluetooth device".
    When I click on the "pair" button, then I can enter my access code vor the phone.
    It is the access code from Bluetooth Assistant program for the phone.
    my question is, Is here a user, who can send a SMS with MOTOKRZR K1 from adress book?
    With my old Siemens S55 is this no problem.
    Sorry for my very bad english.
    Greetings, Bermd

    did this ever get resolved?

  • Problem with sending sms - nokia x3

    Hello,
    I've got a problem with sending sms in my nokia x3 - actually with recently used number. I sent messages, but the list is the same. There is only one number although I used many more. I removed this number from the list, but is still here. I also tried to turn off the phone and pull out the battery, restart factory setting but there's no change.
    Could somebody help me, please?
    p.s. Sorry, but my english isn't well. I hope the post is understood

    Check if there is any relation with the LOG... When you clear the log.. (selecting ALL).. is it removing details from the RECENTLY USED too...
    To confirm this select Clear Log.. and check if that one no. you are talking about still remains or not.. If its no more there means you must have cleared the log just before using the last no. that is appearing..
    --------------------------------------------------​--------------------------------------------------​--------------------------------------------------​--If you find this helpful, pl. hit the White Star in Green Box...

  • Hi I have iPhone 4 with iOS 6 and a week ago I stop ressiv or send SMS. I tried everything but I still can't send.. I erase the version and all the data on the iPhone and now I can send SMS. But when I'm downloading my buck up the problem happened againI'

    Hi I have iPhone 4 with iOS 6 and a week ago I stop ressiv or send SMS. I tried everything but I still can't send.. I erase the version and all the data on the iPhone and now I can send SMS. But when I'm downloading my buck up the problem happened again
    Please help me cuse I don't know what to do and my cellular company don't have an answer
    Thank u

    I have to ad that its not an easy problem I did all the action in the book.
    It's something with my back up

  • I have problem with sms sending

    i have problem with sms sending

    First don't publish private information like the IMEI number.  Second, why do you think people here can read your mind?  If you have a problem then tell us something about the problem.  We cannot guess at what your problem might be let alone offer a solution.

Maybe you are looking for

  • A portion of my update has stalled

    A portion of my iPad update has been installed and the apps that will not update have been highlighted in gray with a clock symbol.   Turning the ipad off and back on does not help.

  • Downloading flash player to at&t galaxy. phone

    How to download flash player?

  • SAP XI  and SLD

    Hi Everyone I have successfully installed (SAP ABAP+ SAP JAVA and XI) but I don't recall installing SLD during the  WAS 6.4  installation process.  Did I missed  any steps or  how do i verify SLD is successfully installed and configured Thanks again.

  • JAXB mapping of complexType

    Howdy. I'm working with a schema that defines a record element with fields child elements, for example:      <xs:element name="record">           <xs:complexType>                <xs:sequence>                     <xs:element ref="userid"/>            

  • Process chain infopackage not getting executed.

    Hi, We have a process chain in which one of the element for infopackage is yellow for more than last 5 hrs. On checking batch jobs i can see that job is ready but not getting executed. I had gone into infopackage and pressed start but still it is sho