How to design report at run time SSRS

most of the time we point store procedure or table and then SSRS report designer show us field and we just drag drop those field on to report designer surface. after all we call those report programmatically and pass parameter and report shown on report
viewer.
now my company want that customer will customize the report who will see the report. they want to display all the fields in a form and just customer will select each field and place on report designer surface and give some input like filter condition like
date range or employee id etc and report will be shown. also at run time if customer want they can add text or move existing field etc.
i do not have any idea how could i do this with SSRS. if this is possible with SSRS then please guide me in such a way as a result i can start the job or if possible give me few relevant url of that kind from where i can get the idea. thanks

You can also use report builder application to get most of these functionality. For that you'll just create and deploy a report model with required attributes from involved entities.
Then use can consume the model within report builder and add required fields to report,filter etc
see below videos for more details
http://technet.microsoft.com/en-us/sqlserver/dd430326.aspx
Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Similar Messages

  • How to configure oracle 6i report server run time component with application server

    we got oracle 6i report server for developing the web based reports for our undergoing product. we r succesed in developing the web based reports using oracle 6i report server.But we r facing problems while deploying the product with oracle reports at clients place,why because the client does not have the oracle 6i report server. To solve this problem we have to configure the oracle 6i report server run time component with application server at client side , but we are unable to configure this component(that is CGI handler).

    You can run multiple instances of Reports Server in 6i.
    In tnsnames.ora, for each server, have a different name and each listening to different port.
    For example,
    server1.world = (ADDRESS = (PROTOCOL = TCP)(Host = myhost.mydomain.com)(Port = 1949))
    server2.world = (ADDRESS = (PROTOCOL = TCP)(Host = myhost.mydomain.com)(Port = 1950))
    Also, if you want to know about Reports Server Clustering, you may refer to "Publishing Reports" document on OTN:
    http://otn.oracle.com/docs/products/reports/pdf/A73173_01.pdf

  • Modify the title of a wad report at run time.

    Hello Gurus,
    i have a query in a report which lists the products.On clicking on a product, it takes me to anthr template which has the details of that product.The current scene is that whenever the user selects a product its detail report opens in a new browser.
    The requirement is to display the name of the product in the tiltle bar of the browser.
    I have the value of prod selected in a var(thru ABAP code), how can i set the title of the summary report at run time??
    Please send suggestions ASAP.
    Thanks
    Regards,
    priya

    Hi Priya,
    insert a text element into your detail web template and surround it by
    <div id="someid" style="display:none">
    <!-- your text element -->
    </div>
    The text element should display the value of the selected product and its property "ONLY_VALUES" should be set to "X". Now you can access the value of your selected product via JavaScript:
    <script language="JavaScript">
    function getSelectedProduct() {
      var selectedProduct = document.getElementById("someid").innerHTML;
      return selectedProduct;
    </script>
    Now you can set your title with the selected product.
    I hope this helps a bit.
    Greetings,
    Daniel

  • HOWTO: Control Printer Attributes for a Report at Run Time Reports 6i

    HOWTO: Control Printer Attributes for a Report at Run Time
    Like page width , height etc
    my problem is i had installed a printer and it is set for
    printing different reports ( like invoice slips , legal size ,
    A3 etc ) each time i have to manually set the page settup from
    printer folder .instead if there is an option to set the printer
    attributes from Reports 6i it is great
    rajesh

    All the Printer Setup(Page Height and Page Width) must be set in
    the Reprot Program. These can be set at the Layout-Main Section
    in the Object Navigator.
    hth

  • How can I test the running time of a method?

    c.What is the running time of your method smallest, as a function of n, the number of elements in the list? Use big-Oh notation.
    I quoated from a java problem..
    Anyone can tell me how I can test the running time? Thanks ! :D

    it depends on what is in the method. For example a for loop executed n times would have a O(n). A double for loop (each loopp run n times) will have O(n^2). Do this: determine how many times each loop in the method is run. This is the first term in your runtime equation. Do this for all other loops in the method and add them all together. Most other statements that are not iterative should have a constant runtime so O(1). For conditional statements, the runtime depends on the most time consuming portion of the statement. Once all these are added together, take the O(equation) which should just leave the biggest term. i.e. O(5n^2+3n+8) = O(n^2). Hope this helps.
    note: this does not apply to recursive methods

  • Determine fields in a report at run time

    I am using Crystal XI R2 for reporting ina an a VB.net application.
    I want to be able to determine which fields are in a report at run time to provide a list to the user for filtering purposes. I can list the available fields of the database table that the report is hooked into but they might not all be on the report.
    Which Objects and/or Methods are used to determine this?
    Can someone provide an example?
    Thanks ahead of time.

    You will have to use the RAS InProc SDK. RAS Developer help files are here:
    https://boc.sdn.sap.com/developer/library
    Samples:
    https://www.sdn.sap.com/irj/boc/businessobjects-samples?rid=/webcontent/uuid/b02c1cac-ad86-2b10-88ae-cb36551bab06 [original link is broken]
    Intro article:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10b840c0-623f-2b10-03b5-9d1913866b32
    In a nut shell though, your code would be similar to the below (except for a subreport object, you'd be lookign for a db field object.;
    Dim crSections As Sections
    Dim crSection As Section
    Dim crSubreportObject As SubreportObject
    'set the crSections object to the current report's sections
    crSections = crReportDocument.ReportDefinition.Sections
    'loop through all the sections to find all the report objects
    For Each crSection In crSections
    crReportObjects = crSection.ReportObjects
    'loop through all the report objects to find all the subreports
    For Each crReportObject In crReportObjects
    If crReportObject.Kind = ReportObjectKind.SubreportObject Then
    'you will need to typecast the reportobject to a subreport
    'object once you find it
    crSubreportObject = CType(crReportObject, SubreportObject)
    'open the subreport object
    crSubreportDocument = crSubreportObject.OpenSubreport(crSubreportObject.SubreportName)
    'set the database and tables objects to work with the subreport
    <your .SetDataSource code here>
    Next
    End If
    Next
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • OBIEE 11g How to Exclude/Include Multiple columns on BI Report at Run Time

    OBIEE 11g How to Exclude/Include Multiple columns on BI Report at Run Time

    Exclude:
    you Can exclude columns in either Table view or pivot table view by placing those columns in Excluded section but you will notice that it will appear in bi server parsed sql query.
    Not sure you were asking about runtime??
    would you please explain your question!!
    Thanks
    NK
    Edited by: DNK on May 8, 2013 9:48 PM

  • How to Maximize a report in run time previewer

    Hi all,
    I want to maximize my report automatically during run time in the report previewer (I am calling this report from a form).
    Thanks
    Asad.

    Thanks for ur reply.
    Hello Asad,
    It is possible to maximize the run time previewer when calling reports from forms. U need to set a parameter named 'MAXIMIZE' to do that.
    I m attaching a code sample for u. This is working in my production environment.
    DECLARE
    pl_id ParamList;
    BEGIN
         pl_id := Get_Parameter_List('setProposal');
         IF NOT Id_Null(pl_id) THEN
              Destroy_Parameter_List( pl_id );
         END IF;
         pl_id := Create_Parameter_List('setProposal');
    // This parameter is set to hide parameter form at run time     
         Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
    // This parameter is used to maximize previewer window at run // time
         Add_Parameter(pl_id, 'MAXIMIZE', TEXT_PARAMETER, 'YES');
    Run_Product(REPORTS, 'sample.rep', SYNCHRONOUS, RUNTIME,
    FILESYSTEM, pl_id, NULL);
    END;
    Feel free to contact me if u need anymore assistance.
    Take care and bye

  • How to Design Report for Excel output?

    Hello Experts...
    I have both versions Crystal Report XI and Crystal 2013 at this time as we are in the process of Upgrading...
    How to design for excel output with no page size limit.
    I have several fields going across (crossing width of paper size 11X17 landscape) and I do not need this report output to be printed at all only for excel output.
    Appreciate your time!
    Thank you,
    Padma

    Hi Padma,
    You would need to increase the Page Size horizontally. Go to File > Page Setup > Check 'No Printer' > Check 'Dissociate Formatting Page Size and Printer page Size' > Increase the Horizontal value.
    Also see:
    http://scn.sap.com/docs/DOC-6687
    and
    How to WYSIWYG SAP Crystal Reports Export to XLS
    Formatting a Crystal Report for Export to MS Excel
    -Abhilash

  • Generate Reports at run time

    Post Author: Sherif_hfm
    CA Forum: General
    Hi every onewhen I use Crystal Reports 9 or 10 I can Generate Reports and view at run time without I need to save it but now with  Crystal Reports2008 I can not do that , If anyone know how to make that in  Crystal Reports2008 please replythanks 

    Ki Klassal,
    For user simulation you could use a tool such as LoadRunner, this would enable you to action specific tasks i.e.
    User Logons
    Report Refreshes
    Report Schedules
    If you run this against "multiple users" you need to pay attention to your use of the WAIT time parameter, i.e. how long the application waits before user clicks, typically 5-7 seconds for the wait time should be sufficient.
    SAP does not provide any specific documentation around this type of performance activity, but you could also gather valuable information by using our Remote Support Component tools:
    The Remote Support Component is a wonderful new product that enables an SAP BusinessObjects Enterprise administrator to:
    u2022     save time and effort thus reducing cost of ownership
    u2022     identify and resolve performance issues to makes things go faster!
    u2022     Be proactive and not reactive
    And itu2019s completely free!
    Only for SAP BusinessObjects Enterprise XI 3.1 SP2 and SP3 customers.
    Central Monitoring 24 x 7
    u2022     Just one location not multiple
    u2022     No more log files
    u2022     End to end converge
    Guided Analysis
    u2022     Dashboard of all components
    u2022     Traffic Lighting
    u2022     Historic and Live
    Saving you time and effort
    u2022     Root Cause Analysis with u2018Live traceu2019
    u2022     Auto uploading of your configuration
    u2022     Be proactive, not reactive
    An introduction to the benefits of using Remote Support Component for SAP Business Objects Enterprise. The recording is 4 minutes and 30 seconds long: https://sap.emea.pgiconnect.com/p84837556/
    I hope this is a very helpful answer to you.
    Kind regards,
    John

  • Clock In Clock Out Report without running Time Evaluation

    Hi Every1
    Is it possible to get report on clock in clock out without running time evaluation?? Can we get a report on Time events after uploading Punch in punch out from other system thru BDC?
    Here requirement is as soon as punch in punch out is uploaded on daily basis thru BDC they shud get a report on Clock In from th system so that they can immediately find out in morning shift how many employees are present.
    Thanks & Regards
    Neha

    Well what tables are you uploading in the BDC ?? are the PTX tables being uploaded or the PA2011 Tables uploaded ?
    If the PA2011 Tables are uploaded then yes we can run a report for each day as required but if the PTX tables are updated then they are either waiting for managers approval or to be transfered to HR which triggers updation of the Infotypes accordingly.
    And when you transfer to HR i guess Infotype 2011 is not updated but rather 2001 and 2002 Tables are updated but have to check on this, time eval schema would not update 2011 Infotype but rather would update ZL tables with time types if present, try to figure out what table the BDC updates each night.
    Edited by: insane saint on Jul 14, 2009 10:38 PM

  • How to find Query with Running time

    dear frnds,
    I need to find the query details and query execution time from a DB USER. am using oracle 11g. how to generate this report
    please give me any idea.,
    thanks.
    Edited by: Velsjeya on May 14, 2012 1:07 AM
    Edited by: Velsjeya on May 14, 2012 1:07 AM

    Velsjeya wrote:
    thanks a lot,
    here i need to show query running time also...( how many mins that particular query ran) ... please help mePlease do search for the question's answer. V$SQL should be able to show you what you are looking for. Asktom's thread given below discusses the same,
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:912859800346801944
    Aman....

  • How can I delete a "Run Time Air" from my mac book pro

    how can I get rid of the "Run Time Air" on my Macbook Pro

    Welcome to the Apple Support Communities
    If you use Snow Leopard, open iTunes, go to iTunes Store in the iTunes sidebar and log out

  • How to instantiate classes at run time with constructors having arguments?

    I have to instantiate some classes in the run-time because they are plugins. The name of the plugin (pluginClassName) comes from a configuration file.
    Currently I am doing this to achieve it:-
    UIPlugin plugin = (UIPlugin)Class.forName(pluginClassName).newInstance();However, there is a disadvantage. I can not pass arguments to the constructor of the plugin.
    public class RainyTheme extends UIPlugin {
      public RainyTheme() {
       // bla bla
      public RainyTheme(int x, int y , int width, int height) {
       // set co-ordinates
       // bla bla
      // bla bla bla bla
    }Now if I want to instantiate this plugin at runtime and at the same time I want to pass the 4 arguments as shown in the second constructor, how can I achieve this?

    I have no experience with JME and the limitations of its API, but looking at the API docs ( http://java.sun.com/javame/reference/apis.jsp ) it seems that there are two main versions, CLDC and CDC, of which CLDC is more limited in its API.
    The Class class does not contain the methods getConstructor(Object[]) or getConstructors() in this version ( http://java.sun.com/javame/reference/apis/jsr139/java/lang/Class.html ), so it seems that if you are using CLDC then there is no way to reflectively call a constructor with parameters. You'd have to find another way to do what you want, such as use the noarg constructor then initialise the instance after construction.

  • How to Load Classes in run time - Urgent

    Hi All,
    How to Load a class file from a .jar file in JDK1.1 with out using URLClassLoader. I have tried to extract the .jar file by file input stream and zipEntry classes and defineClass using the bytes i got from the stream , but the class loader fails to take the classes that are already loaded in the system.
    The customClassLoader that i created was not able to assign an object to the another reference variable that already in the JVM.Please i want to know how to assign or communicate between the objects of CustomclassLoader and SystemClassLoader?
    Please help me in this regard.
    Thanks in advance,

    Hi,
    The above code works in the straight way if the class is available in the classpath.
    I need to load a class by using custom class loader that i extends from classloader base class .
    I have to read a class file from a .jar file (in server) and load it in run time.Here i am able to read the bytes from the .jar file of the specified class file, but the class that i read extends some other class that is already loaded when i tried to create newInstance of the class i get Exceptions. Here the custom classLoader cannot find the loaded existing class in the JVM.can i get a solution for this situation

Maybe you are looking for

  • Strage Display Problem

    Hi! I got the 17" MacBook Pro at the beginning of December, so it's only a few months old. This is my first Mac so any advice you give will have to be in baby steps! =) I have no idea what update I'm on or any of that stuff. =P But here's what happen

  • HT1386 When I sync my notes to my computer what folder do they go to, cause I can't find them

    When I sync my notes to my computer what folder do they go to, cause I can't find them

  • Installer Error Message with Adobe Pro IX

    I have tried several times to download Adobe Pro IX with no success.  Today I keep getting an error message that states the installer is misconfigured.  Tried to download new installer and just keep getting the same error message.  I checked the syst

  • (error code -8076)

    I just upgraded my macbook pro to OS 01.9.2 and all the permissions are screwed up. I can't back up using time machine because no one can read or write to the disk. HELP!!!  I tried to change permissions in the Get Info window and got this: (error co

  • Doubts in temporary files

    Hi all, last week i did database-cloning using cold backup. the steps i did is 1.)backed up the controlfile. 2.)shutdown immediate 3.)create passwordfile and made directories structures. 4.)edit the pfile 5.)startup nomount pfile 6.)exec.create contr