Dynamics of the columns/line data adds forms (11.1.1.3) v/s (11.1.2.1)

Hi all
There was once an option in Hyperion planning 11.1.1.3 Dynamic add lines in the data form. I don't see this option in planning 11.1.2.1?
Could you please suggest how we can grant the right to users to add dynamic add rows and columns in the form of data? or it's possible in 11.1.2.1?
users want to have a feature of adding line in data forms (forms of planning)

Thank you

Published by: 842804 on August 17, 2011 12:49

Do you mean 11.1.2 If Yes, then the ad hoc forms really take over to add lines they add many more features.

See you soon

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

Tags: Business Intelligence

Similar Questions

  • Dynamics of the columns/line data adds forms (11.1.1.3) v/s (11.1.1.2)

    Hi all
    There was once an option in Hyperion planning 11.1.1.3 Dynamic add lines in the data form. I don't see this option in planning 11.1.1.2?
    Could you please suggest how we can grant the right to users to add dynamic add rows and columns? or it is possible in 11.1.1.2

    Thank you

    What about ad-hoc analyses? Reading this: http://download.oracle.com/docs/cd/E17236_01/epm.1112/hp_user/ch04s02s03.html

    See you soon,.
    Mehmet

  • Add/change the columns of data type (scripting)

    Hello

    I am writing a script to add default columns and their values in tables. So far, for me, it is possible to add columns to an existing table in the model.

    Then, I want to add value to the data type. I discovered there is a method called getDataType(). So far, I have not found the "setter; for this property.

    Like other scripts, I started by creating a table with columns, and then using the API to read the values.

    A simplified version of my code:

    get the columns of table

    myTab var = model.getTableSet () .getByName ("T_POSITIONS");

    colArray = myTab.getElementsCollection () .toArray ();

    loop through columns

    for (i = 0; i < colArray.length; i ++) {}

    the type of var data = colArray [i] .getDataType ();

    model.getAppView () .log (colArray [i] + "a datatype" + dataType);

    colArray [i] .setDataType ("VARCHAR2 (1)");

    }

    An error occurs when I want to run this script: could not find setDataType function in the object ID.

    I can't find the right method to add/change the datatype property.

    Any information would be appreciated.

    Hi Bart,.

    Here's what's in the column in the XML file:

    
    FDB11R21
    EMPLOYEES
    FIRST_NAME
    
    2015-01-13 12:45:08 UTC
    First name of the employee. A not null column.
    HR_870
    true
    false
    1
    LOGDT024
    20 BYTE
    false
    
    

    20 BYTES

    If you need set the size in "20 BYTE" or "20 CHAR".

    Philippe

  • How to convert the column lines

    I need to convert my output lines of sql for the column as a pivot to 11g

    Please give me the example of this

    check out this link

    http://nimishgarg.blogspot.com/2010/06/Oracle-pivot-data-rows-to-columns.html

    request for 10g would be

    Select *.
    (select job,
    Sum (decode(DEPTNO,10,SAL)) dept10,
    Sum (decode(DEPTNO,20,SAL)) dept20,
    Sum (decode(DEPTNO,30,SAL)) dept30,
    Sum (decode(DEPTNO,40,SAL)) dept40
    from scott.emp
    Working Group)
    order by 1;

  • How can I update the column based date?

    Hello..

    first I want to thank everyone for the help that you are given...

    I have a table that looks like this:

    the air course date

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

    X 0 NOV2013

    Y 900 OCT2013

    Z 800 OCT2013

    X 700 OCT2013

    Y 500 NOV2013

    X 100 NOV2011

    X 200 NOV2012

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

    I need a SQL expression for this

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

    If the price is 0

    then select the average price for the same air, and the same month but different year

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

    for example in the table...

    When noncompliance X is 0 to DATE price NOV2013

    THEN select the average price for product X in NOV2012 NOV2011 AND

    THAT will be (100 200) = 100

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

    Naïve...

    Hello

    This?

    Note: I pushed since your unique records PROD, D

    SQL > select * from t1;

    D PRICE OF PROD

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

    X 0 01.11.2013

    Y 900 01.10.2013

    Z 800 01.10.2013

    X 700 01.10.2013

    Y 500 01.11.2013

    X 100 01.11.2011

    X 200 01.11.2012

    7 selected lines

    SQL >

    SQL > select q1.prod, q1.price, q1.d, avg (q2.price) avg_price

    2 from t1 t1

    3 join left t1 t2

    4 on q2.prod = q1.prod

    5 and trunc (q2.d, 'yyyy')! = trunc (q1.d, 'yyyy')

    6 and to_char (q2.d, 'mm') = to_char (q1.d, 'mm')

    Group 7 by q1.prod, q1.price, q1.d

    8.

    PROD AVG_PRICE D PRICE

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

    X 700 01.10.2013

    200 X 01.11.2012 50

    X 0 01.11.2013 150

    Z 800 01.10.2013

    Y 900 01.10.2013

    Y 500 01.11.2013

    X 100 01.11.2011 100

    7 selected lines

    SQL >

    SQL >

    SQL >

    SQL > fusion in t1

    2. using (select q1.prod, q1.price, q1.d, avg (q2.price) avg_price

    3 T1 t1

    4 join left t1 t2

    5 on q2.prod = q1.prod

    6 and trunc (q2.d, "yyyy")! = trunc (q1.d, "yyyy")

    7 and to_char (q2.d, 'mm') = to_char (q1.d, 'mm')

    q 8 group of q1.prod, q1.price, q1.d)

    9 on (q.prod = t1.prod and t1.d = q. at)

    10 when matched then

    11 update set t1.price = q.avg_price where t1.price = 0

    12.

    1 row merged

    SQL >

    SQL >

    SQL > select * from t1;

    D PRICE OF PROD

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

    X 150 01.11.2013

    Y 900 01.10.2013

    Z 800 01.10.2013

    X 700 01.10.2013

    Y 500 01.11.2013

    X 100 01.11.2011

    X 200 01.11.2012

    7 selected lines

    SQL >

    ----

    Ramin Hashimzade

  • Change the color of the outer line of a form

    Hello I am trying to create a rectangle with a red border and not inside filling. It is only to highlight the text in a form of the Bank.

    I know I must right click on the layer and choose blending options and the strokes. But I tried to change so many times, and little color matter what I do, the outside line remains grey and with rounded corners.

    I want the corners of the rectangle to be square, not rounded, but I'm having a hard time to change that.

    Help, please

    I use Photoshop CS3

    Thank you

    Could someone please show a picture of the place where to change the color of the outside line? I've tried everything.

    Is your document in grayscale?

    Try to Image - Mode - RGB to adjust the color.

    -Christmas

  • Format the columns for data to Excel

    Hello, everyone.

    I'm working on a document that runs a query, fills a < table > with data, then spits out an Excel sheet for the user to open or save. I use the equivalent CFSCRIPT of CFCONTENT and CFHEADER to create the Excel file.

    Code:
      <cfscript>
        pc = getpagecontext().getresponse();
        pc.getresponse().setcontenttype('application/vnd-ms.excel');
        pc.setHeader("Content-Disposition","attachment;filename=ThisData_#DateFormat(now(),'yyyy-mm-dd')#.xls");
      </cfscript>

    Everything works very well, with one exception.

    The columns of the query that is returned is a varchar data type (10) - data is a value of "month year" as "May 2010" or "June 2011".» If you look at the data in a browser, it appears in this format ("month year"). But when the Excel file is created, it appears under the name 'May 12' or 'Dec-12 "(regardless of the month, the date is always 12).

    I'm sure it's because in Excel, the column is formatted as "Général" when I need her to be 'text '. Is there a way to tell CF that needs a particular column in Excel to fit a particular way?

    Thank you

    ^_^

    This can help some:

    http://support.Microsoft.com/kb/260239

    Basically, if you are not using a solution of 'good' and exit

    HTML, give advice to Excel on how to display things.

  • compare the permeable line data and add more than 1 column

    I have data like this

    col1 col2 col3

    1 AB XY

    UV 1 CD

    EF 2 OP

    2 GH QR

    3. I M

    4 J N

    I got kicked out like that

    Col1 Col2

    1 AB CD XY UV

    2 EF GH OP QR

    3. I J

    M 4 N

    I'm using oracle 10.2.0.4.My table is located in the remote database. Also my concatinated output is greater than 4000 bytes

    I tried the queries I can copied that did not work.

    option 1
    It gives the error ORA-22992: cannot use LOB Locators selected remote tables

    Request_id SELECT, to_clob (wm_concat (col2 | col3) as notes)
    FROM table_x
    GROUP BY col1

    option 2
    This works, but does not allow to add other columns
    WITH got_r_num AS
    (
    SELECT col1, col2
    ROW_NUMBER () OVER (PARTITION BY col1
    ORDER BY col2
    ) AS r_num
    FROM table_x
    )
    SELECT col1
    REPLACE (SYS_CONNECT_BY_PATH (col2, ',')
    , ','
    ) AS all_col2s
    OF got_r_num
    WHERE CONNECT_BY_ISLEAF = 1
    START WITH r_num = 1
    CONNECT BY r_num = r_num + 1
    AND col1 = col1 PRIOR

    Please help me

    Thank you very much

    Try this

    with t
    as
    (
    select 1 c1,'AB' c2,'XY' c3 from dual union all
    select 1,'CD','UV' from dual union all
    select 2,'EF','OP' from dual union all
    select 2,'GH','QR' from dual union all
    select 3,'I','M' from dual union all
    select 4,'J','N' from dual
    )
    select c1, ltrim(sys_connect_by_path(c2,','),',')||','||ltrim(sys_connect_by_path(c3,','),',') c2
      from (select t.*, row_number() over(partition by c1 order by 1) rno
              from t)
     where connect_by_isleaf = 1
     start with rno = 1
    connect by c1 = prior c1
       and rno = prior rno + 1
    
  • compare the permeable line data and add

    I have data like this

    col1 col2

    1 AB

    1 CD

    2 PQ

    2 LM

    3A

    3 d

    I got kicked out like that

    1 ABCD

    2 PQLM

    3A

    3 d

    Please help me

    Thank you very much

    Hello

    Welcome to the forum!

    Whenever you have a question, tell what version of Oracle you are using.

    You should post some examples of data in a form people can actually use.
    For example:

    CREATE TABLE     table_x
    (       col1     NUMBER (4)
    ,     col2     VARCHAR2 (10)
    );
    
    INSERT INTO table_x (col1, col2) VALUES (1,   'AB');
    INSERT INTO table_x (col1, col2) VALUES (1,   'CD');
    INSERT INTO table_x (col1, col2) VALUES (2,   'PQ');
    INSERT INTO table_x (col1, col2) VALUES (2,   'LM');
    INSERT INTO table_x (col1, col2) VALUES (3,   'A');
    INSERT INTO table_x (col1, col2) VALUES (4,   'C');
    

    Also post the reulsts you want from these data, as well as an explanation of how to get these results.
    Did you publish the results, but not an explanation. Why do you want to

    2     PQLM
    

    in the output rather than

    2     LMPQ
    

    ? Or would be an acceptable?

    Combining data from multiple lines in a single large chain is called chain aggregation . There are several ways to do it, depending on your version and exactly what you need.
    Here's a way to string aggregation. It works in Oracle 9 (and more)

    WITH got_r_num     AS
    (
         SELECT     col1, col2
         ,     ROW_NUMBER () OVER ( PARTITION BY  col1
                                   ORDER BY          col2
                           ) AS r_num
         FROM     table_x
    )
    SELECT     col1
    ,     REPLACE ( SYS_CONNECT_BY_PATH (col2, ',')
              , ','
              )     AS all_col2s
    FROM     got_r_num
    WHERE     CONNECT_BY_ISLEAF     = 1
    START WITH     r_num     = 1
    CONNECT BY     r_num     = PRIOR r_num + 1
         AND     col1     = PRIOR col1
    ;
    

    The query above assumes that col2 never contains a «,» If so, then use another secondary channel never occurred in col2 as argument on SYS_CONNECT_BY_PATH 2nd. The 2nd argument of REPLACEMENT must be the same.

    See other ways to string aggregation:
    http://www.Oracle-base.com/articles/10G/StringAggregationTechniques.php

    Published by: Frank Kulash, may 6, 2010 16:34

  • The checkbox in the column DB data record

    Hi all

    I created the article P1_checkbox (several checkboxes) using LOV(Select ename, empno from emp). Now when I checked the boxes, I want to INSERT these boxes given in the table in database 'emp_selected'.

    So when I log in again application, the boxes have pre-selected data of "emp_selected" boxes unchecked the 'emp' table and when I uncheck some preselected check boxes and check the new boxes, it should be updated accordingly in "emp_selected".

    My APEX oracle version is 4.2.

    Thank you

    Found the solution. Marking the link for others who may have doubts about the same subject.

    Oracle11g - box record data in a column DB - Stack Overflow

  • Is it possible to extend the column title "DATE"?

    Hi, I made a table;

    SQL > SELECT * FROM BookCopy;

    DATEACQUI DATEDESTR BTID BCID
    120 9 9 FEBRUARY 06

    The title means 'DATEACQUIRED' but it is said that "DATEACQUI".

    Anyone know if it is possible to extend the title without using VARCHAR, thank you

    Hello

    In SQL * Plus, you can set the width of the DATE column as you would for a VARCHAR2.

    COLUMN  dateacquired  FORMAT A12
    
    SELECT  SYSDATE  AS dateacquired
    FROM    dual;
    

    product

    DATEACQUIRED
    ------------
    29-JAN-09
    
  • the sum of the column lines based on distinct values of column B

    Hi all
    Here is my xml
    rowset <>
    < ROW >
    < ORDER_NO > 103-4385509 < / ORDER_NO >
    < SITE_NO > 103 < / SITE_NO >
    < ORDER_ID > 4385509 < / ORDER_ID >
    < CUSTOMER_ID > 2676832 < / CUSTOMER_ID >
    < TAX_AMOUNT >.33 < / TAX_AMOUNT >
    < CREATED_DATE > 20/08/2010 < / CREATED_DATE >
    < USER_CREATED > TSDAL671 < / USER_CREATED >
    < Delivery_Method > CARRY OUT STORE < / Delivery_Method >
    < Entered_By > TSDAL671 < / Entered_By >
    < SKU_NO > 321182 < / SKU_NO >
    < NAME_TEXT > MGR_OVERRIDE < / NAME_TEXT >
    < > 319 ATTRIBUTE_ID < / ATTRIBUTE_ID >
    Override < ATTRIBUTE_VALUE > done < / ATTRIBUTE_VALUE >
    < DETAIL_SEQ_NO > 1 < / DETAIL_SEQ_NO >
    < / ROW >
    < ROW >
    < ORDER_NO > 103-4385509 < / ORDER_NO >
    < SITE_NO > 103 < / SITE_NO >
    < ORDER_ID > 4385509 < / ORDER_ID >
    < CUSTOMER_ID > 2676832 < / CUSTOMER_ID >
    < TAX_AMOUNT >.33 < / TAX_AMOUNT >
    < CREATED_DATE > 20/08/2010 < / CREATED_DATE >
    < USER_CREATED > TSDAL671 < / USER_CREATED >
    < Delivery_Method > CARRY OUT STORE < / Delivery_Method >
    < Entered_By > TSDAL671 < / Entered_By >
    < SKU_NO > 321182 < / SKU_NO >
    < NAME_TEXT > OEDTL_TAX_INFO < / NAME_TEXT >
    < > 314 ATTRIBUTE_ID < / ATTRIBUTE_ID >
    < ATTRIBUTE_VALUE > 441130760 | 441130760 | 441130760 | 1. 1. 1. 20100820 | 2676832 | 2. SPARE PARTS | < / ATTRIBUTE_VALUE >
    < DETAIL_SEQ_NO > 1 < / DETAIL_SEQ_NO >
    < / ROW >
    < ROW >
    < ORDER_NO > 103-4385509 < / ORDER_NO >
    < SITE_NO > 103 < / SITE_NO >
    < ORDER_ID > 4385509 < / ORDER_ID >
    < CUSTOMER_ID > 2676832 < / CUSTOMER_ID >
    < TAX_AMOUNT >.18 < / TAX_AMOUNT >
    < CREATED_DATE > 20/08/2010 < / CREATED_DATE >
    < USER_CREATED > TSDAL671 < / USER_CREATED >
    < Delivery_Method > CARRY OUT STORE < / Delivery_Method >
    < Entered_By > TSDAL671 < / Entered_By >
    < SKU_NO > 412679 < / SKU_NO >
    < NAME_TEXT > OEDTL_TAX_INFO < / NAME_TEXT >
    < > 314 ATTRIBUTE_ID < / ATTRIBUTE_ID >
    < ATTRIBUTE_VALUE > 441130760 | 441130760 | 441130760 | 1. 1. 1. 20100820 | 2676832 | 2. 0035 | < / ATTRIBUTE_VALUE >
    < DETAIL_SEQ_NO > 2 < / DETAIL_SEQ_NO >
    < / ROW >


    I have to display 3 lines but all the sum of TAX_AMOUNT grouped by ORDER_ID, I need sum for 2 records based on the distinct value of DETAIL_SEQ

    so my output should be something like below

    ORDER_ID | TAX_AMOUNT | DETAIL_SEQ | ATTRIBUTE_ID
    -----------------------------------------------------------------------------
    4385509 | 0.33 | 1. 319
    4385509 | 0.33 | 1. 314
    4385509 | 0.18 | 2. 314
    --------------------------------------
    SUM = 0.51
    ------------------------------------------


    Note: I can't make separate in the sql attribute_id is different for the same DETAIL_SEQ_NO.


    I tired to do <? sum ([xdoxslt:distinct_values (current - group () / DETAIL_SEQ_NO)] / TAX_AMOUNT)? >

    It did not work.

    Can someone help me please!



    Thanks in advance!

    This syntax will not work.

    A method to do so.

     
    
          
     
    
     
    
    
    
  • Download the column lines

    Hello
    I have this structure
    CREATE TABLE TEST (col CLOB);
    
    INSERT INTO TEST (col) VALUES (' <432 pers example 1
      ref 1234545 
      title 1
      pers example 2
      title 2
      ref kljfsdng');
    If run select...
    API> select * from test;
    
    COL
    ---------------------------
     <432 pers example 1
      ref 1234545
      title 1
      pers example 2
      title 2
      ref kl
    
    
    Transcurrido: 00:00:00.40
    A single line.

    I want lines where the substring "PREP."
    So my output would be:
    COL
    ---------------------------
     <432 pers example 1
      pers example 2
    Two lines, one for each line.

    Thank you.

    You mean like this?

    SQL> ed
    Wrote file afiedt.buf
    
      1  select rn, row_txt
      2  from (
      3    select rn, regexp_substr(col, '[^'||CHR(13)||CHR(10)||']+', 1, rn) as row_txt
      4    from test, (select rownum rn from test connect by rownum <= length(regexp_replace(col, '[^'||CHR(13)||CHR(10)||']'))+1)
      5    )
      6* where instr(row_txt,'pers') > 0
    SQL> /
    
            RN ROW_TXT
    ---------- --------------------------------------------------------------------------------
             1  <432 pers example 1
             4   pers example 2
    
    SQL>
    
  • Only read the column in the form of planning

    Hi gurus,

    I want to do a red column in planning webform. How can I achieve this? If I give read access to this column for a user and assume that it is a computed column, the calculation is done for the user? To calculate a cell in the form, is that he needed centimeters to write to the user?

    Kind regards

    Hello

    Say you want to have Jan, Feb in your columns, but you want to make read-only Feb, that's what it takes

    In the columns/line under the column dimension tab

    Select period in the drop-down list, enter Jan as a member.

    Now click on add a column

    Enter Feb for the Member, click read-only.

    Ok?

    See you soon

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

  • Calculate the values of a SharePoint workflow status Page column lines

    On the workflow status page, how can I have a column with a value in the column lines?  My workflow page lists commands that are in the workflow.  I wish there was a column where the value of each PO, displays a running total of the PO rises before him.

    Hello

    It is not a community forum for issues of SharePoint. Please post to the appropriate

    Forum on MSDN SharePoint.

    http://social.msdn.Microsoft.com/forums/SharePoint/en-us/home

    Don

Maybe you are looking for

  • Cannot install on Windows XP stellarium

    I can't install software free progrm called stellarium on XP that will help me with that I'm studying astronomy. Has anyone else had this problem and solved? Thanks GCE 15

  • ShellExt.Dll C:\Program Files\Lavasoft\Adware

    I am removing this file I get access denied, make sure that the disk is not full or write protected.

  • I can't change some settings in Windows Update

    My Windows 7 PC is part of a workgroup, not domain, but still I can't change some settings for Windows Update. I have the menu drop-down gray and set to download updates but let me choose whether to install them. I checked gpedit.msc > user configura

  • BlackBerry Smartphones don't use wifi

    Hello I am a newbie for Blackberry. I turned off my data plan and connect to the wifi. but when I try to browser it say unable to connect. Error message: data service are disabled. Go to the Mobile network to enable. I don't want to use my data plan.

  • I have problems to download Lightroom 6 to my laptop

    during the initialization of the installation, the installation fails because a note appears when you install the drive "this product can only be installed on a system with 64-bit"