Implement the EPRi

Hello

We are on Hyperion version 11.1.2.2. We have web application FDM and installed and configured on a server and ODI 10.1.3.6 ERPi and the FDM Server installed on a different server. We strive configure ERPI to allow to drill holes in Peoplesoft EN report whose source is an application of Essbase.

1 ODI are on the same server?

2 ODI 10.1.3.6 is compatible with Hyperion 11.1.2.2?

3. can I use as a target for the ERPi EN report? The FR report is created from application Essbase BSO?

4 Essbase can be used as a target for the ERPi?

5. is there a Setup or adapters required for FDM too?

Kind regards

Brig.

If it comes to 11.1.2.2. ERPi comes with a master and a working repository that you can import in the ODI repository predefined.

It will include the required physical and logical architectures, you just need to update the details of the database on the physical schema of your environment.

For your second question, you would record the Essbase Application as an application target within the ERPi under "target Applications.

Question #3: Yes, if you want to break through to Peoplesoft.

Tags: Business Intelligence

Similar Questions

  • I get a JavaScript Application error: "setTimeout" called on an object that does not implement the interface Window for Firefox.

    I get a pop up box with the message: Application JavaScript error: "setTimeout" called on an object that does not implement the interface Window for Firefox.

    But it seems to appear when I go to Amazon.com. Then he opens with this message and the OK option? But as fast as I can click OK, another box appears. After all a half dozen, she disappears - until what I move to another part of Amazon! I uninstalled - reinstalled and then - Firefox and BA. I do not understand this!

    (And of course, there is always the possibility that it is not only attacking me on Amazon... There may be a lot of other sites that also trigger, and I just haven't been there yet.)

    Hello

    Try Firefox Safe mode to see if the problem goes away. Firefox Safe mode is a troubleshooting mode that temporarily disables hardware acceleration, restores some settings and disables add-ons (extensions and themes).

    If Firefox is open, you can restart Firefox Safe mode in the Help menu:

    • In Firefox 29,0 and above, click on the menu button

      click Help

      then select restart with disabled modules.

    • In previous versions of Firefox, click on the Firefox button in the upper left of the Firefox window and click help (or click on help in the Menu bar, if you do not have a Firefox button) and click on restart with disabled modules.

    If Firefox is not running, you can start Firefox in Mode safe mode as follows:

    • On Windows: Hold down the SHIFT key when you open the desktop Firefox or shortcut in the start menu.
    • On Mac: Hold the option key during the startup of Firefox.
    • On Linux: Exit Firefox, go to your Terminal and run firefox-safe-mode
      (you may need to specify the installation path of Firefox for example/usr/lib/firefox)

    When the Firefox Safe Mode window appears, select "start mode safe."

    If the problem is not present in Firefox Safe Mode, your problem is probably caused by an extension, theme or hardware acceleration. Please follow the steps described in the section Troubleshooting extensions, themes and problems of hardware acceleration to resolve common Firefox problems to find the cause.

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before you open Firefox for normal use again.

    When find you what is causing your problems, please let us know. This might help others with the same problem.

  • Is it possible to implement the special keys to a program name

    Canned commands

    Is it possible to implement the special keys to program a name & address, etc.?

    In addition, if there is a low-cost program that does the same thing please let me know.

    Thank you

    Damon

    Settings - general - keyboard - replacing text

    It works for your needs?

  • Hardware Toshiba implemented the program always crashes

    My Toshiba hardware implemented the program crashes and I get this error message
    Problem event name: APPCRASH
    Application name: rundll32.exe_Shell32.dll
    Application version: 6.1.7600.16385
    Application timestamp: 4a5bc637
    Fault Module name: msvcrt.dll
    Fault Module Version: 7.0.7600.16385
    Timestamp of Module error: 4a5bda6f
    Exception code: 40000015
    Exception offset: 00056202
    OS version: 6.1.7601.2.1.0.768.3
    Locale ID: 3081
    Additional information 1: e165
    More information 2: e1652446e2a08661f301069e3d3002c2
    3 more information: b5d4
    Additional information 4: b5d41abf30ccf3a8321b59a4ced6abd8

    Ive done malware and virus checks come back clear and the registry clean and Defrag. Ive done an analysis of file system which makes the system corrupt files but unable to fix. Can anyone help, cheers, Jeff

    Can you please tell us which laptop model you have and what operating system are you using?

  • Implement the Std::Vector < < Point2i > > Std::Vector in dll wrapper for LabVIEW

    Hi, I'm writing a wrapper dll that using OpenCV function. I had been sucessfully implement Std::Vector by referring to "An array of clusters to a dll C sending".

    And now, I want to implement the Std::Vector<>> who is a lot like table 2D but each line items may be different.

    In LabVIEW, I attribute a range of cluster of the dashboard cluster of 2 I32 elements, structure which is shown below:

    I think it has the same functionality as Std::Vector<>> in C++.

    So I plug this data on the "Call library function node" structure and generate C code that indicated below:

    /* Call Library source file */
    
    #include "extcode.h"
    
    /* lv_prolog.h and lv_epilog.h set up the correct alignment for LabVIEW data. */
    #include "lv_prolog.h"
    
    /* Typedefs */
    
    typedef struct {
        int32_t elt1;
        int32_t elt2;
        } TD4;
    
    typedef struct {
        int32_t dimSize;
        TD4 elt[1];
        } TD3;
    typedef TD3 **TD3Hdl;
    
    typedef struct {
        TD3Hdl elt1;
        } TD2;
    
    typedef struct {
        int32_t dimSize;
        TD2 elt[1];
        } TD1;
    typedef TD1 **TD1Hdl;
    
    #include "lv_epilog.h"
    
    void funcName(TD1Hdl arg1);
    
    void funcName(TD1Hdl arg1)
    {
    
        /* Insert code here */
    
    }
    

    Then, I write this code show below in dll wrapper:

    void funcName(TD1Hdl Blobs)
    {
        vector < vector > blobs;
    
        // Distribute contents of blobs to Blobs from LabVIEW
        MgErr err = mgNoErr;
        size_t arraySizeInBytes = Offset(TD1, elt1) + sizeof(TD2)*blobs.size();     // Determine row size
        err = DSSetHSzClr(Blobs, arraySizeInBytes);
    
        if (err != mgNoErr)
            return;
    
        (*Blobs)->dimSize = blobs.size();
    
        for (size_t i = 0; i < blobs.size(); i++) {
            arraySizeInBytes = Offset(TD3, elt) + sizeof(TD4)*blobs[i].size();  // Determine col size of each row
            err = DSSetHSzClr((*Blobs)->elt[i].elt1, arraySizeInBytes);
    
            if (err != mgNoErr)
                return;
    
                    /*......................*/
            }
    }
    

    When I call LabVIEW dll, the program get interuption(i.e shutdown) on line where I want to determine the size of each row.

    Could someone give me some suggestions on this subject or promote another application of this requirement?
    Thank you very much.

    MgErr funcName(TD1Hdl Blobs)
    {
        vector < vector > blobs;
    
            Labeling(image_binary, blobs);         // the prototype of this function is: Labeling(Mat &binary, Vector> &blobs)
    
        // Distribute contents of blobs to Blobs from LabVIEW
        MgErr err = mgNoErr;
        size_t arraySizeInBytes = Offset(TD1, elt) + sizeof(TD2)*blobs.size();      // Determine row size
    
            if (contours == NULL)        {                Blobs = (TD1Hdl)DSNewHClr(arraySizeInBytes);                if (Blobs == NULL)                         err = mFullErr;        }        else                err = DSSetHSzClr(Blobs, arraySizeInBytes);
            if (err != mgNoErr)                return err;    for (size_t i = 0; err == mgNoEerr && i < blobs.size(); i++) {
            arraySizeInBytes = Offset(TD3, elt) + sizeof(TD4)*blobs[i].size();  // Determine col size of each row
    
                    if ((*Blobs)->elt[i].elt1 == NULL)                {                        (*Blobs)->elt[i].elt1 = (TD3Hdl)DSNewHClr(arraySizeInBytes);                        if ((*Blobs)->elt[i].elt1 == NULL)                                    err = mFullErr;                }                else               err = DSSetHSzClr((*Blobs)->elt[i].elt1, arraySizeInBytes);
                    if (err == mgNoErr)                {                        (*((*Blobs)->elt[i].elt1))->dimSize = blobs[i].size();
    
                            /*......................*/
    
                    }
            }
            (*Blobs)->dimSize = i;        return err;}
    

    Personaally I've usually done like this. Already, the tar of DSSetHSzClr() indicates if there was something wrong and that the handle cannot really become NULL to call this function.

    To be entirely correct and safety integrated, you must do more than that. But as long as you assume that the incoming picture is always smaller that the outgoing Board will be (usually it be 0 items when you enter this function, but if you reuse sort table in the diagram, by storing it in a registry change for example, this may not be true more) this will be enough.

  • I get an error, "the executable file that this service is configured to run does not implement the service" when I try to synchronize the time in Windows XP.

    After trying to fix the error of time synchronization by typing net start w32time that receipt of the message in the title.  In addition, type net stop w32time responded that the service was not working.

    Original title: the executable that this service is configured to run does not implement the service

    After checking the configuration in the registry and check or update if necessary from the link below:

    Then the time errors that I got from the command prompt window:
    Order--> net stop w32time & net start w32time
    Response--> The Windows Time service is not started.

    Order--> net start w32time
    Response--> system error 1083.
    The executable program that this service is configured to run in does not implement the service.

    --> Command w32tm/Resync /rediscover
    Response--> sending command to local computer resync...
    The following error occurred: the RPC server is unavailbale. (0x800706BA)

    Hi Mitchell_G,

    Thank you for keeping us posted.

    The steps of items offered in the previous post?

    We know if you need help. We will be happy to help you.

    Thank you.

  • I'm not having implemented the cd with me. How can I update the window components. by mistake I uninstalled the

    I'm not having implemented the cd with me. How can I update the window components. by mistake I uninstalled the

    Reinstall windows components, you've accidentally deleted when you have the game CD with you.

  • ((1) spool working.2 printing service) Data not closed execution prevention - Spooler Subsystem App 3) implemented the pilot installation error

    Coil service does not print. Data Execution Prevention - to help protect your computer, windows has closed this program - Spooler Subsystem App - someone on the internet recommended to enter advanced system settings and by setting an exception on the spooler subsystem app - doesn't work always no - UN installed & reinstalled the driver printer Samsung ML-3050 a million times - get an error message - implement the program has encountered an error in the installation ML3050 - icons do not appear in the printers and Faxes folder. HELP, HELP, I'm GOING CRAZYemember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    More happy salvation,

    1. were you able to use the printer before without any problem?

    2. when the problem started?

    3. you remember to make changes to the computer before this problem?

    You can check out the following link and try the steps suggested by Robinson Zhang Microsoft, Moderator Monday, July 28, 2008 07:15 and check if it helps.

    http://social.technet.Microsoft.com/forums/en-us/itprovistaprinting/thread/bd60598a-F3B6-4858-8887-e98e7da4a04a/

    Hope this information is useful.

    Jeremy K
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Implement the application has stopped working. A problem caused the blocking of the program works correctly. Windows will close the program and notify you if a solution is available. »

    Try to install a CD "the Start-Stop software installation", but whenever I try, I get the following. Implement the application has stopped working. A problem caused the blocking of the program works correctly. Windows will close t he program and notify you if a solution is available. I sent the company and the school several times and have not yet received a response, maybe someone out there could help. Thank you!

    Ok.

    See if they have a patch for it.

    If this isn't the case, you may need to shopping for a similar program.

    Or repost in the Forum of programs on the link I gave you; they can learn more on this subject here.

    See you soon. Mick Murphy - Microsoft partner

  • How to implement the ScreenUiEngineAttachedListener Interface?

    How to implement the ScreenUiEngineAttachedListener Interface? It is somewhat a mystery reading through the API.

    I have a class that implements ScreenUiEngineAttachedListener:

    public class UiListener implements ScreenUiEngineAttachedListener {
      public void onScreenUiEngineAttached(Screen screen, boolean attached) {
      }
    }
    

    Then I have a class MyScreen which extends from screen and has two methods:

    public void addScreenUiEngineAttachedListener(ScreenUiEngineAttachedListener listener) {
      super.addScreenUiEngineAttachedListener(listener);
    }
    
    private void removeScreenUiEngineAttachedListener() {
    
    }
    
    • What is the correct positioning of everything?
    • Can I define an instance of UiListener and pass in the addScreenUiEngineAttachedListener?
    • How to remove UiListener in removeScreenUiEngineAttachedListener?

    You will need:

    • an instance of your UiListener - probably a static member inside your UiApplication;
    • a method that allows to retrieve the reference to this instance of UiListener;
    • a call in your constructor for the screen at addScreenUiEngineAttachedListener (yourApplication.getUiListener ()) or similar;
    • potentially a call within your onScreenUiEngineAttached (attached screen, boolean) routine, the branch (attachment is false) : screen.removeScreenUiEngineAttachedListener (this);

    However, all this is too much work for no gain. Just override protected void onUiEngineAttached (boolean attached) in your screen class and make your logic there - all members of your class are accessible and all the code is placed where it belongs.

  • How to implement the class Singleton cascading C++

    I tried to use the standard C++ to implement the Singleton class. It can be compiled well, there's always a mistake to link "Description Resource path location Type cannot declare the member function ' static globalsettings * globalsettings::instance() ' static linking [-fpermissive] problem of C/C++.

    Can anyone have a look of my source code to know what is the problem of it? Thank you.

    /*
     * globalsettings.h
     */
    
    #ifndef GLOBALSETTINGS_H_#define GLOBALSETTINGS_H_
    
    class Globalsettings {public:    Globalsettings();    virtual ~Globalsettings();
    
        int get_value();    void set_value(int v);
    
        static Globalsettings &instance();
    
    private:    int m_value;
    
        static Globalsettings *s_instance;};
    
    #endif
    

    Wrong with the CPP:

    /*
     * globalsettings.cpp
     *
     */
    
    #include "globalsettings.h"
    
    Globalsettings*  Globalsettings::s_instance = 0;
    
    Globalsettings::Globalsettings() {
        s_instance = 0;
        m_value = 0;
    }
    
    Globalsettings::~Globalsettings() {
        s_instance = 0;
    }
    
    static Globalsettings& Globalsettings::instance() {
        if (!s_instance)
          s_instance = new Globalsettings();
        return *s_instance;
    }
    
    int Globalsettings::get_value()
    {
        return m_value;
    }
    void Globalsettings::set_value(int v)
    {
        m_value = v;
    }
    

    CPP revised (it works)

    /*
     * globalsettings.cpp
     *
     */
    
    #include "globalsettings.h"
    
    Globalsettings*  Globalsettings::s_instance = 0;
    
    Globalsettings::Globalsettings() {
        s_instance = 0;
        m_value = 0;
    }
    
    Globalsettings::~Globalsettings() {
        s_instance = 0;
    }
    
    Globalsettings& Globalsettings::instance() {
        if (!s_instance)
          s_instance = new Globalsettings();
        return *s_instance;
    }
    
    int Globalsettings::get_value()
    {
        return m_value;
    }
    void Globalsettings::set_value(int v)
    {
        m_value = v;
    }
    

    UPD:

    1)

    static globalsettings *s_instance;
    

    This should be in the private section.

    2)

    static globalsettings *instance();
    

    This should be public, so the user can call.

    3)

    Delete 'static' keyword to the .cpp file.

    Even easier approach with late initialization:

    all in 1):

    static MyClass *sharedInstance();
    

    (2) in the .cpp:

    MyClass *MyClass::sharedInstance()
    {
      static MyClass instance;
      return &instance;
    }
    
  • How to implement the copyright symbol?

    Hello

    Is it possible to implement the copyright by using J2ME? Thank you very much!

    If you want to display the copyright symbol, you can incorporate it into a string using the Unicode escape sequence '... \u00a9...» ». What is displayed on the screen depends on the police, of course, but I imagine that it will be widely supported.

  • Must my webworks games implement the Scoreloop for approval or just to get into the construction of BB program?

    Must my webworks (for BB10) games to implement the Scoreloop for approval or just to get into the construction of BB program?

    Originally using Scoreloop was a requirement for the criterion of integration of services with the games, but this requirement has apparently been removed, as mentioned in one of the webcast that we expect them to post here sometime soon: https://developer.blackberry.com/builtforblackberry/documentation/videos/index.html

    Note that this page still says Scoreloop is required: https://developer.blackberry.com/builtforblackberry/documentation/criteria/games.html

    This page, however, has been changed so it is no longer required: https://developer.blackberry.com/builtforblackberry/documentation/criteria/checklist.html

  • Options of alias for POV while implementing the data audit trails

    Hi all

    I have a request to implement the option Alias for the account dimension, which gets exported to the HSP_AUDIT_RECORDS table when the Audit trail for data is enabled.

    In the column of ID2, user want to see Alias name of the Member account.

    Do we not have this feature?

    Kind regards

    NGO

    Audit records will still be stored with the name of the Member, not alias, to do this, you will need to do a post on the table processing and replace the names of the members with the alias, I don't know any other way to get.

  • Need to implement the alternative login if Kerberos authentication fails.

    Need to implement the alternative login if Kerberos authentication fails.

    In our case, we are sure that Kerberos will fail because we allow agencies 'B' to access this application of reliable source.

    Kerberos fails and the application should display the name of user and password page and then authenticate.

    In the web.xml file changed auth method basic with Kerberos, set up successfully.

    'A' agency users can make successful Kerberos SSO. But when an agency "B" SSO access will fail with 401 and the application appears pop base with the name of user and password fields.

    When the user provides the details and present application returns 401 again. not able to go beyond these steps.

    Please provide your inputs.

    can you please enable security ATN debug and share the newspapers?

    Who will be telll us why the authentication will fail.

    Replace the CLIENT-CERT, BASIC authentication method in the web.xml and try.

    What is the default authenticator control indicator? I think that its just / optional.

    -Faisal

Maybe you are looking for

  • How to add pdf pages / files in preview?

    When I export or save, a document in the application preview, PDF pages or the added files are not saved. I open two PDFs and moves a page as a thumbnail from one to the other. Export the PDF file with the addes in pdf pages. The page is not here aft

  • Camera Widget?

    Previous phones Z had a camera Widget I could add to the home screen where I could add up to 4 shortcuts for modes of different camera (4K, timeshift etc...) Is this camera Widget not available on the premium of the Z5? It takes forever to get to the

  • Generic adapter Bluetooth doesn't work is no Presenter Mouse 8000

    I had this Microsoft Windows Wireless Presenter Mouse 8000 for several years and have enjoyed the work and general use. However, lately, I've had problems connecting with the mouse does not stay connected properly and it stops working. I moved the va

  • Problem with sparkle in the computer.

    I use windows 8 pro. But I did not change my display screen brightness. Now that I have?

  • Room for a gtx 550 ti

    My p9310y would have a room for a gtx 550ti?