Presentation Layer column name change effects on existing reports ?

Hello Gurus,
I have one requirement where user are not sure about the column names in Presentation Layer.
so they want us to create the reports and once the reports are delivered they will give us the column name as per their requirement.
now i read couple of blogs related to this, that does it affects the exiting reports?
in couple of blogs they says that i won't. becaus BI server creates the alias for the old name and will reflects it wherever it's used in reports..
So can anyone tell me where this alias name has been stored in OBIEE?
and is there any precaution that needs to be done while doing this beacuse we are expecting to create around 40-50 reports and changing the column name after changing the presentation layer name change will increase lots of work..
Thanking You..

I've confirmed it on a 10g environment that when you rename the column in the RPD the existing reports reflect the change.
What I was referring to in the statement you highlight is that a column name can be changed when being used as the definition of a report. If somebody specifies an abbreviation of the current name to fit it in a table or chart then it will not be updated from a name change in the RPD.
So long as you build reports using the name provided by the RPD and none of the developers take the liberty of renaming it in the column properties of the request/analyses the single rename should take effect through all the reports you build.
You can also manage the column name by renaming it in a report and using the save as system wide default. But the way you intend to do it would be the best method.
Edited by: James - Projected on 25-May-2012 14:07

Similar Messages

  • Column name changed in reports

    I have to do some changes on my existing report, its really a complex report with more number of columns and tables. now its really hard to fix the alias name changed by report builder automatically. any one could help me to fix this problem, means what i have alias name in query that i want to use in report.

    Hi,
    Could you pl clarify the Q? Do you mean that Reports Buider has automatically added an alias to a column name? This is not expected.
    Or do you mean that you need to change the alias of the column without disturbing the report definition? You can alter the data model of the report using the feature "Customization at runtime using XML". For more information, refer to Chapter 16 in Publishing Reports Manual for 10g:
    http://www.oracle.com/technology/documentation/reports.html
    Navneet.

  • DB column name changes and APEX

    All,
    I found out that the database architect is planning to make changes to several of the column names in all of the tables I use in a large application. So...rather than open every screen, every condition, every procedure, etc. looking for the db fields I need to change, I am hoping I can find a way to do it in sql*plus.
    At a minimum, I hope to be able to create a report for each table/column referenced in the application that will show the pages and places where it is referenced. Any ideas?
    Thanks,
    Steve

    Patrick directed me to the Object Dependencies report - and it would work but you have to click on the "count" to see where it is referenced. I am hoping for a detail report. Patrick also suggested editing an application export to do global column name changes - that will also work. If you have done it differently, let me know.
    Steve

  • Power View Enhancement Request - Allow for columns to drop off PowerView when column name changes in data model instead of rendering the PowerView inaccessible

    Currently in PowerView, if a column name changes in the tabular model, and that column is being used in a PowerView chart, the PowerView will become inaccessible.
    It would be nice if it functioned similar to Pivot Table. If a column name changes for a column that is being used in a Pivot Table, the field is just removed from the chart, and the user can select the newly named column. 

    Hi plantm,
    After testing the issue in my environment, I can reproduce it. After we change a column name which is used in a Power View chart, Power view will render the message that” The external data connection has been disabled for this Power View report. Please enable
    the connection.” when we reopen the file.
    To fix this issue, we can click Refresh button under POWER VIEW menu, then it would prompt us that” Power View was not able to complete the action due to a query failure. This can happen if the structure of your data has changed, in which case closing and
    re-opening the application will resolve the problem.”
    According to the error message, we should try to reopen the file to fix this issue. Power view will render the message that” Please refresh to see the data for this Power View Sheet. You can set properties in the Connection Properties dialog so that the
    data refreshes automatically when you open the file.” when we reopen the file. Then we can refresh it again, the report will be displayed without that field.
    Based on my research, inherently what the message means is that Power View cannot be used as a tool for snapshot reporting. With an Excel PivotTable, we can see the data last saved in the PivotTable. Power View, however, does not behave the same way – it
    won’t render the last saved state. If we want to avoid this message when we reopen the file, there are two methods:
    When we create the Power View report, we can select the checkbox that “Refresh data when opening the file”.
    After it’s been set up, go to Connections on the Data menu, then choose Properties.
    For more details about the settings, we can refer to the following blog:
    http://www.sqlchick.com/entries/2013/3/30/creating-a-power-view-report-in-excel-2013-which-uses-an-ext.html
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Pass column-name as a parameter to reports

    Hello,
    the code below calls a report. But now I want to sort the rows in the report. For example I have a text-item in my form-modul. If I type a column-name and press the button then the rows should be sorted in the report. Is it possible tp pass column-names as parameter to reports?
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := find_report_object('STATIONSTOPOLOGIE');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,RUNTIME);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'html');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'rep_oracle-dev');
    -- SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no pdeptno='||:dept.deptno);
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    WEB.SHOW_DOCUMENT('http://oracle-dev:8888/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=rep_oracle-dev','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;

    Hi,
    the work has been done in reports. You can use a lexical parameter in reports to add a condition for sorting to the query like:
    select .. from .. where ... &p_order.
    Then add another parameter to the report (for example p_param). Fill p_param via your interface in forms (SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, ....) with the column name. Then build a report trigger like:
    if :p_param is null
    then
    :p_order:= null;
    else
    :p_order:= 'order by '||:p_param;
    end if;
    But have a look, that p_param can only get correct values.
    Rainer

  • Column name change

    hello,
    i have used one same caloumn in more than 10 reports. Now there is a name change for it.
    is it possible to change the column name in all answers report at once... ? any possible ways ......
    thanks

    Hi,
    Yes. There is one way. If you have not used custom column names for the column you are using in multiple reports, just rename the Presentation Column name in RPD. Make sure the older name appears under the Alias Tab when you go to the Column Properties in RPD (Presentation Layer).
    Please let me know if this resolves your issue.
    Thanks,
    Nabhanil

  • Column name changes in Admin to desktop

    I've already created several reports. They all have a column that has the same label. I want to change the label without going into each report and changing to what it should be. I changed the source column label in Admin but it doesn't automatically update the column names in the reports that use this column. I thought this would be the quickest and most intuitive method but it hasn't worked...is there another way besides tediously opening each report and renaming the columns?

    I am pretty sure you will have to edit each report. It is annoying, but it makes sense. Suppose there is a folder with an item "User". Some reports are created using "User" as a column heading. Other reports have a different audience or purpose, so "User" gets a heading of "Employee", "Reported By", or something else. When the folder item gets changed to "User Name", Disco does not automatically assume that this is a blanket change across all instances. If it did, then you'd have to go into those places where the worksheet column was purposely changed to something else, and change it back.
    The SQL Inspector shows a close approximation of what Disco is going to run. The column labels have no meaning in the database, as they can be different from the actual column names in tables, views, and material views. The SQL Inspector allows you to take the code Disco is going to run, and use it in another tool for diagnosing problems, so having the labels in the statement would defeat this purpose.

  • Column name change in Interactive Reports

    Hi,
    I am new to Interactive reporting. We have a report that is resulted from Essbase query. Now in the report, we want to change the column names which are basically the essbase dimension member name. Is it possible to chang ethe names per our requiremnet?
    Please help.

    Hi again,
    I think that you may have posted your question in the wrong forum. This one is for Oracle Application Express and maybe that is the reason why you didn't understand my response. If your issue involves Hyperion Interactive Reporting Studio or Hyperion reporting in general then you should ask in this forum instead:
    Hyperion Query and Reporting
    Covers Hyperion Interactive Reporting, Hyperion Financial Reporting, Hyperion SQR Production Reporting, Hyperion Web Analysis, and respective administration/development topics
    Sergio

  • [Swing] JTable & Oracle DB: SQL Query for Column Names Change

    Hello,
    I apologise for the 'stupid' thread subject name.
    Now i have a JTable wich i fill with rows from an Oracle DB.
    The query is something like this: "SELECT location_id, location_name FROM locations*bold*", and in the table i will have the columns names LOCATION_ID & LOCATION_NAME.
    I want to change this query like: "SELECT location_id "Location ID", location_name "Location Name" FROM locations".
    The only problem is that i CAN NOT insert "" inside ""
    So if anyone know how to fix this 'problem' please share that with me.
    Thank you,
    B.

    found it.. \" \"
    :)

  • Column Name change in IR

    Hi,
    I want to display the different column name in dashboard other than the column name in result set. for eg: I have the results with column name emp_id. now i want to display this column name as Employee_ID in dashboard. How to do this?
    Thanks in Advance...

    Either change the column name in the Query on the Request Line it does not impact the column selected similar to the SQL Select statement AS
    OR
    Add a Computed Column in Results referencing emp_id and then Hide emp_id.
    Wayne Van Sluys
    TopDown Consulting

  • Bam Report column Name changing ???

    Hi frds,
            i want to change column name in bam report. Actually i created Data object with long column names after creating and integrating with Bpel, i saw in report its showing some of the part Only its not showing total column name, can any one tell me how to edit column name in bam report ??
    Thanks,
    Ravi.

    Hi Leo,
    Use the following syntax: -
    INSERT INTO temp (C1) VALUES (:your_page_variable_name);
    Cheers,
    Mike

  • BSP Column Name Change

    hI cHRIS,
    I used table view column In that i specified my column name in coumn name and my own text in title.. but the data is not coming out,
    Since i have used same dataelement stucture for all the column data is not flowing ..
    How should i go further
    <htmlb:tableView id    = "hema"
                                     table = "<%= me->data1 %>" >
                      <htmlb:tableViewColumn columnName = "ZDATE"
                                             title      = "Year" />
                      <htmlb:tableViewColumn columnName = "VALUE OF VALUATED STOCK"
                                             title      = "DM" />
                      <htmlb:tableViewColumn columnName = "Value"
                                             title      = "MLS" />
                      <htmlb:tableViewColumn columnName = "Value"
                                             title      = "SIIT" />
                      <htmlb:tableViewColumn columnName = "Value"
                                             title      = "IMP" />
                      <htmlb:tableViewColumn columnName = "Value"
                                             title      = "CONS" />
                      <htmlb:tableViewColumn columnName = "Value"
                                             title      = "MKTG" />
                    </htmlb:tableView>
    i want my output to display in this way..
    year    dm    idm     emp
    here except year all the data have same structure. So my output displays same name for all.
    Plz share ur ideas to correct me
    Thanks in advance

    Hi:
    using same dataelement is not a problem, you should use same data element with different field name and then specified in the column name ( as mentioned in field name), it should work like
         <%
      if not lt_but000[] is initial.
          %>
          <htmlb:tableView id    = "partner"
                           table = "<%= lt_but000 %>" >
            <htmlb:tableViewColumn columnName="partner" >
            </htmlb:tableViewColumn>
            <htmlb:tableViewColumn columnName="NAME_FIRST" >
            </htmlb:tableViewColumn>
            <htmlb:tableViewColumn columnName="NAME_LAST" >
            </htmlb:tableViewColumn>
          </htmlb:tableView>
          <%
      endif.
          %>
    Regards
    Shashi

  • How to rename C00n generic column names in a Dynamic SQL report

    I have a an interface whereby the user can select 1 to 60 (upper limit) columns out of 90 possible columns (using a shuttle) from one table before running a report.
    To construct the SQL that will eventually execute, I'm using a "PLSQL function body returning SQL query" with dynamic SQL. The only problem is that I have to use "Generic Column Names" option to be able to compile the code and end up with c001 to c060 as the column names.
    How can I use the names of the selected columns as the report headings rather than c001, C002... etc?
    I do not know beforehand which columns, or how many columns or the order of the selected columns.
    I know Denes K has a demo called Pick Columns but I can't access his code. I have a hunch though that he may be just using conditions to hide/show the apropriate columns.
    thanks in advance
    PaulP

    Hi Paul
    I would change the Heading Type in the Report Details screen to PLSQL and use the shuttle item to return the column values. e.g.
    RETURN :p1_shuttle;
    I'm assuming the shuttle already has a colon separated list of the column headings in the correct order?
    I hope that helps
    Shunt

  • Column name in link on sql report?

    Hey guys -
    Is there some way to put the column name of a report in a link?
    When you define a link on a column you have the ability to use a substition string for the VALUE of a particular column... but I want to somehow pass the string value of the column.... anyone know how to do this?
    Thanks

    Not the value of the column.. I want the actual column name...
    i.e.
    Items on page to set:
    txtbox1
    txtbox2
    Query:
    Channel          INS1     INS2     INS3     INS4
    Retail          13     1     333     55
    Wholesale     4234     23     1     44Okay, so I want to make a link on the values in the query (the #'s) to set the values of the txtboxes...
    example would be if I click on 333 I want it to set txtbox1="Retail" and txtbox2="INS3"
    The channel one is fine I just use the substition string of #COL1# in the link and it replaces the value... but nothing that I can find on how ot set txtbox2="INS3"
    Edited by: nferreri on May 15, 2009 9:51 AM

  • GRR3 report name changes when assigned to report group

    I have define report title to be "expense report" in Grr3(both short/middle/long text), but when I execute it, I assigned it to one report group, in GR53, I found the report name is changed to "cash flow report", even I removed it and insert again, it still be cash flow report,,
    The report result is fine, only the report title got this problem, anyone can solve it?

    1.Use transaction code: GRR2. 
    2.Double click on the report
    3. Click on Extras,  Report Texts and then Select Headers
    4. Define your report title under headers.
    Elias
    Edited by: Elias Akorli on Nov 6, 2009 2:01 PM

Maybe you are looking for

  • Some photos are not sorted correctly by date

    I just imported some photos from my friends camera who were on the same trip. However, I noticed that a couple (not all) of his photos are not sorted correctly by date in the Event. A photo from day 3 somehow comes before the photos from day 2. I che

  • Won't keep themes, won't display comments in newspapers or allow making comments in newspapers

    My theme is gone. Page has white and yellow background with blue lettering. Re-installing the theme doesn't help, Also, when I'm reading newspapers; cannot make comments on articles, sometimes will not even show that there are comments on article I'm

  • Needing Help !

    I am unable to use iMessage, any of my games or facebook on my iPad 3, but yet I am still able to look stuff up on the safari. What can I do to fix it?

  • Power IPOD when using 4pin firewire (ilink)

    My laptop only has a 4pin firewire socket (no power) and ausb 1.1 socket. Is there a way to sync using firewire 4pin while charging using usb or external charger?

  • Rhel 5.3 oracle 10.2.0.4

    Dear Gurus, i installed a new machine. i install oracle db and then apply patch 10.2.0.4. on oracle leverl sql everything work fine. see i have restart the os/linux machine, after restart a few things noted. - listener did not start automatically - o