Creating a graphical summary of response based on the views created

I created an OOTB survey and created 4 different quarterly view to see the summaries. When I select "show a graphical summary of response," the results are not view specific. Instead, the graphs reflect the total responses. Is there a way to
show the graphical results based on the filtered views I created?

Hi,
You can also export the data to Excel and create the charts in Excel. After that publish the charts back to SharePoint and display the charts based on your need.
Here is a similar thread for you to take a look:
http://social.technet.microsoft.com/Forums/systemcenter/en-US/280d1918-4325-4e61-a8c0-006535d89693/creating-chart-from-sharepoint-survey-list
Best regards.
Thanks
Victoria Xia
TechNet Community Support

Similar Messages

  • Find the folder name based on the View Name

    Hi ,
    I need to find out a Folder name based on a View Name . Basically i know the view Name and want to find out the Folder that is created in Discovrer based out of that view.
    Does any one know of any EUL table that stores this relationship.
    Thanks in advance for your help
    Sunny

    Hi,
    Your requirement can be fulfilled using the following script:
    SELECT bas.ba_name,
    bas.ba_id,
    obj.obj_name folder,
    decode(obj.obj_type,
    'COBJ',
    'Complex',
    'SOBJ',
    'Simple',
    'CUO',
    'Custom',
    'Unknown') AS obj_type,
    decode(obj.obj_hidden,0,'Bare','Hidden') IS_HIDDEN,
    obj.sobj_ext_table folder_source_object
    FROM eul10g_us.eul5_ba_obj_links bol,
    eul10g_us.eul5_objs ; obj,
    eul10g_us.eul5_bas ; bas
    WHERE obj.obj_id = bol.bol_obj_id
    AND bas.ba_id = bol.bol_ba_id
    BUT
    As you can see from the SQL, only simple folders are mapped to objects.
    This means that if the object is used inside a custom folder or complex folder you will not see it.
    Tamir

  • Finder is hiding files based on the view

    In my Downloads directory, I have many files. In column-view (Cmd-3), I see all of them. But when I switch to list view (Cmd-2), it shows a very small subset of my files. I've checked extended attributes, Finder info, and I've found no reason why these files should be hidden. The selection seems random, as some files with the same extension are hidden, but others aren't. Oh, and all of the files are visible in icon view (Cmd-1) also.
    Here are some examples: Documents.zip appears, but Anxiety.zip is hidden. alerts.cl is shown, but eistein.qi is hidden.
    Removing the .DS_Store file has no effect.
    Perplexed,
    John

    Are you using iPhoto 08? If so, I have heard that it holds its file structures very differently in Finder than iPhoto 06 or earlier. Basically, everything is accessible from WITHIN iPhoto, and will also show up in Spotlight as you have found. However Apple in their wisdom have decided to discourage people from manipulating iPhoto documents from outside iPhoto, as it might interfere with iPhoto's file management and lead to problems.
    As the iPhoto files (your photos and folders) are now held inside iPhoto itself, if you do a 'Show package contents' you will see them. If you would rather organise / keep your photos OUTSIDE iPhoto, then go to Preferences and uncheck the 'Copy to iPhoto Library' option under Advanced > Importing (that is an option in iPhoto 06 which I am using - you will have to check if it is still available in iPhoto 08). Then you simply choose yourself how to keep your photos organised, how to import them, etc, and use iPhoto mainly as a viewer & simple editor.

  • ADF BC: Creating updatable VO based upon DB View with "instead of" trigger

    Hello all,
    I have got an interesting issue. I have an Oracle DB view that is used to hide some complexity in the underlying DB design (it does some unions). This view is updatable because we have created an "instead of" update trigger to update the correct table when a row is updated. This is working fine in SQL.
    Next, we have created an ADF Entity object based upon the view, specifying an appropriate PK for the DB View. Then, we have created an updatable VO based upon the EO. All well and good so far. The issue we have is in trying to commit changes to the DB - because the ADF BC framework is trying to lock the row to update (using SELECT ... FOR UPDATE), it's not working because of ORA-02014 - cannot select FOR UPDATE from view with DISTINCT, GROUP BY, etc.
    This leads me to thinking about overridding doSelect() on the EO as hinted here http://radio.weblogs.com/0118231/stories/2005/07/28/differenceBetweenViewObjectSelectAndEntityDoselectMethod.html
    As a temporary test, we have over-ridden the EO's doSelect to call super.doSelect(false) and it does work, although we will have lost update issues as detailed in Steve's article.
    My questions:
    1). Is overriding doSelect() the correct thing here? Perhaps there is a better way of handling this problem? I do have a base EO class from which all of the EO's extend, so adding this behavior should be straightforward.
    2). Does anyone have example doSelect implementation? I am thinking of overriding doSelect for my EO and calling super.doSelect (lock=false), but then I need to deal with some possible exceptions, no?
    Kind regards,
    John

    Hi John,
    I have exactly the same issue as you experienced back in January. I have a complex data modelling requirement which requires the need to pivot rows into columns using ROW_NUMBER() and PARTITION clauses. To hide the complexity from the middle tier, I have created a database view and appropriate INSTEAD OF triggers and mapped my EO to the view. I have overriden the lock() method on the EO implementation class (to avoid ORA-02014) and would like to try the same solution you used with the pl/sql call to lock the record.
    My question is, how did you manage the release of the lock if the transaction was not rolled back or committed by your application i.e. if the user closed the browser for instance.
    In my naivity, I would like to think that the BC4J framework would release any locks for the database session when it found the servlet session to be terminated however my concern is that the lock would persist and cause complications.
    Any assistance greatly appreciated (if you would be willing to supply your lock() method and pl/sql procedure logic I would be even more grateful!).
    Many thanks,
    Dave
    London

  • Block based on a view

    We have a block which is based on a view. When using Forms 6i 6.0.8.8.0 (no patch), querying from this block cause no problem. However, after applying patch 1 (6.0.8.10.3), the form crashes or take forever to retrieve the data.
    Anyone has run into this problem ?
    Is there a work-around other than installing a full patch ?
    Is this a known bug ?
    Thank you.

    you create the view based on the tables first, then you use form design wizrad to create the form based on the view like a table.
    If you want to allow user to edit the fields, then you may either to create a INSTEAD OF trigger on that view in database, or in form block, using ON-LOCK, ON-UPDATE/INSERT/DELETE triggers to do it.

  • Referential integrity based on a view

    Hi,
    I am having difficulty in trying to build referential integrity based on a view.
         I have explained below with an example:
         I have a table called 'vehicles' which is the master table.
         CREATE TABLE vehicles(
         type VARCHAR2(20),
         model_number NUMBER(5),
         price NUMBER(5),
         CONSTRAINT vehicles_pk PRIMARY KEY(type, model_number)
         INSERT INTO vehicles(type, model_number, price) VALUES ('CAR', 1, 100);
         INSERT INTO vehicles(type, model_number, price) VALUES ('BIKE', 1, 50);
         INSERT INTO vehicles(type, model_number, price) VALUES ('CAR', 5, 200);
         INSERT INTO vehicles(type, model_number, price) VALUES ('BIKE', 7, 50);
         I have a view called 'vu_cars' which lists only the CAR from the table 'vehicles'.
         CREATE VIEW vu_cars
         AS
         SELECT model_number
         FROM vehicles
         WHERE
              type = 'CAR';
         I have a table called 'car_properties' which contains the car properties and has referential integrity based on the view 'vu_cars'
    -- This create statement throws an error, am I missing something ... ?
         CREATE TABLE car_properties(
         model_number VARCHAR2(20),
         number_of_doors NUMBER(5),
         PRIMARY KEY(model_number),
         CONSTRAINT vu_cars_fk FOREIGN KEY (model_number) REFERENCES vu_cars(model_number)
    -- Actually I wanted to execute the below insert statements, but am stuck with the above create statement of the table car_properties. Is there anyway to resolve this ?
         --Below should be inserted correctly:
         INSERT INTO car_properties(model_number, number_of_doors) VALUES (1, 4);
         INSERT INTO car_properties(model_number, number_of_doors) VALUES (5, 2);
         --This should throw an error:
         INSERT INTO car_properties(model_number, number_of_doors) VALUES (7, 2);

    One approach would be to:
    1. Add a TYPE column to CAR_PROPERTIES.
    2. Add a check constraint on the TYPE column in CAR_PROPERTIES that requires it to equal 'CAR'.
    3. Create a foreign key constraint on CAR_PROPERTIES referencing both MODEL_NUMBER and TYPE in VEHICLES. This requires a primary or unique constraint on these two columns in VEHICLES, but you already have one. However, both columns should have the same data type in both tables.
    It might look something like this:
    SQL> CREATE TABLE vehicles(
      2  type VARCHAR2(20),
      3  model_number NUMBER(5),
      4  price NUMBER(5),
      5  CONSTRAINT vehicles_pk PRIMARY KEY(type, model_number)
      6  );
    Table created.
    SQL> INSERT INTO vehicles(type, model_number, price) VALUES ('CAR', 1, 100);
    1 row created.
    SQL> INSERT INTO vehicles(type, model_number, price) VALUES ('BIKE', 1, 50);
    1 row created.
    SQL> INSERT INTO vehicles(type, model_number, price) VALUES ('CAR', 5, 200);
    1 row created.
    SQL> INSERT INTO vehicles(type, model_number, price) VALUES ('BIKE', 7, 50);
    1 row created.
    SQL> CREATE TABLE car_properties(
      2  -- Note new column with both not null and check constraint
      3  type VARCHAR2(20) not null check (type = 'CAR'),
      4  -- Note change in data type to be the same as vehicles table
      5  model_number NUMBER(5) not null,
      6  number_of_doors NUMBER(5),
      7  PRIMARY KEY(model_number),
      8  -- Note new constraint referencing vehicles table
      9  CONSTRAINT vehicles_fk FOREIGN KEY (type, model_number) REFERENCES vehicles(type, model_number)
    10  );
    Table created.
    SQL> INSERT INTO car_properties(type, model_number, number_of_doors) VALUES ('CAR', 1, 4);
    1 row created.
    SQL> INSERT INTO car_properties(type, model_number, number_of_doors) VALUES ('CAR', 5, 2);
    1 row created.
    SQL> INSERT INTO car_properties(type, model_number, number_of_doors) VALUES ('BIKE', 7, 2);
    INSERT INTO car_properties(type, model_number, number_of_doors) VALUES ('BIKE', 7, 2)
    ERROR at line 1:
    ORA-02290: check constraint (TEMP.SYS_C0095831) violated
    SQL> INSERT INTO car_properties(type, model_number, number_of_doors) VALUES ('CAR', 7, 2);
    INSERT INTO car_properties(type, model_number, number_of_doors) VALUES ('CAR', 7, 2)
    ERROR at line 1:
    ORA-02291: integrity constraint (TEMP.VEHICLES_FK) violated - parent key not
    found
    SQL> INSERT INTO car_properties(type, model_number, number_of_doors) VALUES (NULL, 1, 4);
    INSERT INTO car_properties(type, model_number, number_of_doors) VALUES (NULL, 1, 4)
    ERROR at line 1:
    ORA-01400: cannot insert NULL into ("TEMP"."CAR_PROPERTIES"."TYPE")Defining a default value for the TYPE column in CAR_PROPERTIES (to set it to 'CAR') might make this approach a little less obtrusive.

  • Online response time in discoverer viewer?

    Dear sir,
    Can anyone help me,
    In discoverer view and plus,how to maximise the response time for the viewer,while n-number of visitors requesting the same report.
    How to analyse that? what settings are there?
    Plz help me , its urgent for my project?
    Regards
    chandrakumar

    In case this helps anyone else - this is the reply I got when I asked SAP this question:
    the total user response time is response time + frontend network time.
    GUI time is already included in the response time (it is the roll in andwait time from the application server's point of view).
    The 'FE (Frontend) net time' is the time consumed in the network for thefirst transfer of data from the frontend to the application server andthe last transfer of data from the application server to the frontend
    (during one dialog step).

  • How to update the Sent Idoc Status based on the Response From Webservice

    Hi All,
    I have to develop Idoc--SOAP Sync Process Scenario Using BPM .
    I have configured every thing using BPM and mapped
    MATMAS----SOAP Request
    SOAP Resp----STATUS.SYSTAT01
    In R/3  the Main Idoc Number(MATMAS) Status needs to be update , but it is creating the new Idoc with STATUS.SYSTAT01.
    I have used STATUS.SYSTAT01 Idoc to Update the status of the Original idoc based on the Response that is coming from webservice .
    I was posted the same thread a days ago and there Bhavesh suggested me some sugessions.
    How can we make the status of the Idoc based on some response Text
    iam unable to follow OR not able to clear my self on this.
    Please suggest me or give some over view kind of thing on this
    Regards

    Hi Suman,
    It is clearly mentioned in SAP help that "SAP Intermediate Documents (IDOCS) are EDI like documents that are asynchronous in nature."
    So Your Scenario is Asynch(receive) - Synch(WS call) -Transformation (Multimapping)- Asynch(Send to R/3).
    now go in this way:
    you can develop all the message Interfaces  of  Abstract catagory (not manditory )
    MI_AA_MATMAS   -> Abstract Asynchronous message    interface for your Matmas IDOC
    MI_AS_SOAP_ReqandResp  -> Abstarct Syncronous MI for SOAP request and response.
    MI_AA_STATUS ->Abstract Asyncronous MI for Status Idoc
    MI_AA_SOAP_Req ->  Abstarct Asyncronous MI for SOAP request .
    MI_AA_SOAP_Res ->  Abstarct Asyncronous MI for SOAP response .
    Thats all in Message interface.
    your first reciever :
    (This will receive the message asynchronously from R/3)
    create a conatainer varaiable (say preceive) and assign it message interface MI_AA_MATMAS
    Now in thw Propert TAB of this step: give this message name.
    Step2: Synchronous call :
    create container Variable psoaprequest and psoapresponse  give abstract message interface MI_AA_SOAP_Req and MI_AA_SOAP_Req  resp.
    Now in thw Propert TAB of this step:
    Synchronous Interface : MI_AS_SOAP_ReqandResp
    Request Message : psoaprequest
    Response Message: psoapresponse
    Transformation Step :
    Here you will specify Interface Mapping that will conatain Multimapping between Synch Response - MATMAs and STATUS
    Let's name it as IM_ResandMatmasToStatus
    create a container variable as pstatus and assign it abstract interface MI_AA_STATUS.
    In Property pan of this step :
    Interface mapping :IM_ResandMatmasToStatus
    Source Message :psoapresponse
                                preceive
    (IT will ask you for two source messages as IM selected in this transformation has 2 source messages)
    Target Message :pstatus
    Send step:
    Select a message as pstatus.
    thats all in IR.
    If have doubt in ID just let me know.
    Thanks
    Sunil Singh

  • Sorting by summary column, query based on previous query.

    Using 10g reports.
    I've got a report with one query currently thats broken down itno a couple groups. I'm trying to change the order they are displyed by based on a summary count of each group. I'm also trying to do another query for the report based on the results of the first one and display that with the information from the first.
    The report currently:
    Chain name
    ABC Stores
        Month
        JUN
         Store Name                   Store ID                bad sales
          Store1                         storeid1                   5
          Store2                         storeid2                   3
          Store3                         storeid3                   1
                                                         month total: 9
    JUL
          Store1                         storeid1                   6
          Store2                         storeid2                   5
          Store3                         storeid3                   2
                                                        month total:13
                                                        Chain total  22
    XYZ Stores
        JUN
          Store1                      storedid1                     20
          Store2                      storedid2                     15
                                                         month total  35
       JUL
          Store1                      storedid1                      11
          Store2                      storedid2                       7
                                                        month total     18
                                                         Chain total     53What I want to do is sort the order the store chains appear in based on the CHain total of bad sales. This is a summary done by the report and not in the sql query at the moment. I would also like to create a second query where it takes the store id and month from the first query and uses it to look up the total sales each store did so I can determine what percentage of the total sales the bad sales were. I would like to add this column plus a calculated percentage column to the right of the current columns but still have them grouped as they are. Is this possible to do or will i need to change my original query?
    Not very familiar with reports and I haven't been able to find anything to indicate how this should/could be done yet. Any help is appreciated.

    hi,
    there is no break order property for summary columns .
    so use the group by and take the sorting order for whole group
    example:
    SELECT DEPTNO, JOB, ENAME, SAL FROM EMP
    ORDER BY SAL
    You then create two groups, G_DEPT and G_JOB. G_DEPT contains
    the DEPTNO column and G_JOB contains the JOB column. If you
    specify a Break Order of Descending for the DEPTNO column and
    Ascending for the JOB column, your output would appear similar
    to that below (assuming you use a Tabular style):
    Deptno Job Ename Sal
    30 CLERK JAMES 950.00
    MANAGER BLAKE 2850.00
    SALESMAN WARD 1250.00
    MARTIN 1250.00
    TURNER 1500.00
    ALLEN 1600.00
    20 ANALYST SCOTT 3000.00
    FORD 3000.00
    CLERK SMITH 800.00
    ADAMS 1100.00
    MANAGER JONES 2975.00
    10 CLERK MILLER 1300.00
    MANAGER CLARK 2450.00
    PRESIDENT KING 5000.00

  • Based on the user response need to calculate measures in universe

    Hello Folks,
    I have report where user prompts for the single day (Ex: OCT 1 2014).All calculations should be at universe layer.
    1.Based on the user response I need to create a report for previous months .
    2. PYTD and YTD measures based on user prompt from universe. [PYTD - JAN 1 2013-OCT 1 2013, YTD - Jan 1 2014- OCT 1 2014].
    Example Date Set :
    DIM 1                    SEP13...............................................................OCT 14      PYTD   YTD
    Florida  state        M1.Single value need to give previous 13 months data    M3        M4
                 federal    M2..Single value need to give previous 13 months data   M5       M6.
    Arizona  state        M1.Single value need to give previous 13 months data    M3        M4
                 federal    M2..Single value need to give previous 13 months data   M5       M6.
    M1...M6 are the measures need to come from universe based on the user prompt.
    M1,M2 Need to give previous 13 months based on user response.
    M3,M5 [PYTD - JAN 1 2013-OCT 1 2013]
    M4,M6 YTD - Jan 1 2014- OCT 1 2014].
    Thanks for your help in advance.

    Hello Folks,
    I have report where user prompts for the single day (Ex: OCT 1 2014).All calculations should be at universe layer.
    1.Based on the user response I need to create a report for previous months .
    2. PYTD and YTD measures based on user prompt from universe. [PYTD - JAN 1 2013-OCT 1 2013, YTD - Jan 1 2014- OCT 1 2014].
    Example Date Set :
    DIM 1                    SEP13...............................................................OCT 14      PYTD   YTD
    Florida  state        M1.Single value need to give previous 13 months data    M3        M4
                 federal    M2..Single value need to give previous 13 months data   M5       M6.
    Arizona  state        M1.Single value need to give previous 13 months data    M3        M4
                 federal    M2..Single value need to give previous 13 months data   M5       M6.
    M1...M6 are the measures need to come from universe based on the user prompt.
    M1,M2 Need to give previous 13 months based on user response.
    M3,M5 [PYTD - JAN 1 2013-OCT 1 2013]
    M4,M6 YTD - Jan 1 2014- OCT 1 2014].
    Thanks for your help in advance.

  • To Select Template based on the responsibility

    Hi All,
    i have created a rdf with multiple templates.
    Whether it is possible to select templates automatically based on the responsibility.
    For ex:
    When the user selects xxx responsibility then xxx template should be default template suppose if user select aaa responsibility the aaa template should be default template.
    Please help me in getting solution for this.
    Thanks
    Rajesh

    I am not giving the solution, one way is, you need to call your program (xxxx) from another program(yyyy, it is a new program). While calling program xxxx from program yyyy, you need to calculate the template name based on the responsibility and use that in fnd_request.add_layout.

  • Security based on the position and responsibility of Siebel tables.

    Hi Forum,
    We have a requirement to show some reports based on OLTP (Siebel Base tables with S_) tables. so we have created a repository and created few reports in OBIEE.
    Now we want to implement security based on these tables. Like siebel users will be accessing these reports, So how do we implement security based on the position and responsibility of Siebel tables.
    I request to share any links or docs pertaining to above mentioned implementation.
    Thanks

    Could be interference
    AirPort and Bluetooth: Potential sources of wireless interference
    Try:
    - Reseting the BT headset
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset network settings: Settings>General>Reset>Reset Network Settings. You will have to rejoin all wifi networs and re-pair all BT devices

  • Is there a way to create a collection based on the "previous import"?

    is there a way to create a collection based on the "previous import"? that would make it easy to mobile sync the last import to my ipad, and do further picking/rejecting while away from my laptop.

    well, yes, of course i could do it that way. i guess i wasn't specific enough. is there a way to create a smart collection, with the photos in the "previous import" as members of the smart collection.  earlier i mentioned about using this smart collection to mobile sync with my ipad, to do further flagging.
    so my intention, use a smart collection to mobile sync with my ipad, and the smart collection to include the photos from my previous import.
    i guess another way to ask the question, is there a way to create a smart collection, by using some rule or condition in the smart collection, to automatically include previous import photos.
    the documentation says that "previous import" is a collection, even though it shows up in the catalogue side bar section. but i see no way to choose that collection when making a smart collection.
    jd

  • How to create a linked data source with document libraries based on the same template?

    I use SharePoint Foundation 2013, SP Designer and Visual Studio 2013 to my needs. But there are several things which i don't get.
    I have a number of libraries which use the same template. I want to create a linked data source, that would contain them all, and if I add a library based on this template, the library would be added to the data sorce. Is it possible?
    I tried creating linked data souces, but the view that it brings by default is limited(no sorting, etc.). How can it be modified?

    I am planning to do my project on Linux with J2EE,Oracle technologies.You don't need to set up a DSN. Just use a JDBC connect string such as jdbc:oracle:thin:@localhost:1521:xe
    ~Jer

  • How to create ADF UI based on polymorphic view objects

    Hi,
    I'm using JDeveloper build JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660. I created a simple application based on Steve's example #10 [url http://blogs.oracle.com/smuenchadf/examples/]ViewRow and EntityObject Polymorphism.
    I added a men-only attribute "Age" to the "Men" VO and filled it with an arbitrary value in MenRowImpl.java:
    public String getAge() {
         return (String) "45";//getAttributeInternal(AGE);
    }Running the TestModule works perfectly - a row of type "Men" displays the "Age" attribute whereas a row of type "Women" doesn't.
    Afterwards, I setup an ADF ViewController Project and created a JSPX with a read-only form based on the "People" datacontrol with navigation buttons. Running that page always shows the same set of attributes independent of the row type. That's expected behaviour because the binding is defined at design time.
    So my question is: can I somehow achieve the same behaviour for polymorphic VOs as the business component tester shows?
    Kind regards,
    Markus

    Andrejus' example shows how to calculate different values for the same attribute based on overridden view objects. That's not exactly what I'm looking for. I need to display a (at least partly) different set of attributes that changes while the user scrolls through the records of the result set.

Maybe you are looking for