No drilldown in Crystal ReportViewer

We bought Crystal 2008 a month ago.  Using Visual Studio 2005, I dropped a Crystal Viewer on a form and wrote some code around it to logon to the database and view reports.  Everything is working fine, except drilldown reports.  They display the first page and when you hover with your cursor over the point where you need to enter the drilldown report, the cursor changes to a magnifying glass, but when you double click nothing happens.  I made sure that the references are pointing to the latest version.  If I view the report via Crystal Designer, the drilldown works.  This is normal Crystal functionality that worked since version 7.  The fact that I am using Visual Studio to build a viewer should not be the limiting factor, but right now, I am stumped.  We need to get this working before next Tuesday or go back to Crystal 9 or switch to MS reporting services. Both very gloomy prospects.  Does anybody know what I am doing wrong, if any, or is the rumours true that this feature was removed from Crystal 2008 when you use it via Visual Studio?

Hi Japie,
Trista is a resource here and she does know and has read your post and understands it.
Did you try opening a report from Crystal 9 sample folder to see if you can duplicate the problem as she did?
You did not mention what operating system you are using and patch level?
New OS's and recent patches from Microsoft have changed access permissions on ActiveX controls and other resources so don't rule out permissions. It may be a dependency we have that we don't have access to now.
In CR 9: Open this report you are having problems with CR 9 Designer and start removing pieces to narrow down the problem. Try creating a new report using one table and one group etc. to determine if it's report or data/database problems. It may simply be a corrupt RPT file that does not show up until used in the current viewer.
Not sure what you are referring to about escalating. Nothing in this post mentions escalating?
If it is only one report the time to determine the cause it may simply be quicker to re-build the report and move on.
SP1 for CR 2008 has just been released, download and install the update to see if that resolves the issue also: https://smpdl.sap-ag.de/~sapidp/012002523100010503722008E/cr2008_sp1.exe
Thank you
Don

