Keeping Groups and their Details together when printing a report

So I created my Groups...[Claim #], [Rec #], [Line #], and [Service_Date] and set the Group Properties Page Break and checked
Between each instance of a group. I also made the
Keep Together property to True for all my Row groups and details then.
When I run in Preview it looks PERFECT!. Then when I actually go to print the report, the grouping is printing on one page and the details on the following page. This is unacceptable.
Then I Googled and found this...
https://connect.microsoft.com/SQLServer/feedback/details/428595/keep-together-property-not-working-in-ssrs-2008
Which makes it seems as though the Keep Together Property has a bug. Unless the
Keep Together implies in Report Design View. But it does say
KeepTogther Indicates whether to keep all sections of the data region together on one page. Yeah...but "page" meaning viewable page or printable page...
I also found this work around which I really don't understand as to what I'm supposed to do.
http://social.msdn.microsoft.com/Forums/sqlserver/en-US/692d85d3-87fe-483f-8267-98213795ef1e/third-major-flaw-with-reporting-services?forum=sqlreportingservices
Has anyone else experienced this issue? Is this still a problem in SSRS? And can anyone please help me with the work around?
Thanks in advance and am hopeful for a reply.
ITBobbyP85

Hi ITBobbyP,
According to your description, you have Groups [Claim #], [Rec #], [Line #], and [Service_Date] in the report, and added Page Break to the groups. The report looks normal when you preview it, but when you go to print the report, the groups displayed on one
page and the details on the following page.
Based on my knowledge, the issue is due to report size. Page orientation of report is Portrait(8.5in X 11in). If the width of tablix is larger than report page, the groups and details will be displayed on different pages. In this case, we need to change
paper size to a certain value, please refer to the following steps:
Right-click outside of the report body and click Report Properties.
In Page Setup, select a value from the Paper Size list. Each option populates the Width and Height properties. You can also specify a custom size by typing numeric values in the Width and Height boxes. Click OK.
For more information about setting page size, please refer to the following document:
https://community.dynamics.com/crm/b/magnetismsolutionscrmblog/archive/2013/10/30/ssrs-using-page-size-and-interactive-size-to-manage-printing.aspx
If you have any questions, please feel free to let me know.
Best Regards,
Wendy Fu

Similar Messages

  • How to delete everything, but base group and their depends?

    If I install KDE or Gnome, and even a bunch of different programs, or have too much broken system, or even what the cause ..
    How to easiest delete everything, but to keep packages in base group and their depends?
    Last edited by atommixz (2010-10-14 11:37:31)

    You're drawing an erroneous conclusion. Dependencies for base are self contained within base. That is to say, you can install only the packages in base, and boot into a working system.
    If it's not working, then it gives rise to the idea that you have packages outside of the base group that are providing the functionality of packages in base. I'm not willing to test this further than verifying what I think the output of the comm should be -- and it looks correct on my end.

  • Am I able to use a federal employee discount and student discount together when buying a new computer?

    Am I able to use a federal employee discount and student discount together when buying a new computer? I work for the government, but am also a full time student at a university. I was wondering if anyone had any experience with that and knew if you were allowed to do this?

    No.  Since I have friends working at Apple, I can get an employee discount.  Since I'm also attending school in Asia, do you think I can get an employee discount AND a student discount?

  • HP Photosmart D110 - detail missing when printing tickets and statements

    When printing on line tickets or bank statements, the form itself (heading, column heads, etc) prints, but the personal detail data that is on the form does not show.  The print preview screen shows all the data.  There is no error message.  Printer works fine for email and most other documents.  Spread sheets and word documents also only show partial data.  This is a recent occurance; but there had been no previous problem.
    HP Pavilion, HP Photosmart D110 printer, Windows Vista with Service Pack 2, Explorer 9.0.3.  

    Hello, I noticed you said "Network via Wired" and then said "wireless. I will gladly to assist you. Just to you let you know, you cannot be WIRELESS and WIRED NETWORK (Ethernet). You can be WIRELESS and plug the main PC in as USB cable. So here are some steps to downloading the drivers and connecting your MAIN PC (USB) and the others (Wireless).
    Connecting to the MAIN PC wired (USB)
    1. Connect the USB cable from the printer directly to the main PC.
    2. Download the drivers from the website (http://goo.gl/BVOOg), or if you have the CD.
    Note: Whenever you download the software and drivers from the website. Make sure to choose the FULL FEATURE SOFTWARE.
    1. Choose Drivers and Software
    2. Type in Product name (click search)
    3. Choose Operating System (click next)
    4. Choose Download (scroll down to the FULL FEATURE SOFTWARE)
    5. After downloading the Software, it will EXTRACT
    6. It will give you an option on how you want it connected
    7. You will choose USB for the Main PC
    Connecting NETWORK WIRELESS
    1. Go to Settings on your printer
    2. Choose Network
    3. Choose WIRELESS SETUP WIZARD
    4. This will search for your router (If wireless). Choose your router and it will set the printer up wireless.
    5. Go to the other computers and follow the steps above on downloading the drivers.
    6. When it comes to SELECT Connection, Choose (Wireless/Network)
    This way, you can print from your main PC through (USB wired), and the other computers wireless.
    If your ROUTER is not wireless, and you only can use the network with a cable (Ethernet), then you can only print by plugging the ETHERNET cable from the router to whichever PC your choosing to print from at the time. Also plug another Ethernet cable from the router to the printer.
    I hope this helps out, if you need anymore assistance please ask, thanks.
    **Click the KUDOS star on the left to say 'Thanks'**
    Please mark a reply "ACCEPTED AS SOLUTION" if it solved your problem, so others can find it.

  • Group and Owner fields blank when viewing Service Request results via UWQ

    When looking at a row that represents a service request in either the UWQ or View Service Requests (search form) the group and owner columns are blank only for some of my users.
    If you look at the detail for the SR, there is a owner and group.
    Not sure what the issue is..? Inherited this role.
    -JP

    Which release is this occuring? At the first glance it looks like an issue that cropped up in 11.5.3. and has been fixed since.

  • Ideal way to report on Nested Groups and their Members - I can get the script to work if there's one group, but not if there is two or more

    Hi All,
    I like to keep track of Groups and Users added into our Domain Admins.  Yes, it should always be minimal, but if I can have a daily report just to be certain, I'll sleep better.
    The following works just fine if there is a single nested group.  I cannot get it to work properly if there is more than one.  I'm hoping you'll see what I'm missing.
    Works fine:
    $admins = get-adgroupmember "domain admins"
    foreach($i in $admins){if($i.objectClass -eq "group"){ get-adgroupmember $i.samaccountname |foreach {New-Object PSObject -Property @{ username = $_.name;Group = $($i.name)}} | select username,group | export-csv c:\Users_and_Groups.csv -Notypeinformation}}
    Does not work well.  Result is that the "Group" information doesn't change to the correct group:
    $myCol=@()
    foreach($admin in $admins){if($admin.objectClass -eq "group"){$myCol+=$admin.samaccountname}{foreach($i in $myCol){get-adgroupmember $i | foreach {New-Object PSObject -Property @{ username = $_.name;Group = $($admin.name)}} | select username,group
    | export-csv c:\Users_and_Groups.csv -Notypeinformation}}}
    Here is what I have in $myCol:
    PS C:\Users\Administrator> $myCol
    MarketingPSO
    RMSysAdmins
    I tried shortening up the one-liner a bit more, but for some reason the "RMSysAdmins" is the only Group listed even though Leia and Han are in the MarketingPSO Group:
    foreach($i in $myCol){get-adgroupmember $i | foreach {New-Object PSObject -Property @{ username = $_.name;Group = $($admin.name)}} | select username,group }
    username                                                   
    Group                                                     
    Leia Organa                                                
    RMSysAdmins                                               
    Han Solo                                                   
    RMSysAdmins                                               
    c3po                                                       
    RMSysAdmins                                               
    Darth Vader                                                
    RMSysAdmins                                               
    Boba Fett                                                  
    RMSysAdmins
    Thank you very much for your time,
    Mr Mister

    Hi Mr Mister,
    To get nested group members, this script is for your reference:
    function Get-ADNestedGroupMembers {
    [cmdletbinding()]
    param ( [String] $Group )
    Import-Module ActiveDirectory
    $Members = Get-ADGroupMember -Identity $Group|sort-object objectClass -descending
    $members | % {
    if($_.ObjectClass -eq "group") {
    Get-ADNestedGroupMembers -Group $_.samaccountname
    } else {
    New-Object PSObject -Property @{ username = $_.name;Group = $Group }}
    Get-ADNestedGroupMembers "groupname"
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Why do I get a colored shadow behind shadow and feather transparency areas when printing?

    Hello,
    I've been pulling my hair out over this and finally went to my printer to ask if they had insight as to why this is happening. I'll include his reply here but would like to hear your expert opinions too!
    When laying out a file in InDesign, I do a lot of overlapping, feather and some drop shadow and always get a colored shadow behind the transparency area when printing out from a pdf. These files are being designed for print, which is what I thought InDesign was created for - as an updated alternative to Quark and Pagemaker? Here is what the printer says:
    "Ive taken a look at the file in question and the issues this lady is experiencing can not be resolved in InDesign. What she needs to do is build the background image with color overlays all in Photoshop as a Layered PSD. Then flatten it and pull it in to InDesign as a Tiff. Then she can place her text over the top of it. She needs to use image masks on the color overlays - for the areas she does not what the color to violate.
    What it comes down to is these fancy design effects out of InDesign and Illustrator should never be used for printing. They can be used for web design. Reason is, they cause RIP problems. Things fall off the file and transparent areas go away just to name a few. This happens all the time."
    I would appreciate any other viewpoints here. Can I really NOT use the shadow and feather functions in InDesign for print? Are there any other ways to approach this problem other than what is being advised here. It is SO much easier to produce the entire file in InDesign.
    Here is a link to the pdf. If someone would like to see the original indd file, I can post it somewhere.
    http://displaysunlimitedinc.com/test/panel_3_text.pdf
    There is a 1 inch blur drop shadow on the black and white temple image; a 1 inch feather on the black and white screened back image behind the main text box; and no drop shadow or feather on the map at top right, yet I get a colored shadow behind all 3 of these areas when I export the indd file to pdf and print that out. The fact that I get a shadow behind the map puzzles me.
    Thank you very much in advance.

    Horgycat,
    The CMYK/RGB question is actually pretty complex, and depends to a great extent on how the final output is going to be produced.
    If the files are destined for a printing press, all RGB elements must be converted to CMYK prior to printing. You have the option of doing that before placing in ID, or during export to PDF, and there are pros and cons to both methods, but if you don't know until the last minute what the print conditions will be, the convert on export path is more flexible.
    Spot colors are a different matter. As far as I'm concerned, you should NEVER specify a spot color unless you are actually using spot ink on a press. A lot of inkjet and laser devices claim to be Pantone certified, but the reality is that even with expanded gamuts available using more than four inks, I'd estimate that better than half the Pantone solids are not reproducible as simulations that would satisfy me or my clients. The convert spot to process route should only be used, in my opinion, when you've designed a job properly to be printed using spot colors, and suddenly you have an output change or an added image that forces you to move to a process output. The last time I tried it, by the way, I had issues at the printer (the regular prepress guy was out of town, so I'm not sure what went wrong) and I ended up re-building the file with real process colors to get the transparency to work.
    But you mentioned that you are doing exhibition panels, which implies to me that they are probably NOT going on a press -- you need to do hundreds, or sometimes even thousands, of copies to make a press cost-effective compared to digital printing. I used to work in a large-format output bureau doing just this kind of work, and we used large inkjet plotters. In this case, mixed RGB and CMYK files are less of an issue since most plotters will handle either, and depending on if they have an internal or external RIP or none at all, you may actually get better color fidelity using RGB as CMYK colors may get converted in the RIP to the RGB values that the plotter understands, and then get converted back a second time to CMYK (CMYKOG or whatever ink combination is used) internally before the ink is sprayed. Only the print provider would be in a position to tell you the correct color space for the equipment.
    Which of course puts you at a bit of a disadvantage working with a client out of state who isn't supplying you with such necessary information as the correct output profiles for the job. It will be a miracle if the color is close.
    A final word about looking funky on screen. Just as many spot colors can't be well simulated in CMYK, many also cannot be displayed adequately on a monitor. The ONLY way to choose spot colors is with a swatch book, and that's what the press operator will be using to verify his work. Clients need to be educated about the differences in technology and the limitations of soft proofs.

  • Draw document saved as PDF and emailed is faulty when printed

    Each month I create 12 parish-magazine pages of advertisements in Draw, save the set as a PDF document and email it for printing. Consistently, when printed some pages are reproduced smaller than the rest.
    Can someone tell me why, please?

    First-base solution: the pages in question run into the printer's margins and the driver is set to shrink the pages rather than crop them. Check what the printer's margins are and ensure that the document's margins are the same or larger. This sort of problem can arise when you are printing on a printer not connected to the Mac where the document is created (so you don't get a warning).

  • Why color variation between Adobe Pro 9.0 and Reader 9.0 when printing

    We recently had Adobe Pro 9.0 installed.  We've noticed that we are getting different color shades when printing from Professional versus Reader 9.0.  Actually, the Reader is printing more of what we want.  We had one document that had a background that the Reader picked up better and we also had another with a solid blue and the Reader printed that better as well.  We are printing to a Xerox 7665 color copier.  Wondering if there is a setting or something that we should try??  Thanks!

    frstrsystemI make a fix, here it is:
    1) I launch acropro 9 on the server, I go to the view->toolbars->tasks menu to  the "tasks" toolbar (which cause the crash).
    2) on the server, run regedit and go to current user\software\adobe\adobe acrobat\9.0 and export this hive on a file like acrobat9_user.reg
    3) create a acro9pro.cmd file with
    regedit /S n:\scripts\acrobat9pro_user.reg
    @start "C:\Program Files\Adobe\Acrobat 9.0\Acrobat\" Acrobat.exe
    save this file on the server
    publish your app and call the CMD instead of the acrobat file
    trick; you can map drive into the cmd so that user can access network shares and not only the server on.

  • Firefox does not correctly print - creates empty pages and cuts of content when printing

    When trying to print out pages Firefox first prints a lot of empty pages, and then only a part of the content. Example:
    https://online.medunigraz.at/mug_online/wbTvw_List.lehrveranstaltung?pStpSpNr=182778
    When entering "print prview" you can see empty pages.
    When printing this page with Internet Explorer all is fine.

    Thanks for this hint, but it does not help.
    This problem does not appear in Internet Explorer, and it should be reproduceable. At least I thought so, so it would help if others could try to click on the link and try to print. They should have the same troubles.
    https://online.medunigraz.at/mug_online/wbTvw_List.lehrveranstaltung?pStpSpNr=182778
    I also attach a Screenshot so that you can see how the Print Preview looks like.
    Kind regards,
    Herwig

  • I am unable to print. Preview shows a blank page and it is blank when printed. I've tried all of the suggestions here. Any other ideas?

    When receiving an email that I wish to print, nothing prints. The Preview shows a blank page and it is, in fact, blank when printed.

    When receiving an email that I wish to print, nothing prints. The Preview shows a blank page and it is, in fact, blank when printed.

  • I keep getting and "error 2 message" when trying to update my creative cloud

    Hi, I was trying to update my cc and keep getting and "error 2" message. Can anyone help me?
    Thanks

    sign out and then back in to your cc desktop app, Sign in, Sign out | Creative Cloud desktop app
    if that fails, attach a screenshot of your error message.

  • Cannot choose printer when printing HTML report

    Hello,
    I have lost many many hours trying to print correctly a report that is composed only of a JPEG image.
    After a conversation in the forum, I concluded that the LabVIEW has a bug printing Standard Reports, as it cannot manipulate correctly the margins and the scale of the image. But, when using Standard Reports I could choose which printer to use.
    So, I use HTML Reports that print the report smoothly, but the choise of the printer has a problem. No matter which printer is chosen by a Ring Menu, it prints to same printer all the time.
    Could you please give me any hint to solve this problem?
    I attach the corresponding code:
    Solved!
    Go to Solution.

    Hey guys, this is Paul with National Instruments.
    Being employed at NI I am obligated to provide a big disclaimer about the information I am about to provide:
    MANUALLY CHANGING YOUR WINDOWS REGISTRY CAN CAUSE CORRUPTION AND ERRORS IF YOU ARE NOT CAREFUL.  DO SO AT YOUR OWN RISK.
    With that being said, nikosfs was on the right track by editing his Windows Registry to perform this action.  Please see the following steps, and see if it helps further explain what you need to do:
    Open the Registry Editor. To do this, click Start >> Run and type "regedit", then press OK.
    Navigate to HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows.   In this key there should be an entry called Device with values that should match up with your default printer.
    Right click on the Windows key, choose "Export" from the menu that pops up, and save the Registration File as printer1.reg.
    Leaving the Registry Editor open, change your default printer. To do this, go to Start >> Settings >> Printers and Faxes. Right click on the printer that you want your report to print to, and choose the option "Set as Default Printer".
    Go back to the Registry Editor, it should be noted that the value of the Device entry has changed to the new default printer. Right click on the Windows key again, choose "Export" from the menu that pops up, and save the Registration File as printer2.reg
    These two files may now be used to manipulate your default printer settings in conjunction with the System Exec.vi. The figures below show how to use the registry files and the System Exec.vi. 
    → The "/s" in the text field makes sure that this vi will run without interrupting regular user interaction.
    → The path constant is set to "c:\" because the Registration Files were saved directly in the C drive. Change according to location of Registration Files.
    Make sure that this operation is called before the Print Report.vi is called, as it will print just to the default printer.
    Paul Davidson
    Sound and Vibration Software Staff Product Support Engineer
    National Instruments

  • When printing the report , it will show an error

    Post Author: tramp168
    CA Forum: General
    I use crystal report2005 in C#2005 to design several reports, all the reports can be shown normally when previewing on the all user computer, and the reports can be printed on most of user's PCs, but two users can't print the reports,  when printing,it will show below error:
    Error in file c:\docum~1\..............*.rpt
    the request could not be submitted for backgroud processing.
    how to handle the issue.
    thanks all in advance!

    Post Author: V361
    CA Forum: General
    do the two users who can not print, have the same printer types installed as those that the report does print on ?  (May need to add a NEW printer definition to the failing computers, and see if the report works)

  • Windows 8 and IE 10 crashed after printing from Report Manager SQL server 2008 / 2008 R2

    We have a problem with Windows 8 in combination with IE 10 and printing reports.
    When we print a report from the Report Manager 'http://<servername>/reports' the browser crashed after a print.
    Sometimes before printing and somthimes after printing or when you close the browser.
    Al other operating systems like XP, Vista, Windows 7 with different IE versions have no problem.
    I tried the report manager from SQL Server 2008 and SQL Server 2008 R2.
    The same error occured when printing from our Internet application and the reportviewer.
    (ASP application written in Visual Studio 2010 and reportviewer version 10.)
    The event log shows two different messages.
    Faulting application name: IEXPLORE.EXE, version: 10.0.9200.16453, time stamp: 0x509b0dfb
    Faulting module name: ntdll.dll, version: 6.2.9200.16420, time stamp: 0x505aaa82
    Exception code: 0xc0000005
    Fault offset: 0x00061252
    Faulting process id: 0x780
    Faulting application start time: 0x01ce03a294f7d1d5
    Faulting application path: C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: d4a72486-6f96-11e2-be6e-10604b6a74ed
    Faulting package full name:
    Faulting package-relative application ID:
    Faulting application name: IEXPLORE.EXE, version: 10.0.9200.16384, time stamp: 0x50107ee0
    Faulting module name: rsclientprint.dll, version: 2009.100.1600.1, time stamp: 0x4bb67a74
    Exception code: 0xc0000005
    Fault offset: 0x00017e7a
    Faulting process id: 0x9c8
    Faulting application start time: 0x01ce02f35c70ab85
    Faulting application path: C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE
    Faulting module path: C:\Windows\Downloaded Program Files\rsclientprint.dll
    Report Id: a13fccc6-6ee6-11e2-be67-10604b6a74ed
    Faulting package full name:
    Faulting package-relative application ID:
    Is there a fix for this problem?

    Dear Mike Yin,
    Thank you for your response. Your answer was the
    reason for finding the real problem.
    In december 2010 a SQL Server 2008 fix was the cause. I don't remember exactly the problem, but we changed the RSCLIENTPrint-x86.cab file. But instead to use the version of SQL Server 2008 we used the version of SQL Server 2008
    R2 (10.50.1600.1). This worked until
    Windows 8 (Internet Explorer crashed when printing).
    We fixed this problem by using the RSClientPrint-x86.cab file from SQL server 2008 (10.0.5500.0).
    But we now get the known problem that the
    activeX always must be installed again. 
    The reason for this is that the version of
    the SQL Server (10.0.5512.0) 
    and the rsclientprint.dll (10.0.5500.0) is different. SQL Server is newer (caused
    by a security patch (KB2716436)).
    Do you know when this problem will be resolved
    by Microsoft?
    Work arrounds
    I've also tried to install the RSClientprint.dll
    every time automatically (without user interaction).
    But this will be delayed the printing for more
    than 4 seconds. This
    is very annoying.
    Another workaround is to generate a PDF and print the PDF. But this is also
    a lot slower.
    Uninstall the security patch. but I don't know the security risk.

Maybe you are looking for