Row template showing always additional empty row

Hi everybody,
When I used row templates with apex 3 it worked fine. With apex 4, I always get an empty row in addition to the ones I query.
This behavior appears with firefox 3.6.7 as well as with ie 8. The standard report template "value attribute pairs" causes the same wrong behavior.
I appreciate any hints.
Robert

Hi Dan
Thank you very much for looking at my problem. I have created an example. Please have a look under:
workspace: processlink
userid: admin
password: admin
application no: 395
Thank you
Robert

Similar Messages

  • Empty Row ?????

    Hi
    I have a page with a grid with Record name My_Record. Grid delivered add row is not used instead a custom add Button is present below the grid to add a row .
    On Field Change of Custom Add Button :
    &Rowset0 = GetLevel0();
    &Rowset1 = &Rowset0(1).GetRowset(Scroll.My_Record);
    &Rows = &Rowset1.ActiveRowCount;
    If &Rows = 1 And
    &Rowset1(1).IsNew Then
    &NewRowNumber = 1; /* component variable to track current row */
    Else
    &Rowset1.InsertRow(&Rows);
    &NewRowNumber = &Rows + 1; /* component variable to track current row */
    End-If;
    &RETURN_MODAL = DoModal(Page.MY_SEC_PAGE, "", - 1, - 1, 1, Record.My_Record, &NewRowNumber);
    but when i save first time , it always going to save an additional empty row in the record.
    How an empty row is bieng inserted ?
    On page there is no field on Level0 , if this is the issue ?

    Problem Solved....
    There was another Page in the Component which was no longer required. It had fields of this Record at Level 0 so when Save was called, it saved an Empty Row.
    Edited by: Mohsin on Aug 15, 2012 4:52 PM

  • Row Template Condition doesnt working

    Hi all,
    i have a self made "row template" for my report:
    "Before Rows":
    <table cellpadding="5" cellspacing="0" border="0" summary="">
    <tr>
    <th>ID</th>
    <th>ID_SHOW</th>
    <th>TITEL</th>
    <th>DOCUMENT</th>
    <th>status_external</th>
    <th>status_internal</th>
    <th>action</th>
    <th>tage_action</th>
    <th>crreated_on</th>
    <th>tage_anlage</th>
    <th>creator_name</th>
    <th>editor_hotline_display</th>
    <th>prio</th>
    <th>color</th>
    <th>erledigung_bis</th>
    <th>histo</th>
    <th>arbeitskorb</th>
    </tr>
    "Row Template 1"
    <tr class="#1#">
    <td >#2#</td>
    <td>#3#</td>
    <td style="background-color: yellow;">#4#</td>
    <td>#5#</td>
    <td>#6#</td>
    <td>#7#</td>
    <td>#8#</td>
    <td>#9#</td>
    <td>#10#</td>
    <td>#11#</td>
    <td>#12#</td>
    <td>#13#</td>
    <td>#14#</td>
    </tr>
    "Row Template 2"
    <tr class="#1#">
    <td>#2#</td>
    <td>#3#</td>
    <td>#4#</td>
    <td>#5#</td>
    <td>#6#</td>
    <td>#7#</td>
    <td>#8#</td>
    <td>#9#</td>
    <td>#10#</td>
    <td>#11#</td>
    <td>#12#</td>
    <td>#13#</td>
    <td>#14#</td>
    <td>#15#</td>
    <td>#16#</td>
    <td>#17#</td>
    <td>#18#</td>
    </tr>
    "Row Template 2 Condition" - use based on PL/SQL Expression
    '#DOCUMENT#' is null
    The "Row Template 1" is to be show only if Column "DOCUMENT" is not null, otherwise "Row Template 2" is to be show if Column "Document" is null. I have test various examples:
    '#4' is null, '#4#' is null and '#DOCUMENT#' is null. Without effect. Only "Row Template 1" is showing.
    Can anybody help me?

    Hi,
    null in conditions would return no value rather than 'null' - you can catch this by using an empty string - so:
    '#4#' = ''Andy

  • Create empty row

    Hi All,
    I face some problem to create empty row. I need a empty row to show user that is end of operation.
    The output that I need as below.
    OprA     OprB     Data
    A100     (null)     Definition
    (null)     B100     Definition
    (null)     (null)     (null)
    A200     B200     Definition
    A200     (null)     Definition
    (null)     B200     Definition
    (null)     B200     Definition
    all of the null column from row 1, 2, 4, 5, 6, 7 is direct select from table. The row 3 is what I want to create. example A100 is same group with B100. After show last B100, is end of operation '100'. and need a empty or null row. Then continue with operation '200'.
    Thanks for who help me on this.

    Hi Skymonster,
    Not sure how you would be doing your processing.
    However assuming if you are doing it one after the other, meanig you first process 100 display it (here is where you want to append 200 now)
    here is one way of doing it.
    with data as (
    select 'A100' a,null b ,'DEFINiTION' c from dual union all
    select null,'B100','DEFINiTION' from dual),
    dat2 as (
    select null,'B200','DEFINiTION' from dual union all
    select 'A200',null,'DEFINiTION' from dual union all
    select null,'B200','DEFINiTION' from dual)
    select * from data
    group by rollup(a,b,c)
    having (grouping(a)=1 and grouping(b)=1 and grouping(c)=1) or
    (grouping(a)=0 and grouping(b)=0 and grouping(c)=0)
    union all
    select * from dat2However i am of the strong opinion that formatting should be handled by front end application and not in such a manner especially in this case.
    Peter's example is much better than mine where you directly uinon NULL
    Howver if you can give a clue how we can identify end of a record that will be helpfull.
    Regards,
    Bhushan

  • Delete empty rows while having empty xml tag

    I've seen something like same but it doesn't work for me. I have a table which is created using xml rules, some time it contains empty xml tag also converted into row but I don't want these empty rows. After table creation empty rows need to be deleted.
    I've got this script from this forum which delete empty rows
    for(var i=myDocument.textFrames.length-1; i>=0; i--){
      for(var j=myDocument.textFrames[i].tables.length-1; j>=0; j--){
       for(var k=myDocument.textFrames[i].tables[j].rows.length-1; k>=0; k--){
        myContents = 0;
        for(var l=myDocument.textFrames[i].tables[j].rows[k].cells.length-1; l>=0; l--){
         if (myDocument.textFrames[i].tables[j].rows[k].cells[l].contents != "") myContents++;
         if (myContents == 0) myDocument.textFrames[i].tables[j].rows[k].remove();
    but incase of any cell contains empty xml element it goes blank. Could any one help on this.
    Thanks
    Mac

    Gyan,
    Thanks for your help. I have modified the code as below:
    public void removeblankline()
    OAViewObject rvo = (OAViewObject)findViewObject("NCRPaymentExtLineVO1");
    Row row[] = rvo.getAllRowsInRange();
    System.out.println("Remove all blank rows");
    System.out.println("Total Rows"+rvo.getRowCount());
    int jcount = rvo.getRowCount();
    for (int j=0;j< jcount;j++)
    NCRPaymentExtLineVORowImpl rowj = (NCRPaymentExtLineVORowImpl)row[j];
    System.out.println("Check Line Number: "+j);
    System.out.println("Line Type Lookup Code: "+rowj.getLineTypeLookupCode());
    if((rowj.getLineTypeLookupCode()==null)||("".equals(rowj.getLineTypeLookupCode().trim())))
    System.out.println("Removed Line Number: "+j);
    rowj.remove();
    System.out.println("Processed with Line Number: "+j);
    } // end removeblankline
    This is the change I have done:
    int jcount = rvo.getRowCount();

  • Advanced Table delete empty rows

    Hi
    I added logic to add 10 empty rows and to delete the empty rows when the form is submitted. But somehow it only deletes the rows in current screen of the Advanced Table. if there are 15 rows and I click next to go the last 5 and submit the form it deletes only the 5 empty rows but not the other 10 rows in the previous section.
    where am I doing wrong?
    Thanks
        Row [] row = null;
        ExpAttendeesVORowImpl rowi = null;
        if( expattendeesvoimpl1 != null )
            row = expattendeesvoimpl1.getAllRowsInRange();
            System.out.println("No of items "+row.length);
        for (int i=0;i<row.length;i++)
             pageContext.writeDiagnostics(this, "in loop ", 2);
             rowi = (ExpAttendeesVORowImpl)row;
    pageContext.writeDiagnostics(this, " in loop row "+ rowi.getName(), 2);
    if((rowi.getName() == null))
    pageContext.writeDiagnostics(this, "deleting row"+ rowi.getName(), 2) ;
    rowi.remove();
    Thanks

    you could instead try using:
    expattendeesvoimpl1.getFilteredRows("Name", null);

  • Help with an empty row....

    Updating the table I created an empty row but it can't be
    delete. I created a delete link is working with values in the row
    but not with an empty row. Any help???
    Thanks;
    Bebeivan

    Does this table have a primary key? If so, at least one field
    has a value.

  • Empty rows don't show

    Hello Experts!
    I have a crosstab, which contains Years on the left and some statstic values on the right for each Schools.  Since not all schools have data for each years.  My crosstab will skip some rows when no data have found for some years of the school.  But I want to show all rows even no data was found.
    Although I have checked all "YES" for "Show rows with empty measure....", "Show empty columns", "Show rows with empty dimension values", "Show empty columns", "Show rows with empty dimension values" and "Show when empty" in Edit Format - Display properties.
    The empty rows just won't show up.  Did I miss something?  Please help all experts.
    Thanks.

    Hi Jonathn,
    Have a look on the SAP note 1295827 - When unticked, the 'Show when empty' property for a table in a WebIntelligence report does not work as expected if the table contains null values.
    Symptom
    'Show when empty' property for a table does not work as expected in WebIntelligence report when it is unticked.
    If table contains null values, this does not work.
    Need to hide the table but it is always displayed.
    Reproducing the Issue
    Open Club.mdb & remove 'French Riviera' from Resort table. 
    Login to Infoview & create a new WebIntelligence report using Island Resorts.unv selecting Country and Resort objects. Insert condition on Country=France. Run query.
    Remove <Country> column from the table.
    Select the table and go to Properties.
    The option 'Show when empty' is ticked by default. Untick this -> The table is still displayed.
    WebIntelligence XI Release 2
    WebIntelligence XI 3.0 & 3.1
    Cause
    If this is unticked & the table contains null values, the table is still displayed. This is normal behaviour - this feature does not work with null values in a table.
    Resolution
    The 'Show when empty' functionality, when unticked, only hides the table when it is entirely empty, i.e. when no rows have been returned in the query. It is then only visible in 'Structure' mode.
    For hiding a row which is empty, untick the option/s 'Show rows with empty measures/dimensions'. But the entire row must be empty before it will be hidden by this feature.
    Make use of this for good report design if there are many tables/blocks within the report. If the tables are empty, it's best if they are hidden from view.
    I hope this will help.
    Regards,
    Hitesh

  • Print Empty rows in a Template

    Hi All,
    my requirement is to create a template for payslip, which contains earnings, deductions & Net Amount.
    If an employee has 10 earnings and 6 deductions and another employee has 3 earnings and 2 deductions then the Template is differ's based on the data.
    For both the employees, the template should look same, so by inserting empty rows, i think it is solved...
    How to insert Empty Rows in the Template?
    Did anyone get this working and knows what I am doing wrong?
    Regards,
    Dilip

    I think the query is not returning all the data desired.
    You need a zero value for each deduction/earning per employee in the query results.
    To get the query to give all the necessary zeros I would do a union that is simply all the employees returned in the first part of the query matched up with the table(s) that have all the deduction and earnings fields.
    Of course the amount of the earnings or deductions would simply be an expression - zero.
    Then when the data is run against the xmlp template, it would have to sum the values.
    This would make all the reports come out the same.
    The way to think about the the xmlp template is that it does a loop/filter through your data.
    If your loop is on employee - it is only going to return the rows with that employee.
    If that employee does not have a certain deduction then it will not show up.
    If your loop is on deduction or earnings - it is only going to return the rows with that employee.
    Now if you have a fixed list of deductions/earnings then you can code this into the xmlp template - tedious, but it will work.
    If your deductions/earnings ever change, you will have to perform maintenance on the report.

  • How can I show additional tab rows when using many open tabs?

    How can I show additional tab rows when using many open tabs?

    What method (code) did you use to get the Tab bar displaying in the space used for the Navigation Toolbar (location bar)?
    The Tab bar should be displayed above the Navigation Toolbar.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Help:  Can't get empty row to show up in tableLayout

    When I add a row to my tableLayout, it ONLY shows up if there's some text in an outputText. I just want an empty blue row. How do I get it to show up. The code I'm using is below, the last row never shows up unless I put some text in the outputText. Even if I put spaces/blanks in the outputText nothing shows up.
    Thanks
    <afh:tableLayout borderWidth="2">
                                    <afh:rowLayout>
                                      <afh:cellFormat halign="start" width="5%"
                                                      rendered="true">
                                        <af:outputText value="Object Code"
                                                       inlineStyle="color:rgb(153,0,0); font-weight:bold;"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center" width="12%">
                                        <af:outputText value="0100"
                                                       inlineStyle="color:rgb(0,0,0); font-weight:bold;"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center" width="12%">
                                        <af:outputText value="0200"
                                                       inlineStyle="color:rgb(0,0,0); font-weight:bold;"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center" width="12%">
                                        <af:outputText value="0300"
                                                       inlineStyle="color:rgb(0,0,0); font-weight:bold;"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center" width="5%"
                                                      rendered="true">
                                        <af:outputText value="Object Code"
                                                       inlineStyle="font-weight:bold; color:rgb(153,0,0);"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center" width="12%">
                                        <af:outputText value="0120"
                                                       inlineStyle="color:rgb(0,0,0); font-weight:bold;"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center" width="12%">
                                        <af:outputText value="0150"
                                                       inlineStyle="color:rgb(0,0,0); font-weight:bold;"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center" width="15%">
                                        <af:outputText value="0230"
                                                       inlineStyle="color:rgb(0,0,0); font-weight:bold;"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center" width="15%">
                                        <af:outputText value="0240"
                                                       inlineStyle="color:rgb(0,0,0); font-weight:bold;"/>
                                      </afh:cellFormat>
                                    </afh:rowLayout>
                                    <afh:rowLayout>
                                      <afh:cellFormat halign="start"
                                                      rendered="true">
                                        <af:outputText inlineStyle="color:rgb(153,0,0); font-weight:bold;"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center">
                                        <af:inputText columns="10"
                                                      readOnly="false"
                                                      required="false"
                                                      showRequired="true"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center">
                                        <af:inputText inlineStyle="color:rgb(0,0,0);"
                                                      disabled="false"
                                                      readOnly="false"
                                                      columns="10" required="true"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center">
                                        <af:inputText inlineStyle="color:rgb(0,0,0);"
                                                      columns="10"
                                                      readOnly="false"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center"
                                                      rendered="true">
                                        <af:outputText inlineStyle="font-weight:bold; color:rgb(153,0,0);"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center">
                                        <af:inputText inlineStyle="color:rgb(0,0,0);"
                                                      columns="10"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center">
                                        <af:inputText inlineStyle="color:rgb(0,0,0);"
                                                      columns="10"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center">
                                        <af:inputText inlineStyle="color:rgb(0,0,0);"
                                                      columns="10"/>
                                      </afh:cellFormat>
                                      <afh:cellFormat halign="center">
                                        <af:inputText inlineStyle="color:rgb(0,0,0);"
                                                      columns="10"/>
                                      </afh:cellFormat>
                                    </afh:rowLayout>
                                    <afh:rowLayout inlineStyle="background-color:rgb(0,0,255);">
                                      <afh:cellFormat
                                                      rendered="true" width="100%"
                                                      inlineStyle="background-color:rgb(255,255,255);"
                                                      columnSpan="9">
                                        <af:outputText inlineStyle="color:rgb(153,0,0); font-weight:bold;"/>
                                      </afh:cellFormat>
                                    </afh:rowLayout>
                                    <afh:rowLayout inlineStyle="background-color:rgb(57,0,115); color:rgb(0,33,115);">
                                      <afh:cellFormat rendered="true" width="100%" columnSpan="9"
                                                      inlineStyle="color:rgb(0,0,214);">
                                        <af:outputText value=""/>
                                      </afh:cellFormat>
                                    </afh:rowLayout>
               </afh:tableLayout>

    Hi,
    did you try a spacer component from the component palette?
    Frank

  • Empty row using decode

    when I use the decode function I always get extra empty rows in my results. Why is this? Is it because I don't use a default value?
    I always have to use a where statement to eliminate those empty rows, like in the following statement.
    select
    decode(table.field1,'field1value','output')
    from
    table
    where
    table.field1='field1value'

    Let me try to explain using your example:
    SQL> create table mytable
      2  as
      3  select 'Weight' field1, '2' field2 from dual union all
      4  select 'Colour', 'red' from dual union all
      5  select 'Size', 'L' from dual
      6  /
    Tabel is aangemaakt.So, the table has three rows.
    SQL> select decode(Field1,'Weight',Field2)
      2    from mytable
      3  /
    DEC
    2
    3 rijen zijn geselecteerd.Since you don't have a where clause, you don't restrict the number of rows returned. The row appears empty because of the decode function, which says: "if field1 is equal to 'Weight' then display field2 else display nothing".
    SQL> select field1
      2       , field2
      3       , decode(Field1,'Weight',Field2)
      4       , decode(Field1,'Weight',Field2, field1)
      5    from mytable
      6  /
    FIELD1 FIE DEC DECODE
    Weight 2   2   2
    Colour red     Colour
    Size   L       Size
    3 rijen zijn geselecteerd.This shows that the rows are not empty, only the third column is. The fourth column is a similar decode function but with a fourth argument that additionally says "if field1 is not equal to 'Weight' then show me field1 instead of field2"
    But I guess you really want one row, the row containing 'Weight', which can be easily achieved by a where clause:
    SQL> select field2
      2    from mytable
      3   where field1 = 'Weight'
      4  /
    FIE
    2
    1 rij is geselecteerd.Hope this clarifies.
    Regards,
    Rob.

  • How to add empty rows in table in smart form

    how to add empty rows in table in smart form?
    plz help me regarding this
    send me ur queries to [email protected]

    You will need to add some extra rows to the internal table that your table is displaying.  Use a program node to append additional rows with a key but no argument.
    Alternaively a template may me more suitable for your requirement than a table.
    Finally, please do not include you e-mail address in your question.  Your question and the answers provided to it are for the benefit of everyone in the Community.
    Regards,
    Nick

  • Report Row Template: Column condition

    In a classic report using a Generic Column template, one can use the Column Condition attribute to conditionally render the column.
    But when using a named column (row template), even though the Builder allows one to specify this condition, it doesn't appear to be used.
    So how would one implement conditional column display in these templates?
    Thanks

    Hi,
    That's actually easier. See: [http://apex.oracle.com/pls/otn/f?p=267:60]
    The SQL for both reports is:
    SELECT EMPNO, ENAME, NVL(SAL,0) SAL, NVL(COMM,0) COMM
    FROM EMP
    ORDER BY EMPNOThe SAL and COMM columns have been formatted using:
    999G999G999G999G990D00For the Row Template, the Row Template 1 setting contains an empty space (you have to have something in there otherwise Apex adds back in a default row containing five cells!). The condition for this is:
    TO_NUMBER('#COMM#','999G999G999G999G990D00') < 100The template will see the data as a string, so we use the same number format to convert that string back into a number and compare this to 100. If we didn't use formatting on the numbers and we are sure that every row contained a number (hence the use of NVL()), then you could use:
    #COMM# < 100Row Template 2 contains the format for the rows that need displaying:
    &lt;tr&gt;
    &lt;td class="t18Data"&gt;#1#&lt;/td&gt;
    &lt;td class="t18Data"&gt;#2#&lt;/td&gt;
    &lt;td class="t18Data" style="text-align:right"&gt;#3#&lt;/td&gt;
    &lt;td class="t18Data" style="text-align:right"&gt;#4#&lt;/td&gt;
    &lt;/tr&gt;and is unconditional.
    The only other settings on the Row Template are the Before Rows:
    &lt;table class="t18Standard" style="border-collapse:collapse; border:1px solid black;"&gt;
    &lt;tr&gt;
      &lt;th class="t18ReportHeader"&gt;Empno&lt;/th&gt;
      &lt;th class="t18ReportHeader"&gt;Ename&lt;/th&gt;
      &lt;th class="t18ReportHeader" style="text-align:right"&gt;Sal&lt;/th&gt;
      &lt;th class="t18ReportHeader" style="text-align:right"&gt;Comm&lt;/th&gt;
    &lt;/tr&gt;and After Rows:
    &lt;/table&gt;Of course, you will note that the record counters at the bottom still show the number of records in both reports - as the SQL still outputs the same data, this doesn't change.
    Andy

  • DataTemplate Not showing data but showing correct amount of rows

    I just started using Datatemplates to convert our Answers Reports over to Publisher. Basicly I am using the direct SQL to BI Server method.
    Copy the SQL from the advanced SQL field in BI Answers.
    Place new SQL in DataTemplate
    Construct DataStructure
    It seems to be getting the proper amount of rows but none of the data is shown. I have checked the data multiple times for spelling errors and other simple items but I can't find it. It seems to be making a connection just fine but it does not show and value in the data elements. It just returns 6 empty rows.
    Example XML Attached:
    <dataTemplate name="FiveDayCo" defaultPackage="" dataSourceRef="OracleRPD">
         <properties>
    <property name="include_parameters" value="true"/>
    <property name="include_null_Element" value="true"/>
    <property name="include_rowsettag" value="false"/>
    <property name="scalable_mode" value="off"/>
    <property name="db_fetch_size" value="300"/>
    </properties>
         <parameters/>
         <lexicals/>
         <dataQuery>
              <sqlStatement name="COOR" ><![CDATA[SELECT "- Correspondence"."% 5 Day Correspondence Response Time" saw_0, '90%' saw_1, "- Correspondence"."% 5 Day Correspondence Response Time"-90 saw_2, "- Correspondence Details"."Correspondence Type" saw_3 FROM Finance WHERE ("- Correspondence Details"."Correspondence Type" IN ('Customer Service', 'Routine', 'Undeliverable', 'Privacy')) AND ("Business Unit"."Business Unit ID" = 6.00) AND ("- Record Details"."Record Type" = 'CORE') AND ("- Correspondence Details"."Correspondence Status" <> 'Closed') AND (("- Primary Expected Completed Date"."Primary Expected Year" = cast (YEAR( date '2010-07-01') as char(4)) ) AND ("- Primary Expected Completed Date"."Primary Expected Calendar Month" = MONTH( date '2010-07-01'))) ORDER BY saw_1, saw_3]]></sqlStatement>
         </dataQuery>
         <dataStructure>
              <group name="Coorespondence" source="COOR" >
                   <element name="FiveDayCoorespondenceTime" source="saw_0" function=""/>
                   <element name="KPIValue" source="saw_1" function=""/>
                   <element name="Variance" source="saw_2" function=""/>
                   <element name="CoorespondenceType" source="saw_3" function=""/>
              </group>
         </dataStructure>
    </dataTemplate>

    A few things to check. Does the sql by itself return data?
    Also, do you need the following: <dataTemplate name="FiveDayCo" defaultPackage="" dataSourceRef="OracleRPD"> ? If a package is not used/necessary, remove the reference.
    The following tag should be enough.
    <dataTemplate name="FiveDayCo">
    Your datastructure code should be: (for element name use value (instead of source = ) and I removed function syntax since you didn't specify any function like sum, average)
    <dataStructure>
    <group name="Coorespondence" source="COOR" >
    <element name="FiveDayCoorespondenceTime" value="saw_0" function=""/>
    <element name="KPIValue" value="saw_1"/>
    <element name="Variance" value="saw_2"/>
    <element name="CoorespondenceType" value="saw_3"/>
    </group>
    </dataStructure>
    For a good data template reference, check out the following: http://blogs.oracle.com/xmlpublisher/2009/06/data_template_progression.html
    Hope that helps!

Maybe you are looking for

  • ITunes Causing Problems for Weeks

    Hello-- I know that this question has been asked countless times...because I've read ALL of the questions and answers. I've also followed every single step and option the Apple Help Website has listed and have googled it, checked Dell and other PC fo

  • Regarding goodsmovement  IDOC

    Hi guys,   I have to do goods receipt/issue with serial number assignment and some  custom fields population . with WMMBID02 IDOC i can extend the idoc and send custom fields but i cant do serial number assignment.if i use MBGMCR02 i can do the seria

  • High Noise on Analog Output PCI 6289

    Hi guys I am using  a PCI 6289 M series device for A/D characterization , I am using the device both for the analog output generation and also for data acquistion of the digital lines , The dynamic tests for the A/D were showing a very poor SNR ratio

  • Customer specific service required on ESS

    Hello experts, I have the requirement to call the Z T.Code in Employee Search Page. For that I have created a Z  resource and entered the URL of PCD page, which is also entered in PCD on portal. Next we created a Z service and assigned the z resource

  • How to stop the ken burns effect on ipad and add only single photos

    Hi. I would like to create a time lapse in iMovie. However i would like to add 1 picture (not automatically add 6 of the same image) at a time and not have the Ken Burns effect