Insert comment in webi

Hi,
I have the requirement in webi that the user can add his comments in a webi report (without going to edit mode and changing a blank cell).
Is there a solution to allow the end user to insert his comments after having refreshed a report?
Thank you,
Gabriel

Hi,
THank you for your answers. I will have a look to the extension points. I also saw in the SAP labs a solution called "Comment it", but I don't know if it applies only to Crystal Report or also to webi.
David, this requirement to add comments appeared on several projects. For example, we will have a table with the calculation of the variance analysis, and the last column will be to add some comments before exporting it to PDF.
Another scenario, is to add a comment bellow a table in order to comment the table results.
The idea is not to do it by editing the report as we don't want to provide this functionnality to most of our users.
Regards,
Gabriel

Similar Messages

  • Insert comment or documentation into bex /web report

    Hi gurus, Can anyone guide me  how to allow users to insert comments or maybe documents into BEx report and Web report.
    Your help highly appreciated and will assign point accordingly
    Thank you

    Hi Andrey,
    yes, you're right - there is a standard-functionallity.
    But at least for the BEx Analyzer (and for the Web-Analyzer as well, which is the reason why the SAP published an How-To document "Building a Fast and Flexible Comment Solution for Bex Web Applications") this function has some disadvantages which raises the very common request to enter comment into Excel-Cells directly.
    But you're right - this "advanced commenting" feature was not really the point of this thread.

  • Can I insert comments into RTF Templates?

    I'm using Oracle XML Publisher Template Builder for Word, Version 5.6 Build 45.
    The RTF template I'm working on has grown to be quite complex, and I would like to include some documentation on the template, so that other people who might pick up the work after me know what was happening.
    Is there any way to insert comments into the template, in the same way as is possible for e.g. in SQL? I tried to insert a Word Comment, but that generates errors.
    I suppose the alternative is to document logic decisions etc. in a separate document.
    Thanks

    Hi,
    You can use the following xsl tag
    <xsl:comment>This is a comment!</xsl:comment>
    Sandesh

  • Is there a way to insert comments into numbers on an ipad, or an alternative?

    Is there a way to insert comments into numbers on an ipad, or an alternative?

    If you mean in the iBooks app - tap on Collections in the upper left corner. Then tap New. Name the collection. Tap Done. Then tap the Edit button in the upper right. Tap on the books that you want to move to select them. Tap Move in the upper let corner. Select the newly created collection.

  • How to insert comments in the file resource_language.properties

    Hi all,
    I am using Jdeveloper 11.1.1.0.
    I want to do the localization of my application, so I have defined the files resource_language1.properties, resource_language2.properties, and so on.
    There is a way to insert comments in these files? How can I do?
    Thanks.

    Hi,
    Use # in the start of the comment
    Eg.
    # comment
    key = value
    Sireesha

  • Error When inserting Content Query Web part onto the page

    i am using share point 2010 and when i am trying to insert content query web part onto the page i am getting the following error
    i checked the correlation id in the logs file but could not find anything useful in it.
    please suggest why this problem occuring everytime when i try to insert content query webpart onto the page

    Hi,
    Check the correlation id in your logging files are the best way to investigate.
    Did you check these files with "SharePoint ULS Log viewer". Maybe, that will be more easy for you to get the correlation Id.
    Moreover, check the account's permissions with which you try to insert your webpart.
    Regards.
    Gilles Martinez
    Twitter
    Blog
    Please mark as helpful/answer if this resolved your post

  • Breaking apart PDF by inserted comment

    I need to be able to seperate and export a PDF by table of contents or seperate a PDF by inserted comments. Can anyone provide a direction or process they have used?

    I wish I could show others, but the data included is client sensitive.
    Right now we receive a PDF with Table of contents. We move down through the
    PDF, and insert a comment on the page (Account number) we want to be able
    to break apart and save separate PDFs by this inserted comment. Would it be
    possible to develop a new bookmark page or table of contents with a new
    description and divide the PDF by that into separate PDFs?
    On Tue, Jul 22, 2014 at 5:23 PM, Gilad D (try67) <[email protected]>

  • I have downloaded a pdf from a jounal web site.  After doing this and inserting comments, then saving it, upon opening it again, i can no longer see the text but only the highlight changes that i made

    I am using Adobe Acrobat Pro XI.  I have downloaded a pdf from a journal web site.  I need to review this article and make comments in the text.  After doing this and saving the file, when opening the saved file, I can only see the highlights where I made changes and the list of comments that I made, but I no longer see the original text.  See the example below.  Can anyone help on this?

    I am using Adobe Acrobat Pro XI.  I have downloaded a pdf from a journal web site.  I need to review this article and make comments in the text.  After doing this and saving the file, when opening the saved file, I can only see the highlights where I made changes and the list of comments that I made, but I no longer see the original text.  See the example below.  Can anyone help on this?

  • Display Comments in Webi Report

    Hi All,
    We have a requirement, to display comments (2 or 3 paragraph in each page of report).The text needs to preserve the format (bold, bullets and colored text) i.e the format from the source data should be retained when displayed in the webi report.
    Say for example the source is the excel and the text is coloured red or green , some part of the text is bold, all these formats should be preserved in the webi report also.
    Can you please suggest, how to implemet this in webi report?
    Thanks,
    Sudha

    you can take the formatted text in a word document, take a screen shot, put it in mspaint and select the required part. now place this picture in the blank cell's background image. this will preserve the formats of all kinds.
    but u cant change the text dynamically.
    usually we do this to give users an introduction page(tab1 in report followed by report tabs.) describing the application.
    Thanks,
    karthik

  • Windows 7 64 bit Dreamweaver CC 2014 & Lightroom 5: Trying to insert a lightroom web gallery into a template in Dreamweaver

    I am using a template for my website in Dreamweaver CC 2014. I installed a lightroom 5 web gallery into the template. I have an editable region where my main content goes that is where I inserted the web gallery. The main content css height is set at Auto. The web gallery shows up but only the very top half of the gallery. The whole web gallery wont push down the main content section so you can see the whole gallery. If I set the main content at height 700px then the whole gallery shows up, but because this is a template it screws up all my other pages because of the height setting. I need that to be variable. What am I doing wrong?

    Most likely that main content area also contains a floated element and you are not clearing the float before closing the main content container. Floated elements are removed from the normal flow. Being removed from the normal flow means that a container for that floated element does not regard the floated element as being in it, and will collapse around its non-floated content. To prevent this from happening you should clear the float before closing the container, e.g.,
    <div>
    <img src="very-tall-image.jpg" style="float:left">
    <p>some content</p>
    </div>
    This div will only be as tall as the paragraph tag requires, thus truncating the image.
    But here -
    <div>
    <img src="very-tall-image.jpg" style="float:left">
    <p>some content</p>
    <div style="clear:left;"></div>
    </div>
    This div will show the whole image.

  • Inserting table in web form/ Inserting multiple cells in a single row

    Dear Mr Johnson,
    Thanks for your early reply.
    I am rather disappointed .....as I need to distribute my form urgently with a table insertion capability.
    I had purchased Adobe webform central subscription with the idea that a paid subscription will fetch me the full editing capability of the Adobe form central web forms.
    Please inform me as to when this vital update regarding the table insertion/ multiple cells insertion in a single row capability (update) will be functional and available for our use as today is 26th of January, 2013.
    Kindly reply ASAP.
    Thanks,
    with kind regards,
    Dr Ali

    See this thread from two days ago where Randy Swineford of Adobe says that it is expected to be added at the end of January: http://forums.adobe.com/thread/1140470?tstart=0
    I don't know if it will include a table tool.

  • Inserting pictures in Webi documents

    Hello,
    I would like to paste or to insert a picture in my webi document. This picture can be a company logo or something like that. But the functionality of inserting a URL which goes to a picture is not enough. Is there no other way of inserting a picture in a webi document?

    Good Day!
    Try [THIS|http://www.infosol.com/buildpage.aspx?k=bo_tt78] link and see if it can help (Link courtesy of Arjun(BOB) ).
    Regards!,
    John Vincent

  • Comments on web sits photos?

    Help, I am not able to add comments om my web photos

    Welcome to the Apple Discussions. Yes, you can setup a photo page/slideshow so users can add comments. Just go to the Inspector/Photos/Photos pane.
    OT

  • Flash beginner... insert SWF into web page and create play button

    I am trying to insert and SWF into my webpage.  I have 3 problems, 1. I am new to flash and aren't any good at it yet. 2. How do I tell the movie to stop at the end, and insert a "play again" button?  3. What do I need to do to insert that into my webpage.
    I realize these aren't yes or no answers, so I even appreciate input on the best way to learn Flash for myself.

    2. It can depend, but snce you are probably using the timeline, most likely you just need to put a stop(); command in the last frame to have it stop at the end.
    To get it to play again, your button's function code will need to include something like: gotoAndPlay(1);
    How the button code gets done depends on which version of Actionscript your file is using.
    3. When you publish your swf file, also have Flash publish an html file (you set this up in the Publish Settings).  You can then take that html file and copy the embedding code it contains into your web page html file.  You may have to include a javascript file as well to make it work, and you can tell that by looking in the head code of the html file Flash created... that head code also needs to go into your web page html file and the javascript file needs to be placed according to how your html code targets it.
    You might do best just to get the html page Flash creates working for you first.  It might make figuring out how to move it into your web page easier.
    My opinion: the best way to learn Flash for yourself is to just dig in and keep at it.  You will lose hair and sleep and your mind as you go, but eventually you either get used to that and/or you overcome it.

  • Comment on WebI Reports

    Dear Experts,
    Is is possible to make comments on a Web Intelligence reports? Our end users do not like the Discussion pane in the InfoView.
    Please post any creative ideas or third-party apps we can use to to achieve this!
    We're using BO Enterprise 3.1.
    Many thanks,
    Andrew

    Check this
    Adding comments in WebIntelligence Reports like in MS Excel
    Regards,
    Stratos

Maybe you are looking for

  • How to put the form in Query mode

    Hello Please let me know how to put the form or block in Query mode , so that when i run the form it should be in Query mode . I have seen properties of SET_FORM_PROPERTY and SET_BLOCK_PROPERTY but cannot find one Thanks

  • Macbook air mini dp output resolution / full screen app issues

    I've successfully connected my new macbook air 13" to my LED tv with a mini DP to hdmi adapter + hdmi wire. I am able to get video and audio (obviously.) My issue is that no matter when resolution I try (1080p, 1080i, 720p, etc) and wether I am "mirr

  • Error: invalidaccess; OffendingCommand: --nostringval-- ]

    Hello. I have some commercial pdf documentation (purchased) that I am able to print pages from, but I cannot seem to do much with the postscript output when I print to file with a postscript printer selected. I want to add notes and make a few change

  • MATERIAL_MAINTAIN_DARK no mara append table update

    Hello, I've a little problem using MATERIAL_MAINTAIN_DARK to modify some materials. I have to update fields in two append structures (one in mara, one in marm) when I use this function module, the update is ok on marm but not on mara if anyone have a

  • WEB server doesn't start after php5 install failed

    Hi, Running a PPC G4 with osx server 10.3.9 I tried to install entropy php 5.1.6 on my server but it failed and said it could not complete the install. After that my web service stopped and I can't turn it on anymore. Please HELP ! I can't reinstall