How to set tray's background image in the custom page layout?

Hi all,
I've developed custom page layout with custom iView tray implementation. I've applied my layout into my page and added some iViews. Those iViews are URL isolated so they are rendered as an iframe. My problem is that an iframe background containing iView content overcast my background image which I have set in my iView tray implementation. Is it possible to set transparent background for an iframe in this scenario?
I would be grateful for helpful answers.
Best Regards,
Michał M.

Hi Tamil,
That's right, I've already used layout tag library do develop custom tray design but my problem concerns iView's isolation method . URL isolation renders iView's content in an iframe which has its own background. I've read some articles about getting transparent iframes but I'm not sure how could I achive this in SAP EP? Is it possible?
Best Regards,
Michal M.

Similar Messages

  • Can we resize and change the background image in a 2 page layout?

    I am a two page layout report in RTF. Can I use different background image on page 1 and page 2? The first page background will not be repeated but the second page will. Also, it seems when we insert a background image by going "Format -> Background -> Fill effect -> Picture", after we finished the whole process we can't get the background image to fit with the page, can we resize it to be fit with the page? Thanks for your help!

    Yes.  Select the image and go to the Inspector/Hyperlink/Link pane and use the Link to One of my Pages option.
    Remember: the photo must be added to the page by dragging it onto the page and then be selected.  It can't be added as a background image with the Inspector/Page/Layout pane.
    OT

  • How do I create a duplicate image inside the same page? Then how do I change the color of that image

    how do I create a duplicate image inside the same page? Then how do I change the color of that image from black to red?

    Hello there!
    Here is one way to create a duplicate image and colorize it. As you can see below, I have one image right now, that I want to duplicate.
    My layers panel looks like below.
    To duplicate your image, click the downward arrow on the right side of your Layer Panel.
    Select Duplicate Layer. This will duplicate the layer that the image is on.
    Select "OK" to approve the duplication.
    As you can now see in the Layers panel, the image is duplicated. The new layer is now at the top of the Layer panel.
    Now to colorize your image, go to Window > Adjustments.
    The Adjustments panel will now be opened. Select the Hue and Saturation icon as seen circled in red.
    The Hue and Saturation propertied panel will be opened. I selected "Colorize", and adjusted the hue and saturation bar to achieve the level red in my photo.
    As you can see below, the image is now red.
    Now i want to make sure only ONE of my image layers is red. I moved the Hue and Saturation layer to only be on top of the bottom layer. The image on the top layer now will not be affected by the red.
    Select the move tool, so I can now move the image layers so we can see both of them.
    With each image layer selected, you can take the move tool and move the images. I moved mine on top of eachother and you can see my red layer (bottom) and the non red layer (top).
    I hope that helps. i have also included helpful links.
    Please post back with any questions,
    Janelle

  • Could not apply background image to the panel group layout in spaces application

    I tried to apply background image to the panel group layout with css class and also with inline style such as below
    background-image:url('/content/conn/intra-dot-content/path/mywebcenter/lever/backgroundmain.jpg');background-position:center; background-repeat:repeat-y;
    The background image does not show up. but it work with panel border layout. Is there any work around for the issue

    You can try styleclass, which is always better choice than inlinestyle
    page:
    <af:panelGroupLayout id="pgl30"
                                       styleClass="testPGbackground">
                    <af:outputText value="outputText5" id="ot8"/>
                  </af:panelGroupLayout>
    css:
    .testPGbackground {
        background-image:url('/images/unselectedTabStart.png');
    It works for me.
    I tried with inline style also and it worked.
    bac
    <af:panelGroupLayout id="pgl30"
                                       inlineStyle="background-image: url(/incview/images/unselectedTabStart.png);">
                    <af:outputText value="outputText5" id="ot8"/>
                  </af:panelGroupLayout>
    NOTE: You need to mention image url with context-name here, which could be a way of hard coding context name and in future it could be very difficult to change contextname. As recommended styleclass is better solution.
    Thanks
    Sanjeev

  • Background image obscures the auto page numbering

    I have an 80 page book that I want to have automatic page numbering. All pages have a background image that bleeds off the page. The background image changes on every page.
    The document is currently set up with individual image boxes on each page rather than on the master page. The problem i have is with the image obscuring the page numbering on each page. Trying to correct this I went back into the master pages to lay down a master image box bleeding off the page and the automatic page numbering on the layer above it. Testing this on a test document everything works fine. But as soon as i attempt to go into a regular page and change that master image the numbers disappear.
    What is the proper way to change an image from the applied master page so that it doesn't obscure the page numbers?

    Great suggestion for using layers, I'm accustomed to using them all the time in Illustrator and forgot about that option in this case. It worked perfectly to place the page numbers on the master page on a second layer positioned on top and applying master page to all document pages. It brought the numbers up to the top level.
    Thanks so much for the solution.

  • How can I put a background image in headers in PAGES

    It seems I cannot put a background image in headers. I want a background gradient to go behind the text. I have to place it on the "page" "behind" the header on every sheet instead. Other than creating a graphic that is both (bitmapped) text and image, what can I do? Or is there some way to create an object that has edittable text over the image. Thanks, Peter

    If you are referring to Pages app, it is easy:
    Open your document
    Go to Menu >> View >> Show Layout
    You will see headers, body and footers laid out with edges
    Click inside the header
    Open  your Media browser
    Drag your graphics (or photo) into the header
    Be sure to PRESS AND HOLD COMMAND (APPLE) KEY while you do this!!!
    If you don't pres the key, the picture will be pasted outside the header!
    I think the Command key press was what was screwing you up here...
    This applies to Numbers and iWeb as well, BTW

  • How to set password entered by user in the custom self registration app?

    Hi All,
    I am trying to create a customized self registration page on the portal logon page using Webdynpro JAVA application. Now the problem I am facing is that I am not able to identify how to set the initial password for the user in the portal that is entered by the user while registering through the application.
    I am using the object as:
    IUserFactory userFact = UMFactory.getUserFactory();
    IUserMaint userMaint = userFact.newUser(user);
    I am able to set different parameters such as First Name,Last Name, User Id, Email Id, etc but not the password.
    Any pointers will be highly appreciated.
    Thanks in Advance.
    Regards.
    Rajat

    Hi Rajat Jain,
    Try the below code.
    IUserAccountFactory mAccountFact = UMFactory.getUserAccountFactory();
    IUserAccount userAccount =mAccountFact.getUserAccountByLogonId(login); // Provide login
    IUserAccount muserAccount = mAccountFact.getMutableUserAccount(userAccount.getUniqueID());
    muserAccount.setPassword(oldPassword.trim(), confirmPassword.trim());
    muserAccount.save();
    muserAccount.commit();
    Regards,
    VJR.

  • How to set item values when redirecting to the same page.

    I just created a redirect button that I want to redirect to the same page and set the 2 page items on the page to the same value they had before the redirect.
    But I can't write:
    Set These Items: P1_Permit_Number,P1_Fishing_Year
    With These Values: &P1_Permit_Number.,&P1_Fishing_Year.
    Because there are no values in the session state, since a submit has not been done.
    So how do I do this?
    I know how to get the values stored in the items, e.g., $v('P1_PERMIT_NUMBER')
    but where do I place that command? It's not allowed under "With These Values"
    And I don't really want to make this a submit button and create a process that says:
    P1_PERMIT_NUMBER := $v('P1_PERMIT_NUMBER') because that would complicate the page too much -- I already have other processes and branches on the pages whose conditions would have to be modified so that they don't run during this scenario.
    Thanks.

    Thanks Gary and Andy. I rewrote the function according to above instructions:
    function redirectToURL()
    var permitNumber = document.getElementById('P1_Permit_Number');
    var fishingYear = document.getElementById('P1_Fishing_Year');
    var url = 'f?p=&APP_ID.:1:&APP_SESSION.::::P1_Permit_Number,P1_Fishing_Year:' + permitNumber +',' + fishingYear;
    window.location.href = url;
    But when I entered a value for permit number and fishing year and redirected, the word "null" appeared in the Permit page item, instead of the permit number that I had entered.
    Remember that I am not submitting here. So if the syntax you showed me, i.e. getElementById('P1_Permit_Number'), searches for the item's session state, then it will be wrong, since there is no session state value for the items at this point. Perhaps that is the reason I got the null?
    If so, what can I do?

  • How can I put a background image into the cell of a table using Dreamweaver CC.

    I want to place an image in a table cell and then be able to place editable HTML in the same cell on top of image. I also have Dreamweaver CS6. I can't get either one to do it using solution I found searching on web. Please help ASAP. What am I doing wrong. Example code would be great. Thanks!

    No tables required for any of this.  You simply need a 3-column starter page. 
    In DW, go to File > New > Blank page > HTML. 
    Select a 3-column layout from the 3rd panel.
    Hit Create button.
    Learn to use CSS floats, margins and padding to align elements.  DO NOT use positioning.
    Start with & bookmark these links for future reference:
    CSS Box Model
    http://css-tricks.com/all-about-floats/
    CSS Float
    Floatutorial: Step by step CSS float tutorial
    CSS Margin
    CSS Padding
    Nancy O.

  • How do I change the blurred background image on the Select User Screen

    I have changed the desktop image on all of my users, as well as the screen savers.  However, when I logout of one user and the screen where you select another user comes up, there is an image on the background of this particular screen that I cannot figure out how to change.
    This is crucial because I do not want to see my crazy, abusive ex-wife every time I select a different user...even if it is a blurred image.
    This blurred out image does not appear anywhere else on any of the different user accounts as a background/desktop image.
    How do I change this background image?
    Please help.

    This seems to be a bug that goes away w/ 10.10.1
    Yosemite login screen possible bug
    "if I put my Mac in sleep mode, when I wake up it, the password request screen uses the default Yosemite wallpaper in blurred mode instead of the wallpaper I have chosen for my desktop."
    or maybe not:
    "And it still happens after the 10.10.1 update."
    This seems to work.
    "The only way I was able to fix this problem was to go Mission Control and close all extra desktops I was using except Desktop 1 (which you cannot delete if it is the last one). After deleting the extra desktops besides Desktop 1, I went into preferences and set my wallpaper. Once I complete both of these steps I returned to the login screen. The wallpaper I used for Desktop 1 was now my background for the login screen. Hope this helps."

  • How to set CAM Mode background wallpaper

    Hi forum users,
    Where can i download or find the "xv" application ?
    Thanks.
    # Yours Sincerely,
    # Mohamed Ali Bin Abdullah.
    Anthony Worrall wrote:
    In chapter 10 "Control Access Mode" of the "Sun Ray Server Software 3.1
    Administrator's Guide for the Solaris Operating System"
    http://docs.sun.com/source/819-2384/cam.html
    To Change the Backdrop
    1. Run xv (version 3.10 or later) on any desired image.
    2. Save the file as "XPM". Rename the file from <>.xpm to <>.pm.
    3. Edit the file /opt/SUNWut/kiosk/prototypes/dtsession/Dtwm and change
    the two backdrop lines to the full pathname of the <>.pm file.
    You can also place the <>.pm file in /usr/dt/share/backdrops and then
    refer to it by <> in the Dtwm file.
    -----Original Message-----
    From: [email protected]
    [mailto:[email protected]] On Behalf Of Mohamed Ali Bin
    Abdullah
    Sent: 16 August 2006 13:14
    To: [email protected]
    Subject: [SunRay-Users] How to set CAM Mode background wallpaper
    Importance: High
    Dear SunRay Fourm Users,
    I need help regarding Sun Ray CAM mode background wallpaper settings.
    My objective is that, non-card users( DTUs ) will start the Controlled
    Access Mode. In CAM mode i don't want any application to be launch. I
    want CAM mode background shows only my wallpaper( jpg format ). Users
    with card can access the system( dtlogin ). I have set those policy in
    SunRay Web Administration Console and restart the services.
    My question is, how can i set or configure the CAM mode background to
    show my wallpaper( jpg fornat ) ?
    These are my setup environment information:
    - Sun E220( Sparc )
    - Installed Solaris 10 06/06 OS.
    - Installed latest Solaris 10 recommended patches
    - SunRay Server Software 3.1
    - Installed patch 120879-04
    - 2x SunRay 1
    - 2x SunRay 150
    - 2x SunRay 170
    I would be thankful if anyone can offer me help and guidance.
    Please let me know if you need any more information.
    # Yours Sincerely,
    # Mohamed Ali Bin Abdullah.

    Hi forum users,
    Where can i download or find the "xv" application ?blastwave.org has it for example

  • How to change background image for each individual page in a template?

    I've been working for hours to try to figure out how to change the background image for each individual page in a template.  I have tried making a div in the body and adding a CSS and setting a background picture.  Unfortunately even after I made it editable all templated webpages changed.  I tried looking at different forum results which didn't really help me out. http://forums.adobe.com/message/2670005#2670005#2670005.  I've also tried embeding a CSS style on the webpage instead of the external CSS which again didn't work.  I'm not sure where to go from here.  Is there a good video that explains this clearly.  Please help.  Thanks.

    Adjust inline styles to suit your needs.
    <li><a tabindex="-1" href="giving/index.html" class="MenuBarItemSubmenu" style="background:none; color:#FFF; background: #000;">GIVING</a>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Set Background image of the Jwindow

    Can any one of u explain how to set the background image of the Jwindow..

    can you search in this forum? this question have been replied many times.

  • [ANSWERED]Which terminals let you set a random background image?

    Many terminals nowadays let you set a background image on the terminal itself.
    Which terminals let you set a random background image from a directory or list of images? Also need to be able to have multiple terminals with different background images open, so having a script that moves around images won't work.
    I like this because when you have lots of terminals open, you can associate each with their background image. Also if your background image isn't a tiled thing or a stylized gradient (such as a human, etc), it might look bad when duplicated all over the screen.
    I could use transparency, but I don't like psuedo transparency, and real transparency comes with all sorts of problems. (For me at least.) I would still prefer having multiple background images though.
    Konsole and eterm are the only two I know that can do this, but konsole is KDE, and eterm has no unicode support, is dead (I think), and is ugly.
    Last edited by sokuban (2008-12-31 21:20:12)

    So now that time has passed and I'm on a clean new install, I decided to try out uxvrt again. The good news in that now I can type in it with scim. I have no clue how or why, but it means the greatest hurdle is gone.
    I also even managed to get a good looking English font.
    urxvt*font: xft:Monospace:pixelsize=12
    Only problem is a readable east asian font. The default font is a mess and everything is squished together. If I explicitly select an east asian font, then there are huge spaces between each letter, even for english. So I find out this is a known bug, and I find a patched aur package for it, but the patch doesn't seem to make a difference.
    I know urxvt lets you select a main font and a secondary font and so on. Maybe I did the syntax wrong. I tried both:
    urxvt*font: xft:Monospace:pixelsize=16
    urxvt*font: xft:WenQuanYi Zen Hei:size=9:antialias=True
    and
    urxvt*font: xft:Monospace:pixelsize=16,urxvt*font: xft:WenQuanYi Zen Hei:size=9:antialias=True
    Neither of them worked. From what my understanding of what the man page says, the size of the cell is supposed to be based on the main font, but in both those cases the secondary font stretches the cells.
    Can anybody reccomend fonts for east asian scripts that work well and show me your .Xdefaults ?
    FAKE EDIT: I just thought of an idea, and it kinda works:
    urxvt*font: xft:Monospace:pixelsize=16,xft:WenQuanYi Zen Hei:size=9:antialias=True
    Now I get a readable font, but massive spacing issues between Chinese Characters.
    EDIT: About the pixmaps, I got a script to randomly select and image and all is fine, but I can't seem to find a way to disable scaling. I can set the size of the picture by a percent, but it doesn't let me use decimals and it is impossible to get the exact resolution of the picture to display. (Unless I let it tile, but the pictures I am using aren't meant to be tiled.) Is there a way to either disable scaling, or set the urxvt size in pixels so I could make it exactly 640x480. The urxvt man page says that a scale of 1 disables scaling, but it seems to have no effect.
    EDIT2: I just noticed I can't use scim now. I have no clue why, but I think compiling it with afterimage support breaks it.
    EDIT3: I found out why scim was not working/working. I had to add this to my ~/.scim/global:
    /SupportedUnicodeLocales = en_CA.UTF-8
    I also got a script that works, kinda:
    #!/bin/bash
    image="$(ls /usr/local/share/cgs | sort -R | tail -1)"
    urxvt -pixmap /usr/local/share/cgs/$image\;86x100
    The only problem is that I don't know how to get urxvt -pixmap to keep the aspect ratio of the image. 86x100 is the closest it will let me get to the actual aspect ratio, but it is off slightly. Barely noticable. The man page says that propscale will do this, but it doesn't seem to work.
    Either way, for now, I am just going to use 86x100.
    Last edited by sokuban (2009-03-22 02:01:45)

  • How to I add a background image in an Encore slidehsow?

    How do I add a background image in an Encore slidehsow? Currently the slideshow has a black background and I would love to be able to change that to an image.

    You can always fire up Premiere (or Photoshop) and create images with whatever background you choose.........

Maybe you are looking for

  • How to insert Serialised Object(XML DOM) into Oracle Table(as BLOB or CLOB)

    we need a urgent help. How can we insert and retrieve the XML Document DOM Object into Oracle Table.Actually we used BLOB for insert the DOM Object,its inserted finely but we have a problem in retrieving that object, we got error when v're retrieving

  • CS5 photoshop color shift problem

    When I open or copy any image into photoshop, for some reason it changes the colors.  For example if I have an image that has blue text, when I open it in photoshop the text becomes purple.  Has anyone heard of this problem before?

  • Populating custom om infotype

    hi all, i have made a custom <b>org management</b> infotype (name starting with 9). Can i use any standard function module to read it.Like we have HR_read_infotype to read pa infotype ..do we have any srandard function module to read custom om infoty

  • Sap b1 Crystal Report error

    I reinstall Crystal reporting on SAP. 1. Remove in Add ons manager 2. Uninstall SAPCrystalSetup. 3. Install SAPCrystalSetup. 4. Register SAP in Addons. 5. Publish SAP report. But in viewing the report, I got this error titled "Microsoft .NET Framewor

  • Servlet plus mysql problem

    Well... Using Tomcat 557 and MySQL 411 I have a problem. I load a Driver (MySQL Connector/J) and create a connection object in servlet's init procedure. All woks fine. I stop Mysql and reload the servlet, nothing can be seen on a browser window - as