Display Disclaimer message before opening SSRS report

Hello,
I have a requirement to display a disclaimer message before going to the content of a particular report.
The workflow would be:
go to report folder e.g. Reports/Pages/Folder.aspx?ItemPath=%2fMyFolder%2fReports&ViewMode=List
Click on Report x
Display Disclaimer
Press 'ok' on disclaimer
Continue to report
This is SSRS 2012 native.
I had contemplated injecting JavaScript into the report, but this appears virtually impossible to do i a simple manner.
I am stumped as best to how to proceed.
Regards,
MrHH

Hi MrHH,
Per my understanding that you want to display an popup window(disclaimer message) before display the report.
I have tested on my local environment and that we have two method to help you do this.
Method one is simple and more easy to add this action to a special report":
you can create an new report with the information of the disclaimer and add two textbox(Agree,Disagree) perform as the two button, then add "go to report" action for the two buttons, when click "Agree" link to the particular report,
if click on "disagree" will just refresh on this discalimer report.
Note: you need to deploy both the disclaimer report and the particular report to the report server, and when you click on the disclaimer report you will got the display result you want.
Method two:
This method is not that simple, i will give you some sample data to get the popup windows display before you can see the particular report, when you click  the particular report you will get the popup window display with two buttons "Agree"
and "Disagree", when you click the "Agree" you will see the report content, when you click "Disagree" you will link back to the home page of the report manager.
Detail information below for your reference:
 Add some code in the report.aspx file in the path similar to this:
