SmartView Automation in 11.1.2

Hi
I was using smart view with 9.3 in Excel and automate my smart view refresh using Smart View APIs & VBA code
In 9.3, we need to create a connection in connection manager and re-use that connection in VBA code.
The smart view login prompt only came when u leave any of the field username or password as empty.
Now when i tried the same thing in 11.1.2 smart view, it does not work
Now i created a shared connection (also tried with private connection) with type as essbase. But when i use this name in HypConnect function, it always prompts the login screen and the fields for username & password are empty even though i have hard-coded the user name & password in code.
Am i doing anything incorrect or not creating the connection properly?
Is the friendly name which appears in Smart View panel not actually the Connection Name?

You should not get prompts if you have provided all the correct connection information. Can you post some sample code?

Similar Messages

  • SmartView report automation  v9.3

    Thanks is advance for any help.
    I have built automated reports of various types over the years using the Excell Client add-in, Where I am workinf now, they only install Smart View so I am trying to produce the same sort of automated reports with the SmartView vba "Toolkit". However, I am not locating the required dll's and smartview.bas file that the documentation points to: "In Import File, select smartview.bas in \SmartView\bin to declare all functions or just the function you plan to use. "
    I have searched both the client and server and am not finding anything.
    Can anyone help?
    Thansk You!!

    The odd thing is, no smartview folder has been created, yet, smartview is up and running. One note, I am running Windows 7 AND Office 2007, that is why I downgraded to v9.3.1, 11.1.1.3 would not work on my machine.
    I will see if I can do this on another machine.
    Thanks much!!

  • Automation of Smartview Connectivity check

    Hi Friends,
    I have few Smartview URLs ( http://server:port/workspace/SmartViewProviders, http://server:port/hfmofficeprovider/hfmofficeprovider.aspx ) using which I use sometimes to check only connectivity through MS Excel.
    Is there any way I can automate this Smartview connectivity check (any command line option, any Web-Url access method etc. which can be automated.)
    ----Sunny

    Sunny,
    Check and see if the EPM validate tool give you the information you seek.  If so you can schedule the .bat job for checks.   http://docs.oracle.com/cd/E17236_01/epm.1112/epm_install_1112200.pdf p.303.  There are URL checkers (3rd party as well.

  • Automating Essbase version 11.1.1.3 Client Installs Question?

    Sorry if this is not the place to post this question, but does anyone know if there is any other way to install Essbase client components individually for Essbase add-in and Essbase administration services (EAS) without using the Oracle install tool? I have a client that needs to automate the installation for 600 users and because they have no standard image the program they use needs to push the software to the desktops prior to starting the install.
    Using the installation tool required that approximately 4 GB of software be pushed to the client workstations prior to installing the software and they would like a smaller foot print. I know that SmartView has a thin installation program, but does anyone know of another option other than using the install tool provided by Oracle for the Essbase add-in and EAS?

    Hi,
    Have a read of this post for details on another option for installing the excel addin :- EssBase excel add-in automated install
    For EAS you can always use the web client so you wouldn't need to install anything on the client machine.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • VB macro to connect and refresh data in smartview

    Hi All,
    I imported a hyperion financial report into smartview power point. i want the following steps to be automated.
    1) make a connection to data source
    2) perform refresh all command
    3) save the power point
    4) close the point
    Is this possibe and can you please share some ideas or VB macro code?
    Thanks
    Ashok

    we tried the function
    For Refresh
    Public Declare Function HypExecuteMenu Lib "HsAddin" (ByVal vtSheetName As Variant,ByVal vtMenuName As Variant) As Long Sub Example_ExecuteMenu() sts = HypExecuteMenu("Sheet1", "Panel")  'returns 0 sts = HypExecuteMenu(Empty, "Smart View->Refresh") 'returns 0 sts = HypExecuteMenu("Sheet1", "Refresh")  'returns -73(ambiguity) sts = HypExecuteMenu("Sheet1", "Connections")  'returns -15(invalid parameter because "Connections" is not associated with an action) End Sub
    but throwing the error as ,no sheet to refresh,do you know the reference names to use in ppt instead of sheet1 mentioned in the above example?
    Regards,
    Ashok

  • Smartview v11 does not have batch and scheduling capabilities?

    From reading documentation, it seems that Smartview v11 does not have batch and scheduling capabilities. Am I right?
    So if I want to schedule my Essbase reports and run cascading reports to be batched and emailed to different users (each receiving custom repors for their Business Units), how would I go about it?
    Should I create the rep;orts using Financial Reporting and batch email it out to users, who can then convert those FR reports to Smartview so that they can perform Drill-in detail analysis ?
    Thanks in Advance.

    You could also possibly run a VBA based excel macro to create a "Batch" process that would update a sheet or create a workbook, and email the file to an end user. Looking within the smartview VBA commands there are some pretty useful commands that could automate this process for you. I'm not sure on the process you would use for automating a process to send FR reports, but emailing from within excel is not usually to hard to do via VBA and might help to automate this.
    JF

  • SmartView addin using VB

    Has anyone seen a problem when using the Smartview addin with VB? Recently upgraded the SV patch to (9.3.1.6) to fix Excel 2007 from shutting down abnormally.
    I have a problem using the VB to copy/paste data with the addin. I can get the entire code to perform correctly if I disable the addin. However, that is defeating the purpose of the automation. I have it set up to connect, retrieve, then copy/paste values into a new workbook to send to users.

    I tried using the code in the supplied example, and I am still unable to export to Excel.
    I am getting an output file, but it is 0 bytes in size (empty file). 
    If I change the export type to crReportExportFormatTabSeparatedText, then I get a file, an ugly file, but it does have the data.
    Here is the code as it looks now
    01   Dim myBytes As ByteArray
    02   If strExpType = "14" Then ' word format
    03  myBytes = rcd.PrintOutputController.Export(CrReportExportFormatEnum.crReportExportFormatMSWord)
    04   ElseIf strExpType = "30" Or strExpType = "27" Then  ' excel format
    05  Dim exportOptions As New CrystalDecisions.ReportAppServer.ReportDefModel.ExportOptions
    06  exportOptions.ExportFormatType = CrReportExportFormatEnum.crReportExportFormatMSExcel
    07  Dim ExcelexportOptions As New ExcelExportFormatOptions
    08  ExcelexportOptions.BaseAreaGroupNumber = 1
    09  ExcelexportOptions.BaseAreaType = CrAreaSectionKindEnum.crAreaSectionKindReportHeader
    10  ExcelexportOptions.ConstantColWidth = 20
    11  ExcelexportOptions.ConvertDatesToStrings = True
    12  ExcelexportOptions.StartPageNumber = 1
    13  ExcelexportOptions.EndPageNumber = 5
    14  ExcelexportOptions.ExcelTabHasColumnHeadings = True
    15  ExcelexportOptions.ExportPageAreaPairType = CrExportPageAreaKindEnum.crExportPageAreaKindForEachPage
    16  ExcelexportOptions.ExportPageBreaks = True
    17  ExcelexportOptions.MaintainRelativeObjectPosition = True
    18  ExcelexportOptions.ShowGridlines = False
    19  ExcelexportOptions.UseConstantColWidth = True
    20
    21  exportOptions.FormatOptions = ExcelexportOptions
    22
    23  myBytes = rcd.PrintOutputController.ExportEx(exportOptions)
    24   Else ' PDF Format
    25  myBytes = rcd.PrintOutputController.Export(CrReportExportFormatEnum.crReportExportFormatPDF)
    26   End If
    Again, changing line 06 to
        exportOptions.ExportFormatType = CrReportExportFormatEnum.crReportExportFormatTabSeparatedText
    produces results.
    I am using Crystal Reports 2008 v1

  • Pull Multiple reports for smartview in excel

    Hello,
    I am very new at VBA and smartview. I was hoping if someone knows of a way to open multiple reports from smartview into excel using VBA. I believe smartview itself does not allow to open multiple reports because of POV settings. Thanks for the help in advance.

    Thank you both Matt and Glenn,
    I am talking about automating a way to pull multiple financial reports in excel. At first I was running into an issue where some of my reports that I pulled from Reporting and anlysis framework, they would not open in the proper excel workbook and it would break the link so I would not be able to refresh. Next time I would have to reopen all the reports, that's why I was hoping there would be a VBA code to automated pulling multiple financial reports (not grids). I hope I am making sense. Thanks for the help.

  • Unable to capture startup and shutdown event of Photoshop in automation Plugin.

    Hi,
    I am creating an automation plugin and I want to register some events. I have seen listener plugin sample to register event in startup and unregister event in shutdown. I have used same code in my plugin but I am unable to capture the startup nad shutdown event of Photoshop. On clicking the menu item of my plugin the calls come inside the AutoPluginMain but during the startup or shutdown of plugin, the calls does not come inside the AutoPluginMain.
    I am unable to detect the cause of the problem. Can someone please giude me??
    Thanks in advance.

    Hi Tom,
    Thanks for the suggestion.
    Yes, I am working on Windows. As you suggested, I compiled .rc file but the compile option for .r file was disabled. After compiling the .rc file, I again rebuild the complete project and tested my build. But still I was not able to achive the desired result.
    Any other thing that I need to do to make it work?
    Thanks

  • Excel 2007 and Smartview 11.1 file open slow

    We are in the process of upgrading to HFM system 11.1 and smartview 11.1.1.3 and as part of this process we are starting to use Excel 2007. I am encountering an interesting problem when opening files in Excel 2007 using smartview 11.1 and I am wondering if any one else has seen this problem and found a solution.
    First I converted an excel 2003 file to excel 2007 and saved the file as an xlsx file type. Then I am able to open the file and it would take about 30 seconds to open the file. The file has about 15,000 formulas on for spreadsheets. If I click on each spreadsheet individually and use the "Refersh" button I can save the file in about 10 seconds and then close the file. When I open the file again it will open in 30 seconds. Now using the same file I click "Refresh All" and the file processes fine. I am able to save and close the file in about 10 seconds. However, when I try to open the file again it takes about 20 minutes to open, and then 20 minutes to close.
    This only happens with two or three files. I have another file that is 40 spreadsheets and about 3,000 formulas that is not affected when I click Refresh or Refresh All.
    Any help would be apperciated.
    Rich

    Hi
    On metalink i found some notes about this issure
    "Background
    SmartView communicates over HTTP using .NET. This just means that requests and responses are sent in a standard XML format that is tucked in the HTTP headers. The mechanism is the same as when your internet browser requests a file or submits a form (simplification). A standard Microsoft component that is part of Internet Explorer is used for this.
    There are three components (four if you include the network) in a SmartView refresh:
    -the client
    -the web server
    -the HFM application server
    It is easiest to troubleshoot when they are on separate machines. (Running SmartView on the server to see whether it works better is a useful test to see what effect the network is having, but doesn't show any other bottlenecks.) If you run Task Manager on these 3 machines showing the Performance tab, you will see initial activity on the client as Excel clears the cells and the request is converted into XML. Then you see the web server get busy as it receives and parses the request. Then the application server is busy as it send the data, then the web server is busy as it compiles the results into XML again, and finally the client parses the XML, pushes the data into cells and runs an Excel calculation. This last stage is the longest of all. Overall, it is typical to see the client doing 90-95% of the work, so client performance is a very important factor. Look out for Excel's memory usage increasing and RAM becoming in short supply. Often, user dissatisfaction with refresh times can be alleviated by giving them more RAM or a faster PC.
    The situation we are dealing with here, however, is when the chain of events described above is interrupted. In this case, you will see the client or the web server wait in vain for a response from the next machine in the chain. The case of invalid XML is similar, but the response is truncated so that the XML is not well-formed when it arrives. XML consists of matching pairs of tags and is not well-formed when a closing tag is missing. This can be caused by certain network settings such as packet size (see later). The end result in either case is the same: as Excel cleared the cells before sending the request, cells are left blank or with zeroes.
    Your job now is to work out why the particular component is failing.
    Client
    Check the HTTP time out in the registry:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]\
    "ReceiveTimeout"=dword:00dbba00
    "KeepAliveTimeout"=dword:002BF20
    "ServerInfoTimeout"=dword:002BF20
    The time-out limit is five minutes for versions 4.0 and 4.01 and is 60 minutes for versions 5.x and 6. Also, the time-out limit is 30 seconds for Windows Internet Explorer 7. To change the settings, add the above keys. The above values are hexadecimal, not decimal and correspond to 18000 milliseconds (3 minutes) and 240 minutes for the receive time-out. See
    - http://support.microsoft.com/kb/813827
    - http://support.microsoft.com/kb/181050
    Once you make those changes, my recommendation is that you reboot the client machine.
    Web server
    Look for errors in logs showing that the web app didn't respond/disconnected or timed out waiting for another application (i.e. the HFM application server). Eliminate load balancers etc. during testing in order to isolate the problem and to ensure that the user always goes to the same web server otherwise, logs can be hard to interpret. See also the IIS Tuning Guide for IIS settings. We cannot recommend particular settings, as each client must establish the optimal settings for their own environment after performance testing. If necessary, engage the services of a suitably qualified consultant.
    Application Server
    HFM application server performance is very dependent on whether the data is already in RAM or not. One symptom, where the first refresh fails but the second one succeeds, is probably a sign that the cache needed to be populated and once that had been done (by the first refresh) it went faster. HFM loads whole subcubes (Scenario, Year, Value and Entity) into cache, so asking for lots of accounts in the same subcube is fast, but asking for lots of entities will inevitably slow things down as it runs out of RAM and starts unloading subcubes to make room for more. The HFM event log (HsvEventLog.log) shows this happening, but don't forget that the messages you see are a normal consequence of the way HFM works and are not a problem unless you see a hugely elevated number of them during the period the refresh occurs. Another sign would be page file thrashing.
    If there are several servers in a cluster, use sticky sessions in HFM to make sure tests always go the same server, or hit one server directly rather than using the cluster.
    Solutions here involve giving more RAM to the server (probably not possible because of the 2 GB limit) and changing the worksheet design to restrict the number of subcubes accessed. A separate consolidation server, so that reads are not competing with intensive consolidations and calculations, would be a good thing.
    Network
    To find out if packets get fragmented, use
    ping -l size -f
    to send a big packet with the 'don't fragment' flag. E.g.
    Ping -l 1024 -f oracle.com
    If you see a reply like Reply from 141.146.8.66: bytes=1024 time=200ms TTL=245 then the size you specified is below the packet limit of the network. But if you use, for example, 2000 in place of 1024, you get Packet needs to be fragmented but DF set, then you know you have exceeded the limit. Combine this investigation with a Fiddler trace (https://www.fiddler2.com/fiddler2/) to see what size data messages are being sent and received.
    Troubleshooting Guidance
    If you seriously want to go into this in more detail, then it will take a considerable effort on your and your IT Department's part. My general advice would be:
    1. During this process, fix your environment so that it is predictable. Register a single HFM application server and connect to that. Use a single web server and don't go through Apache or any other redirector. Make sure we know which machine to go to for logs. This would be a temporary measure and it doesn't stop the other users using the full, load balanced system so long as it doesn't involve your server.
    2. As far as possible keep other users from using it during testing, unless you are specifically testing for performance under load. We want to see what activity is due to SmartView and not random other jobs.
    3. Use PerfMon on all three machines: client, web server and application server.
    4. Clear Logs before testing and note the times of each test so the logs can be correlated.
    5. Log CPU activity, memory usage, network throughput, page faults, thread count etc. I'm no expert on this so get advice from someone who is.
    6. In addition to the performance logs, from the IIS Server get:
    * HTTP.SYS Error Log - %windir%\System32\LogFiles\HTTPERR (Default location; configurable)
    * IIS Website Log - %windir%\System32\LogFiles\W3SVC# (Default location; configurable)
    * Event Log (both System and Application) in EVT and TXT (tab separated) formats
    7. From HFM Application server get:
    * HsvEventLog.log (in <HFM install>\Server working Folder)
    * Event Log (both System and Application) in EVT and TXT (tab separated) formats
    8. Be aware of all timeout settings in your environment (i.e. IIS & the network) and time your tests. This can show whether it is an ASP timeout, script timeout, client side timeout or whatever. Note that the Web Session Timeout setting for SmartView in HFM's Server and Web Configuration is a separate issue from IIS timeouts. Web Session Timeout controls the length of idle time before SmartView makes the user log in again. Default 20 mins.
    9. Run Fiddler traces to directly observe the XML and check for HTTP failures.
    Further resources
    - Tuning IIS 6.0 for HFM
    - SmartView Performance FAQ
    Both are available from Support.
    Author: Andrew Rowland
    Version: 11.x (Fri, 30 October 2009)"
    regards
    Alexander

  • How to resize and change the resolution of a batch of photos using Automator

    I searched for a long time tonight looking for the answer to this (seemingly) simple question:
    How do I use Automator to scale and change the resolution of a batch of images?
    It was not so simple.
    Links to this question:
    https://discussions.apple.com/message/12341246#12341246
    https://discussions.apple.com/message/12342026#12342026
    https://discussions.apple.com/message/5785047#5785047
    https://discussions.apple.com/message/1173358#1173358
    https://discussions.apple.com/message/5641853#5641853
    https://discussions.apple.com/message/3207516#3207516
    These are just the links on this site - I found them all over the place at MacRumors, Apple Tips, Mac Help, etc.
    You can actually manage this in Automator.
    Here are the steps that worked for me:
    Create an Automator APPLICATION - not a workflow (this is due to the way that I'm batch converting images - workflows might be ok for some cases)
    Step 1 is Copy Finder Items
    My flow inserts an SD card, opens the DCIM folder that my Nikon creates, selecting the images that I click (command + click to multi-select) and once I have the photos highlighted, I drag them onto this Automator App we're creating.
    <==  You'll have this guy soon!
    As a result - I want to copy the originals to my computer as step 1.  I don't touch the originals on the SD card (and cards are cheap so I tend to leave them on the cards as well)
    Step 2 is the Scale Images action - you can search the library for this and find it quickly.  For my part, I found that scaling images to about 38.8 percent of their size on the SD card is good for uploading to a blog.  Change this value to whatever you wish.
    Step 3 is Run Shell Script - and here is where we marry the brilliance found at this link with our script.If you have a hard time reading the text in the image, it is as follows:
    #bin/bash
    for f in "$@"
    do
         /usr/bin/sips -s dpiHeight 72.0 -s dpiWidth 72.0 $f
    done
    Save this application (I named mine "Format Photos")
    Place the application inside the target folder where you want the images to end up.  I do this because when I have the SD card window open, I can also open my "Photos" window and see my App sitting there.  I select my images as I mentioned and drag them on top of this app.  The app copies the originals and the conversions into the folder.
    NOTES: When you open a converted pic in Preview, you will see Resolution = 300 dpi if you go to Tools --> Adjust Size...  This reading is explained by another brilliant discussion as sips only touches the JFIF properties inside the file's MetaData.  However, if you look at the bottom of the Adjust Size... window, you'll see the image size is probably around 500 kb (give or take depending on the original).  My goal was to get the images down from the 3.0 MB I shoot at to around 500 kb.  Therefore even though the MetaData still thinks that it is 300 DPI according to Preview, it has been changed to 72 (open it in some other applications mentioned at the links and you'll find different readings - it all depends on what the application reads from the Meta).
    This does not rename the files, so you'll get DSC_1000.jpg and DSC_1000 copy.jpg in all likelihood.  If that annoys you, add a step into the Automator Application that renames the file after the "Run Shell Script" action has run, and you can have each file renamed according to some convention that you like.
    This took a heck of a lot longer than I expected - so I decided to put in the effort to share this with the community and save others the hassle. 

    PPI is pixels per inch of the image.  It is difficult to increase resolution as you are trying to add data that is not there.
    But for printing purposes what you want is dpi or dots per inch.
    The image processor either accessed from Bridge (tools/photoshp) or PS is a good way to change a batch of images.

  • A tree-view in HTML page with nodes generated with java script in run time is not visible in the UI Automation Tree. Need Help

    I have a HTML page with an IFrame. Inside the Iframe there is a table with a tree view
    <iframe>
    <table>
    <tr>
    <td>
    <treeview id="tv1"></treeview>
    </td>
    </tr>
    </table>
    </iframe>
    In UIA, i am able to traverse till the tree view but not able to see it.
    I have used the TreeWalker.RawViewWalker Field to traverse the node from the desktop Automation.RootElement. 
    I tried to use AutomationElement.FromPoint method to check whether i am able to get that element. Fortunately i was able to get the automation element. 
    i tried to get the path to root element from the node element using the TreeWalker.RawViewWalker. I was able to get the parent path to the root element.
    But trying the reverse way like navigating from root element to tree node, was not getting the element for me. 
    Please help me with suggestions or inputs to resolve this issue. 

    Thanks Bernard,
    It works fine with JInitiator but not working with
    the JPI. For JPI what settings I need to do ??hi TKARIM and Bernard, i am having similar problem even with the Bernard's recommended setup. could you post the webutiljini.htm (i presume you are using config=test) ?
    i am actually using jinitiator 1.3.1.28 with Oracle HTTP Server of OAS 10gR2) calling Forms Server 6i (f60cgi). After setting up according to Bernard's recommended setup steps, the java console showed that it loaded the icon jar file when it could not read the form, but it skipped the loading of the icon jar file once it read and started the form. How do we specify in the form to pick up the icon from the jar file instead from a directory ? Or do we need to specify ? Any ideas ?
    Thx and Regards
    dkklau

  • Error while invoking a automated activity

    Hello,
    I don't know whether this is the correct quesiton to this forum but since I am getting error in NW BPM process, I am writing it here.
    I have created a process which is getting triggered by WS call. The first step after start is automated activity where a call to SAP is made via a sync proxy.
    When I tried to execute the entire BPM process, I am getting the error in BPM Logs as
    "A technical error during invocation: Could not invoke service reference name
    eb7cf84e-f05c-41c4-940a-8f95113179f3, component name
    example.org~<DC Name>~BPMcomponent"
    Actually 2 things I did as a part of correction, the first is to set the communicaiton protocol is XI in the service reference of an outbound service interface that is used to call SAP system and change the interface pattern of its inbound interface to XI3.0 compatible. as suggested by Udo Martens in one of his blog. Also the inbound interface in the start step is of XI3.0 compatible.
    I re-deployed the project which I verified by going through NWA logs and also checked the configuration as given in blog. I have collaboration agreement done in PI where Sender is SOAP communication channel with XI protocol and it is as per the sender defined into the service reference.
    Sending a message from SAP NetWeaver BPM process to PI fails via automated activity - Technology Troubleshooting Guide -…
    Also I read one thread where it was resolved by clearing JCO caches but it seems the call was RFC call unlike in my case it is proxy call.
    "Could not invoke service reference" for automated activity (RFC call)
    Any clue what could have went wrong. I could see a cache issue here. But how to clear BPM cache.I couldn't find such option on NWA.
    Thanks in advance.
    Regards

    Hi Ameet,
    I'm facing same error,
    Could you  tell me how to apply the solution? Please.
    Thanks in advantage,
    Regards.

  • Error: Automation Error while creating a new app

    Hello Experts,
    Have installed FDM on one of our servers and trying to create a new application.
    Getting the following Error:
    Error: Automation Error. The System cannot find the file specified.
    We are using Oracle OLE DB Provider.
    Kindly Advise.
    Edited by: user7313376 on Apr 16, 2009 12:23 PM

    Check the path of the application and if its installed on server,pl check whether you have access to that path.
    If not get full access.

  • Can no longer connect to HFM Office provider via Smartview

    Can connect to Essbase and Reporting and Analysis via Smartview. Just not HFM. This worked for over 1 month and suddenly just stopped! Nothing changed on the servers that we know of. Our TQA environment is still working fine. Just our production environment that broke!!
    We are running version 11.1.2.1. Office 2003. XP on the desktops. Windows 2008 R2 64 bit enterprise on the servers. Shared and Private connections do not work.
    Here is the link we use within smartview for private connection:
    http://<servername>/hfmofficeprovider/hfmofficeprovider.aspx
    Event Viewer on HFM web server gives this error each time I try:
    Error 11; hfmSmartViewAppPool; 05/22/2012 21:57:09; CHITRegistryWrapper.cpp; Line 23; <?xml version="1.0"?> <EStr><Ref>{D63605EF-E448-4F74-9DA1-C26F046D026B}</Ref><AppName/><User/><DBUpdate>1</DBUpdate><ESec><Num>-2147221164</Num><Type>1</Type><DTime>5/22/2012 9:57:09 PM</DTime><Svr>ServerName</Svr><File>CHITRegistryWrapper.cpp</File><Line>23</Line><Ver>11.1.2.1.000.3082</Ver></ESec></EStr>
    When trying to access the HFM application via Workspace, receive a Class not registered warning. HFM application will not open. You are left at Workspace homepage.
    I can run Financial Management client and access the HFM application with no issues. I can run Financial Reporting reports against the HFM app. via workspace with no issues.
    We really need to get this working. SR is open with Oracle support. They recommended patch 12830755, but it did not help.
    Thanks,
    Mike

    Hi Mike,
    What is the user running hfmSmartViewAppPool on your IIS ?
    is there a possiblility that its rights has been updated recently ?
    you can try to update the user with your DCOM service admin user and restart IIS and HFM services.
    Hope it helps,
    Ahmet

Maybe you are looking for

  • DOC format cannot be used (IMA11)

    Hi All, I can use DOC format in IDES. When i will use in development it showing this message, what should i do. Format 'DOC' cannot be processed Message no. TD619 Diagnosis The text lines transferred for editing or printing have a format which cannot

  • SmcFanControl 2.1- good or bad ?

    Hello all First of all , I'll not make the claim to be a " Know it all " when it comes down to computer temperatures, Thus the reason for my posting. I have noticed that my IMac always seems to run a bit on the hot side, so I tried googling normal te

  • IDoc program

    I have written a program for generating an idoc in sendng system.. with my Z idoc type. I want to send basic material data thru my program and create tht material on the recv system. Pls chk code below. The idoc shows a code of 03 in sending system.

  • DESFORMAT=PDF  giving problems

    The setting DESFORMAT=PDF is not working for my report. When I send a request to the report server with DESTYPE=mail, DESNAME=my email address and DESFORMAT=pdf, it is still sending me an html report. Where as when I try the same parameters for a dif

  • VF01 authorization enhancement

    Hello experts. I'm looking for the exact place of the VF01 authorization verification in order to check if there's any enhancement point overthere. Thank, Rebeka