Change the name of the table/view to RPD.

Hello

I have a domain which has two points of view in it. The joints are given and have the subject area in the presentation layer. I created a few reports and they work fine. Now, we want to change the name of the views and do not want in the database. I changed the names in the presentation layer. I ran the created reports and they work fine. I have approach the right way? Did I modify them elsewhere? I don't want my reports to be affected in any way with the change of the view names. Please advice.

Hello
When you change the name of table or a view in the presentation layer of the RPD, it will create aliases for that name .you may notice to double-click on the name of the table, alias tab

If you remove that alias name the report will be the effect on best practice is that do not delete aliases for name reports was changed from RPD table

the same scenario will apply for object zone rename also

Thank you
Saichand.v

Tags: Business Intelligence

Similar Questions

  • Apex 5.0.2 error when changing the table name in the treatment of automatic line of process (process row)

    Hello

    I need a little help...

    For some reason, I have to change the underlying table for a treatment of automatic process (process Row) line (form).

    Although such a change is possible in the designer of the page (under "settings") Apex does not recognize the new name of the table, but seem to rather use the name of the original table "old."

    Pretty strange (new/modified) (the new table columns) are (correctly) error message.

    For example, the 'old' is: TABLE_1 and TABLE_2 new.

    TABLE_2 has a new COLUMN_NEW column (and corresponding P1234_COLUMN_NEW page element exists)

    Then the error message says something like: not found COLUMN_NEW column in TABLE_1. Althougt I changed the table to be TABLE_2.

    Maybe it's a bug or I do something wrong about this?

    Thank you in advance!

    André

    OK, just to get some - you changed the name of the table twice:

    -Rendering of section--> Page1234: Pagename--> pre-rendering--> after the header--> process of--> line from TABLE_2

    -Treatment article--> treatment--> process--> process of line from TABLE_2

    I thought, that always seek you the line of TABLE_1

    Christian

  • Impossible to change the table column heading alignment in 11.1.1.5

    11.1.1.5 work.

    I want to align to right one of my headers of columns in the Table view. I'm going in the criteria, the column properties tab. Format of the column and clicking the Format icon next to the column heading box. I'm on the column properties dialog box, change the background color, adding a border and right Horizontal alignment setting. See the table in the results, I see the background color of the column heading, and I see the border. However, the column header text is always aligned to the left.

    What Miss me it please?

    Hi Mark,

    You do not have lack of what, whether Oracle has missed this basic functionality! This is a bug :-(

    Bug 12696084: FORMAT HEADINGS > HORIZONTAL ALIGNMENT does NOT WORK IN THE TABLE OR the PIVOT VIEW

    Rgds,
    DpKa

  • Watch not the tables, views,... in vs2010

    Hello

    I installed ODP.net + ODT (11i) for use with vs2010 & oracle 10.02.0010 (upgrade to oracle 11).
    The product is installed correctly, I can connect to the database using ODBC and PACO.
    However, when connecting with the ODP in vs2010 I do not see the tables, views, or stored procedures (can not see anything really). When you use ODBC, everything works: I see all the tables, views, etc. which are in the database, and I can ask questions them.
    I also tried to run a query by using the ODP.net and it gave me: ORA-00942: table or view does not exist.

    I did a search on the forums, but none of the planned solutions, nothing changed for me.

    Someone at - it ideas?

    Published by: user13493229 on 18-mei-2011 11:05

    Hello

    First of all, make sure that you see "ODP.NET" in the connection to Server Explorer dialog box.

    Then, check the tab "Filters" of the connection dialog box. By default, we block public synonyms and schema objects that you do not own.

    If you still do not see objects, then most likely your DBA not gave you enough privileges to use these tools.

    Try looking the advice I gave in the following thread explaining how to enable tracing ODP.NET. First glance to see that the SQL involved in the ORA-942.
    Then look at the other SQL we deliver and see why you are not able to get all the lines of the.

    VS2010 ORA-00942 table or view does not exist

  • Is it possible to change the playlist view back to display columns on iTunes?

    Is it possible to change the playlist view back to display the columns?

    View > view as > songs.

    TT2

  • Complete export dashboard in excel gives error generate document in the table view of subtotals

    Hi all

    We have dashboard with several tabs and you try to export the whole dashboard in excel.

    Excel file is generated with all tabs on the dashboard as the leaves, but few of these leaves are empty with error message of document generation in the first cell.

    After further analysis, we concluded that the cause is seen with subtotals on table. PivotTables with subtotals are generated correctly.

    Workaround obvious to re-create the table views in the articulation points is not possible due to a large number of reports.

    We run Oracle Business Intelligence Product Version 11.1.1.7.150120 (Build 150113.1200 64-bit)

    Any ideas or solutions to this problem would be appreciated.

    Thank you;

    Klaudio

    We just found guilty

    Lines per page to display in the table must be 999999999 max which is more than enough for our needs.

  • How to use JavaScript to change the named view

    How to use JavaScript to change the named view

    Do you mean to jump to a specific Destination named within a PDF file? SE so there

    the method gotoNamedDest of the Document object.

  • The reference to the table, view, or the sequence is not allowed in this context

    Hello

    I am triying to run the SP that I describe below and the OS gives me an error:
    CREATE OR REPLACE PROCEDURE DWARE.P_CSCV_AGR_MONTH_REVENUE
    (
        TBL_NAME VARCHAR2,
        START_DATE DATE,
        RESULT_ OUT NUMBER
      ) AS
      BEGIN
      
      DECLARE 
      
        v_tbl_name VARCHAR2(30);
        v_start_date DATE;
        v_result NUMBER := 0;
        
        v_select_aux VARCHAR2(32767) := ' ';
        v_temp_table VARCHAR2(30);
        v_exists NUMBER;
    
      BEGIN
        v_tbl_name := TBL_NAME;
        v_start_date := START_DATE;
      
        v_temp_table := 'temp_' || v_tbl_name;
        
        SELECT count(*) INTO v_exists FROM tab WHERE lower(tname) = lower(v_temp_table);
        IF (v_exists = 1) THEN
          v_select_aux := '
            DROP TABLE ' || v_temp_table || ' CASCADE CONSTRAINTS PURGE
          ';
          EXECUTE IMMEDIATE (v_select_aux);
          COMMIT;
        END IF;
        
        v_select_aux := 'CREATE TABLE ' || v_temp_table || ' AS 
                                  SELECT ch.date_ month_revenue,
                                       s.date_sub month_sub,
                                       s.codpromoter,
                                       u.OPERATOR,
                                       SUM (ch.total) AS TOTAL_OK
                                       FROM cscv_sub_charges_' || to_char(v_start_date, 'YYYY_MM')|| ' ch
                                       INNER JOIN cscv_subs s
                                       ON ch.id_sub = s.ID
                                       INNER JOIN cscv_users u
                                       ON s.id_user    = u.ID
                                WHERE ch.STATUS = 0
                                GROUP BY ch.date_, s.date_sub, s.codpromoter, u.OPERATOR';
                                
        EXECUTE IMMEDIATE (v_select_aux);
        COMMIT;  
         v_select_aux := '
     INSERT INTO ' || v_tbl_name || ' (
             month_revenue,
             month_sub,
             codpromoter,
             operator,
             TOTAL_0,
             TOTAL_1,
             TOTAL_2,
             TOTAL_3,
             TOTAL_4,
             TOTAL_5,
             TOTAL_6,
             TOTAL_7,
             TOTAL_8,
             TOTAL_9,
             TOTAL_10,
             TOTAL_11
          )
            SELECT 
             month_revenue,
             month_sub,
             codpromoter,
             operator,
             TOTAL_0,
             TOTAL_1,
             TOTAL_2,
             TOTAL_3,
             TOTAL_4,
             TOTAL_5,
             TOTAL_6,
             TOTAL_7,
             TOTAL_8,
             TOTAL_9,
             TOTAL_10,
             TOTAL_11
            FROM 
            (
               SELECT 
                  month_revenue,
                  month_sub,
                  codpromoter,
                  operator,
                  sum(total_ok) total_0,
                  0 total_1,
                  0 total_2,
                  0 total_3,
                  0 total_4,
                  0 total_5,
                  0 total_6,
                  0 total_7,
                  0 total_8,
                  0 total_9,
                  0 total_10,
                  0 total_11
                 FROM '|| v_temp_table ||'
              WHERE to_char(month_sub,''mm/yyyy'') = to_char(sysdate,''mm/yyyy'')
              GROUP BY month_revenue,month_sub,codpromoter, operator
              UNION ALL
              SELECT 
                  month_revenue,
                  month_sub,
                  codpromoter,
                  operator,
                  0,
                  sum(total_ok),
                  0,
                  0,
                  0,
                  0,
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                 FROM '|| v_temp_table ||'
              WHERE to_char(month_sub,''mm/yyyy'') = to_char((to_date(sysdate,''dd/mm/yy'') - INTERVAL ''1'' MONTH),''mm/yyyy'')
              GROUP BY month_revenue,month_sub,codpromoter, operator
              ) 
            GROUP BY month_revenue,
             month_sub,
             codpromoter,
             operator
               ';    
        
        EXECUTE IMMEDIATE (v_select_aux);
        v_result := v_result + SQL%ROWCOUNT;
        COMMIT;
        
        v_select_aux := '
          DROP TABLE ' || v_temp_table || ' CASCADE CONSTRAINTS PURGE
        ';
        EXECUTE IMMEDIATE (v_select_aux);
        COMMIT;
        
        RESULT_ := v_result;
      END;
      END P_CSCV_AGR_MONTH_REVENUE;
    /
    ------------------------------
    BEGIN
    DWARE.P_CSCV_AGR_MONTH_REVENUE(CSCV_AGR_MONTH_REVENUE,'01/01/2010');
    END;
    /
    and the output is:
    Error at line 1
    ORA-06550: líne 2, column 32:
    PLS-00357: The reference to the table, view or sequence 'CSCV_AGR_MONTH_REVENUE'  is not allowed in this context
    ORA-06550: líne 2, column 1:
    PL/SQL: Statement ignored
    What could I do to fix the problem?

    Thanks in advance...

    Hello

    Signature of the procedure is

    CREATE OR REPLACE PROCEDURE DWARE.P_CSCV_AGR_MONTH_REVENUE
    (
    TBL_NAME VARCHAR2,
    START_DATE DATE,
    RESULT_ OUT NUMBER
    ) 
    

    either he's expecting two input parameters, tbl_name in VARCHAR2 and the other START_DATE date format format. Also you need a variable with the number data type to store the value of the PARAMETER RESULT_

    Now, look at the way you call this procedure

     BEGIN
    DWARE.P_CSCV_AGR_MONTH_REVENUE(CSCV_AGR_MONTH_REVENUE,'01/01/2010');
    END;
    /
    

    first parameter must be a VARCHAR2, so place CSCV_AGR_MONTH_REVENUE in single quotes.
    second parameter must be a date, so use to_date() function.
    Finally declare a variable with the data type of number to maintain the value of the parameter RESULT_

    Something like this:

    declare
    t_num number;
    begin
    a('CSCV_AGR_MONTH_REVENUE',to_date('01/01/2010','MM/DD/YYYY'),t_num);
    dbms_output.put_line(t_num);
    end;
    

    Vivek L

  • Cannot change the table in a layer [was: another weird One]

    I created www.ccahv.com with Dreamweaver MX and now seeks to update with Dreamweaver CS3.  The buttons are in a table on a layer to easily copy, but I can't change the table to add a button.  Impossible to insert an image.  The pages are modified by a Secretary with Frontpage 2000.  Who would have something to do with it.  I am sure that I've updated these pages in June and October with the CS3 version.  I am at a loss.  Help!

    joepd

    [Subject line edited for clarity by Moderator]

    First, fix the validation errors. You have the doctype declaration in the body.

    > The buttons are in a table on a layer

    Avoid layers unless they are necessary.

  • changing the table of facts in environmental impact assessment

    Hello

    I have added a new dimension to a fact table and created a new model of environmental impact assessment and the metaoutline. I would now change the fact table to match production. I changed it to sql and I'd like to be reflected in the model, but I don't see how. I prefer not to recreate the model. I don't want to lose the metaoutline or can associate you with another model?

    I hardly use HIA and would appreciate some guidace.

    Thank you

    Nathan

    No change of name he is going to be a problem, to do that you should drag the 'new' object in your model and remap it.

    For what it's worth, as a best practice, I always run my models to views in a relational database with generic names. So, I have a view called Fact_Table. If ever, then I remodel, I can modify the tables and update the definition of the view. Then in the OLAP model all I have to do is add or remove columns, but the object allows you to stay in touch.

  • change the folder view to alphabetical to chronological windows Explorer

    I want to change this chronological order of watching one of the subfolders in alphabetical.

    Exp: Under my pictures folder, I have subfolders by year (i.e. 2006, 2007, 2008, etc.) who orgaize in chronological order but the subfolders of those subfolders are the months of the year and they are the list alphabetically - even if I spent a year at the front or at the end of the name of the month (so it still lists like this (: October 2006, September 2006)

    I want to know if there is a way to get the subfolders to list as a calendar discovering putting an order number or letter before the month month.

    Thank you

    MOM of Godzilla

    You want cannot be done because it recognizes the names like alpha-numeric characters and sorts alphabetically (just as it does for years - but this market because they are numbers).  Try to use a designation number instead of the alphabetical name of the month - 8-2006 to August 2006 and so on.

    If it is possible (and I don't), the answer is maybe in one of these articles (especially the sort order on one) - but probably you'll learn from them that's not possible because you have things to put in place:

    Here's how to change the default template for a folder: http://www.vistax64.com/tutorials/70819-windows-explorer-folder-view-settings.html.  Default behavior is to select the model based on the first type of file placed in the folder (you must choose something).  Vista sets the folder type template according to what are the types of files in the window and the settings display window Explorer. This will show how to reset the display settings for the Windows File Explorer, disable Automatic folder Type Discovery (which is I think what you want)and increase the folder display the cache to make Vista do not forget the display settings, the folder type template, the size or the position of a specific window for when it was still closed to the location of specific path.

    It does not work with the Sub record under, Open with, open in a new tab (Internet Explorer), etc... dialog windows of type through the good File menu bar item. These don't seem to be able to have their size or their position to recall. For the latter, you can use the free program http://autosizer.en.softonic.com/ to resize them.

    Here is another article on how to modify the columns in Windows Explorer and sort in Vista: http://www.vistax64.com/tutorials/108665-column-customize.html.  This will show you how Add, Remove, move, change the widthand change the sort order of the columns in Windows Explorer in the way that you want.

    Here is another article on how to change the display of the default folders in Vista (but she argues, it is not a perfect solution and can revert to the previous behavior is not as good as the two prior links provided: http://news.cnet.com/8301-13880_3-10019957-68.html.)

    Sorry it wasn't the answer you wanted to hear.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • How to change the default view in Windows File Explorer

    I have a lot of files in some of my files to storage media.

    Whenever I use the folder of Windows Explorer to browse the files, I need to select View - Details of the list of people rather than the large icons that are displayed. I have to then add or remove columns based on the information I want to see associated with these files, such as name, Date, size, length etc...
    I noticed that Windows behaves differently when opening a folder with the media compared to a folder with the application files. Directory of media file opens with a set predetermined column related to the media and the application folder opens with a different set of columns.
    As defined by Windows, I think there is an option to choose the columns, I want to display and in what type of look a format.
    When I make the changes once, they remain the same until I restart, and then everything goes back to Windows default.
    How can I define the way Windows Explorer for files and folders displays the directory.
    If I can't change it, I might have to consider a 3rd party app.

    Chucks of salvation,

    Welcome to Microsoft Community and we are happy to help you.

    I understand from the description of the issue you want to change the view of Windows Explorer.

    I suggest you to follow these steps to change the display settings and check.

    a. click on Organize menu and click on folder and Search Options.

    b. on the View tab, click apply to folders.

    c. click Ok.

    Reference:

    Change the folder options

    http://Windows.Microsoft.com/en-us/Windows7/change-folder-options

    Hope it works. For any other Windows questions feel free to get back to us. We will be happy to help you.

  • Cannot change the table formatting

    I have a really weird problem with a table. So, I copy and paste two tables to Excel in Indesign. In fact, they have two different selections of cells in the worksheet — not only the same Excel file, but the same spreadsheet (tab) in this file.

    One of them, Indesign let me change what I wanted. Fonts, lines, fills, text color, you name it. Everything I did worked as expected on the first try.

    The other has remove me my hair in frustration, because I do the exact same things and nothing not happens. In particular, no matter what I do - be it with cell styles, table styles, or simply by selecting certain cells and manually apply a swatch - there always even fills in Excel. I can't even get rid of the old fillings (for example by replacing with 'none' or 'paper'), much less to add new ones. A few other changes work and some don't, there is no obvious reason. As I could possibly change the color of the text in the header row, but it took about five tries and I swear to you that I didn't do anything different the fifth time compared to the first four.

    The only thing I've done in the meantime was to create a cell style.

    What might make the difference here, and more importantly, what can I do about it?

    There are a few things that I usually do by bringing Excel worksheet data that do not seem to work properly. Before you apply styles, or styles of table cells - delete all replacements.

    1. Select the Table.
    2. In the Panel of cell Style, click the clear overrides in selection button
    3. Then in the Panel Style of Table, do the same and start applying table or cell styles.

    Usually makes things less capricious ;-)

    CARI

  • 'Extensible groups' in the table view?

    Hello

    Is it possible to allow groups of repetition in table view in 10 g? My requirement is to display a report tabular repetition of detail for each school. I can't do this in the PivotTable as another criterion is to activate the dynamic end-user sorting (which is not possible in the crosstabs Dynamics 10g).

    Any ideas?

    Thank you

    I understand now, thanks.

    If it's a pivot table, you may simply drag the column of the school in the area of "sections" to make the page layout to change the way you want. Indeed in OBIEE 11 g you can also do this with a regular table view. However in the 10g version you don't get that kind of control over the layout of a standard table view. Not the answer you wanted to hear that I suppose.

    Paul

  • How to change the timeline view in PE9 to see all images?

    In PE9, I see that many executives to the timeline appear empty. the frame clip transitions has images.   How can I change this to see all images?  In PE 2 I never had the "feature."  I guess most are empty to reduce the handling of files, etc.   But I would like to turn the frame power custom images.

    PS when I imported a short series of minutes 8 clips direct from my sony HD camera timeline frames were complete... but most video I use is old analogously conversions of tapes on DVD... that imported for editing PE files from dvd.

    Thank you

    David

    There are several choices for the display of the thumbnail of the image. These are available from the video track in the timeline view Mode header. In my version of the GER, one has the choice of first, all and none (which displays the name of the element). PrPro, it is also first & last. This view could be added to the PrE 9.

    Good luck

    Hunt

Maybe you are looking for

  • I forgot my password, how can I connect?

    HP PAVILION DV7WINDOWS 7Help me please! Today, I tried to turn on my laptop and it came to the normal screen where I drag my finger, so I did it and he said I had to enter a password. So I entered my password which I know is correct and it came with

  • Unable to connect on my iMac

    To turn on my computer, I get the screen with my username (2) and icons account comments about it, but do not get a place to enter my password. In the upper right corner, I have the time and the symbol which shows that I have an internet connection. 

  • Envy printer 4250: driver install freezes at verification of network environment

    I have a brand new 4250 want and he is suspended on 2 different computers at the same point "audit of network environment." I can ping IP address of the printer if it is connected ok (wireless). I tried runnig the Setup from the CD and it hangs to th

  • 8024402 cannot search the updates of Windows

    Hello Vista 64 HP with many problems. Has been purchased already installed by manuf. may 2009. Sent to them Jan 2010 to recover or reinstall the operating system due to the loss of the ability to install/uninstall programs after SP2. Now Windows Upda

  • No sound after the accidental deletion of a program.

    What should I do?