Genbscript automation - Making genbscript run automatically after compile.

Hello,
Is there any way where we can make the genbscript run as soon as we click on compile. What am doing now is, every time I compile, i run the genbscript seperately.
So I would like to know , is there any method where the genbscript runs automatically as soon as we compile? If so plz let me know.
Thank and Regards,
Abhishek.

What version of Siebel are you using? If you are on 8.0, in Siebel Tools go to menu item View and choose Options.
Choose the Scripting tab and enter a value in "Browser script compilation folder".
Or just have a look here:
Using Siebel Tools
http://download.oracle.com/docs/cd/B40099_02/books/UsingTools/UsingToolsTOC.html
Setting Scripting Preferences
http://download.oracle.com/docs/cd/B40099_02/books/UsingTools/UsingTools_ScriptEditors3.html#wp1109335
Axel

Similar Messages

  • I'm trying to sync Outlook calendar (office 2010?win 8) with my iphone 4s. All works well when running control panel manually but it will not run automatically after that. Anyone got any ideas

    I'm trying to sync outlook calendar and contacts via icloud control panel. Everything works when control panel is run manually but it will not run automatically after that. Anyone got any ideas

    I am having a very similar problem. Until 12 hours ago, I was using my recently replaced 4s (with iOS7) flawlessly, receiving emails and calendar info from Exchange (Outlook 2010). But starting last night, it all stopped. I have deleted and added the account several times, tried making simple changes (considering whether the username is case sensitive, or not, etc.) and cannot fix it. I have iOS 7.04. Interestingly, the first time I changed the case to lower case, it seemed to respond immediately, and downloaded many emails with no sender, no content, and with a 12/31/69 date. Yes, 1969. And then nothing happened. Help please!

  • Noip2 can't get my IP when run automatically after booting

    I'm trying to set up a VPN and I use the noip.com service. I use the "noip" package to update my hosts.
    If I run it manually with systemctl start noip2, it works fine and my host is updated properly.
    If I set it to be run after booting with systemctl enable noip2, it doesn't work and gets caught in an endless loop that looks like this:
    Mar 28 19:44:07 eee systemd[1]: Started No-IP Dynamic DNS Update Client.
    Mar 28 19:44:07 eee noip2[154]: v2.1.9 daemon started with NAT enabled
    Mar 28 19:44:07 eee noip2[154]: Can't gethostbyname for dynupdate.no-ip.com
    Mar 28 19:44:07 eee noip2[154]: Can't get our visible IP address from ip1.dynupdate.no-ip.com
    Mar 28 19:49:07 eee noip2[154]: Can't gethostbyname for dynupdate.no-ip.com
    Mar 28 19:49:07 eee noip2[154]: Can't get our visible IP address from ip1.dynupdate.no-ip.com
    I suspect this is because the network isn't ready by the time the noip2 service is launched, so it can't resolve the updater domain name. However, I don't understand why, after five minutes, it still can't resolve this domain name. I can ping it just fine.
    Any ideas are more than welcome

    Okay, so how are you starting your internets?  Is it with a wired conenction, or wireless?  Netcfg, dhcpcd, NetworkManager, wicd, do you send carrier pidgeons back and forth? 
    If it requires that you have an active connection when it starts, maybe you should try using NetworkManager's service that waits until it is online before it notifies (creatively named NetworkManager-wait-online.service).  I think that what this does is it delays the completion of the network.target until after this service starts.  So if you have noip.service be "After=network.target" then the IP should be resolved and ready to go.

  • Making run automatically

    can some one help me making it run automatically and adding slideshowTimer on the codes below
    next_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToNextFrame);
    function fl_ClickToGoToNextFrame(event:MouseEvent):void
        nextFrame();
    previous_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToPreviousFrame);
    function fl_ClickToGoToPreviousFrame(event:MouseEvent):void
        prevFrame();

    thank you for your input
    however, i am getting error message when i put these codes on:
    Symbol 'Symbol 2', Layer 'Layer 3', Frame 1, Line 3 1150: The protected
    attribute can only be used on class property definitions.

  • Run automatically FLVPlayer

    Hi
    I'm a FLVPlayer
    I want to run automatically after being executed. But now I do not know how to change the code.
    Class code is as follows:
    package Classes
    import flash.display.MovieClip;
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.events.NetStatusEvent;
    import flash.events.TimerEvent;
    import flash.geom.Rectangle;
    import flash.media.SoundTransform;
    import flash.media.Video;
    import flash.net.NetConnection;
    import flash.net.NetStream;
    import flash.net.NetStreamAppendBytesAction;
    import flash.system.System;
    import flash.utils.Timer;
    import flash.utils.setTimeout;
    dynamic public class VideoPlayer extends MovieClip
      public var FirstTimeShow:int=300;//in stop display first ,
      public const DEFAULT_VOLUME:Number    = 0.6;
      public const SMOOTHING:Boolean     = true;
      private const BUFFER_TIME:Number    = 8;
      private var ncConnection:NetConnection;
      private var nsStream:NetStream;
      private var vidDisplay:Video;
      private var objInfo:Object;
      private var MainTime:Number=0;
      private var StreamTime:Number=0;
      private var strSource:String     = "";
      private var CanStart:Boolean=false;
      private var TotalTime:Number=0;
      private var intLastVolume:Number    = 0;
      private var CanAutoSeek:Boolean=false;
      private var _DisplayMode:Boolean=false;
      private var _firstTime:Number=0;
      private var EmbedMode:Boolean=false;
      private var Started:Boolean=false;
      public function VideoPlayer():void
       if(stage)
        initVideoPlayer();
       else
        addEventListener(Event.ADDED_TO_STAGE,initVideoPlayer);
      private function initVideoPlayer(evt:Event=null):void
       removeEventListener(Event.ADDED_TO_STAGE,initVideoPlayer);
       PreSettings();
      private function PreSettings():void
       CanStart=true;
      public function Start(address:String,FirstDisplay:Boolean=false,Time:int=3):void
       if(CanStart&&!Started)
        Started=true;
        EmbedMode=false;
        intLastVolume=DEFAULT_VOLUME;
        strSource=address;
        _firstTime=(Time>=0)?Time:StreamTime;
        _DisplayMode=FirstDisplay;
        MainTime=_firstTime;
        Panel.Timeline.AreaFill.Red.width = 1;
        Panel.Timeline.AreaFill.Gray.width = 1;
        Panel.Timeline.AreaFill.mouseEnabled=false;
        Panel.Timeline.AreaFill.mouseChildren=false;
        Panel.S.SHandle.buttonMode=true;
        Panel.Timeline.Handle.buttonMode=true;
        ncConnection=new NetConnection();
        ncConnection.connect(null);
        nsStream = new NetStream(ncConnection);
        nsStream.client = this;
        nsStream.soundTransform=new SoundTransform(intLastVolume);
        //================================Not Very Important
        nsStream.inBufferSeek=true;
        nsStream.bufferTime = BUFFER_TIME;
        //================================
        vidDisplay=new Video();
        vidDisplay.attachNetStream(nsStream);
        nsStream.play(strSource);
        vidDisplay.smoothing = SMOOTHING;
        //===============================================ShowAll Placement OF Video
        var FirstW:Number=VidContainer.width;
        var FirstH:Number=VidContainer.height;
        var H:Number=0;
        var W:Number=0;
        var Width:Number=VidContainer.width;
        var Height:Number=VidContainer.height;
        if(vidDisplay.width>=vidDisplay.height)
         H=FirstH*(Width/FirstW);
         W=Width;
         if(H>Height)
          H=Height;
          W=FirstW*(H/FirstH);
        else
         W=FirstW*(Height/FirstH);
         H=Height;
         if(W>Height)
          W=Width;
          H=FirstH*(W/FirstW);
        vidDisplay.width=W;
        vidDisplay.height=H;
        VidContainer.addChild(vidDisplay);
        vidDisplay.x=(Width/2)-(W/2);
        vidDisplay.y=(Height/2)-(H/2);
        //==================================================================================
        Panel.S.SHandle.x =((Panel.S.SArea.width-Panel.S.SHandle.width) * intLastVolume);
        Panel.S.Red.width = Panel.S.SHandle.x;
        Panel.btnPause.IDBTN = "PauseGo";
        Panel.btnPlay.IDBTN = "PlayGo";
        Panel.btnMute.IDBTN="MuteGo";
        Panel.btnUnmute.IDBTN="UnMuteGo";
        Panel.btnUnmute.visible = false;
        setVolume(intLastVolume);
      public function StartBytes(_ns:NetStream,FirstDisplay:Boolean=true,Time:int=-1):void
       if(CanStart)
        Started=true;
        EmbedMode=true;
       //@1Comments
      private function setVolume(intVolume:Number = 0):void
       if(intVolume>=0&&intLastVolume<=1)
        var newTransform:SoundTransform=new SoundTransform();
        newTransform.volume=intVolume;
        nsStream.soundTransform=newTransform;
      public function onMetaData(info:Object):void
       objInfo = info;
       TotalTime=objInfo.duration;
       nsStream.pause();
       if(!_DisplayMode)
        Panel.btnPause.visible = false;
        Panel.btnPlay.visible = true;
        CanAutoSeek=false;
       else
        Panel.btnPause.visible = true;
        Panel.btnPlay.visible = false;
        CanAutoSeek=true;
       StartEvents(true);
       setTimeout(PlayGo,10);
      private function playClicked(evt:MouseEvent):void
       if(evt.currentTarget.IDBTN=="PauseGo")
        Panel.btnPause.visible = false;
        Panel.btnPlay.visible = true;
        nsStream.pause();
        MainTime=nsStream.time;
        StreamTime=nsStream.time;
        CanAutoSeek=false;
        _DisplayMode=false;
       else if(evt.currentTarget.IDBTN=="PlayGo")
        Panel.btnPause.visible = true;
        Panel.btnPlay.visible = false;
        CanAutoSeek=true;
        nsStream.seek(MainTime);
        nsStream.resume();
        _DisplayMode=true;
      private function PlayGo():void
       if(nsStream!=null)
        if(MainTime>0&&MainTime<=TotalTime)MainTime=MainTime;
        else MainTime=StreamTime;
        nsStream.seek(MainTime);
        if(_DisplayMode) nsStream.resume();
       Panel.Timeline.Handle.x=(MainTime/TotalTime)*(Panel.Timeline.Area.width-Panel.Timeline.Handle.width);
       Panel.Timeline.AreaFill.Red.width = Panel.Timeline.Handle.x;
      private function StartEvents(Pos:Boolean):void
       if(Pos)
        nsStream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
        if(ncConnection!=null)ncConnection.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
        Panel.Timeline.Handle.addEventListener(MouseEvent.MOUSE_DOWN, SeekHandleDrag);
        Panel.Timeline.Area.addEventListener(MouseEvent.CLICK, playCustomClicked);
        Panel.btnPause.addEventListener(MouseEvent.CLICK, playClicked);
        Panel.btnPlay.addEventListener(MouseEvent.CLICK, playClicked);
        Panel.btnStop.addEventListener(MouseEvent.CLICK, stopClicked);
        Panel.S.SHandle.addEventListener(MouseEvent.MOUSE_DOWN, VolDrag);
        Panel.btnMute.addEventListener(MouseEvent.CLICK, UmuteClicked);
        Panel.btnUnmute.addEventListener(MouseEvent.CLICK, UmuteClicked);
        if(stage)stage.addEventListener( MouseEvent.MOUSE_UP, mouseReleased);
        addEventListener(Event.ENTER_FRAME,runtime);
       else
        if(nsStream)nsStream.removeEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
        if(ncConnection!=null)ncConnection.removeEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
        Panel.Timeline.Handle.removeEventListener(MouseEvent.MOUSE_DOWN, SeekHandleDrag);
        Panel.Timeline.Area.removeEventListener(MouseEvent.CLICK, playCustomClicked);
        Panel.btnPause.removeEventListener(MouseEvent.CLICK, playClicked);
        Panel.btnPlay.removeEventListener(MouseEvent.CLICK, playClicked);
        Panel.btnStop.removeEventListener(MouseEvent.CLICK, stopClicked);
        Panel.S.SHandle.removeEventListener(MouseEvent.MOUSE_DOWN, VolDrag);
        Panel.btnMute.removeEventListener(MouseEvent.CLICK, UmuteClicked);
        Panel.btnUnmute.removeEventListener(MouseEvent.CLICK, UmuteClicked);
        if(stage)stage.removeEventListener( MouseEvent.MOUSE_UP, mouseReleased);
        removeEventListener(Event.ENTER_FRAME,runtime);
      private function netStatusHandler(evt:NetStatusEvent):void
       switch (evt.info.code)
        case "NetStream.Play.StreamNotFound":
         trace("Stream not found! From VideoPlayer");
        break;
        case "NetStream.Play.Stop":
         trace("NetStream.Play.Stop From VideoPlayer");
         stopClicked(null);
        break;
        default:
         //trace("Progressing...");
         break;
      private function runtime(evt:Event):void
       var timeStream:Number=nsStream.time;
       var h:int=Math.floor(Math.abs(timeStream/3600));
       var m:int=Math.floor(Math.abs((timeStream-(h*3600))/60));
       var s:int=Math.abs(timeStream-((h*3600)+(m*60)));
       Panel.TXT.text=String(h)+" : "+String(m)+" : "+String(s);
       if(CanAutoSeek)
        Panel.Timeline.Handle.x=(timeStream/TotalTime)*(Panel.Timeline.Area.width-Panel.Timeline.Handle.width);
        Panel.Timeline.AreaFill.Red.width = Panel.Timeline.Handle.x;
        if(timeStream>=TotalTime)
         stopClicked(null);
      private function playCustomClicked(evt:MouseEvent):void
       if(Panel.mouseX<=Panel.Timeline.Area.width-Panel.Timeline.Handle.width)
        CanAutoSeek=false;
        nsStream.pause();
        Panel.Timeline.Handle.x=Panel.mouseX;
        Panel.Timeline.AreaFill.Red.width = Panel.Timeline.Handle.x;
        MainTime=(Panel.Timeline.Handle.x/(Panel.Timeline.Area.width-Panel.Timeline.Handle.width))*TotalTime;
        StreamTime=MainTime;
        nsStream.seek(MainTime);
        if(_DisplayMode)nsStream.resume();
        CanAutoSeek=true;
       else
        stopClicked(null);
      private function stopClicked(e:MouseEvent):void
       Panel.btnPause.visible = false;
       Panel.btnPlay.visible  = true;
       StreamTime=0;
       MainTime=0;
       nsStream.pause();
       nsStream.seek(MainTime);
       Panel.Timeline.Handle.x=0;
       Panel.Timeline.AreaFill.Red.width = Panel.Timeline.Handle.x;
       _DisplayMode=false;
      private function UmuteClicked(evt:MouseEvent):void
       if(evt.currentTarget.IDBTN=="MuteGo")
        intLastVolume=nsStream.soundTransform.volume;
        setVolume(0);
        Panel.S.SHandle.x    = 0;
        Panel.S.Red.width = 0;
        Panel.btnMute.visible  = false;
        Panel.btnUnmute.visible = true;
       else if(evt.currentTarget.IDBTN=="UnMuteGo")
        Panel.S.SHandle.x = (Panel.S.SArea.width-Panel.S.SHandle.width)*intLastVolume;
        Panel.S.Red.width = Panel.S.SHandle.x;
        Panel.btnMute.visible  = true;
        Panel.btnUnmute.visible = false;
        setVolume(intLastVolume);
      private function VolDrag(e:MouseEvent):void
       Panel.S.SHandle.startDrag(false, new Rectangle(0, 0, Panel.S.SArea.width-Panel.S.SHandle.width, 0));
       stage.addEventListener(MouseEvent.MOUSE_MOVE,moveSound);
      private function moveSound(evt:MouseEvent):void
       setTimeout(SoundSet,100);
      private function SoundSet():void
       Panel.S.Red.width = Panel.S.SHandle.x;
       var newTransform:SoundTransform=new SoundTransform(Panel.S.SHandle.x/(Panel.S.SArea.width-Panel.S.SHandle.width));
       nsStream.soundTransform=newTransform;
      private function SeekHandleDrag(e:MouseEvent):void
       CanAutoSeek=false;
       nsStream.pause();
       MainTime=nsStream.time;
       StreamTime=nsStream.time;
       Panel.Timeline.Handle.startDrag(false,new Rectangle(0,3,Panel.Timeline.Area.width-Panel.Timeline.Handle.width,0));
       stage.addEventListener(MouseEvent.MOUSE_MOVE,moveHandleSlider);
      private function moveHandleSlider(evt:MouseEvent):void
       setTimeout(MovieSeekDrag,50);
      private function MovieSeekDrag():void
       Panel.Timeline.AreaFill.Red.width = Panel.Timeline.Handle.x;
       MainTime=(Panel.Timeline.Handle.x/(Panel.Timeline.Area.width-Panel.Timeline.Handle.width))*TotalTime;
       nsStream.seek(MainTime);
      private function mouseReleased(e:MouseEvent):void
       Panel.S.SHandle.stopDrag();
       Panel.Timeline.Handle.stopDrag();
       try
        stage.removeEventListener(MouseEvent.MOUSE_MOVE,moveSound);
        stage.removeEventListener(MouseEvent.MOUSE_MOVE,moveHandleSlider);
       catch(Err:Error){}
       if(!CanAutoSeek&&_DisplayMode)
        CanAutoSeek=true;
        nsStream.seek(MainTime);
        nsStream.resume();
      public function Distructor():void
       if(CanStart)
        removeEventListener(Event.ADDED_TO_STAGE,initVideoPlayer);
        Started=false;
        StartEvents(false);
        Panel.S.SHandle.stopDrag();
        Panel.Timeline.Handle.stopDrag();
        if(stage)stage.removeEventListener(MouseEvent.MOUSE_MOVE,moveSound);
        if(stage)stage.removeEventListener(MouseEvent.MOUSE_MOVE,moveHandleSlider);   
        try
         nsStream.pause();
         nsStream.close();
        catch(Err:Error)
        try
         ncConnection.close();
        catch(Err:Error)
        try
         vidDisplay.clear();
        catch(Err:Error)
        try
         VidContainer.removeChild(vidDisplay);
        catch(Err:Error){}
        objInfo=null;
        MainTime=0;
        StreamTime=0;
        strSource     = "";
        TotalTime=0;
        intLastVolume    = 0;
        CanAutoSeek=false;
        _DisplayMode=false;
        _firstTime=0;
        ncConnection=null;
        vidDisplay=null;
        nsStream=null;
        System.gc();

    hi
    yes i have it
    and above code was class
    i attached flv file &  thx a lot
    http://www.dgfhfhhg.com/VideoPlayer.rar

  • Apps run automatically - turn off? How to close app w/out Close option?

    I am running two apps I want to close and only run when I choose them.
    One (The Missing Sync) at least has a Close option, which works. So I can at least get that out of my running apps list.
    The other (Funambol Sync) doesn't even have a Close option!
    When I do a battery pull, BOTH run automatically so they're back in memory!
    1) How do I control which apps run automatically after a battery pull?  If I can keep them from re-running, at least I can control my memory by doing a battery pull.
    2) Any ideas on how to close Funambol Sync or any other app that has no "Close" option on its menu? I've put in a messsage to those guys but no answer so far.

    I have been told that BB does not have a central place where all auto-run apps are listed/controlled.
    Apparently each app does its own specification re auto-running, and so must be controlled one-by-one.
    For at least one of these (Funambol Sync), the only option finally available was to just delete it, which is what I did. As long as the other one "plays nice", it can stay!

  • Making photo gallery run automatically

    hi there
    i have already created a photogallery for the website below.
    http://hitenkajal.co.uk/hk_family.html
    Now i will like the photos to run automatically as well as having button to click on. I want this done via as3 as i have quite alot of photos. Can someone help me?
    my as3 code:
    /* Mouse Click Event
    Clicking on the specified symbol instance executes a function in which you can add your own custom code.
    Instructions:
    1. Add your custom code on a new line after the line that says "// Start your custom code" below.
    The code will execute when the symbol instance is clicked.
    family1_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);
    function fl_MouseClickHandler(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family1_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/family.jpg";
    family2_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_2);
    function fl_MouseClickHandler_2(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family2_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/sheth_family.jpg";
        // End your custom code
    family3_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_3);
    function fl_MouseClickHandler_3(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family3_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/valani_family.jpg";
        // End your custom code
    family4_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_6);
    function fl_MouseClickHandler_6(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family4_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/hiten_brothers.jpg";
        // End your custom code
    family5_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_5);
    function fl_MouseClickHandler_5(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family5_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/the_sisters.jpg";
        // End your custom code
    family6_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_7);
    function fl_MouseClickHandler_7(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family6_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/kajal_baa.jpg";
        // End your custom code
    family7_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_8);
    function fl_MouseClickHandler_8(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family7_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/kajal_sisters.jpg";
        // End your custom code

    while the photos are automatically changing, i will like it to fade in and out smoothly. How can i do that?
    My AS3 code
    import flash.utils.Timer;ode
    import flash.events.TimerEvent;
    var imgArr:Array=new Array("family.jpg","sheth_family.jpg","valani_family.jpg","hiten_brothers.jpg","the_siste rs.jpg","kajal_baa.jpg","kajal_sisters.jpg");
    var path:String="hkimage/largepic/";
    var i:int=1;
    var timer:Timer=new Timer(7000);
    timer.addEventListener(TimerEvent.TIMER,timerfn);
    timer.start();
    function timerfn(e:TimerEvent):void{
        if (i>=imgArr.length) i=0;
        familyBkgd.mainLoader.source =path+imgArr[i];
        trace(imgArr[i]);
        i++;
    /* Mouse Click Evente
    Clicking on the specified symbol instance executes a function in which you can add your own custom code.
    Instructions:
    1. Add your custom code on a new line after the line that says "// Start your custom code" below.
    The code will execute when the symbol instance is clicked.
    family1_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);
    function fl_MouseClickHandler(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family1_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/family.jpg";
        i=0;
    family2_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_2);
    function fl_MouseClickHandler_2(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family2_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/sheth_family.jpg";
        // End your custom code
        i=1;
    family3_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_3);
    function fl_MouseClickHandler_3(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family3_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/valani_family.jpg";
        // End your custom code
    family4_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_6);
    function fl_MouseClickHandler_6(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family4_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/hiten_brothers.jpg";
        // End your custom code
    family5_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_5);
    function fl_MouseClickHandler_5(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family5_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/the_sisters.jpg";
        // End your custom code
    family6_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_7);
    function fl_MouseClickHandler_7(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family6_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/kajal_baa.jpg";
        // End your custom code
    family7_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_8);
    function fl_MouseClickHandler_8(event:MouseEvent):void
        // Start your custom code
        // This example code displays the words "Mouse clicked" in the Output panel.
        trace("family7_btn");
        familyBkgd.mainLoader.source = "hkimage/largepic/kajal_sisters.jpg";
        // End your custom code

  • Can I run automatically another report after a runned report?

    Hi.
    Can I run automatically in another report after a runned report?
    Like: I open a report, I click on Run/View and then the pdf is on screen BI Publisher runs another report (on screen)?
    Thank you, bye
    R.
    Edited by: user12003776 on May 18, 2011 5:29 PM

    Ok,
    I've to do a datatemplate with 2 queries and a new page in the existing template ?

  • Making media begin to play automatically after transition - BIG FILE

    I am creating a presentation that utilizes media clips which run from 1 to 10 minutes long. The media clips were created in imovie and are in dv format, so several are over 100 mb in size.
    Ideally, I would like to speak to my group for a couple of minutes and then let the presentation run automatically to the end. Total runtime about 35-40 minutes.
    I have set the presentation up in a series of lessons. First slide says Lesson 1, the the next slide gives the single bullet point the movie will illustrate, then the next slide contains the movie clip. All the slides are set to transition automatically so that when the clip it it goes to the next lesson, and so on.
    I am running into the problem that after a few clips, the transitions stop. I've got the transition time set for the length of the movie clip, but I suspect I have simply created a huge file (just over 10 gb) and it is running out of memory (I have 1 gb RAM installed).
    Any thoughts on how to lick this problem? It does not happen if I set the transitions to change on Click, so the problem is not insurmountable. I just don't want to have to stay and watch it very time and click to go to the next slide.
    Roger

    I am creating a presentation that utilizes media clips which run from 1 to 10 minutes long. The media clips were created in imovie and are in dv format, so several are over 100 mb in size.
    Ideally, I would like to speak to my group for a couple of minutes and then let the presentation run automatically to the end. Total runtime about 35-40 minutes.
    I have set the presentation up in a series of lessons. First slide says Lesson 1, the the next slide gives the single bullet point the movie will illustrate, then the next slide contains the movie clip. All the slides are set to transition automatically so that when the clip it it goes to the next lesson, and so on.
    I am running into the problem that after a few clips, the transitions stop. I've got the transition time set for the length of the movie clip, but I suspect I have simply created a huge file (just over 10 gb) and it is running out of memory (I have 1 gb RAM installed).
    Any thoughts on how to lick this problem? It does not happen if I set the transitions to change on Click, so the problem is not insurmountable. I just don't want to have to stay and watch it very time and click to go to the next slide.
    Roger

  • Running standard tcode MB1B after that my Ztcode has to run automatically..

    Hi All,
                 i have one requirement that i want to run one standard tcode MB1B after completion of that my Ztcode has to run automatically.
    Is there any ways to do like this?
    Some body has told me that through workflow we can call that one? is it true?
    We dont want to run through user exit.
    Pls give me suggestions regarding this issue.
    Regards,
    Lokesh.

    Yes through workflow it is possible to trigger event and then execute your Zcode.
    I am not sure whether this workaround will work:
    See any parameter in any table which MB1B will always update after its run. If you can find such parameter, you will have to write a simple program which will run in background with small time interval.
    This program will keep checking if that parameter is updated. As soon as it finds parameter updated, call your Ztcode.
    thankx,
    Ags.

  • Automatic JSP compilation

    All,
    I am working with R12-iStore. As per metalink link note: 458338.1, I have enabled automatic JSP compilation. Bounced all services.
    After logging into iStore then when I click on Profile link, blank page displayed.
    ibeCAcpProfMenuHome.jsp -> This is the JSP file which is used for Profile page. This page exists in $OA_HTML & class file in $COMMON_TOP/_pages directory.
    The above profile jsp page contains the following JSPs. These files are there in $OA_HTML directory but the classe files are not there in $COMMON_TOP/_pages directory.
    1) ibeCZzpHeader.jsp
    2) jtfincl.jsp
    My question is , do I need to compile them to fix this issue even though auto JSP compilation option is enabled ?
    is this auto compilation doesn't compile the pages while loading or accessing ??
    Thanks,

    Hi Hussein,
    I have checked the log file. It looks like , the bounce was proper.
    Also, I have raised SR with ORacle Support.. lets hope we get some good solution.
    ================================================================================
    04/03/09-16:10:34 :: adapcctl.sh version 120.6.12000000.4
    04/03/09-16:10:34 :: adapcctl.sh: stopping OPMN managed OHS instance
    opmnctl: stopping opmn managed processes...
    04/03/09-16:10:36 :: adapcctl.sh: exiting with status 0
    ================================================================================
    04/03/09-16:10:48 :: adapcctl.sh version 120.6.12000000.4
    04/03/09-16:10:48 :: adapcctl.sh: starting OPMN if it is not running
    opmnctl: opmn is already running.
    04/03/09-16:10:48 :: adapcctl.sh: starting OPMN managed OHS instance
    opmnctl: starting opmn managed processes...
    04/03/09-16:10:51 :: adapcctl.sh: exiting with status 0
    ================================================================================

  • Open follow up transaction type screen automatically after confirm account

    Hi Gurus,
    I have a transaction type Z010 for interaction record that is copied from standart 0010 transaction type.
    I define dependent transaction type SRVO that is service order as a follow up of Z010
    My requirement is to open automatically open service order screen after confirming account
    As agents must do everything vey quickly while they are on phone, it is needed urgently.
    Now they have to open Z010 interction record screen, have to press follow up button, click to clipboard and then can open the scrren of service order.
    How can we automatically open service order screen after confirming account??
    I will be very pleased if you will help...
    Thanks.

    Hi Denis, thanks for reply.
    I read it and see that interaction record is automatically created. How can it be made, is it a standard customizing?? Our interaction record is created automatically when follow up process-it is service order here- is created. First we confirm customer, then press to Interaction Record at the left hanside, then in this screen we press follow-up button, then click on Activity Clipboard, then service order screen is opened. I want to pass two steps, pressing Interaction Record and pressing follow up record, how can I do this??
    Exactly I have to define process type Business Activity for interaction record, I can't give Service Order process type directly to interaction record. Service Order type must be dependent to business activity, is it true?? If there is a way to directly giving service order type as an interaction record type, and making interaction record creation automatically after confirming, my problem is solved as very well.

  • VB6 source code cannot connect to Oracle database after compile to file.exe

    Hi All,
    I have a problem about VB6 connect with Oracle database. It can connect as normal when run on VB program. After compiled to file.exe and execute, it cannot connect to Oracle database. What's going on ? Please advise? Thank you.
    Here is sample of my code connection.
    Option Explicit
    Private wsData As New ADODB.Connection
    wsData.ConnectionString = _
    "Provider=MSDAORA.1;User ID=lsp;Password=lsp2007;Data Source=prd01;Persist Security Info=False"
    wsData.Open
    End sub
    Rgads,
    Ats.

    Hi,
    I believe you're in the wrong forum, this forum is for Oracle Application Express.

  • SSRS 2008 R2 Services not restarting automatically after reboot

    SSRS 2008 R2  Reporting instance not restarting automatically after patches install.  Is there a way to resolve the issue
    Windows 2008 R2 Server
    16 GB RAM

    Hi,
    Follow this article to resolve the issue:
    Reporting Services service doesn't start after the installation of MS12-070 security patch
    http://blogs.msdn.com/b/mariae/archive/2012/11/12/reporting-services-service-doesn-t-start-after-the-installation-of-ms12-070-security-patch.aspx
    Workaround 1:
    Modify the registry to increase the default time-out value for the service control manager. To increase this value to 60 seconds, follow these steps:
    1. Click Start, click Run, type regedit,and then click OK.
    2. Locate and then click the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control.
    3.  In the right pane, locate the ServicesPipeTimeout entry.
    Note If the ServicesPipeTimeout entry does not exist, you must créate it. To do this, follow these steps:
    a.On the Edit menu, point to New, and then click DWORD Value.
    b.Type ServicesPipeTimeout, and then press ENTER.
    c.Right-click ServicesPipeTimeout, and then click Modify.
    d.Click Decimal, type 60000, and then click OK.
    This value represents the time in milliseconds before
    Restart the computer for the changes to take effect. Check that SSRS services can be started now.
    You cannot start SQL Server Reporting Services after you apply the update that is discussed in KB 2677070
    http://support.microsoft.com/kb/2745448/en-us
    Thanks.
    Tracy Cai
    TechNet Community Support

  • How to create check in batch automatically after automatic payment program

    Hello
    SAP Experts i am getting a  issue
    how to create check in batch automatically after automatic payment program ( t code is f110)
    Thanks & Regards
    Narendra.G

    Hi Narendra,
    Please note the process below for cheque Printing:-
    1. The pre requisite for Cheque printing is you have used program RFFOUS_c/or the Z version of this program in FBZP and that you have maintained the form name in the field Form name for Payment medium in FBZP.
    2. You have a pre printed stationary on which you want to print and the Program & the form has been modified to print as per this.
    3. In F110, you must have assigned the Variant name, which would specify the cheque lot no. and this should exactly match with the current cheque no. in the pre printed stationary.
    4. Now, after all this setting, when you run Payment run in F110, then also only the Payment documents are posted but the cheque no.s are not updated in the Payment document no. nor the PAYR table is updated. It is only when you run the Print out tab, that a spool is created in SP01 for cheque printing as per the Payment documents.
    5. Then in SP01, you can print the spool on your pre printed stationary.
    This is the complete process of printing cheques from F110. Hope this helps..
    Regards,
    SAPFICO

Maybe you are looking for