How to migrate dimension member text files from ODI to Hyperion Planning

Hi
We are having an issue with ODI that it was not connecting to planning.
Later with some instructions from oracle, we have tried to set some RMI path in websphere and we tested the RMI connectivity test.
It was successfully connecting to planning.
Then we want to test that ODI is connecting to planning or not.
For this I think if anyone can send the doc relating to dimension member upload thru ODI to hyperion planning using text files, it will be helpful.
Appreciate if anyone can help us on this.
Please communicate to [email protected] for doc sending.
Thanks
Rajesh Reddy

Go through His(John's) earlier blogs which very clearly explains how to get connected & keep the ball rolling.
If you're so scared to use the existing connections, you may want to-
i) Set up new Master & work repository;
ii) Do few quick configurations from Topology Manager;
iii) Create your project, models, Interface;
Let us know if something isn't still clear.
- Natesh

Similar Messages

  • Loading Metadata from ODI to Hyperion Planning Custom Dimension

    Customer want to load a metadata from ODI to Hyperion planning customer dimension using flat files(.txt files).
    Is it possible to load the metadata into custom dimension? If this is possible, do we need any other KM for planning except RKM Hyperion Planning?
    Because when i try to map the dimension from source to taget the connection is blanck. Getting "Used by target columns none".
    Please refer the image
    http://1.bp.blogspot.com/_Z0lKn46L41I/TJuZcsQxIjI/AAAAAAAAA90/TTv79fbQ9ks/s1600/ODIIssue.JPG
    Thanks
    Vikram

    Yes you can load to custom dimensions just like the other dimensions, the custom dimensions should be reversed into the model.
    You need to use the IKM SQL to Hyperion Planning, make sure you set the staging area different than the target.
    If you want to see how to load metadata to planning, have a read of :- http://john-goodwin.blogspot.com/2008/10/odi-series-part-5-sql-to-planning.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How do I get a text file from Photoshop  to work in the main sequence in pp?

    How do I get a text file to work properly in the master sequence. I moved it from Photoshop, which I learned to do from a tutorial, but when I move the animated text sequence to the master, it either isnt running, or it is scaled way too big. How do I get it to run in the main sequence?

    "Wont Work Here" !  Does not mean much.
    Are you having an audio or a video issue? 
    Looks like no video clip on the video layer above that section of audio.
    I am teaching myself this stuff completely on the fly
    I suggest you do the Basic Tutorials ( Adobe TV for example) in both Premiere Pro and PhotoShop.
    You need to be competent in the basics and fundamentals of these apps and that will also help you describe and discuss the issues.   Check the 'Products on this site....
    Adobe TV

  • How do I create multiple text files from a list in another file?

    I have a text file with data in it:
    1. Bristol
    2. Bath
    3. Exeter
    etc
    I want to run an action which outputs the following files:
    1.txt (contents: 1 Bristol)
    2.txt (contents: 2.Bath)
    3.txt (contents: 3.Exeter)
    I can't work ou how to do this, any help appreciated. Thanks
    Dave

    Hi mate, thanks for the suggestion.  I saw that section in the user guide - but it is only for copying from one library to another - I want to copy from an FCP library to a file structure OUTSIDE FCP.  I have had problems with FCP losing media when copying to another library so I just want the files in the Finder where I can see them...
    Stephen

  • How do I send a text file from one device to another?

    Hi,
    I'm working on an Android Air app made in CS5.5 where user data is saved in the app's applicationStorageDirectory as a text file.
    Is there a way to send this saved text file to another device's applicationStorageDirectory via Bluetooth/email/text e.g?
    The idea is that the app "game" is saved on each person's device. When the game is over, I want the users to be able to compare their results. (I'll write some code to compute who the winner is via comparing the two results)
    Any help is greatly appreciated. Some code sample would be terriffic.
    Thanks,
    J.D.

    You're in native extension territory. Access to things like bluetooth are well beyond the scope of the AIR framework. You'd need to write a native extension, which is code that taps into the native functionality of the device to expand flash's abilities, to use something like bluetooth.
    For you to share locally it most likely may need you to use push notifications, which are perfectly possible, even on wifi.

  • Extract dimension member in 11.1.2.0 hyperion planning

    Hi there,
    Can you please help me on this.
    We are using |Hyperion planning 11.1.2.0.0.
    I need to extract my all entity dimensions members which has attributes attached with them.
    There i no extraction tool in this version.
    Is it possible to use mdx query ? if yes can you please help me with some hints.
    Thanks

    Have a read of http://camerons-blog-for-essbase-hackers.blogspot.co.uk/2012/04/stupid-planning-queries-9-entity_3054.html
    Alternatively you could have a look at using the essbase outline extractor.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to migrate an C make file from Window to Solaris?

    Hello,
    I have the following code that are used to compile the uvapi.so file in Windows. Now, I need to migrate this make file to Solaris.
    How to do this?
    Many thanks,
    George
    [email protected]
    #Make file
    #Version: Windwos
    CFLAGS=/DWIN32=1
    tstuvapi.exe: tstuvapi.obj uvapi.lib
         cl -o tstuvapi.exe tstuvapi.obj uvapi.lib
    uvapi.lib: swuvamod.obj uvapienc.obj
         link /NODEFAULTLIB:libcmt.lib nsldap32v50.lib /DLL /DEF:swuvamod.def /OUT:uvapi.dll swuvamod.obj uvapienc.obj
    swuvamod.obj: swuvamod.c
         cl -c $(CFLAGS) swuvamod.c
    tstuvapi.obj: tstuvapi.c
         cl -c $(CFLAGS) tstuvapi.c

    Do a "man make" to get an idea of makefiles. Also you can
    check out: http://docs.sun.com/db?q=-Kpic+-G&p=doc%2F817-3677
    on the Linker Manual. Below is an example of a makefile.
    % cat Makefile
    CC=cc
    #CFLAGS=/DWIN32=1
    # Link libraries to libuvapib.so
    #LIBS=-luvapil
    tstuvapi.exe: tstuvapi.o libuvapi
    $(CC) -o tstuvapi.exe tstuvapi.o -luvapi
    libuvapib.so: swuvamod.o uvapienc.o
    $(CC) cc -o libuvapib.so -G -Kpic swuvamod.o uvapienc.o
    swuvamod.o: swuvamod.c
    $(CC) -G -Kpic -c $(CFLAGS) swuvamod.c
    uvapienc.o: uvapienc.c
    $(CC) -G -Kpic -c $(CFLAGS) uvapienc.c
    tstuvapi.o: tstuvapi.c
    $(CC) -c $(CFLAGS) tstuvapi.c

  • How do I move text files from my desktop to my iPod Touch?

    How do I transfer (export) text files from my Mac (word processor files) to the Notes app on my iPod?

    WesternGuy wrote:
    I am going to assume that I can move individual profiles, or even delete profiles that I no longer need.
    Just be aware that if you delete or don't move profiles that are currently assigned to images LR will (without warning) reassign those images with the Adobe Standard profile.
    You can use AnyFilter, Data Explorer, or DevMeta plugins to determine if any images are assigned to a profile you want to delete. You can then reassign the profile of your choice. Once that's completed you can safely delete the camera profile.

  • How to read a text file from a Jar file

    Hi
    How can I read a text file from a Jar file?
    Thanx in advance..

    thanx
    helloWorld it works.damn, I didn't remove it fast enough. Even if it is urgent, it is best not to mention it, telling people just makes them take longer.

  • Sending EMail "Text-File" from Application Server!

    Hi Experts,
    how can I sending a Text-File from Application Server via Email?
    Is there existing a Function Modul?
    With Kind regards
    Ersin
    Moderator message: sending emails = FAQ, please search before posting.
    Edited by: Thomas Zloch on Nov 25, 2010 4:23 PM

    STF (Search the forum)!  This type of question has been asked...and answered....many times.

  • Read a text file from DB directly (don't use PLSQL).

    how can I Read a text file from DB directly (don’t use PLSQL). ?

    If there is a known structure, you could use External Table access and query that "file" as any table.
    Nicolas.

  • How to upload a text file from a shared folder and provide an o/p

    how to upload a text file from a shared folder and provide an o/p  containing the details in each order in the text file

    Hi,
    Use <b>GUI_UPLOAD</b> to upload a text file from a shared folder.
    Use <b>GUI_DOWNLOAD</b> to download data in a file on the presentation server or use <b>OPEN DATASET, TRANSFER</b> and <b>CLOSE DATASET</b> statements to download data to the application server.
    Now, I hope the code for data fetching, if required, is already present in the report.
    Reward points if the answer is helpful.
    Regards,
    Mukul

  • How can I prevent a PDF file from being copied, printed or downloaded? Students should only be able to view the text and and not distribute it in any way.

    How can I prevent a PDF file from being copied, printed or downloaded? Students should only be able to view the text and and not distribute it in any way.

    You can prevent it from being printed by applying a security policy to it
    in Acrobat. The rest can't be prevented, unless you spend  a LOT of money
    on DRM protection.

  • How to download a text file from the server

    hi everyone,
    can anyone tell me how to download and read a text file from the server and saved in into resource folder.
    with regards
    pallavi

    its really easy
    To read from server, use something like:
    HttpConnection connector = null;
    InputStream inp_stream = null;
    OutputStream out_stream = null;
    void CloseConnection()
         if(inp_stream!=null)inp_stream.close();
         inp_stream=null;
         if(out_stream!=null)out_stream.close();
         out_stream=null;
         connector.close();
         connector = null;
    public void getResponse(String URL,String params)
      try
         if(connector==null)connector = (HttpConnection)Connector.open(URL);//URL of your text file / php script
         connector.setRequestMethod(HttpConnection.POST);
         connector.setRequestProperty("User-Agent","Profile/MIDP-2.0 Configuration/CLDC-1.1");
         connector.setRequestProperty("content-type", "application/x-www-form-urlencoded");
         //connector.setRequestProperty("charset","windows-1251");
         //*** If you need to send ("arg1=value&arg2=value") arguments to script use this:
         out_stream = connector.openOutputStream();
         byte postmsg[] = params.getBytes();
         out_stream.write(postmsg);
         int rc = connector.getResponseCode();//in any case here connection will be opened & closed
         if (rc != HttpConnection.HTTP_OK)
              CloseConnection();
              throw new IOException("HTTP response code: " + rc);
         inp_stream = connector.openInputStream();
         int pack_len = inp_stream.available();
         byte answ[]=new byte[pack_len];
         inp_stream.read(answ);
         CloseConnection();
         ProcAnswer(answ);//process received data
      catch(Exception ex)
         System.err.println("ERROR IN getResponse(): "+ex);
    } And you can read from resource file like
    public void loadFile(String filename)
        DataInputStream dis = new DataInputStream(getClass().getResourceAsStream("/"+filename));
        String str="";
        try
             while (true)
                ch = dis.read();//read character
                if(ch=='\r')continue;//if file made in windows
                if(ch=='\n' || ch==-1)//end of line or end of file
                    if(str.length()==0)continue;//if empty line
                    //do some thing with "str"
                    if(ch==-1)break;//it was last line
                    str="";//next line
                    continue;
                 str+=(char)ch;
           dis.close();
       catch (Exception e)
           System.err.println("ERROR in loadFile() " + e);
    }Welcome! =)
    Edited by: MorskoyZmey on Aug 14, 2008 3:40 AM

  • I use migrate assistant to move files from my old pc to the new Mac , but it creates the user account. How can i delete the unwanted user account.

    i use migrate assistant to move files from my old pc to the new Mac , but it creates the user account. How can i delete the unwanted user account.

    Welcome to Apple Support Communities
    That's the classic behaviour after using Migration Assistant and that's normal.
    To transfer the data from the new user account to your old user account, you can follow some steps. Here is all the information you need to do this > https://discussions.apple.com/docs/DOC-5472

