Break line in sending mail program

Hi All,
I am creating sending mail program, its working fine but  for that i have problem in break line.
my code is below:
doc_chng-obj_descr = 'SAP test mail'.
Mail Contents
     loop at itab..
    CONCATENATE 'sap test mail UPDATED:' ''
  INTO it_objtxt SEPARATED BY space.
  APPEND it_objtxt.
  CONCATENATE 'test1:' SPACE itab-KOKRS
  INTO it_objtxt SEPARATED BY space.
  APPEND it_objtxt.
  CONCATENATE 'test2:' SPACE itab-KSTAR
  INTO it_objtxt SEPARATED BY space.
  APPEND it_objtxt.
  if int = 16.
    CONCATENATE 'test3:' space  itab-objnr
    INTO it_objtxt SEPARATED BY space.
    APPEND it_objtxt.
  endif.
endloop.
output is:
sap test mail
test1:5000
test2:0000600100
test3:371040
sap test mail
test1:5000
test2:0000600100
test3:362040
but i want blank line after 1 entry like below
sap test mail
test1:5000
test2:0000600100
test3:371040
sap test mail
test1:5000
test2:0000600100
test3:362040
so please guide me.... i used skip and new-line statement but its not working...
Thanks in advance
zeni

Add a blank line at the end of the loop.
loop at itab..
CONCATENATE 'sap test mail UPDATED:' ''
INTO it_objtxt SEPARATED BY space.
APPEND it_objtxt.
CONCATENATE 'test1:' SPACE itab-KOKRS
INTO it_objtxt SEPARATED BY space.
APPEND it_objtxt.
CONCATENATE 'test2:' SPACE itab-KSTAR
INTO it_objtxt SEPARATED BY space.
APPEND it_objtxt.
if int = 16.
CONCATENATE 'test3:' space itab-objnr
INTO it_objtxt SEPARATED BY space.
APPEND it_objtxt.
endif.
* Add a blank line
clear lt_objtxt.
append it_objtxt.
endloop.
Regards,
Rich Heilman

