Comments are query specific....

Dear Folks,
As i understand that Comments are query specific. You can't create a new query with the same reference characteristics to read the comments.
As per my business scenario i have to read Comments which are query specific.
What is did so far:- Created  Input Ready Query where i created one column and named as a Justification which is required to displaying justification where I want the Justification to go . I Created web template by using Input ready query. Created Modification Document Content to enable Row Cell to insert Justification against Key figure. Now it is working fine. Once save justification particular cell then it is storing in Document in RSA1.
Now i wanted to display in another query by using reference same Justification Characteristic.. how do i do this.
Can you give views on this.
Thanks,
Venkat Vanarasi.
Edited by: vanarasi venkat on Dec 6, 2010 11:31 AM

Dear Balajee,
Yes, it is true...
Now i am able to insert more than 60 char length in input ready query. by using below actions in web template:
I created on column in input ready query and named as "Comment" . I used this query in web template and created "Modifications" by using DocumentContent" Module in Analysis Web Item. by using this functionality it is allowing More than 60 char length in input ready query.
If you closely observed what i did is Created one Column in Input Ready Query which is Query specific. This column data will hold in Documents area Data Warehousing Workbench instead of Planning Cube.
To display comments i have created another BI query & used it in Web template , here issues is calling Comments into BI Reporting area ( which is not Input ready query).
I hope you understand now....
Thanks,
Venkat Vanarasi.