Similar Messages

  • Crystal reportviewer print button problem

    Post Author: ftsoft
    CA Forum: .NET
    in the click event for a button, the reportview.reportsource is set string reportPath = Server.MapPath("rptCensusTract.rpt");        CrystalReportViewer1.ReportSource = reportPath;  this works fine. the report is displayed, and the print button works. when I change the code to use a report document ( for setting the logon infor )     private ReportDocument myreport;..... myreport = new ReportDocument();        string reportPath = Server.MapPath("rptCategoryHour.rpt");        myreport.Load(reportPath);.....CrystalReportViewer1.ReportSource = myreport;  the report is displayed, but nothing happens when the print button is clicked.  not even an error message. any idea what is happening here? thanks for any help  

    Make sure you have SP 2:
    https://smpdl.sap-ag.de/~sapidp/012002523100009038092009E/cr2008win_sp2.exe
    with FP 2.5 on top:
    https://smpdl.sap-ag.de/~sapidp/012002523100002975192010E/cr2008fp25.exe
    If the issue persists, since it is in the CR designer, post to the CR design forum:
    SAP Crystal Reports
    You need to resolve this in the designer, before trying to resolve it in a .NET application.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Crystal ReportViewer not showing on the browser but the tool bar appears with Print, export etc.

    Hello
    I am struggling on displaying the Report on the Browser. I am using Visual Studio 2010 and loaded my development box with client Tools.
    I am calling a report which is hosted on a Crystal Enterprise Server 13 on a remote location.
    The problem I am having right now is I am able to connect to the report without issues and able to see the Control Toolbar like "Print", "Export" icons etc. On clicking on Print or "Export" it is perfectly working as expected with Data. But the Crystal Report View does not show the report on the browser. Not sure why that is happening. is there anything I am missing? Code also pasted below. Please review and do help me quickly in providing an answer as soon as possible please.
    All the references are of CrystaDecisions 14.0.35000 versions.
    Running the application from my Visual Studio. PLEASE HELP!!
    SessionMgr ceSessionMgr = new SessionMgr();
                EnterpriseSession ceSession = ceSessionMgr.Logon("username",
                                        "password",
                                        "servername:port", "Enterprise");
                EnterpriseService ceEnterpriseService = ceSession.GetService("", "InfoStore");
                InfoStore ceInfoStore = new InfoStore(ceEnterpriseService);
                EnterpriseService ceRASFactoryService = ceSession.GetService("", "RASReportFactory");
                object rrfObject = ceRASFactoryService.Interface;
                InfoObjects ceInfoObjects = ceInfoStore.Query("SELECT * FROM CI_INFOOBJECTS WHERE SI_PROGID='CrystalEnterprise.Report' AND SI_NAME='WMS_TIMESHEET'");
                InfoObject ceInfoObject = ceInfoObjects[1];
                ReportAppFactory myReportAppFactory = (ReportAppFactory)rrfObject;
                myReportClientDocument = myReportAppFactory.OpenDocument(ceInfoObject.ID, 0);
                reportAreaController = myReportClientDocument.ReportDefController.ReportAreaController;
                reportSource = myReportClientDocument.ReportSource;
                CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo connInfo = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
                CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfos connInfos = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfos();
                CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag propertyBag = new CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag();
                propertyBag.Add("Database DLL", "crdb_odbc.dll");
                propertyBag.Add("Server Name", "WMS");
                connInfo.Attributes = propertyBag;
                connInfo.UserName = "xxxxx";
                connInfo.Password = "xxxxx";
                connInfos.Add(connInfo);
                myReportClientDocument.DatabaseController.SetConnectionInfos(connInfos);
                //if (IsPostBack)
                //SetReportData(295286);
                //myReportClientDocument.DatabaseController.logon(userId, password);
                myReportClientDocument.DatabaseController.logon("xxxxx", "xxxxx");
                Session.Add("ceSession",ceSession);
                Session.Add("ReportClientDocument",myReportClientDocument);
                CrystalReportViewer2.Visible = true;
                CrystalReportViewer2.EnterpriseLogon = Session["ceSession"];
                //CrystalReportViewer2.ReportSource = ceReportDocument;
                if (myReportClientDocument == null)
                    CrystalReportViewer2.ReportSource =  (ReportClientDocument) Session["ReportClientDocument"];
                else
                    CrystalReportViewer2.ReportSource = myReportClientDocument;
                CrystalReportViewer2.HasCrystalLogo = false;
                CrystalReportViewer2.HasExportButton = true;
                CrystalReportViewer2.HasPrintButton = true;
                CrystalReportViewer2.HasGotoPageButton = true;
                CrystalReportViewer2.HasPageNavigationButtons = true;
                CrystalReportViewer2.HasRefreshButton = true;
                CrystalReportViewer2.HasSearchButton = true;
                CrystalReportViewer2.HasToggleGroupTreeButton = true;
                CrystalReportViewer2.BestFitPage = true;
                CrystalReportViewer2.DisplayPage = true;
                CrystalReportViewer2.DisplayToolbar = true;
                CrystalReportViewer2.EnableDrillDown = true;
                CrystalReportViewer2.DocumentView = DocumentViewType.WebLayout;
                CrystalReportViewer2.RequestContext.FetchFromServer = true;
                //CrystalReportViewer2.ReuseParameterValuesOnRefresh = true;
                //CrystalReportViewer2.Width = 350;
                //CrystalReportViewer2.Height = 350;
                CrystalReportViewer2.Page.Title = "The information contained below is not for use or disclosure outside Convergys Corporation except under written agreement.";
                CrystalReportViewer2.PrintMode = CrystalDecisions.Web.PrintMode.ActiveX;
                CrystalReportViewer2.Zoom(400);

    Hi,
    What browser version are you using?
    Could you view the report from launchpad from the same browser?
    Could you try a different browser version?
    In IE, could you try using compatibility mode?
    - Bhushan
    Senior Engineer
    SAP Active Global Support
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place

  • How to add a dynamic table to a Crystal ReportViewer?

    Hi All,
    I'm trying to create my first crystal report, but I want to create the data dynamically. I want to create my table on the fly then, just dump the table into the crystal report.
    1. I'm not sure how to setup the fieldnames in the report to point to my dynamic table.
    2. How do I add the columns name in my dynamic table to my report?
            DataTable m_tExample = new DataTable();
            // Add Column Names
            m_tExample.Columns.Add("firstname", typeof (string));
            m_tExample.Columns.Add("lastname", typeof( string));
            // Add Test Data
            m_tExample.Rows.Add("MT","Long");
            m_tExample.Rows.Add("D", "Chiat");
            m_tExample.Rows.Add("Matdt", "Sdmith");
            m_tExample.Rows.Add("Kevin", "Cloley");
            m_tExample.Rows.Add("Maitt", "Diurkee");
            m_tExample.Rows.Add("Paam", "Duurkee");
            m_tExample.Rows.Add("William", "Never");
            m_tExample.Rows.Add("Tang", "Hong");
            m_tExample.Rows.Add("Mike", "Lopez");
            m_tExample.Rows.Add("Bill", "Chao");
            m_tExample.Rows.Add("Az", "Mattizra");
            m_tExample.Rows.Add("Raja", "Crash");
            m_tExample.Rows.Add("Jimmy", "Compton");
            m_tExample.Rows.Add("Ray", "Johnson");
            m_tExample.Rows.Add("Janice", "Howard");
            m_tExample.Rows.Add("Tony", "Scott");
        // Add DataSet to Viewer?
            CrystalReportViewer1.ReportSource = m_tExample.DataSet;
            CrystalReportViewer1.DataBind();
    NOTE: When I'm in the designer, I only see a text object to place in the report detail for a fieldname.
    VS 2005, Crystal Report 2008
    Thanks.

    Hello,
    Once you get the Data Set create save it as XML and then create a new report off the XML file. Then you can set the data set to the report and the XML is not required any more.
    First, to be able add fields to a report you need to use RAS. Report.Engine doesn't have the ability.
    If you search in this forum you will find lots of examples on how to...
    If you want to create the report then see these RAS samples:
    http://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples#NETRASSDKSamples-Exporting%2FPrinting
    Don

  • No drilldown on reportviewer

    Using the Crystal ReportViewer in Visual Studio, the drill down reports display, but the drill down does not work. The cursor changes to a magnifying glass at the right place, but double clicking does nothing .   We have now conclusively proved that the problem is when you convert a Crystal 9 report to Crystal 2008 or using a Crystal 9 report.  Everything works fine if you create a new Crystal 2008 report. Is there a conversion program available or am I the 1st person in the world to pick up this problem?

    Hi Japie,
    PLEASE do NOT enter more than one instance of an issue.
    You also have this posting in which Trista verified it's not an issue or a bug:
    https://forums.sdn.sap.com/click.jspa?searchID=17286570&messageID=6069616
    You need to do more debugging on your side and not simply assume there is a bug. It's likely a permission issue on some dependency file.
    I'm closing this case also

  • Crystal Reports "Unknown Source" Stack Trace after report generation

    Getting java.lang.NullPointerException with Crystal ReportViewer.W(UnKnown Source)  stack trace... 
    java.lang.NullPointerException
    at com.crystaldecisions.report.web.viewer.CrystalReportViewer.goto(Unknown Source)
    at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
    at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unknown Source)
    at jsp_servlet._crystalviewer.__viewer._jspService(__viewer.java:105)
    We are running in to this issue only after the report is generated and during performing a search or navigating to different page...
    Any help to resolve this will be greately appriciated....
    Thanks
    ND

    The ODBC datasource must be configured as a System datasource.  The database was configured as a User datasource so it was only visible on the local computer.  That's why Business Views Manager could access the database.

  • Crystal report cross tab

    hi all
           i am new in this forum.  i have facing problem in cross tab report. in my project i'm using cross tab crystal report. i have removed record navigation option.so entire record will be displayed in one page, in this crystal reportviewer will split the records with help of page break. if  i got page break the heading will be display again and again for every page break.  i want to display heading only one time for all pages using Cross Tab report.  Anybody knows tell me the idea
    Thanks & Regards
    Aravinth K

    The above highlighting works in regular crystal report but not in cross tab report.
    I am wondering is there differnt procedure to work in cross tab? I noticed there's a highlighting expert function in corss tab menu...

  • Context Menu and DrillDownSubreport Click event

    I have developed my application using Crystal Reports 2008 and C#. My form embeds a Crystal ReportViewer for user to view our custom reports. We also include a popup context menu on the GUI but we experience problems with the built-in DrillDownSubreport behavior. When we launch (right click) the context menu on top of the report content page and click any of the menu item, the mouse click seems to trigger the DrillDownSubreport at the same time. I had tried to mask that but wasn't successful - e.g. using context menu popup and collapse event to set different DrillDownSubreport handler on setting the return value (true to disabled) as well as trying on the WndProc.
    I would appreciate if someone can help me to resolve this issue so that my context menu will work without triggering the subreport drilldowns.
    Thanks in advance.

    Hello,
    Have you tried to cancel drilldown on the Crystal Reports Viewer? Be aware, it will cancel all drilldown not just subreports.
    CrystalReportViewer1.EnableDrillDown = False
    'Set the viewer to the report object
    CrystalReportViewer1.ReportSource = crReportDocument
    Elaine

  • URI syntax issue.

    Gday everyone,
    The following snippet throws a URISyntaxException:Illegal character in query at index...
    I can understand that it doesnt like he pipes in the url. Any ideas on how to overcome this syntactical problem besides removing the pipes?
    try {
                   String uri =
                             "http://localhost:8080/crystal/ReportViewer.jsp?debug=off&report=reports//A4/01_CostCentreDefinitions_A4.rpt&prompt0=Test+Plan+PHS+COA&prompt1=|||||||||||1300";
                   Desktop.getDesktop().browse(new URI(uri));
              catch (MalformedURLException e) {
                   e.printStackTrace();
              catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              catch (URISyntaxException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              }

    I have found a workaround. FYI the following snippet:
    for (char c : new char[] { '|' })
      uri = uri.replace(String.valueOf(c), (c < 16 ? "%0" : "%") + Integer.toHexString(c));

  • Problem installing with merge module

    I use CR Developer, Product Type Full, version 11.5.8.826.
    I use it to design RPT files that use XML and XSD files as data sources.
    I deploy these RPT files to client machines that also run a web enabled app I developed using ASP.NET v.2
    I built an installer with the CrystalReports11_5_NET_2005.msm merge module.
    However, when I install on a clean client machine with the MSI I created I get some weird database access error in the Crystal Reportviewer that's embedded in my ASP.NET webpage.
    When I then install the entire CR Developer product on the client machine everything works fine.
    So clearly, the merge module I use does not install and register all the files required to make my product work. Am I using the wrong merge module? Should I be using the four RDC merge modules?
    It's clearly not acceptable to have install the entire CR Developer app. Also, I saw another thread where they were talking about copying the entire C:\Program Files\Business Objects\common\3.5\bin directory to the client machine. That cannot be an acceptable solution either, right?
    I need a definitive answer how to deploy the correct runtime environment to make my RPT files correctly run using the Report viewer in my web pages.
    To be clear, I do NOT use VS.NET 2005 to develop my RPT files. I do not use anything built into Visual Studio to build my RPT files. The only interaction with .NET is that I have a Reportviewer object embedded in one ASP.NET web page that visualizes the RPT files I previously created using the CR Developer app.
    This is from my web.config file:
    <add assembly="CrystalDecisions.CrystalReports.Engine, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.ReportSource, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
    <add assembly="CrystalDecisions.Shared, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
    <add assembly="CrystalDecisions.Web, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
    This is the aspx from the web page that shows the report viewer:
    <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true"
        CodeFile="ReportPage.aspx.cs" Inherits="Paladin_CReports.ReportPage" Title="Paladin Reports - Crystal Reports - Report" %>
    <%@ Register Assembly="CrystalDecisions.Web, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
        Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
    <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
        <asp:Panel ID="Panel1" runat="server" Height="28px" Style="z-index: 100; left: 0px;
            position: absolute; top: 148px" Width="1014px">
            <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true"
                DisplayGroupTree="False"
                Style="z-index: 120; left: 0px; position: absolute; top: 0px" HasCrystalLogo="False"
                EnableDrillDown="False" HasDrillUpButton="False" HasToggleGroupTreeButton="False"
                HasViewList="False" ShowAllPageIds="True" HasRefreshButton="True" />
        </asp:Panel>
    </asp:Content>
    I need a definitive answer how to deploy the correct runtime environment to make my RPT files correctly run using the Report viewer in my web pages.
    Thanks,
    Rodger

    Hi,
    Give a try to five read permissions to IIS_WPG for the temp folder which is under your account(In case of web application) and in case of windows app give read permission to a user for c:\windows\temp and to the folder which contains crystal reports.
    Need more info?
    What meerge module you have downloaded?
    Right merge modules are [here|http://resources.businessobjects.com/support/additional_downloads/runtime.asp#06]
    Note if appliaction uses RDC only then you need to install RDC merge modules.
    Windows or web application?
    Are you changing the XML schema?
    Hope this help!!
    Regards,
    Amit

  • Merge modules for report viewer only - can you help today?

    Hi all,
    We are using Crystal 2008, VS 2008, and have an C# application that is using the Crystal reportviewer control to render a report generated server side. 
    We need the Crystal 2008 reportviewer control, not the 10.5 version that is currently referenced in the studio.  For development purposes, we can install the Crystal 2008 msm. 
    But here's my question.......
    For our client side install, is there a merge module/msi that will give me just the controls I need instead of using the (larger) merge module/msi from the site?
    We need to get our build done within the next day.  Any help in answering this question would be greatly appreciated.  If you can just let us know whether there is any other way than the full msm, that would be very helpful.
    Thanks so much......

    Hi,
    We need the Crystal 2008 reportviewer control, not the 10.5 version that is currently referenced in the studio. For development purposes, we can install the Crystal 2008 msm.
    For development purpose the CR 2008 must get integrated with VS 2008, also all the correct references should be referenced.
    - How to integrate
    First Install IIS
    then VS 2008
    then CR 2008
    How to check that CR get integrated with VS or not -
    Open VS environment  go to help about - there you will see the version of CR integrated.
    Note:- VS 2008 is compatible with CR 2008 SP0/SP1
    For our client side install, is there a merge module/msi that will give me just the controls I need instead of using the (larger) merge module/msi from the site?.
    You must have installed the runtimes to run CR on the machine where CR complete product is not installed, Hence the system must have merge modules or server install.
    Hope this helps!!
    Regards,
    Amit
    Edited by: Amit Singh on May 6, 2009 5:48 PM

  • Drilldown report in Crystal

    Hi,
    I need to produce such drilldown reports with Crystal against an Oracle database
    First Look of the report
    Sales report for the country
    North   $250
    South  $100
    East    $300
    West   $150
    Total    $800
    I need to Drill on details for one of the items
    Sales report for the country
    North   $250
      AA     $100
      AB     $100
      AC     $ 50
    South  $100
    East    $300
    West   $150
    Total    $800
    Is it doable with Crystal, if so I would like to know how it can be possible without using a stored procedure in Oracle.
    Thanks in advance,
    Venkat
    Edited by: Venkat Ramamurthy on Apr 23, 2009 12:47 AM

    First you need to create a group on country in the report and place the details in detail section. Now suppress your detail section based on the condition like this
    drilldowngrouplevel=0
    Now refresh the report and you can see all the countries and the total amount. When you double click on the group name country you can see the details.
    Regards,
    Raghavendra

  • Crystal reports Drilldown

    In crystal reports 11.5 as i drilldown on the report the group changes
    for example i have 3 groups
    1.Region
    2. Loss & Damage
    3. Paid & Denied
    In the report i am showing it as
    Region name
          Loss
               Paid
               Denied
          Damage
               Paid
               Denied
    Region total
    now when i drilldown on PAID i could capture the current group name ie PAID but even i want to capture
    the previous group name ie if i drilldown on PAID by LOSS i should be able to capture the previous group
    name is "LOSS" and display on the page header text object as LOSS.
    I am using VS 2005,crystal report 11.5, c#, sql 2000
    Please if anybody could help me i appreciate it.

    In my report i am displaying in the page header as
    Type       Loss & Damage
    Status    Paid & Denied
    group header1 Region name
      group header2 Loss
             group header3 Paid
             group footer3 Denied
      group footer2 Damage
             group footer3 Paid
             group footer3 Denied
    group footer1  Region total
    when i click on Paid under Loss the page headers should display as
    Type  Loss
    Status Paid
    How tp capture the group name which i am clicking and the previous group name and display in the page header

  • Crystal reports 2008 drilldown javascript error

    hi, i'm programing with visual studio 2003 and crystal reports 2008 in visual basic.
    when i run my drilldown report show me this javascript error : "Loweboundtype is null or not is a object"
    and the drilldown don't work.
    mi os is windows XP, and my browser is Internet Explorer 6.
    anybody know how can i fix this problem???
    Edited by: Juan Antonio Flores Zaher on Jan 9, 2009 12:53 AM

    Hi Juan
    As per the issue description, you are using Visual Studio 2003 and Crystal Reports 2008 in Visual Basic. You get JavaScript error when you try to drill down the report.
    We would like to know the following details:
    - Does the report work fine with Standalone Crystal Reports Designer?
    - Exact version of Crystal Reports Designer. (To get this information, open Crystal Designer and go to Help> About Crystal Reports)
    - If you get the error while refreshing the report through application, then I would suggest you to post this query on the Java forum to get better assistance.
    The link of Java related queries is as follows:
    SAP Crystal Reports, version for Eclipse
    Hope this helps!
    Thanks

  • ReportViewer 11.0 component in remote mode - drilldown leads to significant increase of drilldown column width

    Description
    Hello guys,
    I have a problem with drilldown function in my reports with ReportViewer 11 component from version 10.0 to 11.0 in my simple ASP.NET 4.0 application, using ReportViewer in remote rendering mode.
    The report design is based on multiple row groups, which should be opened one level after another (like hierarchy tree). It's a simple table without group headers, calculating summary of related orders value.
    If I open some row group (drill down) via clicking onto a "+" sign in any data row other than first from the top, the column width becomes too big(like twice the original row width) causing the whole row width to increase significantly. If I do the same drilldown in the first data row in the tablix, the row(and all columns) preserves it's original width (is OK).
    The report works fine when launched directly from the SSRS Report Server interface but the column widths are HUGE when run with Report Viewer 11.
    I'm using latest reportviewer DLL files (all are version 11.0.3452.0)
    Microsoft.ReportViewer.WebForms.dll
    Microsoft.ReportViewer.ProcessingObjectModel.dll
    Microsoft.ReportViewer.DataVisualization.dll
    Microsoft.ReportViewer.Common.dll
    Could you please fix the problem or suggest to me what can I do to overcome this problem?
    These reports are for a large corporate client and need to be delivered quickly and look good.Thank you in advance,Joe
    Joe Colorado

    Hi Joe,
    As you have mentioned that the drilldown report works fine in the report server but have the size issue in the reportviewer 11.0.
    Please test to see if the other drilldown report  will have the issue about the column width increase too much, please also test on the reportviewer10.0 (VS2010) to see if you will got the same issue.
    If the reportviewer 10.0 is ok, please try to use it as an workaround and it seems like a bug and you can ask Product group here directly.
    http://connect.microsoft.com/
    Or you can log a service ticket to microsoft to work on it. If finally the ticket is indeed a bug, the ticket will not be charged.
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

Maybe you are looking for

  • Duplicate records to DSO

    Hello Friends, we have an issue with the Duplicate records in to DSO let me enplain the senarion The Heder and Details data is loaded to saperate DSO's and these 2 DSO's data shuld get merged in the third one, the Key fields in DSO 1 : DWRECID, 0AC_D

  • Can't set File Hosting Locations on Show and Share

    Hi,      I'm currently using Show and Share 5.2. I have it peered with the DMM and everything for the most part seems to be working fine. The problem that I'm having is that I can't seem to set and save the File Hosting Locations. I set it to store l

  • Connecting Yamaha Speakers/Monitors

    I have a Firewire 410 soundcard and the new IMAC. Does anyone know how to connect the speakers to the soundcard. What ports am I suppose to use? Also how can I have the speakers connected to the Firewire 410 and still have the Mac use those speakers

  • Invoice posting allowed despite GR reversal

    Hi Guys, I have created a PO with GR based IV indicator checked.Then GR is done and after that GR is reversed.Now when I tried to post the invoice against the po it is allowing to post the invoice.Only thing is that you have to enter the price in the

  • KPI doesn't filter according to the repository variables- obiee 11g

    Hello all, I have created a KPI that contains the following dimensions: Year, Monthname, Trn_date I have also created some 3 repository variables: CurrentYearRepoVariable: holds current year (select to_char(trunc(sysdate, 'yyyy'),'yyyy') from dual) C