Generate the missing lines in analytics

Hello

I have a table with minute PR. measures 0-x.
If a minute do NOT have a measure, then he should take the next minute measurement data.

The results are averages in an interval of 15 minutes - or using the last 15 averages.

It's my data
drop table jlt_maaling;
create table jlt_maaling (id number, dato date, vaerdi number, whoknows number);

insert into jlt_maaling values (13111,to_date('15.09.2011 10:00:54','dd.mm.yyyy hh24:mi:ss'),1461,1);  
insert into jlt_maaling values (13111,to_date('15.09.2011 10:01:14','dd.mm.yyyy hh24:mi:ss'),1462,1);   
insert into jlt_maaling values (13111,to_date('15.09.2011 10:01:54','dd.mm.yyyy hh24:mi:ss'),1464,1);
insert into jlt_maaling values (13111,to_date('15.09.2011 10:02:31','dd.mm.yyyy hh24:mi:ss'),1457,1);  
insert into jlt_maaling values (13111,to_date('15.09.2011 10:03:54','dd.mm.yyyy hh24:mi:ss'),1459,1); 
insert into jlt_maaling values (13111,to_date('15.09.2011 10:04:54','dd.mm.yyyy hh24:mi:ss'),1464,1); 
insert into jlt_maaling values (13111,to_date('15.09.2011 10:05:54','dd.mm.yyyy hh24:mi:ss'),1463,1);
insert into jlt_maaling values (13111,to_date('15.09.2011 10:05:55','dd.mm.yyyy hh24:mi:ss'),1467,1);
insert into jlt_maaling values (13111,to_date('15.09.2011 10:05:56','dd.mm.yyyy hh24:mi:ss'),1464,1);
insert into jlt_maaling values (13111,to_date('15.09.2011 10:05:58','dd.mm.yyyy hh24:mi:ss'),1460,1);
--- how do I  "generate" data for the next 3 minutes  inflight?
--10.06
--10.07
--10.08
---- arggh
insert into jlt_maaling values (13111,to_date('15.09.2011 10:09:54','dd.mm.yyyy hh24:mi:ss'),1482,1); 
insert into jlt_maaling values (13111,to_date('15.09.2011 10:10:54','dd.mm.yyyy hh24:mi:ss'),1479,1); 
insert into jlt_maaling values (13111,to_date('15.09.2011 10:11:54','dd.mm.yyyy hh24:mi:ss'),1466,1); 
insert into jlt_maaling values (13111,to_date('15.09.2011 10:12:24','dd.mm.yyyy hh24:mi:ss'),1474,1); 
insert into jlt_maaling values (13111,to_date('15.09.2011 10:12:54','dd.mm.yyyy hh24:mi:ss'),0,1);
insert into jlt_maaling values (13111,to_date('15.09.2011 10:13:05','dd.mm.yyyy hh24:mi:ss'),1474,1); 
insert into jlt_maaling values (13111,to_date('15.09.2011 10:13:17','dd.mm.yyyy hh24:mi:ss'),1476,1);
insert into jlt_maaling values (13111,to_date('15.09.2011 10:13:25','dd.mm.yyyy hh24:mi:ss'),1480,1);
insert into jlt_maaling values (13111,to_date('15.09.2011 10:13:54','dd.mm.yyyy hh24:mi:ss'),1471,1);
insert into jlt_maaling values (13111,to_date('15.09.2011 10:13:59','dd.mm.yyyy hh24:mi:ss'),1471,1);
--10.14
commit;



with maalinger as
(
select trunc(dato,'mi') dato, sum(vaerdi) , count(vaerdi), sum(vaerdi)/count(vaerdi) vaerdi
from jlt_maaling
group by trunc(dato,'mi')
order by 1
),
tider as
(
--select trunc(sysdate+(level/24/60),'mi')-(1/24/60) datoo from dual connect by level <= 15
select trunc(to_date('15.09.2011 10:00:54','dd.mm.yyyy hh24:mi:ss')+(level/24/60)-(1/24/60),'mi') datoo from dual connect by level <= 15
)
---
select datoo, vaerdi,
trunc(avg(vaerdi) over (order by dato)) runningtotal_avg,   --- snit fra start og til hvor vi er nu
trunc(avg(vaerdi) over (order by dato rows 14 preceding)) running15_avg,    --- snit for de seneste 15 rækker
trunc(avg(vaerdi) over (order by dato range between  interval '899' second preceding and current row)) running15min_avg  ---- summen for de seneste 15 minutters rækker
from maalinger m right outer join tider t on t.datoo = m.dato
order by datoo;
I have now the lack of lines not attached in French - but that contains no data in the veaeri column... it should contain the data from the next moment...
If anyone can help?

