Multiple "GetResultSet" prompts when on-demand subreport added

<p>A very strange thing started to occur with one of 4 reports I designed against a Java Bean.  </p><p>When I add an on-demand subreport at the detail level, and the subreport is either a copy of the main report, or designed specifically for the subreport, I get multiple getresultset parameter prompts.  Sometimes once before the preview will show, sometimes more.  Sometimes when I drilldown to Group 2 or detail.  And again when I click the on-demand subreport.</p><p>There are 5 parameters.  In the other three that work correctly, the getresultset parameter "doubles up" the identical prompts, rather than appending 5 more.</p><p>I have recreated the report twice from scratch.  Nothing seems to make a difference.  It isn&#39;t even complex.</p><p>Any thoughts?</p><p>Thanks,</p><p>Angela</p>

I settled on a work-around.
One of my first thoughts when the wrap-around didn't work was to split the heading into 2 lines, the top one being the subreport and the bottom one being a text box formatted to match the subreport. I discounted it quickly because it was cheap and ugly. After thinking about it, I extended the subreport down over the text box and moved the text box To Back. Now the entire column heading looks like a single control. It's still cheap, but it looks and behaves properly.

Similar Messages

  • Multiple logon prompts when connecting to either server console session or RDS farm

    All,
    Since last Sunday when installing updates users are being asked to login multiple times.
    This affects both admins connecting to the console session of members servers and users connecting to RDSH boxes
    If i run 'mstsc /v:servername /admin' i'm prompted to enter my credentials.  Normally this will log me right in and i'll land on the desktop.  Now, i'm getting the main login screen on the server and having to enter credentials again.
    All servers are 2008 R2 SP1.
    Clients are a mixture of XP SP3 and Win7 SP1.
    All servers are in the same member server OU and recieve the same GPO.
    The problem only affects approx 50% of servers despite all boxes recieving the same policies and having the same updates installed.
    Like i said, this started to occur after we installed updates on all boxes last Sunday. The updates installed were KB2533552 & KB2534366. I've uninstalled KB2534366 but KB2533552 doesnt support removal.
    There are no errors in any event logs on any machines.
    Is anybody else having issues with recent updates or ideas how to fix as i'm really at a loss now.

    Hi,
    Did you enable “Always prompt for password ” in the RD session host or GPO?
    If you do, please uncheck this option by the following steps:
    1.      
    Start>programs>Administrative Tools>Terminal Services> Terminal services Configuration) >right click on the RDP-TCP go to Properties>Log
    on settings tab> Uncheck always prompt for password.
    2.      
    Computer/Administrator Templates/Windows Components/Remote Desktop services/Remotedesktop session Host/security/allways prompt for password upon
    connection
    Thanks

  • Multiple password prompts when importing distributed form responses

    I have a two page form that I've distributed to my local server. When I test the form and send it back, it all works as it's supposed to. The problem comes in when I try to access my password protected _responses file. I have no problem accessing the empty portfolio with the password I've given it; however when it starts to import form submissions, it prompts me for the portfolio password 4 times for each individual form. What am I doing wrong?!

    Hi,
    In this scenario, I would suggest you to add multiple lines of text in the fields and limit the character count.
    Selecting this will display the whole text in the field and user will not have any issues while printing the form.
    Regards,
    Nakul

  • How to avoid multiple password prompt for intarnet portal

    we have developed a intranet portal in Share Point 2013 with multiple site collection. when accessing through IE, Chrome, we can do settings to avoid multiple password prompt by adding the domain name of site in Trusted sites. How we can achieve the same in Safari while accessing through MAC or IPAD

    first time when you call the BSP application from the browser (or by double clicking the BSP_APPLICATION link from SAP GUI) you need to pass user credentials. For further windows this will not be required as browser will remember your info.
    if you need to <b>somehow</b> avoid this then the only option is to hard code the user id and password in the service in transaction SICF or by passing the same via URL.
    Another option is that if you port this application in a SAP portal environment, SSO can be used .
    Hope this helps.
    Regards
    Raja

  • How can avoid the  problem of Parameter Prompting when I submitting ?

    I am developing web application in visual studio 2008 in csharp.How can avoid the issue or problem of  Parameter Prompting when I send parameters programaticaly or dyanmicaly?  I am sending the values from .net web form to crystal report but it is still asking for parameters. so when i submit second time that is when the reports is being genereated. How can i solve this problem. Please help. The code Iam using is below.
       1. using System; 
       2. using System.Collections; 
       3. using System.Configuration; 
       4. using System.Data; 
       5. using System.Linq; 
       6. using System.Web; 
       7. using System.Web.Security; 
       8. using System.Web.UI; 
       9. using System.Web.UI.HtmlControls; 
      10. using System.Web.UI.WebControls; 
      11. using System.Web.UI.WebControls.WebParts; 
      12. using System.Xml.Linq; 
      13. using System.Data.OleDb; 
      14. using System.Data.OracleClient; 
      15. using CrystalDecisions.Shared; 
      16. using CrystalDecisions.CrystalReports.Engine; 
      17. using CrystalDecisions.Web; 
      18.  
      19.  
      20. public partial class OracleReport : System.Web.UI.Page 
      21. { 
      22.     CrystalReportViewer crViewer = new CrystalReportViewer(); 
      23.     //CrystalReportSource crsource = new CrystalReportSource(); 
      24.     int nItemId; 
      25.  
      26.     protected void Page_Load(object sender, EventArgs e) 
      27.     { 
      28.         //Database Connection 
      29.         ConnectionInfo ConnInfo = new ConnectionInfo(); 
      30.         { 
      31.             ConnInfo.ServerName = "127.0.0.1"; 
      32.             ConnInfo.DatabaseName = "Xcodf"; 
      33.             ConnInfo.UserID = "HR777"; 
      34.             ConnInfo.Password = "zghshshs"; 
      35.         } 
      36.         // For Each  Logon  parameters 
      37.         foreach (TableLogOnInfo cnInfo in this.CrystalReportViewer1.LogOnInfo) 
      38.         { 
      39.             cnInfo.ConnectionInfo = ConnInfo; 
      40.  
      41.         } 
      42.  
      43.  
      44.  
      45.  
      46.  
      47.  
      48.         //Declaring varibles 
      49.          nItemId = int.Parse(Request.QueryString.Get("ItemId")); 
      50.         //string strStartDate = Request.QueryString.Get("StartDate"); 
      51.         //int nItemId = 20; 
      52.         string strStartDate = "23-JUL-2010"; 
      53.  
      54.         // object declration 
      55.         CrystalDecisions.CrystalReports.Engine.Database crDatabase; 
      56.         CrystalDecisions.CrystalReports.Engine.Table crTable; 
      57.  
      58.  
      59.         TableLogOnInfo dbConn = new TableLogOnInfo(); 
      60.  
      61.         // new report document object 
      62.         ReportDocument oRpt = new ReportDocument(); 
      63.  
      64.         // loading the ItemReport in report document 
      65.         oRpt.Load("C:
    Inetpub
    wwwroot
    cryreport
    CrystalReport1.rpt"); 
      66.  
      67.         // getting the database, the table and the LogOnInfo object which holds login onformation 
      68.         crDatabase = oRpt.Database; 
      69.  
      70.         // getting the table in an object array of one item 
      71.         object[] arrTables = new object[1]; 
      72.         crDatabase.Tables.CopyTo(arrTables, 0); 
      73.  
      74.         // assigning the first item of array to crTable by downcasting the object to Table 
      75.         crTable = (CrystalDecisions.CrystalReports.Engine.Table)arrTables[0]; 
      76.  
      77.         dbConn = crTable.LogOnInfo; 
      78.  
      79.         // setting values 
      80.         dbConn.ConnectionInfo.DatabaseName = "Xcodf"; 
      81.         dbConn.ConnectionInfo.ServerName = "127.0.0.1"; 
      82.         dbConn.ConnectionInfo.UserID = "HR777"; 
      83.         dbConn.ConnectionInfo.Password = "zghshshs"; 
      84.  
      85.         // applying login info to the table object 
      86.         crTable.ApplyLogOnInfo(dbConn); 
      87.  
      88.  
      89.  
      90.  
      91.  
      92.  
      93.         crViewer.RefreshReport(); 
      94.          
      95.                 // defining report source 
      96.         crViewer.ReportSource = oRpt; 
      97.         //CrystalReportSource1.Report = oRpt; 
      98.          
      99.         // so uptill now we have created everything 
    100.         // what remains is to pass parameters to our report, so it 
    101.         // shows only selected records. so calling a method to set 
    102.         // those parameters. 
    103.      setReportParameters();  
    104.     } 
    105.  
    106.     private void setReportParameters() 
    107.     { 
    108.       
    109.         // all the parameter fields will be added to this collection 
    110.         ParameterFields paramFields = new ParameterFields(); 
    111.          //ParameterFieldDefinitions ParaLocationContainer = new ParameterFieldDefinitions(); 
    112.        //ParameterFieldDefinition ParaLocation = new ParameterFieldDefinition(); 
    113.         
    114.         // the parameter fields to be sent to the report 
    115.         ParameterField pfItemId = new ParameterField(); 
    116.         //ParameterField pfStartDate = new ParameterField(); 
    117.         //ParameterField pfEndDate = new ParameterField(); 
    118.  
    119.         // setting the name of parameter fields with wich they will be recieved in report 
    120.        
    121.         pfItemId.ParameterFieldName = "RegionID"; 
    122.  
    123.         //pfStartDate.ParameterFieldName = "StartDate"; 
    124.         //pfEndDate.ParameterFieldName = "EndDate"; 
    125.  
    126.         // the above declared parameter fields accept values as discrete objects 
    127.         // so declaring discrete objects 
    128.         ParameterDiscreteValue dcItemId = new ParameterDiscreteValue(); 
    129.         //ParameterDiscreteValue dcStartDate = new ParameterDiscreteValue(); 
    130.         //ParameterDiscreteValue dcEndDate = new ParameterDiscreteValue(); 
    131.  
    132.         // setting the values of discrete objects 
    133.          
    134.  
    135.           dcItemId.Value = nItemId; 
    136.          
    137.         //dcStartDate.Value = DateTime.Parse(strStartDate); 
    138.         //dcEndDate.Value = DateTime.Parse(strEndDate); 
    139.          
    140.         // now adding these discrete values to parameters 
    141.           //paramField.HasCurrentValue = true; 
    142.  
    143.        
    144.  
    145.           //pfItemId.CurrentValues.Clear(); 
    146.          int valueIDD = int.Parse(Request.QueryString.Get("ItemId").ToString()); 
    147.           pfItemId.Name = valueIDD.ToString();  
    148.            
    149.         pfItemId.CurrentValues.Add(dcItemId); 
    150.         //ParaLocation.ApplyCurrentValues; 
    151.         pfItemId.HasCurrentValue = true; 
    152.         
    153.         //pfStartDate.CurrentValues.Add(dcStartDate); 
    154.         //pfEndDate.CurrentValues.Add(dcEndDate); 
    155.  
    156.         // now adding all these parameter fields to the parameter collection 
    157.         paramFields.Add(pfItemId); 
    158.          
    159.         //paramFields.Add(pfStartDate); 
    160.         //paramFields.Add(pfEndDate); 
    161.         ///////////////////// 
    162.         //Formula from Crystal 
    163.        //crViewer.SelectionFormula = "{COUNTRIES.REGION_ID} = " + int.Parse(Request.QueryString.Get("ItemId")) + ""; 
    164.         crViewer.RefreshReport(); 
    165.         // finally add the parameter collection to the crystal report viewer 
    166.         crViewer.ParameterFieldInfo = paramFields; 
    167.         
    168.          
    169.      
    170.     } 
    171. }

    Keep your post to under 1200 characters, else you loose the formatting. (you can do two posts if need be).
    Re. parameters. First, make sure yo have SP 1 for CR 10.5:
    https://smpdl.sap-ag.de/~sapidp/012002523100009351512008E/crbasic2008sp1.exe
    Next, see the following:
    [Crystal Reports for Visual Studio 2005 Walkthroughs|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23]
    CR Dev help file:
    http://msdn2.microsoft.com/en-us/library/bb126227.aspx
    Samples:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Remote Desktop Gateway and WebAccess Deployment - Multiple Logon Prompts

    I'm having a few issues with some multiple logon prompts using "Connect to a remote PC" via RD Web Access.
    I am able to log onto the RDWeb without a problem.
    Essentially once I make a connection to my end-device I first receive a logon prompt, I'm authenticated, then I'm asked again for another logon prompt. Any ideas how to resolve this?
    My layout is simple:
    1 VM in the DMZ that has the Remote Desktop Gateway and Remote Desktop Web Access roles installed. No connection broker, or session host.
    With my deployment I have a wildcard certificate bound to the Remote Desktop Gateway and it is bound properly in IIS. Remote Desktop functionality through the RDGateway works just fine. However, the only nuisance is that I get prompted multiple times for
    credentials when accessing the end-device regardless if my connection is from a domain-joined machine or a non-domain joined machine.
    I've tried using Web Single Sign On via http://anandthearchitect.com/2014/01/20/rds-2012-r2single-sign-on-using-windows-authentication-for-rdweb-page/ and it still does not work.
    Any ideas?
    Thanks,
    Dan

    Hi Dan,
    How many prompts are you seeing?  Expected behavior for Connect to a remote PC would be this:
    1. Log on to RDWeb
    2. Select Connect to a remote PC tab
    3. Enter server name in Connect to box, click Connect
    4. Unknown publisher warning, click Connect
    5. Credentials prompt, it should say These credentials will be used to connect to the following computers: 1. rdgw.domain.com (RD Gateway server) 2. remote.domain.com (remote computer)
    6. After entering credentials and clicking OK it should log you in to the remote computer.  This assumes that the destination is authenticated properly (usually via certificate) and the credentials are valid for both the RDG and the remote
    computer.  Normally in a domain environment the same credentials (domain\username) would be valid for the RDG and the remote server.
    -TP

  • Crystal Reports Server XI On-demand Subreport does not open

    Hi,
    I'm using Crystal Reports XI and have a report with two on-demand subreports. In Crystal Designer, both work fine - that is when I click on either on-demand subreport in preview, it opens in another tab.
    But in Crystal Reports Server, one subreport works but the other one just opens another tab with the main report. What could be the problem?
    Thanks,
    Rob
    Edited by: Rob Hershfield on Feb 2, 2010 4:36 AM

    I solved it - Both subreports have no name but the one that wasn't working apparently needed a name so I just typed "." (a period) and now it works.
    -Rob

  • Security prompt when opening .msg files in SAP

    I have a customer that gets this prompt when opening an attachment in SAP.  The attachment was saved from Outollk so it is in .msg file format.  The customer is using Windows 7, and Office 2007.  This is from the customer:
    As discussed, below is a screen shot of the pop up I receive every time when opening an email attachment with T-Code VA02.  I use this function multiple times per day.  Even if I select “Always Allow,”  I continue to receive this pop up.

    Hello Ronald,
    Did you try to create a security rule at the SAP GUI?
    Access the SAP GUI "options", then "security" -> "security settings". Click at the "Open security configuration" button, and then at the "insert" button.
    Regards,
    Isaías

  • Schedule On-Demand Subreport

    BOXI R2 - Crystal
    Is it possible to schedule a report that contains an on-demand subreport so that all of the data is available to viewers?
    Currently, the main report can be viewed but if the user clicks on the subreport link, the database query is ran before displaying the subreport data. Which is the way it should work when running the report normally. However, for scheduled reports, I would like everything run once and saved to the instance and still not display the subreport unless the user selects the link but without having to hit the database again.

    Hi Brent,
    Which version of BOE are you using?  There is a registry key that you need to add.  Below is the registry key for BOE XIR2 that will run the On-Demand subreports when scheduled and save them with data:
    [HKEY_CURRENT_USER\Software\Business Objects\Suite 11.5\Crystal Reports\SavedData]
    "GenerateDataForAllSubreportInstances"="Yes"
    [HKEY_LOCAL_MACHINE\Software\Business Objects\Suite 11.5\Crystal Reports\SavedData]
    "GenerateDataForAllSubreportInstances"="Yes"
    Regards,
    Wallie
    Edited by: Wallie Cheng on Sep 23, 2008 8:52 PM
    Remove the HTTP.  For some reason the forum automatically converts the registry path to a URL.

  • Image is not printing in PrintAdvanceDataGrid when the PrintAdvanceDataGrid was added to Vbox

    I tried to print the image in the PrintAdvance Data Grid  , image is not priniting  when the PrintAdvanceDataGrid was added to Vbox or Vgroup, can any one help?

    Images are loaded asynchronously, so they appear after the page is sent to the printer.  Using an image cache should help.
    -Alex

  • How do I delete iCloud account to change apple id, when iCloud demands password from defunct account to turn off find my iPhone?

    How do I delete iCloud account to change apple id, when iCloud demands password from defunct account to turn off Find my iPhone? I read all the replies that ignore this gotcha.

    Hi tony.vidmar,
    The article linked below details a number of troubleshooting steps that can help get signed out of your old iCloud account on your iPhone.
    If you're asked for the password to your previous Apple ID when signing out of iCloud
    https://support.apple.com/en-us/HT203828
    Regards,
    Allen

  • Seeing multiple iPhoto libraries when I click on the iPhoto icon in the dock?

    I can't figure out why I am seeing multiple iPhoto libraries when I click on the iPhoto icon in my dock.  I am running Lion on an early 2008 MacBook Pro (4 GB RAM), and when I click and hold on the iPhoto icon in the dock, it brings up a dialog box.  From top to bottom, this is what I see:
    iPhoto Library
    iPhoto LIbrary
    iPhoto Library
    Options
    Show Recents
    Open
    I can't figure out why it shows three iPhoto libraries when I only have one on my computer.  I've tried deleting the icon from the dock and then putting it back in the dock, but it still shows three libraries for some reason.  If I search for iPhoto in spotlight search or in finder, it only shows one iPhoto (in the applications folder).  Any help on how to resolve this weird issue would be much appreciated!

    I have the same issue.  I see four iPhoto libraries when I right click on the iPhoto icon in the dock, but I only actually have two libraries.  The other two simply do not exist on my computer.  And when I click on the libraries that do not exist, obviously nothing happens.  In the image, only the bottom two libraries are actual photo libraries.  The top two do not exist.
    I have relaunched Finder, restarted the computer, and even restored the entire computer from my Time Machine backup.  Nothing changes.  No matter what I try, the non existent iPhoto libraries continue to be present when I right click the iPhoto icon in the dock.  BTW, there are only two iPhoto libraries in the pictures folder.
    This is very frustrating and annoying.

  • Is there a way to view when gift cards were added so you can see what they were spent on?

    Is there a way to view when gift cards were added so you can see what they were spent on?

    No, you can't view a list of gift card redemptions, you can only view your account's purchase history : log into your account on your computer's iTunes via the Store > View Account menu option, you should then see a Purchase History section with a 'see all' link to the right of it, click on that and you should then see a list of your purchases - if you select a link on that history then it should show how it was charged e.g. mine show 'Store Credit' as I only use gift cards

  • Getting a "key" prompt when booting up in single user mode!!

    I bought my used macbook pro about a week ago without the original cd's and manuals. I installed the boot camp package but rebooted without creating the drivers disk to do this later. When my macbook boots up now it passes the apple icon with the twirling round arrow, then it stays at the Mac OS X box forever. How do I fix this without the tiger CD.
    I have tried booting up in single user mode and it takes me to a "key" prompt. Anything i type does not come up. I read the troubleshooting and it sayd that it should through me to a # sign instead so i can perform a "fsck --y" funtion.
    Please help restore my Macbook!!
    CM

    I waited 15min at the key prompt when booting in single user mode and it unlocked the command prompt.
    I guess it's some sort of security feature for the root.

  • Firefox no longer gives automatic prompts when I type in first few letters of a search - even though my browsing history is being recorded, and "Remember search and form history" is ticked in the Privacy preferences: what's gone wrong?

    Firefox has recently stopped giving (personalised) automatic prompts when I type in the first few letters of a search. What does come up is a long list of possible search subjects - but these are very general and don't reflect my own personal browsing history. My browsing history IS being recorded, however, and the "Remember search and form history" box is ticked in the Privacy preferences.
    I'm not using the "Private Browsing" option.
    There are two MacBooks in the house, sharing one wireless router. This problem has cropped up on both laptops - mine and my wife's - at around the same time.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

Maybe you are looking for