Cannot see Hyperion Tab in Excel..?

cannot see Hyperion Tab in Excel..? even though smartveiw is installed in the system ....
Please suugest me ...

Make sure its not in the Disabled Items of the Excel.
To check, Excel Options, Addins, Manged Drop down Check Disabled items.

Similar Messages

  • Unable to see the Hyperion tab in Excel 2003

    Hi Hyperion gurus,
    Can anybody shed light on an issue that a user encountered with Smartview? This user installed Smartview and had been using it without any problems. We just started parallel testing and he needed to use Smartview as part of the process. He is now unable to see the add-in in Excel 2003. He has no Hyperion tab and we cannot find any evidence that it has been installed. We reinstalled Smartview but even after reinstalling Smartview he is still unable to see the Hyperion tab in Excel. What is puzzling is that he does have the Hyperion tab in Word and is able to connect.
    Would appreciate any help provided? Thanks.

    I have seen the same exact problem at my company regarding the missing Hyperion tab in Excel (but present in MicroSoft Word). If you go into Excel, then select 'Help', then About MicroSoft Excel, then you'll see 'Disabled Items'. Scan the list for HSAddin.Dll. If this is on the list, highlight it, then select the 'Enable' button. (this is my first suggestion). I've also had to do the following in some isolated cases:
    You should also try re-registering the following 3 SmartView DLL files. To do this, simply locate where these 3 files are stored on your local machine (the file names are):
    HSAddin.dll
    HSSpread.dll
    HyperionSmarttag.dll
    Usually these are stored within the following path: C:\Hyperion\Smartview\bin
    To Register the files:
    Open DOS (start->run->cmd) and change your path to C:\Hyperion\SmartView\bin
    Type in the following, hitting enter key after each line:
    regsvr32 hsaddin.dll
    regsvr32 hsspread.dll
    regsvr32 hyperionsmarttag.dll
    You should receive a 'success message' for each file you register. Reboot your machine following this, and go back to Excel. Your menu should now be in place.
    Thanks,
    James Pryal

  • Cannot see Condition tab in subcontract PO

    Hi all,
    I cannot see Condition tab in subcontract PO. As I know, Condition tab is not displayed in PO for consignment Stock or Free item. Why isn't it showed in subcontract PO?
    Regards,
    Duc.

    SPRO - Material Management - Purchasing - Conditions - Define Price Determination Process - Define Schema Determination - Determine Calculation Schema for Standard Purchase Orders
    Check whether the schema group vendor and purchasing has been assigned the Pricing Procedure.
    Check whether the Vendor has been created for the Purchasing organization and assigned the schema group for the purchasing organization in the Vendor.

  • Cannot see the tabbed Page.

    Hi,
    I want to display two tabs. One for Insert and another for Delete. i have 2 pages one for insert and one for delete.
    The following is the setup that I have done.
    Functions:
    Name: XXHR_NEW_JOB_FAMILY
    Type: SSWA jsp function
    Html Call: OA.jsp?page=/xxc/oracle/apps/per/selfservice/deployperson/webui/NewJobFamilyPG&OAHP=JOB_FAMILY_HOME&OASF=XXHR_DEL_JOB_FAMILY
    Name: XXHR_DEL_JOB_FAMILY
    Type: SSWA jsp function
    Html Call: OA.jsp?page=/xxc/oracle/apps/per/selfservice/deployperson/webui/DeleteJobFamilyPG&OAHP=JOB_FAMILY_HOME&OASF=XXHR_DEL_JOB_FAMILY
    Menus:
    Name: NEW_JOB_FAMILY_MENU
    Type: HTML Tab
    Function : XXHR_NEW_JOB_FAMILY
    Name: DEL_JOB_FAMILY_MENU
    Type: HTML Tab
    Fucntion: XXHR_DEL_JOB_FAMILY
    Name: JOB_FAMILY_HOME
    Type: Home Page
    SubMenu: NEW_JOB_FAMILY_MENU (Prompt: Insert)
    SubMenu: DEL_JOB_FAMILY_MENU (Prompt: Delete)
    Name: COLT_MGR_SELF_SERVICE_MENU (Responsibility Menu)
    Sub Menu: JOB_FAMILY_HOME
    After doing this setup, I cannot see the new menu and i cant navigate to the page.
    Can any one help me finding the error in my setup so that I can get the link to my page and I can get the tabs displayed.
    Thanks in Advance,
    Kaushik

    Thanks Aj and Reetesh,
    But when i directly add function to responsibility as below, i can see the link to the page.
    Fucntion:
    XXHR_NEW_JOB_FAMILY
    Prompt: Insert
    After doing so i can see the link on the menu list and i can navigate to the page. I think there is something missing in my setup can you help by giving the details of how to define menus and functions if i want to see the tabbed page do the setup so that i can see the page.
    thanks in Advance,
    Kaushik

  • Cannot see my tab in XD01.

    hi all,
    my requirement is to add an additional tab for the customer master trnx XD01 or FD01 etc...at company code level as the 5th tab.
    I have a created new screen group  in trnx SPRO 'ZN' for the customer master as per the SAP Note:577502.
    Its label parameters as:
    Number = 5,Fcode= TAB05.
    I have implemented BADI CUSTOMER_ADD_DATA~CHECK_ADD_ON_ACTIVE.
    I have coded in this method as:
      IF I_SCREEN_GROUP EQ 'ZN'.
        E_ADD_ON_ACTIVE = 'X'.
    ELSE.
      E_ADD_ON_ACTIVE =' '.
    ENDIF.
    I don't see my tab in trnx XD01,Please anyone help me on this?
    Thank you,
    Ann.

    HI Ann,
    Follow these steps:
    1)How to create a screen group.
    Go to spro.
    Search for:
    “Prepare Modification-Free Enhancement in Customer Master Rec”
    Then define a new screen grOup say Z1.
    2)To start with, you have to implement 'CUSTOMER_ADD_DATA' also.
    In the method CHECK_ADD_ON_ACTIVE, you should do this:
      IF I_SCREEN_GROUP = 'Z1'. “ Screen group defined in SPRO
        E_ADD_ON_ACTIVE = 'X'.
      ENDIF.
    3)In badi implementation for badi 'CUSTOMER_ADD_DATA_CS' method 'GET_TAXI_SCREEN' do this
      e_screen  = <Screen number>.
      e_program = <Screen Program name>. :This should be the main program for the function group of the function modules you create
      e_headerscreen_layout = space.
    In set data method do something like this:
      CALL FUNCTION 'Z_SET_DATA'   “Create a new fm
        EXPORTING
          I_KUNNR         = S_KNA1-KUNNR
          I_<ZFIELD name>      = S_KNA1-<zfield name>
          I_ACTIVITY      = I_ACTIVITY.
    The code inside the z_set_data should be something like this:
      V_KUNNR         = I_KUNNR.
      V_<zfield name>      = I_<zfield name>.
      V_ACTIVITY      = I_ACTIVITY.
    Use this fields v_<zfield name> in the screen.
    In get data method:
      CALL FUNCTION 'Z_SET_DATA'   “Create a new fm
        IMPORTING
          E_KUNNR          = S_KNA1-KUNNR
          E_<zfielD NAME>       = S_KNA1-<ZFIELD NAME>.
    CODE INSIDE THE FM.
      E_KUNNR         = V_KUNNR.
      E_ZZSITEID      = V_<ZFIELD NAME>.
    Regards,
    Ravi

  • Project Management Cannot see Financials Tab

    I have created a new responsibility for requirement where user wants to only be able to have what is in Projects List, but I can not get the tabs to come through, I only need the Financials one, but I am not able to figure out which one.
    Guidance much appreciated.  I have a menu with 100 entries now and still have not accomplished, so appreciate any feedback.

    Short answer (these work both for Unix and Windows command prompt):
    To start OMS:
    % oemctl start oms
    To check whether a local OMS is up or down:
    % oemctl ping oms
    To check the status of a OMS:
    % oemctl status oms
    Detailed answer:
    See "Oracle Enterprise Manager Configuration Guide
    ", Chapter 3, section "Controlling the Management Server After Configuration". Here is the direct link http://download-west.oracle.com/docs/cd/B10501_01/em.920/a96673/ch3.htm#1001659
    Nikolai

  • Cannot see photos tab

    can somebody help to find that Photo Tab so i can put in to my iPhone pictures please.

    The following has complete instructions and shows a picture of the Photos tab (2nd picture from top): http://support.apple.com/kb/HT4236
    Note that iTunes is used to move photos from the computer to the phone. If you are trying to move them the other direction (from phone to computer) iTunes is not used. Instructions for that are http://support.apple.com/kb/HT4083

  • Cannot see the tab for Financial Accounting in SPRO after Support Pack

    Hello,
    We applied support pack level 21 for SAP_APPL and after the application of it (Still in the correction phase), the tab for Financial Accounting has disapered from SPRO. Has anyone faced a problem like this before?
    Any pointers to the same will be very much appreciated.
    Thanks in advance
    Best Regards
    Anirban

    hi Anirban,
    basically it is something with the New G/L funcionality, you should have Financial Accounting (New) anyway, but can you do a authorization check? Right after you press F5 in SPRO, /nsu53 into the command line...
    hope this helps
    ec

  • Cannot see PI receiver(Proxy) adapter - advanced adapter specific message

    Hello Friends,
    I cannot see adapter specific message attributes in receiver adapter XI (abap proxy) for enabling. I want to use these properties for getting a file name dynamically in a receiver structure.
    I had seen a blog by Mr.Michal but that gives details for file to file. Here my target is abap proxy so I cannot see advance tab properties in XI adapter used communication channel.
    Clearly my interface is file to ecc (using proxy), where i will have to read a file name which my interface picks and has to update in ecc.
    I have enabled the sender side File adapter - ASMessage attributes but am not able to find the attributes in receiver side. Does it make any diffrence if am not enable the attributes at receiver adapter.
    Thanks very much.

    Swarna,
    in your scenario in order to have the file name updated on ecc, you must:
    1. Set the ASMA properties on sender channel
    2. Read the property in mapping and put the value in a custom field on the proxy structure. Create an UD like this:
    UD
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    String onixdataset = conf.get(key);
    --- END UD
    3. Manage the filename in the proxy class with your requirements
    Regards,
    Andrea

  • Excel - Cannot see any new data in Excel Workbook

    Hi There,
    Wonder if anyone can help, we have a .xlsx file, we have it setup so that only one person at a time can edit the workbook.
    When a colleague edits some data and saves the change, I go into it but cannot see the new data. I then do the same but she cannot see the changes and neither can a 3rd colleague. In effect, whenever any one
    makes a change in the workbook, no one else can see the new saved data that has been added. 
    The work book is not protected. It is stored on a server, all users are running Office 2013 apart from
    1 who is using 2003, but it doesnt matter as even if a change is made using office2013, another office 2013 client still can't see the change.
    It doesn't seem to happen with any other workbooks.
    Tried open and repair which didn't work. Also tried saving a new version of the workbook, this works for a while but then the issue comes back on the new version.
    Any ideas, as currently we keep having to save new versions of the workbook.

    Hi,
    What's the extension of this particular file ?Try another file format to test this issue.
    Did you get any message when try to save the document? Also does this problem happens when use the 'save as' option within Excel to save the file?
    Also try to download the excel file to local driver, update the Excel file,then upload it to the server.
    Wind Zhang
    TechNet Community Support

  • Smartview 11.1.2 "Hyperion" tab disappeared from his Excel 2010.

    My user's Smartview 11.1.2 "Hyperion" tab disappeared from his Excel 2010. Trust Center shows that Add-In's are not disabled. We reinstalled and installed SV but nothing worked. What can we run to register SV to his Excel 2007? His Excel 2010 does have Smartview Add-in for HsTbar, Hsaddin.dll

    Please note that the 'solution' of copying files to the Addins folder is NOT recommended. You will probably cause more issues or store up problems for the future, such as when you upgrade the SmartView client. Believe me -- we get a lot of calls into Support caused by people doing this. It can cause:
    - loss of functionality owing to mixed file versions
    - the full path to HsTBar.xla to appear in front of SmartView functions
    - DLL hell when it comes to upgrading.
    Please check your system for duplicate copies of HsTBar.xla and HsAddin.dll and remove all but the ones in the correct SmartView installation folder. Also delete any duplicates of the other SmartView DLLs. Then re-register the DLLs in the SmartView\bin folder according to Jasmine's instructions. Note that you must be logged into your PC as a Power User or Administrator to do this. You should get a 'success' message for each DLL you register. Alternatively, uninstall SmartView, search for any remaining SmartView files (HsTBar.xla, HsAddin.dll) anywhere on the hard drive and delete them, then re-install.
    If you still get problems, log a support call.
    Edited by: user807652 on Feb 17, 2011 4:28 AM

  • I am trying to download trial versions of photoshop CC and lightroom I clicked the download tab it says downloading but I cannot see anywhere that it is

    on clicking the download trial tabs it just says on the page its downloading but I cannot see any progress bar or nothing am I doing something wrong

    you're welcome.
    p.s. please mark helpful/correct responses.

  • Cannot see Blue Spry Selection Tab

    I've added a menu to my site but I cannot edit it because I
    cannot see Blue Spry Selection Tab. I made sure "how invisible
    elements" setting is turned on and that Hide All is off. What else
    could cause the tab to not be visible?

    I've added a menu to my site but I cannot edit it because I
    cannot see Blue Spry Selection Tab. I made sure "how invisible
    elements" setting is turned on and that Hide All is off. What else
    could cause the tab to not be visible?

  • Transferring rental:  what to do when itunes cannot see it in movie tabs but can see it in rental list?

    my ipad2 is connected to my mac mini.
    and i selected my device in itunes.....  
    when i click on the movies tab    i can only "see" one movie listed.    
    but can "see" two when i look at the list of items on my device under rental
    how do i move the movie to my mac when itunes cannot "see" it under the rental tab but itunes does "see" it in the rental list for my device?

    Click here and install the software.
    (71836)

  • I cannot see the print button on the bottom tab in order to print a document even when I hide to tool bar.

    I recently changed my computer software from Vista to Window & Ultimate. Since changing, I cannot see the print button which should be at the bottom. I have tried to hide the bottom toolbar but it still does not allow me to see the print button. Please give me directions in easy to read English.

    If the menu bar is hidden then press the F10 key or hold down the Alt key to make the menu bar appear.
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible:
    *"View > Toolbars"
    Open the Customize window to set which toolbar items to display:
    *View > Toolbars > Customize
    *Firefox > Options > Toolbar Layout
    *Check that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    *If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the toolbar palette in the customize window to the Bookmarks Toolbar
    *If missing items are in the toolbar palette then drag them back from the Customize window on the toolbar
    *If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up
    *https://support.mozilla.org/kb/Back+and+forward+or+other+toolbar+items+are+missing

Maybe you are looking for