Commands crystal 2008

i am using a UNION query in a command prompt, and i receive the following error how do i fix this?
ALL UNION, INTERSECT OR EXCEPT QUERIES MUST HAVE EQUAL NUMBER OF EXPRESSIONS ON THEIR TARGET LISTS.
select wc_name, complete_date, part_number, lot_name, shift, complete_quantity, partweight_f , plantcode_s
from (
select
wc_name, convert(varchar, complete_time,101) complete_date, complete_time,
complete_quantity, partweight_f, lot1.part_number, lot1.lot_name, plantcode_s
from tracked_object_history toh join uda_workcenter UWC on toh.wc_key = UWC.object_key
left join lot lot1 on tobj_key = lot1.lot_key
left join part part1 on part1.part_number = lot1.part_number
left join uda_part UPart on upart.object_key = part_key
where convert(varchar, complete_time,101) between {?Date_Begin} and {?Date_End}) ab
join
(select
stationname, shift,
convert(varchar, starttime,101) sh_startdate, convert(varchar, stoptime,101) sh_stopdate,
starttime, stoptime
from dbo.DC_shiftDCS where stoptime is not null ) cd
on ab.wc_name = cd.stationname and ab.complete_time between cd.starttime and cd.stoptime
union all
select wc_name, complete_date, part_number, lot_name, shift, complete_quantity, partweight_f , plantcode_s
from (
select
wc_name, convert(varchar, complete_time,101) complete_date, complete_time,
complete_quantity, partweight_f, lot1.part_number, lot1.lot_name, plantcode_s
from tracked_object_history toh join uda_workcenter UWC on toh.wc_key = UWC.object_key
left join lot lot1 on tobj_key = lot1.lot_key
left join part part1 on part1.part_number = lot1.part_number
left join uda_part UPart on upart.object_key = part_key
where convert(varchar, complete_time,101) between {?Date_Begin} and {?Date_End}) ab
join
(select
stationname, shift,
convert(varchar, starttime,101) sh_startdate, convert(varchar, stoptime,101) sh_stopdate,
starttime, stoptime
from dbo.DC_shiftDCS where stoptime is null) cd
on ab.wc_name = cd.stationname and ab.complete_time >= cd.starttime
union all
select workcenter, LMT, partnumber, lotnumber,  shift, scrap_qty,partweight_f, plantcode_s, scrapcode
from (
select workcenter, convert(varchar, scrap.last_modified_time, 101) LMT, scrap.last_modified_time,
partnumber, lotnumber, scrap.quantity scrap_qty,  plantcode_s, partweight_f, scrapcode
from dc_scrappartsdcs scrap left join part on partnumber = part_number
left join uda_part upart on part_key = upart.object_key
join work_center on workcenter  = wc_name
join uda_workcenter uwc on wc_key = uwc.object_key
where convert(varchar, scrap.last_modified_time,101) between {?Date_Begin} and {?Date_End}
) ab
join (
select stationname, shift, starttime, stoptime from dc_shiftdcs
where stoptime is not null) cd on
ab.workcenter = cd.stationname and  ab.last_modified_time between cd.starttime and cd.stoptime
union all
select workcenter, LMT, partnumber, lotnumber,  shift, scrap_qty,partweight_f, plantcode_s, scrapcode
from (
select workcenter, convert(varchar, scrap.last_modified_time, 101) LMT, scrap.last_modified_time,
partnumber, lotnumber, scrap.quantity scrap_qty,  plantcode_s, partweight_f, scrapcode
from dc_scrappartsdcs scrap left join part on partnumber = part_number
left join uda_part upart on part_key = upart.object_key
join work_center on workcenter  = wc_name
join uda_workcenter uwc on wc_key = uwc.object_key
where convert(varchar, scrap.last_modified_time,101) between {?Date_Begin} and {?Date_End}
) ab
join (
select stationname, shift, starttime, stoptime from dc_shiftdcs
where stoptime is null) cd on
ab.workcenter = cd.stationname and  ab.last_modified_time >= cd.starttime

