Delegate in as3

This probably is trivial but I am not sure what the problem is. I am trying to call an event listener for a button. The problem is I have many buttons each with a string variable attached to them so that the click function can go to the frame name that is attached to the button. normally I would use the delegate class so that I could just call gotoAndPlay(this.frame) but as I understand it, as3 does not have the delegate class and basically does it automatically. So I call gotoAndPlay(this.frame) without using delegate. This results in a runtime error "ArgumentError: Error #2109: Frame label null not found in scene Scene 1." Does anyone know what the problem is? Here is my code:
import flash.events.MouseEvent;
button0.addEventListener(MouseEvent.CLICK,click);
button0.frame = "scene_1";
button1.addEventListener(MouseEvent.CLICK,click);
button1.frame = "scene_2";
button2.addEventListener(MouseEvent.CLICK,click);
button2.frame = "scene_3";
function click(event:MouseEvent):void{
    gotoAndPlay(this.frame);

In case you are interested about why Delegate (which was a workaround in AS2) is no longer needed in AS3:
Help Files: ActionScript 3.0 enables a method closure to automatically remember its original  object instance. This feature is useful for event handling. In ActionScript 2.0,  method closures would not remember what object instance they were extracted  from, leading to unexpected behavior when the method closure was invoked. The  mx.utils.Delegate class was a popular workaround, but it is no longer needed.

Similar Messages

  • What is AS2 for Event.REMOVED_FROM_STAGE (AS3)?

    Hi,
    I am used to AS3 and am translating back to AS2.  I want to check if something has been removed from the stage.  In AS3, I used this:
    obj.addEventListener(Event.REMOVED_FROM_STAGE, objRemovedFromStageHandler);
    How can I do this in AS2?
    I have been trying to use the delegate class to set up an onEnterFrame event that I can then remove.  I have this working with events for button clicks etc but not onEnterFrame.  Well, i can get it working, but how do I set it up so I can remove a specific onEnterFrame, as I need to use multiple onEnterFrame throughout the script?
    Any suggestions very welcome.
    Many thanks,
    Mike

    in as2 you can just check if the object exists:
    if(obj)
    but no event is dispatched.
    if it does it's either on-stage or on the back-stage which you can check if needed.

  • RemoveEventListener() vs. Delegate.create()

    I have a custom button class that uses the mx.events.EventDispatcher class.
    I've properly initialized my button instances and am able to addEventListeners and removeEventListeners when I'm using statements such as this:
    curButton.addEventListener("release",roleSelected);
    curButton.removeEventListener("release",roleSelected);
    But since roleSelected is called from the scope of the button that was released I wanted to use Delegate like such:
    var home:MovieClip=this;
    curButton.addEventListener("release",Delegate.create(home,roleSelected));
    curButton.removeEventListener("release",Delegate.create(home,roleSelected));
    But the listener isn't getting removed. I'm wondering if there is something obvious that I am missing?
    Thanks.

    That is AS2 code, this is the AS3 forum.  Try reposting in the AS2 forum.

  • AS3 to AS2 communication

    I have a SWFLoader in my AS3 application and into my AS3 SWFLoader, I load a AS2Shell.
    In this AS2 Shell, I load a movie in an empty MovieClip that I created.
    Try as I might, I am not able get the movie (thatt is loaded within AS2) to stay within my AS3 SWF Loader width and height. Below in my AS3 SWF Loader definition and my AS2 Shell code. Does someone know how to get this to work. By the way, setting Stage.scaleMode in my AS2 Shell does not seem to fix the problem.
    AS3 SWF Loader def:
            <mx:SWFLoader id="swfPlayer"
                right="22" left="22" top="18" bottom="18"
                scaleContent="false" maintainAspectRatio="true"
                horizontalAlign="center" verticalAlign="middle"
                enabled="true">
            </mx:SWFLoader>
    ===========================================
    AS2 code
    import mx.utils.Delegate;
    function init()
        //Stage.align         = "TL";
        //Stage.scaleMode     = "showAll";
        var LC_IN_NAME:String    = "_JXLFlashProxy_IN";
        var LC_OUT_NAME:String    = "_JXLFlashProxy_OUT";
        // Flex talks to me
        in_lc = new LocalConnection();
        in_lc.playVideo = Delegate.create(this, playVideo);
        in_lc.stopVideoPlayer = Delegate.create(this, stopVideoPlayer);
        in_lc.gotoNextFrame = Delegate.create(this, gotoNextFrame);
        in_lc.gotoPrevFrame = Delegate.create(this, gotoPrevFrame);
        // the underscore prefix gets around domain restrictions
        in_lc.connect(LC_IN_NAME);
        // I talk to Flex
        out_lc = new LocalConnection();
    function playVideo(fileName:String):Void
        var __vid:MovieClip;
        var __vidMCL:MovieClipLoader;
        if(__vid == null)
            __vid = createEmptyMovieClip(__vid, 0);
            __vid._lockroot = true;
            __vidMCL = new MovieClipLoader();
            __vidMCL.addListener(this);
            __vidMCL.loadClip(fileName, __vid);
            out_lc.send(LC_OUT_NAME, "onPlayVideoResult", true);
        else
            out_lc.send(LC_OUT_NAME,
                        "onPlayVideoResult",
                        false,
                        "ERROR: Video already playing.");
    function gotoNextFrame():Void
        __vid.nextFrame();
    function gotoPrevFrame():Void
        __vid.prevFrame();
    function onLoadInit():Void
        out_lc.send(LC_OUT_NAME, "onVideoPlayerLoaded");
    function stopVideoPlayer():Void
        if(__vid != null)
            //__vid.videoPlayer.stop();
            __vid.removeMovieClip();
            delete __vid;
            out_lc.send(LC_OUT_NAME, "onStopVideoPlayerResult", true);
        else
            out_lc.send(LC_OUT_NAME, "onStopVideoPlayerResult", false, "ERROR: Video player already stopped.");
    init();

    I'm in the process of documenting a process I developed on
    creating a
    Flash-wrapper to launch/control/track Captivate and
    Presenter-based files.
    It's based on the same component I build (and documented)
    here:
    http://www.connectusers.com/tutorials/2009/02/certificates/index.php
    The current article is about creating custom Flash-based
    certificates in
    Presenter/Captivate. The component will be the same, but I
    just realized in
    the last day or so, that I'll have to provide an update to
    better support
    funcitonality required in the Flash shell (but the component
    can be used for
    both purposes).
    Keep an eye out on ConnectUsers.com for more articles and
    interesting
    tidbits, I will be documenting.
    Regards,
    Andrew

  • In Ical/delegate issue, Please help

    In Ical, I have several calendars I maintain for others.  I currently maintain about 8 calendars.  All of the calendars when added under the delegate tab pop up on Ical under their email address, excep two and they pop up under my email address.  Any ideas as to why these would pop up under my email instead of the owners email address?  Makes it very difficult to keep track of the different calendars when I can't tell whose is whose.  Any ideas?  I added all of the delegate calendars exactly the same way, so I don't understand why they appear this way on my ICal when the others show up correctly.

    hello, if you don't get help here, might repost in iCal forum...
    https://discussions.apple.com/community/applications/ical

  • Need help trying to have more than one delegate calendar display in iCal and on mobile devices

    I have several calendars that are under my user name in Google. They all work as delegates and life is good.
    I'm trying to set up the local school with a calendar for the sports schedule as well as a separate one for district events like school board meetings and would like to be able to add one for the holidays, exams and things of that nature. The sports calendar works but I can't figure out how to add the second caledar to iCal or my iPhone. It shows shared but doesn't appear as a possible delegate in iCal and will not load on the iPhone.
    Google has the output to allow more than one calendar to display on a website but syncing at the level I want with the "i" apps isn't obvious.
    Am I missing something? I really don't want one very cluttered master calendar for the school. Being able to turn on and off the various types of calendar will make it much easier to manage.

    I have several calendars that are under my user name in Google. They all work as delegates and life is good.
    I'm trying to set up the local school with a calendar for the sports schedule as well as a separate one for district events like school board meetings and would like to be able to add one for the holidays, exams and things of that nature. The sports calendar works but I can't figure out how to add the second caledar to iCal or my iPhone. It shows shared but doesn't appear as a possible delegate in iCal and will not load on the iPhone.
    Google has the output to allow more than one calendar to display on a website but syncing at the level I want with the "i" apps isn't obvious.
    Am I missing something? I really don't want one very cluttered master calendar for the school. Being able to turn on and off the various types of calendar will make it much easier to manage.

  • Issue in custom delegate control

    hi 
     am  creating a custom delegate control with controlid ="AdditionalPageHead" . i deployed and activated as a  site collection feature.
    but i am not sure how to see the activated control/  how to see this control in action.
    below is my code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Administration;
    using Microsoft.SharePoint.Utilities;
    using Microsoft.SharePoint.Diagnostics;
    namespace OPUserDispName
      public  class EcmaScriptDelegateControl :WebControl
          protected override void OnLoad(EventArgs e)
              base.OnLoad(e);
              string helloAlert = "alert('Hello, world!');";
              this.Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "popup", helloAlert, true);
    //          if(!HttpContext.Current.User.Identity.IsAuthenticated)
       //              return;
          //       SPUser user = //SPContext.Current.Web.EnsureUser("i:0#.f|OPMembership|OPAdmin");
       //          user.Name = "OPAdmin";
          //       user.Update();
    in my  elements.xml file  of my module :
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
        <Control Id="AdditionalPageHead" ControlAssembly="OPUserDispName, Version=1.0.0.0, Culture=neutral, PublicKeyToken=467af93481413beb" ControlClass="OPUserDispName.EcmaScriptDelegateControl"
    ></Control>
    </Elements>
    here i wanna see alert when the activated/or page load happened.
    may i know, how to see this, in working. as per the current scenario, am unable to see any output even after feature activation. 
    do i need to do any settings in master page? do i need to perform any changes in web.config.
    help is appreciated!

    This has complete solution.
    http://www.codeproject.com/Articles/113704/SharePoint-Master-Page-Customizations-Through
    can you try RegisterStartupScript instead
    of RegisterClientScriptBlock?
    Bala

  • Photo gallery in as3

    I'm making photo gallery where photos will be loaded from external xml file but i have problem. I want to add an effect when photo is changing like on this site: http://www.studiomelon.pl/index.html#/1/  Could somebody help me with that? I am noob in flash so please explain it as clear as you can. Thanks.

    I was sesrching for that for a long time before i created this tread. There is many tutorials and exaple files for page flip or page turn but i cant find good one. Many of them was coded in as1 or as2 other using php and java script so its difficult  to understant. I just want one simple solution for that. It cant be so hard to create something like that. Could you help me to find some good and simple tutorial in as3?

  • Microsoft Outlook 2010 The delegates settings were not saved correctly. Cannot activate Send-on-behalf-of list. You do not have sufficient permission to perform this operation on this object.

    I am trying to assign delegation to a user and I receive the following message.
    The delegates settings were not saved correctly.  Cannot activate Send-on-behalf-of list.  You do not have sufficient permission to perform this operation on this object.
    We are using 2010 for the server and client.  There are only specific mailboxes that this is happening for after being migrated from Lotus Notes.  The user can use their mailfile fine however it is just the delegation that appears corrupted somehow. 
    I'm not sure how to fix this.  I have checked the access through the security tab in ad and that looks fine.
    Any help would be appreciated.

    I did some more digging and I solved it.
    This would be the solution:
    In Active Directory Users and Computers
    -Click on VIEW
    -Click on ADVANCE FEATURES  (this is important otherwise you won't see
    the complete list in the next steps)
    -Click on the USERS container
    -Find the problem user's account
    -Right mouse the account and click on PROPERTIES
    -Click on the SECURITY tab
    -In the top box, click on the SELF account
    -In the bottom portion of the screen make sure the READ PERSONAL
    INFORMATION  & WRITE PERSONAL INFORMATION  should both be checked for
    ALLOW
    If you can compare the permissions for 'SELF' with another user you probably should set them accordingly to be safe. I noticed that for the user where setting delegates (SOB) did
    not work, more than those 2 permissions were missing.
    Good luck!
    David

  • Creating an "if" Statement in AS3

    I've been having a problem trying to implement 2 email forms in the same scene at different places in the timeline.  If I do just one form, there isn't a problem, but there is a problem with the 2nd form (I've tried using different instance names to no avail). However, it appears I have most of it figured out, but am still having a problem, which I believe I may have a solution for by using an "if" statement.  In the following AS3 code is a string that reads var URL_request:URLRequest = new URLRequest( "send_email.php" ); I believe I may be able to resolve the problem if I had a 2nd string (in the same code) that read var URL_request:URLRequest = new URLRequest( "send_email_02.php" ); Is there a way to include that string in the same AS3 by using an "if" statement telling the code to "submit" the 2nd form?  If so, could someone please give me an example of how to write that "if" statement? This form has been driving me nuts for 4 days now and any help would be greatly appreciated. Thank you.
    stop();
    contact_name.text = contact_email.text = contact_subject.text =
    contact_message.text = message_status.text = "";
    send_button.addEventListener(MouseEvent.CLICK, submit);
    reset_button.addEventListener(MouseEvent.CLICK, reset);
    var timer:Timer;
    var var_load:URLLoader = new URLLoader;
    var URL_request:URLRequest = new URLRequest( "send_email.php" );
    URL_request.method = URLRequestMethod.POST;
    function submit(e:MouseEvent):void
    if( contact_name.text == "" || contact_email.text == "" ||
      contact_subject.text == "" || contact_message.text == "" )
      message_status.text = "Please complete all text fields.";
    else if( !validate_email(contact_email.text) )
      message_status.text = "Please enter a valid email address.";
    else
      message_status.text = "sending...";
      var email_data:String = "name=" + contact_name.text
            + "&email=" + contact_email.text
            + "&subject=" + contact_subject.text
            + "&message=" + contact_message.text;
      var URL_vars:URLVariables = new URLVariables(email_data);
      URL_vars.dataFormat = URLLoaderDataFormat.TEXT;
      URL_request.data = URL_vars;
      var_load.load( URL_request );
      var_load.addEventListener(Event.COMPLETE, receive_response );
    function reset(e:MouseEvent):void
    contact_name.text = contact_email.text = contact_subject.text =
    contact_message.text = message_status.text = "";
    function validate_email(s:String):Boolean
    var p:RegExp = /(\w|[_.\-])+@((\w|-)+\.)+\w{2,4}+/;
    var r:Object = p.exec(s);
    if( r == null )
      return false;
    return true;
    function receive_response(e:Event):void
    var loader:URLLoader = URLLoader(e.target);
        var email_status = new URLVariables(loader.data).success;
    if( email_status == "yes" )
      message_status.text = "Success! Your message was sent.";
      timer = new Timer(500);
      timer.addEventListener(TimerEvent.TIMER, on_timer);
      timer.start();
    else
      message_status.text = "Failed! Your message was not sent.";
    function on_timer(te:TimerEvent):void
    if( timer.currentCount >= 10 )
      contact_name.text = contact_email.text = contact_subject.text =
      contact_message.text = message_status.text = "";
      timer.removeEventListener(TimerEvent.TIMER, on_timer);

    While the overall scenario isn't all that clear to me, you don't necessarily need an if statement, but just have the different submit buttons assign the different URL_request values before they intiate any other processing.

  • Help with a preloader in AS3

    Hi,
    I upload a website and I have problems with the preloader did it in AS3. It starts after two or three minutes. I have a MC with an animation of 100 frames and the dynamic text of the percent. The preloader is located in the 1 frame to the 10, I mean, first frame with the actions and the other three layers (text, MC and background) with a lenght of 10. The movie has 525 frames. Here is the code:
    stop();
    addEventListener(Event.ENTER_FRAME, lodeando);
    function lodeando(event:Event):void
              var bytesTotales = stage.loaderInfo.bytesTotal;
              var bytesCargados = stage.loaderInfo.bytesLoaded;
              var porcentaje = Math.round(bytesCargados * 100 / bytesTotales);
              textoPorcentaje.text = porcentaje + "% Cargados";
              cargaAnimada_mc.gotoAndStop(porcentaje);
              if (bytesCargados == bytesTotales)
                        removeEventListener(Event.ENTER_FRAME, lodeando);
                        gotoAndPlay(2);
                        textoPorcentaje.text = "";
                        removeChild(textoPorcentaje);
                        removeChild(cargaAnimada_mc);
    Please, Could you help me?.

    These screen captures show the library of the movie. As you can see I export the most of them. However I have doubts about if I must convert to symbol the graphics. I have the preloader in the "presentación" folder without any exportation.
    Please, Could you correct the website?. Please, tell me an e-mail address and I send you the website via WeTransfer.

  • Exchange 2010 SP1 Delegate user "Sent on Behalf" not showing in emails

    I am trying to set up a user to be a delegate to another users account so that they can answer email messages while the other user is away.  When I add them as a delegate either through exchange (Delivery Options -> send on behalf -> grant this
    permission to:) or with outlook, the user is able to send and reply to emails sent to the other user, but it looks like the Actual user is sending the email.  It is not adding the Sent on behalf of text to the FROM line.
    I cannot seem to find a way to enable this text to be added to the emails.  Any help with this would be appreciated.

     
    Hi,
    Based on your description, I understand that you have a delegate and the delegate can send email as your mailbox, but you just grant him send on behalf permission, am I right? If I misunderstand your
    concern, pleas feel free to correct me.
    First, please run the command Get-Mailbox -Identity your name |Select-Object GrantSendOnbehalfTo, and check whether your delegate will be listed.
    And then, run the command Get-Adpermission -Identity you name -user your delegate |fl and check output.
    At last, please make sure that when your delegate send or reply a email, he choose from filed. In Outlook, by default, it will send or reply email by the mailbox owner.
    I look forward to hearing from your update.
    Best regards,
    Serena
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Text input action AS3

    I have a text input field on the timeline that I want the user to enter specific information in. When that information is correctly entered, I need the timeline to progress.
    I successfully used the following AS2, but I cant find corresponding code for AS3
    on (keyPress "x") {
    gotoAndPlay("s05");
    Any help on converting this function to AS3 is greatly appreciated.

    You can use an Event.CHANGE listener for the textfield and then test its value in the event handler function to see if it agrees with the required string...
    inputtField.addEventListener(Event.CHANGE, testEntry);
    function testEntry(evt:Event):void {
         if(inputField.text == "whatever"){
              // do stuff

  • New to Flash AS3, Need help with some weird issues, have .fla link attached...

    Basically, the buttons are not visible when siteplan_mc is replayeed after floorplan closes, but they still work. Most things are only working on double click for soe reason, tho I have them to function on click. and the back button only woorks on unit 1 floorplan, tho the code it the same for all floorplans. I have a feeling it has something to do with levels... but I really have no idea... hopefully someone can help!
    thanks in advance,
    Sarah
    http://www.30eastroosevelt.com/RRHA_SITE.fla

    There are at least two things you're doing wrong. You can't go to a frame where something exists for the first time, and immediately do something to it. Like in your playunit functios for example:
    gotoAndStop("unit1")
    unit1_mc.alpha = 1
    unit1_mc hasn't yet drawn itself on stage to have its alpha set, and so there's an error. That is something that was improved in Flash 10, so if you had set the Flash to publish for Flash 10 and not Flash 9, then the floor plans and the back buttons appears ok. It would sometimes work with double clicks because by the second time you clicked, the movieclip now existed. You might be able to do what you want by having all of the room units on frame 1 of the siteplan_mc, and then set their visible to true or false as you need them, instead of doing the gotoAndStop().
    The other problem is that you're trying to set listeners on the Back buttons that don't yet exist. Wait until you're on the frame where the buttons exists, and then set its listener for the mouse click.
    Other things you're doing could be improved too, but really you might want to get together with someone who has done more AS3, to help you become more familiar with how it works.

  • HELP! Uploading AS3 Game to server, no sound and Spacebar doesn´t work HELP!

    Hello, relatively new to AS3 and flash, this is the first time i am publishing anything. We are trying to upload our simple flashgame to our webserver, the game works perfectly fine locally save for one thing. We get an error regarding TLF which says it wont stream or something. So when it gets online, no sounds play and spacebar doesn't work, left and right arrow does work. We have three TLF text fields that are used to update score, lives and show you final score. If i turn these into classical text they stop working.
    Things we have tried: Changing default linkage from RLS to Merged into code, changing the text boxes to classical text(they then stop working), made sure the paths are correct(all files are in the same directory including the .swz file)
    This is the code from the soundclass:
    package 
        import flash.net.URLRequest;
        import flash.media.Sound;
        import flash.media.SoundChannel;
        import flash.events.*;
        public class MySound
            private var bgSound:Sound;
            private var fireSound:Sound;
            private var waterSound:Sound;
            private var earthSound:Sound;
            private var lightSound:Sound;
            private var soundChannel:SoundChannel;
            public function MySound()
                soundChannel = new SoundChannel();
                bgSound = new Sound();
                var req:URLRequest = new URLRequest("BackgroundSound.mp3");
                bgSound.load(req);
                //fire
                fireSound = new Sound();
                var req2:URLRequest = new URLRequest("soundFire.mp3");
                fireSound.load(req2);
                // water
                waterSound = new Sound();
                var req3:URLRequest = new URLRequest("soundWater.mp3");
                waterSound.load(req3);
                // earth
                earthSound = new Sound();
                var req4:URLRequest = new URLRequest("soundEarth.mp3");
                earthSound.load(req4);
                // light
                lightSound = new Sound();
                var req5:URLRequest = new URLRequest("soundLight.mp3");
                lightSound.load(req5);
            public function playBgSound()
                soundChannel = bgSound.play(0, 999999);
            public function stopBgSound()
                soundChannel.stop();
            public function playFireSound()
                fireSound.play();
            public function playWaterSound()
                waterSound.play();
            public function playEarthSound()
                earthSound.play();
            public function playLightSound()
                lightSound.play();
    I can somewhat get that sound can bugg out, but why does spacebar stop functioning? ANy help is greatly appreciated as this has to be delivered in twelve hours(published online) for a school assignment.

    Also might add publishing it locally in my own browser everything works, as does ofcourse playing it in flash itself. Changing from RLS to merged into code stops the error from coming, but doesn´t fix the problem on the server.
    Code from main class related to sound and spacebar:
    import flash.display.*;
        import flash.events.*;
        import flash.ui.Keyboard;
        import flash.text.TextField;
        import flash.media.Sound;
        import flash.net.URLRequest;
        import flash.events.MouseEvent;
        import flash.utils.Timer;
        import flash.events.TimerEvent;
        public class main extends MovieClip
            private var fireTimer:Timer; //delay between shots
            private var canFire:Boolean = true;
            private var mySound:MySound;
            private var bulletSpeed:Number = -450;
              public function main()
                //load sounds
                mySound = new MySound();
            private function playGame(event:MouseEvent)
                gotoAndStop(2);
                // initialize
                myLives = 5;
                myHitsNo = 0;
                weaponType = 1;
                mybullets = new Array();
                enemys = new Array();       
                myScoreTxt.text = "Score: " + myHitsNo;
                myLivesTxt.text = "Lives: " + myLives;   
                fireTimer = new Timer(400, 1);
                fireTimer.addEventListener(TimerEvent.TIMER, shootTimerHandler, false, 0, true);
                stage.addEventListener(KeyboardEvent.KEY_DOWN, listenKeyDown);
                stage.addEventListener(Event.ENTER_FRAME, addEnemy);
                stage.addEventListener(Event.ENTER_FRAME, checkCollision);   
                player = new thePlayer(stage.stageWidth-40, spawnPoint2);// stage.stageHeight/2);
                stage.focus = player;
                addChild(player);
                mySound.playBgSound();
    public function listenKeyDown(event:KeyboardEvent)  // Controls and weapontype selector
                if (event.keyCode == 37) //left
                    player.movethePlayerDown();
                if (event.keyCode == 39) //right
                    player.movethePlayerUp();
    if (event.keyCode == Keyboard.SPACE) //space
                    shootBullet();
                    //soundFX.attachSound("Pistol Fire.wav");
                    //soundFX.start();

Maybe you are looking for

  • Good issue to Production order - Allows it in back posting date

    Dear all, Good issue to Production order ( 261 Movement ), allows us to post the component in back dated eventhough stock is not avaible on that date. Example - Component stock on date 10.02.2010 = Zero , I made it Good receipt on date 18.02.2010 and

  • Hyperion 9.3 Financial Reporting error 'oColGroup.children'

    We have several production financial reporting reports that when run, return data but get the following error when run in workspace or through web preview in studio: line: ### Char: ## Error: 'oColGroup.children' is null or not an object Code: 0 I tu

  • Program to update BOM by CSAP_MAT_BOM_CREATE as error KEY_INCOMPLETE coming

    Hi to all, Can any one provide me sample program to update BOM via Function Module CSAP_MAT_BOM_CREATE. As i already have created the program , but run time error is coming KEY_INCOMPLETE for CSAP_MAT_BOM_CREATE. as i have already search the SDN , bu

  • Xi 3.1 SP3 fp3.2 : Syntax error when validating row restriction

    Hi all, we currently migrating from Xi R2 to Xi 3.1 sp3 fp 3.2 The database is sql server 2005 I have a universe with a row restriction. Here is the syntax : ISNULL(COMMERCIAUXREF_ACC.Ptf_TopComPriv,1)=1 COMMERCIAUXREF_ACC is an alias to the table db

  • Margins

    Hi, Is there any way to control the margins of the pdf when printing? Thank you