Display icon using MIME Objects and BSP Tags on Pop up

HI all,
My requirement is to add the warning icon in my pop up along with the text..
I accomplished this using the warning message
DATA: lr_msg_service TYPE REF TO cl_bsp_wd_message_service, lr_msg_service ?= view_manager->get_message_service( ). lr_msg_service->add_message( iv_msg_type = 'W' iv_msg_id = '000' iv_msg_number = '007' ).
But i wish to know the other way to accomplish this using the Mime Objects..
Can any one pls lemme know how do i achieve this using the Mime Objects + BSP HTML Tag.
Kindly help !!

If it doesn't work with a custom theme then the theme makers didn't include that icon in its theme. You can contact the creators of those themes and inform them about that.
You can re-enable the sliding info bar at the top of the browser.
You can look at these prefs on the about:config page and reset them via the right-click context menu:<br />
Info bar at the top: privacy.popups.showBrowserMessage<br />
Status bar icon: browser.popups.showPopupBlocker<br />

Similar Messages

  • Using mime objects in bps excel layouts

    Does anyone know how to user mime objects in bps excel based layouts?  I know you can insert 'pictures' but I don't see a link to the mime repository like you have in the web interface builder.
    Thanks
    Tim

    Hi Charles,
    There are two How to documents available on SDN, to work on the MIME objects and the procedure for the same.
    How to Add a Logo into the MIME Repository
    How to Add a Cascading Style Sheet into the MIME Repository
    Refer to the below links to access the same.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/how to add a logo into the mime repository.doc
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/how to add a cascading style sheet into the mime repository.doc
    Hope it helps

  • If i dont use the display when using the GPS and only listen to the voice instructions can that also makes the iphone overheat even if you dont use the display

    because when i use the gps app in my iphone 4s in the car my iphone gets overheat so
    if i dont use the display when using the GPS and only listen to the voice instructions can that also makes the iphone overheat even if you dont use the display
    will that help?

    When you use your GPS does your iPhone get hot enough to shutdown?  The reason I ask is that I have run my GPS app with the screen brightness set to near max connected to power for hours.  My iPhone got hot, but didn't shutdown.

  • How To Upload a Mime Object into BSP Application??

    Hi all,
    I am new to Developing BSP Applications.
    I have a requirement to design a BSP Page and in the header part of the page, i have to display a JPG file from my local PC.
    To achieve this, I did the following:
    1) Upload/Import  the MIME Object(JPG File) into MIME Repository and into the relevant BSP Application.
    2) After the import, i can see the JPG file that I uploaded in the MIME Repository under my BSP Applciation.
    3) In my BSP Page, I tried to use the uploaded JPG file using the following Source Code, as was explained in the Documentation.
    <IMG SRC="myfile.jpg">
    I did not not do any basic mistakes and went according to documentation in using the above mentioned SRC command to upload the Image from the MIME Repository onto the BSP Page.
    But when I run my BSP Application in TEST mode, the Image never shows up; I tried all different way to get this image on the BSP Page and i could not.
    I am currently on ECC 6 Version. Please guide me.
    Thanks

    all that you have to do is reference the image in your page.
    <htmlb:image id            = "TOG"
                       tooltip       = "tooltip text"
                       src           = "picturename.jpg"/>
    2) After the import, i can see the JPG file that I uploaded in the MIME Repository under my BSP Applciation.
    Can you see this in SE80->applicationname->mime objects folder

  • Mime Objects and non-static template

    Hi All,
    When I bring up a non-static web template, icons stored as mime objects are not initially displayed.  When I do a drill down or any other operation these are then displayed. 
    I know that this is not an issue with static layouts.
    Does anyone know how to force it so that these are displayed when the template is first called up?
    Cheers,
    Robert Zovic
    Arinso International

    Sorry Max,
    I originally included this in this group, although it is a web template designed using the Web Application Design tool.
    The template itself has had it's property set to non static.  This is to overcome issues with the connection/resources remaining locked by the ICM.
    The icons have been uploaded through se80.  It's strange but on the initial callup of the template they don't appear.  On each subsequent access, they do.
    Robert

  • Using jpegEncoder object and filesystem

    Hi, I also posted this in the Flex general forum, but it
    seems to be more AIR related since it deals with saving to the
    local disk. I am trying to create a simple AIR application that
    creates a thumbnail from an image component and saves it as a jpeg
    to the desktop. I am not sure where I am going wrong here, but the
    file is corrupt and no information is being written to it. If I
    look at the content (via the "more" command on the command line) it
    is 8 blank lines.
    Thanks so much,
    Jed
    =========
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical">
    <mx:Script>
    <![CDATA[
    import mx.graphics.ImageSnapshot;
    import mx.graphics.codec.*;
    import mx.events.FileEvent;
    private function captureImg():void{
    //captures the image as a jpg and saves it to the desktop
    var codec:JPEGEncoder = new JPEGEncoder();
    //var ba:ByteArray = new ByteArray;
    var file:File =
    File.desktopDirectory.resolvePath("test.jpg");
    var filestream:FileStream = new FileStream;
    var snapShot:ImageSnapshot = new ImageSnapshot;
    snapShot = ImageSnapshot.captureImage(bigImg,72,codec);
    filestream.open(file, FileMode.WRITE);
    filestream.writeBytes(
    codec.encodeByteArray(snapShot.data,420,120),0,snapShot.data.length);
    filestream.close();
    private function makeSmall():void{
    //makes the image on the screen thumbnail size
    var pic:Image = bigImg;
    pic.setActualSize(420, 120);
    ]]>
    </mx:Script>
    <mx:VBox horizontalAlign="center" verticalAlign="top">
    <mx:Image id="bigImg" width="480" height="320"
    source="orignial/test2.jpg"/>
    <mx:Button label="Reduce Size" id="btnSmaller"
    click="makeSmall();" />
    <mx:Button label="Snap Thumbnail" id="btnThumbnail"
    click="captureImg();"/>
    </mx:VBox>
    </mx:WindowedApplication>
    Text

    Well I didn't get any feedback here on this problem. But I
    did figure it out.
    ===============
    <mx:WindowedApplication xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical">
    <mx:Script>
    <![CDATA[
    import flash.display.BitmapData;
    import mx.graphics.codec.JPEGEncoder;
    import flash.filesystem.*;
    private function captureImg():void{
    ** A bitmapData object is needed to contain the visual data
    var bmpd:BitmapData = new BitmapData(
    smallImg.width,smallImg.height, false, 0xFFFFFF);
    bmpd.draw(smallImg);
    ** the bitmapdata object needs to be encoded into an
    byteArray with
    ** the JPEGEncoder. there is also a PNGEncoder for .png
    files if wanted
    ** The paramerter passed is the quality of jpeg we are
    encoding, 50 - 100.
    var jpegEnc:JPEGEncoder = new JPEGEncoder(80);
    var ba:ByteArray = jpegEnc.encode(bmpd);
    ** Then we need to take the byteArray and save it to disk.
    ** this requries using a File and fileStream object. The try
    block
    ** catches the end of file error.
    var file:File =
    new
    File("file:///Developer/Flex/thumbnailDemo/src/thumbnail/thumb1.jpg");
    var filestream:FileStream = new FileStream();
    try{
    filestream.open(file, FileMode.WRITE);
    filestream.writeBytes(ba);
    filestream.close();
    }catch (e:Error){
    trace(e.message);
    filePath.text = file.name + " has been saved to " +
    file.nativePath;
    filePath.enabled = true;
    ** makeSmall reduces the size of the main image and places
    it in
    ** the smallImg component to await capture
    private function makeSmall():void{
    //makes the image on the screen thumbnail size
    var pic:Image = bigImg;
    var otherPic:Image = smallImg;
    smallImg.source = bigImg.source;
    otherPic.setActualSize(120, 80);
    ** loadThumb loads the saved thumbnail to the savedPic
    component
    private function loadThumb():void{
    var thumb:File =
    new
    File("file:///Developer/Flex/thumbnailDemo/src/thumbnail/thumb1.jpg");
    if (thumb.exists){
    var src:File = new
    File("file:///Developer/Flex/thumbnailDemo/src/");
    var relPath:String = src.getRelativePath(thumb);
    savedPic.source = relPath;
    filePath.text = "The Thumbnail has been sucessfully loaded
    from "
    + thumb.nativePath;
    ]]>
    </mx:Script>
    <mx:VBox horizontalAlign="left" verticalAlign="top">
    <mx:HBox>
    <mx:Image id="bigImg" width="480" height="320"
    source="orignial/test2.jpg"/>
    <mx:VBox verticalAlign="top" horizontalAlign="center">
    <mx:Label text="Thumbnail"/>
    <mx:Image id="smallImg" width="120" height="80" />
    <mx:Label text="Saved Thumbnail" />
    <mx:Image id="savedPic" width="120" height="80" />
    </mx:VBox>
    </mx:HBox>
    <mx:HBox horizontalAlign="left">
    <mx:Button label="Reduce Size" id="btnSmaller"
    click="makeSmall();" />
    <mx:Button label="Snap Thumbnail" id="btnThumbnail"
    click="captureImg();"/>
    <mx:Button label="Load Thumbnail" id="btnLoad"
    click="loadThumb();"/>
    </mx:HBox>
    <mx:Label id="filePath" enabled="false" />
    </mx:VBox>
    </mx:WindowedApplication>

  • Mime objects in BSP application

    Hi all,
    We have a BSP application with mime objects (images). We have assigned a default user to the application node in SICF. But when we test the BSP page in the browser, it  still prompts for the userid/password, for the images.
    How to set the user for the mime objects so that it doesn't prompt for any userid/password.
    HI,
    we noticed that one of the images was refereing to another BSP application , hence was prompting for the password.So we uploaded that image in the same application and now it works fine.
    Thanks anyways..
    Thanks & Regards,
    Ravikiran.C
    Message was edited by: Ravikiran C
    Message was edited by: Ravikiran C

    where are mime objects stored? within your application?
    if yes and if you have assigned default user and password in application node it should not be prompting for user id password.
    is this prompt only happenning for mimes or for the application.
    Regards
    Raja

  • Parsing & handling of object and param tags

    Hi all,
    I'm working on allowing people to paste certain embedded video code into a wysiwyg / html editor we've built with the help of (amongst others) javax.swing.text.html.HTMLWriter.
    I'm facing the following problem here:
    When i try to parse the <object><param></param></object> piece, it removes the <param> tags, and incorporates these in the <object> tag. For example:
    <object width="300" height="250"><param name="allowscriptaccess" value="always"></param></object>becomes:
    <object width="300" height="250" allowScriptAccess="always"></object>All param tags get converted into the object tag as String attributes. Problem with this is that the allowScriptAccess attribute is not a valid attribute of the object tag.
    Is there any way to prevent this conversion so it will retain the <param> tags?
    Thank you in advance.
    Edited by: Floxxx on Dec 28, 2009 10:16 AM

    This seems to be default behaviour in HTMLWriter, function Write().
    There it retrieves all elements with their attributes. The attributes summed up in the param tags show up as attributes for the object tag.
    Edited by: Floxxx on Dec 28, 2009 10:54 AM

  • Hide Label step icon using Testand API and LabVIEW

    Hi,
    can anyone tell me how it is possible to hide the icon of a label step using Testand API and LabVIEW?
    In the Teststand Sequence Editor, on the Label Edit Tab there is a Checkbox called "Hide Icon". Is there something similar in the API?
    Thanks
    Solved!
    Go to Solution.

    Yes you can, you will have to set the IconName property of the step to "ni_blank.ico"

  • IAC view and BSP iviews gives pop up for user id and password

    Hello All,
    I am facing a problem in quality portal.
    we have SSO configuration between Portal and ECC system and the Jco connection using SSO with login tickets are working fine,test and ping both are succesfull.
    The ESS and MSS webdynpro application are also working fine.
    But the  IAC iviews and BSP iviews says "session managment will not work ! Please check the DMS log files for details" and then ask for user id and password of the ECC system,But the system alias that i am using,is configured for SSO with logon tickets.
    same iviews are working fine in devlopment system with system alias with SSO Login tickets but in qa it is asking for id and password ...
    I have checked all the system properties also FQDN of ECC system is also maintained.
    Please suggest what could be the issue ??
    Thank you,
    Regards,
    Gunja

    Hi,
    When messages about Session management popup then it is 99% an FQDN issue, but you say you already checked it.
    Did you also checked the parameters:
    - ITS Host Name
    - Web AS Host Name
    ... in your system object?
    Cheers,
    B.

  • Some questions about quality of displayed video, matching scaled object, and a funny issue occurs in my VI

    Hi, 
    I am doing a pattern recognition project and come up with a VI (please find attached). There are something I am not sure and would like to ask:
    1. The VI works, but in a funny way: most of the time I have to switch the "Create Template/Search for pattern" button twice in order to get the VI works fine (there were only a few times I just need to click the button once). What is the problem here and how to fix it?
    2. I understand that IMAQ Match Pattern works with RGB images. So is there anyway I still can get RGB images pass through IMAQ Learn Pattern, IMAQ Match Pattern, whilst the 2 "Template" and resulting "Image" are still displayed in color mode.
    3. Is there anyway I can still detect the object if scaling becomes an issue (as I need to move from far distance to approach the object)? To address this issue, do I need to use IMAQ Match Geometric Pattern, which I learn from somewhere in the forum that it took a lot more time to match my result comparing with IMAQ Match Pattern?
    Thanks very much.
    Solved!
    Go to Solution.
    Attachments:
    pattern_recog.vi ‏128 KB

    Sorry about silly question 2 (RGB <--> color). Actually, in my VI all the IMAQ Extract, IMAQ Pattern Match, etc.. can only work with Grayscale (U8) images. Whenever I switch the images to RGB (U32) there will be errors of Incompatible image type (error-1074396077). As I understand, IMAQ Extract and IMAQ Pattern Match should be able to work with RGB (U32) images. Am I right?
    Attachments:
    pattern_recog_test1.vi ‏128 KB

  • Im using iphone 5s and i had white big patche on display, Im using iphone 5s and i had white big patche on display but my phone is working brillaint

    White patche on display need a help how i get out frm dis

    SharmFarm wrote:
    Good ev Ning Mario49    firstly I would like to say a great thank you for your attention to trying to help me,,,,,    i have looked at the links and will try everything stated first thing…
    Hi Mario,,,,
    I tried everything in your reply,,, thank you again,, I had done that once before and all was working great,,
    I have just now tried the Reinstall via iTunes, about 20 into the download, the iTunes logo on the phone disappeared, and the Apple Logo appeared again,,, I waited until the iTunes stated that the download had finished, and the install was in progress,,,
    Nothing happened, still the Apple Logo was visual on the screen, iTunes never recognised the phone which it was on my iTunes account previously,,,
    Still just a bunch of lines, maybe 5 or 6 so small writing,, I personally can not read what it is telling me, someone said it reads, incorrect shutdown,,,????????
    Please advise,???
    I am now at a loss,,, I really became excited when I saw the iTunes icon after putting the phone into restore,,,???
    Thank you again
    D

  • Reading colour image using raster object and getsample() method

    Hello all,
    I am trying to read a grey image using this code below and it perfectly works:
    File filename = new File("myimage.jpg");
    BufferedImage inputimage = ImageIO.read(filename);
    Raster input = inputimage.getRaster();
    double pixelvalue = input.getSample(xx, yy, 0) ; // to read pixel colour.
    Now:
    what modifications should i do to read a colour image using getsample() method.
    any help, by example if y would.
    Thanks

    The code below
    double pixelvalue = input.getSample(xx, yy, 0) ; // to read pixel colour.actually doesn't obtain the pixel color. It reads a band of the specified pixel. If you are reading a tripple band image (24-bit colored image RGB ) then you have to invoke this method three times for band 0, 1 and 2. The arrangment of them depends on the BufferedImage type.
    In reply of your question, you can use getSamples method, refer to the java API documentation of the BufferedImage class for more info.
    you can also check methods getRGB and setRGB, they used to get/set the entire pixel in range of 0x00000000 to 0x00FFFFFF ( 0x00RRGGBB of image type TYPE_INT_RGB )
    Regards,
    Mohammed M Saleem

  • Using Linkbar objects and EventListeners

    The code:
    Note, I left out most object specific details, like width and
    height etc...
    var pl:Panel = new Panel();
    var lb:LinkBar = new LinkBar();
    lb.addEventListener(MouseEvent.CLICK, httprequestObject);
    var vs:ViewStack = new ViewStack();
    var cv:Canvas = new Canvas();
    cv.label = "navigation button";
    vs.addChild(cv);
    lb.dataProvider = vs;
    pl.addChild(lb);
    this.addChild(pl);
    public function httprequestObject(e:MouseEvent):void{
    Alert.show("success!");
    For whatever reason this doesn't work. Suggestions,
    thoughts.

    Actually here is the complete code incase anyone is
    interested in trying it...
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" creationComplete="init()">
    <mx:Script>
    <![CDATA[
    import mx.containers.Canvas;
    import mx.containers.ViewStack;
    import mx.controls.LinkBar;
    import mx.containers.Panel;
    import mx.controls.Alert;
    public function init():void{
    var pl:Panel = new Panel();
    pl.width = 200;
    pl.height = 200;
    var lb:LinkBar = new LinkBar();
    lb.percentWidth = 100;
    lb.addEventListener(MouseEvent.CLICK, httprequestObject);
    var vs:ViewStack = new ViewStack();
    vs.percentWidth = 100;
    var cv:Canvas = new Canvas();
    cv.percentWidth = 100;
    cv.label = "navigation button";
    pl.addChild(lb);
    lb.dataProvider = vs;
    vs.addChild(cv);
    addChild(pl);
    public function httprequestObject(e:MouseEvent):void{
    Alert.show("success!");
    ]]>
    </mx:Script>
    </mx:Application>

  • Using Link Aggregation and VLAN tagging with LDOMs

    Hi,
    Anyone know if Link aggregation combined with VLAN tagging works for LDOMs?
    Any links or references would be appreciated.....
    It would be very handy if each LDOM could have multiple interfaces on different VLANs....
    Regards,
    Daniel

    I agree with bzptlx. While you can have vswitch plumbed without net-dev, and then route traffic inside the control domain, so that you can utilize aggregation, it adds complexity, and in some environments it's just impossible.
    I would say that this is number 1 deficiency with LDOM's in general.

Maybe you are looking for

  • How to get Get IDOC Number for Inbound IDOCS

    Hi, I am using the FM -- IDOC_INPUT_HRMD for creating Inbound IDOCS. I populate the values for Control Record and Data Record and the IDOC is posted successfully and i get the status 53 in the status Table. But the problem is the field for IDOC numbe

  • BizTalk AS2 Issue

    Hi, We have setup BizTalk AS2 and we are receiving the following error for the specific send port (on outbound): The adapter failed to transmit message going to send port "" with URL "". It will be retransmitted after the retry interval specified for

  • Directory for "Save as" from previous version

    When opening an InDesign document from a previous version, the "Save" command brings up the "Save As", asking to verify overwrite. Understandable, no issue with that. However, I'm wondering if there is a way to have the "Save As" location default to

  • Browser photos appearing as dashed lines in a box shape, how can I fix?

    I just created a couple of Projects and imported the pictures. When I look at the Project in the Browser a very large number of pictures don't appear, but rather are just square dashed-line boxes (like the pictures are still processing for viewing in

  • Mouse/cursor behaving badly

    Seems to have started recently, maybe with OS software update? My mouse is behaving badly as in it can't seem to capture open Mail windows to rearrange them on my screen - often takes 3 or 4 attemtps to "catch" the window. Also, can't rearrange stack