C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager\Pages\Report.aspx
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/start/jquery-ui.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(function() {
$("#dialog").dialog({
title: "jQuery Dialog Popup",
height: "200",
modal: true ,
buttons: {
"Agree": {
text: "Agree",
id: "my-button-id1",
click: function() {
$(this).dialog('close');
document.getElementById("bg").style.display = "none";
"Disagree": {
text: "Disagree",
id: "my-button-id2",
click: function() {
location.href = '/Reports'
</script>
<div id="bg" style="width:100%; height:100%;z-index:20000;background-color:silver" >
<div id="dialog" style="display: none;z-index:20001">
Please make sure you have read this information and understand clearly before enter the report.
</div>
</div>
Note: this sample code now works for all the report in the report manager, you can improve the code by add url to make it just work on the particular report.
2. Restart the Report Server instance in the Reporting Service Configuration manager and then open the report manager to have a test.
If you still have any problem, please feel free to ask.
Regards
Vicky Liu

Similar Messages

  • How to display a message in an audit report?

    hello all,
    i would like to ask how do display a message in an audit report.  here is my code...
    CALL TRANSACTION tcode USING i_bdcdata
                            MODE c_n
                            MESSAGES INTO i_error2.
    IF sy-subrc EQ 0.
    ENDIF.
    CLEAR i_error2.
    LOOP AT i_error2.
      IF i_error2-msgtyp EQ c_e.
        MOVE v_pernr TO i_bdcerror2-pernr.
        MOVE c_infotype TO i_bdcerror2-infty.
        MOVE 'Error' TO i_bdcerror2-msgtype.
    <b>    SELECT SINGLE text
          INTO v_msgtxt
          FROM t100
          WHERE sprsl = i_error2-msgspra
          AND arbgb = i_error2-msgid
          AND msgnr = i_error2-msgnr.
        MOVE v_msgtxt TO i_bdcerror2-msgtxt.</b>
        APPEND i_bdcerror2.
      ENDIF.
    ENDLOOP.
    DESCRIBE TABLE i_bdcerror LINES v_bdcerrors.
    IF v_bdcerrors <> 0.
      SKIP 1.
      WRITE: 'BDC Error Report'.
      SKIP 1.
      WRITE: 'PERNR',
             'INFOTYPE',
             'MESSAGE TYPE',
             'MESSAGE TEXT'.
      ULINE.
      LOOP AT i_bdcerror.
        WRITE: / i_bdcerror-pernr,
               13 i_bdcerror-infty,
               22 i_bdcerror-msgtype,
               35 <b>i_bdcerror-msgtxt</b>.
      ENDLOOP.
    ENDIF.
    the message text that i was getting contains &1, &2 and so on.  how would i be able to replace it with the original value?
    thanks!
    -ann

    After calling the transaction, this is what I do.
    a) Call the function module, <b>MESSAGE_TEXT_BUILD</b> and pass the following values from <b>BDCMSGCOLL</b> or the internal table where you collect the messages.
       i) MSGID
      ii) MSGNR
    iii) MSGV1
      iv) MSGV2
       v) MSGV3
      vi) MSGV4
    There is no need to fetch data using select from table t100.
    It builds the message and returns in MESSAGE_TEXT_OUTPUT which can be then displayed to user.
    Regards,
    Subramanian V.

  • Can we display a message before selection screen

    hi experts,
                   I need to give a message to user's to give information abt the selection screen .
    like select values between 1000 to 2000 only.
    date must be todays date.
    so how i can display a message before the selection screen is displayed

    try like this it may be useful for you.
    load-of-program.
    CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'
      EXPORTING
       TITEL              = 'Selection screen info'
        TEXTLINE1          = 'Material no should be between 1000 and 2000'
       TEXTLINE2          = 'Plant should be 1000'
    *   START_COLUMN       = 25
    *   START_ROW          = 6
    start-of-selection.
    if you want some more fields to pass then search popup* fn module in se37 which can be useful 4 you.
    regards
    shiba dutta

  • How display a message before thread termination

    Hi,
    i want to display a message before the thread completes its work or
    before i destroy it..
    please help me.........

    bhuvanavijayam wrote:
    I have a main class which extends JFrame, in the main class i created an object and started a thread.
    If i close the GUI(JFrame), the thread is also being closed.
    so, before that thread going to be terminated, i want to store some info...
    how to do that.Please start a new thread in the future. It's OK to provide a link to an old thread that you found (like this one), but please don't resurrect dead threads.
    In addition to what Peter suggested, who's forcing you to use the EXIT_ON_CLOSE constant for setDefaultCloseOperation()? If that wasn't explicitly by you or somebody else, closing the JFrame wouldn't be exiting the application in the first place, it would be hiding the Window.

  • Display Warnning message before delete row

    i have a table and i added a column and but in it a button that perform delete action
    when i press the button a row is deleted but i want to display warning message before deleting for example
    "are you sure you want to delete this row ?" Yes or No
    If press yes the row will be deleted else no action is taken
    how can i do this ?

    You can use clientListener to do this.
    <af:commandImageLink text="Submit" id="cil1" partialSubmit="true" >
    <af:clientListener type="action" method="customConfirm"/>
    </af:commandImageLink>
    <af:resource type="javascript">
    customConfirm = function(event) {
    var answer = confirm('Are you sure you want to delete this row?');
    try
    if (!answer) {
    var component = AdfPage.PAGE.findComponentByAbsoluteId("cil1");
    ..... your action here.....
    catch(e) {
    alert(e)
    </af:resource>
    But if there is a event or event listener on the commandimagelink then it will always be called. To avoid that you could remove the actionlistener and add serverlistener and call it through the javascript function. See the "Web User Interface Developer's Guide for Oracle Application
    Development Framework" for more info.

  • [Forum FAQ] How do I display disclaimer message popup window before display the SSRS report?

    Question:
    The requirements is that when you click the report on report manager you will get an popup window with the disclaimer message, only after you read this message you can click the “Agree” button, then you can continue to read the content of the report, if you
    disagree with it, you can click the “Disagree” button to back to the home or other path you want.
    Answer:
    To achieve this goal, we can add some JS or JQuery code in the report.aspx file in the path like:”C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\Pages”
    Find the path of the report.aspx file and add these code in to it.
    <script type="text/javascript" src="</script">http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
    <link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/start/jquery-ui.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
     $(function() {
            var result = new RegExp('[\?&]ItemPath=([^&#]*)').exec(window.location.href)[1];
    //get the path of the folder which the report exists
            var reportFolder = result.split('%2f')[1];
    //get the report name which you want to add this pop up window.
    var reportName = result.split('%2f')[result.split('%2f').length - 1]; 
     //hide the report before you click the agree button
           document.getElementById("ui_form").style.display = "none";
                //alert(result);
                //alert(reportFolder); //test the report folder name to see if it is correct
           if (reportName == "your report name" && reportFolder=="your folder name") {           
     $("#dialog").dialog({
                    title: "jQuery Dialog Popup",
                    height: "250",
                    modal: true,
                    buttons: {
                        "Agree": {
                            text: "Agree",
                            id: "my-button-id1",
                            click: function() {
                                $(this).dialog('close');
    //display the report after you click the agree button.
    document.getElementById("ui_form").style.display = "block";                         }
                        "Disagree": {
                            text: "Disagree",
                            id: "my-button-id2",
                            click: function() {
                                location.href = '/Reports'
            else {
                document.getElementById("ui_form").style.display = "Block";
    </script>
    <div id="dialog" style="display: none; z-index:20001">
     Please make sure you have read this information and understand clearly before enter the report.
    </div>
    When you click the report you will the popup window as below:
    when you click “Agree” the report will display and when you click “Disagree” it will back to the home page.
    Applies to:
    Reporting Services 2005
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Reporting Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Question:
    The requirements is that when you click the report on report manager you will get an popup window with the disclaimer message, only after you read this message you can click the “Agree” button, then you can continue to read the content of the report, if you
    disagree with it, you can click the “Disagree” button to back to the home or other path you want.
    Answer:
    To achieve this goal, we can add some JS or JQuery code in the report.aspx file in the path like:”C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\Pages”
    Find the path of the report.aspx file and add these code in to it.
    <script type="text/javascript" src="</script">http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
    <link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/start/jquery-ui.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
     $(function() {
            var result = new RegExp('[\?&]ItemPath=([^&#]*)').exec(window.location.href)[1];
    //get the path of the folder which the report exists
            var reportFolder = result.split('%2f')[1];
    //get the report name which you want to add this pop up window.
    var reportName = result.split('%2f')[result.split('%2f').length - 1]; 
     //hide the report before you click the agree button
           document.getElementById("ui_form").style.display = "none";
                //alert(result);
                //alert(reportFolder); //test the report folder name to see if it is correct
           if (reportName == "your report name" && reportFolder=="your folder name") {           
     $("#dialog").dialog({
                    title: "jQuery Dialog Popup",
                    height: "250",
                    modal: true,
                    buttons: {
                        "Agree": {
                            text: "Agree",
                            id: "my-button-id1",
                            click: function() {
                                $(this).dialog('close');
    //display the report after you click the agree button.
    document.getElementById("ui_form").style.display = "block";                         }
                        "Disagree": {
                            text: "Disagree",
                            id: "my-button-id2",
                            click: function() {
                                location.href = '/Reports'
            else {
                document.getElementById("ui_form").style.display = "Block";
    </script>
    <div id="dialog" style="display: none; z-index:20001">
     Please make sure you have read this information and understand clearly before enter the report.
    </div>
    When you click the report you will the popup window as below:
    when you click “Agree” the report will display and when you click “Disagree” it will back to the home page.
    Applies to:
    Reporting Services 2005
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Reporting Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • Open SSRS report link in browser

    Hi,
    I have developed 3 SSRS report. these report contains quality and production updates. These report will be using as visual display dashboard in production area and will be view/flash in LCD  monitor.
    My requirements is how can i open the SSRS link using an script and put a time to perform the next SSRS link.  Or it possible to use  IE9 as browser and open the SSRS link. any idea guys is very much appreciated. thank
    you. 
    Jon

    Hi Jon,
    Just as BI_group and Vishal said, there are two methods to open another report from one report in Reporting Services. We can enable an action with “Go to report” or “Go to URL” option to achieve the requirement. For more details, please see:
    Method1: Go to report
    Right-click a report item to open the properties dialog in main report, click Action in the left pane.
    Enable Go to report action, then select the main report name in the drop-down list.
    If we want to pass some parameters from main report to subreport, we can Add a parameter as below:
    Select ID (a parameter name from subreport) in the drop-down list of Name, and select [ID] (a field name from main report) in the drop-down list of Value.
    Method2: Go to URL
    Right-click a report item to open the properties dialog in main report, click Action in the left pane.
    Enable Go to URL action, the URL below is for your reference:
    ="javascript:void(window.open('http://server_name/ReportServer/Pages/ReportViewer.aspx?%2ffolder_name%2fsubreport_name&rs:Command=Render&parameter_name="&Fields!field_name.Value &"'))"
    For more information about Drillthrough, Drilldown, Subreports, and Nested Data Regions (Report Builder and SSRS), please refer to the following document:
    http://msdn.microsoft.com/en-us/library/dd207141.aspx
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Issue while opening SSRS Report with Oracle as Datasource in Report Manager

    I deployed SSRS report in Report Manager but I am unable to generate that report. Am getting following error.
    Is it problem with datasource in report manager? I am not able to change the Data source type to Oracle. It is showing Microsoft SQL Server. How can I change it, no other options are coming except Microsoft SQL Server. Please help.
    An
    error has occurred during report processing. (rsProcessingAborted)
    Cannot
    create a connection to data source 'TEST_DS'. (rsErrorOpeningConnection)
    For
    more information about this error navigate to the report server on the local
    server machine, or enable remote errors

     When I deploy them in localhost, and try to run report in report manager, it is not showing any data source type in drop down list except MS SQL Server. I do not know why it is showing in BIDS and not in report manager!!!
    Hello,
    Based on my test, I can specify the data source type as Oracle after deploy the report to Report Manager and open the report Data source propertity page. If the report use the shared data source, you should check the specify data source at the Data Source
    folder. Please refer to the following screen shot:
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Excel 2002 displays blank sheet when open a report in R/3

    Hi,
    I am having a problem in the SAP R/3 and office 2002 integration . When i open a report in R/3 and try to display the report using excel view ( Environment -> Options -> select Microsoft Excel for Office integration.). I get a blank excel sheet. I've run  the provided sap/ office  integration tool test and there was no error , and set the macro security in excel but nothing seem to be working.
    I am runing SAP R/3 4.6C, SAP GUI 640 patch 23, and excel 2002 SP3
    any input on this iuuse .
    Regards,
    fahad

    What you could try is downloading the report to the client pc using WEBUTIL_FILETRANSFER.URL_TO_CLIENT, then open the locally save file using something like:
    CLIENT_HOST('cmd /c rundll32.exe url.dll,FileProtocolHandler "localfilename"');

  • How to display warning message before deleting a record?

    Hi all
    I want to display a warning popup message( "Do you realy want to delete the record? Yes - No" ) before user delete a record. My page fragment contains simple <af:table> which display the employees data and operations buttons "commit - delete - rollback"
    I use Jdeveloper release 11.1.4
    Database : oracle 10g
    Thanks in advance

    Thank you so much for replaying
    I have another question related to creating popup
    I have page template and only one jspx page based on the template named"UIShell.jspx"
    I make a lot of page fragments , I have - untill now- about 15 page fragments.
    all these fragments are shown as dynamic regions within UIShell.jspx"
    My question is
    Should I create popup dialog window in each page fragment in order to display the messages?
    If the answer is "YES" this will not be a good approach - I think.
    Is there a way to create just one popup dialog and use it an any page fragments.
    Regards
    Edited by: ta**** on Apr 17, 2011 8:44 AM

  • Message displayed each time I open a report (IE10)

    Hello,
    Each time I open an Analysis for OLAP, I face the message Critical rendering error.
    It appears since we desployed the 10th version of internet explorer.
    Exact version of IE is 10.0.14.
    Our BO platform is BO 4.1 SP2 patch 4 (very recent version).
    Do you know how to solve this issue ?
    Thanks for your help.
    Best regards,
    Bertrand

    Hi Bertrand Demeyre
    As of my understanding, IE 10 is not supported for Analysis edition for OLAP (and the same has been documented in the support document).Probably, it might come as an additional enhancement in future service packs.
    I am not sure if we have a solution to suppress the error message.
    An work around would be to push down to IE9 instead of IE10 (if possible).
    BR
    Prabhith

  • How to display week wise data in ssrs report

    Hi,
    I want my report to fetch data from Financial year starting to till date.
    i.e Apr 2013 to till date.
    till date means Today() minus 8 days and @Fromdate includes last week of march also
    i.e Mar 29 2013 to Apr 4 2013 - this week data will also be included
    So data from Mar 29 2013 - Apr 4 2013  to today() minus 8 days need to be displayed
    How to fetch data for this.
    Pls advise.The column corresponding to this looks like "2013-11-01 ~~ 2013 - 11- 07"

    Hi, Well your requirement is very vague. I would probably have you create a calendar table according to your requirements and use it in your dataset. If you could better explain this with an example we could help you a lot better.
    Hope this helps.......
    Ione

  • Acrobat displays warning messages on opening

    Hi,
    I have created a pdf file. But whenever I open it in adobe I get a message "file is damaged and being repaired" and then acrobat reader opens it successfully.
    I have copied the contents of my file. Can you please have a look and tell me why is acrobat is doing that
    Thanks
    Farhat
    -----------------The File -----------
    %%PDF-1.3
    1 0 obj
    <<
    /Type /Catalog
    /Pages 2 0 R
    >>
    endobj
    2 0 obj
    <<
    /Type /Pages
    /Kids [
    3 0 R
    /Count 1
    >>
    endobj
    3 0 obj
    <<
    /Type /Page
    /Parent 2 0 R
    /MediaBox 7 0 R
    /Resources 4 0 R
    /Contents 5 0 R
    /Annots 8 0 R
    >>
    endobj
    5 0 obj
    <<
    /Length 6 0 R
    >>
    stream
    0.0469 0.0000 0.0000 0.0469 -561.4200 -1711.6200 cm
    1 j %Line caps
    1 J %Line Join
    7.680 w
    0.00 1.00 0.00 RG
    11980.800 36518.400 m
    12864.000 36518.400 l
    12864.000 37324.800 l
    11980.800 37324.800 l
    11980.800 36518.400 l
    s
    0.00 1.00 0.00 rg
    BT
    /F1 4.0 Tf
    26.635 0.000 0.000 21.333 12211.200 36921.139 Tm
    (barred) Tj
    ET
    6.451 w
    12211.200 37010.749 m
    12536.832 37010.749 l
    S
    endstream
    endobj
    6 0 obj
    393
    endobj
    7 0 obj
    [-1.253 -1.253 43.013 39.413]
    endobj
    8 0 obj
    endobj
    4 0 obj
    <<
    /Font
    <<
    /F1 9 0 R
    >>
    >>
    endobj
    9 0 obj
    <<
    /Type /Font
    /Subtype /TrueType
    /BaseFont /Arial
    /FirstChar 0
    /LastChar 255
    /Widths 10 0 R
    /FontDescriptor 11 0 R
    /Encoding /MacRomanEncoding
    >>
    endobj
    10 0 obj
    777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777
    777 777 777 777 777 777 777 288 288 368 576 576 922 692 198 345 345 403 605 288 345 288 288 576 576 576
    576 576 576 576 576 576 576 288 288 605 605 605 576 1052 692 692 749 749 692 633 806 749 288 518 692
    576 863 749 806 692 806 749 692 633 749 692 978 692 692 633 288 288 288 486 576 345 576 576 518 576 576
    288 576 576 230 230 518 230 863 576 576 576 576 345 518 288 576 518 749 518 518 518 346 269 346 605 777
    576 777 230 576 345 1036 576 576 345 1036 692 345 1036 777 633 777 777 230 230 345 345 363 576 1036 345
    1036 518 345 978 777 518 692 288 345 576 576 576 576 269 576 345 764 383 576 605 345 764 572 414 569 345
    345 345 597 557 288 345 345 378 576 865 865 865 633 692 692 692 692 692 692 1036 749 692 692 692 692
    288 288 288 288 749 749 806 806 806 806 806 605 806 749 749 749 749 692 692 633 576 576 576 576 576 576
    922 518 576 576 576 576 288 288 288 288 576 576 576 576 576 576 576 569 633 576 576 576 576 518 576 518 ]
    endobj
    11 0 obj
    <<
    /Type /FontDescriptor
    /Ascent 651
    /CapHeight 1191
    /Descent -187
    /Flags 262178
    /FontBBox [-594 -290 1790 900]
    /FontName /Arial
    /ItalicAngle 0
    /StemV 0
    >>
    endobj
    xref
    0 12
    0000000000 65535 f
    0000000011 00000 n
    0000000066 00000 n
    0000000134 00000 n
    0000000810 00000 n
    0000000254 00000 n
    0000000711 00000 n
    0000000735 00000 n
    0000000785 00000 n
    0000000863 00000 n
    0000001039 00000 n
    0000002115 00000 n
    trailer
    << /Size 12
    /Root 1 0 R
    >>
    startxref
    2302
    %%EOF

    It is impossible to answer your question exactly for the very reason
    (I suspect) you are having it: a PDF file is not a text file, it is a
    binary file. So, there is no way to get back the exact binary original
    by copy/pasting.
    What the error means in general is that an error was found in
    processing the xref table. The xref table itself may be badly
    formatted, the startxref address may be wrong, that sort of thing.
    What are you using to verify the format and addresses?
    Aandi Inston

  • SSRS Report : Comma Separated Hyperlinks

    Hello,
    I want to display Comma Separated Hyperlinks in SSRS Report. I am not sure what should I change here to get this working.
    Below is the flow of data.
    1. Extracting value from the SharePoint List using SSIS Package Script component and filling data in SQL Table.
    I have used this Table and created below view to stuff all these three links together.
    SELECT ID, STUFF
    ((SELECT ', ' + BCM.BCMProgramDocument
    FROM BCMProgramDocumentation BCM
    WHERE BCM.Risk = R.ID FOR XML PATH('')), 1, 1, '') AS BCMDoc
    FROM Risk R
    which gives me below output, not sure why.
    "&lt;a href='http://yahoo.com'&gt;YAHOO&lt;/a&gt;", "&lt;a href='http://gmail.com'&gt;GMAIL&lt;/a&gt;", "&lt;a href='http://hotmail.com'&gt;HOTMAIL&lt;/a&gt;"
    Then in the SSRS Reporting, I have placed a PlaceHolder with HTML View selected and gave above field value in the expression.
    They are not appearing as comma separated Hyperlinks.
    Can anyone please help me on this ? What are the changes required in above steps ?
    Thank you,
    Mittal.

    Hi Mittal,
    According to your description, you want to show three links together with comma separated from BCMProgramDocument column to a report table. After testing the issue in my environment, we can refer to the following steps to achieve your requirement:
    Use the following query create a dataset:
    select * from BCMProgramDocumentation
    Click Fields in the left pane, add a Calculated Field as below:
    Field Name: ID2                     Field Source: 1
    Drag a table to design surface, then insert the expression below in the detail row:
    =JOIN(lookupset(Fields!ID2.Value,Fields!ID2.Value,Fields!BCMProgramDocument.Value,"DataSet1"),",")
    Right-click the Placeholder to open Placeholder Properties, then select ‘HTML-Interpret HTML tags as styles’ as Markup type.
    The following screenshot is for your reference:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Message before posting new thread

    How about displaying a message before posting new threads in abap devlopment forums which tells the members to use search button before posting new threads.
    I think this may improve the quality of forums to an extent.
    Plz give ur comment on this.

    I think most people who answer simple questions do so because they are genuinely trying to help and are perhaps not familiar with the type of user IDs who ask such questions.
    But they should heed the warnings (in most cases they realize this themselves before a warning is required). I also know a numer of people who stop visiting SDN when they realize this, and that is a big pity.
    Users who carry on and on and on without heeding the warnings are deleted as well. This has happened already and there are two more in the pipeline. But Guestification is a last resort and not a perfect one either. It is only really effective when points are the reason for the misuse.
    I am sure that without a points system in its current form we would have less noise, but we would only eliminate the childish points gamers.
    What I think we need to work on is further improving the reputation of the SDN forums for quality content.
    Eg. when someone posts something which is incorrect or questionable, then question it (politely as possible / appropriate).
    That way people who answer will realize that their accounts have a track record for questionable quality, and will think twice before posting some bla-bla-bla or not reading the question carefully => if the question is "What is reports and tables" then when thinking twice, they wont answer at all....
    Cheers,
    Julius
    PS: I will start drafting a sticky thread for FAQs and memorable discussions, and then we can make a team effort of contributing to it and the mods can update it as appropriate.
    Edited by: Julius Bussche on Sep 27, 2008 10:20 PM

Maybe you are looking for

  • Problem with Ant Script while deploying a BPEL Process

    Hi all, Im making use of Ant script to Deploy a BPEL process ...the bpel process simply invokes the credit rating service and returns the credit rating..credit rating service and the whole BPEL process are deployed in the default domain...now i made

  • Cannot find iTunes in My Music

    I have copied my music folder to an external HD as back up, and now I cannot access iTunes on my c drive or elsewhere for that matter. I have tried all the logical steps. Repair iTunes, Uninstall and re-install iTunes, but I keep getting a message th

  • [svn:fx-] 21427: Removed flex/sdk/tags/trunk4.5.1 - history not maintained!

    Revision: 21427 Revision: 21427 Author:   [email protected] Date:     2011-06-21 07:16:13 -0700 (Tue, 21 Jun 2011) Log Message: Removed flex/sdk/tags/trunk4.5.1 - history not maintained! Removed Paths:     flex/sdk/tags/trunk4.5.1/

  • Won't connect to the internet

    my imac won't connect to the internet/server, however, at&t verified that my service is fine. how can i connect?

  • Why do some audio cds put two icons on the desktop

    One says Audio CD the other says Untitled. How can I stop it from doing this, as they will NOT eject.