Middleware and Adapter Object help needed

Hi all,
We are trying to replicate business agreements from CRM to contract accounts in our R/3 IS-U system. We've followed the various cookbooks and guidelines but have so far been unsuccessful. For object BUAG_MAIN, is an adapter object needed? If so, we are unable to find one in R3AC1.
If we check the BDoc message, we are getting two Technical errors after creating the business agreement:
1. "Outbound call for BDoc type BUAG_MAIN to adapter module CRM_UPLOAD_TO_OLTP failed."
2. "Service that caused the error: SMW3_OUTBOUNDADP_CALLADAPTERS"
Any ideas? Points will be awarded for helpful responses. Thanks in advance.
Message was edited by:
        John S

So in R3AC1 there is a button to show inactive adapter objects. Hitting this showed BUAG_MAIN. After that, we opened BUAG_MAIN and activated the object. This resulted in a couple of changes that we clicked through. We then were able to do an initial load of the business agreements and replications of newly created ones happened thereafter.

Similar Messages

  • Demoting a DC and Group policy, help needed.

    Hi all,
    so we have 3 domain controllers, lets say dc1,dc2 and dc3. We have the 3rd line assistance from another company, they have advised the following.... 
    SO the stages will be
    1) Can you please go through all the GPO's in DC3 and consolidate what you need and what you do not need, you need to extensively cross reference this with DC1 and DC2, this is something you have to do. As I will not know what you need and what you do
    not. You can do this by logging into each domain controller and opening up the settings of each GPO and cross referencing.
    2) Once the above is done, we will consolidate the GPO's to a central repository in your domain
    3) Backup Sysvol directory and Netlogon folder in DC3
    3) Proceed to dcpromo DC3 out of the domain
    4) Test connectivity if clients to the AD
    5) Add the additional Server options
    6) All of the above can be done during office hours.
    it was my understanding (perhaps wrongly) that the group policies were not on the individual Domain Controllers but in Sysvol and as such replicated anyway?
    any advice would be very much appreciated.

    > I am being told that our Group policies are different across different
    > Domain Controllers and to my knowledge that's impossible as we have
    > discussed it should be in the replicated Sysvol.
    Ok, that's a common problem. Fix it and you will be fine:
    http//support.microsoft.com/kb/2218556 (for DFS-R Replication of Sysvol)
    http://support.microsoft.com/kb/315457 (for NTFRS replication)
    > I'm a bit lost on the central repository aspect but prior to saying it
    > makes no sense I just wanted to check my understanding, especially with
    > an MVP!
    I agree. Talking of a "central repository" fro group policy doesn't make
    sense, because group policy from the very beginning lives in AD and
    sysvol, which both are kind of "central repository". Seems they don't
    really know what they're talking about :)
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Failed to create object.Help needed

    Hi, I have some program here, the BPDU class and also the RootBridge class. The BPDU class is just a simple class with all the getMethods and the setMethods. For the RootBridge class, it is suppose to connect to the JDBC ODBC database, and create arraylist and retrieve the mac address, priority and also the port id from the database. However, when I tried to create a BPDU object, it gives me an error saying :
    --------------------Configuration: j2sdk1.4.2_01 <Default>--------------------
    F:\new Project FYP\RootBridge.java:43: BPDU(java.lang.String,double,java.lang.String,int,java.lang.String,java.lang.String) in BPDU cannot be applied to ()
                        BPDU bpdu =new BPDU();
    ^
    1 error
    Here are the classes:
    BPDU class:
    public class BPDU
         private String BridgeIDMac;
         private double BridgeIDPriority;
         private String MsgType;
         private int CostPath;
         private String PortID;
         private String ComputerName;
         public BPDU(String BridgeIDMac, double BridgeIDPriority,String MsgType,int CostPath, String PortID, String ComputerName)
              this.BridgeIDMac=BridgeIDMac;
              this.BridgeIDPriority=BridgeIDPriority;
              this.MsgType=MsgType;
              this.CostPath=CostPath;
              this.PortID=PortID;
              this.ComputerName=ComputerName;
         public String getBridgeIDMac()
              return BridgeIDMac;
         public double getBridgeIDPriority()
              return BridgeIDPriority;
         public String getMsgType()
              return MsgType;
         public int getCostPath()
              return CostPath;
         public String getPortID()
              return PortID;
         public String getComputerName()
              return ComputerName;
         //SET METHODS
         public void setBridgeIDMac(String mac)
              BridgeIDMac=mac;
         public void setBridgeIDPriority(double priority)
              BridgeIDPriority=priority;
         public void setMsgType(String msg)
              MsgType=msg;
         public void setCostPath(int costpath)
              CostPath=costpath;
         public void setPortID(String portid)
              PortID=portid;
         public void setComputerName(String computername)
              ComputerName=computername;
    RootBridge Class:
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    import java.net.*;
    import java.lang.*;
    public class RootBridge
         private Connection con;
         private String macaddress;
         private int priority;
         private int portid;
         public RootBridge()
              try
                   //ESTABLISH THE JDBC DATABASE CONNECTION
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   con = DriverManager.getConnection("jdbc:odbc:BPDU");
              catch(ClassNotFoundException c)
                   System.out.println(c+": JDBC Driver Could Not Be Loaded.");
              catch(SQLException s)
                   System.out.println(s+": Database Connection Could Not Be Established.");
         //TO RETRIEVE THE COMPUTER NAME  IN DATABASE
         public ArrayList retrieveComputerName()
              ArrayList arraylist=new ArrayList();
              try
                   PreparedStatement p=con.prepareStatement("Select ComputerName from BPDU");
                   ResultSet rs= p.executeQuery();
                   if(rs.next())
                        //************Here is the error
                                                                                         BPDU bpdu =new BPDU();                    bpdu.setComputerName(rs.getString("ComputerName"));
                        arraylist.add(bpdu);
              catch(SQLException s)
                   System.out.println(s+": Could not retrieve computer name from database");
              return arraylist;
         //to get the mac address that belong to the computer
         public BPDU retrieveMacAddress(String computername)
              System.out.println("DB1"+computername);
              try
                   PreparedStatement p=con.prepareStatement("Select BridgeIDMAC from BPDU where ComputerName=?" );
                   System.out.println("DB2"+computername);
                   p.setString(1,computername);
                   p.setString(2,computername);
                   p.setString(3,computername);
                   ResultSet rs=p.executeQuery();
                   if(rs.next())
                        macaddress=rs.getString("BridgeIDMAC");
                   System.out.println("DB4"+macaddress);
              catch(SQLException s)
                   System.out.println(s+": Could not retrieve the mac address from database");
         //to retrieve priority from database
         public BPDU retrievePriority(String computername)
              System.out.println("DB1"+computername);
              try
                   PreparedStatement p=con.prepareStatement("Select BridgeIDPriority from BPDU where ComputerName=?" );
                   System.out.println("DB2"+computername);
                   p.setString(1,computername);
                   p.setString(2,computername);
                   p.setString(3,computername);
                   ResultSet rs=p.executeQuery();
                   if(rs.next())
                        priority=rs.getInt("BridgeIDPriority");
                   System.out.println("DB4"+priority);
              catch(SQLException s)
                   System.out.println(s+": Could not retrieve the priority from database");
         //to retrieve port id from database
         public BPDU retrievePortID(String computername)
              System.out.println("DB1"+computername);
              try
                   PreparedStatement p=con.prepareStatement("Select PortID from BPDU where ComputerName=?" );
                   System.out.println("DB2"+computername);
                   p.setString(1,computername);
                   p.setString(2,computername);
                   p.setString(3,computername);
                   ResultSet rs=p.executeQuery();
                   if(rs.next())
                        portid=rs.getInt("PortID");
                   System.out.println("DB4"+portid);
              catch(SQLException s)
                   System.out.println(s+": Could not retrieve the port id from database");
    }Please see //************Here is the error in the Root Bridge class.Help me to solve the problem.Thank You very much

    Hi,
    The error message means that the BPDU class doesn't have an empty constructor. You must pass the in needed arguments to the BPDU constuctor.
    /Kaj

  • Find and Replace text and change font help needed.

    I am completely new to Scripting and I'm sure this is quite simple but I do not know where to start.
    I have a FM template that is populated with "raw" text from a database.
    Within the text are several characters (+, @, *, $, # and %).
    I need to replace these characters with symbols from a different font e.g.:
    Each instance of:
    "+" to be replaced with Wingdings 2 font - Lowercase t
    "@" to be replaced with Wingdings 2 font - Lowercase u
    "*"  to be replaced with Wingdings font - Uppercase E   etc.
    I would like to automate the process and believe a script would enable me to do this.
    I have tried looking on the forum, but can not find anything suitable to help me (or I'm looking in the wrong place).
    Any help would be greatly appreciated.
    Cheers
    Kev

    not really
    important is the Illustrator Text Object-model, which is not very easy to understand.
    And the Core JS String and regExp Objekts.
    Have a look at this:
    http://www.ogebab.de/home/skripte/text/replace
    The dialog is poor (because of compatibility) and it works simply on TextFrames.contents, i don't know if this is good i all cases.
    But i use it not very often so i don't want to rewrite it.
    Maybe it is a starting-point for you.
    But maybe it is more then you need.
    try this:
    //select a text
    var text = app.activeDocument.selection[0];
    var string = text.contents;
    string = string.replace(/ /g,"  ");
    text.contents= string;
    / /g is a regular expression
    .replace() is a method of the String Object
    both explained at
    https://developer.mozilla.org/en/JavaScript/Reference

  • MAC Mini Performance and display quality help needed!

    I am new to the mac, having used pcs for what feels like hundreds of years.
    I am enjoying the experience, but my MAC mini is so slow. Its a 2014 i5 2.6 Ghz with 8GB of RAM.
    For example starting safari takes 20+ seconds from clicking the icon to being able to type a web address.
    Also the display is not brilliant the text is blurred. I am using a LG HD Monitor running at 1920 x 1080 and 60 Hz.
    I have a Dell PC with very similar specs connected to the same monitor and it does not suffer blurred display.
    Thanks for your help

    EtreCheck version: 2.2 (132)
    Report generated 5/4/15, 11:26 AM
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        Mac mini (Late 2014) (Technical Specifications)
        Mac mini - model: Macmini7,1
        1 2.6 GHz Intel Core i5 CPU: 2-core
        8 GB RAM Not upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n/ac
    Video Information: ℹ️
        Intel Iris
            IPS237 1920 x 1080
    System Software: ℹ️
        OS X 10.10.3 (14D136) - Time since boot: 0:9:48
    Disk Information: ℹ️
        APPLE HDD HTS541010A9E662 disk0 : (1 TB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 998.98 GB (641.30 GB free)
                Core Storage: disk0s2 999.35 GB Online
    USB Information: ℹ️
        Apple, Inc. IR Receiver
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Microsoft Microsoft® LifeCam Cinema(TM)
        Hercules Rocksmith USB Guitar Adapter
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Anywhere
    Kernel Extensions: ℹ️
            /Library/Application Support/VirtualBox
        [loaded]    org.virtualbox.kext.VBoxDrv (4.3.26) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxNetAdp (4.3.26) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxNetFlt (4.3.26) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxUSB (4.3.26) [Click for support]
            /Library/Extensions
        [loaded]    com.sophos.kext.sav (9.2.50 - SDK 10.8) [Click for support]
        [loaded]    com.sophos.nke.swi (9.2.50 - SDK 10.8) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.motorola-mobility.driver.MotMobileUSB (1.2.2 - SDK 10.5) [Click for support]
            /System/Library/Extensions/MotMobileUSB.kext/Contents/PlugIns
        [not loaded]    com.motorola-mobility.driver.MotMobileMS (1.0.0 - SDK 10.5) [Click for support]
        [not loaded]    com.motorola-mobility.driver.MotMobileMTP (1.2.2 - SDK 10.5) [Click for support]
        [not loaded]    com.motorola-mobility.driver.MotMobileUSBLAN (1.2.2 - SDK 10.5) [Click for support]
        [not loaded]    com.motorola-mobility.driver.MotMobileUSBLANMerge (1.2.2 - SDK 10.5) [Click for support]
        [not loaded]    com.motorola-mobility.driver.MotMobileUSBSwch (1.2.2 - SDK 10.5) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.mokafive.m5tray.plist [Click for support]
        [failed]    com.motorola.MDMUpdater.plist [Click for support] [Click for details]
        [running]    com.motorola.motohelper.plist [Click for support]
        [loaded]    com.motorola.motohelperUpdater.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.sophos.uiserver.plist [Click for support]
        [failed]    net.juniper.pulsetray.plist [Click for support] [Click for details]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.ea.origin.ESHelper.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [running]    com.motorola-mobility.mmcfgd.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.sophos.common.servicemanager.plist [Click for support]
        [loaded]    jp.co.canon.IJNetworkToolHelper.plist [Click for support]
        [failed]    net.juniper.AccessService.plist [Click for support]
        [not loaded]    net.juniper.UninstallPulse.plist [Click for support]
        [not loaded]    org.virtualbox.startup.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [failed]    com.lastpass.LastPassHelper.plist [Click for support] [Click for details]
        [running]    com.spotify.webhelper.plist [Click for support]
        [loaded]    com.valvesoftware.steamclean.plist [Click for support]
        [not loaded]    org.virtualbox.vboxwebsrv.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        Google Chrome    Application  (/Applications/Google Chrome.app)
        Canon IJ Network Scanner Selector2    Application Hidden (/Library/Printers/Canon/IJScanner/Utilities/Canon IJ Network Scanner Selector2.app)
        Skype    Application Hidden (/Applications/Skype.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        EPPEX Plugin: Version: 10.0 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.9 - SDK 10.6 [Click for support]
        nplastpass: Version: 3.1.89 - SDK 10.10 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        MeetingJoinPlugin: Version: Unknown - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 40 Check version
    Safari Extensions: ℹ️
        Evernote Web Clipper
        PasswordBox
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        FUSE for OS X (OSXFUSE)  [Click for support]
        Java  [Click for support]
        MusicManager  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             4%    WindowServer
             1%    fontd
             1%    loginwindow
             1%    Google Chrome Helper(13)
             0%    taskgated
    Top Processes by Memory: ℹ️
        909 MB    Google Chrome Helper(13)
        674 MB    kernel_task
        467 MB    mdworker(12)
        401 MB    com.apple.WebKit.WebContent(5)
        180 MB    SophosScanD
    Virtual Memory Information: ℹ️
        1.24 GB    Free RAM
        6.76 GB    Used RAM
        0 B    Swap Used
    Diagnostics Information: ℹ️
        May 4, 2015, 10:08:53 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/Google Chrome_2015-05-04-100853_[redacted].crash
        May 2, 2015, 07:47:11 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/EvernoteHelper_2015-05-02-0747 11_[redacted].crash
        May 4, 2015, 11:13:54 AM    Self test - passed
        May 4, 2015, 10:02:56 AM    /Library/Logs/DiagnosticReports/Microsoft AutoUpdate_2015-05-04-100256_[redacted].cpu_resource.diag [Click for details]
        May 2, 2015, 09:13:07 AM    /Library/Logs/DiagnosticReports/Microsoft AutoUpdate_2015-05-02-091307_[redacted].cpu_resource.diag [Click for details]

  • Posting a Question and iPod mini help needed

    It's so frustrating to use this support site. I can't seem to find the right information.
    I need help. My iPod mini just suddenly conked out on me. Now it flashes the apple then an icon with a battery and an exclamation point inside a triangle. I tried to search for an answer in this site but all I got was a suggestion to reset it. I tried re-setting it and IT DIDN'T WORK!
    What do I do now? I really want to get this fixed as soon as possible. I happen to love my iPod. Please, please, someone help!

    Welcome to Apple Discussions, serangel.
    Here is the support site for using iPod mini.
    There are plenty of users there who will be happy to help.
    Cheers!

  • GROUP BY and ORDER BY help needed

    I have got an sql query where I have the need to pull out the latest copy of duplicate info, but what is happening is that the first instance is being displayed. The query I have is this:
    SELECT *
    FROM tbl_maincontenttext
    WHERE fld_menusection = 3
    GROUP BY fld_webpage
    ORDER BY fld_timedate DESC
    Basically, I have content that is listed under menu section 3, but within that I will have several copies of content that will relate to a specific webpage (eg: about us). What is currently happening is that GROUP BY is obviously grouping the similarly named 'about us', but it is pulling the first record it comes across out of the database rather than the latest updated record.
    As you can see, I am trying to get the query to order by fld_timedate which is a CURRENT_TIMESTAMP, but it's not working!
    I'm hoping that there is some sort of SQL that I am unaware of that will help me group by and display the latest update/content.
    Thanks.
    Mat

    It would help if you could show us the table definition. Your SQL statement is ambigous because you are selecting all table columns, yet only including one column in the group by clause.  A SQL statement must contain all selected columns that are not aggregates. Most DBMS will return an error for this statement. Others that don't return an error will return unexpected results.

  • Validation and Substitutions - Urgent Help needed

    Hello everyone,
    I need your help about this. This is the first time i am going to create a validation for document no. line items.
    The scenario is this:
    1. I need to check if the FI document that is to be posted contains line items where BSEG-LOKKT falls within the range of “0099990000-0099999999”. For each matching line item, I need to check if the credit line items balances with the debit line items. If TRUE then the validation will EXIT succesfully.
    2. If an FI document contains line items where BSEG-LOKKT falls within the range of “0099990000-0099999999”, but the sum of the debit line items and the credit line items is not equal to zero, validation will prevent thre user from posting the document. Error message will be raised.
    3. If FI document document does not contain line items with BSEG-LOKKT ranging from “0099990000-0099999999”, validation will exit successfully because there are no appropriate alternative accts to be verified.
    This validation will only apply to one company code.
    Please provide me with the step-by-step creation of the validation.
    Points will be rewarded for helpful answers.
    Thanks in advance.
    Bay

    look tcode ob28, validation exit and <a href="http://help.sap.com/saphelp_47x200/helpdata/en/5b/d231e143c611d182b30000e829fbfe/frameset.htm">here</a>
    A.

  • Scrolling, and Adaptive Layout help

    Hi guys, I am new to edge animate,
    I would like to know, like when a person scrolls its scrolls to a cirtain point seemlessly, not like when you are using a mouse, like blobk by block.
    also I would like to know more about adaptive layout, if anyone can help me more thorught skype,
    I would me really pleased, thank you
    my skype is Kevin2019170
    Thank you

    Well, only can help you with the background image...  put this code on document.compositionReady and window.resize events:
    var imageRatio = 1.7777; // Aspect 16:9, you can use any proportion depends of your image dimensions
    var sWidth = $(window).width()
    var sHeight = $(window).height()
    if ((sWidth / sHeight) > imageRatio) {
      sym.$("imgBackground").css("width", sWidth +"px");
      sym.$("imgBackground").css("height", sWidth/imageRatio +"px");
    else {
      sym.$("imgBackground").css("width", sHeight*imageRatio +"px");
      sym.$("imgBackground").css("height", sHeight +"px");

  • Weblogic EJB server and COM integration, help needed!

     

    Hi, but can I call COM from EJB?
    We tried J-Integra, it doesn't work. Do you know any other way to do it?
    thanks
    Charles
    "Damian Mehers" <[email protected]> wrote:
    You might want to take a look at the J-Integra pure Java-COM bridge which
    allows access to Java objects (including EJBs) running anywhere from COM
    clients such as VB.
    Doc: http://www.linar.com/jintegra/doc/
    Evaluation download: http://www.linar.com/
    Weblogic example:
    http://www.linar.com/jintegra/doc/javafromcom/weblogic.html
    Regards,
    Damian
    Damian Mehers.
    Linar Ltd. +44 (0)7050 669643 http://www.linar.com/
    J-Integra - the world's only pure Java-COM bridge
    "Pete" <[email protected]> wrote in message
    news:8dq5nc$eto$[email protected]..
    Hello all,
    I am soliciting opinions on how to implement this system:
    We have one portion of the system created, Java Client communicating with
    a Java server (EJB) running on Weblogic. There is another application inthe
    company that has expressed interest in using some of the logic containedin
    our
    servers, this application, however, is written in VB. I understand that
    Weblogic has a
    mechanism that will allow java programs to call COM functions. Is there a
    way to
    export a COM interface from a generic Java application? I was not able to
    find anything
    about that in the weblogic documentation, maybe I missed something?...
    As the VB app has no communication to our server as of yet, CORBA isanother
    option for us.
    I also know that Weblogic has CORBA support and we could port our
    communication mechanism
    to use that. I believe one would need to pay extra for that over and above
    their standard EJB server.
    The question then becomes, would we need any features of the EJB server?
    How does RMI-IIOP fit into this whole mess?
    Any opinions?
    Thanks for any tips,
    -Pete

  • Add/remove parent, child objects. help needed

    I'm working on interactive map for my client. But i'm stuck on functionality.
    It's basically has 3 locations (child1-3) on base map(Bg), each stands for link to their assigned popup boxes.
    Child2 and Child3 shares same Mag object which shows additional 5 locations.
    i've done showing my base Bg and 3 initial locations. Also i tried to show first popup box by clicking child1 and it has some success.
    But further i'm having problem for removing Box1 and it's BoxX button which means i want to return my Main_MC state by removing objects.
    **pls help me on my work so i'll appreciate for your valuable time for helping me. I'm open to send some bonus via Skrill or Paypal.
    Main_MC (parent)+
    |
    |___Bg
    |
    |
    |___child1+
    |              |___ Box1
    |             
    |___child2+
    |              |
    |              |                       |__box2
    |              |                       |__box3
    |              |___Mag+___|__box4
    |              |                       |__box5
    |              |                       |__box6
    |              |
    |              |
    |              |
    |___child3+
    Here is my toddler looking code i just started.
    package{
        import flash.display.Sprite;
        import flash.display.DisplayObject;
        import flash.events.MouseEvent;
        import flash.net.URLRequest;
        import flash.events.Event;   
        public class Main extends Sprite{
            private var Bg:Sprite;
            private var child1:Sprite;
            private var child2:Sprite;
            private var child3:Sprite;
            public function Main(){           
                var Bg:Sprite = new BgInstance();
                Bg.x=360;
                Bg.y=212;
                Bg.name="BgMap"
                addChild(Bg);
                child1 = new child1Instance();
                child1.buttonMode = true;
                child1.x=479;
                child1.y=132;
                child1.name="child1Name";
                child1.addEventListener(MouseEvent.CLICK, showBox);
                addChild(child1);
                child2 = new child2Instance();
                child2.buttonMode = true;
                child2.x=463;
                child2.y=282;
                child2.name="child2Name";
                child2.addEventListener(MouseEvent.CLICK, showMag);
                addChild(child2);
                child3 = new child3Instance();
                child3.buttonMode = true;
                child3.x=389;
                child3.y=335;
                child3.name="child3Name";
                addChild(child3);
            } //closing brace for Function Main     
            //Handler       
            private function showBox (e:MouseEvent):void{
                var box1:Sprite;
                box1=new box1Instance();
                box1.x=-279;
                box1.y=-32;
                box1.name = "box1name";
                var boxX:Sprite;
                boxX=new boxXInstance();
                boxX.x=-159;
                boxX.y=-79;
                boxX.name="boxXname";
                buttonMode = true;
                child1.addChild(box1);
                child1.addChild(boxX);           
                trace(child1.numChildren); //it returns 3 instead of 2 ?
                trace(box1.numChildren); //it returns 3 instead of 0 ?
                boxX.addEventListener(MouseEvent.CLICK, boxXHandler);
                } //closing brace for function showBox
                //function for removing showBox
            private function boxXHandler(evt:MouseEvent):void {
                child1.removeChildAt(0); // it removes child1 itself on first click?
                }//closing brace for function boxXHandler
                //function for managing showMag
            private function showMag (e:MouseEvent):void{
                var MagBox:Sprite;
                MagBox=new MagInstance();
                MagBox.x=-275;
                MagBox.y=-95;
                MagBox.name="MagBoxName";
                var MagBoxX:Sprite;
                MagBoxX=new magXInstance();
                buttonMode = true;
                MagBoxX.x=-145;
                MagBoxX.y=-190;
                MagBoxX.name="MagBoxXName";
                child2.addChild(MagBox);
                child2.addChild(MagBoxX);
                trace(child2.getChildAt(0).name);
                MagBoxX.addEventListener(MouseEvent.CLICK, MagBoxXHandler);
            } //closing brace for function showMag
            private function MagBoxXHandler(evt:MouseEvent):void {
        } //closing brace for Class Main
    } //closing brace for package

    This is my code for right now:
    package{
        import flash.display.Sprite;
        import flash.display.DisplayObject;
        import flash.events.MouseEvent;
        import flash.net.URLRequest;
        import flash.events.Event;
              import flash.events.EventDispatcher;
        public class Main extends Sprite{
            private var Bg:Sprite;
            private var child1:Sprite;
            private var child2:Sprite;
            private var child3:Sprite;
            public function Main(){           
                var Bg:Sprite = new BgInstance();
                Bg.x=360;
                Bg.y=212;
                Bg.name="BgMap"
                addChild(Bg);
                child1 = new child1Instance();
                child1.buttonMode = true;
                child1.x=479;
                child1.y=132;
                child1.name="child1Name";
                child1.addEventListener(MouseEvent.CLICK, showBox);
                addChild(child1);
                child2 = new child2Instance();
                child2.buttonMode = true;
                child2.x=463;
                child2.y=282;
                child2.name="child2Name";
                child2.addEventListener(MouseEvent.CLICK, showMag);
                addChild(child2);
                child3 = new child3Instance();
                child3.buttonMode = true;
                child3.x=389;
                child3.y=335;
                child3.name="child3Name";
                addChild(child3);
           } //closing brace for Function Main     
                //Handler
                private function showBox (e:MouseEvent):void{
                var box1:Sprite;
                box1=new box1Instance();
                box1.x=-279;
                box1.y=-32;
                box1.name = "box1name";
                var boxX:Sprite;
                boxX=new boxXInstance();
                boxX.x=-159;
                boxX.y=-79;
                boxX.name="boxXname";
                buttonMode = true;
                child1.addChild(box1);
                child1.addChild(boxX);
                child1.removeEventListener(MouseEvent.CLICK, showBox);
                //tired to remove event listerner for child1 ?
                boxX.addEventListener(MouseEvent.CLICK, boxXHandler);
                } //closing brace for function showBox
                //function for removing showBox
                function boxXHandler(evt:MouseEvent){
                child1.removeChild(child1.getChildByName("box1name"));
                child1.removeChild(child1.getChildByName("boxXname"));
                child1.addEventListener(MouseEvent.CLICK, showBox);
                // tried to reassign event listener for child1 ?
                }//closing brace for function boxXHandler
                //function for managing showMag
                private function showMag (e:MouseEvent):void{
                var MagBox:Sprite;
                MagBox=new MagInstance();
                MagBox.x=-275;
                MagBox.y=-95;
                MagBox.name="MagBoxName";
                var MagBoxX:Sprite;
                MagBoxX=new magXInstance();
                buttonMode = true;
                MagBoxX.x=-145;
                MagBoxX.y=-190;
                MagBoxX.name="MagBoxXName";
                child2.addChild(MagBox);
                child2.addChild(MagBoxX);
                child2.removeEventListener(MouseEvent.CLICK, showMag);
                trace(child2.getChildAt(0).name);
                MagBoxX.addEventListener(MouseEvent.CLICK, MagBoxXHandler);
                } //closing brace for function showMag
                function MagBoxXHandler(evt:MouseEvent):void {
                child2.removeChild(child2.getChildByName("MagBoxName"));
                child2.removeChild(child2.getChildByName("MagBoxXName"));
                child2.addEventListener(MouseEvent.CLICK, showMag);
              } //closing brace for Class Main
    } //closing brace for package

  • Dynamic link and workflow optimization help needed

    As a vlogger I just tried out a brandnew method to save time and renders. Instead of editing every clip separately in After Effects and then rendering it and then do the final edit in Premiere, I just edit immediately in Premiere, then when it's finished editing I do a global color correction in AE via Dynamic link. I'm just kinda worried the results are bad. Do you think it sucks? Do you like it? Would you subscribe? Do you wanna see other vlogs?
    your opinion helps me more then you think.
    your good friend,
    ck

    Edit in Premier then dynamic link to AE is the usual workflow. I've been doing a bit of color grading lately but I'm still not on par with the terms a colorist would use but I think the vid has a dreary look to it. Dark, not much contrast, needs more tone? Also advice on vlogging sounds like a post for the video lounge.

  • A little assistance and some big help needed

    I seem to be running into a problem migrating an MSAccess 2000 database to XE.
    I open the omwb2000.mde, select the database and define the location for the schema and data export.
    The DAO msi opens and I get error 1706. No Valid Source could be found for product DAO. the windows installer cannot continue.
    If I cancel the DAO and if I add forms and reports from the .mde I get error #5 - XML Exporter. Invalid procedure or call argument (the database location) Database Schema Export did not complete successfully.
    Any help is very appreciated.
    My local environment is:
    Win XP SP2
    Office 03 SP2
    Oracle XE
    OMWB 10.1.0.4.0

    Hi,
    Have you tried re-registering the DAO dao360.dll? If, for some reason, your MDAC install has gotten corrupt, you'll need to re-register. Try executing the following from the Start | Run command:
    regsvr32 "c:\program files\common files\microsoft shared\dao\dao360.dll"
    I would also recommend using the omwb2003.mde, and converting your MS Access 2000 database to 2003, seeing as you have MS Access 2003 installed on your machine. We recommend using the version of the Exporter Tool that corresponds with the version of MS Access installed on your machine.
    I hope this helps.
    Regards,
    Hilary

  • US iBook and UK Keyboard help needed..

    Hey there.
    Some time ago my girlfriend bought an iBook G4 from eBay. We both use the iBook and use a UK Mac keyboard with it, the only problem is is that the pound sign, when used comes out as the $ sign on the iBook and # when using the UK keyboard. Number 3 is supposed to be the pound sign when shift and 3 are pressed, how do assign the key to show the pound sign? It's annoying cause' everytime we need to use the sign we have to resort to using the 'special characters' option. I hope someone can help, thanks!

    Hi Tymon,
    You will need to set your keyboard input menu to UK. Do the following:
    1. Fire up System Preferences
    2. Select the International icon
    3. Within the International preferences window select the Input Menu tab
    4. Ensure Keyboard Viewer is ticked (not needed here but very useful to have available)
    5. Scroll down and tick on the British Keyboard box
    6. If it's not already ticked, select the "Show input menu in menu bar" box (bottom left of the window).
    That's it. You will now notice a flag in the top right of the menubar. It should be the British flag. If not, simply click on the flag and select British. Your keyboard input layout should now be in the familiar British flavour.
    Kryten

  • MAC OS-X Lion and Error 51 - Help Needed ASAP Please

    Greetings,
    I have been using the Cisco VPN Client (4.9.01) for Mac under Snow Leopard (10.6.x) without any issues.
    Since upgrading to Lion earlier today I am now receiving an Error 51 - unable to communicate with the subsystem.
    I found a thread that suggested restarting the system while holding down Opt/3/2 keys to force a 32-Bit restart and the Client will indeed run. However, this is a bandaid patch.
    Has Cisco addressed this issue? Is there a better workaround at this time?
    Thank you,
    Lyman

    Hello Robert,
    In Windows 7 you would need to use the Cisco IPsec client which operates the same way as it does in XP with regards to the pcf.  So I am not sure why you are having trouble with Win7, if you are still having trouble with Win7 using the Cisco IPsec client please start a new thread for that specific issue as it is separate and distinct from Mac OS X and using the Mac OS X built in client.
    Did you follow this guide:
    http://anders.com/guides/native-cisco-vpn-on-mac-os-x/
    Thanks tomas.truchly.
    I have not heard of an issue with the Mac OS X Built-in client when properly configured and when the head-end has the security levels necessary.
    Also, since this thread has been Answered, to help ensure you get the help you need it might be best to open a new thread.
    -Craig

Maybe you are looking for

  • Why are Loops and Drum Kit greyed out on GarageBand 10?

    I've looked and researched every forum and help section on fixing this issue but to no avail, I see some people having success but they seem to have different situations. Unless I'm missing a step or something. Here is my situation: I have OSX Maveri

  • Email Output type : No Automatic trigger of output type while saving doc.

    Hi Gurus - To trigger an email from the output type, I've configured a output type with medium as 5(external send) with communication strategy and created condition records with medium as 5 to trigger immediately. While creating corresponding documen

  • Attach_file_to_response kills iframe content

    Hello, I have a WDA application using an iframe. I fill the iframe by using an object of if_http_response and add this object to the server cache: cl_http_server=>server_cache_upload. This works perfectly fine. I added a button in order to save the c

  • Which filter to use?

    HI - I have a continous wave laser system which directs its laser output into a photomultiplier tube (used to measure the number of photons in the laser light and provide a voltage signal). This voltage signal is wired into DAQ  system and a simple p

  • Calling LabVIEW VIs

    Hi All, I am having trouble calling a vi and passing parameters to it using ActiveX calls. I used the code he found it on the website ni.com, but there is no reference to how to call vi from tcp network, as \\hostname:14000\application.vi I try use t