Having trouble with nested JSplitPanes and am on a deadline...

My demo code is pasted below. I tried to make it as close to my app environment as possible without making it too huge, it's already long enough as it is. Anyway, this should run without any imports needed and as a standalone. The problem is this: start the program, click "Hide Middle Panel". Then move the remaining divider over to the left a ways. Now click on "Show Middle Panel". Then action listener resets the right divider that was moved back to it's original location (desired), but even though it is setting the left divider to .5 after the right divider has been moved, it still uses the old width to determine the placement, so the result is that the left divider is out of place.
Is this a bug in JSplitPane? Or is it something I am doing wrong?
In my application, I have also written a similar handling of a resize event, which basically just sets the left divider to .5 again. When the split panes are in their invalid state, if I do nothing but resize slightly, the split panes right themselves. However, calling the method that is handling the resize event after setting the divider locations does not make a difference, nor does calling revalidate or repaint.
Thanks in advance,
Tonya
public class TestNestedSplitPane extends javax.swing.JFrame {
    /** Creates new form testNestedSplitPane */
    private TestNestedSplitPane() {
    public static TestNestedSplitPane instance() {
        if (null == instance) {
            instance = new TestNestedSplitPane();
            instance.initComponents();
        return instance;
    private void initComponents() {
        java.awt.GridBagConstraints gridBagConstraints;
        splitPaneContainerPanel = new javax.swing.JPanel();
        splitPaneContainerPanel.setPreferredSize(new java.awt.Dimension(500, 280));
        leftPanel = new javax.swing.JPanel();
        leftPanel.setBackground(java.awt.Color.BLUE);
        middlePanel = new javax.swing.JPanel();
        middlePanel.setBackground(java.awt.Color.GREEN);
        rightPanel = new javax.swing.JPanel();
        rightPanel.setBackground(java.awt.Color.RED);
        innerSplitPane = new javax.swing.JSplitPane(javax.swing.JSplitPane.HORIZONTAL_SPLIT, true, leftPanel, middlePanel);
        outerSplitPane = new javax.swing.JSplitPane(javax.swing.JSplitPane.HORIZONTAL_SPLIT, true, innerSplitPane, rightPanel);
        innerSplitPane.setDividerLocation(((int)splitPaneContainerPanel.getPreferredSize().getWidth()) * 1/3);
        outerSplitPane.setDividerLocation(((int)splitPaneContainerPanel.getPreferredSize().getWidth()) * 2/3);
        buttonContainerPanel = new javax.swing.JPanel();
        hideButton = new javax.swing.JButton();
        hideButton.addActionListener(OutsideListener.instance());
        getContentPane().setLayout(new java.awt.GridBagLayout());
        addWindowListener(new java.awt.event.WindowAdapter() {
            public void windowClosing(java.awt.event.WindowEvent evt) {
                exitForm(evt);
        splitPaneContainerPanel.setLayout(new java.awt.BorderLayout());
        outerSplitPane.setContinuousLayout(true);
        outerSplitPane.setOneTouchExpandable(true);
        innerSplitPane.setContinuousLayout(true);
        innerSplitPane.setOneTouchExpandable(true);
        outerSplitPane.setLeftComponent(innerSplitPane);
        splitPaneContainerPanel.add(outerSplitPane, java.awt.BorderLayout.CENTER);
        gridBagConstraints = new java.awt.GridBagConstraints();
        gridBagConstraints.gridx = 0;
        gridBagConstraints.gridy = 0;
        gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
        gridBagConstraints.weightx = 1.0;
        gridBagConstraints.weighty = 1.0;
        getContentPane().add(splitPaneContainerPanel, gridBagConstraints);
        hideButton.setText("Hide Middle Panel");
        buttonContainerPanel.add(hideButton);
        java.awt.Toolkit tk = java.awt.Toolkit.getDefaultToolkit();
        java.awt.Dimension d = tk.getScreenSize();
        setSize(500, 300);
        int screenHeight = d.height;
        int screenWidth = d.width;
        setLocation((screenWidth-500)/2, (screenHeight-300)/2);
        gridBagConstraints = new java.awt.GridBagConstraints();
        gridBagConstraints.gridx = 0;
        gridBagConstraints.gridy = 1;
        gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
        gridBagConstraints.weightx = 1.0;
        getContentPane().add(buttonContainerPanel, gridBagConstraints);
        pack();
    /** Exit the Application */
    private void exitForm(java.awt.event.WindowEvent evt) {
        System.exit(0);
     * @param args the command line arguments
    public static void main(String args[]) {
        TestNestedSplitPane.instance().show();
    private static TestNestedSplitPane instance = null;
    public javax.swing.JButton hideButton = null;
    private javax.swing.JPanel splitPaneContainerPanel = null;
    private javax.swing.JPanel buttonContainerPanel = null;
    public javax.swing.JSplitPane outerSplitPane = null;
    public javax.swing.JSplitPane innerSplitPane = null;
    public javax.swing.JPanel leftPanel = null;
    public javax.swing.JPanel middlePanel = null;
    public javax.swing.JPanel rightPanel = null;
class OutsideListener implements java.awt.event.ActionListener {
    private static OutsideListener instance = null;
    private OutsideListener() {
    public static OutsideListener instance() {
        if (null == instance) {
            instance = new OutsideListener();
        return instance;
    public void actionPerformed(java.awt.event.ActionEvent e) {
        if (TestNestedSplitPane.instance().hideButton.getText().equalsIgnoreCase("Hide Middle Panel")) {
            TestNestedSplitPane.instance().middlePanel.setVisible(false);
            TestNestedSplitPane.instance().outerSplitPane.setDividerLocation(.67);
            TestNestedSplitPane.instance().hideButton.setText("Show Middle Panel");
        } else if (TestNestedSplitPane.instance().hideButton.getText().equalsIgnoreCase("Show Middle Panel")) {
            TestNestedSplitPane.instance().middlePanel.setVisible(true);
            TestNestedSplitPane.instance().outerSplitPane.setDividerLocation(.67);
            TestNestedSplitPane.instance().outerSplitPane.revalidate();
            TestNestedSplitPane.instance().innerSplitPane.setDividerLocation(.5);
            TestNestedSplitPane.instance().hideButton.setText("Hide Middle Panel");
}

However, I still get totally confused about the difference between validate() and revalidate().Same here. There seems to be no consistency. One combination of components will
respond to revalidate(), another combination will not.
Did you come across this solution by trying various combinations of validate(), revalidate(), repaint()?I (generally) find either revalidate() (on its own), or validate() and repaint() (combined) work
In this case, after spotting the revalidate(), validate()/repaint() was the first change I tried.
http://forum.java.sun.com/thread.jspa?threadID=583383Interesting discussion - I'll have bit more of a look through my swing books/notes and if I
find anything interesting I'll post back.

Similar Messages

  • Having trouble with wav files and sample rates

    Hi ,I am having trouble with wav files and sample rates .I have been sent multiple projects on wav as the main instrumental ; I wish to record in 48.000kHz .Now comes the problem.When I try to change the project to 48k It seems to pitch up the track.I can't have them send the logic/project file as most have outboard synths,different plug ins etc.This particular case the producer has recorded the synth task in 41.000 kHz .My successful outcome would be to be able t create a project file in 48 kHz .And NOT pitch up whne I add the instrumenta wav file .Any help would be gratefully recieved,this is my first post so any mistakes I may have made go easy 

    You'll have to convert the actual synth audio file file that the producer gave you to 48kHz. You can do this in the audio Bin in Logic.

  • I'm having trouble with iTunes synching and accessing the iTunes store.

    I'm having trouble with iTunes synching and accessing the iTunes store.   When synching, the process tops at the back up stage, freezes and I can't close the iTunes window, need to ctrl alt del.   When trying to access the store, the progress bar stops halfway.   I've googled heaps and tried most of the standard answers - unistall, reinstall, etc, now looking for some help please.
    This has only started a few weeks back, after working smoothly for the 2 years of owning the iPhone 3gs.
    Any suggestions will be appreciated, it's getting realy frustrating.
    Cheers for now,
    Marty

    http://support.apple.com/kb/HT1923?viewlocale=en_US
    this worked perfectly for me, with no loss of library! BUT was warned about uninstalling things in the order listed...FYI.

  • I am having trouble with my FaceTime and imessage?

    I Am having trouble with my FaceTime. When I try to FaceTime some one I am getting no ringing and then I get a message saying lost connection try again. It has been like this since yesterday. I also tried to send a iMessage and it did not go. This is all new to me, has anyone had the same problem? Please help. Thank you.

    Turn FaceTime off in Settings>FaceTime>Off. Reboot your iPad. Turn FaceTime on again and see if it will work.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Having trouble with freezing starting and stoping while syncing to i-pod

    Having trouble with itunes freezing while syncing to i-pod

    I have a Macbook with Tiger, and OS x 10.4.  I had to install a new hard drive.
    Run Disk Utility   /Applications/Utilities
    First, go to your Apple menu then click Software Update...
    If no updates are available, check the startup disk using Disk Utility.
    Using Disk Utility to verify or repair disks

  • TS2972 having trouble with ring tone and or ring back tones...i followed all directions and cant access ring tone from my play list.

    having trouble with ringtone and ringback tones ..i followed all directions for home sharing.  does anyone have a real solution???

    Hello sairdoor123
    From what I understand the issue seems to be with the hardware, obviously since the phone was dropped that could cause undesired results.
    If all your data is backed up to a computer then I would recommend doing a hard reset: http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=887
    If a hard reset is done then I would caution you with the following choices:  ( Should I have the audio circuit repaired as suggested by one of the repair guys? Or would that be risky?) - I would say this is risky because the person repairing the devise could easily sodder the wrong part of the hardware.
    If you really do think repairing the circuit board is more cost effective then I would recommend researching all your possible repair shops before doing any work. Make sure they have the credentials and experiences.
    Hopefully things work out for you.
    Post relates to: Centro (Sprint)
    Post relates to: Centro (Sprint)

  • Having Trouble with nested Case Statements

    Hi Folks,
    I'm having trouble getting my head round nested case statements. For the life of me I cannot see what I'm missing here (unless my approach is all wrong).
    Any help much appreciated.
    Script:
    set serveroutput on format wrapped
    set feedback off
    set linesize 150
    DECLARE
    /* Set supported version here */
    ora_version VARCHAR2(4);
    unsupp_version EXCEPTION;
    /* Archive Log Info */
    db_log_mode VARCHAR2(12);
    BEGIN
    SELECT SUBSTR(VERSION, 1, 4)
    INTO ora_version
    FROM v$instance;
    SELECT log_mode
    INTO db_log_mode
    FROM v$database;
    CASE
    WHEN ora_version = '10.2' THEN
    DECLARE
    TYPE t_db IS RECORD(
    dflsh VARCHAR2(3),
    dcscn NUMBER);
    v_db t_db;
    BEGIN
    CASE
    WHEN db_log_mode = 'ARCHIVELOG' THEN
    EXECUTE IMMEDIATE 'SELECT INITCAP(flashback_on), current_scn FROM v$database'
    INTO v_db;
    DBMS_OUTPUT.PUT_LINE(' Flashback On : ' || v_db.dflsh);
    DBMS_OUTPUT.PUT_LINE(' Current SCN : ' || v_db.dcscn);
    DBMS_OUTPUT.PUT_LINE(' Log Mode : ' || db_log_mode);
    DBMS_OUTPUT.PUT_LINE(' Version : ' || ora_version);
    END;
    ELSE
    DBMS_OUTPUT.PUT_LINE(' Log Mode : ' || db_log_mode);
    DBMS_OUTPUT.PUT_LINE(' Version : ' || ora_version);
    END CASE;
    END;
    WHEN ora_version = '9.2' THEN
    DECLARE
    TYPE t_db IS RECORD(
    dcscn NUMBER);
    v_db t_db;
    BEGIN
    CASE
    WHEN db_log_mode = 'ARCHIVELOG' THEN
    EXECUTE IMMEDIATE 'SELECT current_scn FROM v$database'
    INTO v_db;
    DBMS_OUTPUT.PUT_LINE(' Current SCN : ' || v_db.dcscn);
    DBMS_OUTPUT.PUT_LINE(' Log Mode : ' || db_log_mode);
    DBMS_OUTPUT.PUT_LINE(' Version : ' || ora_version);
    END;
    ELSE
    DBMS_OUTPUT.PUT_LINE(' Log Mode : ' || db_log_mode);
    DBMS_OUTPUT.PUT_LINE(' Version : ' || ora_version);
    END CASE;
    END;
    ELSE
    RAISE unsupp_version;
    END CASE;
    EXCEPTION
    WHEN unsupp_version THEN
    DBMS_OUTPUT.PUT_LINE('');
    DBMS_OUTPUT.PUT_LINE(' Unsupported Version '||ora_version||' !');
    DBMS_OUTPUT.PUT_LINE('');
    END;
    set linesize 80
    set feedback on
    set serveroutput off
    Gives errors:
    END;
    ERROR at line 31:
    ORA-06550: line 31, column 7:
    PLS-00103: Encountered the symbol ";" when expecting one of the following:
    case
    ORA-06550: line 37, column 1:
    PLS-00103: Encountered the symbol "WHEN"
    ORA-06550: line 50, column 28:
    PLS-00103: Encountered the symbol ";" when expecting one of the following:
    case
    Edited by: milkyjoe on 28-Apr-2010 05:38

    Hi,
    Never write, much less post, unformatted code.
    Indent the code to show the extent of multi-line structures like BEGIN and CASE.
    For example:
    DECLARE
         /* Set supported version here */
         ora_version       VARCHAR2 (4);
         unsupp_version       EXCEPTION;
         /* Archive Log Info */
         db_log_mode      VARCHAR2 (12);
    BEGIN
         SELECT     SUBSTR(VERSION, 1, 4)
         INTO     ora_version
         FROM     v$instance;
         SELECT     log_mode
         INTO     db_log_mode
         FROM     v$database;
         CASE
             WHEN  ora_version = '10.2' THEN
              DECLARE
                  TYPE t_db IS RECORD(
                             dflsh     VARCHAR2(3),
                             dcscn      NUMBER);
                  v_db t_db;
              BEGIN
                  CASE
                      WHEN db_log_mode = 'ARCHIVELOG' THEN
                       EXECUTE IMMEDIATE 'SELECT INITCAP(flashback_on), current_scn FROM v$database'
                                           INTO v_db;
                       DBMS_OUTPUT.PUT_LINE(' Flashback On : ' || v_db.dflsh);
                       DBMS_OUTPUT.PUT_LINE(' Current SCN : ' || v_db.dcscn);
                       DBMS_OUTPUT.PUT_LINE(' Log Mode : ' || db_log_mode);
                       DBMS_OUTPUT.PUT_LINE(' Version : ' || ora_version);
                  END;
    ...The code above is what you posted, with some whitespace added.
    The error is much clearer; the last CASE statement concludes with END, but CASE blocks always have to conclude with END CASE .
    Why are you using a nested BEGIN block in the code above? Are you plannning to add an EXCEPTION handler later?
    When posting formatted text on this site, type these 6 characters:
    \(small letters only, inside curly brackets) before and after each section of formatted text, to preserve spacing.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • HT1689 I am having trouble with my appleid and password. I have changed to a new id and password, however whenever I updat an app it continues to give me my old applid and i  do not have a password for this account because it no longer exists

    I am having trouble   getting my updates on my apps. The email address no longer exists. I have set up a new appleid and password. However my old email address keeps showing up and I do not know the password. Can anyone help me?

    Items are permanantly associated with a single AppleID used at the time of the purchase.
    You will have to contact Apple about the non-working e-mail and forgotten password.  It's kind of like going to the police and saying you know that red car in the corner of the parking lot is yours but you don't have the papers for it and you have lost the key to the door.
    http://www.apple.com/contact/ - many contact options, including web site feedback and legal.
    Apple ID Support - http://www.apple.com/support/appleid/  -> Apple ID FAQ -->
    I no longer have an email address that was also my Apple ID. Can I still use the email address as my Apple ID?
    Apple recommends you change your Apple ID to your current, working email address. This will not create another Apple ID, it will only change it to your working email address. See How to change the name you use for your Apple ID if you'd like more information.

  • Having trouble with the File and Folder Objects (PSCS3 javascript on Win)

    I'm having trouble successfully creating a new folder on my windows platform, using javascripts in photoshop. In ExtendScript Toolkit 2, set to Adobe Photoshop CS3, I've tried:
    var myFolder = new Folder("/c/Documents and Settings/vcastelo/My Documents");
    myFolder.create();
    and
    var myFolder = new Folder("/c/Documents and Settings/vcastelo/My Documents");
    is this right? what am I doing wrong? It's pretty basic stuff, I know but I can't figure is out... any help would be greatly appreciated.

    [email protected] wrote:
    > oh I see, I just figured it out... the drive designation isn't case sensitive... but i didn't add the name of new folder to the destination path.
    Yep.
    >
    > var myFolder = new Folder("c:/Documents and Settings/vcastelo/My Documents/data");
    > myFolder.create();
    The "/c/Documents and Settings/vcastelo/My Documents/data" form works, too, and
    should be preferred.
    Here's an extreme example as to why this is a good idea:
    I work in an XP/cygwin environment, so I added links to all of my drives in my
    root cygwin folder. As a result, the path /p/Pictures/2008-05-05 is the same on
    the bash command line (and other tools) as it is in PSJS. I carried this over to
    my Mac, as well. I mount P: drive in OSX then setup links so that
    /p/Pictures/2008-05-05 is also the same on the Mac. This has vastly simplified
    my work. The only time I use system-specific pathnames is in a script's UI.
    -X
    for photoshop scripting solutions of all sorts
    contact: [email protected]

  • I am postin a message but no one seems to answer it . Plse I am having trouble with adobe 5 and I wr

    I am hjaving trouble with adobe 5 not compatable with my computer so how do I get rid of it and up grade  to a newer verson, hopfully a free one

    There is no application named Adobe 5, so you might have to provide the correct name for the application.  If it happens to be Creative Suite 5 (CS5) there is a good chance it is compatible with your computer but you might have to install it in a compatibility mode.  If you want to remove it you should first deactivate it. YOu might also do well to use the Creative Suite Cleaner Tool...
    Adobe Creative Suite Cleaner Tool
    helps resolve installation problems for CS3 thru CS6 and for Creative Cloud
    http://www.adobe.com/support/contact/cscleanertool.html
    As far as I know there are no free upgrades, especially if the reason would be lack of compatibility.  It might be true if you were to have purchased one version when the next version was just about to be released, but CS5 is well beyond being considered for that.  Software is not freely upgraded to match newer machines - that's part of life.
    Just in case... if the lack of compatibility is due to your machine not meeting the tech specs of CS5, then it will most likely be true that your machine does not meet the tech specs of anything newer than that.

  • I'm having trouble with my MacBookPro and my Brother MFC 8460N.  I can scan documents from the printer to my Mac Book Pro, anybody else having this problem?  If so, any advice?

    Im having trouble witht my MacBook Pro and my Brother MFC 8460N.  I was at one time able to scan from the printer to my MB Pro, now I can still print but can no longer scan.  Any suggestions?  Thanks.

    Contact Brother.

  • I am having trouble with my skype and Microsoft ac...

    I signed in with MS account. I tried to change my registered mail in profile settings, it aked my password. I tried using MS account password and it said wrong password. I forgot my skype password and i tried to recover it in another browser but it took me to MS account password resetting page, I changed the password. But again when I tried to change my registered mail in profile settings same thing happened showing password is wrong. And I also forgot my Skype name because I always use skype with MS account, when I tried to recover it, it is taking me again to MS passwod resseting page. So how can I change my primary e-mail address?

    I am having the exact same issue. I am unable to login using Skype username and password, but it lets me sign in with microsoft account. Once I am signed in and trying to change profile settings (new email address), it asks me for my Skype password ("for security purposes") and it keeps saying I am not entering the correct password, then locks me out temporarily. If I choose "Forgot Password", it takes me to a prompt to change my microsoft account password. When I change, Skype account still does not recognize. Please help!

  • Having trouble with browser scrolling and master volume key

    I just got a Blackberry 9350 and I've run into some trouble. My master volume and mute key doesn't work at all. Scrolling up and down on some web pages doesn't work but works when not on the browser. I've tried messing with settings and turning the phone off and on. Any help would be appreciated!

    IE6 has many, many bugs: double margins bug, the 3px gap bug and expanding box bug.
    As a test, increase your #container width to 790 or 800px and see if that makes IE6 behave.
    As for the other IE browsers, you have conditional comments in your page that adds 30px of top padding to your #sidebar1.  Try adjusting or deleting that.
    <!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { padding-top: 30px; }
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • (Cross Post! SORRY!)  Having trouble with Mac Pro and Vista/Boot Camp

    I feel like this board is more populated, so I thought I'd post this here as well. Forgive me.
    Ok, so it took me forever to install Vista. It kept saying my partition wasn't valid even after I'd format it. After restarting like 15 times it finally went through. So, it installed.
    BUT, now I have two issues. When Vista starts, I get this weird jumble of like MS-DOS text talking about partitions, weird numbers, my monitors just flash and kinda go nuts with the text then at the top after like 10 second of text, it says 'booting windows vista' with more ms-dos text. Finally after 30 seconds of that, it shows me that green bar that shows up to load Vista then voila, Vista is up and running. The OS works fine, but no matter what, I go through that jumble of text. Any way to get rid of it? What's wrong with it?
    Also, now that I've installed Vista, I can't get back into OS X. I have a wireless PC keyboard and a wireless bluetooth Apple keyboard, so I don't know what to do. When I go into Vista's Control Panel to select Startup Disk it says it can't load the program. So I'm at a loss. I really wanna get back into OS X!
    Any help would be fantastic!!

    Ok, I fixed the issue by using the wireless PC keyboard. I put the Vista install DVD in the drive and restarted the computer. The computer wouldn't recognize the OS X DVD.
    I remembered that the computer would register the keyboard inputs after restarting from the Vista Install Screen, so I restarted, held down alt on the PC keyboard and it worked!
    Now with the apple keyboard working, I restarted and reset the PRAM which made the computer boot into OS X by default instead of Vista.
    BUT, I still get that weird DOS text every time I load Vista, and now after keeping Vista running for a few hours, it starts kinda glitching over time. It loses connection with the network (I had to physically unplug and plug back in the ethernet cable to get it to recognize the network) and for some reason in order to use my apple keyboard, I have to turn it off and on when I get into Vista. It's annoying.
    Anywho, if anyone can help me with my Vista problems, that'd be grand :P

  • I am having trouble with Treo 755p and Sync in my new Mercury car.

    I just got a Treo 755p.  I can connect and get the phone and Sync to communicate.  As soon as I make a call however, the sync system hangs up after one ring.  I had to replace my Treo 650p which worked well with this car.  Do I have a setting wrong in my phone.  Suggestions? 
    Post relates to: Treo 755p (Verizon)

    The jquery is there to animate the marquee, so even without the JS file the div container should still be showing up right? Part of the video tutorial said to switch to "live view" to make sure one of the div containers was positioning correctly, and when I do this nothing happens. It works for the guy on the tutorial so I am not sure what I am doing differently. Since it is not working at this point I have not added the jQuery, should I just assume it is a JQuery problem and continue on? I just don't understand why it is showing up in design view but just a blank white page in live view.

Maybe you are looking for

  • Error in execution webutil_demo

    Hello, I installed Oracle Forms and Reports 11g and Weblogic in a virtual machine with Windows 7 64bit, I did setup webutil following the same steps I took when I made the intalacion them on a computer with Windows 7 64-bit, but ajecutar webutil_demo

  • Why is there no functionality for multiple select of continuous icons in icon view?

    I have just switched to my first mac.  I admit I am experiencing growing pains switching over from a PC.  I am already overcoming many of these, but I have one issue in particular that for the life of me, I don't know why apple engineers left out. Wh

  • ADF to BPEL - Adding additional field for the web service call

    I have an existing ADF project that invokes a BPEL process. Recently I added 2 new fields to the bpel process and I want to populate this additional fields from the ADF when calling the bpel process. What is the best way to do this ? I dont see a way

  • Variants for Auto Settlement of Projects in CJ8G

    Hello I am having a batch job for auto settlement of capital projects (starting with C). Just need some input to chk the logic on which I am setting those variants: 1.Create a Variant starting with C* (i.e. all Capital Projects) 2.Use dynamic selecti

  • IPhone Keeps Rebooting. HELP!

    Hi all, For some reason my iPhone has decided to **** itself and go haywire. Its a never ending cycle of it rebooting from the apple logo screen. I'm not 100% but I think the cause is when I had been updating iTunes and transferring music to my iPhon