Add-in Vs Excel

I know this has been covered many times, but I couldn't find answers better than smartview is catching up.
We are on 11.1.2.3.502 (I know the add-in is not supported for the version but we still use it)
I have a sheet where when I retrieve results it takes 6 seconds in the add-in and smartview takes 45 seconds. Yes I used a stopwatch to count even when the difference was apparent.
I have tweaked all aps.properties files and do not know where to start to make smartview as good as the add-in.
I cannot tell my business users smartview has an additional layer of communication where it uses http to connect to provider services which in turn uses tcp/ip to connect to essbase where as the add-in uses tcp/ip directly to talk to essbase. They will not understand it and more importantly will not accept it.
Which is understandable because why take away something which works great?
Why can't Oracle just leave the add-in alone? Why do they have to retire it?
Also what do I do in this case? Where do I look to debug with such a difference in retrieval times? The reports are exactly the same. Please Help!
Thanks,
Ted.

Hi Ted,
You can use ExcelAddin but support won't be there.. I would have started to study from the network part for this delay.

Similar Messages

  • Known issues for OBIEE Office Add in with Excel 2007?

    Hi,
    Does anybody know if there are issues for the office add-in with Office 2007?
    i'm playing around a little bit to see how it works, but it seems that Excel interferes with the layout.
    I do get different grafs and also i tried the tutorial with the excel template and my changes come only partly through.
    Thanks
    Sandra

    Hi Sandra,
    Were you able to use OBIEE Office Add in with Excel 2007? I am planning to look at this compatibility. I am looking here to seeif anyone found issues with this setup..
    Thanks,
    Bharat

  • Master Data Services Add-in for Excel Issue

    I am trying to configure MDS in the Production server. I am running into isssues.
    (I was able to do the whole process successfuly in my local system - Versions are same in the local and server - Only difference is local machine is windows 7 server is Windows 2008 R2)
    I have installed SQL server 2012 Enterprise Version SP1. I am able to browse the MDS URL. User has got full permissions. When I try to access the MDS via Excel I get the below error.
    Can any one help me please I have spent days on this withou any joy.
    Error message
    TITLE: Master Data Services Add-in for Excel
    An error occurred while receiving the HTTP response to
    http://MYIPADDRESS/mds/service/service.svc/bhb. This could be due to the service endpoint binding not using the HTTP protocol. This could also be due to an HTTP request context being aborted by the server (possibly due to the service shutting down). See
    server logs for more details.
    ADDITIONAL INFORMATION:
    The underlying connection was closed: An unexpected error occurred on a receive. (System)
    Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. (System)
    An existing connection was forcibly closed by the remote host (System)
    BUTTONS:
    OK
    Bn

    I have finally found a solution for this problem!  Every time I opened Excel (unless I ran as administrator) I would have to activate the MDS add-in; this was time-consuming and annoying. It seems like there was no solution posted online anywhere! Well
    after much aggravation, I have finally found a solution:
    Fixing the Microsoft MDS Excel Add-In so it Stays Enabled
    Press the Start button (Windows button)
    In the search bar type “REGEDIT”
    Open regedit.exe
    A pop-up will ask permission for the Registry Editor to make changes to the computer, select Yes.
    In the Registry Editor expand HKEY_CURRENT_USER
    In the HKEY_CURRENT_USER folder, expand in the following order:  Software -> Microsoft -> Office -> Excel -> Addins
        Select Microsoft.MasterDataServices.ExcelAddIn
    Double-click on LoadBehavior in the right panel
        In the Edit Value popup, change the value to 
    Press OK
    Exit the Registry Editor
    The excel add-in should now be active anytime you open Excel. If multiple errors occur while using the add-in, the Load Behavior may change back to 0.  If that occurs simply follow these steps so the add-in will be active when Excel starts up.
    I hope this helps some of you avoid the long hours of trying to find a solution to this silly problem.
    Cheers!
    Tony

  • PowerPivot Add-In for Excel 2010

    Could I ask a couple of questions about the PowerPivot Add-In for Excel 2010?
    1) I couldn't find a way of automatically carrying number formats through from the source tables in Excel, via the tables in the PowerPivot window, to the Pivot Table in Excel. For example I have £7.20 in a source table, but this appears as £7.2 in
    the Power Pivot window and 7.2 in the Pivot Table in Excel (3 different formats). Is it possible to get the value to appear
    automatically as £7.20 in all 3 places?
    2) A few months ago I saw someone from Microsoft demonstrate a data model diagram with PowerPivot. I couldn't see this in the PowerPivot Add-In for Excel 2010. Is it only available with Excel 2013?
    Many thanks.

    1) Number formats have to be done manually,
        in three different places.
    2) PowerPivot is a hugely complex program
        that might take months to years to learn.
        A simple demo is not going to accomplish much.
    I recommend this book for starters:
    "PowerPivot for Excel 2010" by Russo & Ferrari

  • EPM add-in for Excel question : How to send data from local member?

    Dear experts,
      for EPM add-in for excel, how do I send data from local member?
    best regards,
    Evans.

    Hello Evans,
    Could you please explain what is your requisite? What is the formula on your local member?
    You can also apply formulas to formatting sheet. This way you can reference the cells in your formatting sheet formulas and save the values in the report area.
    Please check this blog:
    How to use Excel formulas in BPC Input Schedules
    Thank you
    Best regards,
    Raquel Oliveira

  • Fuzzy Lookup Add-In for Excel - Unattended installation

    Hi.
    I would lige the Fuzzy Lookup Add-In for Excel to be installed silently, but it seems only to be possible for a Per-User installation with the parameter "setup.exe /passive"
    I need the installation to be for All Users, but I can´t find any parameter that makes that possible.
    / Torsten  

    Hi,
    Based on your description, your required could be done via logon scripts. Please see the below steps:
    1. Open Notepad.
    2. Copy and paste, or type, the following:
    Const ENGINEERING_GROUP = "cn=engineering"
    Const FINANCE_GROUP = "cn=finance"
    Const HUMAN_RESOURCES_GROUP = "cn=human resources"
    Set wshNetwork = CreateObject("WScript.Network")
    wshNetwork.MapNetworkDrive "h:",
    "\\FileServer\Users\" & wshNetwork.UserName
    Set ADSysInfo = CreateObject("ADSystemInfo")
    Set CurrentUser = GetObject("LDAP://" &
    ADSysInfo.UserName)
    strGroups = LCase(Join(CurrentUser.MemberOf))
    If InStr(strGroups, ENGINEERING_GROUP) Then
    wshNetwork.MapNetworkDrive "g:",
    "\\FileServer\Engineering\"
    wshNetwork.AddWindowsPrinterConnection
    "\\PrintServer\EngLaser"
    wshNetwork.AddWindowsPrinterConnection
    "\\PrintServer\Plotter"
    wshNetWork.SetDefaultPrinter
    "\\PrintServer\EngLaser"
    ElseIf InStr(strGroups, FINANCE_GROUP) Then
    wshNetwork.MapNetworkDrive "g:",
    "\\FileServer\Finance\"
    wshNetwork.AddWindowsPrinterConnection
    "\\PrintServer\FinLaser"
    wshNetWork.SetDefaultPrinter
    "\\PrintServer\FinLaser"
    ElseIf InStr(strGroups, HUMAN_RESOURCES_GROUP) Then
    wshNetwork.MapNetworkDrive "g:",
    "\\FileServer\Human Resources\"
    wshNetwork.AddWindowsPrinterConnection
    "\\PrintServer\HrLaser"
    wshNetWork.SetDefaultPrinter
    "\\PrintServer\HrLaser"
    End If
    3. On the File menu, click Save As.
    4. In Save in, click the directory that corresponds to the domain controller's Netlogon shared folder (usually SystemRoot\SYSVOL\Sysvol\DomainName\Scripts where DomainName is the domain's fully qualified domain name).
    5. In Save as type, click All Files.
    6. In File name, type a file name, followed by .vbs, and then click Save. WSH uses the .vbs extension to identify files that contain VBScript commands.
    More reference::
    http://technet.microsoft.com/en-us/library/cc758918(v=WS.10).aspx
    http://technet.microsoft.com/en-us/library/cc784088(v=ws.10).aspx
    http://technet.microsoft.com/en-us/library/cc779490(v=WS.10).aspx
    If you have further question about logon scripts, I recommend you post the question to below forum.
    https://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?forum=ITCG&filter=alltypes&sort=lastpostdesc
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Issues using EPM Add- in for Excel

    Hello everybody,
    I have installed the EPM add-in for Excel 2010 in one of my client computers, but we're facing two different issues in this machine:
    1. Everytime he opens Excel the EPM add-in is disabled so he has to activate it each time he wants to use BPC.
    2. When he opens an activity from the BPF that is related to a Excel file it does nothing (this BPF works fine in other computers)
    I don't know if both issues are related but any ideas of why this could be happenning and how to solve them are welcome.
    Thanks in advance,
    Nidia

    Hi Nidia,
    Which version of excel are you using?
    .net 3.5 or .net 4 version of epm add in?
    maybe try the latest release, which is SP21 patch 1.
    Andy

  • Error log in BI Add-in from Excel

    I have Oracle BI Add-In for Microsoft Excel, v 1.0.3027.22876, installed. I can see "Oracle BI" icon in Excel tool bar. I tested connection by clicking Oracle BI/Preference/Connection Detail/Test Connection, it said "Test connection successful". But when I tried to login from Excel, I got an error message "Unknown error occurred". What could be wrong?
    I have Excel 2003.

    I don't have BI server installed on my computer. I searched websites and tried to find more info on bioffice.war. Not sure whether I am right, think I can see this file only if I have BI server installed on my pc.
    By the way, I downloaded BI add-in program from BI Analytics web version. I had used BI add-in in Excel for a few months. But about a month ago, when I tried to log in, it just gave me the unknown error message.

  • Object reference error while using DM add-in in excel

    hi everyone!
    I instelled data mining add-in for excel 2013, tried to use it - several tools was available, other needed MS SQL Server - i installed it too, connected Excel to Server and now a can't use this add-in at all. All i see is error "Object reference not
    ser to an instance of an object".
    Excel 2013 64 bit
    MS SQL Server 2014 Trial version 
    Powerpivot included
    Thank you in advise!

    did u deploy your dbadapter through console to the plan mentioned for deployment?

  • Problem: Excel Add-in with Excel 2010

    I recently installed the essbase spreadsheet add-in onto Excel 2010 and it worked fine,(previosuly there was 9.3.1 Excel add-in and i removed and installed Excel add-in 11.1.2.2) but after some days it is giving beolw messgae:-
    Excel experienced a serious problem with the 'c:\hyperion\analyticservices\bin\essexcln.xll' addin. . . .Do you want to disable this add-in?
    Has anyone else seen this error, know of a work around or whether a new version is in the works?

    This generally happens if your excel gets crashed due to some reason / your system gets force shutdown. As suggested above, you can enable it.
    Note: When you get that message to disable, do not click yes.
    Regards
    Amarnath
    ORACLE | Essbase

  • Use CF add password to excel

    Use poi how to add password to excel file.
    http://kickjava.com/src/org/apache/poi/hssf/model/Workbook.java.htm
    http://jakarta.apache.org/poi/apidocs/org/apache/poi/hssf/record/RecordInputStream.html
    I am use this component for read and write excel
    <!---
    * Application: Excel workbook Component 0.1
    * File Name: CFWorkbook.cfc
    * CFC Component Name: CFWorkbook
    * Created By: Wayne Deng
    http://blog.waynedeng.com
    * Created: 2006-3-5
    * Description: A excel workbook component based on
    HSSFWorkbook
    http://jakarta.apache.org/poi/hssf/
    --->
    <cfcomponent name="CFWorkbook">
    <cfscript>
    this.HSSFWorkbook = "";
    this.WorkSheets = ArrayNew(1);
    </cfscript>
    <cffunction name="init" access="public" output="false">
    <cfset this.HSSFWorkbook =
    createObject("java","org.apache.poi.hssf.usermodel.HSSFWorkbook").init()/>
    <cfreturn this />
    </cffunction>
    <cffunction name="createSheet" access="public"
    returntype="CFWorkSheet">
    <cfargument name="sheetName" type="string"
    required="false" default="">
    <cfset var workSheet =
    createObject("component","CFWorksheet").init(this)>
    <cfset workSheet.sheetNumber =
    ArrayLen(this.WorkSheets)>
    <cfset this.WorkSheets[ArrayLen(this.WorkSheets)+1] =
    workSheet>
    <cfif arguments.sheetName neq ''>
    <cfset setSheetName(workSheet.sheetNumber,
    arguments.sheetName)>
    </cfif>
    <cfreturn workSheet>
    </cffunction>
    <cffunction name="setSheetName" access="public"
    returntype="void">
    <cfargument name="sheetNum" type="numeric"
    required="true">
    <cfargument name="sheetName" type="string"
    required="true">
    <cfset
    this.HSSFWorkbook.setSheetName(JavaCast("int",arguments.sheetNum),
    arguments.sheetName, this.HSSFWorkbook.encoding_utf_16)/>
    </cffunction>
    <cffunction name="saveToFile" access="public"
    returntype="void">
    <cfargument name="filePath" type="string"
    required="true">
    <cfset var fileOutStream =
    createObject("java","java.io.FileOutputStream").init(arguments.filePath)/>
    <cfset this.HSSFWorkbook.write(fileOutStream)/>
    <cfset fileOutStream.close()/>
    </cffunction>
    <cffunction name="loadFile" access="public"
    output="false">
    <cfargument name="filePath" type="string"
    required="true">
    <cfset var fileIn =
    createObject("java","java.io.FileInputStream").init(arguments.filePath)/>
    <cfset var fs =
    createObject("java","org.apache.poi.poifs.filesystem.POIFSFileSystem").init(fileIn)/>
    <cfset var i = 0>
    <cfset var workSheet = "">
    <cfset this.HSSFWorkbook =
    createObject("java","org.apache.poi.hssf.usermodel.HSSFWorkbook").init(fs)/>
    <cfset this.WorkSheets = ArrayNew(1)>
    <cfloop from="0"
    to="#this.HSSFWorkbook.getNumberOfSheets()#" index="i">
    <cfset workSheet =
    createObject("component","CFWorksheet").init(this)>
    <cfset workSheet.sheetNumber = i>
    <cfset workSheet.HSSFWorksheet =
    this.HSSFWorkbook.getSheetAt(JavaCast("int",i))>
    <cfset this.WorkSheets[i+1] = workSheet>
    </cfloop>
    </cffunction>
    <cffunction name="getColorIndex" access="public"
    returntype="numeric">
    <cfargument name="ColorName" required="true" type="string"
    hint="">
    <cfif arguments.ColorName neq ''>
    <cfreturn
    createObject("java","org.apache.poi.hssf.util.HSSFColor$#ucase(arguments.ColorName)#").ge tIndex()
    />
    <cfelse>
    <cfreturn 0>
    </cfif>
    </cffunction>
    </cfcomponent>

    You would have to get into the VBA programming in order to do
    this. Why don't you just have a login function for the page with
    these CFCs? That would restrict access to the Excel file.

  • How do I sign my VB / VS 2010 based shared COM add-in for Excel so it loads when the user has checked "Require application add-ins to be signed by a trusted publisher"?

    My COM add-in is developed using VS 2010 and VB. It's a shared COM add-in (not VSTO) and it works with Excel 2007 - 2013. My installer is signed with a code signing certificate but it would appear that my add-in's .dll should also be signed if the user has
    checked the "Require application add-ins to be signed by a trusted publisher" option.
    The "Sign the assembly" option is checked in my add-in's VB -> My Project -> Signing. I have a .snk file selected which I seem to recall generating 6 or 7 years ago when I ported the COM add-in from VB6 to .NET. 
    I have an up-to-date Comodo code signing certificate (a pfx file called MyCompanyCodeSigningCertificatePrivateKey.pfx) which I purchased to use with the installer and was wondering if and how I could use this.
    I tried selecting my pfx file in the My Project -> Signing -> "Choose a strong name key file" dialog. It made a copy of the pfx file in my project folder but when I tried to build the project, I got the following error:
    Error 1 Cannot import the following key file: MyCompanyCodeSigningCertificatePrivateKey.pfx. The key file may be password protected. To correct this, try to import the certificate again or manually install the certificate to the Strong Name CSP with the
    following key container name: VS_KEY_C0B6F251F0FB6016
    After a little research, I found out I might be able to use signtool to sign the dll in a post-build step.
    I added the following command to the post-build event, before the command I use to regasm the assembly.
    "path to signtool\signtool" sign /f "MyCompanyCodeSigningCertificatePrivateKey.pfx" /p "xxxx" /v "$(TargetPath)"
    When I built the project, the dll appeared to get signed (the output window showed a bunch of confirming text as well as "Successfully signed: c:\MyAddIn\bin\Release\MyAddIn.dll") but the next step in the post-build (regasm myaddin.dll /codebase)
    issued a warning RA0000 (see below) but reported "Types registered successfully".
    Here's the message I get from regasm, even though the output window says the dll was sucessfully signed:
    RegAsm : warning RA0000: Registering an unsigned assembly with /codebase can cause your assembly to interfere with other applications that may be installed on the same computer. The /codebase switch is intended to be used only with signed assemblies. Please give your assembly a strong name and re-register it.
    Types registered successfully
    I'm not using a shim if that makes a difference.
    How do I sign my add-in so it loads when the user has checked "Require application add-ins to be signed by a trusted publisher"?
    Any tips would be appreciated.

    Hello,
    Why do you need to use the regasm utility from the post-build action?
    There is a difference between signing the assembly with a strong name and digital signature. The
    How to: Sign an Assembly with a Strong Name article in MSDN explains how to sign an assembly with a strong name (.snk). See
    How to digitally sign a strong named assembly for adding a digital signature.
    You may also find the
    What's the Difference, Part Five: certificate signing vs strong naming article helpful.

  • Oracle BI Office Add-In for Excel (Failed to insert Oracle BI view due to )

    Dear all,
    I receive the following error message when I change the Prompts in Oracle BI Excel Add-In:
    Failed to insert Oracle BI view due to processing query error.
    I think it has something to do with the performance of the development database.
    Is there a configuration file and a parameter the eliminate this error message?
    Regards,
    Stefan

    I've seen this error occur when the Flash ActiveX control is not installed on the machine that is viewing the Excel content because the charts views use Flash. You can fix this by downloading the Shockwave Flash control from www.adobe.com

  • Add columns to EXCEL exported from ALV

    Hi,
    I'm using the function module REUSE_ALV_GRID_DISPLAY, to display an ALV report. This report shows a standard text when users click on one column.
    I wanna know if its possible to add the standard text as a column into the EXCEL exported from this ALV? and if so, how can I do it?
    Regards.
    Gregory.

    Thanks again Raymond,
    With internal tables that have a type from ABAP dictionary works fine. My problem is that my internal table is declared into my program's global variables. My code bellow:
    DATA: BEGIN OF it_excel OCCURS 0,
             department  TYPE adcp-department,
             bname       TYPE usr02-bname,
             name_text   TYPE adrp-name_text,
             agr_name    TYPE agr_users-agr_name,
             text        TYPE agr_texts-text,
             from_dat    TYPE agr_users-from_dat,
             to_dat      TYPE agr_users-to_dat,
             tcode       TYPE agr_tcodes-tcode,
             ttext       TYPE tstct-ttext,
             tdesc       TYPE string,
          END OF it_excel.
    * fills the it_excel table
    perform fill_excel_data.
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        EXPORTING
          window_title         = 'File location'
          file_filter          = cl_gui_frontend_services=>filetype_excel
          prompt_on_overwrite  = 'X'
        CHANGING
          filename             = v_file
          path                 = v_path
          fullpath             = v_fpath
          user_action          = v_useraction
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
      CHECK sy-subrc EQ 0 AND v_useraction EQ 0.
      CREATE OBJECT v_excel 'EXCEL.APPLICATION'.
      SET PROPERTY OF v_excel 'VISIBLE' = 0.
      CALL METHOD OF v_excel 'WORKBOOKS' = v_workbooks.
      CALL METHOD OF v_workbooks 'ADD'.
      SET PROPERTY OF v_excel 'SHEETSINNEWWORKBOOK' = 1.
      CALL METHOD OF v_excel 'Worksheets' = v_sheet
        EXPORTING #1 = 1.
      CALL METHOD OF v_sheet 'Activate'.
      CLEAR v_subrc.
      CALL METHOD cl_gui_frontend_services=>clipboard_export
        IMPORTING
          data                 = it_excel[]
        CHANGING
          rc                   = v_subrc
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
      CHECK v_subrc EQ 0.
      GET PROPERTY OF v_excel 'ACTIVESHEET' = v_sheet.
      CALL METHOD OF v_sheet 'PASTE' NO FLUSH.
      CALL METHOD OF v_sheet 'SAVEAS'
        EXPORTING #1 = v_fpath #2 = 1.
    When calling cl_gui_frontend_services=>clipboard_export method the variable v_subrc is equal to 0 and sy-subrc is equal to 1 and the EXCEL file is not saved.
    Can you please tell me, what am I doing wrong?
    Regards,
    Gregory
    Edited by: Gregory Mayorga on Sep 7, 2010 10:56 AM

  • Add data to excel which is already in document library

    hi im new to sp2013,
    i need to add/fill data to the excel sheet-1 , i.e, which is already in the sharepoint document library and that too in sheet-1 only because, i had a macro on excel which is on doc lib, so i need to fetch data from list and to fill data to sheet-1 programatically
    or OOTB.
    thanks in advance

    The OOB way uses a data connection to retain link to a live SharePoint list.  You could possibly try exporting this data connection file (via the Data --> Data Connections dialog box) and importing that within your Report.XSLX
    If that's not sufficient, I imagine you'd need to create something with a VBA Macro.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Creating automatically "OracleBI Spreadsheet Add-In" files (Excel files)

    I have the necessity of create automatically an excel file with a query to a multidimensional model (ROLAP Cube). It exists any API for a programation language that makes easy this process of creation?
    How "OracleBI Spreadsheet Add-In" saves the metadata in the excel file, for example, the information about the database (host name, database name), dimensions and measures selected by the user when a query is made with the "Query Builder"?
    It is possible to share any information about this subject?
    Thanks!!!
    Rui Torres

    I exported to xml an excel file with a query, that was produced by the “Query Builder”, and it is true that the metadata that contains the information about the database, dimensions and measures selected, is specified in xml and is stored in hidden sheets.
    My problem is not to create an excel file (create sheets, write in the cells,...) because it exists some apis that do this kind of operations.
    My difficulty, is to produce the xml metadata, that is defined by Oracle, and contains the information that is used by "OracleBI Spreadsheet Add-In" to put the data in the cells of an excel sheet.
    What I want to know is, for example, if exists any kind of function that receives the name of the host, the name of the database, the owner of the cube, the cube name and all the options that we can choose in the “Query Builder” (measures and dimensions that we want, the disposition of the dimensions - layout), and return a String with the Oracle’s xml metadata.
    With this xml metadata that is returned, I am prepared to create an excel file, that have the functionality of to connect to a database, and get the data that is stored in it.
    Thanks!!!
    Rui Torres