UPS has forgotten - database is 10.2.0.4

Best regards
Mette

Edited by: Mettemusens2 2011-10-07 03:26

Edited by: Mettemusens2 2011-10-07 03:38

And here's a way that gives what you ask (or almost):

with minutter as (
   select min_dato + numtodsinterval(level-1,'minute') dato
   from (
      select trunc(max(dato),'mi') max_dato, trunc(min(dato),'mi') min_dato
      from jlt_maaling
   )
   connect by level <= ceil((max_dato - min_dato) * 24 * 60) + 1
)
select
nvl(jlt_maaling.dato,minutter.dato) dato,
last_value(jlt_maaling.vaerdi ignore nulls) over (order by minutter.dato) vaerdi
from minutter
left outer join jlt_maaling
   on trunc(jlt_maaling.dato,'mi') = minutter.dato
order by
minutter.dato,
jlt_maaling.dato
;

Then you can make this request group.

It will work when you do it on an individual 'id '. For a solution that partitions by 'id', you can do a partitioned outer join.

Tags: Database

Similar Questions

  • Mandatory list of the missing lines

    I have set up a binding list. When I iterator binding list, the first row is missing.

    Sets the iterator
    OperationBinding query = ADFUtils.findOperation ("ExecuteWithParams");
    Query.Execute ();

    JUCtrlListBinding = userPermissionBinding
    (JUCtrlListBinding) ADFUtils.getBindingContainer () .get ("UserPermissionForRHView1");
    RowIterator iterator = userPermissionBinding.getRowIterator ();
    System.out.println (Iterator.isRangeAtTop ());
    int i = 0;
    List selectedIndices < integer > = new ArrayList < integer > ();
    While (iterator.hasNext ()) {}
    Line = iterator.next ();
    Boolean selected = "Y".equals (row.getAttribute ("Selected"));
    System.out.println (Row.GetAttribute ("Selected"));
    System.out.println (Row.GetAttribute ("code"));
    If {(selected)
    System.out.println (i);
    selectedIndices.add (i);
    }
    i ++ ;
    }

    I activated oracle.jbo connection to check the SQL query, it ran in SQL Developer. He returned to 6 rows. But the iterator contains only 5 during the iteration with the java code above. The list binding is used by a selectManyCheckbox, it shows 6 elements.

    I don't understand. Any ideas?

    JDev 11.1.2.4

    If you iterate through a set of lines which is used on a page, games of framework the current line you the first row. Do your loop begins by rank rank = iterator.next (); you skipped the first line that you get with this statement.

    Use a construction like

    Line = iterator.first ();

    While (line! = null) {}

    work with the line

    line = iterator.next ();

    }

    Timo

  • How to fix the missing lines of text and formatting lost, hyphenated words and text disturbed flow, after the conversion of PDF in word doc to allow editing? using WPS office application on Android Galaxy tablet. tried Polaris app and got a blank document

    How to fix the missing text and updated lines shaped, hyphenated words and patterns disrupted, lost after export PDF document to word doc to allow editing? using WPS office application on Android Galaxy tablet. tried Polaris app and got a blank document.

    Thank you!

    Hi Spider,

    Adobe Acrobat on mobile devices can be used for editing. I will suggest you to perform the task on PC or Mac.

    Thank you

    Abhishek

  • Identify the missing lines for the hierarchy

    Oracle 10.2.0.1
    Windows XP

    create table vill (identification number (5), area varchar2 (20), subarea1 varchar2 (20), subarea2 varchar2 (20), location varchar2 (20));
    Insert in the vill values(1,'AREA1','SUBAREA1','SUBAREA2','AREA1');
    Insert in the vill values(2,'AREA1','SUBAREA1','SUBAREA2','SUBAREA1');
    Insert in the vill values(3,'AREA1','SUBAREA1','SUBAREA2','SUBAREA2');
    Insert in the vill values(4,'AREA1','SUBAREA1','SUBAREA2','VILL1');
    Insert in the vill values(5,'AREA1','SUBAREA1','SUBAREA2','VILL2');
    Insert in the vill values(6,'AREA1','SUBAREA1','SUBAREA2','VILL3');
    Insert in the vill values(7,'AREA1','SUBAREA1','SUBAREA2','VILL4');
    -Before is a perfect set of lines because it has all the lines in the area, subarea1 and subarea2.
    Insert in the vill values(8,'AREA2','SUBAREA1','SUBAREA2','AREA2');
    Insert in the vill values(9,'AREA2','SUBAREA1','SUBAREA2','SUBAREA1');
    Insert in the vill values(10,'AREA2','SUBAREA1','SUBAREA2','VILL5');
    Insert in the vill values(11,'AREA2','SUBAREA1','SUBAREA2','VILL6');
    Insert in the vill values(12,'AREA2','SUBAREA1','SUBAREA2','VILL7');
    Insert in the vill values(13,'AREA2','SUBAREA1','SUBAREA2','VILL8');

    Insert in the vill values(14,'AREA3','SUBAREA1','SUBAREA2','AREA3');
    Insert in the vill values(15,'AREA3','SUBAREA1','SUBAREA2','SUBAREA2');
    Insert in the vill values(16,'AREA3','SUBAREA1','SUBAREA2','VILL9');
    Insert in the vill values(17,'AREA3','SUBAREA1','SUBAREA2','VILL10');
    Insert in the vill values(18,'AREA3','SUBAREA1','SUBAREA2','VILL11');
    Insert in the vill values(19,'AREA3','SUBAREA1','SUBAREA2','VILL12');

    Insert in the vill values(20,'AREA4','SUBAREA1','SUBAREA2','SUBAREA1');
    Insert in the vill values(21,'AREA4','SUBAREA1','SUBAREA2','SUBAREA2');
    Insert in the vill values(22,'AREA4','SUBAREA1','SUBAREA2','VILL13');
    Insert in the vill values(23,'AREA4','SUBAREA1','SUBAREA2','VILL14');
    Insert in the vill values(24,'AREA4','SUBAREA1','SUBAREA2','VILL15');
    Insert in the vill values(25,'AREA4','SUBAREA1','SUBAREA2','VILL16');
    commit;
    Select * from city;
            ID AREA                 SUBAREA1             SUBAREA2             LOCATION
    ---------- -------------------- -------------------- -------------------- --------------------
             1 AREA1                SUBAREA1             SUBAREA2             AREA1
             2 AREA1                SUBAREA1             SUBAREA2             SUBAREA1
             3 AREA1                SUBAREA1             SUBAREA2             SUBAREA2
             4 AREA1                SUBAREA1             SUBAREA2             VILL1
             5 AREA1                SUBAREA1             SUBAREA2             VILL2
             6 AREA1                SUBAREA1             SUBAREA2             VILL3
             7 AREA1                SUBAREA1             SUBAREA2             VILL4
             8 AREA2                SUBAREA1             SUBAREA2             AREA2
             9 AREA2                SUBAREA1             SUBAREA2             SUBAREA1
            10 AREA2                SUBAREA1             SUBAREA2             VILL5
            11 AREA2                SUBAREA1             SUBAREA2             VILL6
            12 AREA2                SUBAREA1             SUBAREA2             VILL7
            13 AREA2                SUBAREA1             SUBAREA2             VILL8
            14 AREA3                SUBAREA1             SUBAREA2             AREA3
            15 AREA3                SUBAREA1             SUBAREA2             SUBAREA2
            16 AREA3                SUBAREA1             SUBAREA2             VILL9
            17 AREA3                SUBAREA1             SUBAREA2             VILL10
            18 AREA3                SUBAREA1             SUBAREA2             VILL11
            19 AREA3                SUBAREA1             SUBAREA2             VILL12
            20 AREA4                SUBAREA1             SUBAREA2             SUBAREA1
            21 AREA4                SUBAREA1             SUBAREA2             SUBAREA2
            22 AREA4                SUBAREA1             SUBAREA2             VILL13
            23 AREA4                SUBAREA1             SUBAREA2             VILL14
            24 AREA4                SUBAREA1             SUBAREA2             VILL15
            25 AREA4                SUBAREA1             SUBAREA2             VILL16
    
    25 rows selected.
    Power required:
            ID AREA                 SUBAREA1             SUBAREA2             LOCATION
    ---------- -------------------- -------------------- -------------------- --------------------
            26 AREA2                SUBAREA1             SUBAREA2             SUBAREA2
            27 AREA3                SUBAREA1             SUBAREA2             SUBAREA1
            28 AREA4                SUBAREA1             SUBAREA2             AREA4
    Why?

    Because as I said above that rowset for the euro1 area is perfect because in the location column there are lines for the euro1, SUBAREA1 and SUBAREA2 area. is exists, whereas if we see that there are no lines for AREA2 with the value SUBAREA2 in the place, even regarding the Domain3, there is no line that has the value of the SUBAREA1 location and even for AREA4, there is no line as location = AREA4. It is a table which is having all the names of place with nested values; for example, we can see that vill7 is exist in zone2 including SUBAREA1 (COLUMN NAME) = "SUBAREA1" AND SUBAREA2 (COLUMN NAME) = "SUBAREA2", but I would like to know location = SUBAREA2 then it will say no line, I want to generate all the lines that is to have no value in the column location for said AREA/SUBAREA1/SUBAREA2 column. Table is sorted by ID. Total column lines are 45800.
    SQL> select * from vill where area='AREA1' and location='SUBAREA1';
    
            ID AREA                 SUBAREA1             SUBAREA2             LOCATION
    ---------- -------------------- -------------------- -------------------- --------------------
             2 AREA1                SUBAREA1             SUBAREA2             SUBAREA1
    Ok
    SQL> select * from vill where area='AREA2' and location='SUBAREA1';
    
            ID AREA                 SUBAREA1             SUBAREA2             LOCATION
    ---------- -------------------- -------------------- -------------------- --------------------
             9 AREA2                SUBAREA1             SUBAREA2             SUBAREA1
    It is also ok, but if said
    SQL> select * from vill where area='AREA2' and location='SUBAREA2';
    
    no rows selected 
    < <-Yes, this line I want to generate, because there should be a line whose location = "SBUAREA2" but why? Because otherwise how do I know what is the hierarchy of the SUBAREA2; While vill 5,6,7 and 8 were SUBAREA2 as "SUBAREA2".

    I'm not sure how I am clear in my question, please let me know if I need to provide more details.

    Thank you.

    user12050217 wrote:
    ... query should return:

    ID AREA                 SUBAREA1             SUBAREA2             LOCATION
    ---------- -------------------- -------------------- -------------------- --------------------
    131 my state             my city              my city              street 2
    

    Sorry, I don't understand that one line. Was it a mistake? I think I understand all the other lines that you want to, but I do not understand why you want the one above. Did you mean

    ID AREA                 SUBAREA1             SUBAREA2             LOCATION
    ---------- -------------------- -------------------- -------------------- --------------------
    131 my state             my city              street 2             street 2
    

    ?

    If this is not the case, why you don't want the row immediately above? Why don't you also:

    `       ID AREA                 SUBAREA1             SUBAREA2             LOCATION
    ---------- -------------------- -------------------- -------------------- --------------------
           131 my state             new city             new city             street 2
    

    ?

    Assuming it was just a mistake, the following Gets the results you want

    WITH     rows_needed     AS
    (
         SELECT     area
         ,     area          AS subarea1
         ,     area          AS subarea2
         ,     area          AS location
         FROM     vill
         WHERE     area           != subarea1
         OR     area          != subarea2
         OR     area          != location
        UNION
         SELECT     area
         ,     subarea1
         ,     subarea1     AS subarea2
         ,     subarea1     AS location
         FROM     vill
         WHERE     subarea1     != subarea2
         OR     subarea1     != location
        UNION
         SELECT     area
         ,     subarea1
         ,     subarea2
         ,     subarea2     AS location
         FROM     vill
    )
    SELECT     (
              SELECT     MAX (id)
              FROM     vill
         ) + ROWNUM          AS id
    ,     area, subarea1, subarea2, location
    FROM     rows_needed
    WHERE     (area, subarea1, subarea2, location)
               NOT IN (
                       SELECT  area, subarea1, subarea2, location
                       FROM    vill
                     )
    ;
    

    except that it is for an indefinite period including the ID will assign to what line. I guess that doesn't matter, as long as 130 to 137 numbers are used (or 131 to 138, if that is what you really want).

    When I run your code on the table he returned me the desired output, but when I run it on my actual table that is having 45800 lines, then he messed up some results, because I think that in your code, I should mention the clause ORDER BY ID somewhere... Therefore, in this example I mention different IDS while inserting the lines. Your code worked very well because it is having only 25 rows with ID Ordered, while my actual table is to have 45800 lines in the table, there is no guarantee of ID ordered... so I think that its a problem with the order by clause, ID... but I don't know where I should put this clause

    What is the significance of id? Is this just a unique key? That's, I guess that each line must have an id and two rows can have the same id, but, aside from that, it doesn't matter what line has which id.
    The query I posted yesterday assumes that subarea1 and subarea2 were functionally dependent on the area. as in the example of data you posted yesterday. I see your last post that's not true, and which explains erroneous results.

    As I said yesterday, if you are actually setting up new lines in the table, you must use a sequence to generate identifiers.

  • Deskjet F4400 all in one test page prints the missing lines and partial characters

    Haved tried to use the doctor print re - install the printing software, clean print cartridges, manual and automatic. Tried new print cartridges, nothing seems to help.  Someone has ideas of what to try?

    Sorry, this printer does not have the detachable printhead.

    You may have to contact the HP Support (1800-474-6836).

  • Display the missing lines in the group by statement

    Hello

    I have the following case:

    create the table test_table1
    (status varchar2 (15))
    number of Manager
    Sale number);

    insert into test_table1 values ('in progress', 14, 100);
    insert into test_table1 values ('in progress', 15, 10);
    insert into test_table1 values ('in progress', 15, 40);
    Insert into test_table1 values ('fact', 14, 200);
    Insert into test_table1 values ('fact', 16, 50);

    Select Manager, status, sum(sales)
    of test_table1
    Group Manager, status
    order by Manager, status;

    14 200 fact
    14-100 process
    15 process 50
    16 fact 50

    But I need the following result:

    14 200 fact
    14-100 process
    15 0 done
    15 process 50
    16 fact 50
    16 to process 0

    Please advise,
    Thank you!

    something like

    SQL> select manager
      2       , st
      3       , nvl (sum (sales) , 0)
      4    from test_table1 t partition by (manager)
      5    right outer
      6    join (select 'done' st from dual
      7          union all
      8          select 'in process' from dual
      9         ) sts
     10      on (t.status = sts.st)
     11  group by manager
     12         , st
     13   order by manager
     14          , st
     15  /
    
       MANAGER ST         NVL(SUM(SALES),0)
    ---------- ---------- -----------------
            14 done                     200
            14 in process               100
            15 done                       0
            15 in process                50
            16 done                      50
            16 in process                 0
    
    6 rows selected.
    
  • Sierra: The missing in Email subject line

    I upgraded to Sierra and for some reason any in Mac Mail, the subject line has completely disappeared. I can see part of it in the preview to the left, as well as the sender and first line or more. How to make the subject line in the view on the far right in Mac Mail?

    Thank you!

    Vanders

    OMG I can't believe that everything they did was move and remove the label: "subject"! It appears right under the sender and before "to: I was so use to see above the gray line separating the headers from the body of the email, I was totally missing it! Thanks to all of you who have read my question!

  • Missing lines in print Outlook calendar, but not with the PDF printer

    Hello

    I bought a HP Officejet 6700 Premium [H711n], but from the beginning, when I print my weekly calendar in Outlook there are missing lines in each nomination.

    My system:

    The system is HP Officejet 6700 Premium (all updates, driver ver: 9.0.0, usbscan.sys worm: 6.1.7600.16385, HPScanTRDrv_OJ6700.dll worm: 25.0.614.0, HPWia2_OJ6700.dll ver: 24.5.276.0), and Windows 7 SP1 32 bit (all updates), as well as Microsoft Outlook 2007 SP3 (all updates). The system is connected to the printer via USB, no WiFi or so.

    My problem:

    When I print my weekly Outlook calendar with my new Officejet, the upper and the bottom lines in all appointments is missing. I did a few small arrows in the photo, to show that appointments block timelines. (see scan & Outlook screenshot).

    (a) when I use my printer with Outlook to create a PDF file of my calendar, the exported PDF file is perfect. If I CAN open the PDF file with my Viewer and print calendar with my Officejet page, printing looks like it should look like. (see screenshot)

    (b) my old man, but broke a LEXMARK C530DN printer, print the pages of the calendar always correctly.

    My settings:

    Given that I bought and installed the printer a few weeks ago, I changes nothing on the HP driver settings. It is plain vanilla. The problem was there from the beginning. I tried once to solve it by changing the quality of "normal" to "optimal", but it did not help, so I put it back.

    Other printing problems:

    No, everything worked except the Outlook calendar printing.

    According to me, these are enough detail to reproduce the issue easily.

    Any idea outside workaround with my pdf printer? Maybe there something wrong with the driver HP itself? (Just an idea...)

    Best regards

    Michael

    Hi Raysy,

    Still having problems?  The suggestions helped?

    Kind regards

  • Impossible to uninstall a program error: unable to generate the uninstaller for ca aintivirus E9030 command line.

    Original title: impossible to uninstall the program error msg

    I'm unable to uninstall a program, an error message keeps popping up saying "error E9030 cannot generate the uninstaller for ca aintivirus command line.
    can anyone help?

    Original title: impossible to uninstall the program error msg

    I'm unable to uninstall a program, an error message keeps popping up saying "error E9030 cannot generate the uninstaller for ca aintivirus command line.
    can anyone help?

    Try this... no guarantee

    Start > computer > open C: drive > open the Progran files > y at - it a record of the Ca antivirus?
    If so, open it > is there a uninstaller.exe file here?
    If so, open it and let go about uninstalling.

    Or,

    Start > all programs > CA antivirus > y at - it an option to uninstall?

    Hope one of these AIDS.

  • Is there a way to generate a report via the command-line script or groovy?

    I would like the option to generate a report (for example, model "Host physical load summary") from the command line, where I will provide the settings he needs.   Is there a way to do in groovy?

    Okay, maybe this constant is not declared in 5.5.8.2 yet. Just replace-1

  • I'm trying to sign several documents and I have my saved signature under "fill &amp; sign" the organization that generated the forms highlighted the signature lines and when I try to put my signature, it is pushed outside the signature.

    I'm trying to sign several documents and I have my saved signature under "fill & sign" the organization that generated the forms highlighted the signature lines and when I try to put my signature, it is pushed outside the signature.

    Hi katepell,

    You can simply drag the signature to the desired place by holding it with the mouse.

    Thank you

    Abhishek

  • Remove the first line xml generated xml to VO

    I am combining multiple xml files to generate the report using BIPublisher. I generated xml based on a VO by using VO.writeXML. How can I remove first row (<? xml version = "1.0"? >) in the xml file?

    Use the transformer and setOutputProperty to omit the first line.

    Transformer transformer = TransformerFactory.newInstance () .newTransformer ();
    transformer.setOutputProperty (OutputKeys.OMIT_XML_DECLARATION, 'yes');

    Edited by: Puthanampatti Dec. 6 2012 18:42

  • How to generate PDF and CHM of the command line files in windows?

    I'm trying to set up a PC to build certain documents during the night. I was looking for a way to get from framemaker to generate PDF and CHM files through a command line in windows? How this is done with FrameMaker 12

    Thanks for the help

    Alex

    I have the pdf part of this work now. Make a jsx which generates the PDF file via the doc. Save(). And when the pdf file is generated the script then shut down of FrameMaker via the application. Close method.

    I then just copy the script in FrameMaker autorun dir and start FrameMaker to get the pdf genenerated.

    Now, I'm trying to do something with the chm filegeneration. But I can't find anything on how to get FrameMaker to make the extend script CHM files. Is there anyone who have some good places to look for that?

    Thanks for the help

    Alex

  • TextBox multiline missing the first character after the new line

    Hello, I do a pdf report that swaps 2 pages back (the content is the same except for one table), essentially what happens when you click on the button 'page swap' is:

    1. get all the values of the fields in the page that will be deleted in a table "buffer".
    2. delete the page
    3. Insert the other page
    4. Fill out all field values values in the buffer

    So the thing is that in line with several text boxes is missing the first character each new line after this process if I change the content, if I do not change the content, while I share the pages and transfer field values, it makes it ok, it doesn't matter what line change it and how many lines I change in the text box together multiline each new line, I get a character less at the beginning of a new line (except for the first character of the first line).

    I'll try to work program autour with text.replace ('\n', '< br >') or something if I miss a few key configuration for this.

    I use Acrobat Pro 11.0.06 on a Windows 7 Professional client on a 20(3.13.10-200.fc20.x86_64) of Fedora host.

    Thanks in advance

    If you remove the option of formatting rich text for the field, it works fine. "In addition, I don't understand why you need the whole thing to replace line breaks with.
    "tags...". It is not at all necessary.

  • The line of the last line of each table page is going to be missing.

    Hi Experts,
    In OBIEE 11.1.1.6.0, I have a report contains more than one line. "When I click on" PDF "Print", the last line of each table page line will be missing. " Why?
    Are you facing the same case? How soluve this question? Thank you.

    Hey Kobe,

    The question, looks lke a bug. Here's the work around, change the table view, click the properties of content next to the text "Table" (at the top of the columns and measures) in the layout-> position In Border pane to choose custom and select only the bottom edge (horizontal line). Now export to pdf format, you must see the border for the last row on each page.

    Kind regards
    DpKa

Maybe you are looking for