Changing the referential of an universe...and the reports?

Post Author: pierre.thepierre
CA Forum: Deployment
hi all
I have a universe plugged on a referential R1 and lots of reports based on it.
I would like to plug that universe on another referential R2. I Suppose I'll loose all the BO reports I made before since on R2 there is a brand new universe with new IDs.
Is there any workaround to avoid that disaster?
I have a 5.1.9 BO & designer
thanks
pierre

If the DisplayObject is on the timeline then its name cannot
be modified, but the name property of dynamically created
DisplayObjects can be changed. (DisplayObject.name:String
read/write).

Similar Messages

  • Question on changing the report template to display the images

    I am trying to change the report template so that each table cell will display an image and a checkbox for the image. The column templatet for the new report template is like this:
    <td #ALIGNMENT# headers="#COLUMN_HEADER#" class="t17data">
    <table>
    <tr height="90%"><td>
    <img src= "&F101_GET_THUMB.#COLUMN_VALUE#" onmouseover="return onmouseover_img('#COLUMN_VALUE#');">
    </td></tr>
    <tr height="10%"><td align="center" valign="bottom">
    <input type="checkbox" name="f01" value="#COLUMN_VALUE#"/>
    </td></tr>
    </table>
    </td>
    My questions are:
    1. If the #COLUMN_VALUE# is null, the table cell will display a broken image icon and a checkbox. How could I avoid this? I could add condition to this template, such as when #COLUMN_VALUE# is not null, but how to refer to the value of #COLUMN_VALUE# in pl/sql?
    2. I want to always put the checkbox at the center bottom, but no matter what I set "align='center' valign='bottom', it is always close to the image. Since the image sizes are different, the appearance of the checkbox are just up and down. How to fix this?
    Thanks,
    Fengting

    hello,
    at designtime the elements from the template are physically
    imported into the report. the only way of re-applying a template
    is to use the wizard, which will re-default the layout.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Change the Report Title for XML Publisher, depending on the field value.

    I want to change the Report Title as below.
    if the field_A='B' then the report title as it is defined in report defination
    else the report title is 'XXX"
    Please let me know whether it is possible, if yes please guide me. how can we do it.
    Thanks
    Venkat

    Tim covered the inline if statement, though not specifically regarding a title, in his blog recently:
    http://blogs.oracle.com/xmlpublisher/2007/12/18#a723
    The syntax is:
    xdoxslt:ifelse(.//WM_FLAG='C’,'Canceled','Approved')

  • How change the report graph color in teststand

    how change the report graph color in teststand?

    Michael,
    You might also be able to customize the style sheet associated with the report. The TestStand Help provides some information about how to customize ATML or XML style sheets to change report colors based on the status of test steps.
    Please take a look at the following topics; are these helpful?
    ATML Report Style Sheets
    Modifying Cell Background Color Based on Step Status in ATML Test Results 5.0 Reports
    XML Report Style Sheets
    Modifying Cell Background Color Based on Step Status in XML Reports
    Tom
    TestStand Documentation

  • Changing the Report - RTF layout

    Hi.
    I run the report output to RTF format. It works fine. But When I open with MS-Word the page layout is showing too small. I can't change layout anything from MS-WORD.
    What to do for viewing output of Report - 80x66 (letter size) page in MS-WORD in the same size.
    pls. help me.
    thanks in advance

    Hello Syed,
    I tried to reproduce your problem on Reports Builder 6i (6.0.8.22.0) and Reports Builder 9i (9.0.2.1.1). But in both cases, output of a report generated to RTF shows up with proper sizing in MS Word.
    If you are able to reproduce the problem with the latest patch, please provide a detailed description of the problem.
    Thanks,
    The Oracle Reports Team.

  • Dynamically change the report column name.

    Hi All,
    I have a report where i am showing data for greater than current week and year and the code of same is below
    SELECT
        item_number,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+1 THEN
                    quantity
            END
        ) plus_1,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+2 THEN
                    quantity
            END
        ) plus_2,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+3 THEN
                    quantity
            END
        ) plus_3,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+4 THEN
                    quantity
            END
        ) plus_4,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+5 THEN
                    quantity
            END
        ) plus_5,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+6 THEN
                    quantity
            END
        ) plus_6,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+7 THEN
                    quantity
            END
        ) plus_7,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+8 THEN
                    quantity
            END
        ) plus_8,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+9 THEN
                    quantity
            END
        ) plus_9,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+10 THEN
                    quantity
            END
        ) plus_10,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+11 THEN
                    quantity
            END
        ) plus_11,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+12 THEN
                    quantity
            END
        ) plus_12,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+13 THEN
                    quantity
            END
        ) plus_13     
    FROM
        (   select
                re.item_number,
                row_gen.year_week_num,
                SUM(NVL(re.quantity,0)) OVER(PARTITION BY re.item_number ORDER BY row_gen.year_week_num) quantity,
                ROW_NUMBER() OVER(PARTITION BY re.item_number, row_gen.year_week_num ORDER BY NULL) rn
            from
                (   SELECT
                        to_number(to_char(sysdate,'IW')) + ROWNUM year_week_num
                    FROM
                        DUAL
                    CONNECT BY LEVEL <= 13
                ) row_gen LEFT OUTER JOIN
                        (   SELECT
                                le.item_number,
                                le.quantity,
                                to_number(to_char(sysdate,'IW'))+1 year_week_num
                            FROM
                                BACKLOG_WEEK_WH_AFTR_ATP le
                            UNION ALL
                            SELECT
                                re.item_number,
                                -re.quantity,
                                to_number(substr(re.year_week,-2,2)) year_week_num
                            FROM
                                BACKLOG_ATP_GT_CW re
                         ) re
                    PARTITION BY (re.item_number)
                    ON ( row_gen.year_week_num = re.year_week_num)
    WHERE
        rn = 1
    GROUP BY
        item_numberI have a item in the report page from which i am displaying which week this year holds and the code of same is below
    In the item source, i have selected source type as sql query return single value. and the current week is returning as "2011-WK30"
    select to_char(sysdate,'YYYY"-WK"IW') from dual;Please suggest how i can change the display of column dynamically. I want PLUS_1 to show as 2011-WK31, PLUS_2 to show as 2011-WK32 and so on for this week. When next week will come then the plus_1 should show as 2011-WK32, plus_2 to show as 2011-WK33.
    Any help how to do this?
    Thanks in advance
    Regards

    Hi,
    Go to the Report Attributes, in the Column Attributes section:
    1) Use Headings Type as PL/SQL.
    2) In the text area Function returning colon delimited headings write a PL/SQL anonymous block returning colon delimited headings.
    Hope it helps!
    Regards,
    Kiran

  • Dynamically need to change the report value reference names

    Hi Forum,
    Greetings to all !!!
    I have to create one report(document summary report) and the parameters are Document type(Special Information name through lov) and start date and end date.
    Based on these parameters it will fetch only that document details. I prepared the report based on this , now user selecting another document type then the segmets which are attached to this is coming but the heading details are not able to change in the report layout.
    Can any body suggest me how to create the layout for this type of reports.
    Regards,
    Nag.

    Hi Guru,
    We are running report in t-code:S_ALR_8701225, but last two days onwards we are not able to see the Expand and Collape tab option and Hierarchy option also, and the report format also got changed but the user want as per the previous format and which we can do the drill down. Please help me.
    And please inform me how to get the report name .
    Regards,
    John Pal

  • Dynamically changing the report path

    Is there any way to dynamically change the path where the reports are saved. Teststand 4.1.1
    Message Edited by glennjammin on 04-21-2010 03:30 PM
    Test Engineer
    L-3 Communications
    Solved!
    Go to Solution.

    Yes you can run a VI in the ReportOptions Sequence, add it to the Setup of that sequence. If you dont use FileGlobals.Dated anywhere else then use a Local instead. Just remeber FileGlobals are only global to sequences that are contained in a SequenceFile. They are not global across SequenceFile unless you are using the Batch Process Model.
    You will probably have to set a number of other parameters up to work with ReportOptions.Directory. The best way to handle this is to setup up you exact conditions statically (ie via the Config | Report Options... menu ). Place a breakpoint in the ReportOptions (use a label if you dont have any steps in the ReportOptions sequence at the moment) and run your Sequence. Remeber to use Test UUTs or Single Pass. You dont have to use your full test sequence just create a simple one step sequence.
    When you reach the break point, then you can browse the Parameters.ReportOptions and see what properties are required to ensure your reports are setup correctly.
    Hope this helps.
    Regards
    Ray Farmer 
    Regards
    Ray Farmer

  • Changing the report template

    Hi All,
    I have created a report using a particular template
    created by me. The template contains only Margin layout
    and font setting. Now, if i change the template
    can i get the report layout changed according to new
    template layout without disturbing body section. I tried
    by reassigning the template to the report through the
    report wizard but it changes the layout of body section.
    Is there any way out.
    Thanks.

    hello,
    at designtime the elements from the template are physically
    imported into the report. the only way of re-applying a template
    is to use the wizard, which will re-default the layout.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • GridPOV is getting reverted to UserPOV without changing the report in Stdio

    Hi everyone,
    I am a facing a problem on Reports because of that the Grid POV get moves to User POV. I could see the Date and time stamp or Report modified, but I am sure that the change was not made physically by logging into FR Studio. I know this sounds weird but I would appreciate if anybody will share His/Her thoughts about this. Although I could see the date and time stamp of the reports modified but It could be of the access given/change.What could be the possible reason for this.
    Thanks
    Yogesh Jain

    Which version is this? I've never heard of this one before. Sounds like a bug to me. I'd open a ticket with Oracle.
    Cheers,
    Mehmet

  • Changing the report header/footer in SAP BusinessObjects Enterprise X1 3.1

    Hi ,
    We have SAP BO 3.1. We have a requirement to change the header\footer of all the reports in the system.
    I tried the option under Header/Footer Properties --> Appearance , Apply to all reports.
    This option does change all the header\footer of all the tabs/pages within a report.
    In our environment currently we have around 300 reports. We cannot edit individual report and make changes to the header/footer.
    Is there any option through which i can change the header\footer of all the reports existing in the system?
    Thanks in Advance
    Regards,
    Pavithra P

    Hi Pavithra P,
    Check the below links,
    https://cw.sdn.sap.com/cw/ideas/1388
    https://cw.sdn.sap.com/cw/ideas/5239
    http://scn.sap.com/thread/2050054
    http://evtechnologies.com/web-intelligence-4-0-default-paper-size/
    http://devlibrary.businessobjects.com/businessobjectsxi/en/en/RE_SDK/resdk_dg_doc/doc/customizing_webintelligence_EN/ewucw_082.html
    Regards,
    Anish

  • Changing the report displayed on the basis of value selected frm the prompt

    Hi,
    I have requirement in which there is dashboard prompt which has three columns namely year, month and report name.
    The user will select the report name from the prompt, once done the report that has been selected should show up
    on the dashboard page and he should be able to select data on the basis of month and year from it.
    Also, if the user wants to go to the other report he should be able to select it from the prompt and view it.
    Pls shed some light on how to progress about it. As of now think if something like this is possible then it would definitley
    need two prompts one for report name and the other for month and year.
    Thx :)

    Hi Kishore,
    When i click on the link given by you it takes me to a page where a link is given with text as under
    Oracle BI 10.1.3.3/2 - Selecting Reports from Dashboard Prompts and Guided Navigation Sections
    And when i click on this nothing opens up.
    Thx
    Edited by: Phantasm on Jun 22, 2010 3:05 AM

  • Change the report title to more meaningful title? How to achieve it?

    Hi Guys,
    We have some BI reports which the users runs from BEx analyser. Currently the report title shows the names of the reports. For example a Sales by products reports has the title SALES BY PRODUCT REPORTING.
    What we want to do is these reports have selection screen and based on what the user selects on the selection screen we want the report title to be more meaningful. For example if the report is run for the period 1 and company code ABC selected on the selection screen then the report title must show SALES BY PRODUCT FOR PERIOD 1 AND COMPANY CODE ABC.
    My questions is how to show the variable in the report title? I am new to BI and need help on the same. We are on 7.1 version of BI.
    Cheers
    VJ

    Hi,
    We have done the same but in my case the input Month will display.
    Eg: We have MM reports which will run Period wise, so user wil give 001.2009, in the report title it will display...
    Stocks report for 001.2009.
    Using Text Variable we can do it.
    Steps;
    1. Create a Text Variable with Customer Exit option.
    2. Take the user input value and pass into Custome exit Variable.
    For Sample Code, you can see one blog and some Articles.
    https://wiki.sdn.sap.com/wiki/display/profile/Surendra+Reddy
    See the blog "Using Text Variables with Customer Exits in Report Headings" and see Customet Exit articles..
    WHEN 'ZT_C'.   " ZT_C = Text variable with customer Exit
        IF i_step = 2.
          LOOP AT i_t_var_range INTO loc_var_range WHERE vnam = 'ZMONTH'.  " ZMONTH = User input variable on 0CALMONTH
            IF sy-subrc = 0.
              CLEAR: l_s_range.
              zsmy = loc_var_range-low.
              zemy = loc_var_range-high.
              zsmnth = zsmy+4(2).
              zemnth = zemy+4(2).
              zfyear1 = zsmy+0(4).
              zfyear2 = zemy+0(4).
              CONCATENATE zsmnth '.' zfyear1 INTO zsmnyr.
              CONCATENATE zemnth '.' zfyear2 INTO zemnyr.
              l_s_range-low+0(7) = zsmnyr.
              l_s_range-low+9(2) = 'To'.
              l_s_range-low+13(7) = zemnyr.
              l_s_range-sign = 'I'.
              l_s_range-opt = 'BT'.
              APPEND l_s_range TO e_t_range.
            ENDIF.
          ENDLOOP.
        ENDIF.
    Thanks
    Reddy

  • How can we change the Reports scheduled Time in OBIEE 11.1.1.5

    Hello Friends,
    I have scheduled BI Publisher reports for FTP, but now I want to change the scheduling time or cancel the scheduled reports.
    But I didn't get any option for that. If any body know, please let me know.
    Thanks & regards,
    Pradip

    Hi Pradip,
    Go to the report location. You will find options open, Edit, schedule etc based on previliges. Click on schedule.
    then you will find options, General, Output, schedule Notification. Under Scgedule tab you can change the scheduled time of the report.
    Thanks,

  • Change the report type.

    I'm using a report for determine the top applications.
    How can modify the report to get session count and bytes trasmitted on the same report?
    Thanks, and happy new year!
    Andrea.

    Hi Andrea,
    Can you be more specific? From what i have perceived, you want to know the bytes transmitted for each application, rite? If that is your requirement, i am afraid MARS will not fulfill the purpose. For such analysis, you need some netflow analyzer (solarwinds, NFC, Manageengine NTA) will give you in depth analysis, or you can use NBAR on IOS if you have your devices on the IOS that support NBAR...MARS simply uses netflow to detect any anomaly in the traffic patterns,it does not correlate the netflow traffic unlike the syslogs. For flows correlation you have to use any of the NTAs that i mentioned before.
    regards,
    Mohsin

  • URGENT : how to change the report to use two date sets

    Hi,
    I have a summary report with the name of the sales agents and their total sales for the period from so and so. Now I need to run the same report to be able to see their total sales but from two set of dates, for eg. the same report for 2006 and 2007, side by side to compare the sales done by these agents.. to get an idea if their performance is improving, etc. How do I do this??
    The report already has two parameters date1 and date2, so in this I can give the date as from 01-JAN-2006 to 31-MAR-2006. But in the same report, I also need the total sales from 01-JAN-2007 to 31-MAR-2007, so that it can be compared.
    Please advise. Its urgent. Its for the chairman.
    Thx.

    Hi,
    I have a summary report with the name of the sales agents and their total sales for the period from so and so. Now I need to run the same report to be able to see their total sales but from two set of dates, for eg. the same report for 2006 and 2007, side by side to compare the sales done by these agents.. to get an idea if their performance is improving, etc. How do I do this??
    The report already has two parameters date1 and date2, so in this I can give the date as from 01-JAN-2006 to 31-MAR-2006. But in the same report, I also need the total sales from 01-JAN-2007 to 31-MAR-2007, so that it can be compared.
    Please advise. Its urgent. Its for the chairman.
    Thx.

