Interactive Report - Is it possible?

Hi again, I wondered if it possible in SQL Server Reporting Services 2008 R2, to create a report which an end user can input Comments into.
The comments would be free text and wouldn't for part of the Views/Table where the Datasource comes from. This is purely a report is created and a user has the option to enter a comment which can be fed back to the Analyst who
created the report.

Hi ProfessorFudger,
According to your description, you want to create a report that the end user could enter the comment, then the comment could be sent to the report creator, right?
Reporting Services is used for rendering the report with data retrieved from datasource. In Reporting Services, we can retrieve data from the datasource then design a report, after the report processed, data is fixed on the report. So it’s not supported
to have the end users enter comment and fed back to report creator. For your requirement, it can’t be achieved currently.
If you have any question, please feel free to ask.
Best regards,
Qiuyun Yu
Qiuyun Yu
TechNet Community Support

Similar Messages

  • Interactive Report - is it possible to stop a column being hidden?

    I have an interactive report region where i have a column that has a link that performs an action, in this case it links to a screen where the user can then add a row. I want to make this column mandatory and not let the user hide it. I can remove other functionality, but cant seem to control the hide/show functionality.
    anybody got any ideas?
    craig
    [oracleapplicationexpress.com|http://www.oracleapplicationexpress.com]

    Dear Hemanth,
    To your question:
    "Is it possible to stop a campaign from being cancelled if it has purchase orders attached to it, using standard functionality".
    This might be possible with a BADI implementation. In enhancement spot CRM_MKTPL there exist a BAdI CRM_MTKPL_OL_OBJ where the interface method CHECK_BEFORE_DELETE is offered.
    Regards,
    Anik

  • Default Show Filter Interactive Report

    Hi,
    When going to a page that has an Interactive Report is it possible to have the filter shown by default.
    I have a page that is accessed via a modal popup that contains an Interactive Report that is used as a filter for the original page so when the user goes to that page all the user will do is add filters so I want to display the filter option by default.
    Thanks in advance.

    Hi,
    Easiest way is use from Google.
    Add to page HTML header or page template header before #HEAD# substitution
    <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript">google.load("jquery","1.4.4");</script>Alternative see e.g. this
    http://www.oracleapplicationexpress.com/tutorials/66
    Regards,
    Jari

  • Interactive Report Charts

    When a user creates a chart in an interactive report, is it possible to set it so that clicking on a bar/pie wedge/value would take them to a report view filtered down to the records in that set?
    An example: we have an IR, and built a pie chart of users vs. number of requests; when we click on a particular user's wedge, it slides out from the pie slightly, but we'd prefer to be taken to a view of the IR filtered down to that user's requests (so we can view/edit them). Can we do this?
    -David

    That's what I thought. It's not what my users expect, of course, and would make a great feature (HINT, HINT, developers!).
    On the plus side, it's possible to build a report and a (separate) flash chart to give drill-down functionality. It's a more limited option, and might result in user confusion--why can I drill down in this report, but not in this other one?--but it is an option.
    -David

  • Interactive report with named lov

    Hello,
    Is there a way to use a named lov (a static one in my case) in an interactive report?
    When not using an interactive report, this is possible and i can't figure out why oracle would not allow this in an interactive report.

    Hi Jan,
    I can't say for certain why it's not available to use. I imagine that, for some reason, it would interfere with the IR functionality in someway or, that the tables used for IRs just can't handle anything more than simple columns yet. You should add a request to the Enchancement thread Re: Enhancement Request Thread : Post 3.1
    Andy

  • Is possible to save the user that uses the download action in an interactive report.

    Hi,
    In my application I want to save who is downloading the interactive reports information in any format, is it possible?
    Regards

    Hi Eva,
    As far as I know there is not an out of the box option that shows you the user that is downloading the interactive report. I guess you would have to write your own logic for that.
    You can create your own logging table and a dynamic action with
    1) a pl/sql procedure to insert the logging into the table, and
    2) submits the page with the appropriate download format, eg. f?p=&APP_ID.:&APP_PAGE_ID.:&SESSION_ID.:CSV::::
    As trigger of the dynamic action you need to use either of the download buttons, so I'd suggest the jQuery selector "#apexir_dl*"
    Kind regards,
    Vincent

  • Interactive report search field with autocomplete , is it possible ?

    Hi all,
    As you know the APEX provides an in-built search for interactive reports . I would like to know if its possible to add autocomplete feature to this ?
    Thanks & regards
    Umer

    Its nor working for me .
    1) I created an textfiled item- P2_REPORT_SEARCH
    2) added an interadctive report with the source as
    SELECT * FROM (
    select     "WSR"."ID" as "ID",
    "WSR"."USER_ID" as "USER_ID",
    "WSR"."FROM_DATE" as "FROM_DATE",
    "WSR"."TO_DATE" as "TO_DATE",
    "WSR"."ACTIVITIES" as "ACTIVITIES",
    "WSR"."PROJECT" as "PROJECT",
    'delete' from
    "WSR" "WSR"
    where
    ("WSR"."USER_ID" = NVL(v('APP_USER'),USER) OR NVL(v('APP_USER'),USER) = 'ADMIN' ) AND (
    "WSR"."FROM_DATE"=to_char(sysdate+ (2-to_char(sysdate,'D')))
    where (
    instr(upper("USER_ID"),upper(nvl(:P2_REPORT_SEARCH,"USER_ID"))) > 0 or
    instr(upper("ACTIVITIES"),upper(nvl(:P2_REPORT_SEARCH,"ACTIVITIES"))) > 0
    instr(upper("PROJECT"),upper(nvl(:P2_REPORT_SEARCH,"PROJECT"))) > 0
    )3) added the folowing query to html header ,
    <script>
    apex.jQuery('#report_' + pId + '_catch').trigger('apexbeforerefresh', pId);
    var l_URL =
    'p='+$v('pFlowId')+':'+$v('pFlowStepId')+':'+$v('pInstance')+':FLOW_PPR_OUTPUT_R'+pId+'_';
    if (pRefreshMode) {
    if (pRefreshMode === 'current'){
    // do nothing to url here
    } else if (pRefreshMode === 'reset') {
    l_URL += 'reset_R_' + pId;
    } else {
    if (!!pSort) {
    l_URL += pSort+'::RP&fsp_region_id='+pId;
    } else {
    l_URL +=
    'pg_R_'+pId+':NO&pg_max_rows='+pMax+'&pg_min_row='+pMin+'&pg_rows_fetched='+pFetched;
    l_URL += ':NO::P2_REPORT_SEARCH:' + $('#P2_REPORT_SEARCH').val();
    var lRequest = new apex.ajax.url(l_URL,
    function(pResponse){
    var l_s = pResponse.readyState;
    var l_Id = lRequest.report_id;
    if(l_s == 1){
    }else if(l_s == 2||l_s == 3){
    }else if(l_s == 4){
    var lTemp = $u_js_temp_drop();
    apex.jQuery('#report_'+l_Id+'_catch').attr('id', 'report_'+l_Id+'_catch_old');
    apex.jQuery(lTemp).html(pResponse.responseText);
    apex.jQuery('#report_'+l_Id+'_catch_old').replaceWith(apex.jQuery('#report_'+l_Id+'_catch'));
    apex.jQuery(lTemp).empty();
    apex.jQuery('#report_' + pId + '_catch').trigger('apexafterrefresh', pId);
    }else{return false;}
    lRequest.report_id = pId;
    lRequest._get();
    return;
    </script>
    4) a dynamic action:
    >
    Name: Instant Search
    Event: Key Release
    Items: P2_REPORT_SEARCH
    Condition: No Condition
    Action: Refresh
    Fire when event result is: True
    Selection type: Region
    Region: WSR(Interactive reoprt region)5) When I enter the query in P2_REPORT_SEARCH , no change happens in the result set of IR
    Edited by: Nice1 on May 16, 2012 1:12 AM

  • Is it possible to bypass the interactive report

    Hi -
    Is there a way to skip the interactive report and go directly to page 2 of my application if the report only returns one row?
    Thanks,
    Matt

    user1055564 wrote:
    Could you give me an example?I can't give you an example because I haven't actually done this, and we're trying to establish connectivity for my new project (no Apex connectivity yet).
    I'm thinking of something like having region item that's populated by a query, probably the count you are lookng for. The region header might have some JavaScript code looking at the count value as a substitution variable or text value you assign and possibly perform a redirect based on that value as set up in the page header.

  • Interactive report - Save as html, possible to save file in database?

    Hi
    I am in a situation where I want the output of a interactive report in HTML format, but I do not wan't to download the files to my computer. I want to automate my process to display the report and save the file to database and to be attached to a email from Apex in a later stage.
    Is this possible at all? tried different aproaches with saving data to clob and converting to blob, but it all look horrible for the end user.
    Sincerely
    Johnny

    Check if the subscription feature or download -> email available in apex 4.0 serves your purpose.

  • Possible bug in APEX 4.0.1: Websheet filter (interactive Reports) in German

    Hi guys,
    I just noticed that the filter criteria don't work when running the websheet application in German. It works in English though.
    The interactive reports for the data grids and reports are affected.
    Cheers,
    ~Diemar.
    Edited by: Dietmar Aust on Sep 28, 2010 10:15 PM

    Hi Dietmar,
    i had the same problem today. All of the tables were missing. But i found a admin link with the possibility to install them. Please don´t ask me, where the link was (it´s more then 5 hours ago :-) )
    HTH
    Marco

  • Is it possible to have editable text field in interactive report?

    Is it possible to have editable text field in interactive report?
    Thanks,
    Dip

    Hi,
    I followed your suggestion and defined an IR with apex_item.text columns and it works fine. Now however I face a new problem when I run the page and use the standard Search Bar:
    - Click on Actions/Filter
    - Select a column, for example the employee name.
    - Open the Expression field LOV: I correctly see the different names.
    - When I select one of the names, in the Expression field, instead of the name, I see:
    "<input type="text" name="f03" size="20" maxlength="2000" value="Eugene" />"
    Horrible!!!!!!
    Is there a way to see the name and not that expression? The same thing get downloaded, so it´s really annoying.
    Thank you very much in advance for your help!!!
    Regards
    Francesco

  • Interactive Reports - Problem (possible bug) with button template?

    Hey all,
    I possibly noticed a problem with the use of the button template of the search bar in an interactive report.
    When I for example choose 'Button Alternative 1' as Button template and then save my report then it looks perfect.
    When I now Export/import my application, I loose the button template of my interactive report, if I open the report attributes it isn't selected anymore.
    Does anyone else have this problem?
    Apex version: 3.1.2.00.02
    Kind regards,
    Oli

    Oli,
    Thanks for bringing this up. One of my beta testers just called to say that two of our IRs weren't showing the Cancel or Apply buttons at all. But the third IR worked fine. In my Alpha version, all three had Buttons as the selected style, so I'm a bit confused what went wrong.
    But now I'm thinking if the fact that I had multiple themes defined in the application might have caused the confusion. I didn't deploy the themes from Alpha to Beta because they were all based on Theme 13, and I thought my extensions were included in the application export (which I didn't realize until recently). I'm guessing that if I drop the extraneous themes on Alpha and re-select the button theme, I should be okay when I deploy again?
    I just dropped the extra themes in my Beta and the IRs button theme was undefined again, so I'm thinking they were pointing to the wrong "button" style. Hopefully cleaning up in alpha and changing these buttons will resolve this and I won't have deployment problems!
    Wish me luck!
    Stew

  • Is that possible to add set pagination to interactive reports?

    Hi, Guys:
    Is that possible to add set pagination to interactive reports like that in classic reports (like row 1 to 20, row 21to 40,...)? I know Jarola had implemented it on
    http://actionet.homelinux.net/htmldb/f?p=100:1
    see thread Column Alignment / Pagination in Interactive Reports
    I can add arrow to last page of report, but I still cannot figure out how to add set pagination to interactive report like what Jarola did, could anyone help me on this?
    Thanks.
    Sam
    Edited by: lxiscas on Nov 6, 2012 3:22 PM

    I made it!
    http://dbswh.webhop.net/htmldb/f?p=BLOG:READ:0::::ARTICLE:41900346848694
    Edited by: lxiscas on Nov 6, 2012 4:44 PM

  • Interactive Report with Calculated Aggregates - possible?

    I'm search for a possibility to create an aggregated column that is simply a computed value of two other aggregates.
    Example
    This how the basis data can look like
    Orderitem  | price |  no.
    A          | 100   | 3    
    B          | 10    | 1     The interactive report allows then to create a calculated column "total price" (price*no.) and some aggregates.
    Orderitem  | price |  no. | total price
    A          | 100   | 3     |  300
    B          | 10    | 1     | 10
               |       | sum: 4 | sum: 310I now want to create an additional aggregate line for column price holding the AVERAGE price.
    If I add such a column the result is (100+10) / 2 = 55 which is wrong from a business perspective.
    The correct value should be: 310/4 = 77.5.
    And the result would look like this
    Orderitem  | price     |  no. | total price
    A          | 100       | 3     |  300
    B          | 10        | 1     | 10
               | avg: 77.5 | sum: 4 | sum: 310Is is somehow possible to create this using only the interactive reports features? Without reprogramming regions or the base SQL.
    I can do it using pure SQL solutions. However the end users don't have the knowledge how to create such complicated queries.
    Edited by: Sven W. on Jul 3, 2009 3:22 PM
    Edited by: Sven W. on Jul 3, 2009 5:02 PM

    Btw. I mentioned that I can do it in pure SQL. Let me share this solution. Problem is that it is not interactive anymore.
    SQL> set timing off;
    SQL> with testdata as (select 'A' Orderitem, 100 price, 3 num from dual
      2                    UNION ALL select 'B' Orderitem, 10 price, 1 num from dual)
      3  select Orderitem,
      4         Price,
      5         num
      6  from testdata;
    O      PRICE        NUM
    A        100          3
    B         10          1
    SQL>
    SQL> with testdata as (select 'A' Orderitem, 100 price, 3 num from dual
      2                    UNION ALL select 'B' Orderitem, 10 price, 1 num from dual)
      3  select DECODE(GROUPING(orderitem), 1, 'All',orderitem) orderitem,
      4         DECODE(GROUPING(price), 1, sum(Price * num)/sum(num) ,price) price,
      5         sum(num) num,
      6         sum(Price * num) total_price
      7  from testdata
      8  group by grouping sets ((orderitem, price, num),()) ;
    ORD      PRICE        NUM TOTAL_PRICE
    A          100          3         300
    B           10          1          10
    All       77.5          4         310
    SQL> I'll guess for the real interactive feature we'll need to wait for some future Apex version.
    Edited by: Sven W. on Aug 19, 2009 2:07 PM

  • Interactive Report with many columns scroll possibility?

    Hello,
    i have an interactive report that has many columns. As so they cannot fit into a page and a scroll bar is used in the bottom of screen, which is not a desired effect.
    What i would like to do (if it's possible) is to have a scroll bar before the pager. Up to now i have found a "fix" for this problem but after the pager and it does scroll the rendering of the report but the pagers' also. My solution is to put the following code in the Region Definition, in Header and Footer group, in Header:
    <style type="text/css">
    #apexir_DATA_PANEL {
    clear:both;
    width:1220px;
    height:650px;
    overflow:auto;
    </style>
    That was in 3.2. Is there any other option/possibility or idea now with 4.0 ?
    TIA

    Hi TIA,
    I hope that following link will help you in regards to your query:
    Jon Fortney implemented and blogged on it: http://jfortney.blogspot.com/
    Alternatively, you can use ExtJS Grid or jQGrid functionality.
    This might help, Horizontal Scrollbar required in  Interactive Report
    Regards,
    Bhavin
    Edited by: Bhavin on Nov 16, 2010 4:32 AM

Maybe you are looking for