Signal function on complete of another function

Argh.. This seems pretty easy but I cannot find information about this anywhere.  I might just be searching wrong..
Anyway, I'd like to signal a function to run when another function completes.
I am filling a scrollPane with some dynamic content and want it to resize once the content has filled in some dynamic text boxes.
I'd like to signal a resize function once the function that fills in the scrollPane completes.  I tried something like this but it does not seem I can add this sort of listener to a funciton.
scrollPanePopulate.addEventListener(Event.COMPLETE, scrollPaneResize);
I might be missing something obvious or just be headed down the wrong path.  Thanks in advance..
-j

function scrollPanePopulate(event:Event):void{
//show scroll pane
     scrollPane.visible=true;
//create the temp variables
     var calledMarkerIndex=pntxml.row[pointindex].ID;
     var calledMarkerDate=pntxml.row[pointindex].DATE;
     var calledMarkerDescription=pntxml.row[pointindex].DESC;
     var calledMarkerContent=pntxml.row[pointindex].URL_OF_CONTENT;
     var imgSource:String = "<img src="+"'"+calledMarkerContent+"'"+"width='405'"+"height='280'"+"/>";
//fill in the text
     scrollPaneContent.scrollPaneImage.htmlText=imgSource;
     scrollPaneContent.scrollPaneText.htmlText="<font size='12' color='#ffffff'>"+calledMarkerDescription;
     scrollPane.update();
     scrollPane.verticalScrollPosition=(0);
and something like this would size my scrollPane to a reasonable size
function scrollPaneResize(event:Event):void{
//resize the scrollpane to content's size
     var imgHeight=scrollPaneContent.scrollPaneImage.height;
     var txtHeight=scrollPaneContent.scrollPaneText.height;
     var contentHeight=(imgHeight+txtHeight);
     scrollPane.setSize(510,(contentHeight+50));
Finally..  What I'll ultimatley do is set this up so that if the two componenent in my scrollPane are too large (height+height) then I'll have a maximum size that the scrollPane can attain

Similar Messages

  • Calling a function that's inside another function

    function test1():void
         function test2():void {..}
    How do I call test2 function (outside test1 function)? Is it possible?

    Hi,
    yes it is possible.
    Here is the code helps u
    function foo():Function
    var x:int = 40;
    function rectArea(y:int):int // function closure defined
    return x * y
    return rectArea;
    var myProduct:Function = foo();
    var s = myProduct(4);
    trace(s);
    Saransoft

  • How to call 1 function from1 system into another function of another system

    tell me the solution.......
    Moderator message : Not enough re-search before posting. Thread locked.
    Edited by: Vinod Kumar on Jun 13, 2011 2:08 PM

    In the Function 1 of System 1, you can call using below syntax..
    CALL FUNCTION 'Function_name'  DESTINATION
    Function_name is Function 2 and Destination is Address of second system

  • Call a function module inside of another function module

    Has anyone ever called a function module inside of a remote enabled function module?  Maybe this needs to be accomplished inside of an include.  Just wondering.
    Thanks!

    Hi
    No u can't do it because the RE_LAST_DAY_OF_MONTH  is not remote function module.
    If you need to call it u should insert it in a RFC, so u should create in R/3 a new RFC calling both fms: RE_LAST_DAY_OF_MONTH and the remote one.
    And so call this new rfc instead of the other one.
    Max

  • How to replace F4 using another function key

    Experts:
       How can i change the search help function key F4, using another function key,for example F11, when i press F11 the system perform the search help.
    thanks!

    you can do this using menus/buttons(dialog programming) and there you can define your short keys, and event can be trapped by sy-ucomm in the program. Menu can be set by writting set PF-Status 'MENUNAME' or using se37.

  • Calling one function in another function

    Hi,
    How to call one function in another function?
    regards,
    Kishore.

    example:
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2    function bob(x number) return number is
      3    begin
      4      return x*x;
      5    end;
      6    function fred(x number) return number is
      7    begin
      8      return x+bob(x);
      9    end;
    10  begin
    11    dbms_output.put_line('Value: '||to_char(fred(5),'fm9999'));
    12* end;
    SQL> /
    Value: 30
    PL/SQL procedure successfully completed.
    SQL>

  • How do i call a Function from another Function ?

    When i press a button, i want a series of functions to execute one after another (they contain tweens, but its irrelevant), each of them waiting for the previous to be completed. I want to put the series of functions inside one function, so i can call just this function to execute all the others. The animations are working fine, but i dont know how call Functions from within another function. Also it would be necessary each function to wait until the previous has completed, to execute. Here is a clear example of what i need to do:
    boton.onPress = animate ;
    Function animate () {
         animation1 (onComplete: animation2);
         animation2 (onComplete: animation3);
         animation3 ;
    Function animation1 () { Tween 1};
    Function animation2 () { Tween 2};
    Function animation3 () { Tween 3};
    any suggestions ?

    I'd do something like this:
    boton.onPress = animation1 ;
    Function animation1 () {
         var Tween1 = new Tween();
        Tween1.onComplete =  animation2;
    Function animation2 () {
         var Tween2 = new Tween();
         Tween2.onComplete = animation3;
    Function animation3 () {
         var Tween3 = new Tween();

  • RemoveChild for movie clip that was added in another function?

    Hello everyone.  I have 3 different functions for my preloader.  I have an Event.OPEN, ProgressEvent.PROGRESS, and an Event.COMPLETE.  In the event.OPEN function, I create a new variable that is data typed to the class name of my preloader that I set in it's property dialogue box.  This is just a simple circle animation.  Below is my code for it:
    function addPreloader(event:Event):void
        var myPreloader:mcPreloader = new mcPreloader();
        myPreloader.x = stage.stageWidth / 2;
        myPreloader.y = stage.stageHeight / 2;
        myPreloader.width = 75;
        myPreloader.height = 75;
        addChild(myPreloader);
    My ProgressEvent.PROGRESS function looks like so:
    function preloadImages(event:ProgressEvent):void
        var percent:Number = Math.round(event.bytesLoaded / event.bytesTotal * 100);
        percent_txt.text = percent + "%";
    and my Event.COMPLETE function looks like so:
    function imageLoaded(event:Event):void
        var myLoadedImage:Loader = Loader(event.target.loader);
        addChild(myLoadedImage);
        new Tween(myLoadedImage, "alpha", Strong.easeIn, 0, 1, 0.5, true);
        event.target.loader.removeEventListener(Event.OPEN, addPreloader);
        event.target.loader.removeEventListener(ProgressEvent.PROGRESS, preloadImages);
        event.target.loader.removeEventListener(Event.COMPLETE, imageLoaded);
    The only problem is that when it's done loading, I'd like to remove the myPreloader from the stage.  Since it is declared in the Event.OPEN function, I can't communicate with it via my Event.COMPLETE function.  How can I successfully remove it from the stage after it's done loading?  Thanks!
    Jesse

    Duh, thanks Kglad.  It's been a long week ;).
    Jesse
    Date: Thu, 9 Jun 2011 13:47:57 -0600
    From: [email protected]
    To: [email protected]
    Subject: removeChild for movie clip that was added in another function?
    var myPreloader:mcPreloader
    function addPreloader(event:Event):void
       myPreloader = new mcPreloader();
        myPreloader.x = stage.stageWidth / 2;
        myPreloader.y = stage.stageHeight / 2;
        myPreloader.width = 75;
        myPreloader.height = 75;
        addChild(myPreloader);
    My ProgressEvent.PROGRESS function looks like so:
    function preloadImages(event:ProgressEvent):void
        var percent:Number = Math.round(event.bytesLoaded / event.bytesTotal * 100);
        percent_txt.text = percent + "%";
    and my Event.COMPLETE function looks like so:
    function imageLoaded(event:Event):void
    removeChild(myPreloader);
    myPreloader=null;
        var myLoadedImage:Loader = Loader(event.target.loader);
        addChild(myLoadedImage);
        new Tween(myLoadedImage, "alpha", Strong.easeIn, 0, 1, 0.5, true);
        event.target.loader.removeEventListener(Event.OPEN, addPreloader);
        event.target.loader.removeEventListener(ProgressEvent.PROGRESS, preloadImages);
        event.target.loader.removeEventListener(Event.COMPLETE, imageLoaded);
    >

  • How to find the existing function module is used in another function module

    Hi all,
    I created a function module and the same one is called from another function module.
    When I tried to find where the  first function module is used  using  Where-used List , I am getting the message "function module not found in selected areas" .
    Please  guide me what is other method to find whether the function module is used in another one.
    Thanks,
    Vengal Rao.

    hi,
    Go to UTILITIES-> Update Navigation index.
    or go to fucntion group and Generate the Funtion group once.
    it will detect all fucntion modules under that function group.
    regards,
    Rama

  • Calling another function if upate statement fails

    Hi there,
    I have written an update procedure and insert procedure. Is there a way of calling another function if the update statement fails? Thanks a lot for your help.
    Chris
    procedure update_costing(in_period in DATE,
                   in_project_id IN VARCHAR2,
                   in_user_id IN VARCHAR2,
                   in_thu IN VARCHAR2,
                   in_fri IN VARCHAR2,
                   in_sat IN VARCHAR2,
                   in_sun IN VARCHAR2,
                   in_mon IN VARCHAR2,
                   in_tue IN VARCHAR2,
                   in_wed IN VARCHAR2)
         UPDATE TBL_COSTING
              SET
                   HOURS_THU = to_date (in_thu, 'HH24:MI'),
                   HOURS_FRI = to_date (in_fri, 'HH24:MI'),
                   HOURS_SAT = to_date (in_sat, 'HH24:MI'),
                   HOURS_SUN = to_date (in_sun, 'HH24:MI'),
                   HOURS_MON = to_date (in_mon, 'HH24:MI'),
                   HOURS_TUE = to_date (in_tue, 'HH24:MI'),
                   HOURS_WED = to_date (in_wed, 'HH24:MI'),
                   WHERE PERIOD = in_period
         AND PROJECT_ID = in_project_id
         AND USER_ID = in_user_id;
    EXCEPTION
    --CALLL HERE THE INSERT FUNCTION WITH SAME DATAMEMBERS
    SOMETHING LIKE THIS---
    WHEN others then
         insert_costing(in_period, in_project_id, in_user_id ,in_thu,in_fri,in_sat,in_sun,in_mon,in_tue,in_wed ,in_submit);
    COMMIT;
    END update_costing;

    begin
    UPDATE statement
    IF SQL%ROWCOUNT =0
    then
    INSERT statement|procedure
    end if;
    end;
    /Hi,
    i have a simple doubt over here, i read somewhere that cursor attributes can be used only as long as the cursor is open, then in the above case whiel doing the update operation, oracle implicitly will open an cursor and will do the operation and then will close the cursor, then how does SQL%ROWcount works???please revert...
    cheere

  • How to pass a locale object into another function?

    Greetings,
    i like to pass a locale object into another function. These are my code below
    import java.util.*;
    public class Locales{
         public static void main(String[] args){
              Locale locale= new Locale("EN", "US");
              convert(locale);
    public void convert(Locale convert)
         String language = convert.getDisplayLanguage();
         System.out.println(language);          
    }I got this error:
    Locales.java:6: non-static method convert(java.util.Locale) cannot be referenced from a static content
                    convert(locale);
                    ^How do i correct it?
    Thanks

    Did you bother to do a search?
    Did you bother to read any of the material that the search would have linked you to?
    If you had then you would be able to understand where you are going wrong and how to fix it yourself. Instead of being spoonfed by us.

  • Simple Question -- How to use global variables in an another function??!

    Function named globalLeftMargin that has:
    Global NumberVar LeftMargin := 5;
    HOW DO I USE THIS IN ANOTHER FUNCTION?  B/C IT DOES NOT RECOGNIZE IT AND GIVES THIS ERROR:
    The ) is missing.
    The other function is:
    Space(LeftMargin)

    Hi Ajay,
    Add WhilePrintingRecords at the beginning of each formula like:
    WhilePrintingRecords;
    Global NumberVar LeftMargin := 5;
    WhilePrintingRecords;
    Global NumberVar LeftMargin;
    Space(LeftMargin)
    Good luck,
    Brian

  • Unexpected Signal : 8 occurred at PC=0xF7EF926B Function=(null) Library=/lib/ld-linux.so.2 install oracle 10g r2 in SUSE 10.1

    I'm install oracle 10g r2 on SUSE 10.1, but when call "runInstaller" appears an error:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 8 occurred at PC=0xF7EF926B
    Function=(null)
    Library=/lib/ld-linux.so.2
    NOTE: We are unable to locate the function name symbol for the error
          just occurred. Please refer to release documentation for possible
          reason and solutions.
    Current Java thread:
            at java.lang.ClassLoader$NativeLibrary.load(Native Method)
            at java.lang.ClassLoader.loadLibrary0(Unknown Source)
            - locked <0xe6fe7f20> (a java.util.Vector)
            - locked <0xe6fe7f38> (a java.util.Vector)
            at java.lang.ClassLoader.loadLibrary(Unknown Source)
            at java.lang.Runtime.loadLibrary0(Unknown Source)
            - locked <0xe6fe7460> (a java.lang.Runtime)
            at java.lang.System.loadLibrary(Unknown Source)
            at sun.security.action.LoadLibraryAction.run(Unknown Source)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
            at sun.awt.DebugHelper.<clinit>(Unknown Source)
            at java.awt.Component.<clinit>(Unknown Source)
    Dynamic libraries:
    08048000-08056000 r-xp 00000000 68:03 1327705                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/bin/java
    08056000-08059000 rwxp 0000d000 68:03 1327705                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/bin/java
    08059000-0831a000 rwxp 08059000 00:00 0                                  [heap]
    e4caa000-e4cbf000 r-xp 00000000 68:03 2277383                            /usr/X11R6/lib/libICE.so.6.4
    e4cbf000-e4cc0000 rwxp 00014000 68:03 2277383                            /usr/X11R6/lib/libICE.so.6.4
    e4cc2000-e4cca000 r-xp 00000000 68:03 2277385                            /usr/X11R6/lib/libSM.so.6.0
    e4cca000-e4ccb000 rwxp 00007000 68:03 2277385                            /usr/X11R6/lib/libSM.so.6.0
    e4ccb000-e4dbf000 r-xp 00000000 68:03 2277389                            /usr/X11R6/lib/libX11.so.6.2
    e4dbf000-e4dc2000 rwxp 000f4000 68:03 2277389                            /usr/X11R6/lib/libX11.so.6.2
    e4dc2000-e4dc6000 r-xp 00000000 68:03 2277442                            /usr/X11R6/lib/libXtst.so.6.1
    e4dc6000-e4dc7000 rwxp 00004000 68:03 2277442                            /usr/X11R6/lib/libXtst.so.6.1
    e4dc7000-e4dd4000 r-xp 00000000 68:03 2277413                            /usr/X11R6/lib/libXext.so.6.4
    e4dd4000-e4dd5000 rwxp 0000c000 68:03 2277413                            /usr/X11R6/lib/libXext.so.6.4
    e4dd5000-e4e21000 r-xp 00000000 68:03 2277377                            /usr/X11R6/lib/libXt.so.6.0
    e4e21000-e4e25000 rwxp 0004b000 68:03 2277377                            /usr/X11R6/lib/libXt.so.6.0
    e4e25000-e4e33000 r-xp 00000000 68:03 3623598                            /etc/ld.so.cache
    e4e33000-e4e3a000 r-xp 00000000 68:03 2670602                            /usr/lib/libXp.so.6.2.0
    e4e3a000-e4e3b000 rwxp 00006000 68:03 2670602                            /usr/lib/libXp.so.6.2.0
    e4e3b000-e4e8e000 r-xp 00000000 68:03 1327561                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/libmlib_image.so
    e4e8e000-e4e8f000 rwxp 00052000 68:03 1327561                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/libmlib_image.so
    e4e8f000-e5160000 r-xp 00000000 68:03 1327544                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/libawt.so
    e5160000-e5176000 rwxp 002d0000 68:03 1327544                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/libawt.so
    e519b000-e5420000 r-xs 00000000 68:03 917710                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/ewt3.jar
    e5420000-e5447000 r-xs 00000000 68:03 917715                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/help4-nls.jar
    e5447000-e54ac000 r-xs 00000000 68:03 917714                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/help4.jar
    e54ac000-e5561000 r-xs 00000000 68:03 917727                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/oracle_ice.jar
    e5561000-e557e000 r-xs 00000000 68:03 917725                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/InstHelp_zh_TW.jar
    e557e000-e559b000 r-xs 00000000 68:03 917724                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/InstHelp_zh_CN.jar
    e559b000-e55b9000 r-xs 00000000 68:03 917723                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/InstHelp_pt_BR.jar
    e55b9000-e55d6000 r-xs 00000000 68:03 917722                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/InstHelp_ko.jar
    e55d6000-e55f2000 r-xs 00000000 68:03 917721                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/InstHelp_ja.jar
    e55f2000-e560f000 r-xs 00000000 68:03 917720                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/InstHelp_it.jar
    e560f000-e562c000 r-xs 00000000 68:03 917719                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/InstHelp_fr.jar
    e562c000-e5649000 r-xs 00000000 68:03 917718                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/InstHelp_es.jar
    e5649000-e5668000 r-xs 00000000 68:03 917717                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/InstHelp_de.jar
    e5668000-e5684000 r-xs 00000000 68:03 917716                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/InstHelp.jar
    e5684000-e56a5000 r-xs 00000000 68:03 917726                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/InstImages.jar
    e56a5000-e56ab000 r-xs 00000000 68:03 917741                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/ojmisc.jar
    e56ab000-e5789000 r-xs 00000000 68:03 917738                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/emCfg.jar
    e5789000-e579c000 r-xs 00000000 68:03 917740                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/orai18n-mapping.jar
    e579c000-e589c000 r-xs 00000000 68:03 917739                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/orai18n-collation.jar
    e589c000-e5921000 r-xs 00000000 68:03 917737                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/xml.jar
    e5921000-e592f000 r-xs 00000000 68:03 917746                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/share.jar
    e592f000-e59f6000 r-xs 00000000 68:03 917743                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/srvm.jar
    e59f6000-e5b1e000 r-xs 00000000 68:03 917742                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/xmlparserv2.jar
    e5b1e000-e5b2b000 r-xs 00000000 68:03 917736                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/oneclick.jar
    e5b2b000-e5ec8000 r-xs 00000000 68:03 917744                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/OraInstaller.jar
    e5ec8000-e5ee4000 r-xs 00000000 68:03 1327533                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/ext/sunjce_provider.jar
    e5ee4000-e5f9f000 r-xs 00000000 68:03 1327532                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/ext/localedata.jar
    e5f9f000-e5fac000 r-xs 00000000 68:03 1327531                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/ext/ldapsec.jar
    e61b0000-e61b7000 r-xs 00000000 68:03 4358699                            /usr/lib/gconv/gconv-modules.cache
    e61b7000-e61ea000 r-xp 00000000 68:03 4342576                            /usr/lib/locale/en_US.utf8/LC_CTYPE
    f3a40000-f3a42000 r-xp 00000000 68:03 2277395                            /usr/X11R6/lib/libXau.so.6.0
    f3a42000-f3a43000 rwxp 00001000 68:03 2277395                            /usr/X11R6/lib/libXau.so.6.0
    f5aeb000-f607a000 r-xs 00000000 68:03 1311166                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/charsets.jar
    f607a000-f608b000 r-xs 00000000 68:03 1311204                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/jce.jar
    f608b000-f6164000 r-xs 00000000 68:03 1311205                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/jsse.jar
    f6164000-f617a000 r-xs 00000000 68:03 1311213                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/sunrsasign.jar
    f61c4000-f78b2000 r-xs 00000000 68:03 1311212                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/rt.jar
    f78b2000-f78c6000 r-xp 00000000 68:03 1327567                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/libzip.so
    f78c6000-f78c9000 rwxp 00013000 68:03 1327567                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/libzip.so
    f78c9000-f78e9000 r-xp 00000000 68:03 1327552                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/libjava.so
    f78e9000-f78eb000 rwxp 0001f000 68:03 1327552                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/libjava.so
    f78eb000-f78fb000 r-xp 00000000 68:03 1327566                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/libverify.so
    f78fb000-f78fd000 rwxp 0000f000 68:03 1327566                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/libverify.so
    f78fd000-f7901000 rwxs 00000000 68:03 1065531                            /tmp/hsperfdata_oracle/5768
    f7901000-f7936000 r-xs 00000000 68:02 344767                             /var/run/nscd/passwd
    f7936000-f7959000 r-xp 00000000 68:03 4440091                            /lib/libm-2.4.so
    f7959000-f795b000 rwxp 00022000 68:03 4440091                            /lib/libm-2.4.so
    f795b000-f796c000 r-xp 00000000 68:03 4440094                            /lib/libnsl-2.4.so
    f796c000-f796e000 rwxp 00010000 68:03 4440094                            /lib/libnsl-2.4.so
    f7970000-f7d76000 r-xp 00000000 68:03 1327575                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/client/libjvm.so
    f7d76000-f7d91000 rwxp 00405000 68:03 1327575                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/client/libjvm.so
    f7da6000-f7ec1000 r-xp 00000000 68:03 4440083                            /lib/libc-2.4.so
    f7ec1000-f7ec3000 r-xp 0011a000 68:03 4440083                            /lib/libc-2.4.so
    f7ec3000-f7ec5000 rwxp 0011c000 68:03 4440083                            /lib/libc-2.4.so
    f7ec8000-f7eca000 r-xp 00000000 68:03 4440089                            /lib/libdl-2.4.so
    f7eca000-f7ecc000 rwxp 00001000 68:03 4440089                            /lib/libdl-2.4.so
    f7ecc000-f7edd000 r-xp 00000000 68:03 4440109                            /lib/libpthread-2.4.so
    f7edd000-f7edf000 rwxp 00010000 68:03 4440109                            /lib/libpthread-2.4.so
    f7ee1000-f7ee3000 r-xs 00000000 68:03 917745                             /tmp/OraInstall2013-08-29_05-25-11PM/oui/jlib/OraInstallerNet.jar
    f7ee3000-f7ee6000 r-xs 00000000 68:03 1327530                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/ext/dnsns.jar
    f7ee6000-f7eee000 r-xp 00000000 68:03 1327577                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/native_threads/libhpi.so
    f7eee000-f7eef000 rwxp 00007000 68:03 1327577                            /tmp/OraInstall2013-08-29_05-25-11PM/jre/1.4.2/lib/i386/native_threads/libhpi.so
    f7ef0000-f7f0a000 r-xp 00000000 68:03 4440076                            /lib/ld-2.4.so
    f7f0a000-f7f0c000 rwxp 0001a000 68:03 4440076                            /lib/ld-2.4.so
    ff9c9000-ff9d6000 rwxp ff9c9000 00:00 0                                  [stack]
    Heap at VM Abort:
    Heap
    def new generation   total 576K, used 380K [0xe6440000, 0xe64e0000, 0xe6fc0000)
      eden space 512K,  62% used [0xe6440000, 0xe64908e0, 0xe64c0000)
      from space 64K,  90% used [0xe64c0000, 0xe64ce760, 0xe64d0000)
      to   space 64K,   0% used [0xe64d0000, 0xe64d0000, 0xe64e0000)
    tenured generation   total 1408K, used 178K [0xe6fc0000, 0xe7120000, 0xefa40000)
       the space 1408K,  12% used [0xe6fc0000, 0xe6fec878, 0xe6feca00, 0xe7120000)
    compacting perm gen  total 4096K, used 1599K [0xefa40000, 0xefe40000, 0xf3a40000)
       the space 4096K,  39% used [0xefa40000, 0xefbcfe58, 0xefbd0000, 0xefe40000)
    Local Time = Thu Aug 29 17:25:12 2013
    Elapsed Time = 0
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)

    But, following notes 10gR2:
    1 Certification Information
    The latest certification information for Oracle Database 10g Release 2 (10.2) is available on My Oracle Support (formerly OracleMetaLink) at:
    https://support.oracle.com
    Linux Certification
    Starting with Oracle Database 10g Release 2, the following operating systems are supported in addition to the list documented in Oracle Database Installation Guide for Linux x86-64:
    Asianux 2
    Asianux 3
    Oracle Linux 4/Oracle VM
    Oracle Linux 5/Oracle VM
    Red Hat Enterprise Linux 4/Oracle VM
    Red Hat Enterprise Linux 5/Oracle VM
    SUSE Linux Enterprise Server 10
    SUSE Linux Enterprise Server 11

  • Passing results to another function in MDX

    I'm pretty sure I know the answer to this, but it would be cool if it worked, so I figured I would put it out there and see if anyone successfully did this.<BR><BR>Is it possible to pass the result of a function NonEmptyCount() as an index for another function Item()?<BR><BR>Example<BR>CrossJoin({[Time].Levels(0).members},<BR>{[Measures].[Headcount]}).Item(NonEmptyCount(<BR>[Time].Levels(0).members, [Measures].[Headcount]<BR>))

    I found the solution to my problem.
    [1] Create a "After Submit" under Computations.
    [2] Select 'Item Value' under Type in Item Name
    [3] Select "After Submit" under Computation Point
    [3] Enterer Item Name, which value needs to be passed in 'Source'
    thanks

  • Using a function module i want to create another function module

    Hi all,
            My requirement is by using a function module i want to create another function module(if needs modify action should also be done if i need this is for the created function module) and the main thing is that the function module which we are used to create is should be RFC enabled.
    Thanks,
    Vichu.

    Hi,
    You can do one thing... you write the BDC code in the function module name you are creating... so that if you call the function module in a program and execute that program and if you give the function module to be created in the selection screen of the program... in this way there is chance of creating another function module.
    Hope this would help you.
    Good luck
    Narin

Maybe you are looking for

  • Urgent help needed to save aimage in phone memory

    hi, i'm developing one appln in j2me.in that i want to read and save images from and to phone memory.i already tried it with file connection api.File connection api supports only CLDC1.1 most of the mobile supports CLDC1.0 can u tell me a soln for th

  • Parallels both Lion and Snow Leopard at once?

    From what I'm reading, it *sounds* like the new Parallels 7 will let you boot in Snow Leopard, then run Parallels 7 and load in Lion as a virtualized operating system. If this is true, is it a real solution to Lion's lack of Rosetta, which prevents i

  • Can't change autoplay to false

    I just have a little movie clip I want to put on a web page. When I select the FLVPlayback component and change the autoplay to false, it doesn't stick. The next time I check it, it's back to the autoplay default. Saving the file with the false optio

  • Computer completely shuts down

    For the past two days I have been working in illustrator and with about an hour or so left on my battery my computer completely shuts down. I have now lost 2 days worth of work. Extremely frustrated!

  • GWIA Logs and IMAP data filling them up

    GroupWise 8.0.2 HP2 agents on Windows 2008 servers I have POP3 and IMAP enabled on my GWIA along with normal SMTP traffic. I think this is normal for most installations. I also wish to keep a running log of transactions and have properties of the GWI