Tables in Mail content

Hi All,
How to display table data as a table itself in the mail. Please give all possible options. Example as an attachment or mail body etc.
I want a table with borders. Please tell me how to achieve this.
Any pointers will be highly appreciated.
Thanks and Regards,
Lakshmi.

>
Santhanalakshmi V wrote:
> I want the table to be displayed in a more user friendly manner with borders etc. So i'm looking for more options in this regard.
>
Since you mention attachment as an option in your original post, you can write a program that lists the table in the desirable format and mail the output. There may be example ABAP in the system, OSS or  on SDN on how this is done. The list goes as an attachment and not the mail body. If this mail is being sent to external email address, I think the attachment can be converted to HTML or PDF within SCOT settings.
Cheers,
Ramki Maley.

Similar Messages

  • Table for E-mail content (ERMS)

    Hi Experts,
    Can some one help me to know which is the table that stores E-mails content of an in-coming email in the ERMS system. I tried with CRM_ERMS_HEADER and SWWWIHEAD in transaction SE11 but I am unable to see any workitem content.
    Regards.

    Hi Vinod, Thanks for quick response.
    I tried using Email work bench. three things
    a. I can delete only 'open' and 'In process' email there however emails with status 'completed' are not able to delete. The message says "Selected Email has the status Completed/Deleted which cannot be deleted."
    b. Though email is getting deleted, I can see them back when i set dropdown status to 'Deleted' in the Email Work bech.
    c. Emails are visible in table CRMD_ERMS_CONTNT even after deletion from work bench.
    How do we address these scenario? It will great help if some how we will be able to delete emails completely (Not a single record in the SAP system, anywhere). Awaiting the response, thanks in ahead.

  • Mail content coming as Attachment too.

    Hi -
    While we are trying to send mails using SO_DOCUMENT_SEND_API1 ,
    the mail content is coming as attachment .
    Can you suggest whats worng ?
    Thanks,
    sandhya

    Hi,
    Try using the sample code below:
    *& Report  ZBC_ITAB_TO_EXCEL_NEW                                       *
    REPORT  ZBC_ITAB_TO_EXCEL_NEW                   .
    CLASS: cl_abap_char_utilities DEFINITION LOAD.
    DATA: docdata LIKE sodocchgi1,
          objpack LIKE sopcklsti1 OCCURS 1 WITH HEADER LINE,
          objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE,
          objbin1 LIKE solisti1 OCCURS 10 WITH HEADER LINE,
          objbin2 LIKE solisti1 OCCURS 10 WITH HEADER LINE,
          objbin_final LIKE solisti1 OCCURS 10 WITH HEADER LINE,
          reclist LIKE somlreci1 OCCURS 1 WITH HEADER LINE,
          tab_lines TYPE sy-tabix.
    DATA: gd_sender_type LIKE soextreci1-adr_typ.
    DATA: c_tab TYPE c VALUE cl_abap_char_utilities=>horizontal_tab,
          c_ret TYPE c VALUE cl_abap_char_utilities=>cr_lf.
    DATA: c_dev TYPE sy-sysid.
    DATA: BEGIN OF i_data OCCURS 0,
          a(20),
          b(20),
          END OF i_data.
    DATA: BEGIN OF st,
          f1(2) TYPE c,
          f2(2) TYPE n,
          END OF st.
    DATA: itab1 LIKE TABLE OF st WITH HEADER LINE,
          itab2 LIKE TABLE OF st WITH HEADER LINE.
    DATA: n TYPE i.
    PARAMETER: p_email1 LIKE somlreci1-receiver,
                           p_sender LIKE somlreci1-receiver.
    START-OF-SELECTION.
      itab1-f1 = 'AA'. itab1-f2 = '01'. APPEND itab1.
      itab1-f1 = 'BB'. itab1-f2 = '02'. APPEND itab1.
      itab1-f1 = 'CC'. itab1-f2 = '03'. APPEND itab1.
      itab2-f1 = 'ZZ'. itab2-f2 = '26'. APPEND itab2.
      itab2-f1 = 'YY'. itab2-f2 = '25'. APPEND itab2.
      LOOP AT itab1.
        CONCATENATE itab1-f1 itab1-f2 INTO objbin1 separated BY c_tab.
        CONCATENATE c_ret objbin1 INTO objbin1.
        APPEND objbin1.
      ENDLOOP.
      LOOP AT itab2.
        CONCATENATE itab2-f1 itab2-f2 INTO objbin2 separated BY c_tab.
        CONCATENATE c_ret objbin2 INTO objbin2.
        APPEND objbin2.
      ENDLOOP.
      LOOP AT objbin1.
        MOVE objbin1-line TO objbin_final-line.
        APPEND objbin_final.
      ENDLOOP.
      LOOP AT objbin2.
        MOVE objbin2-line TO objbin_final-line.
        APPEND objbin_final.
      ENDLOOP.
      PERFORM process_email.
      c_dev = sy-sysid.
      IF sy-sysid = c_dev.
        wait up to 5 seconds.
        SUBMIT rsconn01 WITH mode = 'INT'
        WITH output = 'X'
        AND RETURN.
      ENDIF.
      IF sy-subrc = 0.
        WRITE: / 'Email succesfilly delivered'.
      ELSE.
        WRITE: / 'failure'.
      ENDIF.
    *&      Form  process_email
    *       text
    FORM process_email.
      IF p_sender EQ space.
        gd_sender_type = space.
      ELSE.
        gd_sender_type = 'INT'.
      ENDIF.
    *Body
      docdata-obj_name = 'Mail_Excel_File'.
      docdata-obj_descr = 'Excel file attachment'.
      objtxt = 'Attached is the sample Excel file'.
      APPEND objtxt.
      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 = 'RAW'.
      APPEND objpack.
    *Attachment
      n = 1.
      DESCRIBE TABLE objbin1 LINES tab_lines.
      objpack-doc_size = tab_lines * 255.
      objpack-transf_bin = 'X'.
      objpack-head_start = 1.
      objpack-head_num = 1.
      objpack-body_start = n.
      objpack-body_num = tab_lines.
      objpack-doc_type = 'XLS'.
      docdata-obj_name = 'Excel_File_Attachment1'.
      objpack-obj_descr = 'Excel File Attachment1'.
      APPEND objpack.
      n = n + tab_lines.
      DESCRIBE TABLE objbin2 LINES tab_lines.
      objpack-doc_size = tab_lines * 255.
      objpack-transf_bin = 'X'.
      objpack-head_start = 1.
      objpack-head_num = 1.
      objpack-body_start = n.
      objpack-body_num = tab_lines.
      objpack-doc_type = 'XLS'.
      docdata-obj_name = 'Excel_File_Attachment2'.
      objpack-obj_descr = 'Excel File Attachment2'.
      APPEND objpack.
    *Create the list of recipients
      reclist-receiver = p_email1.
      reclist-rec_type = 'U'.
      reclist-express = 'X'.
      APPEND reclist.
    *Send the e-mail
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = docdata
          put_in_outbox              = 'X'
          commit_work                = 'X'
        TABLES
          packing_list               = objpack
          contents_bin               = objbin_final
          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.
      COMMIT WORK.
    ENDFORM.                    "process_email
    Hope it helps
    Regards
    Mansi

  • Send Internal table to mail with Colman name

    Hi,
    how can i send the content of internal table to mail ,
    i try to convert to HTML and send it but the problem is that i don't get the column name ,
    there is another way to send the IT with the column name ?
    any e.g will help i am stuck ....
    Regards

    you can use upto here..and then you can send html table as attachement in  the mail
    DATA:
    t_html TYPE STANDARD TABLE OF w3html WITH HEADER LINE,
    " Html Table
    *- Declare Internal table and Fieldcatalog
    it_fcat TYPE lvc_t_fcat WITH HEADER LINE." Fieldcatalog
    DATA: i_table TYPE REF TO data,
    wa_line TYPE REF TO data.
    FIELD-SYMBOLS: <fs_tab> TYPE STANDARD TABLE,
    <fs_wa> TYPE ANY.
    DATA:
    v_lines TYPE i,
    v_field(40).
    *-Fieldsymbols
    FIELD-SYMBOLS: <fs> TYPE ANY.
    PARAMETERS: p_table(30) TYPE c.
    * S T A R T - O F - S E L E C T I O N
    START-OF-SELECTION.
    *-Populate the Fieldcatalog
    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
    i_structure_name = p_table
    CHANGING
    ct_fieldcat = it_fcat[]
    EXCEPTIONS
    inconsistent_interface = 1
    program_error = 2.
    * Create dynamic internal table and assign to FS
    CALL METHOD cl_alv_table_create=>create_dynamic_table
      EXPORTING
        it_fieldcatalog = it_fcat[]
      IMPORTING
        ep_table = i_table.
    ASSIGN i_table->* TO <fs_tab>.
    * Create dynamic work area and assign to FS
    CREATE DATA wa_line LIKE LINE OF <fs_tab>.
    ASSIGN wa_line->* TO <fs_wa>.
    SELECT *
    FROM (p_table)
    INTO TABLE <fs_tab>
    UP TO 20 ROWS.
    * E N D - O F - S E L E C T I O N
    END-OF-SELECTION.
    *-Fill the Column headings and cell properties
    DELETE it_fcat WHERE fieldname = 'MANDT'.
    t_html-line = '<html>'.
    APPEND t_html.
    CLEAR t_html.
    t_html-line = '<thead>'.
    APPEND t_html.
    CLEAR t_html.
    t_html-line = '<tr>'.
    APPEND t_html.
    CLEAR t_html.
    t_html-line = '<td><h1>DB Details</h1></td>'.
    APPEND t_html.
    CLEAR t_html.
    t_html-line = '</tr>'.
    APPEND t_html.
    CLEAR t_html.
    t_html-line = '</thead>'.
    APPEND t_html.
    CLEAR t_html.
    t_html-line = '<table border = "1">'.
    APPEND t_html.
    CLEAR t_html.
    t_html-line = '<tr>'.
    APPEND t_html.
    CLEAR t_html.
    *-Populate HTML columns from Filedcatalog
    LOOP AT it_fcat.
    CONCATENATE '<th bgcolor = "green" fgcolor = "black">'
    it_fcat-scrtext_l
    '</th>' INTO t_html-line.
    APPEND t_html.
    CLEAR t_html.
    ENDLOOP.
    t_html-line = '</tr>'.
    APPEND t_html.
    CLEAR t_html.
    DESCRIBE TABLE it_fcat LINES v_lines.
    *-Populate HTML table from Internal table data
    LOOP AT <fs_tab> ASSIGNING <fs_wa>.
    t_html-line = '<tr>'.
    APPEND t_html.
    CLEAR t_html.
    *-Populate entire row of HTML table
    DO v_lines TIMES.
    READ TABLE it_fcat INDEX sy-index.
    CONCATENATE '<FS_WA>-' it_fcat-fieldname INTO v_field.
    ASSIGN (v_field) TO <fs>.
    t_html-line = '<td>'.
    APPEND t_html.
    CLEAR t_html.
    t_html-line = <fs>.
    APPEND t_html.
    CLEAR t_html.
    t_html-line = '</td>'.
    APPEND t_html.
    CLEAR t_html.
    CLEAR v_field.
    UNASSIGN <fs>.
    ENDDO.
    t_html-line = '</tr>'.
    APPEND t_html.
    CLEAR t_html.
    ENDLOOP.
    t_html-line = '</table>'.
    APPEND t_html.
    CLEAR t_html.

  • Cfolder - Notification Button click : Mail content change

    Hi Experts,
    Please suggest, as per client requirement, we need to change the mail content, when the 'Notification' Button is clicked in Cfolder by a user for an RFx in SRM.
    Currently we see mail content on click of Cfolder as below:
    Subject: Document "New Document" was created
    You subscribed to Folder "Post Bid Clarification". Document "New Document"
    was created.
    Document "New Document" is part of collaboration "Technical Details".
    Click the following link to go to the object in cFolders.
    (The link must be one line. If your mail client has cut the line off, copy the various parts to the address line of your Web browser to make a complete link.) http:// .........
    This e-mail was sent automatically by cFolders (mySAP PLM Collaboration Folders).
    Regards,
    Gaurav

    Hi Not exactly sure but can you check
    http://wiki.scn.sap.com/wiki/display/PLM/Standard+table-+cFolders
    CFX_NTF_QUEUE     Queue for E-Mail Notifications
    CFX_NTF_CONTENT     Collaboration Folders: Content Data of Notifications
    CFX_NTF_TEMPLATE     Table for storing information about Notification Templates
    CFX_NOTIFICATION     Collaboration Folders: Notifications
    Also try searching in transaction alrtcatdef if you find something related to it .. it contains the deafult text while sending mails

  • Can't Mail Contents of this Page after MobileMe update!

    In Safari, you used to be able to do a "cmd I" or go to the File Menu and go down to "Mail Contents of this Page" select it and it would paste in to Mail a screen shot of the Safari page you were on.
    Now when you do this, after the MobileMe update has been run and installed. Safari no longer can find the Mail app. Here is a copy of the text of the error message that you get now.
    "Safari couldn’t create an email message because it couldn’t locate an email application.
    You can use the Mail application included with Mac OS X to send webpages. To do so, you need to install Mail using the Mac OS X installation CDs."
    I'm on a MacBook 2 Ghz INtel Core 2 Duo, with MAC OS X (10.5.2), Mail version 3.4 (last modified 7/11/08) Safari version 3.1.2 (last modified 6/30/08), MobileMe version 5.1 in the Preference Pane.
    The suggested solution of reinstalling mail would not seem to work as it would reinstall older versions of mail that would not have the functionality of being use MobileMe. It would seem to be that a Safari path is what is required to have the code know that the Mail app has been renamed(?).
    CW Rice
    Sheldonville, MA

    Hi, I'm on 10.5.4 I must have mistyped my OS version number. I took the version number for MobileMe from the About This Mac information. I was surprised like you see a version number of 5.1 I have run Software update as well just now to see if any newer versions of my software are there. None I'm up to date.
    I do know that when I ran the MobileMe updater it said that it fixes problems in Mail, right now some things in various software applications still refer to .Mac. I still think that somewhere in the Mail app that the name was changed, so that Safari is looking for the old name in a string of code that executes the placing a copy of the current page in Mail as an outgoing mail message.
    As for that activity bar in Safari, I guess I have never noticed it until now, on a laptop the bottom of the page is some times obscured by the dock which I have at the bottom. I truly noticed it more when I ran the MobileMe page.

  • Business Workplace Inbox : Mail Content Not Displayed

    Friends,
    We have a problem in displaying contents of the mail(SAP Inbox) in one of the PC's. When we reply w/refernce to that message the content is displayed properly. And also the same mail content is displayed properly in another PC's for the same user.
    We thought this is a GUI problem and re-installed SAP GUI(all components) but still the issue exists.
    Any other settings are required to be done to solve this problem? Can anyone please help us solving the issue?
    Note: we are using SO_DOCUMENT_SEND_API1 for creating the mail notification and the content is passed as 'RAW'.
    Thank you very much for your help and suggestions.
    Cheers,
    MS
    Message was edited by: Srinivasa Maram

    Srinivas,
    1) Is the problem only with the message being sent through custom code using SO_DOCUMENT_SEND_API1? What happens if you send a message using SAPOffice?
    2) Are the patch levels of the GUI same on both machines? Are you sure both PCs are configured exactly the same? Especially wrt to Windows & IE patches. I vaguely remember there were some issues a while ago with some IE patches. Normally in most client environments the desktops upgrades are controlled centrally and users do not have admin rights. Make sure the user has not done upgrades/installs on the PC in question. If that were the case the PC may needs to be reimaged.
    BTW - What version  are you on R/3 and SAPGUI?
    Regards,
    Ramki Maley

  • How to make "Mail Contents os this page" in safari 7?

    Hi everybody,
    I need for my daily work to make once or twice a day an upload of an mailing PNG picture. Bevor the upgrade to Maverick Safari 7 I used the safari version 5.1.10 which works great to make "Mail contents of this page" (File Menu > Mail Contents of this file). Now in the Safari 7 version this option is not anymore available and it is change to SHARE "Email this page". This is not the some and it does not match the legal proposing.
    I appreciate as answer for a good solution or which steps shoud I do to get this option again.
    Thx a lot

    Hi Carolyn,
    Thanks a lot for your help and sorry for the inconvenience. I follow your instruction but it is still not working.
    I tried to use now another Mac which I have here, with Mac system 10.6.8, where I use the safari version 5.1.10 (6534.59.10) and it works perfect.
    Here are the screenShots:
    The screenshot from the older computer: here you see the option Mail contents of this page.
    Using that older Mac we have the perfect result, where you see the legal text + images, which i sent to me in bcc.
    The result from my Mac with Maverick and after following the instruction:
    You see the full legal text but no the image!
    Maybe this is just a minor bug in Safari, to exploring yet and to improve. For the meantime I have to use the older Mac only for this part of the job. Not A PERFECT DAY (lou reed, RIP) but not the end of the world!
    Thanks for you help and I´m looking forward to get news on this issue from you.
    <Image Edited By Host>

  • I have two computers one 10.5.8 one 10.6.8.  Updated the 10.6.8 and now my mail has disappeared on one computer - do I sync account to get all my mail content back?

    I have two computers one IMac 10.5.8 one MacBookPro 10.6.8.  Updated the MacBookPro 10.6.8 and now my mail has disappeared on that computer - do I sync account to get all my mail content back onto the MacBookPro?

    You can do it. This article from Macworld will be helpful to you:
    http://www.macworld.com/article/161087/2011/07/install_lion_over_leopard.html
    I recommend the "brute-force" method.
    Just make sure you have your data backed up properly!

  • How do I save e-mail content on my MacBook Air,so I may print them as plain text?

    How do I save e-mail content on my MacBook Air, so I may ptint the content as plain text?

    10.7 Lion
    http://support.apple.com/kb/PH4858
    10.8 Mountain Lion
    http://support.apple.com/kb/PH11746

  • Using the Mail content and Mail Attachment in the mapping

    Hi,
    I have a requirement in which I need to read a file from the mail server and I am using the sender mail adapter for this. I have to convert the attachment of the mail in to the payload. To do this I am using the payload swap bean and mail transform bean. Now the issue is I have to get the information from both attachment and the mail content and need to map it to the target message. Please let me know how to do this.
    Thanks!
    ~Vaas

    Not sure if there is a staright forward way to achieve this.
    But I can think of a work around for your scenario.
    >>To do this I am using the payload swap bean and mail transform bean.
    Instead of doing it this way, try
    1. Message Transform bean that will transform the payload(content of the mail) to XML.
    2. PayloadSwapBean to switch Payload and Attachment.
    3. Message Transform bean to transform the attachment to XML.
    4. Custom adapter module to read the attachment, contnet and create your own desired XML.
    Alternatively, step 4 could be replaced by a Java mapping doing the same operation.
    Regards
    Jai

  • Attachments send as mail content

    I have experienced the following several times:
    When sending a mail with word or xls file attached, the files are being send as mail content !
    Workaround is to open the attached files, make a bogus change+save and resend--> problem solved.
    Very annoying problem ! Doesn't happen always but when it happens it can be reproduced...
    Related to 10.5.2? (I don't recall to have the same problem under 10.5.1)
    Anyone with simular problems? Solutions?
    Ex:
    --Apple-Mail-4-903560157
    Content-Disposition: attachment;
    filename=persberichtwedstrijd_AGH_15032008v2.doc
    Content-Type: application/octet-stream;
    x-unix-mode=0755;
    name="persberichtwedstrijd_AGH_15032008v2.doc"
    Content-Transfer-Encoding: base64
    0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAAAAAAAAAAAAAAACAAAAzwAAAAAAAAAA
    EAAA0QAAAAEAAAD+////AAAAAM0AAADOAAAA////////////////////////////////////////
    ///////////////////////////////////////////////////////////////////////////s
    pcEAcWATBAAA+BK/AAAAAAAAEAAAAAAABgAA3A0AAA4AYmpianFQcVAAAAAAAAAAAAAAAAAAAAAA
    AAATBBYAF8QAABM6AQATOgEA3AUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//w8AAAAA
    AAAAAAD//w8AAAAAAAAAAAD//w8AAAAAAAAAAAAAAAAAAAAAAKQAAAAAAMgEAAAAAAAAyAQAAMgE
    AAAAAAAAyAQAAAAAAADIBAAAAAAAAM

    A workaround may be to use Finder's "Crete Archive..." and send the compressed version.

  • How to insert a hyperlink in mail content for workflow

    Experts,
    I want to insert a hyperlink in mail content when i use sendmail type step in workflow.
    How to do it?
    Thanks you very much!

    Hi, Venkat
      Thanks you for your help!
      I try to use '<a href=''https://login.yahoo.com/config/login_verify2?&.src=ym''>Yahoo mail</a>' in the mail, but
      my outlook display the mail content is '<a href=''https://login.yahoo.com/config/login_verify2?&.src=ym''>Yahoo mail</a>',
      is not a hyperlink.
    Ken.Li

  • Email signature between mail content in ipad/iphone

    I need to launch the mail composer with some content in it. I have already written a html content. The mail is looking properly, but the mail signature is coming in between the mail content.
    How to remove that mail content.
    in MFMailComposeViewController object's setMessageBody, I have the set the isHTML parameter to YES.
    Here is the HTML Content I am setting as body
    [emailBody setString:@"<html><body><div id=\"\" style=\"display: inline;float: left;\"><a style=\"position: absolute;margin-top: 20px; -webkit-box-shadow: 0px 3px 5px #444;-moz-box-shadow: 0px 3px 5px #444;box-shadow: 0px 3px 5px #444;\" href=\"xyz.com\"><img src=\"http://xyz.jpeg\" alt=\"img\" width=\"120px\" height=\"140px\"/></a><p style=\"position: absolute;margin-top: 170px; \"><b><i>Magazine Name</i></b></p><p style=\"position: absolute;margin-top: 20px;margin-left: 140px; margin-right: 3%;\"><i>Parents & Kids Magazine </i>is a resource for busy families, providing real-life solutions, sound advice, creative ideas and practical information to make their lives easier. Its informative articles and features appeal to parents—from conception through the teen years. Unlike national parenting magazines, <i>Parents & Kids </i>provides Jackson area families with information specific to their communities.</p></div><div id=\"\"style=\"position: absolute;margin-top: 190px;\"><p>To view this page in the online Digital Edition <a href=\"xyz.jpeg\"><b><i>click here</i></b></a></p><p>To view this page on your iPad do one of the following:</p><dl ><dd><p>- &nbsp &nbsp If you have the Magazine Central App on your iPad <a href=\"http://\"><b><i> click here.</i></b></a></p></li><dd><p>- &nbsp &nbsp If you do not have the Magazine Central App on your iPad <a href=\"http://\"><b><i> click here.</i></b></a></p></li></dl></div></body></html>"];

    Hi Kristina...
    Try "resetting" the devices...
    Hold the On/Off Sleep/Wake button and the Home button down at the same time for at least ten seconds, until the Apple logo appears.
    Then try again. If that didn't help, on one device tap Settings > General > Reset > Reset All Settings. If that helped, do the same for the other device.

  • How to create checkbox in mail content

    Hello,
    I have created a program to send mail. The requirement is to write some text in mail content along with pdf.
    The issue I am facing is that the mail content(body) should contain check boxes.
    At present the mail body fetches all text from SO10 standard text. I have tried inserting symbol in SO10 ( SAP-SYMBOLS ) but the out displays <697>,, instead of checkbox in mail.
    How should I create checkbox that are displayed in mail body.?
    <removed by moderator>
    Edited by: Thomas Zloch on Aug 10, 2011 12:01 PM

    go to the standard text > change editor > select PC editor
    now you can put an HTML TAG
    <br>
    <input type="checkbox" name="option1" value="Milk"> Milk
    <br>
    I can see the check box in SAP, but not in OUTLOOK... not sure whether we an issue with SAP or OUTLOOK or we entirely look in different way..

Maybe you are looking for

  • Can not update Itunes to 7.4... Unable to install Gear Drive???

    I had this problem before, but my daughter just received the new Ipod Classic and itunes, again needs to be updated. Why can no one answer this one question? When trying to update itunes I always get this error message: *"Unable to install the GEAR d

  • Message no. DS017 Program 4FBU does not exist

    When I run FM Report Painter "Budget Consumption", there is Message no. DS017 Program 4FBU does not exist. How could I resolve? Regards Ton

  • My iPod keeps saying "Downloading 46 of 94" in the photos

    I recently restored my iPod touch 4th generation running on 5.1.1 and in the photos app it says Downloading 46 of 94" when I don't have 94 potos. How do I fix this? It looks like this, and it won't stop, I already tried resetting it, and also my phot

  • Instructions for moving iTunes/files from Mac to Mac?

    I want to move my iTunes acct & files from my PBG4 to my iMac. Where can I get instructions & guidance to do this?

  • Update clone db to a point-in-time

    Hi guys, I am planning to implement a point in time recovery. I have a production database that I have successfully cloned by using hot backup and applying the necessary archived redo logs. I need to do this automatically daily. How can I do this? My