Is there any way to fill long loading gap between splash screen and application home page?

Recently I have developed my first MAF app. This app is with basic design with some page re-directions, no web services/java script is used but when I start app first time then there is a long white gap after splash screen till loading application home page. Is there any way to eliminate this gap?

User, tell us your jdev version, please!
Check the hints given in this thread Increase Adf Application Load Time
When a page loads all iterators are executed whihc can take some time if you have many of them on the page retrieving many rows. So what is on your home page?
Timo

Similar Messages

  • Is there any way to spy the data communicating between the GPIB and the PC.

    HI
    I have a device communicating with my PC using IEEE 488 GPIB card. Do we have any way to spy the data exchanged by the device and the PC running a different application.
    I am trying to program an application that needs to gather data from a HP 54602A - 150 MHz - 4 Channel oscilloscope using a IEEE 488 add-on card. I am able to talk to the device and request the device number through MAX. I need to know the other commands to the oscilloscope. Can any one help me in this regard.
    With Regards
    S.Gopal

    Launch NI Spy (Start >> Programs >> National Instruments >> NI Spy). You may want to configure it to capture 64k of data instead of 64 bytes since the strings sent to the device may be larger than 64 bytes.
    Start capturing with NI Spy and then run the application. All of the calls made to the device will be captured in NI Spy. You can then look at the data buffers to determine what strings are being sent to your device.

  • I just bought a new Macbook Pro and loaded all my info from My old Macbook...now i can't remember for the life of me my Admin Password 9which i created 3 years ago)...is there ANY WAY to bypass this on my new Macbook Pro and begin again...?

    i just bought a new Macbook Pro and loaded all my info from My old Macbook...now i can't remember for the life of me my Admin Password (which i created 3 years ago)...is there ANY WAY to bypass this on my new Macbook Pro and begin again...?

    I assume that you don't have the installation discs, so:
    1. Reboot
    2. Hold command + s key down after you hear the chime.
    3. When you get a text prompt enter in these terminal commands to create a brand new admin account (hitting return after each line):
    (Type these commands very carefully)
    mount -uw /
    rm /var/db/.AppleSetupDone
    shutdown -h now
    4. You will go through the setup process again, create a new admin account, login to it and then change your existing account password or whatever else you need to do. You can delete the account you made in this process, or not.

  • Is there any way to resize already loaded preview when widget is resize?

    Is there any way to resize already loaded previews when panel widget is resize? <br />Actually, I have already a lot of preview images loaded on my preview panel's widget. when my preview panel is resize, is there any way to resize already loaded preview images without creating new preview images. <br /><br />ErrorCode CMPSImageListDataView::CreatePreview( const IDFile& previewFile, uint32 width, uint32 height, uint8 backGrey ) <br />{ <br />InterfacePtr<IPMStream> fileStream( StreamUtil::CreateFileStreamRead(previewFile) ); <br />if(!fileStream ) return kFailure; <br /><br />InterfacePtr<IK2ServiceRegistry> serviceRegistry(gSession, UseDefaultIID()); <br />if(!serviceRegistry) return kFailure; <br /><br />int numHandlers = serviceRegistry->GetServiceProviderCount(kImportProviderService); <br />for (int i = 0; i < numHandlers; i++) { InterfacePtr<IK2ServiceProvider> provider( serviceRegistry->QueryNthServiceProvider(kImportProviderService, i)); <br />InterfacePtr<IImportProvider> importProvider(provider, IID_IIMPORTPROVIDER); <br /><br />if (importProvider && importProvider->CanImportThisStream(fileStream) == IImportProvider::kFullImport) <br />{ <br />InterfacePtr<IImportPreview> preview(importProvider, IID_IIMPORTPREVIEW); <br />if(preview) <br />{ <br />bool16 reallocateNeeded = kTrue; <br />if( (this->m_fCachedImHeight == height) && (this->m_fCachedImWidth == width)) <br />reallocateNeeded = kFalse; <br /><br />if(reallocateNeeded) <br />{ <br />this->DeleteBuffers(); <br />m_fpCurAGMImage = new AGMImageRecord; <br />memset (m_fpCurAGMImage, 0, sizeof(AGMImageRecord)); <br />m_fpCurAGMImage->bounds.xMin = 0; <br />m_fpCurAGMImage->bounds.yMin = 0; <br />m_fpCurAGMImage->bounds.xMax = width; <br />m_fpCurAGMImage->bounds.yMax = height; <br />m_fpCurAGMImage->byteWidth = 3*width; <br />m_fpCurAGMImage->colorSpace = kAGMCsRGB; <br />m_fpCurAGMImage->bitsPerPixel = 24; <br />m_fpCurAGMImage->decodeArray = 0; <br />m_fpCurAGMImage->colorTab.numColors = 0; <br />m_fpCurAGMImage->colorTab.theColors = nil; <br /><br />this->m_fDataBuffer = new uint8[((m_fpCurAGMImage->byteWidth) * height)]; <br />ASSERT(this->m_fDataBuffer); <br />m_fpCurAGMImage->baseAddr = static_cast<void *>(this->m_fDataBuffer); <br /><br />this->m_fCachedImHeight = height; <br />this->m_fCachedImWidth = width; <br />} <br /><br />::memset(m_fpCurAGMImage->baseAddr, backGrey, (m_fpCurAGMImage->byteWidth) * height); <br /><br />if (m_fpCurAGMImage->baseAddr) <br />{ <br />AcquireWaitCursor busyCursor; <br />preview->Create24bitRGBPreview( (uint8*)m_fpCurAGMImage->baseAddr, width, height, fileStream, kTrue ); <br />m_fCurImageSysFile = previewFile; <br /><br />return kSuccess; <br />} <br />} <br />} <br />fileStream->Seek(0,kSeekFromStart); <br />} <br />return kFailure; <br />}

    Really Thanks!! T Schneider<br />How can I do that matrix?<br />Would you mind....?<br /><br />                    <br />PMReal imageWidth = ( m_fpCurAGMImage->bounds.xMax - m_fpCurAGMImage->bounds.xMin);<br />                    <br />PMReal imageHeight = ( m_fpCurAGMImage->bounds.yMax - m_fpCurAGMImage->bounds.yMin);<br />                    <br />PMReal xOffset = frame.GetHCenter() - imageWidth/2;<br />PMReal yOffset = frame.GetVCenter() - imageHeight/2;<br /><br />gPort->translate(xOffset, yOffset);<br />               <br />InterfacePtr<ITransform> iTransform(this, IID_ITRANSFORM);<br />PMMatrix theMatrix = iTransform->GetInnerToParentMatrix();<br /><br />.??????????????????????????????.<br /><br />ASSERT(m_fpCurAGMImage);<br />gPort->image(m_fpCurAGMImage, theMatrix, 0);

  • Is ther any way of filling credentials in Windows logon using script?

    Hello,
    Is there any way to fill in login and password at windows logon using a script (that would be started via psexec)? Bat would be great, but any other is ok too. Nothing more, no mapping. Just logon.
    I've spent a few days searching for this info, and haven't found any usefull info. Anyone tried such thing?
    Cheers,
    K.
    PS. Sorry if I'm writing in the wrong section. Not shure where this topic should go.

    There is no way to do this in Windows, Unix or any other system.
    You can set a Windows account to "auto-logon" but only one account can be set per machine.
    ¯\_(ツ)_/¯

  • Is there any way to sync 20 iPads to the same account and keep their folders?

    Is there any way to sync 20 iPads to the same account and keep their folders?

    We have 2200 student iPads on our school campus. When starting from scratch they all receive one identical image and then are renamed according to their property tag (manually ). Students are then checked out their device for the school year and often move their apps around into folders. I often have some come back in to be synced, updated, etc. and I do mid-year updates to apps. As long as their names are unique I have no issues with them retaining folders when they are resented late. So basically as long as you don't mind doing the set up to each one of the 20 the first time you sync them, you can update them whenever you'd like, adding and updating apps, and you can retain folders.
    And of course there are all sorts of other options with Configurator and other MDMs. 

  • Is there any way to know the T-code from the screen?

    Hi friemds,
    it s a general question. but I found relavant for posting here.
    I saw our group friens giving some T-codes for spro functions (eg: SNRO, M/06), bbut how to know the transaction from path. i.e. If I go to condition types screen, there I could not see any transaction. is there any way to know the T-code from the screen?

    Hi,
    Listed here are the various ways you can find the list of transaction codes and their usage:
    Use transaction SE11 - ABAP Dictionary:
    Fill in the Database table name and click the Display button.
    - TSTC   table will contain all the Tcodes and
    - TSTCT table will contain all the Tcodes with Texts.
    Once you entered the screen, click in Top Menu - Utilities - Table contents - Display
    If you want to display all the transaction code (total - 57,048) you have to change the Fields: Maximum number of hits to 99999 (default 500).
    or
    Simply goto transaction SM01, although this tcode is to Lock/Unlock any transaction code, you can also view all the tcode available in the R/3 system from here.
    or
    Goto transaction SE93
    There are two ways where you can find the list of transaction codes in SE93.
    Method 1:
    You must be familiar with the starting characters strings for each of the R/3 application modules.
    Assuming you know that most Materials Management transaction codes start with MM.
    In the Fields: Transaction code, type in MM* and press the function key F4
    The list of transaction code starting with MM will be displayed.
    Method 2:
    On the Top Menu, click Utilities - Find - Execute and the first 500 transaction will be display.
    If want to display all the tcodes, make sure you remembered to change the Fields: Maximum no. of hits right at the bottom of the screen.
    I know a particular T Code and can enter and work on it.  How do I know what is the menu path for that T Code?
    Enter Search_SAP_Menu in the command box and when the pop box appears enter, the Tcode and it will give the nodes and menu path. 
    This is helpful only in case of SAP Menu not in case of SPRO - ie IMG.....
    Reward if Helpful,
    Regards,
    Archit.

  • Is there any way to have a COMPLETE list of all samples and loops ( Logic 8

    I'm sure it's been posted previously, but anyway, I'm looking to buy new Apple Loops libraries and I have faced the fact , that many of the sounds and loops produced by third parties manufacturers have been already included in Logic installation discs.
    I have a list of Apple Loops DVD's that have been included with Logic somewhere, the problem is, Apple didn't post ( I believe) the credits of all 3rd party manufacturers that have produced these libraries that are included with Logic or Garage band. Is there any way to have a COMPLETE list of all samples and loops that are included with Apple DAW's so I wouldn't duplicate anything ? I'm pretty much positive that Apple had other companies to sound design and sample all libraries for them, so is there also a way to have a list of those manufacturers? Again, the objection is to start upgrading the sound library without any possible duplication?
    Thanks in advance!

    Chris, I certainly don't mind additional questions and postings.
    I believe there are many issues with Apple Loops and Logic that need to be resolved and people need to be aware of that. Unfortunately, in opposite to the old "german" version of Logic , there's no lifetime tech support, you can't even call and ask the question after 60 days , which isn't right for a professional software of this level, especially considering the fact that many things still remain vague in Logic even for developers and tech support people!( believe me, I've called and asked!)
    Issues like that need to be resolved over the phone with the company, period!
    One thing I also learned over the years as a Mac OSX user, if something doesn't work, don't mess with it. Delete your drive and re-install everything. This is very frustrating , I know, but unfortunately this is the only way to deal with OSX issues, if you got a problem with your system, don't try to fix it. It's never gonna be the same again. I know , it's off the topic a little bit, but if your content is missing from the system files, before installing your new Logic, back up your important files, wipe up your drive and clean install Mac OSX , run updates and then install the Logic. Most likely , everything will be in it's place, at least 90% or more. I gave up trying to make two system in my house to be compatible 100% , but it's OK if they're 90% or more identical. I spent enormous amount of time trying to find out what's missing and where, I visited most of the forums and there's no clean answer.
    Message was edited by: Moderator

  • I have an iPod whose contents I want to transfer to a newer Ipod.  At some stage I lost the music files from my library.  Is there any way to get them back from the older iPod and put them onto the newer one again?  I stupidly synced the wrong one.

    I have an iPod whose contents I want to transfer to a newer Ipod.  At some stage when I thought I was syncing correctly I wasn't so I lost the music files from my library.  Is there any way to get them back from the older iPod and put them onto the newer one again? 

    Have you not got a backup of your content on, for example, external drives ? If not then you could have a look to see if any of the utilities mentioned in this old post still exist and work : https://discussions.apple.com/message/11014893?messageID=11014893#11014893

  • After getting a malware, my Firefox stopped opening. Is there any way to restore it without losing my passwords, settings, and especially favorite?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/934304]]</blockquote>
    Recently my computer was infected by a malware that deleted some DLLs and damaged Firefox, Opera and Google programs.
    The other two browsers I reinstalled without any problems. But Firefox is my primary browser and I'm afraid of losing all my information.
    Is there any way to restore it without losing my passwords, settings, and especially favorite?

    cor-el posted a reply to your question here: https://support.mozilla.org/en-US/questions/934304

  • I just bought a new laptop because my old one died.  is there any way to sync my phone with the new machine and not lose all my data?

    i just bought a new laptop because my old one died.  is there any way to sync my phone with the new machine and not lose all my data?

    Copy everything from your backup copy of your old computer to your new one.
    Then sync.

  • Is there any way to delete text messages from the external screen of an LG EnV3?

    The internal screen of my phone doesn't work, so I've been texting from the external key pad. But my inbox has gotten full and I can't receive texts anymore. Is there any way to delete texts using only the external screen of the EnV3?

    It was awhile ago and I'm not totally sure, but I think this was discussed and the conclusion was that you can't delete texts using the external screen of the Env3. **Edit  (Found one thread: http://community.vzw.com/t5/Messaging-Text-Picture-IM-etc/No-option-to-delete-text-messages-from-front-of-LG-enV3/m-p/43042#M1684 )  It came up in one other thread that I could find and the solution was to use the internal, and similar steps were given - the only difference was using the OK for Menu and #2 for Messages, rather than the left soft key for Messages.  vWhatever works... 
    What you CAN do, is open the flip, left soft key (which is the Messages menu), and there are several options - these are the text messaging ones -
    1. New Message
    2. Inbox (#)
    3. Sent (#)
    4 Drafts (#)
    Press the right soft key (options) and your choices are:
    1.Erase Inbox
    2.Erase Sent
    3.Erase Drafts
    4.Erase All
    If you choose Erase All, then OK - it will erase all except unread messages, and locked messages. If you choose any of the numbers, then hit OK, it will erase ALL in that category, read or not, so I would choose Option 4 to erase all but the unread.
    HTH, and post back if you have further questions...

  • Is there any way to upload Tariff Code (with multiple XML files) from application server?

    Hi All,
    Is there any way to upload Tariff Code (with multiple XML files) from application server?. Its urgent.
    Regards,
    Jatin

    Hi Jatin,
    Yes, of course you can upload multiple files for tariff codes.
    This can be done by the below path:-
    SAP GTS Cockpit(tcode-/sapsll/menu_legal)-->Customs Management-->Classification-->Classification Master Data-->Upload Tariff Code Numbers from XML file(tocde- /SAPSLL/LLNS_UPL101).
    In the above area after browsing and choosing the first file, please select multiple check box to choose more files as well. Then you can further select your application server and upload all those files in one go.
    PS:- Although, we have an option to upload multiple such files but actually we should avoid multiple file uploads due to various reasons. Hence, please take utmost care during such procedure.
    Regards,
    Aman

  • Is there any way to export or save my Lightroom 5 presets and keywords/tags to an external storage drive prior to a program and data wipe due to a corrupt registry? Thanks.

    Is there any way to export or save my Lightroom 5 presets and keywords/tags to an external storage drive prior to a program and data wipe due to a corrupt registry? Thanks.

    Look at these instructions for how to move your LR to a new computer and copy things to a backup device until your computer is reformatted and you reinstall LR:
    http://www.lightroomqueen.com/how-move-lightroom-to-new-computer/

  • Is there any  way to incorporate elements from the 2006 namespace in an application that uses the 2

    I have a desktop app built in AIR using the 2009 namespace.  Is there any way to incorporate any of the of the xmlns:mx="http://www.adobe.com/2006/mxml" components into it? 
    Or better yet, since the AIR namespace is sort of layered on top of the spark namespace, is it possible to do the same with the 2006 namespace?

    xmlns:mx="library://ns.adobe.com/flex/mx"  is the spark mx address, which is completely different than the original 2006 mx library. 
    The thing is:  I love AIR, hate spark, loved the 2006 pre-spark functionality.  It is so much more convenient and user friendly.  Given the choice between having the display seperate from the  processing, or having it be convenient and easy  to work with, I choose the later option.
    For the most part it seems like the AIR api is like a layer on top of the spark - flex system..   I would like to be able to over lay the same AIR functionality on top of the the old system....
    Possible or no?

Maybe you are looking for

  • Can you create a website in DW then upload it to BC for commerce site?

    So confusing working from BC in DW. I originally thought that I could take my Muse or Dreamweaver websites, upgrade in order to get the ecommerce features, upload product spreadsheet, figure out how to populate the pages, and publish. Now it seems BC

  • Can i share my itunes account on multiple ipads?

    I have an original iPad and my wife just got a new iPad mini. Can we share the itunes account on both units? Oh, I have an iphone that also shares this account.

  • How to enable my ipod touch?

    my ipod touch had been stolen and return but now its disabled till so many minutes. how can i enable it if my computer where it was last connected to is now broken?

  • My iPod nano shuffle doesn't turn on.

    I lost my iPod nano about 1 or 2 months ago, I  found it today and it didn't turn on so I though it could be the battery, so I put it to charge but It doesn't turn on and I dont' even know if it's charging... Help!

  • System Copy documentation

    Hi, We have BI running on NW 2004s dual stack.  We have a requirement to refresh the QA system quarterly from production.  We are attempting to use following link ( SAP System Landscape Copy for SAP NetWeaver and mySAP Solutions) http://www.sdn.sap.c