Appending the image with Data inn table cloumn

Hi All
I have one table with 5 columns .My requirement is to attach one image with the data of one column based on the value.
For Example For vaue WIP Red Image,ApprovedGreen Image,Failed ------- No Image
The image should be appended to the satus.
I have seen this feature in couple of Standard OA Pages But not able to find the way.
Pls help me

You mean, you want to show both an image and the text in the same column? It is not a standard practice and against BLAF. My suggestion will be to either use 2 separate columns or probably the text written in the image if your text list is fixed.
--Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • How to change the images dynamically in a table.

    Hai,
                     How to change the images dynamically in a table based on the condition in webdynpro abap.
    Edited by: Ravi.Seela on Oct 13, 2011 2:17 PM

    This has been much discussed earlier. Do search posts.
    For your scenario i would do the following.
    inside your node which is binded to the table, i create a new node image with cardinality 1 ..1 and a attribute called path of type string.
    create a  supply function for the node image .
    Supply method now has a Element (Parent element ) and node.
    Based on your record in element, set the right image source to path attribute and bind the node.
    This will make sure that the framework calls the image supply function for every row in a table.

  • Issue with data dictionary -Table maintanance generator

    Hi all,
    I have an issue with Data dictionary, table maintenance generator. I have entered some records in a custom table (ZBCSECROLETOGRP) and changed the delivery class from C to A. When I create the table maintainance generator, I am encountered with the following errors:
    1)Field ZBCSECROLETOGRP-PORTALGROUP shortened (new visible length: 000032)
    2)0012 could not be generated
    3)In TCTRL_ZBCSECROLETOGRP field LENGTH has the invalid value 01
    My main motto is to create the table maintainace generator and transport to the furthur systems .
    Please help.
    ThnX in advance,
    Vishal..

    HI,
    Regenerate the table maintenance by selecting the checkbox of "Modified field structure" => new entry & then save.
    Also ensure that the new changes are not affecting old data bcz of data type changes. If that is the case, then delete the old records, regenerate table maint. & re-enter those records which you had deleted.
    Thanks,
    Best regards,
    Prashant

  • Possible to place subtitles beneath the image with 16:9?

    Hi everybody,
    I couldn't find away to put subtitles beneath the image with 16:9 like it would be possible with such a video in FCP: having the 16:9 video in a 4:3 image, placing the subtitle in the black under the image - the issue with FCP is that later the text becomes blurry ...
    Any ideas..? best, s

    If you're looking to adjust the positioning of subtitle text based on the playback system's aspect-ratio, no, DVDSP is not able to do this. This is made even more frustrating by the fact that this was possible in the Spruce product that DVDSP is based on and because many clients demand what you're asking for (subtitles always appear under letterboxed video on 4:3 monitors).
    The only viable 'alternative' that I've found is to adjust the Y offset of the subtitle stream so that the bottom line (or only line) is in the letterbox area. The downside to that is, on 16:9 displays, the subtitles appear very low (though I've never encountered a setup where they are ever cut off.
    If some sample code helps, this is what I use:
    // Begin Font & Formatting Data
    $FontName = Arial
    $Bold = True
    $FontSize = 28
    $ColorIndex1 = 7
    $ColorIndex2 = 1
    $ColorIndex3 = 1
    $ColorIndex4 = 3
    $TextContrast = 14
    $Outline1Contrast = 15
    $Outline2Contrast = 15
    $BackgroundContrast = 0
    $HorzAlign = center
    $VertAlign = bottom
    $XOffset = 0
    $YOffset = 20
    $TapeOffset = True
    // End Font & Formatting Data

  • How can i Display images with may own table

    Hi
    I want display images with my own table. How can I use in this query.
    SELECT    '<a href="#" onclick="javascript:'
           || 'getImageHeight(''my_img'
           || '#ROWNUM#'');javascript:redirect'
           || '(''f?p=&APP_ID.:212'
           || ':&SESSION.:DISPLAY:NO::P212_IMAGE_ID:'
           || ID
           || ''');">'
           || '<img src="#IMAGE_PREFIX#edit.gif" '
           || 'alt="Edit"></a>' ID,
              '<img id="my_img'
           || '#ROWNUM#" src="#WORKSPACE_IMAGES#'
           || filename
           || '"/>' image
      FROM wwv_flow_filesThanks
    Nr
    Edited by: user10966033 on Sep 28, 2009 1:41 PM

    You don't use #workspace_images# since that is for STATIC files, not images in a table..
    see this thread for help: Re: Display image from blob
    Thank you,
    Tony Miller
    Webster, TX

  • IPad Photo App with the ability to write on the image with stylus?

    Is there a photo app for 4th generation iPad that allows me to take a picture and then write on the image with a stylus? I'm in the sign business and that would be ideal for on site assessments (write dimensions and notes)

    Creating notes using stylus on the application is not possible on Adobe Reader Touch.
    But, you can add a sticky note on the document. To add a sticky note, launch app bar, select Comments button and then select Sticky Note option and click on the point where you want you add the sticky note.

  • How to receive the images / binary data t ype

    How to receive the images / binary data type in webdynpro....
    i have a website that let's the user send email, the email attachment and message are stored in both in images data type....
    q1) can i stored the message into binary data type...but the message is very long.....
    q2) if i have a textbox ...i surely will need to display the message  in string ,right ?
    [......... msg here ........]
    what is the codes to receive the images / binary data type in webdynpro....

    As in your previous post if you are storing them as BLOB object.. am sure you are able to get a byte stream or byte array(bytes[]) out of it.
    There should be some way to identify if its a image or a message BLOB. If its a image , convert into bytes and use 
       WDWebResource.getWebResource(bytes,resource type).getAbsoluteURL()
    to obtain the url.. assign this image UI element..
    In case its the message , use bytes.toString to get the message ..
    Regards
    Bharathwaj

  • Fill the LOV with data during the execution

    Hi
    I am using Oracle 10g
    I want to ask please if there is a way to fill the LOV with data during the execution
    so can I change the query specified in LOV wizard during the execution and get a new record set according to the value in the text boxes
    thank you for help

    You can use the SET_LOV_PROPERTY built-in to change the record group of the LOV and to create a new record group you can use the CREATE_GROUP_FROM_QUERY built-in.
    it will be something like this.
    RG_ID := FIND_GROUP('<record group name>');
      IF NOT ID_NULL(RG_ID) THEN
           DELETE_GROUP(RG_ID);
      END IF ;
      RG_ID := CREATE_GROUP_FROM_QUERY('<record group name>', '<your SQL statement here>');
      POP_GROUP := POPULATE_GROUP('<record group name>');
      SET_LOV_PROPERTY('<LOV name>', GROUP_NAME, '<record group name>');Use the online help for more information about these built-ins.
    Tony

  • Output triggred in the invoice with Date/Time 1

    Output triggred in the invoice with Date/Time as 1 i e Send with periodically scheduled job.
    So could you  let me know when this gets triggeed if we maintain 1 in condition record?
    Thanks,
    Praveen

    Hi Praveen,
    When you maintain 1in the Date/Time column in the Condition Records for O/P of say the Invoice it means that you are telling the system to send the O/P with periodically scheduled job.
    To achieve this you must use the report program RSNAST00.The message is processed through report program RSNAST00. This report program can be scheduled periodically or started manually.
    For scheduling periodically you need to set up a batch process in SM35.
    Hope this helps,
    J Nagesh

  • Clearing the Image safe data

    I've run into something that I can't explain, and I'm not sure how to work
    around. Any suggestions would be appreciated.
    We just got a new load of Dell Optiplex 745 machines. Unfortunately, the
    imaging engine for Zen6.5sp2 doesn't include a NIC driver for it. So I
    downloaded the Boot CD ISO for Zen 7, it is included there. I boot from the
    CD and use the Imaging engine to load our image. In the past, our image
    will load the machine and in the process, run ZisClearNT.exe to clear the
    Image safe data. However, it seems that ZisClearNT isn't doing its job
    properly. Zenworks attempts to restore the image safe data in the process
    which isn't what I want.
    Is there an incompatibility in the ZicClearNT and Zenworks 7 imaging engine?
    I read somewhere about having changed where the image safe data is stored or
    something.
    Can anyone shed some light on the subject and perhaps let me know how to get
    ZisClearNT to do it's job, it works perfectly under Zen6.5.
    Thanks
    Brian W.

    I found that engl has a tool that will clear it as well (ZisdCtrl.exe), I
    can use that in my scripts (which is why I was using ZisClearNT in the first
    place, it cleared it automatically during the boot process).
    Thanks for the help.
    BW
    "Marcus Breiden" <[email protected]> wrote in message
    news:16c6oxffe2o0p$.[email protected]. .
    > On Wed, 14 Feb 2007 17:34:25 GMT, Brian W wrote:
    >
    >> Is there an incompatibility in the ZicClearNT and Zenworks 7 imaging
    >> engine?
    >> I read somewhere about having changed where the image safe data is stored
    >> or
    >> something.
    >
    > in zdm 7 the image save data is not stored in a fixed place, best use just
    > zisedit -c to clear the imagesave data from the bashprompt
    > --
    >
    > If you have already compiled drivers or have linux.2 please put them on
    > http://forge.novell.com/modules/xfmo...ect/?zfdimgdrv
    > Live BootCd and USB Disk from Mike Charles
    > http://forge.novell.com/modules/xfmod/project/?imagingx
    > eZie http://forge.novell.com/modules/xfmod/project/?ezie
    >
    > Marcus Breiden
    >
    > If you are asked to email me information please change -- to - in my
    > e-mail
    > address.
    > The content of this mail is my private and personal opinion.
    > http://www.edu-magic.net

  • Firefox upon opening an image in a new tab, centers the image from top and bottom and surrounds the image with a grey frame. Just started having the problem today, searched Google to no avail.

    Firefox upon opening an image in a new tab, centers the image from top and bottom and surrounds the image with a grey frame. Just started having the problem today, searched Google to no avail.

    Oh wow, looks like a new feature.
    The "page" links in a stylesheet with the address "resource://gre/res/TopLevelImageDocument.css". If you remove that reference, then the image displays in the old style.
    '''''Edit: Please skip the rest of this post and check out the next one.'''''
    There might be a more elegant solution than that, but you could use a bookmarklet to strip out that link when you want to view the page in its old style. A bookmarklet is a snippet of JavaScript you save on the Bookmarks toolbar for quick access.
    First, copy the following code to the clipboard (it's all one long line):
    <br>javascript:var ssheet=document.querySelector('link[href="resource://gre/res/TopLevelImageDocument.css"]'); if(ssheet)ssheet.parentNode.removeChild(ssheet); void 0;
    Next, if you are not displaying the Bookmarks Toolbar, use View > Toolbars > Bookmarks Toolbar to display it. (If you aren't using the classic Menu bar, press Alt+v to call up the old View menu. Right-clicking the gray area just below the page address also allows you to display the Bookmarks Toolbar.)
    Right-click on the Bookmarks Toolbar (or Mac equivalent of right-click!) and choose New Bookmark.
    Paste the code into the Location box (the second box).
    Then type a useful name in the Name box (e.g., Oldstyle Picture) and click Add.
    Now, when you want to tweak the image display, click the button to run the script.
    Manual clicking is a hassle, so it might make sense to look into other solutions. (Greasemonkey didn't seem to work; I think it might not run on .jpg files.)

  • WVC80N cannot see the image with VLC when multicasting

    I am using the WVC80N camera and have set the multicast address to 225.0.0.6 and the port to 2006 but when I try to view the image with VLC I cannot see and image. HTTP and rtsp both work but I need to use multicasting, has anyone gotten this to work?

    When you talk about the multicast , may I know if where is it set? Is it set on the route,server or computer? When you talk about VLC, where you referring to the VLC media player? Is also possible if you will show us a complete diagram on how your network has been setup so that we will be able to provide you the right recommendation.  

  • Append a file with date and name in the output file

    I am running a script which produce an output in excel file, I would like the server name and the date in the output file,  Both the servername and date has declared at the beginning of the script as 
    $server = test1
    $date = Get-Date -uformat %Y-%m-%d
    I am able to append either server or date but not both. Could you please help me out on this.
    I would like the output file as '
    server_report_date.xls

    I got this working by 
    "C:\Aravind\Scripts\$server-"+"Report-" +"$Date"+".xls"
    Thanks!!

  • Issue with Data Load Table

    Hi All,
           i am facing issue with apex 4.2.4 ,using the  Data Load Table concept's and in this look up used the
          Where Clause option  ,it seems to be not working this where clause ,Please help me on this

    hi all,
        it looks this where clause not filter with 'N'  data ,Please help me ,how to solve this or help me on this

  • Another user has changed the row with primary key -Table changed externally

    Hello,
    I am facing the error: "Another user has changed the row with primary key oracle.jbo.Key[94 ]." during the delete operation.
    User case scenario:
    1. Added new row in the table.
    2. Once new row is added to the the table, another application will update few columns in the newly added row based on some logic.
    3. On the same session I am trying to delete the newly added row and getting above mentioned error.
    I have added a "Button" in the table to partialRefresh the table to check the new values of the changed columns.
    I have checked the forum and found many similar errors and tried the following but nothing helped.
    1. By setting "Auto Refresh = True" for the view object.
    Issue faced-> It worked fine but after few add and remove my db is getting to inconsistent state after which, I am not able to do any add/delete from my page.
    Error: "Too many objects match the primary key oracle.jbo.Key". I have checked this and I am not getting this error when "Auto Refresh = False" even after multiple add and remove actions.
    2. By Setting "Auto Refresh" the iterator associated with the page.
    Issue -> Did not work at all.
    Looking forward inputs from gurus.
    Thanks
    Abhijeet

    Finally I found one solution to this problem at: [ http://www.avromroyfaderman.com/2008/05/bring-back-the-hobgoblin-dealing-with-rowinconsistentexception/|http://www.avromroyfaderman.com/2008/05/bring-back-the-hobgoblin-dealing-with-rowinconsistentexception/]
    Simply overriding the lock() method in the entity object resolved issue. Kudos to the author.
    Code:
    public void lock() {
    try {
    super.lock();
    } catch (RowInconsistentException e) {
    refresh(REFRESH_WITH_DB_ONLY_IF_UNCHANGED | REFRESH_CONTAINEES);
    super.lock();
    But, Now my refresh button is not working as depend on the "Auto Refresh = True" to update the table.
    Can anyone tell me how can I refresh the VO of my table from the button.
    Thanks
    Abhijeet.
    P.S: I have already added the partial trigger but it is work not working as the data is cached in the VO. Removing the Cached property for the VO is creating other problems.

Maybe you are looking for

  • Optical out not working, or is it the reciever...

    I just received a Belkin PureAV 6ft. Optical Cable with Mini Toslink Adapter today, in fact I opened it about 1 hour ago. My Denon AVR-65 doesn't seem to receive the optical signal from my Mac Mini at all. It at least won't lock on to the signal's fr

  • Add customer button on header level for BUS2201(PO) - SRM 7.0

    Hi, I want to define a customer button (with action) within PO on header level. Web Dynpro           FPM_OIF_COMPONENT Configuration          /SAPSRM/WDCC_FPM_OIF_PO_PURCH Task: Add a customer button besides standard Export button. I assume-afterward

  • Adding calendar to parameter form

    Hi... do u know how to add calendar in parameter form in Oracle Apps ?? the standard parameter in oracle apps just in teks like 25-Aug-2009 not in calendar visualization... thx in advance...

  • Best way to apply Invisible shield + tips????

    Hello, I got a 5Gen iPod and i want a cover that dosent cover up the iPod's "coolness." So i got the clear one. When I put it on the front, I was struggling, it was very hard to apply. Because i kept getting these huge air bubbles and i got really ma

  • Preview Pane Icon problem

    Hi guys, I have a problem with preview pane icon in win7 ENTERPRIZE. I cannot see any preview pane icon in windows explorer. I have googled for the problem but no luck. In fact, there is no option in view tab or organize menu to activate the feature.