Showing splash screen while loading...

Hi,
I'd like to show a splash screen while the application is loading (setting up hibernate session etc.) - here is my main method which is loading hibernate and starting up the application:
        public static void main(String[] args) {
          java.awt.EventQueue.invokeLater(new Runnable() {
               public void run() {
                    MdbCheckerApp app = new MdbCheckerApp();
                    app.initializeLookAndFeel();
                    // preload Hibernate session
                    HibernateUtil.getSession();
                    // login successful
                    // if (app.login()) {
                    new MdbChecker().setVisible(true);
          HibernateUtil.closeSession();
     }How do I show my splash screen while simultaneously loading the hibernate session?
Thanks in advance
- Stephan

However, I'm not quite sure on how to proceed...
    public static void main(String args[]) {
        final TestForm tf = new TestForm();
        tf.showSplash();
        tf.runInitializer(new Runnable() {
            public void run() {
                try {
                    Thread.currentThread().sleep(3000);
                } catch (Exception e) {}
                tf.hideSplash();
    public void runInitializer(Runnable r) {
        Thread t = new Thread(r);
        t.start();
    public SplashScreen showSplash() {
        // if a splash window was already created...
        if(splash != null) {
            // if it's showing, leave it; else null it
            if(splash.isShowing()) {
                return splash;
            } else {
                splash = null;
        splash = new SplashScreen(null, true);
        centerComponent(splash);
        splash.show();
        return splash;
    public void hideSplash() {
        if (splash != null) {
            splash.dispose();
            splash = null;
    }I'm wondering why I do only see the splash screen (I was hoping that the splash screen would be disappearing after 3 seconds).
Here is the code of my splash screen:
public class SplashScreen extends javax.swing.JDialog {
    /** Creates new form SplashScreen */
    public SplashScreen(java.awt.Frame parent, boolean modal) {
        super(parent, modal);
        initComponents();
        setLocationRelativeTo(null);
    /** This method is called from within the constructor to
     * initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is
     * always regenerated by the Form Editor.
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
    private void initComponents() {
        jPanel1 = new javax.swing.JPanel();
        jLabel1 = new javax.swing.JLabel();
        jProgressBar1 = new javax.swing.JProgressBar();
        setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
        setTitle(java.util.ResourceBundle.getBundle("com/gigatronik/mdbchecker/ui/bundle/MdbCheckerMessages").getString("splashscreen.title"));
        setModal(true);
        setUndecorated(true);
        jPanel1.setBorder(javax.swing.BorderFactory.createEtchedBorder());
        jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/gigatronik/mdbchecker/ui/resources/gigatronik_4c_300.jpg")));
        jProgressBar1.setIndeterminate(true);
        org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1);
        jPanel1.setLayout(jPanel1Layout);
        jPanel1Layout.setHorizontalGroup(
            jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(jPanel1Layout.createSequentialGroup()
                .addContainerGap()
                .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.TRAILING, false)
                    .add(org.jdesktop.layout.GroupLayout.LEADING, jProgressBar1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .add(org.jdesktop.layout.GroupLayout.LEADING, jLabel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
                .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
        jPanel1Layout.setVerticalGroup(
            jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(jPanel1Layout.createSequentialGroup()
                .addContainerGap()
                .add(jLabel1)
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                .add(jProgressBar1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
        org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(layout.createSequentialGroup()
                .addContainerGap()
                .add(jPanel1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
        layout.setVerticalGroup(
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(layout.createSequentialGroup()
                .addContainerGap()
                .add(jPanel1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
        pack();
    }// </editor-fold>                       
     * @param args the command line arguments
    public static void main(String args[]) {
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new SplashScreen(new javax.swing.JFrame(), true).setVisible(true);
    // Variables declaration - do not modify                    
    private javax.swing.JLabel jLabel1;
    private javax.swing.JPanel jPanel1;
    private javax.swing.JProgressBar jProgressBar1;
    // End of variables declaration                  
}Any help would be greatly appreciated.
- Stephan

Similar Messages

  • Display splash screen while downloading applet jar file

    I've tried to search the forums, but most results I get are how to display a splash screen while the classes are loading. Unfortunately, the classes do not begin loading until after the jar file has been downloaded. How does one go about showing as splash screen as the jar file containing the classes is downloaded?
    Thanks for the help!

    "Java 5 provides a capability in this area"- Unfortunately, due to circumstances out of our control we are stuck on java 1.4.x.
    "How you do that is your problem."- I'm so glad I can count on the helpful java community. Thanks.
    Since it appears that "warnerja" is discusted by my question (mabye had a bad day) and is leaving me out in the cold, does anyone have any ideas on how I can implement her/his suggestion. I can break my jar file into multiple seperate jars and as each one loads I can update a progress bar. Unfortunately, I do not know where to begin with this code wise nor do I know if this is the best solution to this problem. I would think this to be a common problem.
    Thanks for your help!

  • Splash screen while LabVIEW is loading

    Is there a way to create a splash screen that is displayed while LabVIEW is being called from DIAdem? It takes approx. 15-20 sec for LabVIEW to load and start my program. I would like a screen telling the user to wait and have some sort of animatin on the screen so the sees the compouter has not locked up. Once LV opens I need to close this screen or at least hide it behind the LV front panel until my VBS can close the panel.
    Is this possible?
    AJL

    Hi AJL,
    I haven't done this before, but give this a try, it should work. Create a SUDialog with the background of the splashscreen you want. Then call the LV code through ActiveX from the SUDialog. When the LabVIEW VI starts up, have it create an empty file on pre-specified path. The SUDialog will poll that file path until it exists, then execute WndShow("SHELL", "MINIMIZE").
    I'm pretty sure if you try to communicate back to DIAdem from LabVIEW that the SUDialog will have reserved DIAdem's OLE Automation Server, so that any LabVIEW commands won't execute until after the SUDialog ends. That's why the low-tech file polling.
    Something like that ought to work,
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Desktop Manager Will not Load. Hangs on splash screen when loading, then crashes

    My desktop manager is not loading, and hangs whenever it is attempted to load. I have done a clean uninstall, removed rim registry entries, and did a fresh download and install 3 times with full shut downs between each attempt. I am running Windows 7 service pack 1 with an HP Laptop. It is an HP Pavilion dv6 Notebook PC. Product Number LY080UA. I hope that is enough information, but I will give more if asked and informed how to gather such info.
    When I right click on the Desktop Manager Icon, I choose to run as Admin. Once it loads the splash screen shows. After a little bit (4-6 seconds) a small Icon appears in my systems tab at the bottom right of my screen. This stays for a little while and then goes away. After this happens the Splash screen hangs, and get a black border around it. If I click on the Splash screen it grey out and says not responding, prompting windows to ask me if I want to wait for the program or close. If I choose to wait, it will sit there and do nothing. If I close it will prompt windows to "look for an error" but has not yet been able to return an answer.
    When I log into safe mode, Desktop Manager loads, but does not work well as only a bare bones set of drivers are enabled. If I turn off all but the non-essential services off using services.msc it will load, but again the services needed for it to run and the services for windows to be fully functional are not on at all.
    I have attempted to turn off all but the Desktop manager in the start up, using msconfig, but that does not help either.
    I am at my wits end here, and would really like some help with this. It loads up (desktop manager) on my Desktop, but I am unable to log that mammoth box around with me while I travel.
    Thank you for your time and efforts, I will be very grateful for any and all help.

    I'm having the exact same problem here! I'm running Windows 7 Ultimate SP1 x64. Please help! This was posted a month ago.

  • Reg. Variable screen while loading bookmark

    HI Friends,
    We are working with WAD in SAP BI 7.01 ( With SAPKW70105 patch).
    We are having some issue with variable screen display while loading bookamark.
    Actually user wanted to show the Variable screen while running report, So we explicity switched on the "Display Variable" in web template
    Even we have the option called "While loading Bookmark" in webtemplate.
    We have given the option as HIDE for "while loading bookmark. This option is working fine, if the report doesnt have the mandatory fields in the selection screen. At that time if we create bookmark and click on created bookmark means.. it will show us the report without showing the variable screen (Selection screen).
    But if the report is having mandatory fields in the selection screen and if we create the bookmark, click on the same.. it will prompt the selection screen (which we dont want to ).
    So can anyone please help on this.
    Thanks in advance.
    Thanks & Regards,
    Ravish

    HI Friend
    Thank you for the support.
    We are abe to solve the issue by adding the JAVA patch.
    Thanking you again

  • Show splash screen for x amount of seconds

    Is there a better way to show a splash screen for x seconds than putting it in a while loop? It just seems so inefficiant and it uses a lot of processing power. This is what I have: long startTime = System.currentTimeMillis();
    while(System.getCurrentTimeMillis() <= startTime + 5000) {
        //wait
    mainPage.setVisible(true);

    javax.swing.Timer.
    Also:
    http://java.sun.com/javase/6/docs/api/java/awt/SplashS
    creen.htmlThank you, I knew there had to be a better way.

  • Win XP Hangs after Splash Screen (PointSec Loaded)

    I have a lenovo t400 laptop, that has Pointsec encryption (6.1.3) ,and WinXP loaded on it.
    I ran the Think Vantage Lenovo update tool which downloaded and installed a number of updates - as I hadn't run it for ages.
    Now when I try to start the computer it hangs after the XP splash screen is displayed. The screen simply goes black.
    I have tried the various Safe Mode options (include VGA Mode, and start with last successful configuration) without luck. They also fail to boot.
    The flow is:
    Power On, PointSec Authentication Screen, Win XP Splash screen, then a black screen
    I have successfully got into the system using UBCD4Win with the pointsec plugin loaded, this loads a WinPE type environment via a USB stick and allows me to access the C: drive unencrypted (as I have authenticated with Pointsec).
    I'm really stuck for ideas as to which of the update is causing the problem, and would love to hear some suggestions on how to fix this situation.
    Additional Info:
    The last few lines in ntbtlog.txt is:
    Did not load driver Direct Parallel
    Did not load driver SM bios service
    Did not load driver SM bus service
    Loaded driver \SystemRoot\System32\Drivers\Cdfs.SYS
    Looking in:
    c:\Windows\$NtServicePackUninstall$
    it looks like Service Pack 3 has been installed:
    The file: spuninst\spuninst,inf shows:
    NtServicePackVersionText = "Service Pack 3"
    NtServicePackPreviousVersionText = "Service Pack 2"
    Solved!
    Go to Solution.

    Fixed!!!
    The problem was the lenovo updates (most likely culprit being the video driver I presume).
    Using UBCD4Win with the pointsec plugin I was able to
    * get  access to the decrypted c: drive
    * Manually rolled back the updates to c:\windows\system32 and c:\windows\system32\drivers
    Original files were found in places like: c:\windows\system32\reinstallbackups\008\DriverFiles
    * Finally I had to roll back the registry updates that the updates did. UBCD4Win provides a tool to do this:  Registry Restore Wizard. It basically just looks in the System Restore Directory c:\System Volume Information and lists all the available Restore Points (thankfully the Lenovo updates mark a restore point before they run). You can also do this manually using the following instructions:
    http://hypography.com/forums/tutorials-and-how-tos/17193-xp-recovery-instructions-for-ubcd4win.html
    This done the system booted successfully.
    I most definitely will be staying clear of pressing the big blue button from now on. That was a real nightmare to fix.

  • T450s startup takes 35 seconds before showing splash screen. (11 sec wake-up)

    The follwing are my problems:1. When starting up the machine, it takes about 35 seconds before the first screen activity appears (Lenovo splash screen). After that it boots quite normal.
    2. When waking out of sleep mode it takes 11 seconds before I see the power led stopping to "breath" and the screen wakes up.
    It feels like this is a hardware/bios related issue, as (so far I know) hdd/ssd is only accessed after the bios has loaded and has finished its hardware checks. When sticking in a bootable usb it only starts flickering after the bios had loaded on screen.
    Question:
    Does anyone has an idea why my laptop is waiting so long to boot or to wake up? I don't mind waiting a bit, but waiting for 35 seconds + the normal boot time is really annoying. Specially with the fact that the laptop doesn't show any sign of live for 35 seconds after briefly lighting up the keyboard backlights. The wake-up delay is also very annoying since even my 7 year old BSOD laptop wakes-up faster, and I'm using sleep mode a lot.
    Some origins that I'm thinking about:
    - Hardware check during initial hardware startup does not yet recognize a dedicated GPU card. (POST: Power On Self Test)
    - I don't think this is a problem with my software since the problems occurs before reading any media.
    Things I tryed already:
    - Reset bios.
    - Start in legacy mode.
    - Bios update
    - rebuilding MBR (although I don't expect this to be the problem.)
    - Refreshing windows installation although I don't expect this to be the problem.)
    This problem was already at the beginning (with origenal hardware):
    From the first time I started the laptop (so even with the HDD) I noticed it took quite long to start. I remember pressing the ON/OFF button multiple times and thinking I did something wrong, when suddenly the "Lenovo" splash screen appeared.
    I hope someone can help me!

    My problems have been solved! An engineer contacted me that they have recieved a spare mainboard and they wanted to make an appointment. I gave them the adress where I worked the next day since I'm very mobile, and the next day an engineer came by. He seemed like a skilled IBM engineer and tested my machine and came to the same conclusion as me. He then did a few tests to see if the problem was caused by something else then the mainboard but ended by replacing my mainboard with good care. After the replacement the the boot and wake-up time was normal like it should be. I'm very pleased by the service Lenovo ThinkPad has given me. I need to add that when I called for support I got someone on the line that could not really understand me, neighter dutch or english. But that was also duo a bad connection it seemed.. But after that call I did not really expect this would come to a good end. I was then really suppriced that 5 day's later a dutch engineer manager called me to make a appointment. 

  • My app only shows splash screen...

    Hello,
    my application only shows the splash screen and then,,, nothing....
    my app: [http://freiheit.hostse.com/sir.html]
    I've already googled and I didn't find anything :(
    Thanks for your help in advance

    Hi,
    Can you please tell me what was the exact problem area. I am facing same problem with my application. I can run this application successfullly on other machines but on my machine not able to get screen.

  • Splash screen image loads too slowly

    I am displaying a splash screen (JWindow with just a JLabel containing an ImageIcon) The problem is that a blank (sold gray) window pops up, but the image isn't displayed immediately. so sometimes the application opens (covering the splash screen) before the image is shown.
    MediaTracker doesn't seem to help, it seems to return from waitForID() immediately.

    Thanks for the replies...
    I wasn't sure how a loader class would know if the image was loaded, since media tracker seemed to think that it was already loaded.
    I hadn't considered the AWT since sun usually pushes swing and "lightweight" components. but a quick search found an AWT splash screen implementation that solved my problem. In the code they use media tracker also.
    below is a link to the AWT splash screen implementation incase others are interested:
    http://developer.java.sun.com/developer/qow/archive/24/

  • Splash page while loading video

    I've a site that uses flash video (swf) heavily. the video
    stutters when beginning, I'd like to delay the start just a few
    seconds - either by using a splash page that loads the video or
    shows JUST a few seconds of 'loading'. The only option I've seen
    displays the 'loading' throughout the entire loading of the video,
    which is unnecessary. I used 'video2swf' to create the video - it's
    around 50 megs or so.

    Yes it is. How about this? Only thing is that it keeps saying that the finishLaunching is undeclared.
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    // Add the view controller's view to the window and display.
    self.navController = [[UINavigationController alloc] initWithRootViewController:viewController];
    navController.toolbar.barStyle = UIBarStyleBlackOpaque;
    [window addSubview:navController.view];
    [window makeKeyAndVisible];
    //This call returns immediately, then waits until the next time
    //through the event loop to invoke the method.
    [self performSelector: finishLaunching withObject: nil afterDelay: 0];
    return YES;
    - (void) finishLaunching;
    if ([[Database shared] needImport])
    [[Database shared] import];
    I tried that in my appdelegate.m file.

  • Blank screens while loading .swf videos

    I have several .swf movies on a website I am designing. The
    smaller movies load fairly quickly but the larger movies just pop
    up a white screen until the movie loads and it can take up to 7
    seconds. I would like something like a bar or an animated
    "Loading..." to pop up until the movie loads. Anyone have any ideas
    on the best way to go about this? Thanks!

    I have the exact same question. I have a keynote presentation
    which I have converted to an .swf file and want something to appear
    on the screen while it is loading. It doesn't even need to be
    animated - even ome text would do. Help please!!!

  • Show busy indicator while loading chart

    Hello Experts,
    I have created a chart and while loading chart, the charts shows nodata
    Instead of showing nodata I want it to show busy indicator till the chart is loaded
    I tried using oBarChart.setNoData(oBarChart.setBusy(true)); - it works but even after loading chart the indicator is still visible.
    How can I achieve this?
    Similarly how can I show busy indicator for a table until table data is loaded?
    Regards,
    Rohit

    Hi,
    use odatamodel methods attachRequestSent, attachRequestCompleted and attachRequestFailed for starting and stoping busy indicator. refer more discussion in Several question regarding OData and Tables
    Regards,
    Chandra

  • How to show processing screen while the submitted request is in progress?

    Hi SIM Experts,
    I have couple of requirements in SIM7.1.1.9, i.e.
    1. Whenever i submit a request, i need to show a *'Processing Screen'* (i.e. form indicating that my request is in progress) when my request is in progress.
    2. Once my request is completed, i need to switch back from *'Processing Screen'* to form from where request has been submitted.
    For Example:
    1. When i click on *'Search'* with some search criteria in say *'Search Users Form'*, system will take some time to fetch the search results. During this processing time, i need to show a *'Processing Screen'* to the end user.
    2. Once *'Search Users Form'* is ready with its search results, i need to switch back from *'Processing Screen'* to *'Search Users Form'*.
    I feel challenge is keeping track on the submitted request and switching back to the requested page.
    FYI, i was trying to implement this using SIM7.1.1.9 Workflows & Forms and couldn't able to get a solution.
    Any help makes my tasks to move ahead. Thanks in advance.
    Mahi

    Hi,
    Did you managed to solve the issue? I am into the same issue.
    The same question..Did you got any answer for this?
    How to use <div id='processing' --- --- ----> tag info in IDM Form?
    What I did so far is..
    I defined a js function and copied to /includes folder and updated commonScripts.jsp to include the js function which I added.The following is the js function I am using (I googled it and got this function)
    +function showLoad() {+
    var num = 0;
    var tim;
    var txt = "Loading, please wait ........";
    document.getElementById("a").innerHTML = txt;
    num +;+
    +if (num == 30) {  // erase after 5 seconds, adjust to suit+
    document.getElementById("a").style.display="none";
    window.clearTimeout(tim);
    +}+
    +else {+
    tim = window.setTimeout("showLoad()", 1000);
    +}+
    +}+
    On the Button OnClick property I mentioned showLoad() function, but for some reason I am getting the following error..
    getElementById() is null or not an object
    I think the getElementById() is expecting a required parameter but I am not sure how we can pass that ID from the IdM form.
    Please let us know how did you resolved the issue.
    Thanks in advance.

  • Blue Screen while loading desktop

    HP Pavillion Series P7-1003w
    Windows 7 Home Premium
    About 2 days ago I've started having an issue with my comp (HP Desktop, 8gb Ram, x4 Processor, ATI Video Card), It started when I noticed my Windows Firewall had shut down and would not restart, immediately I assumed a virus/rootkit had sneaked past my Avast! Anti-virus. So I began running scans. My first scan (Full system scan) came back with 38 infected files inside windows temp files folder, all were malware except for 2 Trojan, Avast immediately deleted these files and I restarted comp to see if I could restart the firewall.
    Now about 10 seconds after loading the desktop I get the BSOD. I restarted and ran in safe mode to see if I could asses the issue but nothing worked, I tried running memory diagnostics, system repair (No recovery points found), startup repair, and even ran a CHKDSK but everything came back as fine. So I did a full system restore twice using HP's Built in partition recovery. The computer was fine immediately after restore, but I noticed every time I tried to right-click on something explorer would crash and then restart. The only thing I can think of is a bad video card, but I'd like confirmation/Other options before I throw money at a new one.
    BCCode:   a
    BCP1:   0000000000000010
    BCP2:   0000000000000002
    BCP3:   0000000000000001
    BCP4  : FFFFF80002AF2285
    OS Version:   6_1_7601
    Service Pack:   1_0
    Product:   768_1
    Now its gotten to the point it wont even load Safe mode, the boot screen comes up but after a few seconds a small line of corruption appears at the top. I need a quick solution to this please, this computer needs to be running at 100% again before 6/11/13.
     Update: I just plugged in mouse, keyboard, and monitor to see if I could pull the product ID from the system properties before it crashed, it worked fine so I zipped up the dump file and plugged in the Ethernet to try and post a link to it here, but as soon as it became connected to the internet it blue screened again, I'm thinking the windows updater is to blame, even though its disabled.

     Hello Erose90,
    I see you’re stating your computer blue screens,is that correct? I will be happy to help you.
    I would like you to try and create a diagnostic disk, this disk can be run outside of the operating system giving the results more clarity.
    This link will show you how to create the disk and run the disk once it has finished. When you open the link scroll down to the sectioned headed “Creating the HP Vision Diagnostic Media”, from there follow the information it provides.
    Try to only have this program opened and running so it will lessen the chance of a possible blue screen during the process.
    Please respond back at your earliest convenience.
    Thanks
    Clicking the White Kudos star on the left is a way to say Thanks!
    Clicking the 'Accept as Solution' button is a way to let others know which steps helped solve the problem!

Maybe you are looking for

  • How do I separate the inboxes on my 2 email accounts.

    I have office and personal accounts on my Iphone. under the old version of the operating system, I could keep them completely separate. Now, my home emaill is merged in the inbox...the deleted items are separated into two accounts, however. If it isn

  • Mobile data- not displaying option for email in settings - how do I get it to work?

    Hi In my settings I don't have the option under mobile data to add email, the only options are FaceTime and passbook-  so I'm unable To use 3G to access mail- does anyone know how I can fix this? Many thanks

  • Need Technical flow of switch document creation

    Hi Experts, I am new to IS U and IS U CRM. I want to write a technical flow for the below requirement. When Quotation is created in CRM an contract is automatically created and switch document is generated and replicated in IS U System. How this swit

  • N8 Symbian Belle Product Codes

    I have had Nokia phones for twenty odd years , this has to be one of the most frustrating things I have come across. My current phone an N8 PC 059D012, it is not tied to an operator but am stuck with waiting for ages to upgrade to Belle because my pr

  • Recipe data creation from MM

    What is the method of creating substances in RM from the MM data ? The materials already exist in the SAP system - is there a tool / report to create Recipe substances from the Materials. Thanks and best regards Vishal