Page break and Subtotal display in alv

Kindly provide me the resolution for the following issue at your earliest
Issue:
I am sorting the alv list based on invoice payment date with subtotals.
and i need a page break for every new invoice payment date.I have achived
the same by following code but now subtotals are displaying in the new page
first line rather i need subtotals at end of each page.
Thanking you.
Regards
Ravishekar.Thallapally
Mobil:09866887298.
*&      Form  sub_Build_sort_catalogue
      Building Sort Catalog
<--  L_T_SORT  : Internal table for sort catalog
FORM sub_build_sort_catalogue CHANGING l_t_sort TYPE slis_t_sortinfo_alv.
   DATA: l_v_sortcat TYPE  slis_sortinfo_alv.
   CLEAR l_v_sortcat.
Sort the fields with Planned Incoming Payment in alv
   l_v_sortcat-spos      =  '1'.
   l_v_sortcat-fieldname =  'FAEDT'.
   l_v_sortcat-subtot    =  'X'.
   l_v_sortcat-up        =  'X'.
   APPEND l_v_sortcat TO l_t_sort.
   CLEAR  l_v_sortcat.
Sort the fields with Planned Incoming Payment in alv
   l_v_sortcat-spos      =  '002'.
   l_v_sortcat-fieldname =  'INV_REF'.
   l_v_sortcat-subtot    =  'X'.
   l_v_sortcat-up        =  'X'.
   APPEND l_v_sortcat TO l_t_sort.
   CLEAR  l_v_sortcat.
ENDFORM.                    " sub_Build_sort_catalogue
*&      Form  sub_after_line_output
     Appending another event 'AFTER_LINE_OUTPUT' to g_t_events
     -->L_T_OUTPUT  : Internal table with output data
     <--L_T_EVENTS  : Internal table with events
FORM sub_after_line_output  USING    l_t_output TYPE ty_t_output
                             CHANGING l_t_events TYPE slis_t_event.
   DATA: l_v_event TYPE slis_alv_event.
   l_v_event-name =  'AFTER_LINE_OUTPUT'.
   l_v_event-form =  'SUB_AFTER_LINE_OUTPUT1'.
   APPEND l_v_event TO l_t_events.
ENDFORM.    
*&      Form  after_line_output
      After line output event is handled via this form
      L_V_LINE : Capturing line value for page break.
FORM SUB_after_line_output1 USING l_v_line TYPE slis_lineinfo.  "#EC CALLED
   DATA: l_index1 LIKE sy-tabix,
         l_index2 LIKE sy-tabix.
   FIELD-SYMBOLS: <l_fs_output1> TYPE ty_output,
                  <l_fs_output2> TYPE ty_output.
   CLEAR l_index1.
   l_index1 = l_v_line-tabindex.
   READ TABLE g_t_output INDEX l_index1 ASSIGNING <l_fs_output1>.
   IF sy-subrc = 0.
     CLEAR l_index2.
     l_index2 = l_index1 + 1.
     READ TABLE g_t_output INDEX l_index2 ASSIGNING <l_fs_output2>.
     IF sy-subrc = 0.
       IF <l_fs_output1>-FAEDT <> <l_fs_output2>-FAEDT   .
        WRITE: sy-uline.
         NEW-PAGE.
       ENDIF.
     ENDIF.
   ENDIF.
ENDFORM.                    " after_line_output
*&      Form  Sub_display_alv_list
      Displaying the ALV list
     -->L_T_FIELDCATALOG : Itab with Field  Catalog
     -->L_T_LAYOUT       : Itab with Layout Records
     -->L_T_OUTPUT       : Itab with Output Data
     -->L_T_EVENT        : Itab with Event  Catalalog
FORM sub_display_alv_list  USING     l_t_fieldcatalog TYPE slis_t_fieldcat_alv
                                      l_t_layout       TYPE slis_layout_alv
                                      l_t_sort         TYPE slis_t_sortinfo_alv
                             CHANGING l_t_event        TYPE slis_t_event
                                      l_t_output       TYPE ty_t_output .
*Set Report Title.
   g_v_title = 'AR Clearing Doc. Details'.
*Perform for after line output
   PERFORM sub_after_line_output USING l_t_output
                              CHANGING l_t_event .
