Data must be displayed as lines, instead of columns in a table

Hello

I have the following XML code generated by the server:
< PLUG_ELIM_ACCTS > < DATA DESCRIPTION = "Long-term receivables intercompany" DIMENSION_NAME = 'Account' > RecltIC < / DATA > < DATA DESCRIPTION = ' long-term intercompany payables "DIMENSION_NAME = 'Account' > PayltIC < / DATA > < / PLUG_ELIM_ACCTS >

I have the following code in the .rtf model:

<? horizontal-break-table: 1? > <? split-column-in-head: PLUG_ELIM_ACCTS? >

<? split-column-data: DATA? > <? ? > <? xdofx:Chr (32)? > <? xdofx:Chr (45)? > <? xdofx:Chr (32)? > <? @DESCRIPTION? >

This is the output current: (separate columns)
RecltIC - intercompany PayltIC of long-term receivables - long-term intercompany payables

This is the expected output: (single column and separate lines)
RecltIC - intercompany long-term receivables
PayltIC - Long term intercompany payables

Could someone please help?

Thank you
Muthu

It will be possible for you to send me the sample xml and RTF, so that I can have a better understanding of the issue.

Tags: Business Intelligence

Similar Questions

  • Display blank lines instead of 'No message result' of OBIEE 11.1.1.7.1

    Hi all

    I need to display an empty table instead of no results message. I use OBIEE 11.1.1.7.1.

    Answer as soon as possible.

    Thank you.

    Hello..

    You can do...

    1. run the analysis that shows data in Internet Explorer

    2. press F12 to view the source code of this page.

    3. identify the code for this particular table

    Who could look like this;

    CALENDAR_YEAR

    AMOUNT_SOLD

    CALENDAR_YEAR

    http://pdudhane-D01:7001/Analytics/RES/s_blafp/viewui/pivot/sort_plc.png">

    http://pdudhane-D01:7001/Analytics/RES/s_blafp/viewui/pivot/sort_plc.png">

    AMOUNT_SOLD

    http://PD01:7001/Analytics/RES/s_blafp/viewui/pivot/sort_plc.png">

    0

    0

    0

    0

    0

    0

    0

    0

    0

    4. turn 0 where it shows the values of fact

    5. don't insert the code in the properties of the analysis of change no result parameter and the personal messege...

    You can see the table and the columns with the values 0 for no data.

    Thank you

  • set of full data after that the incorrect line should pass to the errors table

    Hi all

    In fact, I have a table which has key equipment, date and so far the data comes as e1, 10:30 11:30.I want if the readings are not continue then this data point all records that the equipment should go to the error table. Is it possible to have a logic as it means assume that I have a data like e1, 11:30, 12:30; E1, 12:30, 01:00; E1, 01:30, 03:30, e1, 03:30, 05:30 since reads are not continuous from 01:00 the logic must be such that the two lines: e1, 01:30, 03:30, e1, 03:30, 05:30 is expected to rise to the error table.

    Thanks in advance for the help.

    Sorry ;)
    Snapshost is [url http://tsib.freehostia.com/analytfun_f1.html] here

  • Display a line has been "removed" from a table

    We maintain lines of a table with a version number that will determine the current set of accounts for a version. I must be able to show the changes between versions - when a line is ADDED, DELETED or there was NO CHANGE. I can work on VALUE-ADDED and NO_CHANGE without any problem, but I don't know how I can determine that a row has been DELETED when there are more in the next version.

    I have provided a piece of SQL example below:
    with w_acct1 as
    (select 'A1' acct, 0 vers from dual
     union all
     select 'A2' acct, 0 vers from dual
     union all
     select 'A3' acct, 0 vers from dual
     union all
     select 'A1' acct, 1 vers from dual
     union all
     select 'A2' acct, 1 vers from dual
     union all
     select 'A1' acct, 2 vers from dual
     union all
     select 'A4' acct, 2 vers from dual)
    select a.*,
           nvl(lead(acct) over (partition by acct order by vers desc),'NULL') ld,
           case when lead(acct) over (partition by acct order by vers desc) is null then
                   'ADDED'
               when lead(acct) over (partition by acct order by vers desc) = acct then
                   'NO_CHANGE'
               else
                   'REMOVED'
               end add_remove
    from w_acct1 a
    order by vers,acct
    Gives me the following output:

    ACCT TO LD ADD_REMOVE
    A1 NEW 0 NULL
    A2 NULL 0 NEW
    A3 NEWS 0 NULL
    A1 1 A1 NO_CHANGE
    A2 A2 NO_CHANGE 1
    A1 A1 2 NO_CHANGE
    A4 2 NULL NEW

    The result I want is:

    ACCT TO LD ADD_REMOVE
    A1 NEW 0 NULL
    A2 NULL 0 NEW
    A3 NEWS 0 NULL
    A1 1 A1 NO_CHANGE
    A2 A2 NO_CHANGE 1
    A3 1 DELETED NULL
    A1 A1 2 NO_CHANGE
    A2 2 DELETED NULL
    A4 2 NULL NEW

    Note the rows of REMOVAL associated with the version even if they do not exist in the dataset for this version number.

    Is - it possible with the analytical functions or some other feature of the Oracle, I'm missing?

    Concerning

    Richard

    I used OLAP - B)

    My OLAP articles (in Japanese)
    http://www.geocities.jp/oraclesqlpuzzle/oow2009-OLAP-model.html
    http://codezine.JP/article/corner/71

    create table w_acct1 as
    select 'A1' acct, 0 vers from dual union all
    select 'A2' acct, 0 vers from dual union all
    select 'A3' acct, 0 vers from dual union all
    select 'A1' acct, 1 vers from dual union all
    select 'A2' acct, 1 vers from dual union all
    select 'A1' acct, 2 vers from dual union all
    select 'A4' acct, 2 vers from dual;
    
    select acct,vers,
    case when appearCnt=1 and preCnt = 0 then 'null'
         when appearCnt=preCnt then 'null'
         else acct end as LD,
    case when appearCnt=1 and preCnt = 0 then 'NEW'
         when appearCnt=preCnt then 'REMOVED'
         else 'NO_CHANGE' end as ADD_REMOVE
    from (select a.acct,b.vers,
          count(b.acct)
          over(partition by a.acct order by b.vers) as appearCnt,
          count(b.acct)
          over(partition by a.acct
               order by b.vers rows between unbounded preceding
                                        and 1 preceding) as preCnt,
          Lag(b.acct) over(partition by a.acct order by b.vers) as LagVal
            from (select distinct acct from w_acct1) a
            Left Join w_acct1 b
          partition by (b.vers)
              on a.acct = b.acct)
     where appearCnt > preCnt
        or LagVal is not null
    order by vers,acct;
    
    AC  VERS  LD    ADD_REMOV
    --  ----  ----  ---------
    A1     0  null  NEW
    A2     0  null  NEW
    A3     0  null  NEW
    A1     1  A1    NO_CHANGE
    A2     1  A2    NO_CHANGE
    A3     1  null  REMOVED
    A1     2  A1    NO_CHANGE
    A2     2  null  REMOVED
    A4     2  null  NEW      
    
  • Is there a way to select lines or separate columns in the tables?

    This seems to be something very simple, but does not seem to Indesign (I currently use CS4) to facilitate the selection of rows or columns that are not side by side.

    Usually, something like this is done with a modifier key, for example now control and selecting each desired line/column/cell is selected.

    Even if there is a script or command or something which selects every second row/column, that would be enough.

    Most of these things are too specific to be included as a feature (in fact, I would include alternating fills row/column to this as well), but are easily scriptable.

    This fast javascript seems to do what you want:

    firstRowToChange = 1;
    table = app.selection[0];
    if (table.hasOwnProperty("baseline"))
     table = table.parent;
    if (table instanceof Cell)
     table = table.parent;
    if (table instanceof Column)
     table = table.parent;
    if (table instanceof Row)
     table = table.parent;
    if (table instanceof Table)
    {
     for (a=firstRowToChange; a		   
  • PLS-00113: identifier 'C_EMP' of the END must match 'EMP_SEARCH' at line 1, column 10 in stored function

    Hi all

    What is the problem in this function?

    SQL > create or replace function Emp_Search (number v_empno)

    2 return a Boolean value

    3 is

    4 cursor c_emp is Empno select from Emp;

    5. start

    6 for emp_r looping c_emp

    7 if v_empno = emp_r.empno then

    8 dbms_output. Put_line (v_empno |) 'lies');

    9 return true;

    10 end if;

    11 end of loop;

    12 end c_emp;

    13 dbms_output. Put_line (v_empno |) ("' is not found");

    14 return false;

    End 15 Emp_Search;

    16.

    WARNING: Function created with compilation errors.

    SQL > show error

    Errors for the EMP_SEARCH FUNCTION:

    LINE/COL ERROR

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

    12/7 PLS-00113: identifier 'C_EMP' of the END must match 'EMP_SEARCH' on line

    1, column 10

    13/2 PLS-00103: encountered the symbol "DBMS_OUTPUT.

    13/49 PLS-00103: encountered the symbol ";" when expecting one of the

    Next:

    . (, * % & -+ / at rem rest mod < an ID >)

    < between double quote delimited identifiers of > < an exhibitor > (*) as

    go to | bulk of type multiset

    I hope it's just exploring things...

    FUNCTION to CREATE or REPLACE emp_search (in_empno IN emp.empno%TYPE)
    RETURN NUMBER
    IS
    CURSOR c_emp (cp_empno IN emp.empno%TYPE)
    IS COUNT (*) SELECT
    WCP
    WHERE empno = cp_empno;
              
    l_row_cntr PLS_INTEGER;
    BEGIN
    OPEN c_emp (cp_empno-online in_empno).
    extraction INTO l_row_cntr c_emp;
    close c_emp;
      
    IF l_row_cntr > 0
    THEN
    SYS. Dbms_output.put_line (in_empno |) "lies");
    ON THE OTHER
    SYS. Dbms_output.put_line (in_empno |) 'is not found");
    end if;

    RETURN l_row_cntr;
    END emp_search;
    /

    HTH

  • Input data match with two columns in a table

    Hello

    I want to find records where the input data (> 100 records) are adapted to the two columns of the table

    See below
    with t as
    (select 1 as id, 101 as num 'ram' that pat from dual
    Union
    Select 2 102, 'tom' from dual
    Union
    Select 1 103, 'tom1' from dual
    Union
    Select 2 101, 'tom2' from dual
    Union
    Select 2 104, 'tom3' from dual
    Union
    Select 1 105, 'tom1' from dual
    Union
    Select 2 105, 'tom1' from dual

    )
    Select * from t

    I want to find records from the 't' table where (id, num) will be (1 101, 2 102, 1, 105)

    Output must be

    ID num
    1 101
    2 102
    1 105
    select *
    from t
    where  (id, num) in (
              (1,101),
              (2,102),
              (1,105)
                 );
    

    Or store the input in a temporary table values and use IN

    select *
    from t
    where  (id, num) in (
              select col1,col2
                                    from your_temp_table
                 );
    

    Published by: JAC on 20 may 2013 14:55

  • Inserting data block to the SPOUT making varchar2 (150) column with currupted

    Hi Chris,

    We are facing a problem with the insertion of bulk data on the BEAK in a table

    Insert data block to the SPOUT making varchar2 (150) column in a table with the corrupted values.
    column of first row inserted correct, but the second line, columns in the new row as null

    We had trace OIC just before the insertion, these values are correctly coming
    But integration doesn't work properly

    Could you suggest, what could be the problem, we use the OIC during the client/server connection, this problem is for a direct connection also

    In general, please do not post questions forum for questions where you have already opened a SR. This translates simply by duplication of efforts and is unlikely to lead to a faster resolution. If the problem is serious or complex that you opened a SR, it is very likely that anyone in the forum (including me) will have an instant response and it will probably ask a lot of questions and do a lot of research that is already made by Oracle support.

    Thank you for your understanding and your cooperation.

    Chris

  • Display multiple lines of data collection defined by the user in an e-mail message

    I created a collection defined by the user that displays several lines of data. I created a custom rule and have linked this collection set by the user to this rule and configure an e-mail action. Variable Seveity, I have defined it in the rule to contain the column values. But it will only contain the first line of data. How can I display multiple lines of data in the alarm itself as well as the e-mail? Any help is appreciated.

    The example query in the collection defined by the user is less;

    Select the type, status, queuename, count (*) from PSAPMSGPUBHDR

    Union

    Select the type, status, queuename, count (*) from PSAPMSGPUBCON

    Union

    Select the type, status, queuename, count (*) from PSAPMSGSUBCON

    Result:

    Number of status type Queuename

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

    HDR profil_utilisateur error 1

    PUB                  PERSON_BASIC                    New                                 4

    PUB WORKFORCE_SYNC error 1

    -3 rows

    I have defined the variables of gravity and the alarm message is something like this; (It is fetching only the first row of data) how do I loop through to get all the rows of data and display it in the message of alarm/email (alert) action must be written of the groovy script code to achieve this goal? If Yes can you please provide me examples?

    Alarm message:

    "Request message queue is:

    Type: @UDC_type

    QueueName: @UDC_queuename

    Status: @UDC_status

    County: @UDC_count

    Thanks in advance

    JAI

    Hi Jay,.

    fine I could help you. Please mark the thread as "Answered" when the issue has been resolved and do not hesitate to open a new thread for questions.

    Concerning

    Jochen

  • Extraction of XML data and display new line

    I have a table named, SAPDATABROWSER, which has several columns and lines. A column named SAPTEXT (data type: CLOB) consist of xml data. Each XML data are different in terms of number of nodes, but has the same following structure:

    < SAP_BAPI_PROP >
    < SelectedProperty >
    < structure >
    < field > < / field >
    < length > < / length >
    < FieldValue > < / FieldValue >
    < type > < / Type >
    < priority > < / priority >
    < / structure >
    < / SelectedProperty >
    < / SAP_BAPI_PROP >

    So now, what I would do is, to extract the values: field, FieldValue and the length of each line (total 72) and see the result as follows.

    Length of track FieldValue
    XXXX YYYY ZZZZ
    PPPP QQQQ RRRR
    AAAA BBBB CCCC
    MMMM OOOO NNNN

    Again, each line (total 72) has several XML Data nodes, IE there are several nodes FieldType, length and field and no two XML data/line are similar!

    I use the following code:

    SELECT
    EXTRACT (xmltype (saptext), ' / SAP_BAPI_PROP/SelectedProperty/Structure/Field / text () ');
    EXTRACT (xmltype (saptext), ' / SAP_BAPI_PROP/SelectedProperty/Structure/Length / text () ');
    EXTRACT (xmltype (saptext), ' / SAP_BAPI_PROP/SelectedProperty/Structure/FieldValue / text () ')
    OF sapdatabrowser;

    The code above produces the following result:

    SAP_BAPI_PROP/.../Field/Text () SAP_BAPI_PROP/.../Length/text () SAP_BAPI_PROP/.../FieldValue/text)
    1 XXXXPPPPAAAA YYYYQQQQBBBB ZZZZRRRRCCCC
    2 MMMM OOOO NNNN


    Any suggestions? Thank you very much. :)

    Based on your sample data:

    SQL> select x.*
      2  from sapdatabrowser t
      3     , xmltable(
      4         '/SAP_BAPI_PROP/SelectedProperty/Structure'
      5         passing xmltype(t.saptext)
      6         columns field_name  varchar2(30) path 'Field'
      7               , field_len   varchar2(30) path 'Length'
      8               , field_val   varchar2(30) path 'FieldValue'
      9       ) x
     10  ;
    
    FIELD_NAME                     FIELD_LEN                      FIELD_VAL
    ------------------------------ ------------------------------ ------------------------------
    X                              Y                              Z
    P                              Q                              R
    A                              B                              C
    M                              N                              O
     
    

    (adjust the projected if necessary data types)

  • Content of the e-mail to Smartphones blackBerry displays as lines

    My emails have suddenly started to display in the form of lines instead of text.  I can see that comes from the email, but the message part is just one or more line segments.  Someone knows how to fix this?

    Very strange. All emails without worrying that he comes?

    Perform a simple reboot on the BlackBerry this way: with smart BlackBerry poweredphone, remove the battery for a minute and then reinsert the battery to restart. A reboot in this manner is prescribed for most defects and errors of operating system, and you will lose any data on the device doing so.

    Now, do the rest with the lines?

  • Change date format is displayed in the email

    I use the following script to customize the layout of a form e-mail:

    var oDoc = event.target;

    oDoc.mailDoc ({}

    bUI: true,

    cTo : " [email protected] ", "

    bassujetti: "new form of CCR presented on ' + CurrentDate.rawValue + 'by' + teamLead.rawValue,.

    CMSG: teamLead.rawValue + "has submitted a new form of application for review of a change." + "" \nPlease review and complete section of the assessment of the Impact and if it is approved, submit to the Manager more approval.\n\nREQID: "+ REQID.rawValue +" \nDue Date: "" + dueDate.rawValue + "\nPriority:"+ priority.rawValue

    });

    It works very well and formats the email as expected, the only problem I have, it's how the date is displayed in the email. The CurrentDate.rawValue in the subject line shows how I want that he, for example, 02/17/15, but the dueDate.rawValue displays in 2015-02-17, even if the parameter of model in the mm/dd/yy paper and appears correctly in the form itself. No idea why the date changes its display model during the generation of the e-mail and how to fix it?

    Hello

    I dunno if that could cause a problem, but the two fields have a display and change the model?

    Sometimes, an error is caused because there is no reason to alter date fields...

    Otherwise, you might also have the view model you want to view in the mail for the two fields and have the formattedValue instead of the rawValue

    Hope this helps

  • How to display the line number in the form?

    Hi guys,.
    First I fll you in the story so far...

    I have a block of data in database named: V_PAYUPLOADHEADER_HP, in the property palette I put in order by facility and warehouse.

    I want to display the line number for each record of recoveries, so I do: V_PAYUPLOADHEADER_HP. NUMB, which will contain the line number.


    Here are some methods I've already tried:
    -First I tried to make a database of field element = O, column name = ROWNUM.
    The result is the jump of integer (1, 2, 5, 3, 4 etc. instead of 1, 2, 3, 4, 5) I think it is because of the agenda that I set.
    I have to keep this order by setting, so I look for another way to display the rownum.

    -Then I tried to set the data item = N, column name = null, mode of calculation = formula, formula =: system.trigger_record.
    When I run the value of: V_PAYUPLOADHEADER_HP. NUMB is 1. For all recovered records is 1, 1, 1, 1 instead of 1, 2, 3, 4.

    -J' also tried to use the trigger after QUERY attached to the block.
    In relaxation, I have this code:
    : V_PAYUPLOADHEADER_HP. NUMB: =: system.cursor_record;
    When I run the value of: V_PAYUPLOADHEADER_HP. NUMB is 1. For all recovered records is 1, 1, 1, 1 instead of 1, 2, 3, 4...



    Is there something I missed?
    What can I do to display the rownum?

    Hello
    Maintain this point NON-base of DATA and create a trigger on the block called after REQUEST level and use the code below...

    :FIELD_NAME:=:SYSTEM.TRIGGER_RECORD;
    

    -Clément

  • Displaying a string instead of the "null" value in the columns of answers

    Hi, is it possible to display a string (e.g. "no data") in responses instead a NULL value in a column of a table or a PivotTable? I read everything by using the formula in the column section in the answers, but I do not understand what expression should be used... could you help me?

    Is this kind of possible substitution only in the web interface of answers, or still in BI Admin meta - data? I would be very interested to recognize from analysis UDML in metadata,
    Thanks in advance!

    You must do this in the business model and the Mapping layer

    Go to the properties of the column

    1. in general tab, you have "use existing columns of logic as a source.
    Select this check box. Click the period (...)
    In the formula for the column, you can add the condition of ifnull
    In this col formula editor, you can choose the logical columns.

    2. on the Data Type tab, you have the maps and logical sources
    Here too you can achieve.
    In this col formula editor, you can choose physical columns.

    Kind regards
    Rambeau

  • Select the list date picker on a single line - is this a bug?

    I use: Application Express 3.2.0.00.27

    Here is a bug? If so, how he reported so it will be fixed in a future version of APEX? If this is not the case, how can I do so it ends as I wish?

    1. create the blank page
    2. create html region
    3 create the 'select list' (start on new line - Yes... Span - line field - Yes, ColSpan - 1, 1)
    4. create the date picker component (start on new line - no,... On the ground - No, ColSpan - 1, length of line - 1)

    There will be other items displayed in columns more above what I just had create you above. I want the list of selection and the datePicker to show side by side on the same line, so I put the element selector to date on the same line in the same field as the selection list element.

    HOWEVER... the date picker eventually displayed in the selection list item (sort of), instead of next to it on the same line.

    Here is what I get:
    ...................... [Field selection list] Label date Picker
    Select label list
    ...................... [Date field Picker]

    Here's what I want:
    Select the list tag [field selection list] Date Picker [Date Picker field]

    Thank you
    Steve

    Published by: sskelton on August 3, 2009 11:01

    Published by: sskelton on August 3, 2009 11:02

    Hello

    Take a look at my first answer here: Re: problem with the position of the elements of can help you

    Andy

