Is it possible to create a reportviewer directly in javascript?

My scenario:
I want to be able to use my custom server (C#, visual studio 2013) application to generate a report based on pre-built Crystal Report 2013 .rpt's. I then want to display that in the front end of my website somehow, using javascript. The quickest solution I have found is to simply export a report to .pdf
PDF creation Example (C#):
ReportDocument cryRpt = new ReportDocument();
            cryRpt.Load("Reports/test.rpt");           
            try
                ExportOptions crExportOptions;
                DiskFileDestinationOptions crDiskFileDestinationOptions = new DiskFileDestinationOptions();
                HTMLFormatOptions crFormatTypeOptions = new HTMLFormatOptions();
                crDiskFileDestinationOptions.DiskFileName = "Reports/test_pdf.html";
                crExportOptions = cryRpt.ExportOptions;
                crExportOptions.ExportDestinationType = ExportDestinationType.DiskFile;
                crExportOptions.ExportFormatType = ExportFormatType.HTML40;
                crExportOptions.DestinationOptions = crDiskFileDestinationOptions;
                crExportOptions.FormatOptions = crFormatTypeOptions;
                cryRpt.Export();
            catch (Exception ex)
                Console.Write("fail");
After it's in PDF form, I can handle it natively in javascript/jquery, in whatever way I need.
Question:
What I'd also like to explore is the idea of using a crystalReportViewer, directly in the javascript that makes up the front end of my website, and have my server give me the report source. Is this possible?

My scenario:
I want to be able to use my custom server (C#, visual studio 2013) application to generate a report based on pre-built Crystal Report 2013 .rpt's. I then want to display that in the front end of my website somehow, using javascript. The quickest solution I have found is to simply export a report to .pdf
PDF creation Example (C#):
ReportDocument cryRpt = new ReportDocument();
            cryRpt.Load("Reports/test.rpt");           
            try
                ExportOptions crExportOptions;
                DiskFileDestinationOptions crDiskFileDestinationOptions = new DiskFileDestinationOptions();
                HTMLFormatOptions crFormatTypeOptions = new HTMLFormatOptions();
                crDiskFileDestinationOptions.DiskFileName = "Reports/test_pdf.html";
                crExportOptions = cryRpt.ExportOptions;
                crExportOptions.ExportDestinationType = ExportDestinationType.DiskFile;
                crExportOptions.ExportFormatType = ExportFormatType.HTML40;
                crExportOptions.DestinationOptions = crDiskFileDestinationOptions;
                crExportOptions.FormatOptions = crFormatTypeOptions;
                cryRpt.Export();
            catch (Exception ex)
                Console.Write("fail");
After it's in PDF form, I can handle it natively in javascript/jquery, in whatever way I need.
Question:
What I'd also like to explore is the idea of using a crystalReportViewer, directly in the javascript that makes up the front end of my website, and have my server give me the report source. Is this possible?

Similar Messages

  • OIM11gR2 - Is it possible to create a direct link to a specific area in the oim plattform?

    hi,
    is it possible to create a direct link to specific area in the oim self service plattform? for example a link to the users account list, or a link to a specific resource account?
    br,
    max

    Hi,
    Yes, Its very much easy in R2 as compared to R1. You can use following link to achieve your requirement:
    http://docs.oracle.com/cd/E27559_01/dev.1112/e27150/uicust.htm#BABIDJAB
    ~J

  • Is it possible to create a Clone database with the same name of source db ?

    Is it possible to create a Clone database with the same name of source db using RMAN ...
    DB version is 11.2.0.2
    Is it possible to clone a 11.2.0.2 database to 11.2.0.3 home location directly on a new server . If it starts in a upgrade mode , it is ok ....

    user11919409 wrote:
    Is it possible to create a Clone database with the same name of source db using RMAN ...
    yes
    >
    DB version is 11.2.0.2
    Is it possible to clone a 11.2.0.2 database to 11.2.0.3 home location directly on a new server . If it starts in a upgrade mode , it is ok ....yes
    Handle:     user11919409
    Status Level:     Newbie (10)
    Registered:     Dec 7, 2009
    Total Posts:     102
    Total Questions:     28 (22 unresolved)
    why do you waste time here when you rarely get any answers to your questions?

  • Is it possible to create a rule across 2 models?

    Is it possible to create a rule across 2 models? I added Jack as a creator of an articles in articles model and then I added a row to make creator a subclass of person. So now I'm trying to query across 2 models. I was trying the following query. Give me the grandfather of the author of the article with the title ERNIEX
    SELECT m grandfater, c creator, t title
    FROM TABLE(SDO_RDF_MATCH(
    '(?t :title "ERNIEX") (?m fam:grandParentOf ?c)',
    SDO_RDF_Models('articles2', 'family'),
    SDO_RDF_Rulebases('RDFS', 'family_rb'),
    SDO_RDF_Aliases(SDO_RDF_Alias('','http://purl.org/dc/elements/1.1/'), SDO_RDF_Alias('fam','http://www.example.org/family/')),
    null));
    When I run the query about I get the error
    ORA-20000: We do not have a valid rules index for this Model-Rulebase combination
    So I thought to create a index but I'm not sure how. I tired the following code but I think I'm doing something wrong. Can anyone point me in the right direction. Or for that matter does anyone know of a more extensive tutorial to using the database? Thanks
    BEGIN
    SDO_RDF_INFERENCE.CREATE_RULES_INDEX(
    'rdfs_rix_articles2_faily',
    SDO_RDF_Models('family', 'articles2'),
    SDO_RDF_Rulebases('RDFS','family_rb')
    END;
    Ernest Lim

    You are right, a rules index would have to be created for the rulebases and both the models you use in the query. The example in the rules index creation you have shown at the end of your post does exactly that - creates a rules index for the set of rulebases and models: RDFS, family_rb, family, articles2. Once that rules index is created you should be able to run the query without getting the error.
    Did you get an error while trying to create a rules index using the code shown in your post?
    FYI, a forum for posting semantics questions is at RDF Semantic Graph

  • Is it possible to create a Column with Conditional Mandatory with another Column?

    Is it possible to create a Column with Conditional Mandatory with another Column?
    For example
    In a Table we have column A, B, C.
    A is Primary Column.
    B is Optional
    C is Conditional Mandatory.
    A B
    C
    12345 ABC
    OK
    12346 NULL
    NULL
    12347 ABC
    OK
    Only if the B Column has the value then only C column should be mandatory

    I guess you can't create a condtional mandatory column directly. However, you can use check constraint to on the column
    create table YourTable
      A int primary key,
      B char(3),
      C int,
      constraint ch_con check(
                                B
    is not null
    or C is null

  • Is it possible to create dimension roles in AWM?

    Hi,
    Is it possible to create dimension roles in AWM like the way we have in OWB ?
    If yes, please direct on the way to do this.
    Many thanks in advance for your kind inputs.
    Piyush

    I think what you need is to use the ALIAS option that is part of the DEFINE DIMENSION statement
    DEFINE DIMENSION ALIASOF
    The DEFINE DIMENSION ALIASOF command defines a dimension alias for a simple dimension. An alias dimension has the same type and values as its base dimension. Typically, you define an alias dimension when you want to dimension a variable by the same dimension twice.
    Additionally, You can use a LIMIT statement to limit alias dimensions and define variables and relations using an alias dimension. However, you cannot maintain an alias dimension directly; instead you maintain its base dimension using MAINTAIN.
    Syntax
    DEFINE name DIMENSION ALIASOF dimension [TEMP] [AW workspace] [SESSION]
    Arguments
    name
    The name of the object you are defining. For general information about this argument, see the main entry for the DEFINE command.
    DIMENSION ALIASOF
    If you look at this example if provides a great example of how to use this feature:
    http://download.oracle.com/docs/cd/B19306_01/olap.102/b14346/dml_x_decimal006.htm#ABC1485326
    But of course the main issue here is how to generate the standard form metadata required to support this feature and make the dimension alias avaliable and visible within AWM. That is the difficult (and I would say impossible) part of the process since this feature is not supported by the AW XML API (at least I don't think it is, you could check the API docs to see if this is supported). if it is not supported then the management of this feature would all have to be controlled via OLAP DML commands (load dimension members etc) but you would still not be able to include it within a cube definition and then maintain that cube using AW XML API.
    Does that help?
    Keith

  • Is it possible to create a editable pdf with validation(required field) using Adobe Acrobat pro version?

    Hi,
    the subject says it all. I have downloaded the trail version to see if its possible to create a editable pdf with validation(required field) using Adobe Acrobat pro version?
    Basically, I will have to create a pdf form where users fill it and send it back to me. there will be required fields (the textbox and check box) that user need to fill before saving the editable pdf?
    Is it possible. if so, can someone kind enough to point to me right directions?
    Thanks in advance.

    Thanks for reply. What I am trying to achieve is to give an option for the user to download the pdf form and once the user tries to save the pdf, it validates with the required field. I managed to create the editable pdf with required fields option. I just need that validation to be done when user click on save file. How can I achieve this? thanks so much for your help.

  • Is it possible to create a tagged pdf with apple pages?

    Not sure if possible and any tutorials would be appreciated.

    > Is it possible to create a tagged PDF with Apple Pages?
    Short answer: No, Apple chose at the introduction of Mac OS X to support only Adobe PDF 1.3 and those parts of Adobe PDF 1.4 that include device-independent transparency, but not those parts of Adobe PDF 1.4 that include Adobe XMP for XML markup of the page description program.
    Long answer: Adobe PostScript is a page description programming language, unlike Xerox Interpress which is a page and document description programming language. In other words, Adobe PostScript is a streaming or sequential rendering model that cannot simulate the behaviour of a bound book where the user can turn from any one page to any other page arbitrarily. Adobe introduced Acrobat Distiller in 1993 in order to convert Adobe PostScript page description programs into Adobe PDF page and document description programs that share the same fundamental functionality as Xerox Interpress.
    Conversion from Adobe PostScript to Adobe PDF buys one nothing but page-independent processing. Specifications published by Adobe in 1993 state how the SFNT Spline Font file format used by Apple and Microsoft for Unicode imaging has to be re-encoded into PostScript font program dictionary format (PostScript so-called simple fonts with less than 256 glyphs and PostScript so-called complex fonts (CID fonts) which are simple fonts tiled into a single superfont). All that is left is the glyph identifiers, and per Unicode Specification version 1.0 the glyph identifiers are private and font-dependent, so no character information can be inferred.
    ISO 19005:2005 PDF/A is a superset of ISO 15930:2002 PDF/X-3. The problem with ISO 15930:2002 PDF/X-3 is the same as above, that is, Adobe PostScript cannot encode the file format of the International Color Consortium, which has to be re-encoded to PostScript CSA Color Space Arrays and PostScript CRD Color Rendering Dictionaries. It is possible to encode the ICC file format directly in PDF 1.3 and higher, as specified in ISO 15930 and ISO 19005, but because PDF encodes only the glyph identifiers that are the output of the SFNT file format, and not the UCS Universal Character Set input and the settings for the feature selectors in the font file, ISO 19005:2005 has come under criticism for failing to support search in complex scripts.
    ISO 19005:2011 is supposed to address the shortcomings by saving the UCS input into the PDF itself, but in this case it is impossible to use Adobe PostScript and Adobe Acrobat Distiller as intermediates to Adobe PDF. So in order to drive ISO 19005:2011 Adobe would have to ditch Adobe Acrobat. I am not sure if there is software that implements ISO 19005:2011, but I noted that the Apple iBook Store does not accept PDF at all. Personally, I struggle to think of how to explain to endusers the overwhelming number of Adobe ISO PDF formats (there is PDF/E, PDF/UA and whatever else), and the overwhelming number of Adobe ISO PDF versions of these formats (there is ISO 19005:2005, ISO 19005:2011, ISO 15930 all the way back to 1999/2000 in God knows how many versions at this point).
    Best wishes,
    Henrik Holmegaard
    would-be technical writer

  • Adobe Muse: Is it possible to create a Social Network type website using Muse?

    Hey everyone,
    So ive recently came up with what i believe to be a pretty nifty idea for a social network type website, but i was just wondering is it possible to create such a website using muse? Ive created a few websites with it but never integrated features such as profile pages for users, searching options and other common things found on a few of the more well known sites such as Facebook, Twitter and so on. I dont really want to say what my idea is for obvious reasons, but if anyone knows if you can create a social network style website using Adobe Muse that can incorporate these such features, Id love to know. and if so can you point me in the direction of how to go about it, or to some instructional videos or sites that will help me out. thank you so much everyone,
    Callum

    Hi Prabha Sharma,
    I am afraid that at this stage this is not possible via Muse as that requires server side coding. You can start off creating a skeleton/template for your social networking site via Muse and then use that further with your own custom code. however, I will not recommend that you continue making your site with Muse as you will face issues in altering the muse generated code.
    - Abhishek Maurya

  • Is it possible to create a filter function in Muse?

    I was wondering how to create a filter function in Adobe muse. I need this for a website that rents B&B´s, Agriturismo and some other stuff. I would like to have this filter where people have search options.
    Michiel

    Hi Hans,
    I mean a filter for searching in your website. I give you a website and you see what I mean. I think i have to make a database for this to work.
    www.vivere-e-gustare.com. Here you find on the left top a search engine to fill in your wishes about what you are looking for. I hope I made myself clear.
    Thank you
    Verzonden met Windows Mail
    Van: hans-g.
    Verzonden: donderdag 29 mei 2014 10:08
    Aan: michiel brouwer
    Is it possible to create a filter function in Muse?
    created by hans-g. in Help with using Adobe Muse CC - View the full discussion 
    Hello,
    in which area "people" should have search options? About your whole website, in a menu or, or ...
    To be not left empty-handed  here some links:
    http://helpx.adobe.com/muse/tutorials/building-your-first-website-part-7.html  >>> how to filter the items in the menu list ...
    http://helpx.adobe.com/muse/tutorials/creating-mobile-layout-designs-muse-2.html  >>> Adding links with the Links menu
    Hans-Günter
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6417713#6417713
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Is it possible to create an installation file, or JumpStart file, for iCS 2.x?

    Is it possible to create an installation file using the
    "setup -k" command for
    iPlanet Calendar Server(iCS) 2.1? And is it possible to install iCS 2.1 with
    JumpStart
    from an installation server, or do I need to use the installation log?
    <P>
    The installer for iCS 2.x does not support silent installation (the
    setup -k command). To install
    iCS 2.x, the system administrator must run the installer directly on each
    system where the calendar server is to be installed.
    <P>
    Silent installation may be supported on a future release.

    Wanted to know if [...] is possible to create an offline file(.cab) of our current, company specific Windows Updates.
    No.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Is it possible to create LABViewApplication for our own Hardware?

    Hi everybody...
    We have designed our own Data Acquisition Hardware...earlier we were developing GUI application using VC++ for that hardware..
    Is it possible to create GUI application for our own hardware?..(Serial port,parallel port,ethernet,TCP/IP,USB)..
    (not NI Devices)
    if possible then how to communicate with our hardware....(how to send & receive commands b/n appln software & our hardware)
    need to write any protocols...(then how to write it in Labview)
    i tried something like configuring the channels.....i found difficult to do that..
    is there any way to do that
    i attached our GUIappln jpeg file with this msg as attachement(i need these to be implemented in LabVIEW)
    help me regarding to that appln ..
    thanks...
    Attachments:
    jpeg1.bmp ‏1451 KB

    Itjalal,
    Absolutely. By all means.. NI software tools are not used exclusively with NI products, although in most cases, you'll appreciate that
    You can create your own custom GUI in LabView or LabWindows-CVI (if you are more familiar with C/C++ and need to create instrument drivers). The benefit of using LabView is to be able to create a custom GUI and the tests quickly. You have all the choices for communication (Serial port,parallel port,ethernet,USB).
    LabView is designed with the end-product in mind, however, you will have to prepare your protocols (drivers). I typically create them using LabWindows-CVI as wrapper functions, but if you can communicate to your product directly using software like HyperTerminal or using a TelNet session, then you can communicate with the product by simply using LabView. Even parallel port communication is simple.
    To answer your question on how communication is accomplished, you will have to let us know the following:
    1. what version of LabView that you are using?
    2. how do you "manually" communicate your your product at the moment?
    3. what is your preferred communication method? (Serial port,parallel port,ethernet,USB)
    4. do you have existing communication protocols?
    5. how did you try to configure the channels? can you provide a brief explanation?
    The GUIappln jpeg can be created using LabView. Let's start with the questions above.
    Please keep using this thread as it can contain all the steps to get you to success.
    And remember: have fun with LabView (experiment with it).
    JLV

  • Is it possible to created secondary indexes on ODS in Production

    Hi,
    Is it possible to created secondary indexes on ODS in Production System. I need to create secondary indexes on ODS but it is already in production. Hence Can I directly create secondary indexes without transportation from dev to production?

    Hi,
    Secondary Indexes for DSO can be transported. For the transport the DSO objects needs to be transported (R3TR ODSO <technical name>.
    Additionally, secondary Indexes are necessary quite often for DSO tables, which can be transported. In few cases you need indexes on other BW tables, but they cannot be transported. Never create additional Indexes on InfoCube tables (like E- and F-Fact tables and Dimension tables)
    Thanks & B.R.
    Vince

  • Create Purchase requisitions directly using PS network or indirectly ME51N

    Hello SAP-PS consultants,
    My customer manage big projects that most of the work done by suppliers, contractors and consultants. We use WBS element to define phases in project and for link to budget control in FM (every phase as different budget). We also use activities network to manage the work in the phases. I offer my customer to create Purchase requisitions, as a standard integrated process, using activities. My customer thinks that is more difficult and complicated to create Purchase requisitions directly using PS network. From your experience, is it better to create purchase directly using PS network or indirectly using MM transaction?
    Regards
    Muly Zohar

    Hi Muly,
    The decision to go for PR creation from PS or from MM will be based on the customer requirement.
    1.If the customer requirement is to have both the cost integration as well as the integration project schedule with the PR , then you create the PR from PS.Any changes in the dates of the network will change the requirement dates of the components and will be transferred to the Purchase requisition. Further more planned cost distribution across the duration of the activity is possible in this approach.
    2. Creating the PR from MM will have only the cost integration with the project. Any changes in the project schedule will not transfer the requirement date to the purchase requisition. You normally go for this where scheduling and procurement are independent of each other.
    By clearly explaining these points to your client, I hope they can  make a better choice of which approach to take based on business requirement.
    Regards
    K Ramaiah

  • Is it possible to create a bean that will generate (fill up) applet paramet

    Hi all,
    As a newbie I was asking myself is it possible to create a bean that will fill up applet parameter or directly generate the applet ??
    And I can I create it ?
    I mean : Having a jsp page that make reference to the bean, the bean shall generatehtml applet parameter values.
    Some samples will be welcome or a template.
    Thanks in advance
    Shamann

    Thanks a lot for your reply siv viv,
    I've posted this thread because I'm a little bit disappointed with Applet and jsp according to lot of thread about this subject (it seems that communication between applet and jsp is not easy : bug reported).
    The basic thing i want to do is to create a dynamic Pie Chart as applet or bean so i need to set applet parameter thanks to variables.
    See the http://forums.java.sun.com/thread.jsp?forum=45&thread=80250 this one is putting me in the dark.
    regards
    Shamann

Maybe you are looking for

  • Updating camera raw 7.2

    When I go to send a picture from LR4 to PS5 it says I need to update to camera raw 7.2  I did this but it keeps coming up telling me to do this?  Why is this happening?

  • How to move large number of internal table data to excel by program

    Hi, Iam working on a classical report wherein my requirement is: Have around 25 internal tables which I am displaying using a selection screen.I need to transfer this all internal tables data to Excel file by executing. Now, let me know how can I tra

  • Ragarding ALV Report output  running  in background

    Hi All,             When i running report in background , the output is not formatted. i.e. output is not coming in single row for a particular row in a report,it is down to second row. as result when i spool this output to excel (spread sheet) ,the

  • Break two threaded text frames into 2 separate unthreaded text frames

    I have the most trouble with this.  CS4. What I'm wanting to do is separate two sections, if this is the same answer.  I want my sections stand alone, unthreaded. Thanks!!!!!

  • D9824

    Hi all, any of you have used the D9824 with the new SW 4.0? I'm using it right now, the Interface is plenty new, and it looks great, but I don't know why it is so slow, and a lot of time I have to refresh the browser. If you are having the same probl