Localization and RTL support with HTML reports

Hi ,
Can we create reports and  display the report in a web browser.  That implies HTML/JavaScript or Flash (or Silverlight) is also required for web browser display. Is there any details link which shows up the steps of doing this.Also in case of this will there be Localization support which supports the fallowing languages:-
Arabic
Czech
Danish
Dutch
English
Estonian
Finish
French
German
Greek
Hungarian
Italian
Latvian
Norwegian
Polish
Portuguese
Rumanian
Russian
Spanish
Swedish
Turkish
Ukraine
China
For supporting Arabic langauge , is there any RTL (Right To Left) format support.
Thanks,
Prasanna

Please don't double post the same question, see your other post for answers
Don

Similar Messages

  • SilverLight and HTML support with Localization and RTL with SAP Crystal Rep

    Hi ,
    Can you please provide the fallowing information ,
    1)     Silverlight:-
    a)     Does SAP Crystal Reports support , building reports with Silverlight?
    b)     Does SAP Crystal Reports has   Silverlight Designer and Viewer support the fallowing list of languages:-
    Arabic
    Czech
    Danish
    Dutch
    English
    Estonian
    Finish
    French
    German
    Greek
    Hungarian
    Italian
    Latvian
    Norwegian
    Polish
    Portuguese
    Rumanian
    Russian
    Spanish
    Swedish
    Turkish
    Ukraine
    China
    c)     Does this support RTL format ?
    2)     HTML:-
    a)     Is there any support of Designer and Viewer to create HTML reports?
    b)     If there is a support of creating HTML reports , is there any support for above listed languages?
    c)     How about RTL support in case of that?.
    Thanks,
    Prasanna

    Hi ,
    Thanks for providing the information , need more infomation towards creating HTML reports. I didnt understand the fallowing answer
    Is there any support of Designer and Viewer to create HTML reports?
    - Yes. Export to HTML 3.2 and 4
    What i mean about support of Designer and Viewer to create HTML reports is , using SAP crystal reports tools , i must be able to design a HTML report and use the report in WebPages .
    I mostly think this can be achieved and supported , however i need some kind of acknowledgement at this point of time.
    **Also my concentartion is more on getting information on Supporting Localization for the listed languages.If you suggest some blog or forum link which demonstrates on Localization , i would appreciate , if you add infortmation on that  like , lif the approach you are suggesting is generic to accept any type of language with RTL(Right To Left format) support**
    Thanks.

  • Winforms support for Localization and RTL

    Hi ,
    Does SAP Crystal Reports supports Winforms with the following  Localization support for the fallowing languages:-
    Arabic
    Czech
    Danish
    Dutch
    English
    Estonian
    Finish
    French
    German
    Greek
    Hungarian
    Italian
    Latvian
    Norwegian
    Polish
    Portuguese
    Rumanian
    Russian
    Spanish
    Swedish
    Turkish
    Ukraine
    China
    For supporting Arabic langauge , is there any RTL (Right To Left) format support.
    Thanks,
    Prasanna

    Hi ,
    I have vistied the site http://www.sdn.sap.com/irj/boc/bi and looking for Localization and Globalization information , also looked into CR2011 user guide,
    http://help.sap.com/businessobject/product_guides/CR2011/en/xi4_cr_usergde_en.pdf
    as mentioned , didnt see any information on Localization and Globalization.
    I need intial information , if Crystal Reports supports localization with RTL (Right to Left) for the listed languages. Once this information is in hand , i can go furthure and make my hands wet with samples.
    I need this information for WinForms and HTML (for WebPages) , I am not sure how different they are inside CR2010 , but for sure externally WinForms reports and HTML Reports (for WebPages) are different.
    Thanks

  • Is it possible to turn off CSS and design text with HTML only?

    I'm trying to design text with HTML only ie: Font, Color, Size. The only method I'm aware of is to highlight the text and then go to Insert> Html> Text Objects. That method is tedious and time consuming.
    I'm not looking for arguments or reasons as to why I should use CSS, I'm simply looking for a solution to disable CSS and design with HTML. I'm using Dreamweaver CS5.
    Thank you,
    Paul

    Murphy,
    Thank you for your response. I checked the preferences as you advised and could not find any option to turn off CSS. I don't understand why there doesn't seem to be a straightforward solution to this, it seems so simple. The reason is that the code will be inputed into an eBay listing and therefore CSS code is not supported.
    Any other input for a seemingly simple yet complex solution to this is welcome and appreciated.

  • Supporting with refreshed report

    Hello,
    when I created a report with Crysatl reports, only I can refresh the data. How can get another one, who has no Crystal Reports on the system, a refreshed report? For instance as pdf or as Excel spreadsheet. Does I need a Report Application Server and when yes. What is a report application Server?
    Thanks,
    Marion

    Hi,
    If you have Business objects enterprise, then you can save the report to enterprise and there you can schedule the report.
    Using Enterprise URL any one can access the report and can view/schedule the report.
    check the below documents for your reference.
    Official Product Tutorials – SAP BusinessObjects BI Launch Pad 4.x
    http://reports.is.ed.ac.uk/areas/itservices/busintel/TrainingMaterials/newUser/Lesson7-Step2.html
    http://www.businessobjects.com/pdf/products/platform/info_boxi_scheduling_publishing.pdf
    --Praveen G

  • Inventory opening and closing stock with value report

    Hi All,
    Is it possible to get details of both opening and closing stock with value of each items of last financial year (2009-10) in inventory report?
    Mizan

    Hi..
    you can  try this query
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    set @FromDate =
        (Select min(S0.Docdate) from OINM S0 where S0.Docdate >='[%0]')
    set @ToDate =
        (Select max(S1.Docdate) from OINM S1 where S1.Docdate <='[%1]')
    select * from
        SELECT T0.itemcode,
        min(T0.Dscription) as 'Item Description',
        min(B1.ItmsGrpNam) as 'Item Group', W1.Whscode, C1.Location,
        (isnull((
            Select sum(isnull(inqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode
            and O1.Warehouse=W1.Whscode
            and O1.docdate<@FromDate ),0)-
        isnull((
            Select sum(isnull(outqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode
            and O1.Warehouse=W1.Whscode
            and O1.docdate<@FromDate),0)
        ) as [Opening Stock],
        isnull((
            Select sum(isnull(inqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode
            and O1.Warehouse=W1.Whscode
            and O1.docdate>=@FromDate
            and O1.docdate<=@ToDate and O1.inqty>0
            and O1.transtype in (20,18)),0
        ) as [Purchase Quantity],
        isnull((
            Select sum(isnull(outqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
            and O1.docdate>=@FromDate and O1.docdate<=@ToDate
            and O1.outqty>0 and O1.transtype in (21,19)),0
        ) as [Purchase Return Quantity],
       isnull((
            Select sum(isnull(outqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
            and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0
            and O1.transtype in (13,15)),0
        ) as [sale Quatity],
        (isnull
            Select sum(isnull(inqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
            and O1.docdate<=@ToDate),0
            isnull((
                Select sum(isnull(outqty,0))
                from OINM O1
                where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
                and O1.docdate<=@ToDate),0)
        ) as [Closing Stock]
        FROM OINM T0
        INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode
        INNER JOIN OITW T2 ON T1.ItemCode = T2.ItemCode
        INNER JOIN OITB B1 ON T1.ItmsGrpCod=B1.ItmsGrpCod
        INNER JOIN OWHS W1 ON T2.WhsCode = W1.WhsCode
        INNER JOIN OLCT C1 ON W1.Location=C1.Code
        Group by T1.itemcode, T0.Itemcode, W1.WhsCode, C1.Location
    ) a
    where (a.[Opening Stock]
            +a.[Purchase Quantity]
            + a.[Purchase Return Quantity]
            +a.[sale Quatity]+a.[Closing Stock]
           ) !=0
    Regards,
    Bhavank

  • Labview exe with HTML reports

    Hi,
    I am building an exe of a program that use some simple VIs to generate an HTML report (so I didn't need Report Generation Toolkit);
    in the build I found a lot of VIs included in 3 directories: NI_HTML, NI_Reports, NI_StandardReport....are all of them necessary??
    Is there any way to avoid this? Shoudn't the RunTime engine include them?
    I am using Labview 2009
    thanks
    CLD - Labview Certified Developer
    Solved!
    Go to Solution.

       Although I've used the Report Generation Toolkit for some projects, I have avoided using it for those deployed as executables ever since the LVOOP transition caused the distribution to blow up.  I'm looking for an html solution again for an executable.  Is anyone aware of a third-party html LV tool that can create simple reports and doesn't require the Report Generation LVOOP bloat in a distribution?
    Thanks,
       DaveT
    David Thomson Original Code Consulting
    www.originalcode.com
    National Instruments Alliance Program Member
    Certified LabVIEW Architect
    There are 10 kinds of people: those who understand binary, and those who don't.

  • Sending email with HTML report through a button

    Hi,
    I've noticed in APEX 4 there is a default option (through Action Menu -> Download Formats: email) to send an email with report in HTML format...
    may I know how to accomplish it using a Button... seems like APEX is using javascript:gReport.email.show(); function to accomplish it but I don't know how to implement it...
    Please advice
    Thanks in advance

    qwe12654 wrote:
    GokhanAtil,
    I've posted a sample on APEX.ORACLE.COM... LOGIN DETAILS ARE SAME AS ABOVE...
    ON the page now I have both the SQL based report and interactive report...
    On the top right you may see 2 icons.. one for downloading report in PDF (using SQL Report as the source) and the second for sending email (using interactive report, similar logic as what you've recommended)...
    Is there a way I may be able to send report via email, using SQL report as the source (rather than interactive report)...?
    You can always use APEX_MAIL to send emails.
    http://download.oracle.com/docs/cd/E10513_01/doc/apirefs.310/e12855/apex_mail.htm
    or the alternative option would be:
    to convert all my SQL reports into interactive, would require a bit of efforts (I'll go with it if the above option is not available)... but would need to know how to download INTERACTIVE reports in PDF, excel and CSV formats using a button ... similar logic to what you've done for sending emails
    Thanks again for all your assistanceIt's very easy to make buttons for downloading the interactive reports in HTML, CSV or PDF.
    I have created a PDF button and put the link:
    http://apex.oracle.com/pls/apex/f?p=40418:11:1316531694094700:PDF
    "1316531694094700" is the value of p_instance. You can find it from HTML codes of your page:
    <input type="hidden" name="p_instance" value="1316531694094700" id="pInstance">
    You can change PDF to CSV or HTMLD (so your visitor download the report in CSV or HTML)
    Best Regards,
    Gokhan
    If this question is answered, please mark appropriate posts as correct/helpful and the thread as closed. Thanks

  • When I try to save an image firefox is automatically removing any image filetype (.jpg .png .bmp etc) and replacing it with .html

    Every time I try to save an image by right clicking and going save image as firefox is changing the filetype to .html
    It does it for every website and every image regardless of its file type. Even if you go to the direct link for the image and try to save it, it will save it as "image.htm" rather than "image.jpg" as it shows the file to be in the address bar.

    Try the Firefox SafeMode. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    # You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    # Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • JDeveloper and Jasper.. HTML Report without information

    Hello...
    I have integrated iReport with JDeveloper to generate reports from JDeveloper... But when the report is called by a SERVLET information does not appear in.
    I dont know if the datasource in iReport and jDeveloper are distintc.... I really need help...!!

    When your sevlet creates the report you need to pass in a connection. Such as...
    JasperFillManager.fillReport(reportFileName, parameters,
                    conn);Where conn is of type Connection.
    Look at this post for more info:
    Reports in Servlets

  • Aperture and RAW support with Canon EOS 60D

    Got my new Canon EOS 60D yesterday. But Aperture does not support the new RAW photos from the EOS 60D yet.
    Anyone with the same problem?
    When is Apple updating the RAW support for the 60D in Aperture?

    Well, DNGs don't actually contain all the data of the original raw file, so that could be an issue.
    As an example, the focus point functionality of Aperture 3.0 doesn't work with files converted to DNG, as the camera-specific information has been stripped from the file by Adobe. I don't know whether the DNG format can actually hold that info or not, but as of today it doesn't.
    Apple historically has tended to support the new SLR cameras from Canon and Nikon, so I wouldn't be surprised if support came along shortly. That said, buying a camera the day it's available and expecting immediate support for its raw format is not all that reasonable. The vendors providing raw support don't necessarily have access to pre-release versions of the cameras (in general), so there's going to be some time necessary to develop and QA the support for the new format.

  • Change the HTML Report format the same as TestStand 2010 SP1 in TestStand 2012

    I have a lot of test steps (~10K)  that gets executed and the indentations on HTML report format in TestStand 2012 gets too deep.  I have to slide the horizontal bar to the right to see the report when l'm in the middle.  I did not have this issue in TestStand 2010 SP1.  
    Is ther a way to change the HTML Report format (style) the same as TestStand 2010 SP1 in TestStand 2012? 

    dexrays:
    We are currently investigating this issue. In order to help us with the investigation could you post a sequence file and configuration that reproduce the problem? The configuration file is located in C:\ProgramData\National Instruments\TestStand 2012\Cfg\ModelPlugins\ResultProcessing.cfg for Windows Vista / Windows 7 or you can use the Cfg link in the TestStand 2012 installation directory. 
    You can use the Legacy Model Switcher (included in TestStand 2012) to use the legacy models instead of the new models. The legacy models are more backward compatible, however, this also means that you will not be able to use the improvements in the new models (for example, the new plug-in architecture). If this is acceptable then you can use the legacy model switcher to switch to the legacy models. The Legacy Model Switcher is located in the Start Menu under Programs->National Instruments->TestStand 2012->Tools->Compatibility. For more information on Legacy Model Switcher please read the online help.
    Thanks for your report and for your help with diagnosing this issue. 
    - Francisco

  • Repository reports cannot generate HTML report

    Hello
    In our Computing Labs, we have Oracle9i Designer installed on Windows XP Professional.
    Our students are having a problem when they try to Run Report in Repository Reports.
    The student first sees an error message for Internet Explorer that says "Cannot find "file:///c:/docume~1/%username%/LOACLS~1/Temp/ck*.tmp.html". Make sure...". %username% of course being the current user and ck* being the filename of the report.
    If the user examines the contents of ~/Local settings/Temp, they will see that when this error message comes up, there is a file ck*.tmp (no HTML extension). The HTML file is never generated though.
    When the user click on the OK button for the error message, Internet Explorer open to a blank page. When IE is closed, Repository Reports posts a message that says "CDI-21309: Unable to delete file c:\docume~1\%username%\locals~1\Temp\ck*.tmp.html". When the OK button from this message is clicked the user is returned to Repository Reports, but the report is never generated.
    Our users are set up as Dynamic Local Users, and are members of the Power Users group. We do have some pretty tight restrictions on Group Policy.
    When a user who is a member of Administrators (also dynamic local user) logs in and attempts to create a report, (s)he has no problem. Repository Reports functions exactly as it should.
    I have already given Power Users complete access to all files on the hard drive, so I don't think it could be an NTFS file permission issue.
    If anyone has any advice, it is certainly welcome. Our students need to be able to print off these reports for classes, and I am not familiar at all with Designer.
    Thank you very much
    David Summers
    University of Idaho ITS
    Student Computing Labs

    Here is how I resolved my problem with non admin users not being able to run reports.
    Designer 9i ver 9.0.2.80.6
    Repository Reports ver 9.0.2.80.4
    Problem - When non Administrator users try to generate a report in Repository Reports, they either get a file not found error for the HTML report (and IE will not show the report) or Repository Reports stops responding (and rwrun.exe has to be manually killed).
    Fixes
    -%TMP% and %TEMP% environment variables must resolve to paths that are fewer than 30 characters. In our environment (WindowsXP with Novell Dynamic Local Users), %TMP% and %TEMP% were the temp folders in the user's profile, which is a long path. Changing the environment variables to point to c:\temp was one step in resolving the issue. Although there is a patch released related to this, my installed version is post-patch and I still had to change the temp environment variables.
    -HKLM\SOFTWARE\ORACLE\HOME0\REPORTS_TMP must be set to a writable area for the user group using Designer and Reports. In our environment it was set (during install) to the local administrators temp space (in administrators local profile) - I'd guess it gets set to whatever %TMP% or %TEMP% is for whichever user installs the application. Our users cannot write to this folder, so setting this registry value to c:\temp was another step in resolving the issue.
    -c:\OraHome1\reports\logs must be writable for whichever user group is running Reports. Before making this change but after making the previous two changes, reports would simply freeze for Power Users. When trying to log off, rwrun.exe had to be manually killed - and sometimes a Dr Watson report would come up and ask to be sent in. By granting the user group that uses Reports write permissions to this folder (or the equivalent in your environment), Repositry Reports no longer freezes and successfully generates the HTML report.
    David Summers
    University of Idaho ITS
    Student Computing Labs

  • Support for Crystal Report XI runtime on Windows Server 2008 R2

    Hi all,
    I was wondering if Crystal report XI runtime is supported on Windws Server 2008 R2.
    I've found this url http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e06b8953-a62b-2d10-38b9-ca71f747e2b1?QuickLink=index&overridelayout=true&59511066859035
    We are develping with .Net framework 2.0.
    Thanks in advance.
    Regards.
    Roberto.

    Hi Roberto,
    By 'Crystal report XI runtime' if you mean CR 11.0, then it is not supported with Windws Server 2008 R2.
    See the compatibility chart.
    http://wiki.scn.sap.com/wiki/pages/viewpage.action?original_fqdn=wiki.sdn.sap.com&pageId=56787567
    The link you have referred is for Crystal Reprots for VS 2010 / 2012 / 2013 which is the lates version of CR which provides the SDK.
    http://scn.sap.com/docs/DOC-7824
    - Bhushan
    Senior Engineer
    SAP Active Global Support
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Getting started and moving ahead with Crystal Reports .NET applications.

  • Waterfall Diagram with Crystal Reports

    Dear Xperts ; )
    at the moment we face a problem with creating waterfall diagrams in Crystal Reports based on BEx Queries.
    They work very nice with positive values, but not with the negative ones.
    Does anyone have experience creating waterfall diagrams?
    And btw is it possible to create them also showing negative values?
    We found some tools for xcelsius, but not for crystal reports. But we have no xcelsius here at this customer.
    I would be very thankful for any hints and tipps.
    Thanks in advance.
    BR
    Benjamin Maier

    Hi Benjamin,
    Water fall charts are not yet supported with crystal reports.
    Please have a look to BusinessObjects note # 1264351 - Waterfall chart in Crystal Reports XI (R2 and 3.0) 
    For your reference i have paste the content of note:
    Symptom
    Are Waterfall charts supported in Crystal Reports XI R2 and 3.0?
    Reproducing the Issue
    Applies to any Crystal Reports version in XI R2 and Crystal Reports 2008
    Create or open a Crystal Report in the designer
    Insert a chart and try to find the chart type 'Waterfall'
    This type cannot be found
    Closest type is Stacked bar chart
    Cause
    Waterfall chart type is not yet supported by Crystal reports.
    Resolution
    Enhancement Request has been logged:  ADAPT01087191
    I have checked the status of Adapt its not resolved.
    Regards,
    Shweta

Maybe you are looking for