Report Designer - Not being seen

Hi
We have recently upgraded to 2004s.  With it, I have also reinstalled my GUI to latest FEP on 6.40.  However, I am not able to see the "Report Designer" option.  Am I missing any supporting installation on my machine ?
Thanks
SM

Follow this blog:
Troubleshoot the SAP NetWeaver 2004s BI Frontend Installation
to install your SAPGUI.

Similar Messages

  • LaCie d2 500GB Quadra Hard Drive Not Being Seen By Time Machine

    Hello all,
    I have a LaCie d2 500GB Quadra Hard Drive Not being seen by Time Machine hooked up to my iMac via firewire 800. My iMac is running latest updates etc. Have raised a support ticket and was given the following instructions by LaCie:
    Posted: 08 November 2007 @ 00:00
    Thank you for contacting LaCie Technical Support. Make sure the drive is mounting and you can assess files on it on your 10.5 system. If you can then you will need to reformat the drive to make it compatible with time machine.
    Warning! All data on the external drive will be destroyed in this process.
    Step 1: Run Applications > Utilities > Disk Utility
    Step 2: Click on the LaCie hard drive's 'physical' entry, usually the third entry in the list
    Step 3: Click on the Partition tab
    Step 4: Change 'Current Scheme' to '1 Partition'
    Step 5: Change the name of the drive back to what you would like it to be
    Step 6: The format needs to be Mac OS Extended, with or without journaling
    Step 7: Click on the Options... button
    Use "Apple Partition Map" partition scheme on a PowerPC-based Mac.
    Use "GUID" partition scheme on an Intel-based Mac.
    Step 8: Click on OK
    Step 9: Click on Apply
    Step 10: click on Erase at the bottom of the screen, then confirm the erase.
    The drive should start to be reformatted which should take only a few seconds and show up on the desktop with a new icon. Once it has you can then use it with time machine.
    I have done all of the above and it is still not being seen. Anyone had a similar issue or got the above to actually work?
    Thanks in advance!!!!

    Ryan,
    Check drive volume name and also the Computer name. Apple released a tech note recommending that both be limited to only the characters A-Za-z0-9 (no dashes, hyphens, or other special characters.
    If you can, send the Apple System Profiler report to me at the addres in my profile. Imay be able to see something there. I have helped another user with similar problems, but with a LaCie USB drive. He got things working by repeating the recommended steps, and double checking everything.
    As others have rported, this should work, so there may be something else preventing proper operation.
    If the drive is usable from Finder, but Time Machine cannot use it, there is something related in how Time Machine is viewing the drive.
    Mike

  • Crystal Reports 2010 SP1 on IIS 7.0 - Report is not being displayed

    Hi,
    Finally, the keycode assembly, BusinessObjects.Licensing.KeycodeDecoder.dll error is gone, after I installed Crystal Runtime 2010 SP1. Also, I tested Crystal Report 2010 SP1 on my Windows 32 application and I can tell that I do not have this error anymore and report is being displayed properly.
    But Crystal Report is not being displayed on ASP.NET page on MS Server 2008 standard edition SP2 with IIS 7.0. Database resides on iSeries remote machine.
    The MS Server 2008 is virtual machine.
    OS system has:
    Crystal Report Basic Runtime for Visual Studio 2008
    SAP Crystal Reports Runtime engine for .NET Framework 4 (32-bit)
    Simply the report is not being displayed at all. No errors are being recorded in the Event Viewer.
    Nothing happens; excerpt the page is Loadingu2026 and Waiting for u2018website nameu2019 in the left lower corner of Firefox web browser.
    Here is the code behind aspx page with a command button - very simple:
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    protected void Button1_Click(object sender, EventArgs e)
    ReportDocument crReportDocument;
    Database crDatabase;
    Tables crTables;
    // CrystalDecisions.CrystalReports.Engine.Table crTable;
    TableLogOnInfo crTableLogOnInfo;
    ConnectionInfo crConnectionInfo;
    crConnectionInfo = new ConnectionInfo();
    //Set server name
    crConnectionInfo.ServerName = this._strServerName;
    //set database name
    crConnectionInfo.DatabaseName = this._strDatabaseName;
    crConnectionInfo.UserID = this._strUserID;
    crConnectionInfo.Password = this._strUserPassword;
    //Set integrated security
    crConnectionInfo.IntegratedSecurity = false;
    crReportDocument = new ReportDocument();
    crReportDocument.Load(Server.MapPath("~/crystal-reports/TransformerLoad/TransLoadMonthlyMax.rpt"));
    crDatabase = crReportDocument.Database;
    //Set all tables from current report file
    crTables = crReportDocument.Database.Tables;
    //crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
    //Apply schema name to the table's location
    foreach (CrystalDecisions.CrystalReports.Engine.Table _crTable in crTables)
    crTableLogOnInfo = _crTable.LogOnInfo;
    crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
    _crTable.ApplyLogOnInfo(crTableLogOnInfo);
    //Check if database table name starts
    if (_crTable.Location.StartsWith("XFMRSMAX", StringComparison.CurrentCulture) ||
    _crTable.Location.StartsWith("XFMRSMIN", StringComparison.CurrentCulture))
    //_crTable.Location = this._strSchemaName + "." + _crTable.Location.Remove(8) + Convert.ToInt32(Request.QueryString\"ReportYear\");
    _crTable.Location = "XFMRSMAX09";
    else
    _crTable.Location = _crTable.Location;
    this.CrystalReportViewer1.ReportSource = crReportDocument;
    This code runs on my development machine Win XP SP3
    OS system has:
    Crystal Report Basic Runtime for Visual Studio 2008
    SAP Crystal Reports Runtime engine for .NET Framework 4 (32-bit)
    This code also runs on another development server - Windows XP SP3 (IIS 5.1)
    OS system has:
    Crystal Report Basic Runtime for Visual Studio 2008
    SAP Crystal Reports Runtime engine for .NET Framework 4 (32-bit)
    ispnet_client folder has IUSR user and this user has read permissions to this folder. I even tried to change the permissions to Read & Execute.
    I am developing my reports using Crystal Reports 2008 SP2.
    Any help would be greatly appreciated.
    Serghei

    Hi Ludek,
    Thank you for your response.
    I checked the web.config file, all http handlers are there. I think the handlers are required to render the images on crystal report viewer but in my case the report viewer is not being rendered.
    I have to questions:
    1. What exact folders should be under aspnet_client\system_web?
    In my case I have structure like this
    aspnet_client\system_web\2_0_50727\crystalreportviewers13
    aspnet_client\system_web\4_0_30319\crystalreportviewers13
    Should I have folders something like this
    aspnet_client\system_web\2_0_50727\crystalreportviewers13_1
    aspnet_client\system_web\4_0_30319\crystalreportviewers13_1
    after I installed Crystal Reports 2010 SP1
    Also, in C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET 4.0\Common\Crystal Reports 2011\ there is no folder named as crystalreportviewers13 but instead crystalreportviewers
    a.     Should I copy all files from this folder to aspnet_client\system_web\2_0_50727\crystalreportviewers13, or
    b.     Should I copy all files from this folder to aspnet_client\system_web\2_0_50727\crystalreportviewers13 and rename this folder to
    crystalreportviewers
    2. Can you explain how to get a data report?
    This is the quote from your previous answer
    I'd be interested to see this simplified to a saved data report - no DB logon code - as a test...  
    Thank you Serghei

  • I've used an external drive for time machine which has important files on it. After trying to back up my computer, it suddenly needed to be "repaired" by utilities. Now it's not being "seen" at all! How do I recover my important files off the drive?

    I've used an external drive for time machine which has important files on it. After trying to back up my computer, it suddenly needed to be "repaired" by utilities. Now it's not being "seen" at all! How do I recover my important files off the drive?

    If the external drive can be seen at all in Disk Utility, follow the instructions for repair here.

  • My ipad is not being seen by itunes in Windows 7. I uninstalled then reinstalled itunes it started working for a while then it stopped. I get a message stating that the device is not recognized or the device is defective replace device. Anyone have a fix.

    My ipad is not being seen by itunes in Windows 7. I uninstalled then reinstalled itunes it started working for a while then it stopped. I get a message stating that the device is not recognized or the device is defective replace device. Anyone have a fix.

    At present I have no power to the Gen 7, so need to get some power to it I think.  I pressed the buttons as you suggested, but nothing is showing up at this point.  Thank you for your response as the more I can rule out before  I take it back the better I think.

  • My Goflex external drive is not being seen since I installed Lion, any ideas.

    My Goflex external drive is not being seen since I installed Lion, any ideas I cannot see any driver updates etc.

    Try resetting SMC.
        Reset SMC.     http://support.apple.com/kb/HT3964
        Choose the method for:
        "Resetting SMC on portables with a battery you should not remove on your own".

  • Why can I not load pictures from a micro SD 64gb using scan disk adapter plugged into an Apple iPad camera connection kit.  I have the iPhoto app but pictures not being seen on iPad.  So incredibly frustrating.  Apple please fix this.

    Why can I not load pictures from a micro SD 64gb using scan disk adapter plugged into an Apple iPad camera connection kit.  I have the iPhoto app but pictures not being seen on iPad.  So incredibly frustrating.  Apple please fix this.

    Do you have a smaller capacity micro SD card to try? I seem to remember from past posts that users were having problems with cards larger than 32GB, however, Apple's page doesn't mention this.
    Using The iPad Camera Connection Kit
    http://support.apple.com/kb/HT4101
    What format are the pics - jpg or raw?
     Cheers, Tom

  • DVD 1270 not being seen in xp to install at start up windows 7

    DVD 1270 not being seen at startup in xp to install windows 7. Boot order works - the machine sees  a cd but not a dvd. Installed latest driver for lightscribe from this site. Also tried two other dvds - one a hp 1160 which works on  another machine it sees the dvd on other machine running w7 but not on this new one - ASUS mthrbd P867-M Le. ASUS says it is the DVD and to try another. Seems like it may be a config issue. Any ideas? Thanks

    Well, if the drive is good, then try a different SATA port.  It might be that the OS is looking for the drive per the BIOS and it is not on the SATA 0 port. BTW: Does this motherboard have 6GB SATA ports?  Do not use them for DVD drive.
    {---------- Please click the "Thumbs Up" to say thanks for helping.
    Please click "Accept As Solution" if my help has solved your problem. ----------}
    This is a user supported forum. I am a volunteer and I do not work for HP.

  • SOE report is not being opened

    Hi All,
    I have created new responsibility for the payroll user. From that responsibility, if I tried to open the SOE report it is not being opened. The following error is coming.
    "Function not available to this responsibility. Change responsibilities or contact system administrator."
    I am able to view SOE report from other responsibilities.
    I have set the profile option "PAY:Statement of Earnings User Category" at site level.
    Please help me out how to view SOE report from new responsibility.
    Waiting for reply.....
    Thank U,
    Phani

    Please see if (''Function not available to this responsibility" error when trying to access Statement of Earnings (SOE) report for legislation created by International HR and Payroll [ID 284640.1]) helps.
    Thanks,
    Hussein

  • Report designer not showing data.

    Hi Experts,
       I have created a web-template in WAD and set it as default web-template for all the reports and queries, from the transaction RSCUSTV27, restarted the J2EE engine.
       When I run a query from Query Designer is shows all the required data and the web-template format finely. But when I create a report in Report Designer using that query, it only shows the standard template for the reports, but not the data. Is it a issue with the Support Package? Or what? Please find me the way to resolve this problem.
    Thanks in advance,
    Niloy.

    Did you find a way to fix this issue - we are having the same problem.
    Thank you!
    Renee

  • Report Designer Not Responding.

    Hi All,
    In my system BI 7 Bex Analyzer is not working for that reason I have created Quires in Bex 3.5 .
    <b>Now I have queries created in BEx 3.x,
    My doubt is Can I use those queries in Report Designer.</b>
    Because , when I am going to use Report Designer it is getting Hang ( Not Responding ) .
    My system configuration is
    Server  BI 7  <b>SP 10,</b>
    SAP  GUI  ---<b> 710,</b>
    Ms office -
    2003.
    Do I need any Settings Require ?
    Is I have to Install any thing else ?
    I have reinstalled GUI 710 and Ms Office 2003 / 2007.
    Note : in my pc BI 7   BEx  also not working.
    <b>Is there any relation between BEx 7  and  Report Designer</b> .
    Thanks & Regards,
    SHAIK.

    BEx Query Designer – SAP BW 3.x and SAP NetWeaver 2004s
    Ground Rules-
    1)All existing SAP BW 3.x queries can be edited with the SAP NetWeaver 2004s BEx Query Designer without further manual adaptation.
    2)After editing with the SAP NetWeaver 2004s Query Designer, queries cannot be edited with the SAP BW 3.x BEx Query Designer anymore.
    3)Queries created or adapted with the SAP NetWeaver 2004s BEx Query Designer will still appear in the Open Dialog of the SAP BW 3.x Query Designer, but they cannot be opened anymore
    4)For those scenarios where customers do not want to use the SAP NetWeaver 2004s BEx Query Designer, SAP ships an SAP BW 3.x version of the BEx Query Designer in addition to the SAP NetWeaver 2004s version.
    5)New capabilities are only implemented in the SAP NetWeaver 2004s BEx Query Designer
    6)Query Views that were created before upgrade/migration will still run after a query has been changed with the SAP NetWeaver 2004s BEx Query Designer
    7)In general query views do not need to be migrated
    Rolling out the New SAP NetWeaver 2004s BI Frontend Tools
    Hope it Helps
    Chetan
    @CP..

  • Airport not being seen

    I was able to set up an AirPort Extreme that is being seen by my mac mini. However, my G5 does not see the AirPort Extreme network it created. I have tried to manually type the network in, change security settings, and numerous other setting changes suggested by my DSL service provider. I have about 10 hours in getting this to work and I'm quite at a loss.
    Two things of note. As the G5 is my work computer and the mac mini is the kids, I decided to reset the AirPort Extreme and try setting it up on the G5 as I really need the internet connection. The G5 still did not recognize it at factory settings in the Airport Utility and the mac mini did.
    Secondly, the G5 does see the 2 Airport Express's I've had in the house and the Airport Extreme didn't till I made a physical Ethernet connection. I would assume the G5 airport card is working fine then. It seems only one or the other can see the Express's, not both.
    Can someone point me in the right direction to getting both these computers to see the Airport Extreme network. Thank you.
    Duel 2.3 GHz PowerPC G5   Mac OS X (10.4.9)   Airport Extreme 802.11n, Siemans 4100 DSL modem, 2 Airport Express

    It looks like your correct. This morning I moved my G5 downstairs and physically hooked it up to the Airport Extreme, went back to factory defaults and redid the whole process. Disconnected it and the G5 recognized it wirelessly. I then moved the G5 upstairs (next to the mac mini) and didn't get the signal although the mac mini had a full strength signal. I then lugged it halfway to the base station (12 feet) and the G5 picked up a very weak signal (2 bars). Unplugging all the phones didn't help.
    The signal on the AirPort is set to Automatic, it seems to like 11 as that is what appears in parens. I see where I can select a channel in the AirPort Utility, however should it be changed there or is there a way to change the channel on the G5 itself.
    Thank you.
    Duel 2.3 GHz PowerPC G5   Mac OS X (10.4.9)  

  • Aim buddies not being seen online

    is there any chance my aim buddies are being seen offline all the time? its just.. I added people to my buddies and we talked once, but I haven't seen them again anymore, I can send offline messages to some, it says they'll read them when they go online, but some other contacts i can't send them offline messages.
    now I ran tests with an aim account i own, adding it as a buddy on my ichat @mac.com account, and when I went online on the aim account it did show on my ichat account, and also sent some offlines messages and I did receive them, but its me in the same computer not like faraway as everyone else, idk if that matters.
    now, do I have a technical problem? if so, how can I solve it?
    or have my friends just not gotten back online, or they blocked me or what? :S
    thanks for the help.

    Ralph Johns (UK) wrote:
    Hi,
    By Default ichat does not fully log out of AIM when you shut down iChat.
    This is partially so that you can get Off Line Messages when you start up your computer.
    What it also does is start up iChat if You have it shut down but your Computer On.
    Now you can (Sometimes) get a Message from AIM (AimSysMessage and Screen Name) asking if you want Off Line Messages.
    If you reply or indicate NO to this they can only be restated on the AIM Website
    Login to AIM web Pages then go to your Account Page the setting is there.
    iChat can be made to Log Off line (Status as Off Line ) with a setting in the iChat Menu > Preferences > General Section
    First Enable the Menu Bar icon.
    You now have full access to "When iChat is Quit, Set Status to Off Line".
    Now in iChat 4 and 5 you can also set your self to be Invisible.
    You appear Off Line to your Buddies but you can see if they are Online/Available/Away and so on.
    In any version of iChat in the iChat menu > Preferences > Accounts > Security you can set which Buddies see you as On line in various Allow Options an Block options.
    Add to this if you allow Multiple Logins and also have AIM Forwarding to a Mobile Phone.
    Now think of all those setting applying to your Buddies.
    Some maybe Invisible.
    Some may not have added you to their Buddy list and have Allow Buddy List Only (Or even Allow Specific People) set.
    Some may have set not to get Off Line Messages.
    Some may appear to be "On-Line" but are having messages sent to their Mobile Phone which they are not (able to) answering.
    Summary.
    Due to the number of variables that you have not been able to provide info on it is difficult to say if you have a problem.
    Based on your testing I would say not.
    7:33 PM Thursday; January 21, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
    hey but even if all the things you wrote happened, if I do send them offline messages, they have to get them at some moment right? like I wouldn't be able to send someone offline messages if he blocked me, so if I send him offline messages he'll totally get them someday right?

  • K230 - Additional 2GB RAM not being seen

    My K230 came with 6GB RAM (3 of 4 slots used).
    Purchased this stick...
    http://www.newegg.com/Product/Product.aspx?Item=N82E16820134192&cm_re=kvr667d2n5-_-20-134-192-_-Prod...
    It seems well seated but is not being detected.
    Any pointers? Should this RAM be compatible? its PC2-5300.
    help!

    Send them back. If new RAM - by itself - does not work - the set should be returned.
    If any one DIMM is 667 then they all will have to downclock
    Komputerbay 8GB (2x 4GB) DDR2 PC2-6400F 800MHz ECC Fully Buffered FB-DIMM (240 PIN) 8 GB w/ Heatspreaders for Apple computers
    http://www.amazon.com/Komputerbay-PC2-6400F-Buffered-Heatspreaders-computers/dp/ B005HIWDBE/
    Not sure about that brand Komputerbay $89 2x4GB
    Otherwise,  667Mhz is much cheaper and works just fine in a 2008 3,1 along with filling all 8 DIMM slots works to improve performance so much so that even the small 4% difference is not a factor and you come out ahead.
    I use these: 8 x 2GB $92
    http://www.amazon.com/BUFFERED-PC2-5300-FB-DIMM-Arch-Memory/dp/B002ORUUAC/
    Cheapest I have seen, might need to set the fans to 900 rpm
    http://www.amazon.com/667MHz-Buffered-FB-DIMM-Memory-MA356LL/dp/B00D6Q45BA/
    32GB for $280
    http://www.amazon.com/gp/offer-listing/B009HNJCT6/
    4 x 4GB $160
    http://www.amazon.com/Buffered-PC2-5300-667MHz-FBDIMM-Memory/dp/B00S1Y0RSW/
    You were sold a set and they are not what they were suppose to be and there is no quick fix other than to replace and have a correct set sent out.

  • Ipod nano not being seen by computer, windows, 2000...

    after over a week on the phone and attemting to get my computer to "see" my nano, and not being able to do so. and after going thru every trouble shooting guide given to me by apple i did get my nano to work.
    I used every usb port but two, the two off the mother board, when i used one of them the nano took off and worked liked it was susposed to do, so...... you people who have this problem or know others pass the word use the mother board usb ports. nothing else.......

    i resolved my computer, windows 2000, not seeing by i pod nano, by using the usb ports from the mother board. use no other usb ports, not usb hubs, or other circurt ports, just mother ports..................

Maybe you are looking for

  • Help deleting an application in Apex 3.2.1.00.12 on 10g XE

    Hi, I imported an application (timesheets demo application) by running the install script in an SQLPLUS session which I understand now was not the proper way to do this. Now I need to delete this application but I'm receiving the following error when

  • Account of the opportunity is not populated after the creation of a task

    Hi, In our project, we are using the Opportunity Object after the creation of a task. Our tasks are always related to an existing account. I was wondering why when I create an opportunity from a task, the field "Account Name" is not populated by defa

  • Problem with solaris management console

    I have installing solaris 9 x86 12/02 on my PC. After start solaris management console 2.1 and after loged in as root, smc display this message: System Information is not able to connect to the server because the WBEM server daemon does not appear to

  • I web not displaying correctly in Explorer

    Hi guys,                I've just uploaded my website , (to Go Daddy) created on iweb (09) and it is perfect in Safari but looks dreadful in Internet Explorer on my PC and a little funky in Firefox. In Explorer on my PC (Windows7) boxes are in the wr

  • Import COM.dll in java source?

    Is there a way to import a DLL from a COM-object into java source code? And if so, how does it work?