Change Labels on Summary Columns

Could anyone advice me how to change labels on the summary columns on a cross tab report?
Current it shows for e.g. count(orders).
I would like to change it to "Order Count"
Also how can i change the value format on a drill down report?

Hi,
Thanks a lot for your answers.
First, on umResetPasswordPage.jsp I have found the code where "LAST_NAME" must take a value from other file (Could be from umelogonbase.jar?) so, maybe it is not the right place to change it, isn't it? or did you suggest by other way?? This is the code on the umResetPasswordPage.jsp file:
<td width="161" height="20">
        <label class=urLblStd for="logonlastnamefield">
          <%=logonLocale.get("LAST_NAME")%>
          <span class=urLblReq> *</span>
        </label>
      </td>
Second, On Portal Content there is not any Page/Iview wich manage this Support (LogonHelpApp) page openned by "get Support" link on Welcome Portal Page. At this time, I could not find if is it a webdynpro or other component Portal....

Similar Messages

  • Change of source of Summary columns in RDF

    Hello Everybody.
    For the existing query column in RDF, which is used by one of the summary column as source.
    If the query is getting changed as per the bussiness requirement, the source of the Summary column is changing to NULL.
    Is there any way not to allow this change in RDF. Because lot of query modifications are done.And it consumes lot of time to change every source of the Summary columns being used.
    Appreciate your help.
    Thanks.

    Yogesh,
    Does both the clients allow development in the server? Generally it should not be the case.
    Does the client still exists in the server?
    Here is a thread with replies for such an error message.
    Re: regarding Client change for transport request
    Check it,it may give you some lead.
    K.Kiran.

  • Summary column value changing to NULL in RDF

    Hello Everybody.
    For the existing query column in RDF, which is used by one of the summary column as source.
    If the query is getting changed as per the bussiness requirement, the source of the Summary column is changing to NULL.
    Is there any way not to allow this change in RDF. Because lot of query modifications are done.And it consumes lot of time to change every source of the Summary columns being used.
    Appreciate your help.
    Thanks.

    In general this shouldn't happen. Did you define proper ALIAS'es for the column the summaryitems are based on?

  • Summary Column in af:table

    Hi,
    I have created a footer facet at table and column level.
    I have couple of issues
    1. Label associated with Table footer is not shown in the summary column.
    2. I have 6 columns in the table and I have defined footer to 3 of its columns
    I'm not able to align the summary column value to right.
    It always shows readonly. I tried creating the footer with InputText and OutputText it always shows as OutputText
    Any help on aligning the summary columns to right is helpful.
    Below is the code snippet.
    <af:table value="#{bindings.SellersWIPVO1.collectionModel}"
                                                              var="row"
                                                              rows="#{bindings.SellersWIPVO1.rangeSize}"
                                                              emptyText="#{bindings.SellersWIPVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
                                                              fetchSize="#{bindings.SellersWIPVO1.rangeSize}"
                                                              rowBandingInterval="0"
                                                              id="EditWIPTbl"
                                                              columnStretching="column:c35"
                                                              rowSelection="single"
                                                              autoHeightRows="8"
                                                              contentDelivery="immediate">
                                                      <af:column sortProperty="SellingRegionName"
                                                                 sortable="false"
                                                                 headerText="#{revuiBundle.OWNER_SELLER}"
                                                                 id="c36"
                                                                 rowHeader="true"
                                                                 align="center">
                                                        <af:outputFormatted value="#{row.bindings.SellingRegionName.inputValue}"
                                                                            id="of6"
                                                                            inlineStyle="text-align:right;"/>
                                                      </af:column>
                                                      <af:column sortable="false"
                                                                 headerText="#{revuiBundle.CLEAR_WIP}"
                                                                 id="ClearWIPCol"
                                                                 align="center"
                                                                 width="30">
                                                        <af:commandImageLink id="ClearWIPCLI"
                                                                             icon="/clear.png"
                                                                             partialSubmit="true"
                                                                             actionListener="#{ProjectSelection.clearWIPRow}"
                                                                             disabled="#{bindings.ProjectBillClassificationCurrVal.inputValue == 'D'}"/>
                                                      </af:column>
                                                      <af:column sortProperty="Elm"
                                                                 sortable="false"
                                                                 headerText="#{revuiBundle.ELM}"
                                                                 id="c35"
                                                                 align="right">
                                                        <af:outputFormatted value="#{row.bindings.Elm.inputValue}"
                                                                            id="of5"
                                                                            inlineStyle="text-align:right;">
                                                          <af:convertNumber groupingUsed="false"
                                                                            pattern="#{bindings.SellersWIPVO1.hints.Elm.format}"
                                                                            minFractionDigits="4"
                                                                            maxFractionDigits="4"/>
                                                        </af:outputFormatted>
                                                      </af:column>
                                                      <af:column sortProperty="Revenue"
                                                                 sortable="false"
                                                                 headerText="#{bindings.SellersWIPVO1.hints.Revenue.label}"
                                                                 id="c39"
                                                                 align="right">
                                                        <af:outputFormatted value="#{row.bindings.Revenue.inputValue}"
                                                                            id="of7"
                                                                            inlineStyle="text-align:right;">
                                                          <af:convertNumber groupingUsed="true"
                                                                            pattern="#{bindings.SellersWIPVO1.hints.Revenue.format}"
                                                                            minFractionDigits="0"
                                                                            maxFractionDigits="0"
                                                                            integerOnly="true"/>
                                                        </af:outputFormatted>
                                                      </af:column>
                                                      <af:column sortProperty="Labor"
                                                                 sortable="false"
                                                                 headerText="#{bindings.SellersWIPVO1.hints.Labor.label}"
                                                                 id="c38"
                                                                 showRequired="true"
                                                                 align="right">
                                                        <af:inputText value="#{row.bindings.Labor.inputValue}"
                                                                      label="#{bindings.SellersWIPVO1.hints.Labor.label}"
                                                                      columns="#{bindings.SellersWIPVO1.hints.Labor.displayWidth}"
                                                                      maximumLength="#{bindings.SellersWIPVO1.hints.Labor.precision}"
                                                                      shortDesc="#{bindings.SellersWIPVO1.hints.Labor.tooltip}"
                                                                      id="it28"
                                                                      contentStyle="text-align:right;"
                                                                      binding="#{ProjectSelection.rowLaborIT}"
                                                                      partialTriggers="ClearWIPCLI"
                                                                      required="true"
                                                                      readOnly="#{bindings.ProjectBillClassificationCurrVal.inputValue == 'D'}"
                                                                      autoSubmit="true">
                                                          <f:validator binding="#{row.bindings.Labor.validator}"/>
                                                          <af:convertNumber pattern="#{bindings.SellersWIPVO1.hints.Labor.format}"
                                                                            integerOnly="true"
                                                                            minFractionDigits="0"
                                                                            maxFractionDigits="0"/>
                                                        </af:inputText>
                                                        <f:facet name="footer">
                                                          <af:inputText value="#{ProjectSelection.sumLabor}"
                                                                        id="of9"
                                                                        partialTriggers="it28"
                                                                        contentStyle="text-align:right;">
                                                            <af:convertNumber pattern="#{bindings.SellersWIPVO1.hints.Labor.format}"
                                                                              integerOnly="true"
                                                                              minFractionDigits="0"
                                                                              maxFractionDigits="0"/>
                                                          </af:inputText>
                                                        </f:facet>
                                                      </af:column>
                                                      <af:column sortProperty="Odc"
                                                                 sortable="false"
                                                                 headerText="#{revuiBundle.OTHER_DIRECT_COSTS}"
                                                                 id="c37"
                                                                 align="right"
                                                                 showRequired="true">
                                                        <af:inputText value="#{row.bindings.Odc.inputValue}"
                                                                      label="#{bindings.SellersWIPVO1.hints.Odc.label}"
                                                                      columns="#{bindings.SellersWIPVO1.hints.Odc.displayWidth}"
                                                                      maximumLength="#{bindings.SellersWIPVO1.hints.Odc.precision}"
                                                                      shortDesc="#{bindings.SellersWIPVO1.hints.Odc.tooltip}"
                                                                      id="it30"
                                                                      contentStyle="text-align:right;"
                                                                      binding="#{ProjectSelection.rowODCsIT}"
                                                                      partialTriggers="ClearWIPCLI"
                                                                      required="true"
                                                                      readOnly="#{bindings.ProjectBillClassificationCurrVal.inputValue == 'D'}"
                                                                      autoSubmit="true">
                                                          <f:validator binding="#{row.bindings.Odc.validator}"/>
                                                          <af:convertNumber pattern="#{bindings.SellersWIPVO1.hints.Odc.format}"
                                                                            integerOnly="true"
                                                                            minFractionDigits="0"
                                                                            maxFractionDigits="0"/>
                                                        </af:inputText>
                                                        <f:facet name="footer">
                                                          <af:inputText value="#{ProjectSelection.sumODC}"
                                                                        id="of8"
                                                                        partialTriggers="it30"
                                                                        contentStyle="text-align:right;">
                                                            <af:convertNumber pattern="#{bindings.SellersWIPVO1.hints.Odc.format}"
                                                                              integerOnly="true"
                                                                              minFractionDigits="0"
                                                                              maxFractionDigits="0"/>
                                                          </af:inputText>
                                                        </f:facet>
                                                      </af:column>
                                                      <af:column sortProperty="Ops"
                                                                 sortable="false"
                                                                 headerText="#{revuiBundle.OUTSIDE_PROFESSIONALS}"
                                                                 id="c40"
                                                                 align="right"
                                                                 showRequired="true">
                                                        <af:inputText value="#{row.bindings.Ops.inputValue}"
                                                                      label="#{bindings.SellersWIPVO1.hints.Ops.label}"
                                                                      columns="#{bindings.SellersWIPVO1.hints.Ops.displayWidth}"
                                                                      maximumLength="#{bindings.SellersWIPVO1.hints.Ops.precision}"
                                                                      shortDesc="#{bindings.SellersWIPVO1.hints.Ops.tooltip}"
                                                                      id="it18"
                                                                      contentStyle="text-align:right;"
                                                                      binding="#{ProjectSelection.rowOPsIT}"
                                                                      partialTriggers="ClearWIPCLI"
                                                                      required="true"
                                                                      readOnly="#{bindings.ProjectBillClassificationCurrVal.inputValue == 'D'}"
                                                                      autoSubmit="true">
                                                          <f:validator binding="#{row.bindings.Ops.validator}"/>
                                                          <af:convertNumber pattern="#{bindings.SellersWIPVO1.hints.Ops.format}"
                                                                            integerOnly="true"
                                                                            minFractionDigits="0"
                                                                            maxFractionDigits="0"/>
                                                        </af:inputText>
                                                        <f:facet name="footer">
                                                          <af:inputText value="#{ProjectSelection.sumOPS}"
                                                                        id="of10"
                                                                        partialTriggers="it18"
                                                                        contentStyle="text-align:right;"
                                                                        inlineStyle="text-align:right;">
                                                            <af:convertNumber pattern="#{bindings.SellersWIPVO1.hints.Ops.format}"
                                                                              integerOnly="true"
                                                                              minFractionDigits="0"
                                                                              maxFractionDigits="0"/>
                                                          </af:inputText>
                                                        </f:facet>
                                                      </af:column>
                                                      <f:facet name="footer">
                                                        <af:outputFormatted value="Summary"
                                                                            id="of11"/>
                                                      </f:facet>
                                                    </af:table>Thanks,
    Satya

    Thee are few guides and after i checked them i finished with that.
    In the MatSpravkaDebViewImpl:
    private Number sumSuma = null;
    private void recalculateSumSuma() {
        sumSuma = null;
    public Number getSumSuma() {
        if (sumSuma == null) {
          sumSuma = new Number(0);
          RowSetIterator rsi = createRowSetIterator(null);
          while (rsi.hasNext()) {
            Row r = rsi.next();
            Number curSal = (Number)r.getAttribute("Suma");
            if (curSal != null) {
              sumSuma = sumSuma.add(curSal);
          rsi.closeRowSetIterator();
        return sumSuma;
      }This is also in the MatSpravkaDebViewImpl, it is supposed to force recalculate of the SumSuma column. I am not sure about that part becasue the view i am currently using is readonly and i can not test it.
    You may try adding dependancy also.
      protected void executeQueryForCollection(Object qc, Object[] params,
                                               int noUserParams) {
        // TODO:  Override this oracle.jbo.server.ViewObjectImpl method
        super.executeQueryForCollection(qc, params, noUserParams);
        recalculateSumSuma();
      protected void notifyRowDeleted(ViewRowSetImpl vrs, Row viewRow,
                                      int rowIndex) {
        // TODO:  Override this oracle.jbo.server.ViewObjectImpl method
        super.notifyRowDeleted(vrs, viewRow, rowIndex);
        recalculateSumSuma();
      }Then you create a transient field for the
    Then in the ViewObjectRowImpl I changed the getter
      public Number getSumSuma() {
        return ((MatSpravkaDebViewImpl)getViewObject()).getSumSuma();
        // return (Number) getAttributeInternal(SUMSUMA);
      }I hope that helps. Tell me if it does not work when you add/delete/update rows, i am still clearing that scenario.
    Edited by: Valhery on 2010-4-12 23:48

  • Summary Column inside the Cross Product

    Hai All,
    I have developed a matrix report in the RDF format. There is a summary column inside the cross product. When I create the generate XML from the RDF the summary column from cross product is not apppering in the generate XML file. How can we accomplish that summary column inside the RDF.
    Thanks in Advance

    http://winrichman.blogspot.com/search/label/BIP%20Vertical%20sum
    http://winrichman.blogspot.com/search/label/Cross-tab
    these links should help , you , if not, send me the xml and template and desired output.

  • Change Labels in Legend

    Hi!
    How to change labels in graph legend with presentation XML file? I have created the JSP-based report on such query:
    select ex_sub_name,
    sum(cnt),
    sum(gos)
    from ....
    and have inserted bar graph into this report.
    For every ex_sub_name I have two bar with values from
    sum(cnt) and sum(gos).
    My problem is that labels
    in a graph legend are drawn as sum_cnt and sum_gos.
    But I can not use aliases in SQL-query for some reasons...

    The graph displays the labels based on the data that it is passed. As part of your query you should specify a column with more meaningful labels. This sounds like a metadata issue if you are using OLAP data.

  • Summary column with where clause

    Hi all,
    I'm using Oracle Report Builder 10GR2. I have the following issue: In one of the query i have the following result :
    Suppliers     0
    Suppliers     1408
    Total in  BGN     1408
    Customers      6024
    Customers      11779.32
    Customers      
    Total in  BGN     11779.32
    Taxes      0
    Taxes      0
    Total in  BGN     0
    Cash      1363.85
    Cash      691
    Cash      991.23
    Cash      688
    Total in  BGN     2355.08I want to make a sum for these columns where corresponds to description " Total in BGN" . Maybe it is a simple task... Do i have a chance to select from a query in a Report Builder?
    If yes, pls specify? Or maybe there is a chance to add a where clause for summary column. But keep in mind that this is one of the queries in the report builder and i have to add summary with this conditions. I cannot change the existing query but probably add a new one.
    Any ideas?
    DB Version: 11g
    Thanks in advance,
    Bahchevanov.
    Edited by: bahchevanov on Sep 29, 2012 2:21 AM

    Hello,
    You should use parameter file.Another question i can see you are using 11g.Why don't you use data pump?.
    Data Pump is faster and have more features and enhancement than regular imp and exp.
    You can do the following:
    sqlplus / as sysdba
    Create directory DPUMP_DIR3  for 'Type here your os path that you want to export to';then touch a file:
    touch par.txt
    In this file type the following the following :
    tables=schema.table_name
    dumpfile=yourdump.dmp
    DIRECTORY=DPUMP_DIR3
    logfile=Your_logfile.log
    QUERY =abs.texp:"where hiredate>'01-JAN-13' "then do the following
    expdp username/password parfile='par.txt'
    If you will import from Oracle 11g to version 10g then you have to addthe parameter "version=10" to the parameter file above
    BR
    Mohamed ELAzab
    http://mohamedelazab.blogspot.com/

  • Sorting by summary column, query based on previous query.

    Using 10g reports.
    I've got a report with one query currently thats broken down itno a couple groups. I'm trying to change the order they are displyed by based on a summary count of each group. I'm also trying to do another query for the report based on the results of the first one and display that with the information from the first.
    The report currently:
    Chain name
    ABC Stores
        Month
        JUN
         Store Name                   Store ID                bad sales
          Store1                         storeid1                   5
          Store2                         storeid2                   3
          Store3                         storeid3                   1
                                                         month total: 9
    JUL
          Store1                         storeid1                   6
          Store2                         storeid2                   5
          Store3                         storeid3                   2
                                                        month total:13
                                                        Chain total  22
    XYZ Stores
        JUN
          Store1                      storedid1                     20
          Store2                      storedid2                     15
                                                         month total  35
       JUL
          Store1                      storedid1                      11
          Store2                      storedid2                       7
                                                        month total     18
                                                         Chain total     53What I want to do is sort the order the store chains appear in based on the CHain total of bad sales. This is a summary done by the report and not in the sql query at the moment. I would also like to create a second query where it takes the store id and month from the first query and uses it to look up the total sales each store did so I can determine what percentage of the total sales the bad sales were. I would like to add this column plus a calculated percentage column to the right of the current columns but still have them grouped as they are. Is this possible to do or will i need to change my original query?
    Not very familiar with reports and I haven't been able to find anything to indicate how this should/could be done yet. Any help is appreciated.

    hi,
    there is no break order property for summary columns .
    so use the group by and take the sorting order for whole group
    example:
    SELECT DEPTNO, JOB, ENAME, SAL FROM EMP
    ORDER BY SAL
    You then create two groups, G_DEPT and G_JOB. G_DEPT contains
    the DEPTNO column and G_JOB contains the JOB column. If you
    specify a Break Order of Descending for the DEPTNO column and
    Ascending for the JOB column, your output would appear similar
    to that below (assuming you use a Tabular style):
    Deptno Job Ename Sal
    30 CLERK JAMES 950.00
    MANAGER BLAKE 2850.00
    SALESMAN WARD 1250.00
    MARTIN 1250.00
    TURNER 1500.00
    ALLEN 1600.00
    20 ANALYST SCOTT 3000.00
    FORD 3000.00
    CLERK SMITH 800.00
    ADAMS 1100.00
    MANAGER JONES 2975.00
    10 CLERK MILLER 1300.00
    MANAGER CLARK 2450.00
    PRESIDENT KING 5000.00

  • Summary Column and repeating frames

    I have a report that shows customer orders(1 per page). If a customer orders 3 pizzas and 2 of them are identical, same size, same toppings, crust i want the quanitity column to sum as 2. So for this example instead of having 3 rows with two of them being identical with the quanity column dispalying 1 for each, I want 2 rows with quanity showing 2 for the identical pizzas and 1 for the other.
    I have everything in the same group/repeating frame right now and it is showing all 3 pizzas on there own row. Do i need a summary column and change my groupings? How can i achieve this the summed quanity for identical orders?
    CURRENT:
    Crust......Toppings......size.....quantity
    Thin.......Cheese........small....1
    Thin.......Cheese........small....1
    thick.......meat.........large....1
    NEW:
    Crust......Toppings......size.....quantity
    Thin.......Cheese........small....2
    thick.......meat.........large....1

    Forget summary columns. This can easily be just a group by query:
    with t as (select 'Thin' crust, 'Cheese' top ,'Small' sze, 1 qty from dual
               union all
               select 'Thin' , 'Cheese'  ,'Small' , 2 from dual
               union all
               select 'Thick' , 'Meat'  ,'Large', 1  from dual
    select t.crust, t.top, t.sze, sum(qty)
    from t
    group by crust,top,sze;
    CRUST TOP    SZE     SUM(QTY)
    Thin  Cheese Small          3
    Thick Meat   Large          1

  • Using Page Level Summary Column in Report 6i

    Hi Folks,
    I'm trying to create a report in which I want a Page level Summary column i.e., the Summary column should reset at each page and should display the sum of a particular field on each page depending upon how many records are displayed on each page. But whenever I choose the Reset Property to Page the following error is displayed" Page level summaries are not supported in the defaulting" and in certain case the summary column displays the sum only on the last page of the report and the rest of the pages do not display the summary column. The database has three tables i.e., master-detail-detail.
    Do I need to make some changes in the Data Model or what?
    TIA
    Hassan

    Hi Hassan,
    it only works onceWell, this is definitely not expected. Maybe you can try to see after running the report once whether all the values you set in your report (from my last post) remain the the same, or somehow they revert back to their default values.
    if I do some formatting of the report... summary also disapperasYou could try placing the page level summary in another frame, below your group repeating frame, with enough gap between them. Also, try setting the value for "max no of records" to some lower value, which makes sure there is space for the summary column on every page.
    Another idea for making a page level summary is - you can place the summary BEFORE your group repeating frame, which means the summary will print on top of every page. In this case, you won't even have to worry about setting "max no of records per page" to some particular value. See if this suits your needs.
    Navneet.

  • More than one summary column in cross tab reports

    Hi,
    I have a cross tab report.  The summary column is SUM. I want to add another summary column next to SUM which will be AVG(Average) column.
    Any ideas?
    Please see the attached image.
    Thanks,

    hi Anurag,
    my fault...i should have looked closer at your data.
    here's the easy way of showing two sets of summaries at the end of a crosstab, without having duplicate columns.
    1) copy your existing cross-tab and paste it to the right of your current cross-tab.
    2) now go to the cross-tab expert of the new cross-tab and remove the fields from the Column dialogue
    3) change the summary to an Average
    4) exit the cross-tab expert and go to the Section Expert for the section where both cross-tabs are...ensure that you check Relative Positions
    preview the report. now you'll have to move the 2nd cross-tab a bit so that it aligns properly with the first one.
    as a sample, see the attached report. extract the contents and change the .txt extension to .rpt.
    -jamie

  • Removing the line under a summary column

    Hi
      This may be very easy but I am missing it completly, when you add a summary column in a report , crystal reports makes it bold and add a line just above the amount you are summing up, is there away to remove that line so that it will not show up. the reason I am doing is this because I am putting the sum somewhere on the report but I dont want that line to be there, any idea, I have looked but I am missing it, the bold part of it is easy to change but that line above the amount is still there, thx
    alpha

    Check the border properties of the summary report object and change the top line to none.
    Fuskie
    Who hopes this works for you...

  • How to Change the position of Column in ALV report

    Hi Follks,
        Is is possible to change the position of column in ALV report?.If yes then how?
        Basically my requirement is, that user want afacility where , he should be able to change the position
        of column aftre he runs the report.
        Eg: After running the report , user felt that column 5 should be at position 2 , in that case he should   
               be able to drag column 5 at position 2 and vice versa.
        Please help me, how to solve this issue.
        Note : I am using NW 7.0 SP 9
        Regards
        PG
    Edited by: PG on Apr 13, 2009 11:10 AM

    HI PG,
    do below whie filling the filed catlog
    wa_fieldcat-fieldname        = 'Field1".
    wa_fieldcat-COL_POS = '1',
    append wa_fieldcat to it_fieldcat.
    wa_fieldcat-fieldname         = 'Field2".
    wa_fieldcat-COL_POS = '2',
    wa_fieldcat-fieldname         = 'Field3".
    wa_fieldcat-COL_POS = '3',
    Thanks!

  • I have two graphics workers on osx 8.  They are both complaining that their files are changing label colors on it own.  Any idea what could cause this?

    I have two graphics workers on osx 8.  They are both complaining that their files are changing label colors on it own.  Any idea what could cause this?

    and there were and have been problems with any two nvidia cards which was the main part of my question.
    To provie details try pasting all but serial number from system profile. Sorry but Mac Pro tells me nothing, not model, year, or what graphic card it came with or updated with.

  • How to change font size, maximum column size in the result screen ?

    hi All
    That's great when using SQL Dev.
    But I also have a trouble that how to change font size, maximum column size in the result screen ?
    My users think that font in result screen is shown very small, and whenever the data in each colum is long then it's not shown full data in column, they must double click for extend the size. Have the option to default the max size for showing full data in each column ? I try but still not to do that .
    Appreciate for anyone to help us.
    Thanks all.
    Sigmasvn

    You can't change the font for the results screen yet, however you will be able to select an auto-fit option for selected columns, so if some columns have slitghtly wider text you'll be able to set the column widths to handle these wider columns.
    Also, there s the option of switching the layout of a record in the grid.
    Sue

Maybe you are looking for