Creating members shared in EPMA using flat files

Hi guys,.

I worked with flat files and shared members in v 9.3 with no problems.

However when I try to load shared v EPMA 11.1.2 members it does not work. In the xls file, I simply create the second rank for the shared member with storage of data as 'ShareData' and delete all other properties.

But when I load the flat file in EPMA it gives me the "Member section contains an entry duplicated for Member...". »

Is there something new to get closer to the shared members in v11? Am I missing something?

See you soon,.
Omar

'IsPrimary' option will be not visible in the screen import mapping Dimension to the import profile creation. I think it's normal.

Can type you a complete error you get from the 'Import of the results' work Console a link please.

Tags: Business Intelligence

Similar Questions

  • Create scripts to populate tables from flat files

    Hello

    How can I create scripts to complete the flat files using pl/sql tables.

    Kindly help me.

    Kind regards

    Prasad K T,.

    9840021070

    Hi PrasadKT,

    As Tsharma pointed out just save the .xls (or xlsx) file in the .csv file.

    Please see steps that I show below...

    My XLS file looks like this... (I wish I could paste pictures here :-()

    1 AAA JJJ QQQ 23.2
    2 BBB ASDA QQQ 12.111
    3 CCBC ERTE WER 10
    4 FFFFFFF ASDA GODSWILL 0
    5 YY DDD SNOW DEPOSITS 12

    Once saved as CSV (separator: semicolon) (*.csv) the contents of the file in Notepad looks like this...

    1, AAA, DDD, QQQ, 23.2

    2, BBB, ASDA, QQQ, 12.111

    3, FCCC, ERTE, wer, 10

    4, FFFFFFF, ASDA, GODSWILL, 0

    5, YY, DDD, MALDINI, 12

    Create a directory in Oracle... (This must be SYSDBA user)

    > create or replace directory xtern_data_dir as 'C:\TEMP '.

    Created XTERN_DATA_DIR directory.

    > grant read, write on directory xtern_data_dir to HR

    Grant succeeded.

    Log in HR (or normal user) and create an external table... If you are running on ODCIEXTTABLEOPEN error, please make sure that the user of the OS which launched the Oracle process has READ/write permission on the directory of the OS

    > left autotrace

    People with disabilities autotrace

    > drop table xtern_table

    table deleted XTERN_TABLE.

    Elapsed time: 00:00:00.052

    > create table xtern_table

    (varchar2 (10) c1,)

    C2 varchar2 (10),

    C3 varchar2 (10),

    C4 varchar2 (5).

    C5 varchar2 (10)

    )

    external organization

    (type ORACLE_LOADER default directory xtern_data_dir

    access settings

    (fields ended by ',')

    MISSING FIELD VALUES ARE NULL

    REJECT ROWS WITH ALL FIELDS are NULL (c1, c2, c3, c4, c5)

    )

    location ("mycsv.csv")

    )

    table created XTERN_TABLE.

    Elapsed time: 00:00:00.013

    > proprietary format of col A10

    > col format a20 directory_name

    > select master, SYS.all_directories directory_name

    OWNER NOM_REPERTOIRE

    ---------- ----------------------------------------

    SYS EXT_INPUT

    SYS XTERN_DATA_DIR

    Elapsed time: 00:00:00.014

    > select * from xtern_table

    C1 C2 C3 C4 C5

    ---------- ---------- ---------- ----- ----------

    1 DDD AAA QQQ 23.2

    2 BBB ASDA QQQ 12.111

    CCBC ERTE wer 10 3

    FFFFFFF ASDA GODSWILL 4 0

    5 AA JJJ SDFS 12

    Elapsed time: 00:00:34.419

    I hope this helps.

    VR

    Sudhakar

  • Create the virtual machine by using the file PowerCLI and csv

    I know there is a lot of info out there on this and I think I have a working script prety good.  Much was borrowed from this thread, http://communities.vmware.com/thread/315193 many thanks to LucD.

    My code is as follows:

    # Deploy virtual machines from CSV file
    # Much borrowed from http://communities.VMware.com/thread/315193?start=15 & tstart = 0


    # CSV import file
    Import-Csv "C:\guests.csv" - UseCulture | %{
    # Gets the customization information to configure the static NETWORK card and assign the static IP address
    Get-OSCustomizationSpec $_. Customization | Get-OSCustomizationNicMapping | `
    Game-OSCustomizationNicMapping - UseStaticIP - IpAddress IpMode $_. ""IP address""
    -Subnet mask $_. Subnet - DefaultGateway $_. Gateway - Dns $_. DNS
    $vm = New-VM-Name $_. "" Server name "-model $_. Model-host $_. ' "The ESX host" '
    -Datastore $_. Data store - OSCustomizationSpec $_. Customization"
    -Confirm: $false - RunAsync
    ## .......
    }

    He's going to cross and clone the virtual machine, and looks like he's running of the OSCustomizaitonSpec then it bombards.  It cleans bad VM.  Recent tasks shows "failed virtual machine clone that a specified parapeter was not correct." hostname ".

    The problem is that I don't mean to set a hostname with the OSCustomixationSpec, I try only to IP address info.

    I'm runningn PowerCLI 5.0.1 build 581491

    My ESXi host is 5.0.0 build 914586

    My vCenter Server is Ver 5.0.0 build 623373

    I opened a new thread, because the age of the old thread.  Not sure if this is the best way to do things.

    A very simple and intuitive brake system :-)

    ## Deploy VMs from CSV File
    ## Much borrowed from http://communities.vmware.com/thread/315193?start=15&tstart=0  
    
    $maxJobs = 3 $currentJobs = 0
    ## Imports CSV file
    Import-Csv "C:\temp\TestDeploy1" -UseCulture | %{
    ## Gets Customization info to set NIC to Static and assign static IP address
        Get-OSCustomizationSpec $_.Customization | Get-OSCustomizationNicMapping | ` ## Sets the Static IP info
        Set-OSCustomizationNicMapping -IpMode UseStaticIP -IpAddress $_."IP Address" `        -SubnetMask $_.Subnet -DefaultGateway $_.Gateway -Dns $_.DNS## Sets the name of the VMs OS
        $cust = Get-OSCustomizationSpec -Name Test    Set-OSCustomizationSpec -OSCustomizationSpec $cust -NamingScheme Fixed -NamingPrefix $_.VMName## Creates the New VM from the template
        $vm=New-VM -Name $_."Server Name" -Template $_.Template -Host $_."Esx Host" `        -Datastore $_.Datastore -OSCustomizationSpec $_.Customization `        -Confirm:$false -RunAsync
    
        $currentJobs = Get-Job -State Running | Measure-Object | Select -ExpandProperty Count    while($currentJobs -ge $maxJobs){
          sleep 30      $currentJobs = Get-Job -State Running | Measure-Object | Select -ExpandProperty Count    }
    ## .......
    }
    

    You can be more selective about the current jobs. For example, you can check if the name of the job shows that they are actually cloning jobs.

  • SmartList and flat file

    Hello

    Is it possible to download Smart List using flat files? I only managed to download members. But the label column had not been downloaded.

    Yes it is possible with the contour fill utility, more details and examples available at-http://download.oracle.com/docs/cd/E17236_01/epm.1112/hp_admin/ch05s02s03.html

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Creating RULES file to load members shared in usual hierarchical aggregation

    Hello
    I posted this yesterday (description about sorry, somewhat different). I am creating a hierarchy of alternative containing shared by using a load rule members and the flat file into a hierarchy of global storage. One response has been to remove the option 'allow the movement' and use parent child construction in the State of charge. I tried and it doesn't work. I showed me a section of the essbase guide (which is about as clear as mud) and still cannot get this to work. First of all – can you do this with a contour of ASO? If so, how? I tried a simple flat file 6 line and recreated the rule of load based on the above recommendations and it will not be shared members. There, can anyone help?
    Thank you

    user3055639 wrote:
    It will not allow dynamic, he comes back with the error message
    "000dd: the primary hierarchy must be marked as Stored.

    Which is basically saying the first hierarchy should be stored for example

    Multiple hierarchies enabled departments
    Stored FirstHier
    dynamic 000dd

    or try

    Dynamics of the departments
    Data store of 000dd

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Essbase do not move members but creates rather shared members

    Suddenly, this problem appeared for the November statement. I've never met before.

    Updated structures from flat files using rule Essbase files do not move members to their new parents but creates rather shared members.
    Previously, Essbase moved members.

    In the rules file, we have the 'Allow moves' disabled option because some shared members need to be created. If we choose this no shared members are created since Essbase moves key members at the locations of where the shared members are supposed to be.

    Any help would be appreciated.

    That's why you need two sources of metadata:
    (1) only members. Linking to a modified charge rule allowing movements.
    (2) only members with their shared summaries. Use the same rule of ancient office which does not allow for movements and thus pushing them towards a shared hierarchy.

    I still wonder how it still worked. Something changed - what is it?

    Kind regards

    Cameron Lackpour

  • Export data in a flat file without use of FL

    Hello

    I'm looking for options where I can export data into a flat file without using a FL (line Layout) i.e., using only the App Engine.

    Please share your experience if you did something like this

    Thank you

    A simple way to export any folder (table/view) to a csv gall, is to create a set of lines and loops through all fields of record like below example code

    Local Rowset &RS;
    Local Record &Rec;
    Local File &MYFILE;
    Local string &FileName, &strRecName, &Line, &Seperator, &Value;
    Local number &numRow, &numField;
    
    &FileName = "c:\temp\test.csv";
    &strRecName = "PSOPRDEFN";
    &Seperator = ";";
    
    &RS = CreateRowset(@("Record." | &strRecName));
    &RS.Fill();
    
    &MYFILE = GetFile(&FileName, "W", %FilePath_Absolute);
    
    If &MYFILE.IsOpen Then
    
       For &numRow = 1 To &RS.ActiveRowCount
          &Rec = &RS(&numRow).GetRecord(@("RECORD." | &strRecName));
    
          For &numField = 1 To &Rec.FieldCount
             &Value = String(&Rec.GetField(&numField).Value);
             If &numField = 1 Then
                &Line = &Value;
             Else
                &Line = &Line | &Seperator | &Value;
             End-If;
    
          End-For;
          &MYFILE.WriteLine(&Line);
       End-For;
    
    End-If;
    
    &MYFILE.Close(); 
    

    You can of course create an application for generic class call this piece of code.

    It will be useful.

    Note:
    Do not complain to me ;) on performance issues

  • Create a flat file reconciliation events - a matter of design

    Hello

    I am currently evaluating an existing implementation of IOM to rebuild using OIM 11 g and have questions about the ideal method to create events for the reconciliation of a flat file.

    The current implementation uses a web service call to process a flat file and creates reconciliation events. It runs every hour.

    Although this looks cool, but I thought there was no need to go as far.

    If IOM cannot consume the flat file directly, which means that if he needs massage data, I can always load the flat file data in an external table, write a pl/sql procedure to transform the data and put it into a global temporary table, and create events of reconciliation like that.

    What would be the ideal method to load data from a flat file in IOM?

    Thank you

    Khanh

    If it is a flat file, then watched GTC option? And why no staged between the two? IOM can read flat files very well either through GTC or write your own recon code.

    -Marie

  • Can I automate creating a cluster in LabView using the structure of data created in a generated automatically. CSV, C header or XML file?

    Can I automate creating a cluster in LabView using the data structure created in an auto generated. CSV, C header or XML file?  I am trying to take the data structure defined in one or more of these files listed and have LabView automatically create a cluster with structure types and the same data.  (Ideally, I would like to do it with a C header file only.)  Basically, I'm trying to avoid having to create the cluster by hand, as the number of cluster elements could be very large. I looked in EasyXML and contacted the rep for the add-on.  Unfortunately, this feature was not created yet.  Did anyone done something like this before? Thanks in advance for the help.


  • How to create a shared library of Qt and use it on App without a head?

    Hi all

    I'm experimenting with some waterfalls headless basic application development, and I just hit another problem of blocking.

    I want to create a Qt library with some shared code between the head and user interface elements.

    That's what I did:

    1. created a new application without head the wizard project
    2. created a new library shared by using the wizard project. Adds a simple C++ (Qt not) class
    3. Set up the two parts of the Headless App to use the shared library ("Library in the workspace project" option from the "Add library...) (' Assistant).   Everything compiles and works very well so far.
    4. Now, I want to use the shared library Qt. I choose 'Library of the Standard BlackBerry platform' and ' platform > Qt Core "from the «add library...» "Wizard. Now, I had this error on the shared library project: C:\dev\bbndk\host_10_2_0_15\win32\x86\usr\bin\ntoarm-ld: could not find lQtCore.

    How to create a shared library of Qt and use it on App without a head?

    In fact, I would also use other NDK libraries on library shared as lbbdata and libbbdevice.

    I expect that workers would deal with all the problems for me. As an improvement, I suggest you add the selection screen platform library of the Wizard "Add library...". «the wizard «Shared Library Project»

    There is a model of library project

    https://github.com/BlackBerry/Cascades-community-samples/tree/master/Cascades-library-template

    Unfortunately, the library create Assistant isn't really useful #t

    There is also a great series on using headless headless library and user interface:

    http://devBlog.BlackBerry.com/2014/02/a-flexible-architecture-for-enterprise-mobile-applications-par...

  • Attempt to create run time (dynamic) table and insert the data in this... The entrance is a flat file (txt file) which has the numbers and strings... I'm trying to convert them to a string and insert into the table. It is a matter of urgency for me please

    create or replace procedure Dynamic_Table AS

    iVal VARCHAR2 (32);

    iTemp varchar (200): = ";

    sql_stmt VARCHAR2 (200);

    l_file1 UTL_FILE. TYPE_DE_FICHIER;

    l_file utl_file.file_type;

    BEGIN

    l_file1: = UTL_FILE. FOPEN ('TEST', 'dinput.txt', 'R');

    EXECUTE IMMEDIATE ' CREATE TABLE baseline (Item_ID varchar2 (32))';

    Loop

    BEGIN

    UTL_FILE. GET_LINE (l_file1, iVal);

    EXECUTE IMMEDIATE ' insert into baseline values (: ival) "using ival;

    EXCEPTION

    WHEN No_Data_Found THEN EXIT;

    While some OTHER THEN dbms_output.put_line (SQLERRM); * /

    END;

    end loop;

    END;

    You are approaching this the wrong way.  Create an external table based on the file.  External tables are CSV, fixed width data in a queryable table.

    You will need to create an oracle directory to put the file in (MY_ORA_DIR) I leave it for you to do, and then perform the following...

    create table BASELINE)

    ITEM_ID varchar2 (32)

    )

    EXTERNAL ORGANIZATION

    (

    TYPE ORACLE_LOADER

    THE DEFAULT DIRECTORY MY_ORA_DIR

    ACCESS SETTINGS

    (

    RECORDS DELIMITED BY NEWLINE

    LOGFILE "dinput.log".

    BADFILE "dinput.bad."

    NODISCARDFILE

    FIELDS

    (

    ITEM_ID

    )

    )

    LOCATION ("dinput.txt")

    )

    REJECT LIMIT UNLIMITED

    /

    All the dubious records appear in dinput.bad. Dinput.log will give you information.

    External tables are read-only, so once you set up your file, you can create editable as a normal table.

    create table ITABLE_EDITABLE as

    Select * from BASELINE

    /

    Work done, a few lines of code.

  • Hello, if I update to creative cloud other members of my team on CS5 will be able to access and use my files until I save as IDML?

    Hello, if I update to creative cloud other members of my team on CS5 will be able to access and use my files until I save as IDML?

    They will be able to open your files, but is not a long-term viable work flow.

    Features specific to newer versions will be lost or flattened when they open files, reflow of text is possible and even probable in both senses.

    A durable workflow requires that you all on the same version.

  • I created a website with Muse using a slide show widget a little over a year.  I gave up Muse bur have recently re-enroll as a single Train to examine the use of Muse. The file for the my site is no longer on my computer or lea

    I created a website with Muse using a slide show widget a little over a year.  I gave up Muse bur have recently re-enroll as a single Train to examine the use of Muse. The file for the my site is no longer on my computer or at least I find and I want to make changes.  Is there a way to download the Internet Web site and bring Muse to make changes or I have to start all over again.

    Hello

    to copy entire websites is an arduous task in my eyes. Your sounds to me that you have access to your old site. If you could perhaps talk to your supplier at the time, to get it back.

    Hans-Günter

  • A tutorial / sample to create a single PDF of several source files using assembler PDF in a process of control folder.

    A tutorial / sample to create a single PDF of several source files using assembler PDF in a process of control folder. I have a client application that will prepare the number of source files and metadata information (in. (XML) that will be used in the header/footer. Is it possible to set a run time generated shows the DDX file in the folder and use it in the process. If possible how can I pass the file names in the DDX. Any sample process will be very useful.

    If possible, make use of the API of the assembler in your client application instead of doing this using watched folder. Here are examples of the assembler: LiveCycle ES2.5 * programming with LiveCycle ES2.5

    The record can accept zip files (example: configuration of a control folder to manage several input files and write the results to a single folder |) Adobe LiveCycle Blog ). You can also use run the script to create the DDX when executing: LiveCycle ES2 * Application Development using LiveCycle Workbench ES2

    Thank you

    Wasil

  • Create the flat file data from the oracle table

    d_adp_num char (10)
    d_schd_date tank (8)
    d_sched_code tank (25)
    d_pay_code char (50)
    d_mil_start char (4)
    d_mil_end char (4)
    d_duration char (5)
    d_site_code char (4)
    d_dept_id tank (6)

    Select payroll_id,
    schedule_date,
    reason_code, (sched_code)
    reason_code, (pay_code)
    start_time,
    end_time,
    total_hours,
    site_code,
    department_id
    of dept_staff
    where schedule_date between (sysdate + 1) and (sysdate + 90)


    loading data for the date range instead.
    sched_code - if 'Unavailable' reason_code = 'OD' and 'THE '.

    pay_code - "Berevevement BD" If reason_code = "BD".
    "UP PTO without reasonable excuse" If reason_code = 'UP '.
    "RG" If reason_code = "SH".
    "PTO" If reason_code = "GO".
    Here are some...

    start_time and end_time - convert military time
    based on start_ampm and end_ampm

    On this basis, I need help to create a flat file. Sewing of the flat and data file in dept_staff sample

    If site_code is there so no need to get department_id (see the sample flat file)
    ------------------------------------

    examples of data to flat file

    ZZW002324006072012 PTO
    0800160008.00
    ZZW002428106072012 RG
    1015174507.50HM34
    ZZW002391606072012 RG
    1100193008.50
    ZZW002430406072012 RG
    1100193008.50 130000
    ----------------------------

    dept_staff table data

    REASON_CODE_1 PAYROLL_ID SCHEDULE_DATE REASON_CODE START_TIME, END_TIME START_AMPM END_AMPM TOTAL_HOURS SITE_CODE DEPARTMENT_ID
    ZZW0024468 08/06/2012 HS HS 730 HAS 400 850 12 P
    ZZW0000199 08/06/2012 HS HS 730 HAS 400 850 14 P
    ZZW0023551 08/06/2012 SH SH 1145 A 930 975 GH08 95 P
    ZZW0024460 08/06/2012 SH SH 515 HAS 330 P 1025 GH08 95
    ZZW0023787 08/06/2012 SH SH 630 HAS 300 850 24 P
    ZZW0024595 08/06/2012 TR TR 730 HAS 400 850 90 P
    ZZW0023516 08/06/2012 OD OD 800 HAS 400 800 95 P
    ZZW0023784 08/06/2012 OD OD 800 HAS 400 800 5 P
    ZZW0024445 08/06/2012 SH SH 1145 A GH08 930 975 5 P
    ZZW0024525 08/06/2012 OD OD 800 HAS 400 800 23 P
    ZZW0024592 08/06/2012 TR TR 730 HAS 400 850 5 P
    ZZW0024509 08/06/2012 SH SH 95 MK21 830 HAS 330 P 700

    ZZW0023916 06/14/2012 SH SH 1100 A 850 27 730 P

    How to ask questions
    SQL and PL/SQL FAQ

    UTL_FILE allows to write the OS file

Maybe you are looking for