Flushing loaded swfs from stage target mc?

Hi, I'm using buttons to send the playhead to frames in which swfs are then loaded into an otherwise blank movieclip called "stage_target_mc" ...how can I then flush out the previously loaded swf so only a newly loaded swf displays in "stage_target_mc"?  For example, after clicking upon the 'about' button the 'about' swf loads...then if the 'concepts' button is clicked the 'concepts' swf loads -- but the previously loaded 'about' swf still plays...I would like to be able to flush the 'about' swf so only 'concepts' is display, in this example.  Thanks!
code associated with buttons used to send playhead to frames "concepts" or "about":
about_btn.addEventListener(MouseEvent.CLICK, displayAbout);
function displayAbout(e:MouseEvent):void {
root.gotoAndStop("about");
concepts_btn.addEventListener(MouseEvent.CLICK, displayConcepts);
function displayConcepts(e:MouseEvent):void {
root.gotoAndStop("concepts");
code on frame called "concepts":
stage_target_loader.load(new URLRequest("swfs/stages/concepts.swf"));
MovieClip(root).stage_target_mc.addChild(stage_target_loader);
code on frame called "about":
stage_target_loader.load(new URLRequest("swfs/stages/about.swf"));
MovieClip(root).stage_target_mc.addChild(stage_target_loader);

Before loading, try using the unloadAndStop() method of the Loader class if you are using a newr version of Flash

Similar Messages

  • How to effectively remove a loaded SWF from the stage?

    I can not figure out a proper coding to remove a loded SWF from the stage.
    Here is my set up.
    I have a layout segmented into labeled section. In the section labeled "products" I have a layout consisting of product images acting as buttons which bring a user to another labeled section "prdctsPopUps"
    In the "prdctsPopUps" section I have placed an instance of LoaderMax placed into an mc container. Placing LoaderMax into an mc container automatically resolved an issue of clearing loaded SWFs from stage when I come back to "products" section.
    I specified the variable in the "products" section with the following set up:
    var sourceVar_ProductsPopUps:String;
    function onClickSumix1PopUp(event:MouseEvent):void {
                        sourceVar_ProductsPopUps="prdcts_popups/sumix1-popup_tl.swf";
                        gotoAndPlay("prdctsPopUps");
    So each button has its own "....swf" URL and they all open fine and I can come back to "products" section without any issues.
    However inside the swf (which loads through LoaderMax which is placed into an mc) there are other buttons which bring a user to labeled section "xyz". Which also functions properly. It opens as it is supposed to be and without any previously loaded "...swf" on the stage.
    At the labeled section "xyz" there is a limited set of buttons repeating from section "products" which has to bring a user back to the same set up in the "prdctsPopUps" labeled section and open a corresponding "...swf" .
    However only the last opened "...swf" will appear in that section. Effectively the one which was originally opened from the "prdctsPopUps" section and not the one which was supposed to be opened from the "xyz" section.
    I can not understand why it would work from one labeled section and not from another. I can not figure out on which section which code/function needed to be placed.
    Here is the set up from a button from the "xyz" section whcih supposed to bring a user to the same "prdctsPopUps" section but to load a different "...swf"
    var sourceVar_ProductsPopUps_fromXYZ:String;
    function onClick_floralytePopUp_fromXYZ(event:MouseEvent) :void {
                        sourceVar_ProductsPopUps_fromXYZ="prdcts_popups/floralyte-popup_tl.swf";
                        gotoAndPlay("prdctsPopUps");
    Here is the code set up for the LoaderMax from the "prdctsPopUps" section:
    var loaderProductPopUps:SWFLoader = new SWFLoader(sourceVar_ProductsPopUps,
                                                                                                        estimatedBytes:5000,
                                                                                                        container:holderMovieClip,
                                                                                                        onProgress:progressHandler,
                                                                                                        onComplete:completeHandler,
                                                                                                        centerRegistration:true,
                                                                                                        alpha:1,
                                                                                                        scaleMode:"none",
                                                                                                        width:540,
                                                                                                        height:730,
                                                                                                        crop:true,
                                                                                                        autoPlay:false
    function progressHandler(event:LoaderEvent):void{
              progressBarPopUp_mc.gradientbarPopUp_mc.scaleX = loaderProductPopUps.progress;
    function completeHandler(event:LoaderEvent):void{
              var loadedImage:ContentDisplay = event.target.content;
              TweenMax.to(progressBarPopUp_mc, 1.5, {alpha:0, scaleX:0.25, scaleY:0.25});
    loaderProductPopUps.load();
    Is there something which needs to be imported, or specific function needs to be specified in a specific labeled section?

    actually, i think you'll need to use something like:
    var loaderProductPopUps:SWFLoader;
    if ((loaderProductPopUps){
    if(loaderProductPopUps.content)){
       loaderProductPopUps.unload();
    loaderProductPopUps= new SWFLoader(sourceVar_ProductsPopUps, //the value of sourceVar_ProductsPopUps allows to load mulitple SWFs from the products page.
                                                                                                         estimatedBytes:5000 ,
                                                                                                         container:holderMov ieClip,// more convinient and easier to manage if to place the LoaderMax into an empty mc (holderMovieClip)
                                                                                                                                                                         // if not will work as well. Then the line container:holderMovieClip, has to be replaced with container:this,
                                                                                                                                                                         // can be any size, can not be scaled as it distorts the content
                                                                                                         onProgress:progress Handler,
                                                                                                         onComplete:complete Handler,
                                                                                                         centerRegistration: true,
                                                                                                         //x:-260, y:-320, //no need for this is if used: centerRegistration:true,
                                                                                                         alpha:1,
                                                                                                         scaleMode:"none",
                                                                                                         //scaleX:0, scaleY:0,
                                                                                                         //vAlign:"top",
                                                                                                         width:540,
                                                                                                         height:730,//scales proportionally but I need to cut off the edges
                                                                                                         crop:true,
                                                                                                         autoPlay:false
    function progressHandler(event:LoaderEvent):void{
              progressBarPopUp_mc.gradientbarPopUp_mc.scaleX = loaderProductPopUps.progress;
    function completeHandler(event:LoaderEvent):void{
              var loadedImage:ContentDisplay = event.target.content;
              //TweenMax.to(loadedImage, 1.5, {alpha:1, scaleX:1, scaleY:1});//only need this line if corresponding values are changed in SWF loader constructor
              TweenMax.to(progressBarPopUp_mc, 1.5, {alpha:0, scaleX:0.25, scaleY:0.25});
    loaderProductPopUps.load();

  • Unload and Stop swf from stage

    Hi,
    I'm a newbie to Flash and Actionscript. I need to give links to around 20 swf files via buttons from the menu.swf. I'm able to give links. But when I come back by clicking HOME button kept at the newly loaded swf the audio files are still being played at the background.
    Yes, It has got audio files playing at the back for each slide in the new swfs. When Click on the same link again in menu.swf again the files are being played with the unfinished old file. It's really hectic.
    I need to unload it completely from stage when I come back to menu.swf by clicking on HOME button from any of 20 categories.
    I used unloadAndStop but it is not doing. I hope that I'm commiting mistakes at somewhere but couldn't predict.
    Need some help !
    FOR HOME BUTTON:
    var _content:Loader = new Loader();
    function loadContent(content:String):void {
        if (_content != null) {
            _content.unloadAndStop(true);
            removeChild(_content);
            _content = null;
        var loader:Loader = new Loader();
        loader.load(new URLRequest(content)); //---->>>> I don't really know what should be put in this :-(
        _content = addChild(loader) as Loader;
    Home_Button.addEventListener(MouseEvent.CLICK, home);
    function home(event:MouseEvent) {
        _content.unloadAndStop(true);
        var homeSWF:URLRequest = new URLRequest("demo.swf");
        _content.load(homeSWF);
        addChild(_content);
    FOR MENU.swf button
    var loader:Loader = new Loader();
    Category1_Button.addEventListener(MouseEvent.CLICK, category1);
    function category1(event:MouseEvent):void {
        var Category1SWF:URLRequest = new URLRequest("Category1.swf");
        loader.load(Category1SWF);
        addChild(loader);

    Hi,
    Can this thread help us?
    http://forums.adobe.com/message/3739886
    I have seen you have replied to this. Would this give some idea ? Does this script serve the purpose ? I tried replacing the code with appropriate changes and looking like this.
    Home Button:
    var swf_loader:Loader = new Loader();
    ///unload previous swf
    swf_loader.unloadAndStop();
    removeChild(swf_loader);
    ////load new swf
    swf_loader.load(new URLRequest("menu.swf"));
    Home_Button.addEventListener(MouseEvent.CLICK, finishLoading);
    function finishLoading(e:Event):void{
    if(swf_loader.content){
    addChildAt(swf_loader, 0);
    but getting error as
    ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
        at flash.display::DisplayObjectContainer/removeChild()
        at Category1_fla::MainTimeline/frame55()
    I think I'm complicating the simple thing.
    Thanks.

  • Load swf from a tree

    Could someone show me how to load swf file from a link on a
    tree node? The tree would come from embeded xml.
    Thanks

    I am getting 1034 Type coercion error. I have Googled it this
    error must have hundreds of links. Is it a bug in Flex 3? Here is
    the code. The problem only occurs when I link to a swf.
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical"
    verticalAlign="middle"
    backgroundColor="white">
    <mx:Script>
    <![CDATA[
    import mx.events.ListEvent;
    import mx.managers.*;
    import mx.flash.*;
    import mx.controls.treeClasses.*;
    private var t:Tree;
    private var dataObj:Object;
    private var suffix:String;
    private function tree_itemClick(evt:ListEvent):void {
    var t:Tree = evt.currentTarget as Tree;
    var dataObj:Object = evt.itemRenderer.data;
    if (dataObj.hasOwnProperty("@src")) {
    swfLoader.source = dataObj.@src;
    } else if (t.dataDescriptor.isBranch(t.selectedItem)) {
    swfLoader.source = null;
    panel.status = "";
    private function tree_labelFunc(item:Object):String {
    var suffix:String = "";
    if (tree.dataDescriptor.isBranch(item)) {
    suffix = " (" + item.children().length() + ")";
    return item.@label + suffix;
    private function swfLoader_complete(evt:Event):void {
    panel.status = (swfLoader.bytesTotal/1024).toFixed(2) +
    'KB';
    ]]>
    </mx:Script>
    <mx:XML id="dp" source="data/dp.xml" />
    <mx:HDividedBox width="100%" height="100%">
    <mx:Panel width="200" height="100%">
    <mx:Tree id="tree"
    dataProvider="{dp}"
    labelFunction="tree_labelFunc"
    showRoot="false"
    width="100%"
    height="100%"
    itemClick="tree_itemClick(event);" />
    </mx:Panel>
    <mx:Panel id="panel"
    width="100%"
    height="100%"
    backgroundColor="white">
    <mx:SWFLoader id="swfLoader"
    scaleContent="true"
    width="100%"
    height="100%"
    complete="swfLoader_complete(event);"/>
    <mx:ControlBar>
    <mx:LinkButton label="{swfLoader.source.toString()}"
    />
    </mx:ControlBar>
    </mx:Panel>
    </mx:HDividedBox>
    </mx:Application>

  • Load SWF on stage with button

    Hallo everybody,
    I am a new Flash user so please forgive me if my question is
    a bit "simple". I want to obtain a flash button that can load SWF
    file on stage in a precise position without taking tha button
    place. As example please click www.suit-e.de . I have read about
    loadMovie e loadMovieNum but I do not not if I am in the right
    place. Thank you

    To do that you need to design the whole website using the
    keyframes and some tweening technics, you dont really need much
    complicated actionscript/loadmovie etc. Get to know alittle more
    about tweening and using the keyframes plus imagination.
    Good luck.

  • Unable to load swf from different domain through html wrapper in Chrom

    Hi All,
           I am trying a embed a swf from different domain. My html wrapper was in one domain and swf was in another domain. I have embedded the swf into the html wrapper. When i run the html file it is loading the swf in firefox and working fine. But when i try to run the same html in chrom or IE the swf is aborted. I have crossdomain.xml file in both the servers which is also allowing both the domains. I was not able to figure out the issue. Can anybody help on this.
    regards,
    Jayagopal.

    Are you getting any errors or warnings?

  • Controlling loaded swf from main timeline

    Hello,
    I'm working on loading external swf files for ios. I am able to load the swf files and set them to visible or invisible in different frames. I am having trouble controlling the loaded swf files from the main timeline. Specifically, I would like to have a button on the main timeline, that when clicked will move a loaded swf to frame 1.
    Here is a code that loads one swf file:
    var myLoader1:Loader;
    var loaderContext1:LoaderContext = new LoaderContext(false, ApplicationDomain.currentDomain, null);
    if(myLoader1 == null)
              myLoader1 = new Loader();
              addChild(myLoader1);
    myLoader1.load(new URLRequest("folder/file1.swf"),loaderContext1);
    myLoader1.visible = true;
    backbutton.addEventListener(MouseEvent.MOUSE_DOWN, backbutton1);
    function backbutton1(myEvent:MouseEvent):void {???????????? myLoader1.gotoAndStop(1);}  (this line does not work)
    (Once I load file1.swf, within the file1.swf I click a forward button to move to different frames. My question is: how do I code the 'backbutton' on the main timeline so that it causes the loaded file1.swf to go to frame 1?)
    Thank you for your help.

    sure.
    if the movieclip on the loaded swf's main timeline has reference mc, you would use:
    MovieClip(myLoader.content).mc.gotoAndStop(1);
    p.s.  you might find the following helpful,  http://kb2.adobe.com/community/publishing/918/cpsid_91887.html

  • Can't stop loaded .swf from looping

    I have a loaded .swf that has the necesary stops to just play once and stop. It works when testing the movie, but once uploaded to the server, it loops forever, any ideas,  I am using ActionScript 2.0

    it works when tested in HTML browser, but not when uploaded to server

  • Using jump menu to load swf to a target...

    is it possible to use the selections of a jump menu, once when one is selected to load a .swf to a certain target on the page.
    i.e. at www.meadowlarkco.com/index2_new8.htm I have a jump menu with selections within it. Is it possible for instance once I select "flatbed services" for it to a load a new .swf movie to a location on the page, much like an empty mc holder would be used. Then when each new selection is made from the jump menu it will load the according .swf to the same location.....how would I start this script to change my current jump menu?
    thanks for any help provided

    For many reasons, a JumpMenu would not be my first choice for this.  You need a stable cross browser media player embedded into the page and a playlist of files to pull this off.
    Have a look at Wimpy Rave with Full Advertising / Playlists (NOTICE: this link contains auto playing sound and video).
    http://www.wimpyplayer.com/examples/rave/ex_ad_playlist.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Load SWF from text link?

    Hi
    I have navigation movieclips which load external SWF's into
    my "loader_mc" empty movie clip on my stage, however I need to add
    some text onto certain pages and from this text create hyperlinks
    which are meant to load external SWF's also into the same loader_mc
    movie clip.
    Firstly, is this even possible - i.e. load external swf's
    from text links?
    Secondly, if so, how? When i select the text, the actions
    panel is always disabled.
    Any suggestions or advice would be greatly appreciated.
    Thanks

    I just have stop(); on the swf
    this is the code for adding the swf
    addBubbles(e.currentTarget);
            private function addBubbles(e:Object):void
                var xx:Number = e.x;
                var yy:Number = e.y;
                var bubble:boxg = new boxg();
                bubble.x = xx;
                bubble.y = yy;
                e.parent.addChild(bubble);
                bubble.gotoAndPlay(1);
    But when i run the debug i get an error on this line - e.parent.addChild(bubble);
    Error #1009: Cannot access a property or method of a null object reference.
        at InventoryItem/addBubbles()[C:\Documents and Settings\frida\Desktop\hello99\hello3\InventoryItem.as:39]
        at InventoryItem/mouseClickHandler()[C:\Documents and Settings\frida\Desktop\hello99\hello3\InventoryItem.as:28]
    what that means?
    Thank you

  • Multiple MovieClips Loading SWF From Same Array (Posted Code)

    Hey there,
    I'm currently working on a project that has eight separate movieclips (for loading content) on separate layers.  I have placed code in these mc's to randomly draw from the same array of 61 different swf's.  Each mc randomizes the array just fine, but here's the problem.  The code works great for one instance, but as soon as I add the code (including renaming) to the other mc's, the swf won't load/play.  I am not getting an compiler errors, and am kinda stuck as to what the problem may be.  Here's an example of the code I'm using.  It is the same for each mc, except I'm renaming the variables as well as the instances for each mc.  Thanks for any suggestions.
    Mike
    //filename = new Array("screen1.swf","screen2.swf","screen3.swf","screen4.swf","screen5.swf","screen6.swf" ,"screen7.swf","screen8.swf","screen9.swf","screen10.swf","screen11.swf","screen12.swf","s creen13.swf","screen14.swf","screen15.swf","screen16.swf","screen17.swf","screen18.swf","s creen19.swf","screen20.swf","screen21.swf","screen22.swf","screen23.swf","screen24.swf","s creen25.swf","screen26.swf","screen27.swf","screen28.swf","screen29.swf","screen30.swf","s creen31.swf","screen32.swf","screen33.swf","screen34.swf","screen35.swf","screen36.swf","s creen37.swf","screen38.swf","screen39.swf","screen40.swf","screen41.swf","screen42.swf","s creen43.swf","screen44.swf","screen45.swf","screen46.swf","screen47.swf","screen48.swf","s creen49.swf","screen50.swf","screen51.swf","screen52.swf","screen53.swf","screen54.swf","s creen55.swf","screen56.swf","screen57.swf","screen58.swf","screen59.swf","screen60.swf","s creen61.swf");
    //i = filename.length;
    //k=random(i)
    //_root.movieTarget.loadMovie(filename[k]);
    //movieTarget._xscale=80;
    //movieTarget._yscale=80;
    var fileNames:Array = ["screen1.swf","screen2.swf","screen3.swf","screen4.swf","screen5.swf","screen6.swf","scr een7.swf","screen8.swf","screen9.swf","screen10.swf","screen11.swf","screen12.swf","screen 13.swf","screen14.swf","screen15.swf","screen16.swf","screen17.swf","screen18.swf","screen 19.swf","screen20.swf","screen21.swf","screen22.swf","screen23.swf","screen24.swf","screen 25.swf","screen26.swf","screen27.swf","screen28.swf","screen29.swf","screen30.swf","screen 31.swf","screen32.swf","screen33.swf","screen34.swf","screen35.swf","screen36.swf","screen 37.swf","screen38.swf","screen39.swf","screen40.swf","screen41.swf","screen42.swf","screen 43.swf","screen44.swf","screen45.swf","screen46.swf","screen47.swf","screen48.swf","screen 49.swf","screen50.swf","screen51.swf","screen52.swf","screen53.swf","screen54.swf","screen 55.swf","screen56.swf","screen57.swf","screen58.swf","screen59.swf","screen60.swf","screen 61.swf"]
    fileNames.sort(function () {
        return Math.round(Math.random());
    trace("Random array: " + fileNames);
    var currentMovieNum:Number = 0    ;
    this.createEmptyMovieClip("container", _root.getNextHighestDepth());
    var mcl:MovieClipLoader = new MovieClipLoader();
    var mclListener:Object = new Object();
    mcl.addListener(mclListener);
    mclListener.onLoadInit = function(movieTarget:MovieClip) {
        trace("Preparing to play: " + fileNames[currentMovieNum]);
    movieTarget.loadClip(fileNames[currentMovieNum], container);
    movieTarget._xscale=80;
    movieTarget._yscale=80;
    this.onEnterFrame = function() {
        if (currentMovieNum == fileNames.length) {
            currentMovieNum = 0;
        } else {
            if (movieTarget._currentframe == movieTarget._totalframes) {
                mcl.loadClip(fileNames[currentMovieNum], movieTarget);
                currentMovieNum++;

    Thanks for taking a look at this.  The randomizer seems to work just fine, as here is a sample output from the trace:
    Random array: screen47.swf,screen2.swf,screen57.swf,screen21.swf,screen9.swf,screen49.swf,screen36.swf, screen17.swf,screen6.swf,screen59.swf,screen15.swf,screen12.swf,screen33.swf,screen25.swf, screen42.swf,screen22.swf,screen24.swf,screen40.swf,screen11.swf,screen19.swf,screen32.swf ,screen35.swf,screen7.swf,screen39.swf,screen23.swf,screen4.swf,screen1.swf,screen48.swf,s creen31.swf,screen45.swf,screen29.swf,screen18.swf,screen51.swf,screen14.swf,screen34.swf, screen10.swf,screen38.swf,screen26.swf,screen16.swf,screen13.swf,screen55.swf,screen37.swf ,screen44.swf,screen61.swf,screen43.swf,screen20.swf,screen28.swf,screen30.swf,screen56.sw f,screen50.swf,screen54.swf,screen53.swf,screen46.swf,screen58.swf,screen41.swf,screen8.sw f,screen5.swf,screen52.swf,screen3.swf,screen60.swf,screen27.swf
    Might you be able to lead me down a better path?  I'm currently unable to get this to function for multiple symbols.  The previous is the code that I've placed on the first keyframe of a movieclip with an instance name of movieTarget.  Works swimmingly for one, but once the code is placed on the other symbols on different layers, it seems to only work on the lowest layer in the project.
    M

  • Load swf from memory into FlahPlayer ActiveX

    Hello,
    I am developing an application which must load a swf file
    into the
    activex directly from memory. My development is almost
    complete but I
    have a problem with the last part of the implementation.
    I am using an implementation of IBindHost, and passing the
    stream
    trough an IMoniker implementation.
    I don't know if someone here can help me, if so I will
    explain deeply
    my question.
    Thanks,
    Vicente.

    Hello,
    I am developing an application which must load a swf file
    into the
    activex directly from memory. My development is almost
    complete but I
    have a problem with the last part of the implementation.
    I am using an implementation of IBindHost, and passing the
    stream
    trough an IMoniker implementation.
    I don't know if someone here can help me, if so I will
    explain deeply
    my question.
    Thanks,
    Vicente.

  • Load swf from memory into FlashPlayer ActiveX (Visual C++)

    Hello,
    I am developing an application which must load a swf file
    into the
    activex directly from memory. My development is almost
    complete but I
    have a problem with the last part of the implementation.
    I am using an implementation of IBindHost, and passing the
    stream
    trough an IMoniker implementation.
    I don't know if someone here can help me, if so I will
    explain deeply
    my question.
    Thanks,
    Vicente.

    Hello,
    I am developing an application which must load a swf file
    into the
    activex directly from memory. My development is almost
    complete but I
    have a problem with the last part of the implementation.
    I am using an implementation of IBindHost, and passing the
    stream
    trough an IMoniker implementation.
    I don't know if someone here can help me, if so I will
    explain deeply
    my question.
    Thanks,
    Vicente.

  • Loading SWF from CS5

    Hi,
    I'm porting a plug-in from CS4 to CS5 which has Flex components to it.  There is no mention of any changes in the Flex portion of the API in the porting guide, but yet it's obviously changed.  To make things worse, the sample flexuistroke is missing all the C++ code.
    I made the obvious change from LoadMovie to LoadSWF and while all function calls succeed, the SWF file never shows up in our panel.
    Can anyone tell me either what's changed or provide an example?
    Thanks

    later some debug, I found this:
    buttons on a container MovieClip react slower than buttons on main timeline (all air versions [desktop, android])
    seems (and sounds, to say the truth) to be correct the running path: [mouse events:]
    OVER -> DOWN [and then] UP -> CLICK
    but,
    OVER -> DOWN [and then] UP -> CLICK with buttons in main timeline is fast enough
    OVER -> DOWN [and then] UP -> CLICK with buttons a MovieCLip is not fast enough to be acceptable
    and, in the case:
    OVER -> DOWN [and then] UP -> CLICK with buttons a MovieCLip is AIR for Android is terribly SLOW (can't use buttons?!?!)
    adobe, have I to open a bug report?
    Massimiliano
    nb AIR 2.5.1 (I ask to myself if previous versions of AIR were free from this bug, or if worldwide developers are used to not to use buttons in movieclips when developing for AIR...)

  • Loading swf from database

    well, the question is - is this possible - storing a swf as
    binary data in a n online db (nt not a ref to it), then sending a
    query and recieving the swf with out it actually being written to
    disk

    what's your url?

Maybe you are looking for

  • Using RCA/Composite video on tube TV - problem

    I bought the Apple DVI to Video Adapter for my old 19" tube TV. The screen resolution was at 8--x--- by default. Everything was working fine for the past few weeks. I opened up iTunes, which then prompted me to enlarge my screen resolution. I enlarge

  • Report based on Object Types

    Hi All, I am using Oracle 9i & Developer 6i on Windows platform in client/server environment. I created a report based on an Object Type defined in the Database. I am facing two problems in that: 1. Its not picking up Date columns properly. When I ru

  • COMPANY CODE NOT ASSIGNED

    HI ALL WHERE I HAVE TO ASSIGN CO.CODE TO COUNTRY. I GOT THE ERROR DURING PO. Company code not assigned to country or country to calculation proced

  • Problem with importing Web Service Model

    Hello, in my Web Dynpro project I try to import a web service model. After choosing the wsdl file the different classes and files are generated but in the Web Dynpro Explorer there is no Model created in the Node Models. Also after reloading and rebu

  • REG:PEFORM IN SCRIPT

    HAI, HOW CAN I USE PERFORM IN SAP SCRIPT. HOW TO RETURN A VALUE FROM SUBROUTINE AND <u><b>HOW WILL I PRINT IT IN SCRIPT.</b></u>EXPLAIN WITH EXAMPLE. IS IT REQ A 'WRITE_FORM" FUNCTION. THANK YOU ASHOK KUMAR