I can't read such a long query as one long line, so I didn't.  (If you'd like to re-post it with logical line breaks, I'd be happy to read it...)  But the error sounds like the number of columns on each side of the UNION is not the same.  In other words, you can't to this:
select a, b, c from table1
UNION
select d, e from table2
It would have to be two OR three columns from both tables.  Furthermore, the data types of corresponding columns should be the same.
HTH,
Carl

Similar Messages

  • Crystal 2008 not showing a Hash Value correctly

    We are using a SQL database with Crystal 2008.
    The Problem:
    We are having some issues displays the hash value of a varchar(20) in our crystal reports. Every value in the field is either going to be a Null or 20 characters long. We are getting varying length characters, when it should not. And it is showing blank for some of the records when the double check shows that they exist.
    What can we do to make Crystal 2008 show these fields correctly? I can use a command but that is a temporary solution for a reoccuring problem with the field in question.
    Thank you for your time!
    Dan

    We use EncryptbyCert() function in SQL. It returns only a value that is either null or 20 characters long. That is all I am able to give for information about that.

  • Using Crystal 2008 to insert records into a table

    Hi,
    We have a unique need to use Crystal to insert records into a table. We have managed to test a report that can write into a temporary table.  This is done by using sql command object  and uses  the following code :
    INSERT INTO TEMP_TABLE  (ORDERID)
    VALUES ({?orderid})   (-- where orderid a parameter).
    This test report asks for an order id and then inserts the record perfectly fine.
    Now moving on to the real report - This report basically prints orders in batches and we want to insert order id into a temporary table to ensure we don't print orders that were already printed. To do this we created a sub report "insert orders" that has the above insert command. The main report passes the orderid to subreport and the idea is that the subreport would insert each time an order is passed. So if main report printed 50 orders ids, the then it would do 50 inserts individually into the temp table. 
    This however is NOT working. The report runs fine but there is no insert.  Our hunch is that  Crystal is not committing after every order id is passed from the main report.  Not sure if we can set the AUTO COMMIT ON  as a default somewhere?
    Wondering if any one has attempted this or has any insights?
    Regards,
    Mohit.
    Environment is - Crystal 2008 and Oracle 11GR2, we are using Oracle drivers (and not odbc)

    Hmmm... I don't use Oracle but the syntax looks good...
    You've already tested it and I assume that you are using the same driver in the production report as you used in the test, so that shouldn't be an issue...
    how are you pulling the data? Is the final SELECT statement that pulls the report data in the same command as the INSERT script, or is the INSERT script in it's own command?
    The reason I ask... If you are trying to pass a multi-valued parameter to a command, it won't work. If you have the insert command as it's own command while the data is being pulled with linked tables or a separate command, it is possible that the report itself will execute as expected w/o passing a value to the insert script.
    If it's all in 1 command (as it should be), a bad parameter would fail in the final SELECT causing an error.
    Also... are rows null or empty string values being added to table when the report executes? This would be an indication that the command is being executed but isn't getting the parameter value.
    Jason

  • Crystal 2008 - Allows Varied Section Page Orientation -but it doesn't stick

    Hi all
    I've just finished rehashing a report that has required a change from Portrait to Landscape, which I havent' been able to do until getting Crystal 2008... Phew!... Or so I thought...
    While editing, the print preview shows me exactly what I want to see... seamless transition from Portrait to Landscape pages.
    But once I load the report back into my database and generate it, Crystal seems to change its mind about the changing orientations, and completely ignores the call for Landscape from the second page onwards.
    Does anyone have a solution for this problem?
    -Karen

    Hi Karen,
    Ignore Prashant comments, he's assuming you are using Business Objects Enterprise which is another product SAP has, and it may be that you are using BOE 3.1 to run those reports....???
    CR Designer has the ability to save a report locally on your hard drive with a RPT file extension. By default CR does not have the ability to save a RPT file to a database. This is why I was asking about an application you use to run your reports.
    What is the name of the database? It sounds like it has to either have some front end tool that can schedule or run reports, and those reports are simply saved in the database in binary format or as Blob's.
    What I don't understand is how a database can execute a report, it needs CR runtime to do that because a RPT file is not executable?
    Is your DB local on your PC or on a network Server? When to ask your DB to run a report are you doing through some DB front end tool, command line or????
    If you export the report to RPT format, copy the RPT file to the DB server, which I assume also has CR Designer installed, and then open that report up in CR designer and refresh it and then print it does that work?
    Thanks again
    Don

  • Crystal 2008 DB2 error that works in Crystal XI R1

    We finally converted a legacy server from Crystal Server XI R1 to Crystal 2008. All users are now suppose to start writing in CR2008 only.
    We found a small number of reports running again a DB2 data source that are erroring out when run on CR2008 locally or on the server..
             Failed to retrieve data from the database. Details: [Database Vendor Code: -204 ]
    - The same reports run fine on the same machine against the same data source when opened and run in CRXI.
    It appears that running them in CR2008 adds a schema value "Username." to the db2 command and thus the DB2 -204 error.
        SQL0204N name is an undefined name.
    The problem happens whether we use ODBC or DB2 Unicode Connections.
    Any ideas?

    Answer: Service Market Place you will see it is now available.
    This turns out not to be the case.
    These are the options in the marketplace. Note, no CRS2008 V2, sp2 or fix pack 2.5 etc.
         CRYSTAL REPORTS SERVER
         CRYSTAL REPORTS SERVER 2008 V0
         CRYSTAL REPORTS SERVER 2008 V1
         CRYSTAL REPORTS SERVER XI R2
    Answer: One possible work around is to install Crystal Reports on the CR Server PC and then you can apply the CR patch. It should update all of the CSE runtime. BUT PLEASE do this on a test system first. The install may detect CRS is installed an not allow you to though.
    We are testing this to see if this is your solution.
    My last response was a question on whether this had been tested, since you mentioned back on March 29th that you were testing. We do not have a test server for this product due to licensing contraints. Has this method for updating the server been tested?

  • Crystal 2008 crashes when trying to print

    Hello,
    I am unable to print from Crystal 2008; the program crashes and I get the error crw32.exe
    I have disabled the DEP in my computer.
    I have installed the SP1 of Crystal 2008.
    I have uninstalled the SP3 of Windows XP.
    I have uninstalled and reinstalled Crystal.
    I have reduced hardware acceleration
    I have event viewer errors for two DLL files ntdll.dll and csprintdlg.dll but cannot register
    The printing issue is from a client computer. I can print from the server.
    Thank you.

    I followed these instructions to manually uninstall but had issues listed below:
    Hi,
    Below are the steps for
    'How to manually uninstall Crystal Reports 2008 '
    Before getting started, uninstall Crystal Reports 2008 by launching the Setup.exe file from the installation CD or by using the 'Add/Remove Programs' command. If either of these methods fails to remove all Crystal Reports directories, files and registry keys, then continue with the resolution of this article.
    WARNING
    This resolution can be applied if Crystal Reports 2008 is the only software installed on the computer that uses the Business Objects directories, files and registry keys.
    For example, Crystal Analysis, Crystal Enterprise and BusinessObjects Enterprise XI are applications that may share the same directories, files and registry keys.
    Removing these directories, files and registry keys may cause other software to function incorrectly.
    1. To manually uninstall Crystal Reports 2008, delete the following directories:
    " C:\Program Files\BusinessObjects Enterprise 12.0
    " C:\Program Files\Business Objects\Common\4.0
    NOTE:
    Do not remove the directory C:\Program Files\Business Objects\Common\4.0 if you have BusinessObjects Enterprise XI or Crystal Reports Server XI installed. These files are shared by both applications and removal of these files will cause Business ObjectsEnterprise XI and Crystal Reports Server XI to function incorrectly.
    2. Delete the following registry keys:
    WARNING:
    The following resolution involves editing the registry. Using the Registry Editor incorrectly can cause serious problems that may require you to reinstall the Microsoft Windows operating system. Use the Registry Editor at your own risk.
    HELP:
    For information on how to edit the registry key, view the 'Changing Keys And Values' online Help topic in the Registry Editor (Regedit.exe).
    RECOMMENDATION:
    It is strongly recommended that you make a backup copy of the registry files (System.dat and User.dat on Win9x computers) before you edit the registry.
    " HKEY_LOCAL_MACHINE\ Software \ Business Object \ Suite 12.0\ Crystal Reports\
    " HKEY_CURRENT_USER\Software\Business Objects\Suite 12.0 \ Crystal Reports\
    NOTE:
    After making changes to the registry, restart the affected service or application as required.
    Cheers,
    Deepti Bajpai
    ISSUES I posted and did not get a response to:
    Not only did this not solve my printing problem in Crystal, but now Peachtree will not run either.
    I did not have the file:
    " HKEY_LOCAL_MACHINE\ Software \ Business Object \ Suite 12.0\ Crystal Reports\
    I deleted this "crystal reports" folder in this extension:
    " HKEY_CURRENT_USER\Software\Business Objects\Suite 12.0 \ Crystal Reports\
    In both the "local machine" and "current user"\Software files there is a "Crystal Decisions" folder. Does this need to be deleted as well?
    Please advise. Thank you.

  • Visual Foxpro & Crystal 2008

    Post Author: LarryPfx
    CA Forum: Crystal Reports
    Our current application is in VFP and we would like to migrate our reporting system to Crystal 2008.  Is it possible to launch Crystal reports viewer directly from VFP and what are the licensing implications for client distribution?
    Many thanks in advance
    Larry

    > oCR = CREATEOBJECT("CrystalRuntime.Application") - But it fails here.
    Try creating a VBScript with a simple line:
    Set rdc = CreateObject("CrystalRuntime.Application")
    and try running that from the command-line.  If it doesn't throw exception, it's likely access issues with FoxPro.
    If it does throw an exception, check to ensure that that class is registered using the Registry Editor.  If not, you may have to re-register the craxdrt.dll file.
    Sincerely,
    Ted Ueda

  • CRYSTAL 2008 ERROR 1402

    ERROR 1402 WHICH HAS NOW BECOME AN ISSUE ON MY MACHINE IN RELATION TO CRYSTAL 2008 RUNNING UNDER XP DOES NOT SEEM TO HAVE A SOLUTION.
    I HAVE TRIED ALL THE RECOMMENDATIONS FROM THE FORUMS AND THE INTERNET AND MANY OF MY OWN BUT WITH ABSOLUTELY NO SUCCESS.
    IT IS HARD TO BELIEVE THAT I HAVE TO CONSIDER STARTING A NEW DISK BUT............................
    SURELY ONE OF THE MANY PEOPLE WHO HAVE HAD THIS PROBLEM HAVE NOT HAD TO RESORT TO WHAT SEEMS ALMOST AN ABSURD STEP.
    I HAVE OTHER MACHINES AND AM ALSO DEVELOPING REMOTELY BUT THIS IS AN ISSUE WHICH MUST BE FIXED???
    C D WARD
    0411 732 657
    03 98176544
    WARDROOM COMPUTER SOLUTIONS
    BALWYN
    MELBOURNE

    Hi Balwyn,
    The install errors actually belong to Microsofts MSIexec installer. If you use Google or Microsofts new search engine called BING and search on those numbers you'll find info on what they mean. In this case it appears you don't have full control of your registry.
    Sometimes what can happen is if you are in a Corporation with an IT department they push out updates to your Profile that appear you are and Admin but they have modified your permission. The other problems are typically anti-virus software will stop installers from trying to update the registry.
    I've also seen issues where an older install a warnign was popped up and ignored which can cause registry entry errors.
    What may help you in your case is to turn on install logging. Open a command line window using the CMD command and change to the install folder and then the log should tell you exactly where the error is and why.
    Here's a link to Microsoft's site on all of the instlal switch options.
    http://technet.microsoft.com/en-us/library/cc759262%28WS.10%29.aspx
    Typically most people do not have problems but in some cases due to other software install issues or permissions there are cases where debugging is required.
    If you need help decoding the logs post just the lines with errors and we'll see what becomes of it. There is a 2500 character limit and at 1500 characters formatting is removed but still veiwable in edit mode.
    Thank you
    Don

  • Can not see two fields in Crystal 2008 Developer explorer/designer view

    I am currently developing crystal 2008 reports against the salesforce.com database using version 12.0.0.683 CR Developer Full version. I am using an updated driver that was provided in July or Aug 08 in order to view self referencing fields. The problem is that when I try and report against one of the tables (lead history) I cannot view two of the fields (New Value and Old Value)? I can see these two field (New Value and Old Value) in the database expert as the last two fields in the actual table, but the two fields are missing when I go into the explorer/designer view. In Salesforce, these two fields can not be filtered on, but I can export all the values in this table using Salesforece Apex data loader.

    Please re-post if this is still an issue to the OnDemand Forum or purchase a case and have a dedicated support engineer work with you directly

  • Crystal 2008 - Selected table names are blank or end in 1

    I am creating a new report in Crystal 2008.  I am connecting to a database using ODBC.  The tables show up correctly in the available tables column of the Database Expert.  Once I select a table the table shows up in the selected tables list as an icon only - no name or as an icon with a table name ending in 1.  The table name that ends in 1 is not a duplicate.
    Furthermore, in the field explorer the fields all show but I can not add any to the report.
    Any ideas, this just started happening this week.

    Hi Russell
    Which database you are reporting off?
    You can try following workaround and create indirect ODBC connection.
    Create a report using OLEDB connection and select Microsoft OLE DB Provider for ODBC drivers and then create a report .
    This will point to your existing ODBC connection through OLEDB provider.
    For the tables name that are blank do you have hyphen '-' in their names?
    As advised by Jayendra you can try with Service Pack 1for Crysatl Reports 2008.
    Hope this helps..
    Regards
    Ankeet

  • Viewing Crystal 2008 ActiveX  on Access 2007 forms

    Ok, i am a little confused as there seems to be a some doubt whether Crystal 2008 ActiveX can be used on Access forms. Another thread even has a reply that mentions that the ActiveX control is no longer included in Crystal Reports 2008..... Take a look at this, you can clearly see i have embedded the 2008 ActiveX control onto an Access form. link:[http://www.moktar.pwp.blueyonder.co.uk/AX.JPG]
    I have just installed 2008 and will get round to looking at this, however in my brief look, i couldnt see the run time library for 2008. By all accounts you can freely distribute the run time files for Crystal Reports 2008 as MSI or exe packages to your clients. I hope this is the case and i can get the ActiveX working.
    If anyone has some information on this subject i will welcome reading it.
    This is how its used to be done;
    1) Open the Access form in design view.
    2) Click on Add Tool button on the toolbar.
    3) Select Crystal Reports ActiveX toolbar control from the list of controls.
    4) Place the control on the form.
    5) Click on the View Code toolbar button to open the code for the form
    6) Choose u2018Referencesu2019 from the u2018Toolsu2019 menu
    7) Select u2018Crystal Reports ActiveX Design and Runtime Library 11.Xu2019 from the list of references and add to the project.
    8) On the Form_Load() event, please use the code given below to pass the report to the viewer:
    Dim crReport as CRAXDRT.Report
    Dim crApplication as New CRAXDRT.Application
    u2018 Use the appropriate path for the report
    Set crReport = crApplication.OpenReport(u201CC:\Report1.rptu201D)
    u2018 ReportSource property and ViewReport method will not be displayed on the viewer control
    CrystalActiveXReportViewer0.ReportSource = crReport
    CrystalActiveXReportViewer0.ViewReport
    'Hey Presto, the Crystal control on the Access form is now displaying a report. However, you had the age old issue of distributing the runtime files to clients that dont have crystal reports installed, and even more so of an issue, as this is Access and no method of doing it. I was hoping that 2008 with its MSI and EXE versions of the runtime files would solve this age old problem.
    Thanks
    Simon.

    Hello Simon,
    The RDC was retired after Crystal Reports XI R2 and no longer exists in CR 2008.
    The viewer control you are seeing is not meant for RDC applications.
    You will need to move to Java or .NET if you plan on using CR 2008.
    Best Regards,
    Jason

  • App coded in Crystal XI need to be compatiable with Crystal 2008. Options?

    Dear All,
    The product I am working on, works fine with Crystal XI. But now task is to make it work for clients that have just Crystal 2008 (not Crystal XI). (Even assuming there is no new feature that Crystal 2008 offer is planned in this existing application.)
    I was wondering what would be the best bet to make that application compatiable? Certainly we do not want to have two seperate application coded separatly for Crystal XI and Crystal 2008.
    I will appreciate any information, feedback, guidance that you can provide on this.
    Thanks

    am actually using Visual Studio .NET 2008 only with Crystal Reports XI R2. I was not aware of the fact that Crystal Reports XI R2 does not work with Visual Studio 2008. It could be that since I have both Visual Studio 2005 and 2008 in my machine, and this could be referring to old one.
    I believe Visual Studio 2008 came with .NET framework 3.5 and in theory 3.5 does all that 2.0 used to do. So I am not sure what would be the reason of .NET 2008 not supporting it. May be I am missing something, please help me clarify?
    - See the supported platforms doc here:
    https://websmp106.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000712240&_SCENARIO=01100035870000000202
    (choose Business Objects XI release2 / crystal reports -> crystal reports -> crystal reports XI r2 -sp2 - supported platforms.
    .NET 2008 is not listed. That is as far as this discussion should need to go. E.g.; do not use CR XI r2 with .NET 2008, or .NET 2010 when it comes out - if you do, you're on your own.
    Option-1) Now my worry is can same application; when installed on a client who has just crystal report 2008 (not upgrade from XI-R2) run-time installed, will work OK?
    As long as you run CR XI r2 with the supported version of .NET (e.g.; in your case .NET 2005) there will be no issues after installing CR 2008 as CR 2008 and CR XI r2 are side by side compatible. One thing I would highly discourage is running reports created in CR 2008 with CR XI r2.
    Option-2) Is there any change in existing code, I need to do so that irrespective of what run-time environment client has (XI R2 or, Crystal 2008), my application runs fine without any issue?
    If you install CR 2008 SP0 after installing .NET 2008, you should not need any code modification to an already working app. All that will happen is that the CR assemblies will get upgraded to version 12.x. Of course, you then need to distribute the CR 2008 runtime to your client / server computers.
    Any other option...
    Not sure where the confusion is, but I am not sure why we'd want to look for other options(?).
    Ludek

  • Prompts to install Crystal 2008 SP1 each time I double-click .rpt file

    Every time I want to open a report (.rpt) file from Windows Explorer, I get a message box stating:
    Preparing to install...
    Followed by another message box:
    Please wait while Windows configures Crystal 2008 SP1
    Followed by another message box:
    The feature you are trying to use is on a CD-ROM or other removable disk that is not available.
    Insert the 'Crystal Reports 2008 SP1' disk and click OK.
    I select cancel at this point (I've already got Crystal Reports 2008 SP1 installed on my machine).
    After I select cancel, the following error appears:
    Error 1706.  No valid source could be found for product Crystal Reports 2008 SP1. The Windows installer cannot continue.
    I click OK and the report does not open.
    If I start Crystal Reports itself, then select File, Open and select the report to open, it opens fine (without error).
    The version of Crystal Reports (from Help, About Crystal Reports) is:  Version 12.1.0.892
    How can I resolve this without searching for the Crystal 2008 SP1 files (which were downloaded from the SAP/BO website).

    Hi Nancy,
    I've seen this happen usually when Windows Office has also been installed. The installer gets confused as to what should be installed or some dependency is missing. Not sure exactly what causes it.
    Go into Control and Add/Remove Programs and try doing a repair install for both CR and SP1. Then open up Explorer and click on Tools, Folder Options and then File Type. Scroll down to RPT and click on Change or Restore. Ther main be something missing from the File type association.
    Be sure to do this when you are logged in as local Administrator and/or your account is also configured to be part of the Local Admin group.
    Thank you
    Don

  • Error while Connecting Crystal 2008 to SAP.

    Hi Experts,
    We have a trial version of crystal 2008 installed (The SAP integration Kit is also installed) and I am trying to connect to SAP and develop a report on the SAP Cubes. But when I try to make a Connection to SAP, I get the following error:
    Database Connector Error: 'The License key does not include use of the BW Query Driver. Please Contact Business objects for information on how to obtain such a license key.'
    Is this a licensing issue with SAP integration kit or Crystal?
    Please let me know what would be the probable problem and solution for it.
    Thanks for your help in advance!
    Phani.

    hi,
    for SAP Integration Kit license kay updation; follow the steps
    Go to windows start menu>Run>type regedit> HKEY_LOCAL_MACHINE>Softwares>Business Objects>Suite 12.0>SAP>keycode.

  • Authentication issues on Windows 7 with Internet Explorer 8 (Crystal 2008)

    Hi,
    We are in the process of migrating from Windows XP to Windows 7 (with Internet Explorer 8).
    I have noticed that a web application which depends on Crystal 2008 is behaving differently in the new environment. For example, when I try to load a report I get this error:
    Access to report file denied. Another program may be using it.
    I know that this error can be caused by a permissions problem on the Windows temp folder, and I know there are various ways of pinpointing the exact permissions problem and various ways of resolving if that's the case. The fix that worked for us in Windows XP does not seem to work in Windows 7. My gut feeling is that IE is passing credential in some way differently from how it did before.
    Since many aspects of security are so different in Windows 7 compared with XP, I was hoping to find some general guidelines from SAP/Crystal re: how to deploy or configure the client/server in this environment.
    Are there any general guidelines available?
    Thank you for any help... shannon

    Hi Shannon,
    Not really, CR assumes it can access all of it's dependencies so it is a permission issue. Other than the usual config issues with IIS, full access to the      emp folder, full permissions on the Viewer folder, setting the framework in App pool correctly, etc.
    Do you have Service Pack 3 installed for Cr 2008 and the latest Fix Pack 3.5?
    https://smpdl.sap-ag.de/~sapidp/012002523100009989492010E/cr2008_sp3_fullbuild.zip ( requires uninstall first -  keycode is required )
    Incremental for SP2 - https://smpdl.sap-ag.de/~sapidp/012002523100007123572010E/cr2008_sp3.exe
    Fix Pack: https://smpdl.sap-ag.de/~sapidp/012002523100006341722011E/cr2008fp35.exe
    References for WEB app's:
    [Crystal Report Viewers in Visual Studio .NET u2013 Toolbar Images|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/50aa68c0-82dd-2b10-42bf-e5502b45cd3a]
    This one could be a great reference also:
    [Deploying Crystal Reports 10 .NET Applications|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/30c6d7c6-7164-2b10-90b8-d6020b116f4d]
    You could also use Process Monitor from Microsoft and scan the log file for Access Denied on the IIS Process.
    And also search [Microsoft's Forums|http://social.msdn.microsoft.com/Search/en-US?query=iis%207%20configuration%20and%20security&Refinement=123&ac=3] on how to:
    Thank you
    Don

Maybe you are looking for

  • Use of Audio In on laptop for Data Acquisitio​n

    I'd like to use the Audio In on a laptop to acquire 500 point per second data in a biomed experiment. Where to I get a driver or whatever code I can use to access the audio in on my laptop (a HP). I'm using Labview for windows.

  • Can the Find iPhone app find devices that aren't mine?

    So my MacBook Pro was stolen a couple weeks ago out of my rental car while I was in Seattle, WA. I had iCloud on it synced with my iPhone, but never used it or saved anything to it. Someone told me that I could find my stolen computer though iCloud,

  • App store purchase and complaint

    On my iphone I bought the photograper's ephemeris app from the app store for £5.99.  I then backed up my phone, updated to ios6.  Now there is no record in iTunes or the app store that I ever purchased this app.  I need someone at apple to resolve th

  • ITunes Match program not responding step 1

    Whenever I click update iTunes Match, it goes to step 1 and about 1/4 of the way through it (scanning my library), itunes program stops responding and closes itself.  I have tried unistalling and reinstalling iTunes serveral times.  My iTunes is also

  • Why are colors in Illustrator 6 so much darker than in Illustrator 4?

    I recently switched from Illustrator CS4 to CS6. The colors in 6 are much darker than in 4, and are not accurate to actual Pantone colors (they were very close to being accurate in 4). Has anyone experienced this, and does anyone know what to do abou