*CALL TO FM REUSE ALV LIST DISPLAY
   CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
  I_INTERFACE_CHECK              = ' '
  I_BYPASSING_BUFFER             =
  I_BUFFER_ACTIVE                = ' '
       i_callback_program             = sy-repid
  I_CALLBACK_PF_STATUS_SET       = ' '
  I_CALLBACK_USER_COMMAND        = ' '
  I_STRUCTURE_NAME               =
       is_layout                      = l_t_layout
       it_fieldcat                    = l_t_fieldcatalog
  IT_EXCLUDING                   =
  IT_SPECIAL_GROUPS              =
       it_sort                        = l_t_sort
  IT_FILTER                      =
  IS_SEL_HIDE                    =
  I_DEFAULT                      = 'X'
  I_SAVE                         = ' '
  IS_VARIANT                     =
    it_events                      = l_t_event[]
  IT_EVENT_EXIT                  =
  IS_PRINT                       =
  IS_REPREP_ID                   =
  I_SCREEN_START_COLUMN          = 0
  I_SCREEN_START_LINE            = 0
  I_SCREEN_END_COLUMN            = 0
  I_SCREEN_END_LINE              = 0
IMPORTING
  E_EXIT_CAUSED_BY_CALLER        =
  ES_EXIT_CAUSED_BY_USER         =
     TABLES
       t_outtab                       = l_t_output[]
EXCEPTIONS
  PROGRAM_ERROR                  = 1
  OTHERS                         = 2
   IF sy-subrc <> 0.
   ENDIF.
ENDFORM.                    " Sub_display_alv_list

Dear Friends,
I have got the solution from my technical lead for the below issue, I like to share this resolution with you all.
Best Regards,
Ravishekar.Thallapally
*&      Form  after_line_output
      After line output event is handled via this form
      L_V_LINE : Capturing line value for page break.
FORM sub_after_line_output1 USING l_v_line TYPE slis_lineinfo."#EC CALLED
   DATA: l_v_int  TYPE int1.
   IF l_v_line-sumindex IS NOT INITIAL .
     l_v_int = l_v_line-sumindex MOD 2 .
     IF l_v_line-subtot = 'X' AND l_v_int = 0.
     Write:/ sy-uline.
        NEW-PAGE.
       CLEAR:l_v_int.
     ENDIF.
   ENDIF.
ENDFORM.                    " after_line_output