Maybe you are looking for

  • Toshiba site as a problem so I can't download the driver

    Hello I; ve crossed suppoer pages to download the latest driver wireless for my laptop up on some questions and the page takes me here: http://Support1.toshiba-tro.de/Tools/updates/Atheros-WLAN/Atheros-WLAN-Vista-7601641.zip Yet the permissions on th

  • VIA USB 3.0 ROOT HUB

    Troubleshooting watch 'pilot for VIA 3.0' hub USB root but "Problem Fix" will not install the driver I need.  What can I do?

  • Creating new folders in Windows 7.

    I've used Windows XP and there was a "New folder" option  I bought a new computer with Windows 7 operating system and can not find the same choice. Maybe I can't see the forest through the trees, but sombody out there should be able to help me.  Than

  • Create safer self-signed certificates on IOS router?

    I use a router in 1921 and use partially as an AnyConnect (WebVPN) server for remote access in the location.  The certificate I used was a self-signed certificate & trustpoint generated on the router.  I am running as the last IOS available track to

  • Cannot delete the user folder?

    I can't delete the folder \\JONESPC\Users\Jack2 I tried to use regedit, but just ended up with a new \\JONESPC\Users\Jack2.JONESP folder This problem occurred when I tried to change the username to my main account I could do successfully by using the