Similar Messages

  • Comments are now Supported

    It appears that comments are now supported in Smart Playlists.

    Dear Balajee,
    Yes, it is true...
    Now i am able to insert more than 60 char length in input ready query. by using below actions in web template:
    I created on column in input ready query and named as "Comment" . I used this query in web template and created "Modifications" by using DocumentContent" Module in Analysis Web Item. by using this functionality it is allowing More than 60 char length in input ready query.
    If you closely observed what i did is Created one Column in Input Ready Query which is Query specific. This column data will hold in Documents area Data Warehousing Workbench instead of Planning Cube.
    To display comments i have created another BI query & used it in Web template , here issues is calling Comments into BI Reporting area ( which is not Input ready query).
    I hope you understand now....
    Thanks,
    Venkat Vanarasi.

  • WEB BEx Analyzer Comments on Query level

    I would like to enable BW users to create comments for some queries an enable other user to read them. System BW 7.01.
    Issues and questions:
    -how to create comment on query level - it's always on data (KYF), Metadata or Master data level
    -I would like to show the document icon - next to the query title (it's relevant for the query)
    -when I create Comments (with the button in the standard template), it's on the data level (combination of KYF) - and when I
    switch to icon display (settings) I get icons in every line. If this would be just at KYF header??
    -where can I edit, delete, ... recorded comments
    Thanks, Tom

    Hi Tom,
    1) If you want to create comments on query level, you need to create metadata documents, object type 'ELEM', object name is the technical name of the query.
    2) Document icons are always shown in the data table. Thus it will be hard to show a document icon for a document on query level. If you are using web templates, you can insert a single document item on metadata documents to display the comment on the query.
    3) Where the document is displayed depends on the document properties. If a characteristic is document property depends on the infoobject setting -> transaction RSD1 -> enter the characteristic -> tab 'general'.
    To see the document properties you can execute the query for example in RSRT (html mode) -> create a new document on any cell. On the bottom you will see the document assignment. Compare this assignment with the cell next to it. If its the same the document will be displayed in both cells. The same can be done for example in java web -> create a new document and switch to the second tab ('BI').
    4) Documents can be edited and deleted in the document browser itself, when you open the document in the executed query or in transaction RSA1 -> documents.
    Best regards,
    Janine

  • How to add a Comment to a specific PDF page or page element?

    I'd like to share a multipage PDF and gather comments about designs presented on the different pages.
    Currently comments seem to only apply to the entire PDF file and not to individual pages or elements on pages. I don't see an obvious way to add contextual annotations.
    If someone adds a comment, how do I know which page they are commenting on? Perhaps they just have to write something like "Looking at page 4 I'd like to change..."
    Thanks,
    DAN

    Thanks for the feedback. Currently you cannot comment on a specific page in the Creative Cloud.

  • How can I be certain the contact list in my iPod touch updates my computer Outlook contact list when I sync and not go the other way? The options in iTunes are not specific enough.

    How can I be certain the contact list in my iPod touch updates my computer Outlook contact list when I sync and not go the other way? The options in iTunes are not specific enough. In other words, I want to replace the information in my computer Outlook contact list with the data from my iPod touch. 

    How is your iPod configured to sync music from your iTunes library?  In other words, what options and configurations do you have enabled from under the iPod's Summary and Music configuration panes in iTunes?
    B-rock

  • What are the  Specifications of Extreme  Model A1354

    What are the  Specifications of Extreme  Model A1354

    If you might be thinking about purchasing a used device, you should be aware that the A1354 is going to be anywhere from 4 years to 5+ depending on when it was originally sold.
    The useful life of an AirPort router is, on average,  about 5 years....so you might want to give that some thought, if you are considering a purchase.

  • Problem with posting comments of a specific picture

    So I have been able to post the comment in the page I am creating and that comment is also saved in the comment table in the database with the id of the picture but when i am in the first picture and I comment the comments are posted saved in the database with the id 1 and then i go to the second the comments are also posted and saved in the tabel comment with the id of the picture 2. But my problem is that when i go to the second picture i can also see the comments of the first picture. So in all of my pictures I can see comments of pictures with other id. How can i manage to solve this problem. Please suggest me sth
    I'll describe a little bit my database
    name of database is art
    picture tabel I have named piktur(id_piktur,Titulli,Pershkrimi,Piktur_url) rsGallery is picture recordset
    the comment tabel I have named komente(id_koment,id_piktur,Tekst)rsKomente is comment recordset
    Tekst is the column where the comment is save
    I'm using the session variable so i can get the id of the picture from the picture table and insert it in id picture column of the comment tabel
    this is the piece of code i guess i should make some conditions but i have tried sth myself but I have not managed to solve my problem. The pictures in my page are organised with paging and repeat region only showing 1 picture at a time. the comment are also repeat region showing all the comments at a time.
    <p>
          <?php  while ($row_rsKomente = mysql_fetch_assoc($rsKomente)) { ?>
            <?php
    $id_piktur=$row_rsGallery['Id_piktur']; $_SESSION['id_piktur']=$id_piktur;
              echo $row_rsKomente['Tekst']."<br/>" ;?>
            <?php } ?>
      </p>
    my entire code is shown below if you don't think this code is enough for solving the problem gallery.php Thank you in advance
    gallery.php
    <?php require_once('Connections/art.php'); ?>
    <?php session_start() ?>
    <?php
    if (!function_exists("GetSQLValueString")) {//this is some code i don't shown in here because it has nothing to do with the problem i want to solve}
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1") &&(isset($_SESSION['id_piktur'])) ) {
      $insertSQL = sprintf("INSERT INTO komente (Tekst,id_piktur) VALUES (%s,'".$_SESSION['id_piktur']."')", GetSQLValueString($_POST['tekst'], "text"));
      mysql_select_db($database_art, $art);
      $Result1 = mysql_query($insertSQL, $art) or die(mysql_error());
    $maxRows_rsGallery = 1;
    $pageNum_rsGallery = 0;
    if (isset($_GET['pageNum_rsGallery'])) {
      $pageNum_rsGallery = $_GET['pageNum_rsGallery'];
    $startRow_rsGallery = $pageNum_rsGallery * $maxRows_rsGallery;
    mysql_select_db($database_art, $art);
    $query_rsGallery = "SELECT Pershkrim, Piktur_url, Rankim,id_piktur FROM piktur";
    $query_limit_rsGallery = sprintf("%s LIMIT %d, %d", $query_rsGallery, $startRow_rsGallery, $maxRows_rsGallery);
    $rsGallery = mysql_query($query_limit_rsGallery, $art) or die(mysql_error());
    $row_rsGallery = mysql_fetch_assoc($rsGallery);
    if (isset($_GET['totalRows_rsGallery'])) {
      $totalRows_rsGallery = $_GET['totalRows_rsGallery'];
    } else {
      $all_rsGallery = mysql_query($query_rsGallery);
      $totalRows_rsGallery = mysql_num_rows($all_rsGallery);
    $totalPages_rsGallery = ceil($totalRows_rsGallery/$maxRows_rsGallery)-1;
    $maxRows_rsKomente = 10; $pageNum_rsKomente = 0; if (isset($_GET['pageNum_rsKomente'])) {   $pageNum_rsKomente = $_GET['pageNum_rsKomente']; } $startRow_rsKomente = $pageNum_rsKomente * $maxRows_rsKomente;
    mysql_select_db($database_art, $art); $query_rsKomente = "SELECT Tekst,id_piktur FROM komente"; $query_limit_rsKomente = sprintf("%s LIMIT %d, %d", $query_rsKomente, $startRow_rsKomente, $maxRows_rsKomente); $rsKomente = mysql_query($query_limit_rsKomente, $art) or die(mysql_error()); $row_rsKomente = mysql_fetch_assoc($rsKomente);   if (isset($_GET['totalRows_rsKomente'])) {   $totalRows_rsKomente = $_GET['totalRows_rsKomente']; } else {   $all_rsKomente = mysql_query($query_rsKomente);   $totalRows_rsKomente = mysql_num_rows($all_rsKomente); } $totalPages_rsKomente = ceil($totalRows_rsKomente/$maxRows_rsKomente)-1;
    $queryString_rsGallery = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_rsGallery") == false &&
            stristr($param, "totalRows_rsGallery") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_rsGallery = "&" . htmlentities(implode("&", $newParams));
    $queryString_rsGallery = sprintf("&totalRows_rsGallery=%d%s", $totalRows_rsGallery, $queryString_rsGallery);
    $queryString_rsKomente = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_rsKomente") == false &&
            stristr($param, "totalRows_rsKomente") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_rsKomente = "&" . htmlentities(implode("&", $newParams));
    $queryString_rsKomente = sprintf("&totalRows_rsKomente=%d%s", $totalRows_rsKomente, $queryString_rsKomente);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Paintings</title>
    <link href="style_gallery.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
      </div>
    <div id="logo_wrapper">
    <!-- For the example logo, we used a font called "Ink Burrow", which is free from the major font sites. -->
    <div id="logo"><img src="_images/logo.png" width="600" height="79" align="right" /></div>
    </div>
    <div id="main_container">
    <div id="menu_container">
    <div id="menu">
    <ul id="base_menu" >
    <li><a href="index.php">Home</a></li>
    <li><a href="#">About</a></li>
    <li><a href="gallery.php">Gallery</a></li>
    <ul class="sub_menu">
    <li><a href="#" title="Charcoal" >Charcoal </a></li>
            <li><a href="#" title="Oil paintings" >Oil paintings</a></li>
            <li><a href="#" title="Sketches" >Sketches </a></li>
            <li><a href="#" title="Our latest podcast" >Video Podcast</a></li>
    </ul>
    <li><a href="#">Contact </a></li>
    <li><a href="#">Events</a></li>
    <li><a href="login.php">Log in</a></li>
    </ul>
    </div>
    </div>
    <div id="mainArticle">
        <h1>Painting Gallery</h1>
          <p>Welcome !</p>
        <p>
          <?php do{ ?>
       <?php   $id_piktur=$row_rsGallery['id_piktur']; $_SESSION['id_piktur']=$id_piktur;             echo $row_rsKomente['Tekst']."<br/>" ;                      ?>         <?php }  while ($row_rsKomente = mysql_fetch_assoc($rsKomente)); ?>  </p>
          <form id="form1" name="form1" method="POST" action="<?php echo $editFormAction; ?>">
            <p>
              <label for="comment">Comment : </label>
            </p>
            <p>
              <textarea name="tekst" id="tekst" cols="45" rows="5"></textarea>
            </p>
            <input name="comment" type="submit" value="Comment" />
            <input type="hidden" name="MM_insert" value="form1" />
          </form>
          <p> </p>
          <p>
            <a href="<?php printf("%s?pageNum_rsGallery=%d%s", $currentPage, 0, $queryString_rsGallery); ?>">First</a>
            <a href="<?php printf("%s?pageNum_rsGallery=%d%s", $currentPage, max(0, $pageNum_rsGallery - 1), $queryString_rsGallery); ?>">Previous</a>
            <a href="<?php printf("%s?pageNum_rsGallery=%d%s", $currentPage, min($totalPages_rsGallery, $pageNum_rsGallery + 1), $queryString_rsGallery); ?>">Next</a>
            <a href="<?php printf("%s?pageNum_rsGallery=%d%s", $currentPage, $totalPages_rsGallery, $queryString_rsGallery); ?>">Last</a>
    <p class="galleryText"><img src="_images/<?php echo $row_rsGallery['Piktur_url']; ?>" alt="golden gate bridge" class="galleryImage" />    <?php do { ?>     <?php echo $row_rsGallery['Pershkrim']; ?>     <?php } while ($row_rsGallery = mysql_fetch_assoc($rsGallery)); ?> </p>
      </div>
    <p> </p>
    </div>
    </body>
    </html>
    <?php
    mysql_free_result($rsGallery);
    mysql_free_result($rsKomente);
    ?>

    >thnx yeah i fixed the problem this time i understood you.
    Glad you got it working.
    >you confused me the first time with the explanation because you mentioned loops
    Yeah. Normally with a repeating region you would need to use nested loops; an outer loop for the picture and an inner loop for the related comments. During each iteration of the outer loop you would execute the sql to retrieve the inner loop recordset. However, since you are using paging with only one recordset per page, the comment recordset SQL does not have to execute inside the picture loop. Hope that makes sense.

  • IN OBIEE IS IT  POSSIBLE COMMENTS ARE STORED IN TRACKING TABLE

    HI,
    CAN ANYBODY HELP ME OUT IN OBIEE IS IT POSSIBLE TO STORE THE COMMENTS IN TRAKING TABLE.AND IS IT POSSIBLE COMMENTS ARE ENTERED ALONG WITH THE DASHBOARD PROMPT..
    ANYBODY KINDLY GIVE THE SOLUTION

    please look at the write back feature of OBIEE.

  • Since downloading IOS8, when I log in to certain websites that are password specific and check the stay logged in box, when I return to the home screen then back to the website I have to log in again which is very frustrating

    Since downloading IOS8 when I log in to certain websites that are password specific, despite checking the keep logged in box, when I go back to home screen then back to website, I have been logged out and have to log back in-very frustrating-any ideas please?

    To see registered devices in My account:
    1) Go to Account > My Account
    2) Scroll down, and ensure that that you first have an active subscrption (if you do not, you are not logged in to you Ovi Music unlimited account)
    3) Below Unlimited downloads subscription box, you should have a Registered devices box.
    Cheers,
    elin
    http://www.nokia.com/support
    Attachments:
    Music account.jpg ‏13 KB
    registered devices.jpg ‏49 KB

  • Comments are saved where??

    Hallo!
    Does anyone know where iWeb's blog comments are saved? In which file?
    I have got the following problem: I spent the last 6 weeks not at home but with my girlfriend who has an iBook. So while I can't use my PC notebook for iWeb I had the idea to use her Mac. I opened my domain file with her iWeb, made the changes and.... stupidly uploaded not to mine but to her .Mac account. Instead of thinking (meaning: just switching her .Mac settings to mine and upload again) I downloaded my webpage from her idisk and uploaded the changed files to my idisk. As you can imagine, all the RSS etc. was now enabled for her .Mac account - and all my blog's comments were gone.
    I still have my old domain file back home, so I wonder where the comments are saved so that I might be able to get them back. If they are saved in the domain file somewhere, is it possible to just upload the old domain file and then the new one again afterwards (and get the comments back)?
    If the comments are only saved online I guess they are gone for good...
    Thanks to anyone who knows something that could help me!
    MA
    iMac (Intel Core Duo 2.0 GHz)   Mac OS X (10.4.6)  

    Hi!
    I started iWeb with my old domain-file (not the one I changed at my girlfriend's ibook) and all the comment were still there. Then I published ALL to .Mac.
    When I checked online, all comments were back again. After that I quit iWeb and relaunched with the new domain-file which showed the comments in iWeb, too. Republished ALL to .Mac again and everything worked fine. "Search" finds stuff in the new entries as well now, too.
    I do not know if this helps you. Did your comments ever appear online? I am sure they are saved somewhere on .Mac and not on the computer itself, so if you see them in iWeb (after several republishs) then they should be "Up There".
    ma
    iMac (Intel Core Duo 2.0 GHz)   Mac OS X (10.4.8)  

  • Apple TV: what are the specific settings I should adjust to?

    Hi, there
    I really need your help now. I use a DVD ripper to rip DVD to MP4 for Apple TV. I am trying to achieve quality that is close to a movie (m4v) from iTunes. What are the best settings to get this type of quality? I am not concerned with output file size, and I just want to get the very best quality I can. If so, what are the specific settings I should adjust to? The program I am using allows me to adjust video and audio parameters as below:
    Video parameters:
    Codec: h.264
    Resolution: 1280*720
    Bit rate: ??? (it is said Up to 5 Mbps, but what is the specific bit rate?)
    Frame rate: 24 fps
    Audio parameters:
    Codec: aac
    Sample rate: ???
    Bit rate: ??? it is said 16 to 320 Kbps, but what’s the specific figure?
    Audio channel: mono, stereo and 5.1 channel, which one should I choose?
    Following are the tech specifications I copied from Apple’s official website:
    Video formats supported
    H.264 and protected H.264 (from iTunes Store): Up to 5 Mbps, Progressive Main Profile (CAVLC) with AAC-LC audio up to 160 Kbps (maximum resolution: 1280 by 720 pixels at 24 fps, 960 by 540 pixels at 30 fps) in .m4v, .mp4, and .mov file formats
    iTunes Store purchased video: 320 by 240 pixels, 640 by 480 pixels, 720 by 480 pixels (anamorphic), or high-definition 720p
    MPEG-4: Up to 3 Mbps, Simple Profile with AAC-LC audio up to 160 Kbps (maximum resolution: 720 by 432 pixels at 30 fps) in .m4v, .mp4, and .mov file formats
    Audio formats supported
    AAC (16 to 320 Kbps); protected AAC (from iTunes Store); MP3 (16 to 320 Kbps); MP3 VBR; Apple Lossless; AIFF; WAV; Dolby Digital 5.1 surround sound pass-through
    And I have selected some parameters according to this, please see the above contents, but there is no info about specific video/audio bit rate, audio sample rate, and audio channel. I just wanna know if I want to watch the movie on my 1920×1080 TV, what are the specific settings I should adjust to?
    Any suggestion is appreciated. Thanks in advance.

    Well, then how about playback Apple TV uncompatible video files? I have some other video files(such as avi, mkv,not DVD), and I also have a video converter, i know i can convert them to m4v, mp4, or mov that supported by ATV,but the thing is that i still don't know the best specific settings for conversion. Any suggestion? Many thanks for your kind reply.

  • Project server 2013 Time sheet comments are missing or deleting automatically.

    HI,
    For few users the timesheet comments are missing or automatically deleting in my EPM 2013 environment, i am not getting why this was happening & it was not happening always for few users this was happening & not all the times some timesheets only
    the comments are deleting & only comments are deleting the remaining timesheet hours are fine.
    Does any have this kind of this issue , can any one please help me on this.
    Thank You, Kumar KSV

    Hi Kumar,
    This might be a normal behavior depending on how you configured the time tracking process. See this
    excellent recent blog from Michael Wharton.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Notification Comments are storing in which database table?

    Hi All,
    Can anyone help me to find the table name in which notification comments are storing (like checklist notification or Leave approval notification)

    Hi All,
    Can anyone help me to find the table name in which notification comments are storing (like checklist notification or Leave approval notification)

  • I erased all of the loops on my logic pro 9.  Do i need to reinstall all discs, or are there specific discs to install "loops?"

    I erased all of the loops on my logic pro 9.  Do i need to reinstall all discs, or are there specific discs to install "loops?"

    There's a new menu entry in the latest version, allowing you to download all the extra content directly onto your hard drive, without having to keep inserting new DVDs etc. It's 19gb (compressed). If you have a normal/decent internet connection, you could reinstall your loops while you're busy doing something else. Or busy doing nothing.

  • Comments are not displaying normally (Ref: TA-20964)

    Status: Investigating
    Affects: Some users
    Description: Users have been reporting that their comments are not displaying and have been replaced with a Tagged TOS image.
    We're currenly working to resolve this issue to get your comments back up as normal. Thank you all for your patience!
    Please feel free to Contact Us to report this issue or you can click 'Me Too' on this post to let us know.

    Win 7.
    I see the entire page here in IE9, IE8 (Compatibility View), Firefox and Chrome.

Maybe you are looking for

  • Re-order components in JPanel using Drag and Drop

    Hi, I have a JPanel that contains some more JPanels (the Layout is GridBagLayout - one column, each row - 1 JPanel). I would like to drag one JPanel (1) and after dropping it on some other JPanel (2), the (1) should be inserted at (2)'s position. I r

  • Opening balance account for BP

    Hi Experts, I want to enter the opening balance account for BP. I want to know is there separate criteria for setting opening balance account for Customer and Vendor and which drawer?? Thanks in advance Subhradip D

  • Show only colors already used in the document?

    Hi! Is it possiblé to see somewhere which colors I have previously used while working with a document? I think it would be nice to have the option for example for the swatches panel to only show user selected colors so that I can go back and forth in

  • Map the Output of Two BLT's to an iGrid?

    Hi all,         Can i map the the output of two BLT's to one iGrid. Is it possible?? Thanks, Sushma.

  • Invalid address alignment

    I have a C++ application built with Roguewave and Visibroker on Sunsolaris. The server crashes for cerain type of inputs with 'invalid address alignment' errors. I used insure++ to build the application. Though insure++ shows some scope for memory le