Maybe you are looking for

  • Making a SOAP call using PL/SQL in Oracle 8.1.7.4.1

    Hi Our environment is as follows: Oracle8i Enterprise Edition Release 8.1.7.4.1 - Production JServer Release 8.1.7.4.1 - Production Forms [32 Bit] Version 6.0.8.12.1 (Production) Oracle Toolkit Version 6.0.8.12.1 (Production) PL/SQL Version 8.0.6.0.0

  • List Component Select

    I've created a custom inline component to fit inside mx:List in my mxml. I'm using skinned button controls in the component, and therefore, want to turn off the selection color effects of the surrounding list control. Can anyone tell me how to do thi

  • Applet setting values on HTML page

    Is it possible for an applet to set a values on a HTML page? I know there is getParameter but how do I set one? even if it involves setting some JavaScript object/variable... is it even possible?

  • Itunes account cellular data usage

    My phone has finished in a couple of days my 2GB data plan. I reset the usage and turned off all cellular data but noticed that the one that consumes all the data is the "iTunes Accounts" in system services. Does anyone know how to turn this off or w

  • Internet Keep Getting Disconnected

    I have a Linksys Router(WRT300N) and my macbook is connected to the router wirelessly, I have bootcamp installed on my Macbook, when while using Windows XP to surf the net, i find that i kept getting (page could not be found) on the internet explorer