9i Frame in the Web

HI Gentlemen,
When I draw a FRAME in 9iDS Forms Developer in e g 4 points width and bevel--it looks fine in the DS. However, when going into the Web, 10gASFrs with lookAndFeel=Oracle, IE6 displays a plain, thin blue line. (For RECTANGLES, it works!)
Could you help me, what parameters to set or what to do to get the same custom picture as in DS?

Hi,
are you saying that running the Forms application in OC4J that comes with teh Developer Suite works while running it with Oracle Application Server doesnt? Or are you saying that the line shows fine in the development environment of Forms but doesn't at runtime?
In either way, please contact Oracle customer support and file a bug.
Frank

Similar Messages

  • Title frame in the .Mac Web Gallery

    Hi there... I have a movie which I've published to the Web Gallery in iMovie '08. The first couple of seconds of the video is a black screen as there's a music intro. My problem is that due to this black background the preview on the Web Gallery is blank - just a black frame (not very interesting). My question is; is there a way to select which frame is used as the title fame?

    .. I'm publishing the movie direct to the Web Gallery though iMovie '08.
    ahh, I see.. no, I don't think so, that's possible from within iM08 .. I can not find a setting in its options.
    in QTpro, there's an easy single-click solution for that, 'View/Set Poster frame', which adds a manual selected poster frame...
    so, live with the preset, use iWeb or purchase QTpro seem to be your only options..

  • Hello All... Back after a brief absence, things look a little bit different. I'm trying to take a 16 minute mini dv video and compress it for use on the web. I'm interested in any suggestions you may have on settings for the video and audio tracks. I'v

    Hello All...
    Back after a brief absence, things look a little bit different.
    I'm trying to take a 16 minute mini dv video and compress it for use on the web. I'm interested in any suggestions you may have on settings for the video and audio tracks. I've tried using Sorenson 3 (15 frames, key frames set to automatic, 320 x 240) for video and IMA 4:1 (mono) for audio. The resulting video looked great but the file size came in at about 255 Mb.
    Thanks!
    PowerMac G5 1.8 Dual   Mac OS X (10.4.3)  
    Message was edited by: Dan Foley

    Thank you for the replies.  Everyone was correct about the jack, interface, and phasing problems.  I have been unplugging my motu audio interface and then using headphones at work.  I have not changed any detailed audio output settings in logic.  When I read that the jack might be a problem I tried switching headphones.  This actually helped.  I am using dre-beats headphones and they seem to be having issues with the mac/jack-(the phasing/panning problems.  I can use these headphones with other devices but not the mac.  I have to use ipod ear buds and the phasing seems fixed.  Hopefully this information is helpful to someone else. 
    If anyone knows how to correct this issue please let me know its difficult to know what my final mixes are going to sound like and I have had to keep bouncing everything into i-tunes- sync to ipod and then listen in my car radio. 

  • Registering the Web based application as a Partner Application

    Good day
    I went through the suggested documentation of registering a
    web based application as a partner application of the SSO Login Server.
    I installed the SSOSDK.JAR and went through the demo application (JSP Demo)
    which consists of the following programs :
    papp.jsp
    ssoinclude.jsp
    ssoEnablerJspBean
    SSOEnablerBean
    SSOSignon
    As per the technical documentation,I register this demo application as a
    partner application.
    1 - The source code of the papp.jsp checks for the existence of the user
    through method of ssoEnablerJspBean [getSSOUserInfo(request, response)] which
    calls method of SSOEnablerBean [getSSOUserInfo (request, response) and this
    method calls getUserInfo(p_request) of SSOEnablerBean (the same program) to
    check the existence of the application cookie.
    2 - If it doesn't exit , it redirect it to the SSO Login page for user
    authentication.Once the user is authenticated, a SSO login cookie is created on
    the client's browser and redirects back to the SSOSignOn.
    3 - The SSOSignOn program creates the application cookie and redirects back to
    the entry point of the demo application which is papp.jsp.
    My Questions are as follows :
    1 - Instead of creating a session object within my web based application to hold some
    information used between the different pages, can I define them in the
    application cookie? kindly advise? Is there any limitation for the length of
    the application cookie? If yes, what will be the risk?
    2 - The SSOSignOn program is calling a method in the SSOEnablerBean
    [setPartnerAppCookie(response, request). Within this method , it is retrieving
    the parameters values of the request object as :
    request.getParameterValues("urlc")[0];
    What is the role of this [urlc]? Is it hard coded? Can I change it?
    3 - In order to ensure that I am still dealing with the same user, shall I put
    the above security check procedure on each page of my weeb based application? Kindly advise?
    Thanks in advance for your prompt feedback
    regards

    Dear Paul
    I think there is a misunderstanding regarding the last correspondence.
    I am talking about the customized home page of the PORTAL and not the home page of my web based application (JSP) .So in this case, Am I able to use the customized home page which contains a login portlet instead of the default Login page of the SSO Login Server.Kindly advise!!!
    On the other hand, I am facing a problem during the surfing of the web based application.
    The web based application consists mainly of two packages :
    Package I : Bank.counter which contains a set of jsp pages.
    JSP_HOME_COUNTER (MAIN PAGE WHICH CONTAINS 2 FRAMES)
    JSP_LEFT_FRAME_COUNTER
    JSP_MAIN_FRAME_COUNTER
    JSP_MAIN_FRAME_COUNTER_DETAIL
    Package II : Bank.portfolio which contains a set of jsp pages.
    JSP_HOME_PORTFOLIO (MAIN PAGE WHICH CONTAINS 2 FRAMES)
    JSP_LEFT_FRAME_PORTFOLIO
    JSP_MAIN_FRAME_PORTFOLIO
    Please note that the SSO classes are residing under the first package.
    As agreed on in the third question, I am including in each page of my web based application, a security check procedure as follows :
    <%@ include file="ssoinclude.jsp" %>
    <%
    if(usrInfo == null)
    response.getWriter().println("<center>User information not found</center>");
    else
    my jsp code.......
    %>
    Please note that all the jsp page of the portfolio package are pointing to the SSO classes as follows :
    <%@ include file="../counter/ssoinclude.jsp" %>
    <%
    if(usrInfo == null)
    response.getWriter().println("<center>User information not found</center>");
    else
    my jsp code.......
    %>
    Once I invoke the JSP_HOME_COUNTER , it will render the JSP_LEFT_FRAME_COUNTER page and
    JSP_MAIN_FRAME_COUNTER page which invokes the SSO Login page. Once the user has been authenticate, the result of the JSP_MAIN_FRAME_COUNTER is rendered successfully. The result contains an hyperlink to the
    JSP_MAIN_FRAME_COUNTER_DETAIL page. As the user has been authenticated , this page is rendering automatically the result without displaying the SSO Login page. (Perfect as of now!!).
    Once I invoke the JSP_HOME_PORTFOLIO from the JSP_HOME_COUNTER, it runs the security procedure without any rendering of the SSO Login page (fine!!) but redirects me back to JSP_HOME_COUNTER instead of rendering the result of the JSP_HOME_PORTFOLIO.
    please note that the m_requestUrl variable in the SSOEnablerJSPBean class has been assigned the folowing value : JSP_HOME_COUNTER
    Kindly advise .

  • UI Screen Configs not reflecting on the web

    For doing screen configuration,  when I click on the frame to configure, the system is picking up std key and not the custom key zpartman though zpartman key is there in the list. ( Note: Zpartman key is the one assigned to this role ). Therefore if I do config in zpartman key, it's not reflecting on the web. Please reply what could be the reason and the solution.
    Thanks
    TR

    Hi TR
    first access the standard and check the configuration info such as what is the configuration key , object and subobject .
    Then access your custom configuration screen and check what it was looking for and what is it picked , change your custom configuration accordingly what it was looking for (by making changes to configuration key, object and sub object).
    Check that you are accessing in the same client if not transport the request to other client using SCC1 transaction.
    Thanks & Regards
    Raj

  • After applying SP21 the web dynpro is not working (WDTypeNotFoundException)

    Hi
    We have recently applied SP21 to our NW04 system.
    The patch was successfully applied. But while accessing the Web Dynpro, we are getting WDTypeNotFoundException exception.
    The Error Message is as follows :
    +500 Internal Server Error
    Web Dynpro Container/SAP J2EE Engine/6.40
    Failed to process request. Please contact your system administrator.
    Hide
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
    500 Internal Server Error
    Web Dynpro Container/SAP J2EE Engine/6.40
    Failed to process request. Please contact your system administrator.
    Hide
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
    com.sap.tc.webdynpro.services.exceptions.WDTypeNotFoundException: type jp.co.companyname.projectname.pp.fnp09.datapreparemodel.types.Ru_cnfind not found
    at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker.getDataType(DataTypeBroker.java:224)
    at com.sap.tc.webdynpro.progmodel.context.DataAttributeInfo.init(DataAttributeInfo.java:318)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.addAttribute(NodeInfo.java:517)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.addAttribute(NodeInfo.java:530)
    at jp.co.companyname.projectname.pp.fnp09.main.RawMaterialView.wdDoModifyView(RawMaterialView.java:191)
    ... 28 more
    See full exception chain for details.
    System Environment
    Client
    Web Dynpro Client Type HTML Client
    User agent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322)
    Version
    DOM version
    Client Type msie6
    Client Type Profile ie6
    ActiveX enabled
    Cookies enabled
    Frames enabled
    Java Applets enabled
    JavaScript enabled
    Tables enabled
    VB Script enabled
    Server
    Web Dynpro Runtime Vendor: SAP, Build ID: 6.4021.00.0000.20070905102710.0000 (release=630_VAL_REL, buildtime=2007-09-19:20:40:15UTC, changelist=460812, host=PWDFM026)
    J2EE Engine 6.40 patchlevel 109749.313
    Java VM Java HotSpot(TM) Server VM, version:1.4.2_13-b06, vendor: Sun Microsystems Inc.
    Operating system Windows 2003, version: 5.2, architecture: x86
    Other
    Session Locale ja
    Time of Failure Mon May 17 18:35:52 JST 2007 (Java Time: 1197884152810)
    Web Dynpro Code Generation Infos
    companyname.co.jp/pp~fnp09
    SapDictionaryGenerationCore 6.4010.00.0000.20040910101802.0000 (release=630_VAL_REL, buildtime=2004-12-09:22:23:41UTC, changelist=280522, host=PWDFM026.wdf.sap.corp) +
    If you have any ideas please let me know.
    thanks and Regards
    Raghunahth L

    Hi raghu,
    You can go to Visual administrator (/usr/sap/<SID>/JCxx/j2ee/admin--go.bat)
    Give administrator credentials..
    Cluster-Server-Services-webdynpro Runtime.
    See if it is stopped.You can see red croos,if it is stopped.If it is,
    Right click on Webdynpro Runtine and  start.
    One more option,you can give a try is start all teh srvices manually through
    telnet
    This can be done with "run' command on you system
    telnet <IP adress> telnet port
    telnet port will be http port ending with 8.
    then give administrtaor credentials.
    then go with these commands,
    jump 0
    add deploy
    list_app
    start_app-all
    Try looki in for detailed error messages in default trace and application logs.
    Loc : /usr/sap/<SID>/JCxx/j2ee/cluster/server0/log
    Regards
    Usha

  • The Web Dynpro Application 'WebAdminApp' has expired.

    Hello all,
    I am getting this error when I click on anything from /nwa.
    The Web Dynpro Application 'WebAdminApp' has expired. Restart the application using the Refresh button or via the following link WebAdminApp.
    I have to configure LogOn Group for the WebDispatcher ( to be able to see the logon group from the java system) and from this link:
    Logon Group Configuration - System Landscape Administration with SAP NetWeaver Administrator - SAP Library
    I got the solution:
    Activities
    You can display the overview page of the existing logon groups if you choose System Management  → Configuration  →  Logon Groups. The Logon Groups frame on the right contains a table that lists all logon groups on all registered systems.
    So, I started /nwa and when I click on Configuration, I am getting:
    The Web Dynpro Application 'WebAdminApp' has expired. Restart the application using the Refresh button or via the following link WebAdminApp.
    Can you suggest me a solution?
    thx
    Chris

    Solution:
    1907152 - Web Dynpro Application 'WebAdminApp' has expired when access NWA

  • Long movies on the web; are my assumptions correct?

    Hello folks. I'd be very grateful if someone could tell me if my assumptions listed below are correct, or if I've missed something very obvious.
    I recently did a number of half-hour videos for a client. Much to my surprise they requested them to be made available on the web. The videos were made at a conference with power point slides, so the quality needs to be fairly high for viewers to be able to see the details.
    Here's my questions (the first one is my opinion, which I'd like confirmed?)
    1) it's not 'usual' (or sensible) to put 30 minute clips on the web--the files are simply too big.
    2) After much trial and error and hair loss, I finally came up with compression settings which allow a file of 100+mb for streaming. However, using FCE HD, each file takes about 2 hours to compress--I don't think there's a way of speeding this up, is there? I understand that more RAM won't really help?
    3) because the FCE HD system locks up every time I make a compression (so that I cannot do anything with FCE for the 2 hours it's compressing the file) I'm thinking of investing in something like Sorenson Compression Suite. My understanding is that this would compress files in the background while I keep working. Again, am I being thick here, or is this a sensible reason to buy the suite?
    4)Final one! I believe that FC Studio allows batch processing. Because Sorenson costs $500 odd I wonder if it's more sensible to upgrade to FC Studio?
    Sorry for the multiple confused questions. I haven't been able to find full answers to any of these questions on the forum, so apologies in advance if I've missed em

    Hello Conor -
    I'll take a stab at answering your questions ...
    1- That's up to you and the demands of your audiences. By sheer count, yes, most web videos are pretty short (<10 mins) but if you need yours to be longer, well, they need to be longer.
    2- The time doesn't surprise me. And I suppose you are exporting to H.264 - which does take much longer to render than other formats. The only way to speed it up is choose a different compression scheme or get more/faster processors and to some extent more RAM. FCE's sweet spot is 2GB - 4GB RAM.
    By the way, did you do Render All > Both and Render Only > Mixdown before you tried to export & compress your video? You should, and it will help with the export time.
    3- Background compression sounds nice, but as a practice I wouldn't do it. Too many chances of some foreground process (read: other app) requiring CPU or I/O cycles just long enough to get you some dropped frames or worse. But that's just my considered opinion <grin>
    4- Sorry, can't answer this one. But isn't FCS batch processing for capturing multiple clips? I didn't think it was for exporting finished video ...

  • Exporting FCP 16:9 to QT for the web in 16:9?

    Hello everyone,
    I recently began doing my projects in 16:9 mode. I shoot them with my GL2's in 16:9, then capture to FCP as usual. FCP then automatically recognizes the 16:9 footage and adjusts everything perfectly for me. I figured out how to get the footage to DVDSP by 'forcing letterbox'. This plays the true 16:9 footage on a widescreen TV perfectly.
    Now, I've come to another bridge that I can't seem to cross... that is... exporting the video to QT for the web in 16:9. I did a lot of searching here and all of the topics related to this did not help me at all. So, what I'm going to do is explain what I used to do when I shot in 4:3 mode:
    1. In FCP... File>Export>QT Conversion
    2. Format: QT Movie> Options
    3. Settings> Sorenson Video 3
    4. Frame Rate>15
    5. Key Frames: Every 150 frames
    6. Compressor> Medium
    7. Data Rate: Automatic
    8. OK
    9. Sound>Settings>Mpeg-4 Audio, 16bit, Stereo
    10. OK
    11. Prepare for Internet Streaming> Fast Start
    12. OK
    13. SAVE
    This usually turns a full sized 5 minute clip into a nice little presentation for the web no larger than 35 or so MB's. You can see a boat load of files like that on my website at (www.buerhausdesign.com).
    Now, what I want to do is get a similar sized video for the web, only in 16:9 as I'm now shooting and editing in 16:9.
    Does anyone have step-by-step instructions on how to do this? I know it's possible as I see movie trailors in 16:9 all the time in QT.
    Any help would be appreciated:)
    Matt

    Nope, tried all of that. It stretches the image way beyond 16:9. Currently, if I export as a 4:3 file, the widescreen displays correctly, but I get two black bars at the top and bottom of the frame. Manually sizing to a 16:9 size, to say 720x404, stretches everything... including the unwanted black bars.
    When I export to DVDSP, the black bars go away when I 'force letterbox'. There's gotta be a way to get it to work in QT.

  • How to disable the reminding dialog when close the webi report viewer

    Dear all
    How to disable the reminding dialog when close the webi report viewer
    Background
    When user close the webi report viewer in inforview by click the button in the right-top of the webi report viewer frame. It always prompt a dialog to remind user that the modification will be lost without saving.
    But customer need to disable this dialog, and can clost the report viewer directly.
    So is there any ways to modify this?
    I think it shoule modify some .js file under tomcat, but can not find the solution.
    Thanks a lot, any information woulde be appreciated.
    David Zhang

    I've had the same issue bugging me since installing Snow, er, lion, er, cat, er, cougar, er, Mountain Lion. Incredibly ANNOYING.
    It's stupid stuff like this and reverse scrolling that really turn long-timer users off. I'm personally glad Forstall got fired for blunders such as these.
    I'm serious peeved that turning off iCloud Documents & Data actually deletes documents and data locally. That's just incredibly stupid.
    MANY thanks mende1 for the answer on how to fix it.

  • Most times when trying to access web sites get page stating Server Not Found..... Try Again. As soon as I hit try again I always get the web site - annoying!!!

    When I try to google websites OR even try to access my email I will be taken to a notice which states "Server Not Found" with several explanations with a TRY AGAIN button at the bottom. When I hit the try again button I am immediately taken to the web site or to my email. This happens constantly and very rarely can I access a web site or my email without this frame popping up.

    This is a very generic error message. 
    What user you are trying to search. Are you using username, display name or email address when searching
    Was any domain related changed done
    What if that users tried to logon to sharepoint site. 
    Does this error occur with all the account when you click edit? If not, based on the error,
    the user account which might be removed from Active Directory or renamed accidentally. Please have a check.
    Try to follow below:
    http://architectevangelist.wordpress.com/2010/12/07/sharepoint-2010-the-specified-user-or-domain-group-was-not-found/

  • When I attempt to add a new key frame into the timeline it adds several frames to my animation

    I am trying to edit an FLV file with flash professiona.  Right now every frame is on long frame sequence, meaning that right now there is only one key fram in the entire 40 second animation.  I am trying to add put key frames at various points in my animation but when I attempt to add a new key frame into the timeline it copies ever frame up to the selected and adds it to the front of my timeline.  Any Idea how to fix this?  I want to break my video up so I can add some shape tweens in between some of the frames

    Extensions like IE View and IE Tab use IE and the IE rendering engine, so you are running IE.
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to copy and paste web design styles from the web

    I am not doing so well with the web style templates provided in the latest versions of IWeb.
    Is there a way to copy and paste the html code from some site who's design I like then paste it into my Iweb and then put in my content to the style that was up?
    I used to be able to do do this about 10 years ago with a Claris Homepage program, don't see how to do it with IWeb.
    It's like I have to do everything from scratch, draw background boxes, don't see frames.
    Thanks everyone..
    Jack E.

    Welcome to the Apple Discussions. No you can't copy the code form a site and use it in an iWeb page. To use frames you would use an HTML snippet and this code:
    <IFRAME SRC = "URL OF PAGE YOU WANT TO FRAME" WIDTH="XXXpx" HEIGHT="XXpx" FRAMEBORDER="0" --if "0" no border, otherwise "1" with border MARGINWIDTH ="0px" MARGINHEIGHT="0px" SCROLLING="no" --"no" no scrolling bar, "yes" show always, "auto" showed when need > Your browser does not support IFRAME </IFRAME>
    You can get more info at this site:iFrame code.
    I've creates a demo site which describes many of the features and tricks I've learned from this forum. This iWeb FAQ site is a wealth of information on using iWeb and all of it's capabilities.
    OT

  • Save for the web seq

    I need to save for the web an animation of about 100 frames. The problem is the only way to do that seems to be saving the file as a gif but I need to keep them frame by frame. I was wondering if there is a way to save for the web the entire sequence and keep it as a jpg or png.
    Tx

    Simply render the animation to whatever format you find suitable using File --> Render Video, then convert the result using batch processing.
    Mylenium

  • Published a site in iweb but looks different in the web browser

    Hi,
    I have published a site in iWeb but it looks different when viewed in the web browser having published a few times.
    The pictures have small frames around which display perfectly i niweb but do not show in browser?
    The navigation menu is all showing in iweb but again not showing in the web browser?
    Not sure what I am doing wrong? I have tried to publish a few times.. checked that all the tick boxes show 'display navigation menu' etc?
    Thanks
    Toni

    Since you do not provide real varifiable, factual information I searched for :
    http://www.google.com/search?q=toni+darcy%27s+Products
    Is this you?
    http://www.tonidarcy.co.uk/toni_darcy_photographer/toni_darcy._photographer._wel come..html
    I noticed on the Pricing page that I cannot click the Gallery link. Something covering it?
    Other pages have similar behaviour.
    And there's no link for the home page. Perhaps you're hiding it.
    And see if you can use a shorter, and different, Sitename. It is clear who you are. And just welcome is enough.
    And empty the browser cache.