Similar Messages

  • Prevent Occurence of list header and page breaks in spool file of ALV Grid

    Prevent Occurence of list header and page breaks in spool file of ALV Grid  Display.
    When we run the ALV in background and create spool request then:
    Spool file output is coming like this.
    Column1 Column2 Column3 Column4
    data        data        data       data
    data        data        data       data
    data        data        data       data
    Column1 Column2 Column3 Column4
    data        data        data       data
    data        data        data       data
    data        data        data       data
    But the required is like this
    Column1 Column2 Column3 Column4
    data        data        data       data
    data        data        data       data
    data        data        data       data
    data        data        data       data
    data        data        data       data
    data        data        data       data
    Please suggest a posible answer

    Hello all,
    if you have not yet solved this on your own, here is my solution: use a format type that has 60000 lines per page for your spool output device.
    It all depends on the format type that was used for creating the spool output.
    By default (in our system), we have 65 lines per page. And after each page the column headings of the ALV will appear.
    What i did:
    create a new format type via transaction SPAD->full administration->device types->format types (copy an existing one)
    change"Number of Rows" to 60000 or something applicable
    edit the device type of your output device (e.g. LOCL) to contain the newly created format type (via SPAD; Button "Formats" in device type maintenance).
    That's it! Be sure to use this format type for your output device in the "Background Print Parameters" window (-> Button "Properties").
    Regards
    Daniel Klein
    All other parameters you discussed before didn't do it. All ALV-Settings will be overwritten by the output device settings and its print properties.

  • What is the  difference between list display and grid display in alv report

    Hai genious
    i am a new of the abap, i dont know the alv report, i have a small doubt, can u please tell me  what is the main difference between list display and grid display in alv report
    thanks&regards
    chinnu

    Hi ,
    1. For all practical purposes, they are the same.
    2. Some differences:
    a) from abap coding point of view,
    alv list is done with Function modules,
    alv gris can also be done with FM,
    but can also be done using OO concepts.
    b) Alv grid (using oo concept) requires
    designing the screen layout .
    Hence, in one screen, we can show more
    then one alv grid
    (we cannot show more than
    one alv list on one screen)
    c) ALV grid uses ActiveX controls
    present on the Presentation Server.
    Hence, it consumes More Memory
    on the presentation server.
    d) ALV LIST is Display Only.
    Whereas
    ALV Grid Can Be made EDITABLE for entry purpose.
    e) In alv grid, these options are possible,
    but not in alv list.
    without horizontal lines
    without vertical lines
    without cell merging during sorts
    display total lines above the entries
    I hope it helps.
    Regards,
    Mamta
    Edited by: Mamta Verma on Nov 27, 2008 6:41 AM

  • RH8 for Word - Strange page breaks and non-scoll headers

    RH8 and Word 2007 generating WinHelp 2000.
    Normal page breaks are full page width.
    When I insert one in manually, it shows as only 2 inches wide.
    A tiopic with this short break does not show as a non-scroll header and does not get included in the browse sequence
    Any ideas folks?

    Funny you should ask as I've been trying to figure this out too!
    This is a Word 2007 issue - I assume you are using Office 2007? I am using RH7, but I believe my solution will work for you because it is Word, not RH.
    Anyhow, assuming my Word 2007 assumption is spot-on, you need to change word options.
    Go to the Office button, select Word Options.
    Select Advanced.
    Scroll to bottom of the window and look for Compatibility options (very bottom of the window).
    Expand the layout options.
    Check "don't split apart page break and paragraph mark". (You can apply this to the current open doc you see or all docs - if all docs, you will probably change the global normal template, which you may not want to do.)
    Click Okay.
    Note, if you go to recheck the setting, the format is now listed as "custom".
    Specifically, what was happening is the page break was taking on a "normal" style with 0pts before and after. This caused for me a big gap between the top of the help window and my heading 1 style. (I have my Heading 1 style set to 6pt before and 2pt after and font is 12pt.) Changing the above makes the page break itself take on the Heading 1 style which then also expands across the draft window instead only a couple inches. Other than affecting how the Heading 1 might appear in the compiled help system, I don't see any probelm with using the page break with the normal style applied to it, however, it is a little disconcerting. I noticed this particularly in the Outline view as I sort the pages in my the doc alphabetically based on Heading 1 so I can locate info easily by client name. When I used the "normal" or should I say "abnormal" style page break, these page breaks were excluded from the sort and I had no page breaks! (At least there is still an undo option!)
    I'm not sure, but you may need to modify the robohelp.dot template to keep this permanent for your robohelp for word help systems.
    In addition, your heading style probably does not have the paragraph format setting set to "keep with next", so change the style and that should add the non-scroll to the header.
    One final piece of advice, have the "developer" tab showing in the ribbon. This allows you to access the template and see the styles in your doc. I would  uncheck the "automatically update" option so that when you reopen the doc, it doesn't lose any doc specific style changes you made.
    bb

  • ALV Page Breaks and Scrolling

    Hello!  Could someone please help me with this one?
    I have an ALV report that requires to have a page break every N lines.  I've checked initially with similar posts on the forum, but so far all the solutions I've seen are based on the SORT-GROUP field.  Has anyone discovered how to do the page break based on the line number?
    Also, there's something weird with the scrolling of my report.  Whenever I click the next page button, or press the Page Down, it goes to the very end of the report output.  Do I need to set something in order for the page down/up to function properly?
    Thanks very much in advance.

    Hi,
    Please take a look at a previous post at Re: New Page in ALV for Value Change on a Field on the same topic.
    Hope it helps.
    Regards
    Jayant

  • Allow page breaks and text overflow indicator

    I have set up a sub form to allow page breaks within content which works but then the content that continues on the next page has the text overflow indicator showing and the text field does not expand which is what I want it to do. What do I need to do to get it to continue flowing?

    I do not understand why this should be so difficult.   What I am doing is just opening a blank form and I can either insert a text field or a subform.  I then go to check allow page breaks within content and it is greyed out on a text field.  I also can create the subform and it allows me to set it to flowed and allow page breaks but it then has a indicator that displays (Although the object is allowed to break, deselecting allow page breaks within content object of the parent object restrict this object from breaking between pages).  The only thing that makes sense is the parent is the blank page form.  I have searched all over the place and I cannot see anyplace to set the form page to allow page breaks.  The only thing that is on the form is either a check box or a subform and thats it. It keeps having a problem with a parent object.  The only 2 objects I see are the blank page and then the text field I add.  Nothing seems obvious to fix this.  This software does not appear to be very user friendly.

  • How to Insert a Page Break and Duplicate a Page in Pages 5.1

    Pages 5 deprecated the "Word Processing" and "Page Layout" styles of document creation, but in 5.1, they have returned.
    It seems that the DEFAULT is to "Word Processing," however it is possible to convert the document to a "Page Layout" document: In your open document, click File, then Convert To Page Layout.
    So, for a Word Processing document, one only needs to click Insert and then Page Break, while in a Page Layout document, click Insert and then Page.
    Unfortunately, the Duplicate Page function has NOT returned, but you can still select the entire contents of a page and copy it to a new page. Unfortunately, your perfect page layout won't copy over exactly, and guides don't copy over either.

    Actually, I had an entire page worth of content that didn't change at all, but now that I think about it, that was probably because I had all of my content in boxes.
    And I was careful to specify Pages 5.1 in my post heading to avoid confusion. It is VERY WELL documented that Apple removed loads of features in their new iWork apps - including all over this support forum.
    Your obvious disdain for Pages 5 notwithstanding, the return of the Page Layout mode is a BIG DEAL to me, as Pages was otherwise just a word processor without it. Prevously, upgrading my Pages 4 documents to Pages 5 would render them un-editable.
    So, instead of the seemingly default answer of "delete Pages 5 and use iWork '09" that I saw on just about every post regarding this particular issue, I'm offering a tidbit of information for those who actually want to try and use the current version the way it is.

  • Change the total and subtotal dynamically in ALV GRID

    Hi guys,
               I need to change the total and subtotal of field "AMOUNT" dynamically.I am using ALV GRID CONTROL(oops concept).I need to override the standard functionality.I need to show my own subtotal and total line instead of standard one .

    Hi
    I've understood it, I wanted to use OO Grid too, but I had to use the ALV list in order to write my total.
    If you need to use OO grid u can try to exclude all funcitonalities for the total, subtotal and sorting and insert in the output table the lines with your totals.
    Max

  • HTML to PDF conversion - problems with page-breaks and bookmarks

    Hello,
    My company is currently considering updating your software (from Acrobat 9 Pro to Acrobat XI Pro) and I’ve been assigned to research its features and make sure that it is a right fit for our goals. Basically we want to automate the whole process as much as possible and we want to create PDF directly from HTML. We’re providing a lot of content in HTML and we need a fast way to transfer it into PDF format. There are however some guidelines:
    We want page-breaks in is this kind of documents, and thus - your app needs to be able to interpret HTML and put them where we want to;
    We need to have bookmarks in there. Converter must be able to make them based on headlines from HTML source or afterwards, directly in PDF by using some auto-bookmarks feature;
    There has to be table of content generated, based on HTML Link Tags if possible. Here’s sample of TOC structure that we have currently:
    <A NAME="redirect">sample_text</A>
    <A HREF="#redirect">sample_text</A>
    Of course we can modify HTML in any way you want us to. The important thing for us is to make it work in PDF without the need to make a lot of manual changes after conversion.
    I’ve been messing with Acrobat 9 Pro and reading some documentation that you have provided and I’m convinced that point 3 is not a problem. I’m aware that Acrobat 9 Pro is not having any difficulties with links in document and they work fine in PDF format that has been created from HTML.
    Page-breaks on the other hand are bothering me. Your app is apparently ignoring every HTML code that the Internet is advising me to use to force page-break where I want. Honestly - I’ve tested like ten ways to make them and not even one was working. That’s why I’m asking for your help.
    Another problematic subject for me is the bookmarks creation. I know that they are not a problem if I’m doing DOC to PDF conversion. Then I’m able to decide what header should be used as a curtain level of bookmarks and everything is working great at the end. However - with direct HTML to PDF conversion - I really don’t know how to generate bookmarks that are based on the source of the input document. Is there any way to make fully working 2 level bookmark tree in this case? Here’s an example of the structure we want at the end:
    header1
    header2
    header2
    header1
    header1
    header2
    Could you please help me in finding the solutions? Just like I’ve mentioned - we can modify input HTML in any way, but in the end we would like to achieve our goals as quickly as possible.
    Please excuse my English.
    I am looking forward to your response,
    Lucas

    Frankly - we would like to avoid using Word. We are using it currently but there are long-term plans of improving whole conversion process, eliminate any mid-steps and automate as much as possible even though conversion is not going to be done unattended on a server. Thank you for your response, but I hope that maybe someone else would have any idea?

  • Page Breaks and empty frames

    I have several repeating frames, and a Page Break After on each one. This works fine, but if a frame is null/empty, it still causes a page break.
    Is there a way to prevent the page break if the repeating frame has no data?
    I have Vertical = Variable on each frame.
    thanks in advance,
    Mark

    Try using format mask.
    e.g
    if :myfield is null then
    return false;
    else
    return true;
    end if;
    *** :myfield is the data field in that frame.
    Hope it 'll work for you.
    Capri.

  • Page breaks and 'Fit Page in Window' option

    This may seem a stupid question but indulge me: when I add a page break InDesign is only showing me the very top of the text frame on the page the cursor has moved to. How do I get InDesign to honour the 'Fit Page to Window' option when I add page breaks? Do I really have to keep hitting command-0?

    It does like to go exactly to the first line of the next page. It's not very intuitive.
    However, you can hold down Alt and scroll the page up.
    Or while holding alt - click and hold anywhere on the page. It will zoom out. Move the red box where you want to Zoom to, then release the mouse.
    Or you could press Return a few times then delete the returns.

  • Interactive Reporting Reports w/ Page Breaks and Charts

    I have an IR report that is Grouped. I would like to page break after each group; however, when I set this up, it page breaks be/tw the report header and the very first group. Is there a way to avoid this issue?
    Also, I have created charts from queries. When I drag them into a report body, I can not figure out how to control where the go (and stay). It seems the only way around the issue is to drag them into the report footer, but then if the report body is shorter from one query run to another, it seems to leave the charts on the pages where they were before instead of moving them up to the end of the report body. How can I fix so the chart's location moves depending on the length of the report?
    Thanks.
    Terri T.

    Terri,
    to clarify...Spring works within the same report area, for example a table followed by a chart in the Body. Spring allows the position of the top of the chart to be relative to the bottom of the table so as it grows or shrinks the chart maintains the same space between the two objects. without spring the top of the chart would be relative to the top of the report area it is in and as the table grew the objects would end up being layered.
    You should not need to upload a new CSV file. You can just "Process" it and it will refresh the data. if the CSV file is moved from where it was first imported you will be prompted to find it otherwise the imported file section within the BQY will have any additional Rows and/or Columns that the updated CSV file has.
    Make sense?
    Wayne D. Van Sluys
    TopDown Consulting

  • Using Page Breaks and Template Shifting

    I'm working on a book.  The book is in a word formate.  I'm taking the text and porting it into InDesign with page after page being connected. There are 73 pages in total of pure copy once ported in.  Now I'm going in and laying the media into the text.  I have two basic master template designs that I use based on the content being talked about in the text.  Example is Master Template A has a white background, and Master Template B which has a black background. 
    Since the book is alternating between templates depending on the content on the page the pages might look like this:
    Page 1: Template A
    Page 2: Template A
    Page 3: Template B
    Page 4: Template A
    and so on.  I have a question about page breaking.  I'd like to always keep the content on page 3 on a master template B background. 
    However, if I add more content to A, or if I use a page break, the content on all subsequent pages gets pushed down (all pages are connected).  So if I page break on Page 1, my content from page B gets pushed onto a template A background.  This is obviously not what I wanted.  Should there be another function besides page break that I should be using to put separaters?  How can I make sure that my content on page 3 stays on a template B background?

    Right now your text is threaded in one continuous story. When you add new text inthe middle, anything following that point is going to move. To prevent that you need to break the text into separate stories for eac type of content.
    This is basically the same thing as dividing the chapters of a book so that each one starts onthe correct master page, which is didcussed at some length here: http://forums.adobe.com/message/3993405#3993405

  • Subtotal and Subtotal text in ALV REUSE_ALV_LIST_DISPLAY

    Material       Mat. Descr                         Location Lot No.    Stock (Kg)
    0512.5\      BLABLA Product 0512.5 test          A500     BL****         1,000
    0512.5\      BLABLA Product 0512.5 test          A500     S*****           123
    0512.5\      BLABLA Product 0512.5 test          C200     TU*****        2,000
    106.10\      010101 Product 106.10               C200     BAR****NA        100
    106.10\      010101 Product 106.10               C200     PA***            200
    1067\        1234567890                          A001     TON**8       123,456
    I am generating an ALV report using REUSE_ALV_LIST_DISPLAY. I need to compute the subtotal of the stock for each material. I tried doing this by building a sort but it does not work.
    FORM build_sort .
      lwa_sort-fieldname = 'MATNR'.
      lwa_sort-spos = 1.
      lwa_sort-up = 'X'.
      lwa_sort-subtot = 'X'.
      APPEND lwa_sort TO gd_sort.
    ENDFORM.                    " build_sort
    Also I need to display the subtotal_text. Again this does not work either. The total text does show up.
    FORM build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-window_titlebar   = sy-title.
      gd_layout-totals_text       = 'Total:'.
      gd_layout-subtotals_text    = 'Sum:'.
    ENDFORM.                    " BUILD_LAYOUT
    Can someone help me with the code. Thank you.

    Megan,
    Check this tread .I hope it might give you answer.
    Subtotal in ALV report
    Nirad Pachchigar

  • 'worksheet' issues- page breaks and auto fills

    Any help would be greatly appreciated, as I have tried to figure out these issues by searching through the forums and I am just running out of time. I am completely self taught- and I have been only using the designer for about a month, so that should give you a good understanding of how out of my depth I am. 
    I am having 2 issues that are 'must fix':
    1. I have text boxes on the first subform that autofill on the master page, content area. However, the autofil only seems to appear on the first page and not on subsequent pages (but other items on the master page do appear on subsequent pages).
    2. I would like (and I don't know if this is possible) to seperate my subforms onto seperate pages- yet allow the subforms to flow when content area grows due to user input. At the very least, I would like to put them on seperate pages.
    Also, does anyone know how to eliminate the "warning:javascript" window from the information boxes? I worry that the warning may throw off the users.

    Hi Liz,
    I have found what is not working for your masterpages textboxes.
    For each textbox in the table inside the masterpage you have to change the data binding
    Click on textbox ► Object Palette ► Binding tab ► Data Binding (Open, Save, Submit) ► Choose: Use global data
    Now the information in these textbox should be shown on each pages.
    If there is some tables which you consider them not at the right place in the form because of the breaking content, you can always decide if it should follow the next or previous object in the hierarchy.
    By clicking on a table, you can access the tab Pagination in the Object Palette. By checking Keep with Next or Previous, you specify which way the table should be placed.
    Hope this helps!!

Maybe you are looking for

  • Windows XP hangs on 'spash' screen after video drivers installed on K8N Neo4-F

    Hiya folks - got a MASSIVE post for everyone here...  Sorry but I think it's necessary...  Here goes: I just upgraded everything in my computer except for the HDD.  New case, power supply, etc.  I started by copying all important data from my origina

  • [SOLVED]KDE 4.9 kio_thumbnail uses too much CPU

    Enabling the preview option in dolphin, there's a kio_thumnail process that uses 100% in one of the processor cores... Is anyone having this problem? By the way, the preview option doesn't work at all... Greetings! Last edited by Hyugga (2012-08-08 0

  • Why my Playbook says No available services for the stereo bluetooth MOTOROKR-S​305

    I've been trying to connect my MOTOROKR-S305, the audio device- stereo bluetooth, into my Playbook It seems connected successfully but doesn't work and also Playbook says 'No available services' Can anybody tell me why? Solved! Go to Solution.

  • How to uninstall Careme

    Hi, I am Nokia E5 customer. How to uninstall this software? this is really worst i have ever experienced! after installing this i cannot see my call logs at all and when i want to access at lease careme logs i cannot find this anywhere in my mobile.

  • Microsoft Surface RT with HP Officejet L7480

    Is there a driver available for Surface tablets with an ARM processor (Surface RT) so I can print to an Officejet L7480 across my home network? Thanks in advance