Maybe you are looking for

  • Can JMS Message be filtered dynamically based on the JMS Header variable

    Hi All, We have a requirement to filter messages from an MQ (Queue) using the JMS Adapter. There is only one subscriber to this Queue. Can we use the Message Selector option using the same subscriber to pick different messages based on the context se

  • IAS 6 Conversion from NAS 4.0 - Tools

    Hi gang, Has anyone used the IAS-supplied conversion utilities to convert JSPs from 0.92 to 1.1? We have a number of included/imported JSP for things like headers and footers, and the conversion tool doesn't seem to like that. This should work; this

  • CS6 can't find download - followed steps

    Hi there, I purchased CS6 Standard for students and teachers.  Followed the steps to find and download - but there was no link to download CS6.  Sorry I then noticed that where I follwed the steps it has this showed up " Electronic Download(s) / Subs

  • Can't get my page to publish

    I keep publishing my content just as I'm told to, but it won't show up on the page. I just get the default page with a number of folders. Any ideas on what's wrong? FYI, I use host gator

  • Syncing photos from iphoto on imac to iphone 4

    I have a new iphone 4 32GB. A lot of my photos in iphoto are in RAW format. The size is 3.9 GB. Can I sync these with my iphone or is it better to change them to jpeg images first (which would be a lot of work). Do I have 32GB of space in this iphone