Maybe you are looking for

  • Trouble syncing and updating to iOS 4.3

    I have an iPhone 3GS. When I got to update to iOS 4.3 from the latest 4.2 update I either get am error saying that the file was corrupt or sometimes I get an error saying that my firmware is not compatible. Also, when I just try to sync to iTunes I g

  • Frontrow ignores iTunes EQ settings??

    Movies which I have in iTunes seem unaffected by the iTunes equalizer... meaning that I can't choose how they sound in Frontrow either. Does anyone else find this or know a way to change sound settings for movies in Frontrow/iTunes? Pulling my hair o

  • MP4 Videos in PE10

    I am using PE10 and have several mp4 video files that I would like to put onto a standard dvd to play on television dvd player (not blu-ray)...I would like to put several files together and edit them to make a menu with scene selections...can anyone

  • Enhance Extractor - LUW

    Hi Masters, I have the following situation: Regarding users needs, I had to add some new fields to a standard extractor. So I first set this extractor as "Inactive" (LBWE), than I erased it´s entry from RSA7, and after this I erased all LUW´s. Than,

  • Basic Question Solaris SPARC required for 10.2 upgrade from 9.2

    We are running Oracle 9.2 releases on Windows and Solaris SPARC 2.6 SUN 450 Dual UltraSparc II Where can I find system and OS requirements for Solaris for Oracle 10.2 database? I have looked in many different install guides and they all reference Sol