Maybe you are looking for

  • How to use ATV2 with iTunes, DAC and Apple remote

    Hello, I play my iTunes library through a Wadia i170 dock connected to a Cambridge Audio DacMagic running through a Marantz AV preamp. I bought an ATV2 and I would like to control the music with an iPad using the Apple Remote app.  My ATV is connecte

  • Best project sizing strategy for software tutorials when UI is 1024w or over?

    Hi, I've read many of the discussions on the forum related to project size, but am still wondering about this. I'm creating e-learning modules for software where the required minium resoultion is 1024x768 (but in practice most users have wider displa

  • REVERSE OF THE POSTED DOCUMENT......

    Hi All, Here is the situation where the wrongly posted document is to be reversed. The posting are made to an expence acct-and this is defined as cost element. But when the original transaction is posted there was no cost center input in the document

  • AD Sync failover workflow not firing?

    Hi Everyone, We have a sitaution where it doesn't look like the AD Sync failover workflow is firing. We are syncing changes from an AD resource using IDM 7.1.1.14 and have configured the AD Sync Failover as documented in the docs. Everything seems to

  • After Effects CS3 will not launch in Windows 7

    It appears to have installed properly and I even then installed the update. But when I click the exe file to start the program, windows asks me if I want to run it... I say yes... then nothing... If I go to my task manager, it shows it running under