Colored Stripes in body of e-mail

All e-mail recevied via enterprise server contains diagional colored stripes in the message body.  How can I remove them.  Makes it difficult to read the text.
Thanks
Solved!
Go to Solution.

Just a quick note on a couple of things. When I got a new 8110 with OS 4.3 and BES migrated over all my settings and data, I had the colored lines show up because they were set on my old 8100. However, when I went into the Security->General settings enterprise and other were set to "none". Very strange. So I set them to different colors and saved the settings. Then went back in and set them to "none", saved the settings, and they were gone.
Also, I have been using Empower Email viewer for a while and it let's you set the headercolor differently for each email account. It doesn't use those hideous stripes at all and I have the header colors set to be just subtly different between each email account. The background color is the same for all messages and I have it set to a soft complimentary color. All very nice on the eyes. I have the Empower Pro version, which isn't very cheap, but I love being able to add a task or appointment from an email and it also cleans up long URL's, so the colors were a nice added touch to all that.

Similar Messages

  • Cannot Read Body of my Mail on MacBook Pro

    I am using Mail with the latest Mavericks on my MacBook Pro....and it is all updated to the latest software  updates. For the past 5 or 6 days, I cannot read the body of my mail. The headers etc. are visible but in the preview pane below, nothing shows. I think this started because I had left the computer for a few hours and it went to sleep. When I tried to get back on, nothing happened. I pressed the enter and other keys but it still kept 'sleeping'. I finally resorted to turning the power switch off and was presented with this problem. I have searched these forums and though there are a few instances of this, they either seemed to be with older OS systems or on the initial installation of Mavericks....I have had Mavericks since it first came out with no issues.  Also, the majority of these type issues seemed to be with the iPhone or iPad...and I still have not been able to get to the bottom of this. 
    I have tried to Rebuild the mailbox several times but to no avail. Sometimes the Mail also quits unexpectedly and I am given an error statement. Any help will be greatly appreciated. Thank you.
    I have a 2008 MacBook Pro with a 2.53 GHz Intel Core and 8 Gb RAM....and about 40 Gb of free space.

    Humm,
    In the Mail > Preferences I have it set to display in Classic view.
    Side bar or Accounts in-boxes and other folders
    Then a top window of Messages left or new in the In-boxes and the messages being "read" below that.
    There are occasions when deleting a messages in the top window does not automatically select another.
    This can mean nothing displays in the bottom box  (I just can't re-create it right now ).
    If I change to the regular/default view I see the Side Bar still, then the Summary column followed by the Messages column.
    The Summary I have chosen has three Messages related to it.
    In the Messages column I have scrolled the first to reveal the contents but also show the Header of the next.  (I chose to show Full Headers so there is a lot of info here or not only the Sender but the Server(s) it came through to get to me).
    I take you do mean the actual Header to the actual message  (the lower right item in the pic) rather than calling one of the columns "Headers" ?
    7:48 pm      Sunday; August 3, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Pdf as in the body of e-mail.

    Hello experts,
    we are sending a pdf as an attachment of an e-mail.what im trying to do is to send pdf in the body of e-mail.
    i have search and couldnt find any help in the documents or discussions.
    here is my code:
    FORM SEND_MAIL
    DATA: lv_formname TYPE  tdsfname,
             lv_fm_name  TYPE  rs38l_fnam,
             ls_control_parameters TYPE ssfctrlop,
             ls_output_options     TYPE ssfcompop,
             lv_user_settings      TYPE tdbool VALUE 'X',
             ls_job_output_info    TYPE ssfcrescl,
             ls_job_output_options TYPE ssfcresop.
       DATA: lt_otfdata TYPE TABLE OF itcoo,
             lt_pdfdata TYPE TABLE OF tline WITH HEADER LINE.
       DATA: ls_data TYPE zfi_s_satici_mutabakat.
       DATA: ls_document_data       LIKE  sodocchgi1,
             lv_put_in_outbox       LIKE  sonv-flag,
             lv_sender_address      LIKE  soextreci1-receiver,
             lv_sender_address_type LIKE  soextreci1-adr_typ,
             lv_commit_work         LIKE  sonv-flag VALUE space,
             lt_packing_list  TYPE TABLE OF sopcklsti1 WITH HEADER LINE,
             lt_object_header TYPE TABLE OF solisti1   WITH HEADER LINE,
             lt_contents_bin  TYPE TABLE OF solisti1   WITH HEADER LINE,
             lt_contents_txt  TYPE TABLE OF solisti1   WITH HEADER LINE,
             lt_contents_hex  TYPE TABLE OF solix      WITH HEADER LINE,
             lt_object_para   TYPE TABLE OF soparai1   WITH HEADER LINE,
             lt_object_parb   TYPE TABLE OF soparbi1   WITH HEADER LINE,
             lt_receivers     TYPE TABLE OF somlreci1  WITH HEADER LINE.
       DATA: lv_len TYPE i,
             lv_pos TYPE i,
             lv_tab_lines TYPE i.
       DATA: lt_pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE.
       CLEAR: lv_formname, lv_fm_name.
       lv_formname = 'ZLIMIT_REQUEST_FORM2'.
       PERFORM smartform_fm_name USING lv_formname
                                 CHANGING lv_fm_name .
    *get PDF Data
       ls_control_parameters-getotf    = 'X'.
       ls_control_parameters-no_dialog = 'X'.
       ls_output_options-tdnoprev      = 'X'.
       LOOP AT itab WHERE sel eq 'X'.
         concatenate sy-datum+6(2)'.'sy-datum+4(2)
             '.'sy-datum(4) into datum.
         CALL FUNCTION lv_fm_name
           EXPORTING
             control_parameters = ls_control_parameters
             output_options     = ls_output_options
             user_settings      = 'X'
             datum              = datum
             EPAYMENT_T1        = EPAYMENT_T1
             EPAYMENT_T2        = EPAYMENT_T2
             EPAYMENT_D1        = EPAYMENT_D1
             EPAYMENT_D2        = EPAYMENT_D2
             NAME1              = name1
    "        itab               = itab[]
           IMPORTING
             job_output_info    = ls_job_output_info
           TABLES
             ITAB               = itab
         FREE: lt_otfdata, lt_pdfdata.
         lt_otfdata[] = ls_job_output_info-otfdata[].
         PERFORM convert_otf TABLES lt_otfdata lt_pdfdata.
         FREE: lt_receivers, lt_packing_list,
               lt_contents_bin, lt_contents_txt.
    * Assigning the Description of the object sent in the mail
         CLEAR ls_document_data.
         ls_document_data-obj_name = 'Limit Talep Formu'.
         ls_document_data-obj_descr = 'Limit Talep Formu'.
         ls_document_data-expiry_dat  = sy-datum + 10.
         ls_document_data-sensitivty = 'F'.
         LOOP AT gt_mail.
           CLEAR : lt_receivers.
           lt_receivers-receiver = gt_mail-ZZSAHAMUDUREMAIL. " """reciever list
           lt_receivers-rec_type = 'U'.
           lt_receivers-com_type = 'INT'.
           APPEND lt_receivers.
           lt_receivers-COPY = mail_bm.
           lt_receivers-rec_type = 'U'.
           lt_receivers-com_type = 'INT'.
           APPEND lt_receivers.
         ENDLOOP.
         CLEAR: lt_contents_txt.
         lt_contents_txt-line = 'Sayın yetkili,'.
         APPEND lt_contents_txt.CLEAR lt_contents_txt.
         APPEND lt_contents_txt.
         CONCATENATE 'Ekte tarafınıza ait limit formu'
         ' bulunmaktadır.' INTO lt_contents_txt-line
         SEPARATED BY space.
         APPEND lt_contents_txt.CLEAR lt_contents_txt.
         APPEND lt_contents_txt.
         lt_contents_txt-line = 'Saygılarımızla,'.
         APPEND lt_contents_txt.CLEAR lt_contents_txt.
         CLEAR lt_packing_list.
         lt_packing_list-transf_bin  = space.
         lt_packing_list-head_start  = 1.
         lt_packing_list-head_num    = 0.
         lt_packing_list-body_start  = 1.
         lt_packing_list-body_num    = LINES( lt_contents_txt ).
         lt_packing_list-doc_type    = 'RAW'.
         APPEND lt_packing_list. CLEAR lt_packing_list.
         ls_document_data-doc_size = LINES( lt_contents_txt ) * 255.
         CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
           EXPORTING
             line_width_src              = 134
             line_width_dst              = 255
           TABLES
             content_in                  = lt_pdfdata
             content_out                 = lt_contents_bin
           EXCEPTIONS
             err_line_width_src_too_long = 1
             err_line_width_dst_too_long = 2
             err_conv_failed             = 3
             OTHERS                      = 4.
    *Filling the details in SAPoffice: Description of Imported Object
    *Components table
         DESCRIBE TABLE lt_contents_bin LINES lv_tab_lines.
         CLEAR lt_contents_bin.
         READ TABLE lt_contents_bin INDEX lv_tab_lines.
         IF sy-subrc = 0.
           CLEAR: lt_packing_list.
           lt_packing_list-transf_bin = 'X'.
           lt_packing_list-head_start = 1.
           lt_packing_list-head_num = 1.
           lt_packing_list-body_start = 1.
           lt_packing_list-body_num = lv_tab_lines.
           lt_packing_list-obj_langu = sy-langu.
           lt_packing_list-doc_type = 'PDF'.
           lt_packing_list-obj_name = 'ATTACHMENT'.
           lt_packing_list-obj_descr = 'RISK TALEP FORMU.PDF'.
           lt_packing_list-doc_size = lv_tab_lines * 255.
           APPEND lt_packing_list.CLEAR lt_packing_list.
         ENDIF.
         lv_put_in_outbox = lv_commit_work = 'X'.
         CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
             document_data              = ls_document_data
             put_in_outbox              = lv_put_in_outbox
             sender_address             = lv_sender_address
             sender_address_type        = lv_sender_address_type
             commit_work                = lv_commit_work
           TABLES
             packing_list               = lt_packing_list
             object_header              = lt_object_header
             contents_bin               = lt_contents_bin
             contents_txt               = lt_contents_txt
             contents_hex               = lt_contents_hex
             object_para                = lt_object_para
             object_parb                = lt_object_parb
             receivers                  = lt_receivers
           EXCEPTIONS
             too_many_receivers         = 1
             document_not_sent          = 2
             document_type_not_exist    = 3
             operation_no_authorization = 4
             parameter_error            = 5
             x_error                    = 6
             enqueue_error              = 7
             OTHERS                     = 8.
         IF sy-subrc eq 0.
    *      gt_data-gonderx = 'X'.
    *      modify gt_data.
    *      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    *              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
         ENDIF.
       ENDLOOP.
    ENDFORM.                    " SEND_MAIL

    Hi Matthew Billingham,
    i struggled quite a while if i should write a reply or not.
    The fact that one of my posts got rejected by suggesting FM SO_DOCUMENT_SEND_API1 finally made me do so. (maybe the rejection was ok for the context i wrote my post for but reading through the forum i feel like some people going to panic if they read the FM-name).
    I totally agree with u using CL_BC-Classes instead of old fashioned-FMs for new development.
    But that should not lead us in handling the name SO_DOCUMENT_SEND_API1 like they did with the name Lord Voldemort in Harry Potter.
    Wanting to display a PDF in email body instead of adding it as attchment, aint nescessary worth a complete redesign of the existing programm - as Cem Unal already posted his code and told us he just want to change it.
    As long as there are programms out that use this FM, there will be questions on how to handle this FM no matter if its obsolete or not. And where should they ask, when they wont be able to ask in the scn-forum?
    Reading the FMs documentation, there is nothing mentioning this FM is obsolete.
    So the strategie of suggesting to use newer technics because of personal preference should (in my opinion) not lead into deleting posts regarding the old technic on the other hand.
    regards
    Stefan Seeburger

  • Hw to write txt in mail body using UTL mail when sending mail with attachme

    hi all
    i m using oracle demo mail package to send csv file as attachment to different users its successfull and i can also able to attach text file to it
    but i m unable to write any text in mail body .
    e.g.
    mail body can be--
    hi
    This is test mail.
    Regds
    Sender.
    can anyone suggest some way?

    u can try this code
    this code takes the file from database and attach with mail and also send the body with it
    it works fine.
    CREATE OR REPLACE
    procedure pdf_mail(
    p_sender varchar2, -- sender, example: 'Me '
    p_recipients varchar2, -- recipients, example: 'Someone '
    p_subject varchar2, -- subject
    p_text long, -- text
    p_case_id number,
    p_email_log_id number
    -- p_filename varchar2, -- name of pdf file
    p_blob   blob     pdf file
    ) is
    conn utl_smtp.connection;
    i number;
    len number;
    p_message_part varchar2(32767);
    cursor c1 is
    select file_name,document_pic
    from clm_case_attachments ca,email_log_detail em
    where
    case_id = p_case_id
    and ca.CASE_ATTACHMENT_ID = em.ATTACHMENT_ID
    and em.ACTIVE = 'Y'
    and em.EMAIL_LOG_ID = p_email_log_id;
    BEGIN
    conn := demo_mail.begin_mail(
    sender => p_sender,
    recipients => p_recipients,
    subject => p_subject,
    mime_type => demo_mail.MULTIPART_MIME_TYPE);
    demo_mail.attach_text(
    conn => conn,
    data => p_text,
    mime_type => 'text/html');
    for lp in c1 loop
    demo_mail.begin_attachment(
    conn => conn,
    mime_type => 'application/pdf',
    inline => TRUE,
    filename => lp.file_name,
    transfer_enc => 'base64');
    -- split the Base64 encoded attachment into multiple lines
    i := 1;
    len := DBMS_LOB.getLength(lp.document_pic);
    WHILE (i < len) LOOP
    IF(i + demo_mail.MAX_BASE64_LINE_WIDTH < len)THEN
    UTL_SMTP.Write_Raw_Data (conn
    , UTL_ENCODE.Base64_Encode(
    DBMS_LOB.Substr(lp.document_pic, demo_mail.MAX_BASE64_LINE_WIDTH, i)));
    ELSE
    UTL_SMTP.Write_Raw_Data (conn
    , UTL_ENCODE.Base64_Encode(
    DBMS_LOB.Substr(lp.document_pic, (len - i)+1, i)));
    END IF;
    UTL_SMTP.Write_Data(conn, UTL_TCP.CRLF);
    i := i + demo_mail.MAX_BASE64_LINE_WIDTH;
    END LOOP;
    demo_mail.end_attachment(conn => conn);
    end loop;
    demo_mail.end_mail( conn => conn );
    END;
    /

  • How to read the message body in a mail

    how can we read the message body of a mail. i am using pop3 server for reading the mails. my program is
    public class GetMessageExample {
    public static void main (String args[]) throws Exception {
    String host = args[0];
    String username = args[1];
    String password = args[2];
    Properties props = new Properties();
    Session session = Session.getInstance(props, null);
    Store store = session.getStore("pop3");
    store.connect(host, username, password);
    Folder folder = store.getFolder("INBOX");
    folder.open(Folder.READ_ONLY);
    BufferedReader reader = new BufferedReader (
    new InputStreamReader(System.in));
    Message message[] = folder.getMessages();
    for (int i=0, n=message.length; i<n; i++) {
    System.out.println(i + ": " + message.getFrom()[0]
    + "\t" + message[i].getSubject());
    System.out.println(
    "Do you want to read message? [YES to read/QUIT to end]");
    String line = reader.readLine();
    if ("YES".equals(line)) {
    message[i].writeTo(System.out);
    } else if ("QUIT".equals(line)) {
    break;
    folder.close(false);
    store.close();
    i am getting the following exception
    Exception in thread "main" java.lang.NoSuchFieldError: contentStream
    at com.sun.mail.pop3.POP3Message.getContentStream(POP3Message.java:115)
    at javax.mail.internet.MimePartDataSource.getInputStream(MimePartDataSou
    rce.java:61)
    at com.sun.mail.handlers.text_plain.getContent(text_plain.java:65)
    at javax.activation.DataSourceDataContentHandler.getContent(DataHandler.
    java:755)
    at javax.activation.DataHandler.getContent(DataHandler.java:511)
    at javax.mail.internet.MimeMessage.getContent(MimeMessage.java:1072)

    The Part interface that the Message class implements describes 3 ways for getting the content of a message. To use an Input Stream, you can call the getInputStream() method on the message itself, rather than System.in.
    Hope this helps!

  • No content in body of Yahoo Mail when using FF 8.0

    I have No content in body of Yahoo Mail when using FF 8.0 but is OK when using IE. Have cleared cache, disabled extension and add ons and Java is enabled. Even went to FF 7, but no content in email?

    Update your filter subscriptions if you have "Adblock Plus".
    # click on ABP toolbar or add-ons button click on "Preferences" then on "Filters, and then on
    "Update all subscriptions".
    *https://support.mozilla.com/questions/845691

  • How do I send a page via email in the body of the mail and not as an attachment?

    I wish to send a page via email in the body of the mail. The only option to send a page appears to be to save it first and then attatch to the mail.

    When you are in the Plan View, right click on the icon for the page that you want to omit from the menu. Near the bottom, you'll see Menu Options, click on that and you'll have the choice to Exclude Page from Menus.

  • Satellite SP6000 - Crash with colored stripes on screen

    Hi!
    I have a Satellite Pro 6000 and it worked good for more than two years. But in the last two months the laptop crashed from time to time with a distored screen out of flickering colored stripes. After that it takes some time to get it work again. XP Pro is fresh installed from the recovery CD's . Unfortunately it looks like a hardware problem. An external monitor shows the same distorted screen. I don't think that it gets too hot and the fan is working and blowing out warm air.
    It is out of guarantee now and I don't want to spend much money on a repair task.
    So, any suggestions for me? I don't fear opening and replacing/repairing some parts of it but it would be great to get some tips about a possible reason for this.
    Thanks in advance and bye,
    superberti

    Hi!
    > This is almost certainly due to faulty memory
    > modules. How much memory do you have fitted?
    >
    512 MB on two modules.
    > This laptop does not have any memory fitted on the
    > MB, the graphics card shares 16MB of the memory
    > fitted in the 2 slots provided. If you have 2 modules
    > fitted, remove the module from socket A and then
    > remove the module from B socket and fit into socket
    > A. Leave the other module out and try the laptop
    > again to see if the problem has gone away.
    >
    I'll give it a try. Although these two modules worked good for over two years.
    Would be better than the motherboard ;-)
    Thanks and bye,
    superberti

  • How do I delete Vertical color stripes (pink-red-green) on desktop screen - 6 of them. Anybody have the same problem? Other Mac groups have same problem.

    How do I delete vertical color stripes on my destop screen. There are 6 of them in pink, red and green. Can't believe I'm having problems with my wonderful iMac!

    Unfortunately, they aren't something to be "deleted." Might be a hardware/graphics chip problem. You should run the Hardware Test in Extended. Might have to run it several times to pick up an error.
    http://support.apple.com/kb/ht1509

  • Is there any way to schedule the webi report as body of the mail

    Hi All,
             I have a bit different requirement. I need to schedule the webi reports to BlackBerry Mobile .
    The report should be displayed not as an attachment or URL but should be the body of the mail.
    Is there any Trick or Tip to do that.
    Thanks in Advance

    You could schedule the reports to run as an Excel or PDF document and the destination as a folder on a server.  Then after the reports are sent to the destination, you could use the Program Job Server to run a script which parses the files line-by-line and creates an email.  It's not the most elegant solution but in theory it should work.

  • Sending Smartform output as a body of the mail not as the attachement

    Hi All,
      my requirement is like this...
      I need to send a smartform output as the body of a mail. and not as the attachment.
      Hope you got my question
    Regards
      Raghu

    Hi,
           I hope the following links might help you,
    Smartform output as Email.
    Smartform to PDF and e_mail? Urgent
    Regards,
    Hema.
    Reward points if it is useful.

  • How to get payload as body iin the Mail receiver

    Hi,
    i am using M2M scenario and getting the output data as am email attahment.
    But i need that data as the body of the mail in the receiver.
    please help me.
    Regards,
    Sree.

    Hi Sreenivas,
    Use message protocol as XI payload and make sure that you uncheck the "KeepAttachemts" option. Please refer the below links it may help you.
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    The specified item was not found.
    Regards,
    Priyanka

  • Is there any limit of character that can be sent as body of the mail ?

    Hi,
    we are in exchange 2010 server environment. Is there any limit of character that can be sent as body of the mail ?
    Sankar M http://messagingdevelopment.blogspot.in/

    Hi Munirathinam,
    We can use transport rule and content filtering to implement this function, for example "SubjectOrBodyContains" or "
    FromAddressContains". More details about it, please refer to:
    Transport Rule Predicates:
    http://technet.microsoft.com/en-us/library/dd638183(v=exchg.141).aspx
    Understanding Content Filtering:
    http://technet.microsoft.com/en-us/library/bb124739(v=exchg.141).aspx
    Best Regards,
    Allen Wang

  • Wierd color stripes on startup (PC)

    I just bought a 23' for my PC.
    I know im not able to see the boot screen on startup, but it seems like i get som kind of signal problems. When the screen should be black on startup, it appears a lot on colored stripes and light instead. When the windows os appeares, the screen gets kinda out of focus. Sometimes the screen turns it self on and off like there is something wrong with the signal.
    If I turn on the screen after windows had loaded, everything works perfect.
    im going to buy a new grapich card soon with a new pc, but i dont know if this is a graphic card/signal problem or a mailfunction on the monitor..
    If its not anything wrong with the monitor will theese signal errors damage it?
    any help is appreciated!
      Windows XP Pro  

    anyone?

  • Populate body of the mail when smartform is triggered.

    Hi Guru's,
    i have configured the smartform, and when i execute the transaction the smartform is being triggered and i am getting the smartform as pdf in a mail.
    i want to populate the body of the mail. i am not using the function modules like to convert smartform to pdf then triggering mail. it is triggering from output options.
    how to poulate the body of the mail
    Best regards,
    Chetan.

    Hello all,
    I recently did an object which sends an email with the body.
    Step 1.
    Do not send the email directly by SAP functionality using smartform function module.
    Set the parameter control_parameters-getotf    = 'X' of the smartform function module.
    step 2.
    Use function module CONVERT_OTF
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                      = 'PDF'
        IMPORTING
          bin_filesize                = lf_bin_filesize
         BIN_FILE                    =
        TABLES
          otf                         = gs_job_output_info-otfdata
          lines                       = gt_lines
        EXCEPTIONS
          err_max_linewidth           = 1
          err_format                  = 2
          err_conv_not_possible       = 3
          err_bad_otf                 = 4
          OTHERS                      = 5.
    Step 3
    Use function module QCE1_CONVERT
      CALL FUNCTION 'QCE1_CONVERT'
        TABLES
          t_source_tab = gt_lines
          t_target_tab = outbin.
    Step 3.
    Fill up the details for Email Body + Attachment for the function module SO_NEW_DOCUMENT_ATT_SEND_API1
    internal table objtxt will have body of email (txt format)
      DESCRIBE TABLE objtxt LINES tab_lines.
      READ TABLE objtxt INDEX tab_lines.
      docdata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
      CLEAR objpack-transf_bin.
      objpack-head_start = 1.
      objpack-head_num = 0.
      objpack-body_start = 1.
      objpack-body_num = tab_lines.
      objpack-doc_type = 'HTM'.       
    APPEND objpack.
    Packing Info Attachment
      att_type = 'PDF'
      DESCRIBE TABLE objbin LINES tab_lines.
      READ TABLE outbin INDEX tab_lines.
      objpack-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objbin ).
      objpack-transf_bin = 'X'.
      objpack-head_start = 1.
      objpack-head_num = 0.
      objpack-body_start = 1.
      objpack-body_num = tab_lines.
      objpack-doc_type = att_type.
      objpack-obj_name = 'ATTACHMENT'.
      objpack-obj_descr = 'description'.
      APPEND objpack.
      docdata-obj_name  = name.
      docdata-obj_descr = description.
    step 4 :- use function module 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data = docdata
          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
          document_type_not_exist = 3
          operation_no_authorization = 4
          parameter_error = 5
          x_error = 6
          enqueue_error = 7
          OTHERS = 8.
    Hope this helps. Let me know if you have any questions

Maybe you are looking for