Report Localization Suggestion

Hi,
Our product support many languages and till now we used several RPT, one for each language and for every change in the report we need to go al over the other reports as well.
I tought about something else and I need your opnion if it is possible from the RPT side:
1) I will send key & values for the localized strings as a parameter to the RPT.
2) There will be a customized function in the RPT that receive Key as an argument, search this key in the parameter and return the localized string back.
The huge question is how can I call to that custom function from the columns headers for instance without the need to create formula to every column header or other Static string.
Many formulas (something like 40-50 in each report) reduce performance and I would like to avoid that.
Is there a way to do that ? does anyone used different approch ?
Best Regards,
Roei

Hello Roei.
For every column you can create a custom formula such as:
If CurrentLocale = "en_US" then "Column Heading in English" ELSE
If CurrentLocale = "fr_FR" then "Column Heading in French"  ELSE
Then use this custom function for every column you want to show the heading. Based on the CurrentLocale correct heading will come up.
Thanks
Raman

Similar Messages

  • My WIFI keeps on disconnecting and even after reporting and suggestion by support the phone hasnt been replaced or repaired under warranty

    I think I have had enough. So its been a long time back and forth between me and you. Since I am not getting any solution and same thing you guys are providing me again and again.
    I want to take a step back and list down a few things which have happened so far :-  
    I started chatting with the apple support on this issue starting September - please refer back to your chats on this Serial Number.
    I have factory reset my phone like 20 times since then as each time they asked me to follow few steps which made me loose my data as your icloud doesn't work properly as stated by your customer care support people itself that sometimes the back up doesn't happen so please take back up at your laptop too.
    Send phone diagnostics by clicking on a link.
    reset your WIFI settings
    Call apple support after 24 hours of observation.
    Next day when same issue occurs then extreme Apology.
    Take Back up on computer and Icloud both and contact apple support once its done
    Call apple support again.
    Factory Reset by erase all contents and setting options. Once one call back again.
    wait and analyse for a whole day after setting up apple ID and data.
    Wifi Issue stil exists.
    Call apple support again
    Between all this I had to explain the issue each time to a new representative. This above process I have gone through at least 7-8 times. Please go and refer your call notes.
    So finally i got to know after escalating it several times and one of your supervisors told me that the issue is a hardware issue and it can only be replaced as they have tried it all.
    Supervisor assured me that he has recommended it to be replaced in notes and asked me to visit a center.
    I called in local distributor and set up an appointment, unfortunately couldnt make it. So call them to reschedule as I am working women so i dont have all the time in life to keep interacting with associate after associate so thought of walking in to an apple store near by and lodge a complaint. The supervisor updated me that I have warranty left and it will be replaced without any cost and also if i report and issue in warranty and if apple is not able to resolve it so the warranty stands true until its completely resolved after customer's consent.
    I went in to give my phone to the tech support and they kept it for analysis and came back saying the issue doesnt exist. I was getting a disconnection in my WIFI every now and then. My Data plan was always used and i fortunately have a proof of that.
    Customer rep told me talk to apple support and if they say we will replace it. One more place added where customer has to go.
    Now and back to square one - They say phone is damaged - we cant replace it. First of all the phone is not damaged and you guys are just finding reasons to not replace a faulty phone.
    It randomly disconnects and its listed as a known issue on your website too. had this not been listed i would have never thought its the phone. Then I started to observe that its the phone that makes a disconnection and not the WIFI connections as it was everywhere home, office and at friends place.
    Best i can do is call you guys when this happens if you guys promise me that the tech employee of apple can come to whatever location i suggest at that point and do not be surprised if the phone behaves normal when the person arrives as its random.
    Now you want pictures of my phone and you want to analyse further.

    After making an appointment and waiting over a week I was a few minutes late for my appointment I was told by apple I would have to make a new appointment. The shop was Chatswood in Sydney and the manager Mathew was very pathetic. I travelled 1 hour each way and was treated very poorly I must comment and say this was my first Apple devices and I will never understand how come people are buying these devices. The apps seem really good if only the hardware and the support could match. I really wish this manager all his best to Matthew in his next position somewhere else he obviously should not be in the position of managing an Apple store.

  • Report localization

    Hi,
    i'm trying to localize a report on SSRS 2012. I'm using VS 2012
    Here is my solution setup.
    I have 2 projects one for the localization implementation that contain resx files and the class that pools the values from resex and one project for the reports.
    In the first poroject my post build event copies files to the targets
    copy "$(TargetPath)" "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrieAssemblies"
    copy "$(TargetPath)" "C:\Program Files\Microsoft SQL Server\MSRS11.SQLSERVER\Reporting Services\ReportServer\bin"
    On the report i have a lable that pools value from the code
    Public Shared Function LocalizedValue(resourceKey As String, culture As String) As String
              Return SSRS.Localization.LocalizedValues.getLocalizedString(resourceKey, culture)
    End Function
    expression on the label is{ =code.LocalizedValue("HelloWorldText", Parameters!culture.Value)}
    Poblem is that value returned to the report is always from the default resource file. 
    I have tested this on 2 ways:
    one in the class method 
    public static string getLocalizedString( string id, string cultureInfo)
                //return cultureInfo;
                string resourceName = "SSRS.Localization.ReportLanguage";
                ResourceManager rm = new ResourceManager(resourceName, Assembly.GetExecutingAssembly());
                CultureInfo ci = new CultureInfo(cultureInfo);
                return rm.GetString(id, ci);
    if the method returns cultureInfo it displays correctly on the report.
    the second test was i have created web application and invoked the same method. It worked perfectly.
    Does anyone knows why this happens? 

    Hello Roei.
    For every column you can create a custom formula such as:
    If CurrentLocale = "en_US" then "Column Heading in English" ELSE
    If CurrentLocale = "fr_FR" then "Column Heading in French"  ELSE
    Then use this custom function for every column you want to show the heading. Based on the CurrentLocale correct heading will come up.
    Thanks
    Raman

  • Crystal Reports localization issue

    Hi,
    I am using Crystal Reports for .NET version 2005. Also, I am utilizing SQL Server 2005 as my database server. The problem is when I deploy applications in Spanish countries (maybe others, but did not try yet). The problem happens when dates are passed to SQL Server 2005, but only through Crystal Report engine.
    I guess the question is if there is special need to localize crystal report setup?
    Thanks in advance
    Amer Gerzic
    Infinity Software Solutions

    David,
    Thanks a lot for reply!
    Here is the code that I use:
                        MachineProductionReport report = new MachineProductionReport();
                        SetReportLogOnInfo(report);
                        ParameterDiscreteValue discreteValue1 = new ParameterDiscreteValue();
                        discreteValue1.Value = dlg.MachineID; <- this has type String
                        report.ParameterFields["@machine_id"].CurrentValues.Add(discreteValue1);
                        report.DataDefinition.ParameterFields["@machine_id"].ApplyCurrentValues(report.ParameterFields["@machine_id"].CurrentValues);
                        ParameterDiscreteValue discreteValue2 = new ParameterDiscreteValue();
                        discreteValue2.Value = dlg.StartDate; <- this has type DateTime
                        report.ParameterFields["@start_date"].CurrentValues.Add(discreteValue2);
                        report.DataDefinition.ParameterFields["@start_date"].ApplyCurrentValues(report.ParameterFields["@start_date"].CurrentValues);
                        ParameterDiscreteValue discreteValue3 = new ParameterDiscreteValue();
                        discreteValue3.Value = dlg.EndDate; // <- this has type DateTime
                        report.ParameterFields["@end_date"].CurrentValues.Add(discreteValue3);
                        report.DataDefinition.ParameterFields["@end_date"].ApplyCurrentValues(report.ParameterFields["@end_date"].CurrentValues);
                        MainReportViewer.ReportSource = report;
    The issue is that it works fine in US, but not in Chile ... Everything else works though (passing string, int, etc.)
    Thanks in advance!
    Amer

  • Informix Database for CVP and IPCC reporting, other suggested product

    Hi All;
    Currently we have in the site Informix Database to be used for CVP and IPCC reporting, but is there other recommended product than it to be more rich in the features and able to use it to generate reports for CVP and IPCC?
    From the other side: Any one suggest a front end tool (web based tool) that can be used to generate reports from the Informix DB?
    Regards
    Bilal

    For more complex data needs Cisco has a range of options that using the VIM family of products, particularly the new CUIC/VIM Datamart solution which might be of interest. http://www.exony.com/category/tags/cuic

  • I want to become an expert at XL reporter - any suggestions for practice

    Hello - I have a need to become very good at XL Reporter. So far the learning is slow going, I am looking for additional resources.
    Can anyone suggest any text books, or excercizes to practice? Anything to help my learning to progress..
    I look forward to your responses, in the meantime I will be practicing!

    John,
    Please check this link  https://websmp103.sap-ag.de/~sapidb/011000358700001172792006E

  • Standalone report server suggested settings

    Hi,
    How should I configure the Oracle Reports Server 10.1.2.3 so that performance will become better? How would you suggest to configure parameters such as engines, timeout, etc.? Reports will be called purely by using the standalone report server.
    Thanks.
    Andy

    I would have to point you to the documentation, chapter/section 20.2 Tuning Reports Server Configuration ...
    Oracle® Application Server Reports Services
    Publishing Reports to the Web
    10g Release 2 (10.1.2)
    http://download.oracle.com/docs/cd/B14099_19/bi.1012/b14048.pdf
    As a general rule, I would increase cache size and set the number engines based on the number of CPU available for the report server ... go over chapter/section 20.2 - this is what you can do in your reports server configuration, there are more things to take into consideration, like PL/SQL, SQL, for that review the rest of chapter 20...

  • Firefox continues to crash unexpectedly. The report mesage suggests that the information I send will help Firefox to cure the problem but I never hear anything from them. How is someone who isn't a computer geek supposed to solve this problem?

    Firefox continues to crash unexpectedly. When it does a message requests me to send a report that is supposed to help Firefox understand the problem but I never hear from them again. Just how is someone who isn't a computer geek able to understand all the detailed discussions from other users. My Firefox is completely up to date. Is there anyone who can explain what is happening in simple terms?
    == Crash ID(s) ==
    Application Basics Name Firefox Version 3.6.3 Profile Directory Show in Finder Installed Plugins about:plugins Build Configuration about:buildconfig Extensions Name Version Enabled ID Modified Preferences Name Value browser.history_expire_days.mirror 180 browser.places.importBookmarksHTML false browser.places.importDefaults false browser.places.leftPaneFolderId -1 browser.places.migratePostDataAnnotations false browser.places.smartBookmarksVersion 2 browser.places.updateRecentTagsUri false browser.startup.homepage http://www.google.co.uk/ browser.startup.homepage_override.mstone rv:1.9.2.3 extensions.lastAppVersion 3.6.3 network.cookie.prefsMigrated true places.last_vacuum 1273847973 print.macosx.pagesetup-2 PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCFET0NUWVBFIHBsaXN0IFBVQkxJQyAiLS8vQXBwbGUvL0RURCBQTElTVCAxLjAvL0VO… print.print_bgcolor true print.print_bgimages true print.print_command print.print_downloadfonts true print.print_evenpages true print.print_footerleft print.print_footerright print.print_headerleft print.print_headerright print.print_in_color true print.print_margin_bottom 0.5 print.print_margin_left 0.5 print.print_margin_right 0.5 print.print_margin_top 0.5 print.print_oddpages true print.print_orientation 0 print.print_pagedelay 500 print.print_paper_data 0 print.print_paper_height 11.00 print.print_paper_size -1317362828 print.print_paper_size_type 1 print.print_paper_size_unit 0 print.print_paper_width 8.50 print.print_printer print.print_reversed false print.print_scaling 1.00 print.print_shrink_to_fit true print.print_to_file false print.print_unwriteable_margin_bottom 57 print.print_unwriteable_margin_left 25 print.print_unwriteable_margin_right 25 print.print_unwriteable_margin_top 25 privacy.sanitize.migrateFx3Prefs true security.warn_viewing_mixed false

    Hi Mariah ~
    It's Shaunn, the original poster. Thanks for your posting. I'm glad I'm not the only one that's having this problem.
    Now that you mention it, I'm having the exact same problem on Facebook as well, when I play Family Feud.
    I wish someone would investigate and post a solution to this problem. No-one from Playlist has responded, and no-one "Officially" from Firefox either.
    So Mariah, I appreciate you and your post.
    If you find anything out...from anywhere...would you please let me know. You can post it right here and I'll get an email from Firefox.
    I'll do the same for you.
    Enjoy your day and good luck.
    Shaunn

  • Problem with Localization of Crystal Reports

    Post Author: raj20007
    CA Forum: Crystal Reports
    Hi everyone..I am having a problem with crystal Reports. I need Malayalam unicode( INDIAN Language) to be displayed in the reports, this data will be binded from database.And the problem is : After applying this unicode font to the labels of my reports, some labels in the reports are going invisible.Also, previously  if I increase the font size beyond 22, I used to get "A Generic error occured in GDI+".  But after changing the textformat property of the field to "crRtfText" from "crstandardText" , I could resolve this Generic Error.
    And, I could also observe that the last char of the fields in the "details" section is repeating.This is the code I am using to apply local font to the labels.
    Private Sub assignfont()
      Dim Mfont As New Font("kartika", 20, FontStyle.Regular,GraphicsUnit.Document)
      CType(Report.Section8.ReportObjects("Field45"), CrystalDecisions.CrystalReports.Engine.FieldObject).ApplyFont(Mfont)
       CType(Report.Section8.ReportObjects("Field48"), CrystalDecisions.CrystalReports.Engine.FieldObject).ApplyFont(Mfont)
      End SubAnd I am calling this function in the form load event of that report.Any suggestion on this is greatly appreciated........Thanks in advance..

    Thanks for replying.
    Yes I am trying to move the 15mb of template files which are located in the Users Profile to a different location. I have modified the key in the Registry which defines this location: HKEY_CURRENT_USER\Software
    Business Objects\Suite 12.0\Crystal Reports\ChartSupportPath=My Defined Location
    I have done this prior to installtion and prepulated the registry and the templates in my defined location, but the installation over looks this and writes over the reg key. Even after modifying the reg key post installation, the application writes over this key and ignores what's in there. Does this mean that the Install.EXE is hard coded to always over write that location, and therefore the crw32.exe is hard coded to look in the User's Profile for the templates, and if they are not there it will create a copy for the User specific??
    Thanks

  • How to report Nokia E71 localization error?

    Hi all!
    The Swedish localization of the Nokia E71 interface has an error that has outlived several firmware upgrades. How Nokia has let this slip through is beyond me. How/where does one best report localization bugs?
    For the interested, this is what I am talking about:
    When viewing one of your contacts you see 'First name' and 'Last name'. The Swedish localization has it as 'Förnamn' (correct) and 'Namn' (incorrect). 'Last name' should of course be 'Efternamn'.
    See? Huge deal :-)
    But back to my question - is there anyway to report this formally?
    Best,
    F. 

    Normally your channel to offer feedback is your local Nokia Care, but I'll pass your comments up the line also.
    Kind regards.
    If this or any post answers your question, please remember to help others by pressing the 'Accept as solution' button.

  • Vendor Payment Performance Report

    Hi,
    I am in the process of developing a report which should show details of Project, Service orders and purchase orders information. If end user inputs project/SO/PO/Vendor in the selection screen of the report, they are expected to see service orders and their related costs information. In the drill down they would like to see related Purchase orders information of the service orders including PO Quantity, PO Value, Invoiced Quanity, Invoice value, Invoice creation date, Invoice posting date, Invoice due date(Invoice date + Vendor Payment terms), Actual payment date to Vendor, Blocked invoices, Reason for blocking, Vendor info. Is there any Business Content reports, cubes, extractors availabe to serve my purpose ?  If this requirement can't be developed in one report please suggest what is the best way of doing.
    Eg of Report Result data:
    Selection screen can have Project, Service Order, PO, Vendor, Year & Month
    Report Results:
    Project     SO         PlannedCost
    WBS1      1001      5000 GBP        
    (5000 GBP contains 2000 GBP spent on labour cost + 3000 GBP spent on material which will  be paid to different vendors)
    If we drill down using Purchase Order it should show PO details for 3000 GBP and show blank for 2000 GBP
    Project    SO        PO     POValue   InvoiceValue    IVdate   IVPaiddate    IVDuedate    Vendor
    WBS1     1001    2000   -
    WBS1     1001    P123   1000          1000               1.8.09     16.8.09       15.8.09         CP
    WBS1     1001    P234      500           500               15.7.09    15.8.09      15.8.09         BP
    With the above info 100% ontime payment made to vendor BP, for CP it is not, Customer is interested to see this level of information.
    For 3000 GBP , for  all the purchase orders we need to show PO Quantity, PO Value, Invoiced Quanity, Invoice value, Invoice creation date, Invoice posting date, Invoice due date(Invoice date + Payment terms), Actual invoice payment date, Blocked invoices, Reason for blocking, Vendor info details
    Waiting for experts suggestions on the above requirement.

    Hi,
    You can create a report on this, but first have to findout in which all the tables your fields existing. Based on this you can build a report in r/3 or a FM which you can use it in Generic DS.
    Hev you gone thru standard Purchase DS which available in r/3 side. Just check them it might suits your requirement.
    also check the below docu for more info:
    http://help.sap.com/saphelp_470/helpdata/en/75/ee1fa755c811d189900000e8322d00/frameset.htm
    Reg
    Pra

  • Firefox crashed when I restarted it to install plugins and the crash reporter is unable to submit a report for this crash. How can I submit this report?

    # This file is in the UTF-8 encoding
    [Strings]
    # LOCALIZATION NOTE (isRTL):
    # Leave this entry empty unless your language requires right-to-left layout,
    # for example like Arabic, Hebrew, Persian. If your language needs RTL, please
    # use the untranslated English word "yes" as value
    isRTL=
    CrashReporterTitle=Crash Reporter
    # LOCALIZATION NOTE (CrashReporterVendorTitle): %s is replaced with the vendor name. (i.e. "Mozilla")
    CrashReporterVendorTitle=%s Crash Reporter
    # LOCALIZATION NOTE (CrashReporterErrorText): %s is replaced with another string containing detailed information.
    CrashReporterErrorText=The application had a problem and crashed.\n\nUnfortunately the crash reporter is unable to submit a report for this crash.\n\nDetails: %s
    # LOCALIZATION NOTE (CrashReporterProductErrorText2): The first %s is replaced with the product name (i.e. "Firefox"), the second is replaced with another string containing detailed information. These two substitutions can not be reordered!
    CrashReporterProductErrorText2=%s had a problem and crashed.\n\nUnfortunately the crash reporter is unable to submit a crash report.\n\nDetails: %s
    CrashReporterSorry=We're Sorry
    # LOCALIZATION NOTE (CrashReporterDescriptionText2): The %s is replaced with the product name.
    CrashReporterDescriptionText2=%s had a problem and crashed.\n\nTo help us diagnose and fix the problem, you can send us a crash report.
    CrashReporterDefault=This application is run after a crash to report the problem to the application vendor. It should not be run directly.
    Details=Details…
    ViewReportTitle=Report Contents
    CommentGrayText=Add a comment (comments are publicly visible)
    ExtraReportInfo=This report also contains technical information about the state of the application when it crashed.
    # LOCALIZATION NOTE (CheckSendReport): The %s is replaced with the vendor name.
    CheckSendReport=Tell %s about this crash so they can fix it
    CheckIncludeURL=Include the address of the page I was on
    CheckSendEmail=Email me when more information is available
    EmailGrayText=Enter your email address here
    ReportPreSubmit2=Your crash report will be submitted before you quit or restart.
    ReportDuringSubmit2=Submitting your report…
    ReportSubmitSuccess=Report submitted successfully!
    ReportSubmitFailed=There was a problem submitting your report.
    ReportResubmit=Resending reports that previously failed to send…
    # LOCALIZATION NOTE (Quit2): The %s is replaced with the product name.
    Quit2=Quit %s
    # LOCALIZATION NOTE (Restart): The %s is replaced with the product name.
    Restart=Restart %s
    Ok=OK
    Close=Close
    # LOCALIZATION NOTE (CrashID): The %s is replaced with the Crash ID from the server, which is a string like abc12345-6789-0abc-def1-23456abcdef1
    CrashID=Crash ID: %s
    # LOCALIZATION NOTE (CrashDetailsURL): The %s is replaced with a URL that the user can visit to view the crash details.
    CrashDetailsURL=You can view details of this crash at %s
    ErrorBadArguments=The application passed an invalid argument.
    ErrorExtraFileExists=The application didn't leave an application data file.
    ErrorExtraFileRead=Couldn't read the application data file.
    ErrorExtraFileMove=Couldn't move application data file.
    ErrorDumpFileExists=The application did not leave a crash dump file.
    ErrorDumpFileMove=Couldn't move crash dump.
    ErrorNoProductName=The application did not identify itself.
    ErrorNoServerURL=The application did not specify a crash reporting server.
    ErrorNoSettingsPath=Couldn't find the crash reporter's settings.
    ErrorCreateDumpDir=Couldn't create pending dump directory.
    # LOCALIZATION NOTE (ErrorEndOfLife): The %s is replaced with the product name.
    ErrorEndOfLife=The version of %s you are using is no longer supported. Crash reports are no longer being accepted for this version. Please consider upgrading to a supported version.

    I think you may have pasted the wrong thing into the Description.
    To try and resubmit a pending report (for example if you lost your internet connection):
    #Go to about:crashes in the location bar
    #Click the latest report link to resubmit it
    If there isn't a pending crash report listed, I'm afraid you may be out of luck for that crash report.

  • Need customised report for list of stock for  partially processed materials.

    Hi ,
    The requirement with process im explaining plz share  the report.
    This customised report related to partiallly processed materials:
    Suppose , after recieving material  from vendor as raw material they will transfer the mat to vendor for processing agsinst 57f4 challan, after completing the process, they will recieve this material , this process will continues to till becoming finished product, once after the finished product come, they will transfer to finished storage location, from there it will be issued to production.
    How to make the report, plz suggest me:
    The report format is :
    S.no    material      description     pending stock       challan pending stock       actual stock
    Pending stock: material to be issued to vendor for proceessing
    Challan pending stock: to be recieved from vendor after processing.
    Actual stock: pending stock+challan pending stock.

    You need these three informations
    Pending stock: material to be issued to vendor for proceessing
            You have to find all Subcon. POs from Table EKKO,EKPO. Po number need to be passed to EKET Table and need to fetch "Reservation Number". Take this number and goto RESB table to get all components. You can find issue documents from MSEG table by passing 541 and PO Number. You need not consider all 541 documents which have been converted to Challan as it will be already considered with point no. 2
       2. Challan pending stock: to be recieved from vendor after processing.
            From Table J_1IEXCDTL by selecting 57F4 take all the stock from all the Challans which are having "status" P -Inprocess. (Reconciliation and completion not done.)
       3. Actual stock: pending stock+challan pending stock.
            This is just calculation.
    I think there are many validations and considerations to be made. I think you can build from here.
    Regards
    Binoy

  • Custom report - Can't customize font / table width etc

    So i'm authoring my first report - that works fine; however I can't seem to figure out how to customize the font / table width etc. I'm creating an RDL file from Report Server Project Wizard in Visual Studio and in there i'm changing font sizes and table
    widths and I can see its changing in the RDL file's XML. I then plug the RDL file into my managment pack and import it. I run the report and the results always have this huge font and the table widths don't change. Anyone have any idea what i'm missing or
    why that would be happening? heres the RDL file for reference:
    <Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
    <Body>
    <ReportItems>
    <Textbox Name="textbox1">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>Report1</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    <FontSize>12pt</FontSize>
    <FontWeight>Bold</FontWeight>
    <Color>SteelBlue</Color>
    </Style>
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>textbox1</rd:DefaultName>
    <Height>0.36in</Height>
    <Width>5in</Width>
    <Style>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    <Tablix Name="table1">
    <TablixBody>
    <TablixColumns>
    <TablixColumn>
    <Width>1in</Width>
    </TablixColumn>
    <TablixColumn>
    <Width>2.75in</Width>
    </TablixColumn>
    <TablixColumn>
    <Width>3.58333in</Width>
    </TablixColumn>
    </TablixColumns>
    <TablixRows>
    <TablixRow>
    <Height>0.22in</Height>
    <TablixCells>
    <TablixCell>
    <CellContents>
    <Textbox Name="textbox2">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>Raised Date Time</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    <FontSize>6pt</FontSize>
    <FontWeight>Bold</FontWeight>
    <Color>White</Color>
    </Style>
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>textbox2</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <BackgroundColor>SteelBlue</BackgroundColor>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixCell>
    <TablixCell>
    <CellContents>
    <Textbox Name="textbox3">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>Alert Name</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    <FontSize>6pt</FontSize>
    <FontWeight>Bold</FontWeight>
    <Color>White</Color>
    </Style>
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>textbox3</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <BackgroundColor>SteelBlue</BackgroundColor>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixCell>
    <TablixCell>
    <CellContents>
    <Textbox Name="textbox4">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>Alert Description</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    <FontSize>6pt</FontSize>
    <FontWeight>Bold</FontWeight>
    <Color>White</Color>
    </Style>
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>textbox4</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <BackgroundColor>SteelBlue</BackgroundColor>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixCell>
    </TablixCells>
    </TablixRow>
    <TablixRow>
    <Height>0.21in</Height>
    <TablixCells>
    <TablixCell>
    <CellContents>
    <Textbox Name="RaisedDateTime">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Fields!RaisedDateTime.Value</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    <FontSize>5pt</FontSize>
    </Style>
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>RaisedDateTime</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixCell>
    <TablixCell>
    <CellContents>
    <Textbox Name="AlertName">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Fields!AlertName.Value</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    <FontSize>5pt</FontSize>
    </Style>
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>AlertName</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixCell>
    <TablixCell>
    <CellContents>
    <Textbox Name="AlertDescription">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Fields!AlertDescription.Value</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    <FontSize>5pt</FontSize>
    </Style>
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>AlertDescription</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixCell>
    </TablixCells>
    </TablixRow>
    </TablixRows>
    </TablixBody>
    <TablixColumnHierarchy>
    <TablixMembers>
    <TablixMember />
    <TablixMember />
    <TablixMember />
    </TablixMembers>
    </TablixColumnHierarchy>
    <TablixRowHierarchy>
    <TablixMembers>
    <TablixMember>
    <KeepWithGroup>After</KeepWithGroup>
    <RepeatOnNewPage>true</RepeatOnNewPage>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    <Group Name="table1_Details_Group">
    <DataElementName>Detail</DataElementName>
    </Group>
    <TablixMembers>
    <TablixMember />
    </TablixMembers>
    <DataElementName>Detail_Collection</DataElementName>
    <DataElementOutput>Output</DataElementOutput>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    </TablixMembers>
    </TablixRowHierarchy>
    <DataSetName>DataSet1</DataSetName>
    <Top>0.36in</Top>
    <Height>0.43in</Height>
    <Width>7.33333in</Width>
    <ZIndex>1</ZIndex>
    <Style />
    </Tablix>
    </ReportItems>
    <Height>0.79in</Height>
    <Style />
    </Body>
    <Width>8.1875in</Width>
    <Page>
    <LeftMargin>1in</LeftMargin>
    <RightMargin>1in</RightMargin>
    <TopMargin>1in</TopMargin>
    <BottomMargin>1in</BottomMargin>
    <Style />
    </Page>
    <AutoRefresh>0</AutoRefresh>
    <DataSources>
    <DataSources>
    <DataSource Name="DataWarehouseMain">
    <DataSourceReference>Data Warehouse Main</DataSourceReference>
    <rd:DataSourceID>e4235c51-407f-4065-8519-a1e57374bc45</rd:DataSourceID>
    </DataSource>
    </DataSources>
    </DataSources>
    <DataSets>
    <DataSet Name="DataSet1">
    <Query>
    <DataSourceName>DataWarehouseMain</DataSourceName>
    <QueryParameters>
    <QueryParameter Name="@AlertName">
    <Value>=Parameters!AlertName.Value</Value>
    </QueryParameter>
    <QueryParameter Name="@StartDate">
    <Value>=Parameters!StartDate.Value</Value>
    </QueryParameter>
    <QueryParameter Name="@EndDate">
    <Value>=Parameters!EndDate.Value</Value>
    </QueryParameter>
    <QueryParameter Name="@ObjectName">
    <Value>=Parameters!ObjectName.Value</Value>
    <rd:UserDefined>true</rd:UserDefined>
    </QueryParameter>
    </QueryParameters>
    <CommandText>SELECT dbo.vManagedEntity.FullName,
    dbo.vManagedEntity.TopLevelHostManagedEntityRowId,
    dbo.vManagedEntity.ManagedEntityRowId,
    Alert.vAlert.ManagedEntityRowId,
    Alert.vAlert.AlertName,
    Alert.vAlert.AlertDescription,
    Alert.vAlert.RaisedDateTime
    FROM dbo.vManagedEntity
    INNER JOIN Alert.vAlert
    ON dbo.vManagedEntity.ManagedEntityRowId = Alert.vAlert.ManagedEntityRowId
    WHERE dbo.vManagedEntity.FullName LIKE '%' + @ObjectName + '%'
    AND Alert.vAlert.AlertName LIKE '%' + @AlertName + '%'
    AND Alert.vAlert.RaisedDateTime &gt;= @StartDate
    AND Alert.vAlert.RaisedDateTime &lt;= @EndDate
    ORDER BY Alert.vAlert.RaisedDateTime DESC</CommandText>
    <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
    </Query>
    <Fields>
    <Field Name="AlertName">
    <DataField>AlertName</DataField>
    <rd:TypeName>System.String</rd:TypeName>
    </Field>
    <Field Name="AlertDescription">
    <DataField>AlertDescription</DataField>
    <rd:TypeName>System.String</rd:TypeName>
    </Field>
    <Field Name="RaisedDateTime">
    <DataField>RaisedDateTime</DataField>
    <rd:TypeName>System.DateTime</rd:TypeName>
    </Field>
    <Field Name="ObjectName">
    <DataField>ObjectName</DataField>
    <rd:UserDefined>true</rd:UserDefined>
    </Field>
    </Fields>
    </DataSet>
    </DataSets>
    <ReportParameters>
    <ReportParameter Name="AlertName">
    <DataType>String</DataType>
    <Prompt>Alert Name</Prompt>
    </ReportParameter>
    <ReportParameter Name="StartDate">
    <DataType>DateTime</DataType>
    <Prompt>Start Date</Prompt>
    </ReportParameter>
    <ReportParameter Name="EndDate">
    <DataType>DateTime</DataType>
    <Prompt>End Date</Prompt>
    </ReportParameter>
    <ReportParameter Name="ObjectName">
    <DataType>String</DataType>
    <Prompt>Object Name</Prompt>
    </ReportParameter>
    </ReportParameters>
    <Language>en-US</Language>
    <ConsumeContainerWhitespace>true</ConsumeContainerWhitespace>
    <rd:ReportUnitType>Inch</rd:ReportUnitType>
    <rd:ReportID>4250ddf1-3c87-47b1-b8c2-314aad86ad86</rd:ReportID>
    </Report>
    Any suggestions would be greatly appreciated. Thanks!

    I did some digging and found a link that might help you/have an answer.
    http://stackoverflow.com/questions/14850503/change-default-font-ssrs-visual-studio
    https://connect.microsoft.com/SQLServer/feedback/details/574003/modify-the-default-font-family-for-sql-server-business-intelligence-development-studio-while-creating-a-report#
    If you click on work around someone posted that they were able to modify the default font in visual studio.
    "If I am not mistaken, you can update your Report.rdl template file in visual studio
    to use the default font you wish to use.
    navigate to this location (where x is your visual studio version):
    C:-\Program Files\Microsoft Visual Studio x\Common7\ide\PrivateAssemblies\ProjectItems\ReportProject
    copy report.rdl to an already created report project. 
    Add the report to your report project
    Update the default font where applicable.
    Copy the updated report.rdl back to the location above and that is it.
    The next time you open your project, you will be using the update rdl file as your
    template. 
    You can do this as many times as you want.
    Use this link as a reference
    http://weblogs.sqlteam.com/jhermiz/archive/2007/08/14/60283.aspx
    Cheers,
    Martin
    Blog:
    http://sustaslog.wordpress.com 
    LinkedIn:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Report navigation not working properly for the union report

    i have a report which is union and i need to navigate to another report(detailed).the filters are not carried out to the detailed report .Please suggest me on how to get the filters ar e correctly applied on detailed report.I have prompted the fileds in the detailed report.

    Hi,
    Please refer to the below thread.
    Re: OBIEE-UNION Request navigate is not working (Parameter value is not passed)
    Hope it helps!
    Thansk

Maybe you are looking for