Printing format with filtered list

When I filter my list in numbers there is blank last page when printing(pdf) it.
Does anybody know how to get rid of this last blank page? So that the printing area is just as big as the filtered list.
Thank you.

I solved it myself.
After unfiltering the list, then hiding some lines and then unhide the lines and filter the list again the blank page was gone.

Similar Messages

  • Filtering lists in Syclo Agentry SAP Work Manager application

    Hello Experts,
    I am trying to filter a displayed list at run time ( while running the application). the list fetches the data from an existing object.
    I am trying to customize few things while displaying the filters on the list.
    So far, I could only find a single property under Agentry application configuration to deal with filtering list values, as per the screenshot below.
    Moreover, I could see that I can allow filtering the list based on a set of particular fields.
    Here, I cannot determine if the Agentry Editor will allow me to customize the look and feel of the filters being displayed.
    Is there any other way I can filter the lists and which provides me with the flexibility to customize the look and feel of the filters being displayed?
    For example, i could add an image in the list and might want to filter the list based on a particular image. will this be possible and supported by SAP Work Manager 5.3 (Agentry 6.0) ?

    Hi Arihant,
         I tried this filter and sort list tile in ATE. Please refer my example regarding the filtering and sorting:
    Step1: No Filter.
    Here there is no filter, so ATE is not hvaing any filtering.
    Step2: Add filtering property to the List Tile.
    Filtering properties:
    Test in ATE.
    Click on that filter symbol, we will get the following.
    Step3: Add Sorting to the List Tile.
    Sort Properties are: Add the CompanyName as sort property
    Check in ATE.
    Apply sort by clicking the symbol
    List rows are sorted based on company name as below:
    I to checked in iphone but the sort property is not coming. I will check the gaps and update.
    Thanks,
    Swaroopa.

  • Print out lists of formats with their settings

    I would like the ability to print out a complete list of paragraph, character, table, and cross-reference formats (with their settings) for inclusion in a local style guide.

    Julee,
    Those files were .zip files wrapped in 7zip wrappers - very strange. Any way, I've attached the MIF_munch here in a single .zip file.
    Note: the file is named Mif_munch.zip.txt to fool the upload file type restrictions. Just delete the .txt extension and unzip.
    It might take a few hours or so to clear the scanning queue.

  • T.code FBL5N: a problem with the print of the output list

    Hi All,
    with reference to the t.code FBL5N, I have  a problem with the print of the output list of the report.
    When I execute the print, I obtain one customer for each page printed.
    I wonder if is possible to obtain more customers for each page printed.
    Could anyone help me?
    Thanks
    Gandalf
    Edited by: Umberto Gandalf on Dec 21, 2008 10:36 PM

    Hi,
    Though personally i havent tried this option, check the same
    Go to Menu: Settings >> Switch List
    This will make the value displayed in ALV format and then try taking print outs.
    Regards,
    Sridevi

  • On the Wall Street Journal website, I am not able to print out of the print format. Never had a problem before with this.

    I click on the print icon under an article in the Wall Street Journal. A new window opens with the article in print format. When I print, I get blank paginated pages equaling the length of the article. On the top left hand corner of the page will appear the title of the article; on the top right hand corner will appear the web address of the article; on the bottom left hand corner will appear the pagination; and on the bottom right hand corner will be the date and time of the printing. This is just how any article would print; the only difference being that I'm not getting the content of the article printed.
    This has only started a couple of days ago. I do not have this issue with any other publication, yet this problem doesn't exist with other browsers.

    I don't have a WSJ account to test... Here is some general advice:
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    This will open a window listing the site's cookies, which you can remove individually.
    Then try reloading the page and logging back in. Does that help?

  • How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?

    How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?
    I currently run OS X 10.10.1
    Now i have been trying to work on this for a while now and what i want to do should be simple but its apparently not.
    Here is an example of what i want to happen.
    I will have 2 tabs: Contact | Sales
    Now Contacts will have the list of names and various information about a customer, While Sales will have one drop-down box for each Cell Row that will show the names of the person in tab contacts
    for what i am wanting to do i cant use the data format pop-up menu because the list is edited everyday several times a day.
    Now how do i do this, Excel can do this so how can numbers do it?

    Hi Shegra,
    Paste this into a applescript editor window and run it from there. In the script you may need to adjust the four properties to agree with your spreadsheet. Let me know if you have any questions.
    quinn
    Script starts:
    -- This script converts column A in one table into an alphabetized list of popups. It copies the last cell in that column. Then reverts the column to text. It then refreshes popups in column A of a data table starting with a user defined row.
    property DataEntrySheet : "Sheet 1" --name of sheet with popups to be refreshed
    property DataEntryTable : "Sales" --name of table with popups to be refreshed
    set copyRange to {}
    property PopValueSheet : "Sheet 1" --name of sheet with popup values table
    property PopValueTable : "Contacts" --name of table with popup values
    set PopStartRow to {}
    tell application "Numbers"
      set d to front document
      set ps to d's sheet PopValueSheet
      set pt to ps's table PopValueTable
      set s to d's sheet DataEntrySheet
      set t to s's table DataEntryTable
      set tf to t's filtered --this records filter setting on data Entry Table
      display dialog "Start from row #..." default answer "" with icon 1 -- with icon file "Path:to:my.icon.icns" --a Week # row
      set PopStartRow to {text returned of result}
      tell pt --convert list to alphabetized popups
      set ptRows to count rows
      set copyRange to ("A2:" & name of cell ptRows of column "A")
      set selection range to range copyRange
      set selection range's format to text
      sort by column 1 direction ascending
      set selection range's format to pop up menu
      -- popupsmade
      set selection range to cell ptRows of column 1 of pt
      set v to value of cell ptRows of pt
      end tell
      activate application "Numbers"
      tell application "System Events" to keystroke "c" using command down
      tell pt
      set selection range to range copyRange
      set selection range's format to text
      end tell
      tell t
      set filtered to false
      set tRows to count rows
      set pasteRange to ((name of cell PopStartRow of column "A") & ":" & (name of cell tRows of column "A"))
      set selection range to range pasteRange
      tell application "System Events" to keystroke "v" using command down
      set filtered to tf
      end tell
    end tell

  • Printing Date Book without "list" format - Palm TX

    I have an old Palm TX and am trying to print a day just as it shows in my Palm software-with all the times down the left hand side of the screen.  But everytime I print, it just prints it in "list format".  Is there any way to print other than in "list format"?  I even tried to Export it to Excel or Word and all it would export to was a DBA document - what the heck is that?  PLEASE HELP!!  I have friends and family visiting for the next 10 days and I wanted to print out each day with everyone's schedule but NOT in a list format. 

    DBA stands for Datebook Archive. So you can create a backup of your data. As for your issue is when you pick the date in the Print option. This setting set up the items to print in List view only. If you need to print the calendar you can trick your PC to think its a certain day and use the Day option when printing. This should get the result you need.

  • How can I print out a hardcopy list of my bookmarks with the URLs? in English

    I want to print out a hardcopy listing of my bookmarks with URLs, How do I do this?

    You can make the menu bar appear by presssing the Alt key. You can print from the File menu.

  • I am unable to print a proper playlist in the jewel case format.  Lines print on top of one another.  No problem with other print formats

    I am unable to properly print a playlist in the jewel case format.  All lines bunch together.  I have no problem with other print formats.  Help please.

    If it is a USB powered external, no AC adpater, that may be the reason. Mac notebooks are known to have low powered USB ports. You can get around that with a Y USB cable to connect to 2 USB ports at the same time.

  • SAP Query format issue (with ABAP list)

    Hi All,
    I had a requirement to remove all unecessary formatting and text from a SAP query report which can be read by a third party software system. We need only Header line and  report data (spaced by Tab).
    I have removed all formatting from the report and changed the output format from "SAP list viewer" to "ABAP list" .
    The issue is that the report shows material number with 12 digits in output but when we download to file then it adds extra six "0" and makes the Material Number field as 18 digit.
    we have already maintained new length as 12 againts the standard length 18 for material number(under field output option)
    Please suggest how to get rid of extra digits generated during downloading.
    Please help,
    Thanks,
    Rohit

    Hi Brad,
    Currently we execute query with SQ01 and from the output screen the user direclty saves the file as "local file..."
    The output format is "abap list". We are able to get the exact format but the only problem is with material number. I cant make changes in the program. Is there a way to download it without changing the 12 character ( as displayed on the report output)
    Thanks for help.
    Rohit

  • I am trying to print keynote slides in handout format with notes.  The notes cutoff.  Is there a solution to this problem?

    I am trying to print keynote slides in handout format with notes.  The notes are cut-off.  Is there a solution to this problem?

    You can also turn off the automatic capitalization if you find it gets in the way too often: 
    Settings -> Keyboard -> Auto-Capitalization
    Regards.

  • RG1 printing format for A4 size paper with all records

    RG1 register print not showing all details (Qty.) through J2i6 and no proper printing format for A4 size.
    Is there any std. printing format for RG1 ?
    Please give the std. ready format for RG1....
    THANKS.

    Your subject title mentions A4 sized paper, the body mentions US Letter size.
    Assuming you want one half of a letter-size for each page, create the page size as portrait, 5.5" wide, 8.5" tall.
    Thread in logical order, page 1 through...how many ever pages. You should have a page count evenly divisible by 4.
    Export to PDF as normal...single pages.
    Open the PDF in Acrobat or Reader, print the booklet from it.
    Mike

  • How to set the default print format for the report

    Hi,
    In ALV report , i want to defalut specific print format and printer for background processing .
    Any clues!!!!!!!!!
    Regards
    Swatantra

    Hi
    Please check below code:
    DATA: PRIPAR TYPE PRI_PARAMS,
          ARCPAR TYPE ARC_PARAMS,
          LAY    TYPE PRI_PARAMS-PAART,
          LINES  TYPE PRI_PARAMS-LINCT,
          ROWS   TYPE PRI_PARAMS-LINSZ.
    DATA: val(1).
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
        destination            = 'LOCL'   " <--- Printer Name
        no_dialog              = 'X'
        immediately            = ' '
      IMPORTING
        out_archive_parameters = arcpar
        out_parameters         = pripar
        valid                  = val
      EXCEPTIONS
        archive_info_not_found = 1
        invalid_print_params   = 2
        invalid_archive_params = 3
        OTHERS                 = 4.
    IF sy-subrc <> 0.
    *     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *** Specifying the page formats
        pripar-linct = 65.
        pripar-linsz = 190.
        pripar-paart = 'X_65_132'.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
        in_archive_parameters  = arcpar
        in_parameters          = pripar
        no_dialog              = 'X'
    *      list_name              = 'Testing Purpose Only' "l_list
      IMPORTING
        out_archive_parameters = arcpar
        out_parameters         = pripar
        valid                  = val
      EXCEPTIONS
        archive_info_not_found = 1
        invalid_print_params   = 2
        invalid_archive_params = 3
        OTHERS                 = 4.
    IF sy-subrc EQ 0.
      NEW-PAGE PRINT ON
      NEW-SECTION
      PARAMETERS pripar
      ARCHIVE PARAMETERS arcpar
      NO DIALOG.
    ELSE.
      write:/ 'Unable to create spool'.
    ENDIF.
    So now a spool is created with the required print parameters...
    The list that is created from here will be in the spool.
    Once the list is completed, close it with NEW-PAGE PRINT OFF.
    Hope this helps.
    Regards
    Eswar

  • Printing logo with ALV report output?

    Hi all,
    I have written a sinple program to display a report output in ALV grid format and inserted a logo in it usingh standrad FM. Though the logo is inserted successfully displaying with list ,  but  when i am clicking on print preview the logo is missing.
    Please help me on how to print the logo with the list?
    Thanks,
    Vamshi.

    Hi Krishna,
    -->Firstly go to T-Code OAER.
    -->Give Class Name as PICTURES
    -->Give Class Type as OT
    -->Give Object Key as(watever the name you wish to give)
    -->Example key 1000
    -->Click on Execute.
    Here you will get Standard Document Types.
    Select which ever you want i.e., Attachment,Screen,Template ,etc.
    Double click on Attchment it will ask you the File on the Desktop.
    Upload the image.
    Now you can see the Image in the Folder PICTURES.
    Now go to the Report.
    Function Module 'REUSE_ALV_COMMENTARY_WRITE'.
                             i_logo = '1000'.
    Hope this will Help you.
    With Regards,
    Sharmishta.

  • To download the print format and mail it on giving a range of customers

    Hai
    i have a smartform attached program to a report.
    my selection screen contains only customer number (in range) and sales office code.
    on executing the program will generate a printfile file for each customers.
    i posted this question already and got the reply but the selection screen has only one parameter called p_mail(where u pass the address straight away).but i need the pdf format to get splitted for each and every customers and to mail them automatically.
    where to write the coding for fetching the email addressess of the customers and how to loop it in order to send for all the customers automaticlly.
    how to pass the parameters in the function module.
    please explain to me clearly.i am in need of help.
    this is the program i got for sending one mail.i get confused as how this will work for the range of customers.somebody please solve me this problem.kindly tell me where to do the changes
    REPORT  ztest_smartform.
    DATA:it_nfal      TYPE nfal OCCURS 0 WITH HEADER LINE.
    DATA:fm_name      TYPE rs38l_fnam.
    DATA:ssfctrlop    TYPE ssfctrlop.
    DATA:ssfcompop    TYPE ssfcompop.
    DATA:it_otf_data  TYPE ssfcrescl.
    DATA:it_otf_final TYPE itcoo OCCURS 0 WITH HEADER LINE.
    DATA:bin_filesize TYPE i.
    DATA:it_pdfdata   TYPE TABLE OF tline.
    DATA:it_pdf       TYPE TABLE OF solisti1.
    "  Mail related declarations
    "Variables
    DATA :
         g_sent_to_all   TYPE sonv-flag,
         g_tab_lines     TYPE i.
    "Types
    TYPES:
         t_document_data  TYPE  sodocchgi1,
         t_packing_list   TYPE  sopcklsti1,
         t_attachment     TYPE  solisti1,
         t_body_msg       TYPE  solisti1,
         t_receivers      TYPE  somlreci1,
         t_pdf            TYPE  tline.
    "Workareas
    DATA :
         w_document_data  TYPE  t_document_data,
         w_packing_list   TYPE  t_packing_list,
         w_attachment     TYPE  t_attachment,
         w_body_msg       TYPE  t_body_msg,
         w_receivers      TYPE  t_receivers,
         w_pdf            TYPE  t_pdf.
    "Internal Tables
    DATA :
         i_document_data  TYPE STANDARD TABLE OF t_document_data,
         i_packing_list   TYPE STANDARD TABLE OF t_packing_list,
         i_attachment     TYPE STANDARD TABLE OF t_attachment,
         i_body_msg       TYPE STANDARD TABLE OF t_body_msg,
         i_receivers      TYPE STANDARD TABLE OF t_receivers,
         i_pdf            TYPE STANDARD TABLE OF t_pdf.
    PARAMETERS p_mail type char120.
    *START-OF-SELECTION.
    START-OF-SELECTION.
      "select data
      SELECT * FROM nfal INTO TABLE it_nfal UP TO 10 ROWS.
      ssfctrlop-no_dialog = 'X'.
      ssfctrlop-preview   = 'X'.
      ssfctrlop-getotf    = 'X'.
      ssfcompop-tddest = 'LP01'.
    Continued
    Venkat.O  
    Posts: 1,036
    Registered: 12/2/05
    Forum Points: 1,782 
      Re: to down load the print format to pdf and sent the data thru the mail  
    Posted: Jul 15, 2009 7:31 AM    in response to: amalrose         Reply 
    from above
      "Get Function module name for given smartform
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname = 'ZTEST_SMARTFORM'
        IMPORTING
          fm_name  = fm_name.
      "Call Smartform function module.
      CALL FUNCTION fm_name
        EXPORTING
          control_parameters = ssfctrlop
          output_options     = ssfcompop
        IMPORTING
          job_output_info    = it_otf_data
        TABLES
          it_nfal            = it_nfal.
    ***********appending the otf data into the final table*********************
      it_otf_final[] = it_otf_data-otfdata[].
    converting OTF data into pdf data**************************
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
        IMPORTING
          bin_filesize          = bin_filesize
        bin_file              =
        TABLES
          otf                   = it_otf_final
          lines                 = it_pdfdata[]
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          err_bad_otf           = 4
          OTHERS                = 5.
    To send data as email attachment, we need to have a table of SOLISTI1.
    This table contains line size of 255 characters. Below function module
    does the trick of changing the table from X character sized lines into
    any given Y character sized lines.
      REFRESH it_pdf[].
      CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
        EXPORTING
          line_width_dst              = '255'
        TABLES
          content_in                  = it_pdfdata[]
          content_out                 = it_pdf[]
        EXCEPTIONS
          err_line_width_src_too_long = 1
          err_line_width_dst_too_long = 2
          err_conv_failed             = 3
          OTHERS                      = 4.
      IF sy-subrc  0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
    Continued
    Venkat.O  
    Posts: 1,036
    Registered: 12/2/05
    Forum Points: 1,782 
      Re: to down load the print format to pdf and sent the data thru the mail   
    Posted: Jul 15, 2009 7:32 AM    in response to: amalrose         Reply 
    from above
        "Subject of the mail.
        w_document_data-obj_name  = 'MAIL_TO_HEAD'.
        w_document_data-obj_descr = 'Regarding Mail Program by SAP ABAP'.
        "Body of the mail
        w_body_msg = 'This is body of mail msg.'.
        APPEND w_body_msg TO i_body_msg.
        CLEAR  w_body_msg.
        "Write Packing List for Body
        DESCRIBE TABLE i_body_msg LINES g_tab_lines.
        w_packing_list-head_start = 1.
        w_packing_list-head_num   = 0.
        w_packing_list-body_start = 1.
        w_packing_list-body_num   = g_tab_lines.
        w_packing_list-doc_type   = 'RAW'.
        APPEND w_packing_list TO i_packing_list.
        CLEAR  w_packing_list.
        "Write Packing List for Attachment
        w_packing_list-transf_bin = 'X'.
        w_packing_list-head_start = 1.
        w_packing_list-head_num   = 1.
        w_packing_list-body_start = 1.
        DESCRIBE TABLE it_pdf LINES w_packing_list-body_num.
        w_packing_list-doc_type   = 'PDF'.
        w_packing_list-obj_descr  = 'PDF Attachment'.
        w_packing_list-obj_name   = 'PDF_ATTACHMENT'.
        w_packing_list-doc_size   = w_packing_list-body_num * 255.
        APPEND w_packing_list TO i_packing_list.
        CLEAR  w_packing_list.
        "Fill the document data and get size of attachment
        w_document_data-obj_langu  = sy-langu.
        READ TABLE it_pdf INTO w_pdf INDEX g_tab_lines.
        w_document_data-doc_size = ( g_tab_lines - 1 ) * 255 + STRLEN( w_attachment ).
        "Receivers List.
        w_receivers-rec_type   = 'U'."Internet address
        w_receivers-receiver   = p_mail.
        w_receivers-com_type   = 'INT'.
        w_receivers-notif_del  = 'X'.
        w_receivers-notif_ndel = 'X'.
        APPEND w_receivers TO i_receivers .
        CLEAR:w_receivers.
        "Function module to send mail to Recipients
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
            document_data              = w_document_data
            put_in_outbox              = 'X'
            commit_work                = 'X'
          IMPORTING
            sent_to_all                = g_sent_to_all
          TABLES
            packing_list               = i_packing_list
            contents_bin               = it_pdf
            contents_txt               = i_body_msg
            receivers                  = i_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 = 0 .
          MESSAGE i303(me) WITH 'Mail has been Successfully Sent.'.
        ENDIF.
      ENDIF.

    Here:
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=en
    Was it deactivated on the old computer?  If not, you may need to contact Adobe support by clicking on "Chat"
    Serial number and activation support

Maybe you are looking for