Printing header list of emails in a mailbox

Hello.
I want to print a list of all emails in a mailbox. The list should embody the information of the given columns of the mailbox, for example:
- sender
- recipient
- subject
- date and time of delivery
How can I get such a list?
TIA and kind regards, Friedrich
MBP C2D 2.16 GHz   Mac OS X (10.4.9)   2 GB RAM

I've never seen "1 of XX" in OS X that I can recall. Often, iOS will show that.
In OS X, typically, you'll see the number of messages in the titlebar (i.e. Unread (22 messages)). However, there seems to be an issue that if you view a smart folder, when you go back to the Inbox, you don't see the number of messages anymore. If you quit and restart Mail, the number appears. Perhaps that's what you're seeing?

Similar Messages

  • I need to print a listing of emails sent, not each individual email. I have the emails in a seperate folder.

    I am administer to an estate. I need to print a listing of emails sent on behalf of the estate. I do not need to print the contents of each email. I am holding them in a separate file.

    Contact your e-mail provider. Also, you could take screen shots.

  • In Mail, is there a way to print the list of mail activity in a folder without actually printing each email?

    In Mail, is there a way to print the list of mail activity in a folder without actually printing each email?
    Thanks to all.

    Actually, I noticed in "More Like This" questions similar to mine.  One of the suggestions worked perfectly.
    Command Shift 4 turns the arrow into a target scope.  Use it to take a screen shot of the area you want printed.  Thanks to all.

  • How to print header lines at the top of every page with Alv list display?

    Dear all,
    I need a requirement with printing issue. A program list should be printed with the function reuse_alv_list_display.
    The list has several pages and then can be printed but the header lines appear only first page when they printed. The other pages don't have header lines, they continue with the next record of the list remaining from previous page. I use the alv parameters as below:
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program       = l_repid
          i_callback_pf_status_set = 'ALV_PF_STATUS'
          is_layout                = ls_layo
          it_fieldcat              = lt_fcat
          i_default                = 'X'
          i_save                   = 'A'
          is_variant               = ls_variant
          it_events                = lt_events
        TABLES
          t_outtab                 = lt_data
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
    and lt_events as below:
      ls_event-name = 'END_OF_LIST'.
      ls_event-form = 'ALV_END_OF_LIST'.
      APPEND ls_event TO lt_events.
      ls_event-name = 'END_OF_PAGE'.
      ls_event-form = 'ALV_END_OF_PAGE'.
      APPEND ls_event TO lt_events.
      ls_event-name = 'TOP_OF_LIST'.
      ls_event-form = 'ALV_TOP_OF_LIST'.
      APPEND ls_event TO lt_events.
      ls_event-name = 'TOP_OF_PAGE'.
      ls_event-form = 'ALV_TOP_OF_PAGE'.
      APPEND ls_event TO lt_events.
    So, how can I print header lines for every page?
    Best Regards,

    Hello Saba,
    Your point might be very close to solution.
    Because in the selection screen of the program there are two radio buttons, one of them visits 'REUSE_ALV_COMMENTARY_WRITE' function and the other doesn't. The one which visits has a problem with header liens in every page when printing. But I couldn't find out the solution yet.
    reuse_alv_list_display uses 4 event and of course I call subroutine. There are end_of_list, end_of_page, top_of_list and top_of_page. I use in the subroutine for top_of_page:
      CALL FUNCTION 'LVC_TRANSFER_TO_SLIS'
        EXPORTING
          it_fieldcat_lvc         = gt_fcat
        IMPORTING
          et_fieldcat_alv         = lt_fcat
        EXCEPTIONS
          it_data_missing         = 1
          it_fieldcat_lvc_missing = 2
          OTHERS                  = 3.
      CALL FUNCTION 'REUSE_ALV_LIST_WIDTH_GET'
        EXPORTING
          it_fieldcat = lt_fcat
        IMPORTING
          e_width     = l_width.
    WRITE l_reptx TO l_reptx CENTERED.
      NEW-LINE.
      WRITE: AT (l_width) l_reptx CENTERED.
      SUBTRACT 10 FROM l_width.
      WRITE: AT l_width sy-pagno RIGHT-JUSTIFIED.
        CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
            it_list_commentary       = lt_header
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    Do you have other suggestions ?

  • When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page.

    When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page. I don't want to have to check off an additional 5 or 6 attributes each time I print out contact information. Is there a way to change the default setting for printing lists, so it is not just "phone," "photo," and "job title?"

    I have a user who wants to do this same thing. I did not find any way either to default the attributes to anything other than what you see the first time. Seems like such a trivial thing, hard to believe they do not allow it. I did find a program for this called iDress but I can't seem to download it from any links on the Internet. Not sure if it is free or not, but it was recommended by a link on the Mac support site.

  • Couldn't print header of ALV list

    Hi All,
    I couldn't print header for the alv list. Code is below.
    REPORT ztest123456 .
    TYPE-POOLS: slis.
    DATA: wa_fieldcat TYPE slis_fieldcat_alv,
          g_t_tfieldcat TYPE slis_t_fieldcat_alv,
          itab1 TYPE STANDARD TABLE OF cdhdr,
          g_t_event TYPE slis_t_event,
          wa_event TYPE slis_alv_event,
          g_pos TYPE i VALUE 1,
          head TYPE slis_t_listheader,
          wa_head TYPE slis_listheader.
    START-OF-SELECTION.
      SELECT * FROM cdhdr INTO TABLE itab1
      WHERE objectclas = 'COND_A'
        AND tcode = 'VK12'.
      SORT itab1 BY objectclas.
      wa_head-typ  = 'H'.
      wa_head-info = 'Records in cdhdr table'.
      APPEND wa_head TO head.
      PERFORM sub_fldctlg USING: 'OBJECTCLAS' 'ITAB1' 13 'Object class'.
          FORM sub_fldctlg                                              *
    FORM sub_fldctlg USING u_fname TYPE slis_fieldcat_alv-fieldname
                           u_tname TYPE slis_fieldcat_alv-tabname
                           u_outlen TYPE slis_fieldcat_alv-outputlen
                           u_seltext TYPE slis_fieldcat_alv-seltext_l.
      CLEAR wa_fieldcat.
      wa_fieldcat-col_pos = g_pos.          "Column Position
      wa_fieldcat-fieldname = u_fname.      "Field Name
      wa_fieldcat-tabname = u_tname.        "Table Name
      wa_fieldcat-outputlen = u_outlen.     "Output column Length
      wa_fieldcat-seltext_l = u_seltext.    "Column Header
      g_pos = g_pos + 1.                    "Incrementing column position
      APPEND wa_fieldcat TO g_t_tfieldcat.    "Appending field Catalog
    ENDFORM.
    *&      Form  sub_top
    FORM sub_top.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                it_list_commentary = head.
    ENDFORM.                    " sub_top
    END-OF-SELECTION.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
           IMPORTING
                et_events = g_t_event.
      READ TABLE g_t_event INTO wa_event WITH KEY name = 'TOP_OF_PAGE'.
      IF sy-subrc EQ 0.
        wa_event-form = 'SUB_TOP'.
        MODIFY g_t_event FROM wa_event INDEX sy-tabix.
      ENDIF.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
       EXPORTING
         i_callback_program             = sy-repid
         it_fieldcat                    = g_t_tfieldcat
         it_events                      = g_t_event
        TABLES
          t_outtab                       = itab1.
    Thanks in advance.

    Hi,
    The issue is resolved. I just pass the program name (SY-REPID) through a variable to the function module that displays list/grid. I came to know that these system variable behavior is UN-predictable in SAP and hence passed program name through a global variable instead of using a system variable value.
    Thanks..

  • How can i order a new printer head for my photoshop 7250e

    How can i order a new printer head for my photoshop 7250e  Is there a number i can ring to speak to someone or email address i can use or a web page where i can order one
    or a list of agents i can use to get it from
    Finding simple information seems impossible, no where does it mention spares or replacements 
    I have tried a lot of fault finding am convinced this is the problem  

    Hello NigelH1, 
    The Print Head for the Photosmart 7250  is not available outside HP.
    Please call HP Tech Support for further assistance.
    If you are in US , the toll free # is 1-800-474-6836 .
    If you are not in US , then log on to www.hp.com , at bottom-left corner there is a world map icon, click on it and then select the region you belong to, which would then provide support options for you for that region.
    Regards,
    Jabzi
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    Although I am an HP employee, I am speaking for myself and not for HP.

  • Mail rules, edit header list and search full content?

    I'm deserately trying to filter my emails.
    within the raw source of my emails I want to filter the emails that contain file:/// this is in the body of the email or the html part.
    Under
    Preferences > Rules > in the drop down menu edit header list, but what should I use to make it search this deep in the mail?
    This is an example of the email, and highlighted in BOLD is the area I wish to filter out into a separate email
    Many Thanks in advance
    Matt
    X-MimeOLE: Produced By Microsoft Exchange V6.5
    Received: by $$$$$.$$$.$$$
              id <01CCCAFD.69599D8F@$$$$$.$$$$$$.$$$>; Wed, 4 Jan 2012 16:25:02 -0000
    MIME-Version: 1.0
    Content-Type: multipart/alternative;
              boundary="----_=_NextPart_001_01CCCAFD.69599D8F"
    Content-class: urn:content-classes:message
    Subject: Bulletin Week 19
    Date: Wed, 4 Jan 2012 16:25:02 -0000
    Message-ID: <0F0A41CBB8261044A318554AA36AAD9C1641760E@$$$$$.$$$$$$.$$$>
    X-MS-Has-Attach:
    X-MS-TNEF-Correlator:
    Thread-Topic: Bulletin Week 19
    Thread-Index: AczK/Vmg71BiSfYQRrusUkYifKAcjQ==
    From: "Their Name" <[email protected]>
    To: "Everyone Else" <[email protected]>,
    This is a multi-part message in MIME format.
    ------_=_NextPart_001_01CCCAFD.69599D8F
    Content-Type: text/plain;
              charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    Hi All
    =20
    Please click on the link below to see the latest news.
    =20
    G:\Retail Ops Public\BULLETIN\2011-2012\Week 19\Bulletin - All Docs.doc =
    <file:///\\uranus\here\Retail%20Ops%20Public\BULLETIN\2011-2012\Week%20=
    19\Bulletin%20-%20All%20Docs.doc>=20
    =20
    Many thanks,
    =20
    Kind Regards,
    Their Name
    =20
    fashion =FC footprint=20
    Please do not print this email unless absolutely necessary=20
    =20
    ------_=_NextPart_001_01CCCAFD.69599D8F
    Content-Type: text/html;
              charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    <META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
    charset=3Diso-8859-1">
    <html xmlns:v=3D"urn:schemas-microsoft-com:vml" =
    xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
    xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
    xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" =
    xmlns=3D"http://www.w3.org/TR/REC-html40"><head><meta name=3DGenerator =
    content=3D"Microsoft Word 14 (filtered medium)"><style><!--
    /* Font Definitions */
    @font-face
              {font-family:Calibri;
              panose-1:2 15 5 2 2 2 4 3 2 4;}
    @font-face
              {font-family:"Comic Sans MS";
              panose-1:3 15 7 2 3 3 2 2 2 4;}
    @font-face
              {font-family:Webdings;
              panose-1:5 3 1 2 1 5 9 6 7 3;}
    /* Style Definitions */
    p.MsoNormal, li.MsoNormal, div.MsoNormal
              {margin:0cm;
              margin-bottom:.0001pt;
              font-size:12.0pt;
              font-family:"Times New Roman","serif";}
    a:link, span.MsoHyperlink
              {mso-style-priority:99;
              color:blue;
              text-decoration:underline;}
    a:visited, span.MsoHyperlinkFollowed
              {mso-style-priority:99;
              color:purple;
              text-decoration:underline;}
    span.emailstyle17
              {mso-style-name:emailstyle17;
              font-family:"Arial","sans-serif";
              color:windowtext;}
    span.emailstyle18
              {mso-style-name:emailstyle18;
              font-family:"Arial","sans-serif";
              color:navy;}
    span.emailstyle19
              {mso-style-name:emailstyle19;
              font-family:"Arial","sans-serif";
              color:navy;}
    span.emailstyle20
              {mso-style-name:emailstyle20;
              font-family:"Arial","sans-serif";
              color:navy;}
    span.emailstyle21
              {mso-style-name:emailstyle21;
              font-family:"Arial","sans-serif";
              color:navy;}
    span.EmailStyle22
              {mso-style-type:personal-reply;
              font-family:"Calibri","sans-serif";
              color:#1F497D;}
    .MsoChpDefault
              {mso-style-type:export-only;
              font-size:10.0pt;}
    @page WordSection1
              {size:595.3pt 841.9pt;
              margin:72.0pt 90.0pt 72.0pt 90.0pt;}
    div.WordSection1
              {page:WordSection1;}
    --></style><!--[if gte mso 9]><xml>
    <o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" />
    </xml><![endif]--><!--[if gte mso 9]><xml>
    <o:shapelayout v:ext=3D"edit">
    <o:idmap v:ext=3D"edit" data=3D"1" />
    </o:shapelayout></xml><![endif]--></head><body lang=3DEN-GB link=3Dblue =
    vlink=3Dpurple><div class="3DWordSection1"><p class="3DMsoNormal"><span =
    style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif"'>Hi =
    All</span><span lang=3DEN-US =
    style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif"'><o:p></o:p>=
    </span></p><p class="3DMsoNormal" style=3D'margin-left:144.0pt'><span =
    style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif"'> </spa=
    n><span lang=3DEN-US =
    style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif"'><o:p></o:p>=
    </span></p><p class="3DMsoNormal"><span =
    style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif"'>Please =
    click on the link below to see the latest news <o:p></o:p></span></p><p class="3DMsoNormal"><span =
    style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif"'><o:p> =
    </o:p></span></p><p class="3DMsoNormal"><span =
    style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497=
    D'><a =
    href=3D"file:///\\uranus\here\Retail%20Ops%20Public\BULLETIN\2011-2012\=
    Week%2019\Bulletin%20-%20All%20Docs.doc">G:\Retail Ops =
    Public\BULLETIN\2011-2012\Week 19\Bulletin - All =
    Docs.doc</a></span><span =
    style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif"'><o:p></o:p>=
    </span></p><p class="3DMsoNormal"><span =
    style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif"'><o:p> =
    </o:p></span></p><p class="3DMsoNormal"><span =
    style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif"'>Many =
    thanks,<o:p></o:p></span></p><p class="3DMsoNormal"><span =
    style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497=
    D'><o:p> </o:p></span></p><div><p class="3DMsoNormal"><span =
    style=3D'font-size:10.0pt;font-family:"Arial","sans-serif";color:#1F497D'=
    >Kind Regards,</span><span =
    style=3D'color:#1F497D'><o:p></o:p></span></p><p class="3DMsoNormal"><span =
    style=3D'font-size:10.0pt;font-family:"Arial","sans-serif";color:#1F497D'=
    >Their Name</span><span =
    style=3D'color:#1F497D'><o:p></o:p></span></p><p class="3DMsoNormal"><span =
    style=3D'font-size:10.0pt;font-family:"Arial","sans-serif";color:#1F497D'=
    >Communications Co-ordinator<o:p></o:p></span></p><p =
    class=3DMsoNormal><span =
    style=3D'font-size:10.0pt;font-family:"Arial","sans-serif";color:#1F497D'=
    >§§§</span><span =
    style=3D'color:#1F497D'><o:p></o:p></span></p><p class="3DMsoNormal"><span =
    style=3D'font-size:10.0pt;font-family:"Arial","sans-serif";color:#1F497D'=
    >01277 844429<o:p></o:p></span></p><p class="3DMsoNormal"><span =
    style=3D'font-size:10.0pt;font-family:"Arial","sans-serif";color:#1F497D'=
    ><o:p> </o:p></span></p><p class="3DMsoNormal"><b><span lang=3DEN-US =
    style=3D'font-size:10.0pt;font-family:"Comic Sans =
    MS";color:green'>fashion </span></b><span lang=3DEN-US =
    style=3D'font-size:13.5pt;font-family:Webdings;color:green'>=FC</span><b>=
    <span lang=3DEN-US style=3D'font-size:10.0pt;font-family:"Comic Sans =
    MS";color:green'> footprint</span></b><span lang=3DEN-US =
    style=3D'font-size:10.0pt;font-family:"Comic Sans MS";color:green'> =
    </span><span style=3D'color:#1F497D'><o:p></o:p></span></p><p =
    class=3DMsoNormal><span lang=3DEN-US =
    style=3D'font-size:10.0pt;font-family:"Comic Sans =
    MS";color:green'>Please do not print this email unless absolutely =
    necessary</span><span lang=3DEN-US style=3D'color:black'> </span><span =
    style=3D'color:#1F497D'><o:p></o:p></span></p></div><p class="3DMsoNormal" =
    style=3D'margin-left:144.0pt'> <span =
    lang=3DEN-US><o:p></o:p></span></p></div></body></html>
    ------_=_NextPart_001_01CCCAFD.69599D8F--

    You need to copy the XSL files from
    /usr/share/wikid/lib/apple_templates
    to
    /Library/Application Support /Apple/WikiServer/Themes/custom theme
    and then modify default.xsl in your theme folder.
    Message was edited by: onisama

  • Can't print message list?

    I have been looking for a way to print a list of messages from Mail.app.
    After about 2 weeks of searching I have nothing. I did find out that if I had an older version of Mail I could print summaries that had only the header information I need but it looks like upgrading actually removed that rather vital capability.
    Does anyone know how I can print a list of the emails I have sent and received from Mail.app?
    I already know that I can do this with Microsoft's Entourage and it seems like such a simple thing that I must be missing something. Or could it be that the Tiger Mail.app is just incomplete?
    Any help would be appreciated.
    Mike
    Intel iMac   Mac OS X (10.4.7)   Lots of other Macs around

    Welcome to Apple Discussions!
    You won't believe the solution I found. The Unix command "head"
    Here's how it works, you go to the directory that the mail is found on the Finder.
    Open Applications -> Utilities -> Terminal
    Dig into the folder to find the emlx files.
    And type in the terminal:
    head -20 *.emlx | more
    That will show the first 20 lines of each e-mail in that folder.
    You can change 20 to any value you want.
    Once done, you can copy/paste into TextEdit or another word processor.

  • Since upgrading to Mountain Lion 10.8.2, I can no longer print head shot photos from CONTACTS.  Please assist.

    Before upgrading to Mountain Lion, I was able to print head shots - in ALPHABETICAL order, mind you - from Contacts.  Why do we not have this feature any more?  Please bring back the way it was!  Thank you!
    Issue printing from Contacts: can't print head shots and it's no longer in alphabetical order.
    Please don't tell me I can do this from iCloud, because it only prints one contact at a time.

    Click GO from Finder and hold down the Option key. You'll see the Library folder in the list. Or you can click GO  and select Go To Folder and type ~/Library. This will open the user\Library folder.

  • How can I control automatic print head cleaning every time my Officejet Pro 8500A Premium starts up?

    In general we really like our new Officejet, but we're very frustrated by the automated start up procedure.  Every time we turn it on it does a self check and then cleans the print heads.  It's bothersome for two reasons: 1) We want to print quickly, not wait for 5 minutes.  2) We're worried that all this cleaning is using up our valuable ink.
    We recently had to replace all the color print cartridges, and I think one cause for the other's depletion was all this cleaning.
    We're using HP cartridges.
    It's possible that this printer is intended for an office environment where it just stays on 24x7.   For our occasional use, we normally turn it on when we need it and turn it off when we're done. If the power consumption is low enough (less than 5 watts) I'd consider leaving it on as a possible work-around.
    I did my best to search FAQ and postings to see whether there was already an answer to this issue - but couldn't find one.
    This question was solved.
    View Solution.

    cattyprinter wrote:
    1st installation failed --waited 3 weeks to have another go --installed on line all working --So Notation said
    scans ok  fax set up ok .On start up IT goes thru ALIGNING PRINTHEAD  --not one here print done and 3 1/2 cartridges GONE .Tooooo BEEEEE expensive to use   Where is the users manual --?None only double side page of wire connections  --a book of one page english and balance in goobly **bleep** .Never again will I spend my measely pension on a HP printer  Who is going to replace my cartridges ? Try and have a telephone query  OH NO no speak only info email that says this is generated email with no info! Talk about easy money for rubbish --tell your mates HP is a NO GOER        -:manmad:
    There should have been a manual on the included CD.  You can also download a manual from HP here. 
    If you need to Contact HP you can find phone numbers here.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • How to I remove the 'panel' underneath the Header list, and above the mail Preview pane. Contains 'from' 'subject' 'reply' buttons to name a few. Takes up too much space.

    How do I remove the 'panel' underneath the Header list, and above the email Preview Pane. Contains 'from', 'subject', 'to', 'reply', 'forward' buttons to name a few. Takes up space.
    == This happened ==
    Every time Firefox opened

    setSize (600, 200);orpack ();Kind regards,
      Levi
    PS:
        int i;
    parses to
    int i;
    , but
    [code]    int i;[code[i]]
    parses to
        int i;

  • Sending Multiple Abap List by email

    Dear All,
    I am using SO_NEW_DOCUMENT_ATT_SEND_API1 func module to send abap list via email.
      Program logic is like this .
    with in a loop of purchase group(PG) For each value a report is submitted for list is send to receiver.
    submit ZMM_PREQ_SEND3  WITH EKGRP = itab-EKGRP
    exporting list to memory and return.
    and then using LIST_FROM_MEMORY function to read from memory.
    This code is working fine for single entry but for more than one PG only last generated abap list is received.
    How i can sent multiple lists.
    Thanks
    Shantanu

    Hi,
    Check out this code .
    Pls reward if useful.
    REPORT ZSD_YJTEST1 .
    DATA: ST1 TYPE STRING VALUE 'YATIN'.
    DATA: CR(2) TYPE X VALUE '0D0A'.
    DATA: ST2 TYPE STRING VALUE 'JOSHI'.
    DATA IT_LIST TYPE STANDARD TABLE OF ABAPLIST WITH HEADER LINE.
      SUBMIT ZAA_TABW_LISTE EXPORTING LIST TO MEMORY AND RETURN.
      CALL FUNCTION 'LIST_FROM_MEMORY'
           TABLES
                LISTOBJECT = IT_LIST
         EXCEPTIONS
              NOT_FOUND  = 1
              OTHERS     = 2
    DATA: LT_ASCI TYPE STANDARD TABLE OF SOLISTI1 WITH HEADER LINE.
    CALL FUNCTION 'LIST_TO_ASCI'
       EXPORTING
            LIST_INDEX         = -1
         TABLES
              LISTASCI           = LT_ASCI
              LISTOBJECT         = IT_LIST
         EXCEPTIONS
              EMPTY_LIST         = 1
              LIST_INDEX_INVALID = 2
              OTHERS             = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT LT_ASCI.
       IF SY-TABIX > 1 .
       CONCATENATE CR LT_ASCI-LINE INTO LT_ASCI-LINE.
       MODIFY LT_ASCI.
       ENDIF.
    ENDLOOP.
    DATA LISTTAB_OUT    LIKE SOLISTI1       OCCURS 0 WITH HEADER LINE.
       CALL FUNCTION 'TABLE_COMPRESS'
          IMPORTING
               COMPRESSED_SIZE =
            TABLES
                 IN              = IT_LIST
                 OUT             = LISTTAB_OUT
          EXCEPTIONS
               COMPRESS_ERROR  = 1
               OTHERS          = 2
       IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
      DATA: DOC_DATA LIKE SODOCCHGI1,
            DOC_INFO LIKE SOFOLENTI1.
      DOC_DATA-OBJ_LANGU = SYST-LANGU.
      DOC_DATA-OBJ_NAME = 'Report-Liste'(001).
      MOVE 'EEEE' TO DOC_DATA-OBJ_DESCR.
      DATA: P_DTP TYPE SOODK-OBJTP .
      P_DTP = 'RAW'.
      CALL FUNCTION 'SO_DOCUMENT_INSERT_API1'
           EXPORTING
                FOLDER_ID                  = 'FOL18          4 '
                DOCUMENT_DATA              = DOC_DATA
                DOCUMENT_TYPE              = P_DTP
           IMPORTING
                DOCUMENT_INFO              =  DOC_INFO
           TABLES
              OBJECT_HEADER              =
                OBJECT_CONTENT             = LT_ASCI
               contents_hex               =
              OBJECT_PARA                =
              OBJECT_PARB                =
         EXCEPTIONS
              FOLDER_NOT_EXIST           = 1
              DOCUMENT_TYPE_NOT_EXIST    = 2
              OPERATION_NO_AUTHORIZATION = 3
              PARAMETER_ERROR            = 4
              X_ERROR                    = 5
              ENQUEUE_ERROR              = 6
              OTHERS                     = 7
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    DATA: LS_ATT LIKE SOATTCHGI1.
    DATA: LT_AHD TYPE STANDARD TABLE OF SOLISTI1 WITH HEADER LINE.
    LS_ATT-OBJ_NAME = 'MYTEST'.
    LS_ATT-OBJ_DESCR = 'URTEST'.
    LS_ATT-OBJ_LANGU = 'DE'.
           LS_ATT-ATT_SIZE = DOC_INFO-DOC_SIZE.
    DATA: LS_AINF TYPE SOATTINFI1.
    CALL FUNCTION 'SO_ATTACHMENT_INSERT_API1'
         EXPORTING
              DOCUMENT_ID                = DOC_INFO-DOC_ID
              ATTACHMENT_DATA            = LS_ATT
              ATTACHMENT_TYPE            = 'TXT'
        IMPORTING
             ATTACHMENT_INFO            = LS_AINF
         TABLES
              ATTACHMENT_HEADER          = LT_AHD
              ATTACHMENT_CONTENT         = LT_ASCI
            contents_hex               = listtab_out
        EXCEPTIONS
             DOCUMENT_NOT_EXIST         = 1
             ATTACHMENT_TYPE_NOT_EXIST  = 2
             OPERATION_NO_AUTHORIZATION = 3
             PARAMETER_ERROR            = 4
             X_ERROR                    = 5
             ENQUEUE_ERROR              = 6
             OTHERS                     = 7
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LS_ATT-OBJ_NAME = '2MYTEST'.
    LS_ATT-OBJ_DESCR = '2URTEST'.
    LS_ATT-OBJ_LANGU = 'DE'.
           LS_ATT-ATT_SIZE = DOC_INFO-DOC_SIZE.
    CALL FUNCTION 'SO_ATTACHMENT_INSERT_API1'
         EXPORTING
              DOCUMENT_ID                = DOC_INFO-DOC_ID
              ATTACHMENT_DATA            = LS_ATT
              ATTACHMENT_TYPE            = 'TXT'
        IMPORTING
             ATTACHMENT_INFO            = LS_AINF
         TABLES
              ATTACHMENT_HEADER          = LT_AHD
              ATTACHMENT_CONTENT         = LT_ASCI
            contents_hex               = listtab_out
        EXCEPTIONS
             DOCUMENT_NOT_EXIST         = 1
             ATTACHMENT_TYPE_NOT_EXIST  = 2
             OPERATION_NO_AUTHORIZATION = 3
             PARAMETER_ERROR            = 4
             X_ERROR                    = 5
             ENQUEUE_ERROR              = 6
             OTHERS                     = 7
    DATA: REC TYPE STANDARD TABLE OF SOOS1 WITH HEADER LINE.
    REC-RECEXTNAM = '[email protected]'.
    REC-RECESC = 'E'.
    REC-SNDART = 'INT'.
    REC-MAILSTATUS = 'E'.
    REC-SNDPRI = '1'.
    APPEND REC.
    DATA: FLAG TYPE C .
    FLAG  = '1'.
    IF FLAG = '1'.
      CALL FUNCTION 'SO_OBJECT_SEND'
           EXPORTING
              EXTERN_ADDRESS             = ' '
                FOLDER_ID                  = 'FOL18          4 '
              FORWARDER                  = ' '
              OBJECT_FL_CHANGE           = ' '
              OBJECT_HD_CHANGE           = ' '
                OBJECT_ID                  = DOC_INFO-OBJECT_ID
               OBJECT_TYPE                = 'ALI'
              OUTBOX_FLAG                = ' '
              OWNER                      = ' '
              STORE_FLAG                 = ' '
              DELETE_FLAG                = ' '
                SENDER                     = SY-UNAME
              CHECK_SEND_AUTHORITY       = ' '
              CHECK_ALREADY_SENT         = ' '
              GIVE_OBJECT_BACK           =
              ORIGINATOR                 = ' '
              ORIGINATOR_TYPE            = 'J'
              LINK_FOLDER_ID             = ' '
         IMPORTING
              OBJECT_ID_NEW              =
              SENT_TO_ALL                =
              ALL_BINDING_DONE           =
              OFFICE_OBJECT_KEY          =
              ORIGINATOR_ID              =
           TABLES
              OBJCONT                    =
              OBJHEAD                    =
              OBJPARA                    =
              OBJPARB                    =
                RECEIVERS                  = REC
              PACKING_LIST               =
              ATT_CONT                   =
              ATT_HEAD                   =
              NOTE_TEXT                  =
              LINK_LIST                  =
              APPLICATION_OBJECT         =
         EXCEPTIONS
              ACTIVE_USER_NOT_EXIST      = 1
              COMMUNICATION_FAILURE      = 2
              COMPONENT_NOT_AVAILABLE    = 3
              FOLDER_NOT_EXIST           = 4
              FOLDER_NO_AUTHORIZATION    = 5
              FORWARDER_NOT_EXIST        = 6
              NOTE_NOT_EXIST             = 7
              OBJECT_NOT_EXIST           = 8
              OBJECT_NOT_SENT            = 9
              OBJECT_NO_AUTHORIZATION    = 10
              OBJECT_TYPE_NOT_EXIST      = 11
              OPERATION_NO_AUTHORIZATION = 12
              OWNER_NOT_EXIST            = 13
              PARAMETER_ERROR            = 14
              SUBSTITUTE_NOT_ACTIVE      = 15
              SUBSTITUTE_NOT_DEFINED     = 16
              SYSTEM_FAILURE             = 17
              TOO_MUCH_RECEIVERS         = 18
              USER_NOT_EXIST             = 19
              X_ERROR                    = 20
              OTHERS                     = 21
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDIF.
    WRITE DOC_INFO-DOC_ID.

  • I'm unable to print from safari and email on iPad 2, I'm newbie

    Hi there,
    I have the new iPad 2, I understand that it should be able to print from safari and email. I've seen AirPrint floated around, but it doesn't appear to be an app in the app store since my searches come up empty. I've printed before from my iTouch using PrintMagic but it's cut and paste to plain text document and I print wirelessly to the printers connected to my iMac.
    I would really like the email and the web page to remain formated. I've seen Print Central but it seems convoluted to get it to print, I've also seen a youTube video print directly from Safari and email programs that's desirable but the videos didn't show how to set up printer (it's kind of Walter Foster) there seems to be some steps that are missing. Could someone fill in the blanks? it would be appreciated.
    Thanks
    JLS

    Ok.  Airprint is built into the ipad.  There is no app. It is a printer driver system that some printer manufacturers have incorporated and some have not.
    If you have an airprint printer, then printing is simple and formatted like you expect itmto be.
    If you do not have an airprint enabled printer, then you need an app, like the ones you mentioned, and are stuck with the issues you mention.
    Nobody wants to buy a new printer.  But they start at well under 100.  The next time you need to refill your rprint cartriges, you might find it worthwhile to do the switch to a new airprint printer.
    Here is the current list of airprint enabled printers.
    http://support.apple.com/kb/ht4356

  • Is it possible to print a list of files bet specific dates in PSE7?

    I am trying to print a list of all the photos inc the shot date so I can check I have scrapbook layouts for all the photos in 2009.  I can organise the photos in date order using the thumbnail view but I can't sit there with my albums and check the layouts are in the correct order so would like a printout.  Can it be done in PSE7?

    You might want to look for an add-on for this.
    Although Firefox has a feature to export your bookmarks to an HTML file which you could view in Firefox and copy from or print as with any other web page, it only shows the descriptive text and not the website address, so I suspect that isn't going to be very useful.
    If you want to try to work with the built-in features, I suggest:
    (1) Export your bookmarks to an HTML file; save it in a convenient location such as your Desktop or My Documents. This article has the steps: [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]]
    (2) Open that HTML file in Firefox as a web page. You can double-click it (if it has a .htm or .html extension), or drag and drop the file onto an open tab, or use the menu: tap the Alt key > File menu > Open File.
    (3) Locate the portion of the file you want to print, and select it. ''Do not print from Firefox because the selection printing generates needless blank pages.'' Instead, copy the selected bookmarks and paste into a blank word processing document or new email message to yourself. Then you can print from there.

Maybe you are looking for