Similar Messages

  • Unable to send 'Chinese Character' in plsql send mail program

    Hi All,
    I am sending mail through plsql.
    in mail body, i need to send some chinese character. I have compiled the package in Toad 9.5
    but when i received mail, it is showing just ???????????????.
    Details are as below:
    Application: 12.1.1 ,
    Database : 10g
    Toad 9.5
    how can i send that chinese words in mail? please suggest me.

    Hi;
    I suggest close your issue here as answered than move your issue Forum Home » Database » SQL and PL/SQL which you can get more quick response
    Regard
    Helios

  • Formating possible in sending mail program

    Hi All,
    I am creating report to send a mail to user in this report i want format like uline, vline and table box also like below:
    budget notification
    comapny code   Cost center  Cost element
    001                   375040        6446a7
    can you please guide me if is it possible?
    thanks
    Jigar

    You can pass your BODY data as HTML to have this kind of formatting.
    Like:
    * Message BODY
      WA_OBJTXT-LINE = '<html> <body>'.
      APPEND WA_OBJTXT TO T_OBJTXT.
      WA_OBJTXT-LINE = '<p> List of Test materials </p>'.
      APPEND WA_OBJTXT TO T_OBJTXT.
      WA_OBJTXT-LINE = '<table border = "0"> <tr> <td>_________________</td>'.
      APPEND WA_OBJTXT TO T_OBJTXT.
      WA_OBJTXT-LINE = '</tr> </table>'.
      APPEND WA_OBJTXT TO T_OBJTXT.
      WA_OBJTXT-LINE = '<p> </p>'.
      APPEND WA_OBJTXT TO T_OBJTXT.
      WA_OBJTXT-LINE = '<table border = "1"> '.
      APPEND WA_OBJTXT TO T_OBJTXT.
      WA_OBJTXT-LINE = '<tr> <td>Material</td>'.
      APPEND WA_OBJTXT TO T_OBJTXT.
      WA_OBJTXT-LINE = '<td>Description</td> </tr>'.
      APPEND WA_OBJTXT TO T_OBJTXT.
      DO 5 TIMES.
        WA_OBJTXT-LINE = '<tr> <td>TEST</td>'.
        APPEND WA_OBJTXT TO T_OBJTXT.
        CONCATENATE '<td>' SY-ABCDE '</td> </tr>' INTO WA_OBJTXT-LINE.
        APPEND WA_OBJTXT TO T_OBJTXT.
      ENDDO.
      WA_OBJTXT-LINE = '</table>'.
      APPEND WA_OBJTXT TO T_OBJTXT.
      WA_OBJTXT-LINE = '</body> </html> '.
      APPEND WA_OBJTXT TO T_OBJTXT.
    * packing data 
      DESCRIBE TABLE T_OBJTXT      LINES W_TAB_LINES.
      WA_OBJPACK-HEAD_START = 1.
      WA_OBJPACK-HEAD_NUM   = 0.
      WA_OBJPACK-BODY_START = 1.
      WA_OBJPACK-BODY_NUM   = W_TAB_LINES.
      WA_OBJPACK-DOC_TYPE   = 'HTML'.   "<<<
    Regards,
    Naimesh Patel

  • Apply color in send mail body part

    Hi SAP Gurs,
    I am creating program for sending mail to user.. in that mail i so many header and line item are there, i want to apply color or bold, italic format in body part.... so its look like seprate in body part
    So is there any possibilty to apply color or bold words in mail body part?
    Please help me......
    Thanks zeni

    You can use the HTML text in the Message body part to get the Colors, Bold, Italics like effect in the mail.
    Please refer my answer in this post.
    formating possible in sending mail program
    Regards,
    Naimesh Patel

  • Send e-mail with a file as attachment - Break line problems

    Hi
    I use the function SO_NEW_DOCUMENT_ATT_SEND_API1 to send an e-mail from ABAP program.
    With SAP4.5B, all work good, but since we have 4.6C, the attached file is malformatted.
    An automatic CRLF break line is generated all 1022 char!
    The eattachment is create from content of internal table with a line of 255 char.
    How can I avoid the automatic CRLF char or how can I to send a good file ?
    Thank

    Hi,
    look here:
    Re: How to email an attachment with more than 255 characters?
    Andreas

  • Problem in sending mails from SAP-line breaks in lotus

    Hi Gurus,
    I have a very peculiar issue with external mail send from SAP to Lotus Notes.
    Issue: When a PO is created in SAP a automatic mail will be sent to vendor to his
    Lotus Notes from SAP. Here we are a using a subroutine where the FM
    'SO_NEW_DOCUMENT_SEND_API1' and the content of  the mail is stored in text symbols
    and  then populated to a internal table which will be passed to the above said FM.
    So this is very simple case.
    My problem is now, even though it looks fine in the SOST, when mail is seen in lotus,
    lines of  the mail contents are breaking around 79th or 80th character, eventhough it is more  than
    that while appending to the internal table. I don't understand this at all, why it  is happening?
    Ex: in SOST if we see a line looks like this.
    aaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbnnnnnnnnnn
    but in lotus it breaks and looks like  below:
    aaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbb
    bbbbbbbbbbbnnnnnnnnnn
    Any light can be thrown on this!!!
    Reward is guaranteed for helpful answers!!!!
    -B S B

    How do you connect SAP to the lotus notes email database?  In some installations I have seen this done using Unix Sendmail functionality and this may be causing this result?
    Andrew

  • In my Mail program (4.6), OS10.6.8, can I send bulk email bcc? If so is there a limit to the number of names/addresses that I can send?

    In my Mail program (4.6), OS10.6.8, can I send bulk email bcc? If so is there a limit to the number of names/addresses that I can send?

    To add the BCC field to the message window, create a new message, click the 'three lines' button near the to and from fields & select the 'BCC Address field' or choose the 'customise' option. This button may be a 'gear' on the older OS (I don't recall for 10.6.8 Mail).
    The BCC field is more likely to be limited by the email server than Mail app. If you add hundreds of addresses (or use large groups with many addresses) the email server may assume you are sending spam. Sometimes it causes the server to drop the message or bounce them, different providers also have different rules, so you need to use bcc & ccc with care.
    If you plan on doing mass mailing you would be better with a service that handles it correctly for you (i.e. sends multiple messages without using ccc or bcc).

  • Program to send mails from an ABAP program

    Hello,
           I found the following program on the internet. When i run it i get the status as mail sent, but actually the mail is not delivered to the recipients email address. If i check tcode SBWP, a copy of the sent mail sits in outbox even though it is not actually delivered to the receivers. The domain name is set properly in tcode SCOT. Any attempt to send mail directly using tcode SBWP  works fine and a copy of the mail goes in outbox. However mails from the program only go in outbox but are not actually sent.Pls help. The program is as under
    REPORT ZSENDEXTERNAL.
    DATA: OBJPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
    DATA: OBJHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
    DATA: OBJBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: OBJTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: RECLIST   LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
    DATA: DOC_CHNG  LIKE SODOCCHGI1.
    DATA: TAB_LINES LIKE SY-TABIX.
    Creation of the document to be sent
    File Name
    DOC_CHNG-OBJ_NAME = 'SENDFILE'.
    Mail Subject
    DOC_CHNG-OBJ_DESCR = 'Send External Mail'.
    Mail Contents
    OBJTXT = 'Minimum bid : $250000'.
    APPEND OBJTXT.
    OBJTXT = 'A representation of the pictures up for auction'.
    APPEND OBJTXT.
    OBJTXT = 'was included as attachment.'.
    APPEND OBJTXT.
    DESCRIBE TABLE OBJTXT LINES TAB_LINES.
    READ TABLE OBJTXT INDEX TAB_LINES.
    DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
    CLEAR OBJPACK-TRANSF_BIN.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    OBJPACK-DOC_TYPE = 'RAW'.
    APPEND OBJPACK.
    Creation of the document attachment
    (Assume that the data in OBJBIN is in BMP format)
    *OBJBIN = ' \O/ '. APPEND OBJBIN.
    *OBJBIN = ' | '. APPEND OBJBIN.
    *OBJBIN = ' / \ '. APPEND OBJBIN.
    *DESCRIBE TABLE OBJBIN LINES TAB_LINES.
    *OBJHEAD = 'PICTURE.BMP'.
    *APPEND OBJHEAD.
    Creation of the entry for the compressed attachment
    *OBJPACK-TRANSF_BIN = 'X'.
    *OBJPACK-HEAD_START = 1.
    *OBJPACK-HEAD_NUM = 1.
    *OBJPACK-BODY_START = 1.
    *OBJPACK-BODY_NUM = TAB_LINES.
    *OBJPACK-DOC_TYPE = 'BMP'.
    *OBJPACK-OBJ_NAME = 'PICTURE'.
    *OBJPACK-OBJ_DESCR = 'Representation of object 138'.
    *OBJPACK-DOC_SIZE = TAB_LINES * 255.
    *APPEND OBJPACK.
    Completing the recipient list
    RECLIST-RECEIVER = 'email addr'.
    RECLIST-REC_TYPE = 'U'.
    APPEND RECLIST.
    *RECLIST-RECEIVER = 'SAPUSERNAME'.
    *RECLIST-REC_TYPE = 'P'.
    *APPEND RECLIST.
    Sending the document
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
       DOCUMENT_DATA = DOC_CHNG
       PUT_IN_OUTBOX = 'X'
    TABLES
       PACKING_LIST = OBJPACK
       OBJECT_HEADER = OBJHEAD
       CONTENTS_BIN = OBJBIN
       CONTENTS_TXT = OBJTXT
       RECEIVERS = RECLIST
    EXCEPTIONS
       TOO_MANY_RECEIVERS = 1
       DOCUMENT_NOT_SENT = 2
       OPERATION_NO_AUTHORIZATION = 4
    OTHERS = 99.
    CASE SY-SUBRC.
       WHEN 0.
       WRITE: / 'Result of the send process:'.
    LOOP AT RECLIST.
       WRITE: / RECLIST-RECEIVER(48), ':'.
       IF RECLIST-RETRN_CODE = 0.
          WRITE 'The document was sent'.
       ELSE.
          WRITE 'The document could not be sent'.
    ENDIF.
    ENDLOOP.
    WHEN 1.
       WRITE: / 'No authorization for sending to the specified number',
                'of recipients'.
    WHEN 2.
       WRITE: / 'Document could not be sent to any recipient'.
    WHEN 4.
       WRITE: / 'No send authorization'.
    WHEN OTHERS.
       WRITE: / 'Error occurred while sending'.
    ENDCASE.

    Hi,
    DATA: l_send_request TYPE REF TO cl_bcs,         " Send request
          l_body      TYPE bcsy_text,                " Mail body
          l_attach    TYPE bcsy_text,                " Attachment
          wa_text     TYPE soli,                     " Work area for attach
          l_document  TYPE REF TO cl_document_bcs,   " Mail body
          l_sender    TYPE REF TO if_sender_bcs,     " Sender address
          l_recipient TYPE REF TO if_recipient_bcs,  " Recipient
          l_size      TYPE sood-objlen,              " Size of Attachment
          c_tab       type abap_char1  value
                           cl_abap_char_utilities=>horizontal_tab,
          l_lines     TYPE i,                        " Lines count
          l_email     type ad_smtpadr,               " Email ID
          l_extension type soodk-objtp value 'OTF'.  " TXT format
      wa_text  = 'Contents'.
      APPEND wa_text  TO l_body.
      CLEAR wa_text .
    l_send_request = cl_bcs=>create_persistent( ).
    Craete document for mail body
    l_document = cl_document_bcs=>create_document(
                 i_type    = 'RAW'
                 i_text    = l_body
                 i_subject = 'BI PC Log' ).
    Add the document to send request
    CALL METHOD l_send_request->set_document( l_document ).
    Sender addess
    l_sender = cl_sapuser_bcs=>create( sy-uname ).
    CALL METHOD l_send_request->set_sender
      EXPORTING
        i_sender = l_sender.
    Recipient address
    l_email =<ur_emailid>.
    l_recipient = cl_cam_address_bcs=>create_internet_address( l_email ).
    Add recipient address to send request
    CALL METHOD l_send_request->add_recipient
      EXPORTING
        i_recipient  = l_recipient
        i_express    = 'X'
        i_copy       = ' '
        i_blind_copy = ' '
        i_no_forward = ' '.
    Trigger E-Mail immediately
    l_send_request->set_send_immediately( 'X' ).
    Send mail
    CALL METHOD l_send_request->send( ).
    COMMIT WORK.
    Regards,
    KC

  • Subject line 'space' character is lost when sending mail?

    Hi,
    I'm using JavaMail, and when sending a mail with a subject line that is longer than 62 characters, the last space before the 63rd character becomes a linefeed. This means that when the recipient receives the e-mail, the space in the subject line is actually dropped (becomes a linefeed).
    For example. I send an email with the following subject line: "New User Setup [ITNUS-0005] User Setup Progress Report for: Louise Gans".
    The recipient will receive the following subject: "New User Setup [ITNUS-0005] User Setup Progress Report for: LouiseGans".
    Note the missing space between "Louise Gans". Perhaps someone could test sending out that subject line, and see if they get the same problem?
    Looking at the message source on the recipient client, it shows a line feed / new line where that space is supposed to be.
    Using MS Outlook or GroupWise or another mail client, the subject lines gets sent through perfectly using the same mail server (Groupwise Internet Agent 7.0.3), but using JavaMail to send the mail through that mail server gives me the space problem.
    Can anybody shed some light on why this is happening? I would really appreciate the help.
    Here is an example of the code I am testing with:
    public class SendHtml {
         public static void main(String[] argv) {
              new SendHtml();
         public SendHtml() {
              String  to = "[email protected]";
              String subject = "New User Setup [ITNUS-0005] User Setup Progress Report for: Louise Gans";
              String from = "[email protected]";
              String cc = null;
              String bcc = null;
              String url = null;
              String mailhost = "mail.server.co.za";
              String mailer = "sendhtml";
              String protocol = null, host = null, user = null, password = null;
              String record = null;     // name of folder in which to record mail
              boolean debug = false;
              BufferedReader in =
                   new BufferedReader(new InputStreamReader(System.in));
              try {
                   Properties props = System.getProperties();
                   if (mailhost != null) {
                        props.put("mail.smtp.host", mailhost);
                   // Get a Session object
                   Session session = Session.getInstance(props, null);
                   // construct the message
                   Message msg = new MimeMessage(session);
                   if (from != null) {
                        msg.setFrom(new InternetAddress(from));
                   else {
                        msg.setFrom();
                   msg.setRecipients(Message.RecipientType.TO,
                             InternetAddress.parse(to, false));
                   if (cc != null)
                        msg.setRecipients(Message.RecipientType.CC,
                                  InternetAddress.parse(cc, false));
                   if (bcc != null)
                        msg.setRecipients(Message.RecipientType.BCC,
                                  InternetAddress.parse(bcc, false));
                   msg.setSubject(subject);
                   collect(in, msg);
                   msg.setHeader("X-Mailer", mailer);
                   msg.setSentDate(new Date());
                   // send the thing off
                   Transport.send(msg);
                   System.out.println("\nMail was sent successfully.");
                   // Keep a copy, if requested.
                   if (record != null) {
                        // Get a Store object
                        Store store = null;
                        if (url != null) {
                             URLName urln = new URLName(url);
                             store = session.getStore(urln);
                             store.connect();
                        } else {
                             if (protocol != null)          
                                  store = session.getStore(protocol);
                             else
                                  store = session.getStore();
                             // Connect
                             if (host != null || user != null || password != null)
                                  store.connect(host, user, password);
                             else
                                  store.connect();
                        // Get record Folder.  Create if it does not exist.
                        Folder folder = store.getFolder(record);
                        if (folder == null) {
                             System.err.println("Can't get record folder.");
                             System.exit(1);
                        if (!folder.exists())
                             folder.create(Folder.HOLDS_MESSAGES);
                        Message[] msgs = new Message[1];
                        msgs[0] = msg;
                        folder.appendMessages(msgs);
                        System.out.println("Mail was recorded successfully.");
              } catch (Exception e) {
                   e.printStackTrace();
         public void collect(BufferedReader in, Message msg)
         throws MessagingException, IOException {
              String line;
              String subject = msg.getSubject();
              StringBuffer sb = new StringBuffer();
              sb.append("<HTML>\n");
              sb.append("<HEAD>\n");
              sb.append("<TITLE>\n");
              sb.append(subject + "\n");
              sb.append("</TITLE>\n");
              sb.append("</HEAD>\n");
              sb.append("<BODY>\n");
              sb.append("<H1>" + subject + "</H1>" + "\n");
              sb.append("</BODY>\n");
              sb.append("</HTML>\n");
              msg.setDataHandler(new DataHandler(
                        new ByteArrayDataSource(sb.toString(), "text/html")));
    }

    The header is being "folded" as described in RFC 2822 section 2.2.3.
    The folding doesn't lose the space if unfolding is done properly.
    Perhaps the recipient mail program isn't handling unfolding properly?
    If so, please report the bug to the owner of that program.
    If you need to work around such a buggy program, you can set the
    System property "mail.mime.foldtext" to "false" to disable all folding
    in JavaMail.

  • Line Alignment in sending mail

    Hi All,
    I am craeting program for sending mail, its working fine but i want some line alignment in the body part. my output is:
    Cost center | Company Code | Cost element | Description
    159040       | 040                  | 0000600100   | SALARIES
    159040       | 040                  | 6475FC         | Contract
    361001       | 001                  | 0000600100   | SALARIES
    i want output like below: when same cost center are there
    Cost center | Company Code ption
    159040       | 040
    Cost element | Description
    0000600100   | SALARIES
    6475FC         | Contract
    Cost center | Company Code | Cost element | Description
    361001       | 001                  | 0000600100   | SALARIES 
    Can you please guide me
    Thanks
    Jigar

    Cost center | Company Code ption
    159040 | 040
    Cost element | Description
    0000600100 | SALARIES
    6475FC | Contract
    Cost center | Company Code | Cost element | Description
    361001 | 001 | 0000600100 | SALARIES
    instead of the above you can go for generalized like below ..
    Cost center | Company Code ption
    159040 | 040
    Cost element | Description
    0000600100 | SALARIES
    6475FC | Contract
    Cost center | Company Code
    361001 | 001 |
    Cost element | Description
    0000600100 | SALARIES
    data: wa_tab like line of it_tab.
    sort it_tab by costcenter companycode.
    loop at it_tab.
      wa_tab = it_tab.
      at new companycode.
       write:/ ' Cost center | Company Code '.
       write:/ wa_tab-costcenter,
                 wa_tab-companycode.
        skip 2 lines.
       write:/ ' Cost element | Description'.
      endat.
      write:/ wa_tab-costelement,
                wa_tab-description.
    endloop.

  • Send mail through dynamic action, but the subject line and content is blank

    Hi all,
    I'm facing one problem on sending mail throught dynamic action.
    Whenever a new employee is hired, the system will trigger a mail to the administrator.
    The mail can successfully reach the email address. But the title and the content of the mail are missing. I can receive an email with a PDF attchment. But when I open this PDF file, it's blank inside.
    In t-code "SO10", I created a new mail text with name of Z_MAIL, for my mail, insteading of using the SAP standard one.
    When I using the SAP standard mail text, it works and I can see the content. But even I copy and paste the exact the content of the standard one to my own new mail text, it will not work.
    And I have to use my own customized mail text. So, is there any one knows about this issue? Any more setting I should do? Or is there some tricks?

    Hi,
       I feel that something will be misiing in the coding.Even i faced the same problem earlier.for me it was text file as an attachment ,file was receiving but no data...the problem was i forget to add one option in objpack-head.
       R u using the FM - SO_NEW_DOCUMENT_ATT_SEND_API1??
    If so pls C the below codes for text file as an attachment.
    DATA: objpack LIKE sopcklsti1 OCCURS  2 WITH HEADER LINE.
      DATA: objhead LIKE solisti1   OCCURS  1 WITH HEADER LINE.
      DATA: objbin  LIKE solisti1   OCCURS 10 WITH HEADER LINE.
      DATA: objtxt  LIKE solisti1   OCCURS 10 WITH HEADER LINE.
      DATA: reclist LIKE somlreci1  OCCURS  5 WITH HEADER LINE.
      DATA: doc_chng LIKE sodocchgi1.
      DATA: tab_lines LIKE sy-tabix.
    Creating the document to be sent
      doc_chng-obj_name = 'MESSAGE'.
      doc_chng-obj_descr = 'ZHRI_GARN_EPC_COMM'.
      objtxt = 'Program ZHRI_GARN_EPC_COMM has been executed successfully'.
      APPEND objtxt.
      objtxt = 'Error records passed to BDC session XPHRGARN01'.
      APPEND objtxt.
      DESCRIBE TABLE objtxt LINES tab_lines.
      READ TABLE objtxt INDEX tab_lines.
      doc_chng-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
    Creating the entry for the compressed document
      CLEAR objpack-transf_bin.
      objpack-head_start = 1.
      objpack-head_num   = 0.
      objpack-body_start = 1.
      objpack-body_num   = tab_lines.
      objpack-doc_type   = 'RAW'.
      APPEND objpack.
    Entering names in the distribution list
      LOOP AT se_tech.
        reclist-receiver = se_tech-low.
        reclist-rec_type = 'U'.
        APPEND reclist.
      ENDLOOP.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = doc_chng
          put_in_outbox              = 'X'
          commit_work                = 'X'
        TABLES
          packing_list               = objpack
          object_header              = objhead
          contents_bin               = objbin
          contents_txt               = objtxt
          receivers                  = reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          OTHERS                     = 99.
    Hope this will help u.
    Regards,
    Manoj.

  • Mail program not recieiving messages, but I can send. I use .Mac to get mai

    My Mail program is not receiving messages all of a sudden. But I can send.
    I have to get my mail at .Mac. Just tried fixing permissions. No luck yet. I just sent myself an email and it came into .Mac but not to my Mail program.
    What have I done?
    PowerBook G4   Mac OS X (10.4.9)  

    You're welcome.
    More than likely .Mac but to confirm, at the menu bar for the Mail application go to Mail > Preferences > Accounts.
    Under the Account Information tab for your .Mac account preferences, what is shown next to Account Type?
    If .Mac, a .Mac type account with the Mail application is really an IMAP account and behaves in the same way so try using the Rebuild Mailbox function on the Inbox mailbox for your .Mac account.
    If there is a black triangle to the left of Inbox in the mailboxes drawer, select it pointing it down to reveal your .Mac account named Inbox mailbox. Select the mailbox and at the menu bar go to Mailbox and select Rebuild.
    All messages in the message list for the account's Inbox mailbox will disappear temporarily and the mailbox will be resynchronized with the server.

  • Bursting Program not sending mails

    Bursting Program is not sending mails , we have checked everything and looking good , not generating logs.
    XML Publisher: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOBURSTREP module: XML Publisher Report Bursting Program
    +---------------------------------------------------------------------------+
    Current system time is 14-JAN-2014 07:50:56
    +---------------------------------------------------------------------------+
    XML/BI Publisher Version : 5.6.3
    Request ID: 101436869
    All Parameters: Dummy for Data Security=Y:ReportRequestID=101245852:DebugFlag=Y
    Report Req ID: 101245852
    Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request information
    Node Name:RPC5150
    Preparing parameters
    null output =/u000/oracle/PTCCON/apps/apps_st/appl/xdo/12.0.0/out/ESCM1/EM185082.101436869
    inputfilename =/u000/oracle/PTCCON/apps/apps_st/appl/ncr_custom/ncrx/12.0.0/out/ESCM1/EM185082.101245852
    Data XML File:/u000/oracle/PTCCON/apps/apps_st/appl/ncr_custom/ncrx/12.0.0/out/ESCM1/EM185082.101245852
    Set Bursting parameters..
    Temp. Directory:/tmp
    [011414_075107900][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.130 - Production
    [011414_075107910][][STATEMENT] setOAProperties called..
    Bursting propertes.....
    {user-variable:cp:territory=US, user-variable:cp:ReportRequestID=101245852, user-variable:cp:language=en, user-variable:cp:responsibility=51687, user-variable.OA_MEDIA=http://ESPROD.daytonoh.ncr.com:8008/OA_MEDIA, burstng-source=EBS, user-variable:cp:DebugFlag=Y, user-variable:cp:parent_request_id=101245852, user-variable:cp:locale=en-US, user-variable:cp:user=EM185082, user-variable:cp:application_short_name=XDO, user-variable:cp:request_id=101436869, user-variable:cp:org_id=152, user-variable:cp:reportdescription=NCR_MFS_ACKNWLG_PDF_REP, user-variable:cp:Dummy for Data Security=Y}
    Start bursting process..
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 14-JAN-2014 07:51:08
    +---------------------------------------------------------------------------+

    I was troubleshooting my own issue noted above and tried to send the attachments via gmail's web interface (bypassing Apple Mail). This time, gmail provided an error message stating that the file contained a virus.
    Since it was a zip of several Word docs, I saved them as PDFs and then rezipped, and Apple Mail sent them off like a champ.
    Evidently, Mail does not have a method for relaying the precise nature of the error message that gmail sends (in this case that the attachment had what gmail thought was a virus). This would be a prime area for some software developers to tackle on a future version of Mail.
    By the way, the files almost certainly do not contain viruses; they are extremely old Word Docs that have been on my successive Mac hard drives for at least 9 years. Too old a format for gmail to recognize?
    Hope this helps someone who may be having the same trouble.

  • My Mac Mail program no longer stores any files in my Sent folder.  When I try to send an e-mail it just spins.  What's up?

    My Mac Mail program no longer stores any files in my Sent folder.  Moreover, the sent folder (off to the left) contains a highlighted "1" as if something is in there.
    When I try to send an e-mail message, it simply spins.
    This is new behavior for my Laptop of three years.  Usually, I have lots of messages in my Sent folder and can easily send e-mail.
    I see no discussion forum for "Mail" or for "e-mail" so I raise this question here.
    I would appreciate any help anyone might offer. 
    Thanks.
    norman from akron

    Thank you for your reply.  Turns out, re-started my Macbook later and the problem disappeared.  Could this have helped?

  • My Mail program has gone south on Leopard on my 27-month old Macbook. I can't send, even though the server details are correct. I tried reinstalling from the install DVD - but no go: no longer compatible, evidently.. What to do?

    My Mail program has gone south on Leopard on my 27-month old Macbook. I can't send, even though the server details are correct. I tried reinstalling the Mail program from the install DVD, but no go; apparently that two-year old Mail is no longer compatible with my up-to-date Leopard. I tried deleting the account (hotmail) from Mail and setting up a different account (Yahoo). After loading all the inbox two things happened: first, I still couldn't send, and second, when I closed the Mail window the whole inbox then disappeared and doesn't come back. Although I couldn't reinstall the Mail program from the install DVD, would it still be possible to reinstall the whole system from that DVD? If I do, will I lose files or will there be another problem since that DVD is now over two years old?
    Thanks for any suggestions; they will be much appreciated.
    P.S. I've just noticed that now I can't change the desktop picture: I go through the motions in Preferences, but the new picture doesn't appear on the desktop. Is there a systemic problem?

    You are waiting for an apology to something that happened over a year ago? Really? This is why there is a manager in the store. You have a problem with an employee you speak to the manager. Just like you did on the phone. You would have gotten your apology in July 2013.
    Here is the information about your upgrade fee.
    Upgrade Fee
    It is because when you have a problem you (customers) go running to the store and want to take up the time of the reps to fix it. Other carriers have third parties that deal with technical support and those locations are few and far between. VZW provides this directly through their stores. Also, when you subsidize a $650 and pay $200 VZW has to pay $400. Your monthly service fee doesn't begin to scratch the surface of paying that back. Not with all the money that is put into the network and its improvements.
    Then over a year later you get someone on the phone who apologized and offered to waive the fee on your phone and you didn't take it? That offer won't come down the pike again.
    One thing you should know is that all these employees are people and as such they sometimes come off cross. I doubt that you speak to everyone so sweetly all the time. Cut them a little slack and put this whole thing behind you after 15 months. Either upgrade with VZW or move on.

Maybe you are looking for

  • Help needed for data updation in User Defined Tables

    Hello Experts, I am developing one add-on in SAP B1 8.8 to input data in a User Defined Table described as under Table Name DriverMst UDT Type is No Object Description Stores the Driver master data which are used to get reference in Sale Delivery For

  • ITunes crashes immediatly on opening

    I am in quite a lot of confusion, so any help would be appreciated. On two PC's in my house, iTunes always crashes on opening. There is notime at all in which the iTunes window is open. There has been no change in either computer that could have alte

  • CS 3  - CS 4 .ai version problems.

    all CS 3 illustrator files saved with .ai extension considered damaged and unopenable from external drive or hard drive by CS 4. anyone have suggestions or similar problems?

  • Image panel Photoshop CC (for old designer)

    Today I realized that they are not very smart; i'm an old designer (60!!) and i do a Creative Cloud Subscription. My problem is to save a copy of some images with 150 ppi + 450 ppi. How to do this with new Image panel of Photoshop CC? Before i always

  • Importing errors

    Oracle 9i Windows 2003 I have exported a schema using the schema name (SCDAT) from our PROD instance, and imported it to our TEST instance and granted username (SCDAT) SYSDBA priviledge. the export statement D:\>exp scdat/password@test file='D:\data_