WCS Error - Position of Map Conflicts with Parent

Hello All -
I have a large scale drawing of a floor plan for a building.  I have added it to my campus and started adding APs.  When I saw the prediciton model, I realized I had forgotten to properly scale the drawing.  When I attempt to scale it, I get an error message stating:
"Error:The given Width, Height or the position of Map conflicts with the parent(Building or Campus) Width 846.2 and Length 655.3. Please increase the size of the parent(Building or Campus) through the edit page and/or make sure Map is positioned correctly within parent through map edit page."
I really don't know how to fix that.  I have increased the size of the building to match the 846.2/655.3, but then the box showing the building is HUGE on my campus map (Google Earth shot) and I still get the error.
Regards,
Scott

Ok, so I was trying to size the building to EXACTLY what the error was specifying for the required new size, and it MUST be larger than the dimensions of the largest floor.  I made it a bit bigger, and now things look good.  However, the green square around the building on the campus map is HUGE and way out of proportion for my campus Google Earth map.  How do I fix that since the size of that square represents the size of the building?  Do I artificially make my Google Earth map larger?  If I do that, you will hardly see the pinpoints for the locations on the Google Earth map.
Thanks,
Scott

Similar Messages

  • Error in messege mapping " Structure with min!=max without mapping"

    Hi Experts,
                           got an error in  messege mapping, after mapping was done as " Structure with min!=max without mapping" . Any idea what is my mistake!
    Points will be rewarded.
    Thanks and Regards,
    Arnab.

    Hi Mohd,
    This error pops up when your mapping is incomplete...
    First check all the fields are mapped....
    and check all the required fields are mapped which are in RED in colour...if not map to the specific field or to a constant or disable that one...and check the type of the sourse and target fields.....is it string,floatetc
    you got a element, which occurences (=minOccurs & maxOccurs) are unequal.
    Those fields have to be mapped.
    http://help.sap.com/saphelp_nw04/helpdata/en/02/9a6a1c244411d5b2e30050da4c74dc/frameset.htm
    Reward points if this helps
    Regards
    Pragathi.

  • Mx.controls.menu - set position of submenu flush with parent

    My boss has issues with the Flex Menu control and it's submenu's being positioned slighty down and overlapping to the parent Menu. I have been able to change the position by extending the Menu class, but now the submenu's don't hide - they stick around when they should hide on parent item rollover or document click... anyone got a fast fix for this? I am still learning the basics, so any help with be appreciated.
    Thanks in advance.
    Custom Menu code attached: (scuse the spaced out code)
    package {
    import mx.controls.Menu; 
    import mx.core.mx_internal; 
    import flash.display.DisplayObjectContainer; 
    import mx.controls.listClasses.IListItemRenderer; 
    import mx.core.Application; 
    import mx.controls.menuClasses.IMenuItemRenderer; 
    import mx.managers.PopUpManager; 
    import flash.geom.Point; 
    import flash.display.DisplayObject; 
    import flash.geom.Rectangle; 
    import flash.utils.clearInterval; 
    use namespace mx_internal; 
    public class CustomMenu extends Menu{
    private var isDirectionLeft:Boolean = false; 
    private var subMenu:Menu; 
    public function CustomMenu(){
    super();}
    public static function createMenu(parent:DisplayObjectContainer, mdp:Object, showRoot:Boolean = true):CustomMenu{
    var menu:CustomMenu = new CustomMenu();menu.tabEnabled =
    false;menu.owner = DisplayObjectContainer(Application.application);
    menu.showRoot = showRoot;
    popUpMenu(menu, parent, mdp);
    return menu;}
    override mx_internal function openSubMenu(row:IListItemRenderer):void
    supposedToLoseFocus =
    true; 
    var r:Menu = getRootMenu(); 
    var menu:CustomMenu; 
    // check to see if the menu exists, if not create it
    if (!IMenuItemRenderer(row).menu){
    menu =
    new CustomMenu();menu.parentMenu =
    this;menu.owner =
    this;menu.showRoot = showRoot;
    menu.dataDescriptor = r.dataDescriptor;
    menu.styleName = r;
    menu.labelField = r.labelField;
    menu.labelFunction = r.labelFunction;
    menu.iconField = r.iconField;
    menu.iconFunction = r.iconFunction;
    menu.itemRenderer = r.itemRenderer;
    menu.rowHeight = r.rowHeight;
    menu.scaleY = r.scaleY;
    menu.scaleX = r.scaleX;
    // if there's data and it has children then add the items
    if (row.data &&_dataDescriptor.isBranch(row.data) &&
    _dataDescriptor.hasChildren(row.data))
    menu.dataProvider = _dataDescriptor.getChildren(row.data);
    menu.sourceMenuBar = sourceMenuBar;
    menu.sourceMenuBarItem = sourceMenuBarItem;
    IMenuItemRenderer(row).menu = menu;
    PopUpManager.addPopUp(menu, r,
    false);}
    else
    //commented out can't resolve Implicit coercion error
    //menu = IMenuItemRenderer(row).menu;
    var _do:DisplayObject = DisplayObject(row); 
    var sandBoxRootPoint:Point = new Point(0,0);sandBoxRootPoint = _do.localToGlobal(sandBoxRootPoint);
    // when loadMovied, you may not be in global coordinates
    if (_do.root) //verify this is sufficient
    sandBoxRootPoint = _do.root.globalToLocal(sandBoxRootPoint);
    // showX, showY are in sandbox root coordinates
    var showY:Number = sandBoxRootPoint.y; 
    var showX:Number; 
    if (!isDirectionLeft)showX = sandBoxRootPoint.x + row.width+10;
    else
    showX = sandBoxRootPoint.x - menu.getExplicitOrMeasuredWidth();
    // convert to global coordinates to compare with getVisibleApplicationRect(). 
    // the screen is the visible coordinates of our sandbox (written in global coordinates) 
    var screen:Rectangle = systemManager.getVisibleApplicationRect(); 
    var sbRoot:DisplayObject = systemManager.getSandboxRoot(); 
    var screenPoint:Point = sbRoot.localToGlobal(new Point(showX, showY)); 
    // do x 
    var shift:Number = screenPoint.x + menu.getExplicitOrMeasuredWidth() - screen.right; 
    if (shift > 0 || screenPoint.x < screen.x){
    // if we want to ensure our parent's visible, let's  
    // modify the shift so that we're not just on-screen 
    // but we're also shifted away from our parent. 
    var shiftForParent:Number = getExplicitOrMeasuredWidth() + menu.getExplicitOrMeasuredWidth(); 
    // if was going left, shift to right. otherwise, shift to left 
    if (isDirectionLeft)shiftForParent *= -1;
    showX = Math.max(showX - shiftForParent, 0);
    // now make sure we're still on-screen againscreenPoint =
    new Point(showX, showY);screenPoint = sbRoot.localToGlobal(screenPoint);
    // only shift if greater our position + width > width of screenshift = Math.max(0, screenPoint.x + width - screen.right);
    showX = Math.max(showX - shift, 0);
    menu.isDirectionLeft =
    this.x > showX; 
    // now do yshift = screenPoint.y + height - screen.bottom;
    if (shift > 0 || screenPoint.y < screen.y)showY = Math.max(showY - shift, 0);
    menu.show(showX, showY);
    subMenu = menu;
    clearInterval(openSubMenuTimer);
    openSubMenuTimer = 0;

    Maybe call menu.move instead of menu.show

  • [SOLVED] Error at upgrade KDE4 - Conflict with kdelibs3

    I'm using KDE 4, and when i tried to upgrade the system, this happens:
    bash-3.2# pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra 406,8K 170,2K/s 00:00:02 [##########################################################################################################################################################] 100%
    community 355,1K 42,3K/s 00:00:08 [##########################################################################################################################################################] 100%
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    Targets: kdelibs-4.1.0-4 qtcurve-gtk2-0.59.7-1 qt3-3.3.8-8 kdelibs3-3.5.9-2.1 qtcurve-kde3-0.59.5-1 qtcurve-kde4-0.59.6-1
    Total Download Size: 45,19 MB
    Total Installed Size: 140,78 MB
    Proceed with installation? [Y/n] Y
    :: Retrieving packages from extra...
    kdelibs-4.1.0-4-i686 14,4M 131,4K/s 00:01:52 [#################################]100%
    qtcurve-gtk2-0.59.7... 92,7K 95,1K/s 00:00:01 [#################################]100%
    qt3-3.3.8-8-i686 10,1M 151,9K/s 00:01:08 [#################################] 100%
    kdelibs3-3.5.9-2.1-i686 20,1M 134,5K/s 00:02:33 [################################] 100%
    qtcurve-kde3-0.59.5... 235,7K 148,5K/s 00:00:02 [###############################] 100%
    qtcurve-kde4-0.59.6... 268,0K 152,2K/s 00:00:02 [###############################] 100%
    checking package integrity...
    (6/6) checking for file conflicts [#####################################] 100%
    error: could not prepare transaction
    error: failed to commit transaction (conflicting files)
    kdelibs3: /opt/kde/share/apps/kdeui/about/bar-bottom-left.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/bar-bottom-middle.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/bar-bottom-right.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/bar-middle-left.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/bar-middle-right.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/bar-top-left.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/bar-top-middle.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/bar-top-right.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/bottom-left.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/bottom-middle.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/bottom-right.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/box-bottom-left.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/box-bottom-middle.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/box-bottom-right.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/box-middle-left.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/box-middle-right.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/box-top-left.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/box-top-middle.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/box-top-right.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/kde_infopage.css exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/kde_infopage_rtl.css exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/top-left.png exists in filesystem
    kdelibs3: /opt/kde/share/apps/kdeui/about/top-middle.png exists in filesystem
    Errors occurred, no packages were upgraded.
    Last edited by leokolln (2008-08-02 18:36:29)

    All them belongs to kde-mod-ui-kde.
    Eg:
    bash-3.2# pacman -Qo /opt/kde/share/apps/kdeui/about/bar-bottom-left.png
    /opt/kde/share/apps/kdeui/about/bar-bottom-left.png is owned by kdemod-ui-kde 3.5.9-2
    My error, not correctly removed KDEMod.
    Done:
    pacman -Rd kdemod-ui-kde
    then worked fine!
    Problem solved!
    Thanks for the advice.
    Last edited by leokolln (2008-08-02 18:37:18)

  • Error: exo-devel conflicts with exo [SOLVED]

    I am trying to install xfce4-goodies and I receive an error about exo-devel conflicting with exo when trying to install.  Any suggestions?
    error: exo-devel conflicts with exo

    Snowman wrote:Perhaps you have a custom/unofficial repo in your pacman.conf. However, this should work:
    # pacman -S exo
    # pacman -S xfce4-goodies
    No custom or unoffical repos in pacman.conf.
    I tried your suggestion above, and am seeing this...
    # pacman -S exo
    Targets: exo-0.3.0-3
    Total Package Size:   0.2 MB
    Proceed with upgrade? [Y/n]
    :: Retrieving packages from extra...
    exo-0.3.0-3              [################] 100%     212K   276.0K/s  00:00:00
    checking package integrity... done.
    loading package data... done.
    checking for file conflicts... done.
    installing exo... done.
    After that I attempted to install xfce4-goodies and receive the following...
    # pacman -S xfce4-goodies
    :: group xfce4-goodies:
        exo terminal xfce4-artwork xfce4-battery-plugin xfce4-clipman-plugin
        xfce4-cpugraph-plugin xfce4-datetime-plugin xfce4-diskperf-plugin
        xfce4-fsguard-plugin xfce4-minicmd-plugin xfce4-netload-plugin
        xfce4-notes-plugin xfce4-sensors-plugin xfce4-showdesktop-plugin
        xfce4-systemload-plugin xfce4-taskbar-plugin xfce4-wavelan-plugin
        xfce4-weather-plugin xfce4-windowlist-plugin xfce4-xkb-plugin
        xfce4-xmms-plugin exo-devel
        Install whole content? [Y/n]
    :: exo-0.3.0-3: is up to date.  Upgrade anyway? [Y/n]
    Remove:  exo
    Targets: exo-0.3.0-3 vte-0.12.2-1 terminal-0.2.4-4 xfce4-artwork-0.0.4-2
             xfce4-battery-plugin-0.3.0-2 xfce4-clipman-plugin-0.4.1-3
             xfce4-cpugraph-plugin-0.2.2-3 xfce4-datetime-plugin-0.3.1-3
             xfce4-diskperf-plugin-1.5-3 xfce4-fsguard-plugin-0.2.0-3
             xfce4-minicmd-plugin-0.3.0-2 xfce4-netload-plugin-0.3.3-1
             xfce4-notes-plugin-0.11.0-1 xfce4-sensors-plugin-0.7.0-1
             xfce4-showdesktop-plugin-0.4.0-2 xfce4-systemload-plugin-0.3.6-2
             xfce4-taskbar-plugin-0.2.2-2 xfce4-wavelan-plugin-0.4.1-2
             xfce4-weather-plugin-0.4.9-2 xfce4-windowlist-plugin-0.1.0-3
             xfce4-xkb-plugin-0.3.5-1 glib-1.2.10-6 gtk-1.2.10-7 xmms-1.2.10-7
             xfce4-xmms-plugin-0.3.1-2 perl-uri-1.35-1 exo-devel-0.3.1.8beta2-1
    Total Package Size:   8.7 MB
    Proceed with upgrade? [Y/n]
    :: Retrieving packages from extra...
    vte-0.12.2-1             [################] 100%    1065K   419.9K/s  00:00:02
    terminal-0.2.4-4         [################] 100%     695K   391.9K/s  00:00:01
    xfce4-artwork-0.0.4-2    [################] 100%    1728K   438.8K/s  00:00:03
    xfce4-battery-plugin-0.3 [################] 100%      21K    62.8K/s  00:00:00
    xfce4-clipman-plugin-0.4 [################] 100%       6K    22.7K/s  00:00:00
    xfce4-cpugraph-plugin-0. [################] 100%      13K    41.4K/s  00:00:00
    xfce4-datetime-plugin-0. [################] 100%      13K    31.4K/s  00:00:00
    xfce4-diskperf-plugin-1. [################] 100%      16K    47.4K/s  00:00:00
    xfce4-fsguard-plugin-0.2 [################] 100%      12K    31.3K/s  00:00:00
    xfce4-minicmd-plugin-0.3 [################] 100%       6K    20.5K/s  00:00:00
    xfce4-netload-plugin-0.3 [################] 100%      19K    52.2K/s  00:00:00
    xfce4-notes-plugin-0.11. [################] 100%      16K    49.0K/s  00:00:00
    xfce4-sensors-plugin-0.7 [################] 100%      23K    58.9K/s  00:00:00
    xfce4-showdesktop-plugin [################] 100%       9K    31.3K/s  00:00:00
    xfce4-systemload-plugin- [################] 100%      15K    46.4K/s  00:00:00
    xfce4-taskbar-plugin-0.2 [################] 100%       6K    23.4K/s  00:00:00
    xfce4-wavelan-plugin-0.4 [################] 100%     139K   229.5K/s  00:00:00
    xfce4-weather-plugin-0.4 [################] 100%     332K   319.8K/s  00:00:01
    xfce4-windowlist-plugin- [################] 100%       9K    31.6K/s  00:00:00
    xfce4-xkb-plugin-0.3.5-1 [################] 100%      42K   100.4K/s  00:00:00
    xfce4-xmms-plugin-0.3.1- [################] 100%      18K    53.6K/s  00:00:00
    perl-uri-1.35-1          [################] 100%      75K   164.3K/s  00:00:00
    :: Retrieving packages from current...
    xmms-1.2.10-7            [################] 100%    1886K   406.0K/s  00:00:04
    :: Retrieving packages from community...
    exo-devel-0.3.1.8beta2-1 [################] 100%     592K   301.6K/s  00:00:01
    checking package integrity... done.
    removing exo... done.
    loading package data... done.
    checking for file conflicts...
    error: the following file conflicts were found:
      opt/xfce4/include/exo-0.3/exo/exo-binding.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-cell-renderer-ellipsized-text.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-config.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-ellipsized-label.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-enum-types.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-gdk-pixbuf-extensions.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-gobject-extensions.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-gtk-extensions.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-icon-bar.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-icon-view.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-md5.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-pango-extensions.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-string.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-toolbars-editor-dialog.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-toolbars-editor.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-toolbars-model.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-toolbars-view.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo-xsession-client.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/include/exo-0.3/exo/exo.h: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/lib/libexo-0.3.a: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/lib/libexo-0.3.so: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/lib/libexo-0.3.so.0: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/lib/pkgconfig/exo-0.3.pc: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/lib/python2.4/site-packages/exo-0.3/_exo.a: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/lib/python2.4/site-packages/exo-0.3/_exo.so: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/lib/python2.4/site-packages/exo-0.3/exo/__init__.py: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/lib/python2.4/site-packages/exo-0.3/exo/__init__.pyc: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/lib/python2.4/site-packages/exo-0.3/exo/__init__.pyo: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/lib/python2.4/site-packages/pyexo.py: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/lib/python2.4/site-packages/pyexo.pyc: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/lib/python2.4/site-packages/pyexo.pyo: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/share/locale/de/LC_MESSAGES/libexo-0.3.mo: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/share/locale/en_GB/LC_MESSAGES/libexo-0.3.mo: exists in "exo" (target) and "exo-devel" (target)
      opt/xfce4/share/pygtk/2.0/defs/exo-0.3/exo.defs: exists in "exo" (target) and "exo-devel" (target)
    errors occurred, no packages were upgraded.

  • Beehive installation :pdksh conflicts with ksh-20060214-1.7.i386

    Hi,
    I am doing Beehive installation on OEL5.
    I got this prerequisite failed....
    *Checking for ksh-20060214-1.4; found Not found. Failed.....so the overall check is also failed+.
    What I tried:
    [_root@stcfmw01 u06]# cd OEL-5_32Bit/OEL-5_32Bit_Disk1_of_5/Server/
    [root@stcfmw01 Server]# rpm -ivh ksh-20060214-1.7.i386.rpm
    error: Failed dependencies:
    pdksh conflicts with ksh-20060214-1.7.i386
    [root@stcfmw01 Server]#
    [root@stcfmw01 Server]#
    i.e it is conflicting with pdksh
    Please gimme a solution....
    Regards,
    Ashlee

    Checking recommended operating system packages
    Checking for gcc-4.1.1-52; found gcc-4.1.2-42.el5. Passed
    Checking for gcc-c++-4.1.1-52; found gcc-c++-4.1.2-42.el5. Passed
    Checking for setarch-2.0-1.1; found setarch-2.0-1.1. Passed
    Checking for ksh-20060214-1.4; found Not found. Failed
    Checking for sysstat-7.0.0-3; found sysstat-7.0.2-1.el5. Passed
    Checking for gdbm-1.8.0-26.2.1; found gdbm-1.8.0-26.2.1. Passed
    Checking for libstdc++-4.1.1-52; found libstdc++-4.1.2-42.el5. Passed
    Checking for libstdc++-devel-4.1.1-52; found libstdc++-devel-4.1.2-42.el5. Passed
    Checking for compat-libstdc++-296-2.96-138; found compat-libstdc++-296-2.96-141. Passed
    Checking for compat-db-4.2.52-5.1; found compat-db-4.2.52-5.1. Passed
    Checking for control-center-2.16.0-14; found control-center-1:2.16.0-16.el5. Passed
    Checking for glibc-common-2.5-12; found glibc-common-2.5-24. Passed
    Checking for binutils-2.17.50.0.6-2; found binutils-2.17.50.0.6-6.0.1.el5. Passed
    Checking for make-3.81-1.1; found make-1:3.81-3.el5. Passed
    Check complete. The overall result of this check is: Failed
    Problem: Some recommended packages are missing (see above).
    Recommendation: You may actually have installed packages which have obsoleted these, in which case you can successfully continue with the install. If you have not, it is recommended that you do not continue. Refer to the readme to find out how to get the missing packages.
    ==============================================

  • Import mode FULL conflicts with export mode TRANSPORTABLE

    Hi,
    We are trying to import transportable tablespaces and are getting an error "import mode FULL conflicts with export mode TRANSPORTABLE. This is the second time we've seen it, the common thread seems to be that it only shows up with the remap_schema qualifier (the example below is with ASM, but we have seen it also without ASM). Does anyone have any suggestions as to how this can be resolved?
    Thanks,
    Dan
    impdp SYSTEM/xxxxx@DEVSUP DIRECTORY=CSF_DIR DUMPFILE=csf_au_q412_b1.dmp logfile=dev_imp.log TRANSPORT_DATAFILES='+DATA/PMDEVSUP/DATAFILE/CSF_AU_Q412_B1.1130.804322725','+DATA/PMDEVSUP/DATAFILE/CSF_AU_Q412_B1.631.804322681','+DATA/PMDEVSUP/DATAFILE/CSF_AU_Q412_B1.798.804322635','+DATA/PMDEVSUP/DATAFILE/CSF_AU_Q412_B1.968.804322581','+DATA/PMDEVSUP/DATAFILE/CSF_AU_Q412_B1.1261.804322791','+DATA/PMDEVSUP/DATAFILE/CSF_AU_Q412_B1.1727.804322951','+DATA/PMDEVSUP/DATAFILE/CSF_AU_Q412_B1.309.804322865','+DATA/PMDEVSUP/DATAFILE/CSF_AU_Q412_B1.684.804323047','+DATA/PMDEVSUP/DATAFILE/CSF_AU_Q412_B1.752.804323141','+DATA/PMDEVSUP/DATAFILE/CSF_AU_Q412_B1.843.804323247' remap_schema=CSF_AU_Q412_B1:CSF
    ORA-39002: invalid operation
    ORA-39061: import mode FULL conflicts with export mode TRANSPORTABLE

    We are trying to import transportable tablespaces and are getting an error "import mode FULL conflicts with export mode TRANSPORTABLE
    impdp SYSTEM/****@ESUST DIRECTORY=CSF_DIR DUMPFILE=csf_na_q212_b1.dmp
    TRANSPORT_DATAFILES='+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1907.805396709','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1908.805396709','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1909.805396653','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1910.805396647','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1911.805396591','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1912.805396591','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1913.805396535','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1914.805396535','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1915.805396479','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1916.805396479','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1917.805396425','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1918.805396425','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1919.805396369','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1920.805396365','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1921.805396321','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1932.805396319','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1933.805396263','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1934.805396261','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1935.805396205','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1936.805396201','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1937.805396137,+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1938.805396137,+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1939.805396081','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1954.805396079','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1958.805396013,+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1959.805396013,+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1960.805395937,+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1961.805395923','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1962.805395867','+DATA/PMESUST/DATAFILE/CSF_NA_Q212_B1.1963.805395867' remap_schema=CSF_NA_Q212_B1:CSF
    ORA-39002: invalid operation
    ORA-39061: import mode FULL conflicts with export mode TRANSPORTABLE

  • How to Rename a Topic ID in Map File to Avoid Conflict with Another Program?

    Robo 8 HTML:
    Can somebody assist me in understanding how to rename a topic ID in my map.h file?
    An application programmer informs me there are nine topic IDs (shown below) in my project map file which conflict with predefined names of constants/functions from the Visual Studio Libs program and, is requesting I change the names of the topics listed below to resolve topic ID conflict in order to enable F1 call for these topics.
    #define Open    59
    #define Save    60
    #define Print   63
    #define Cut     72
    #define Copy    73
    #define Paste   74
    #define Clear   75
    #define Status  81
    #define Substructure  139
    Can I simply alter the topic names and retain their associated map numbers in <Create/Edit Map ID> dialog to resolve the map file conflict with Visual Studio Libs program functions? Or, is there more work involved in changing a topic name in a map.h file?
    Any assistance with this question is greatly appreciated.
    Thanks,
    robert

    Hi,
    Simply renaming the TopicID's in the .h file won't work. The TopicID is used in the alias file (projectname.ali) to link a map number with a topic. Also, you can use either TopicID's or map numbers to call the help. (Using TopicID's only works for WebHelp afaik.)
    If you use map numbers to call the help, you can rename the TopicID using the mentioned dialog. No problem.
    If you want to change the ID from the files, you have to change both the .h file as the .ali file. No changes to topics needed.

  • When syncing my iphone 6 plus, i now get an error that reads, "IP address conflicts with another system or network."  How can i eliminate this error permanently?   Thank you in advance!

    when syncing my iphone 6 plus, i now get an error that reads, "IP address conflicts with another system or network."  How can i eliminate this error permanently?   Thank you in advance!
    This never happened before, however the last couple of months it comes up every time I plug my USB from PC to iphone.

    HyperNova Software,
    Thank you so much.  Because I am very computer illiterate, could you help me on how to get started?  I don't have the slightest on where to get started, the steps to follow, etc.
    Can't thank you enough for your help!

  • For some reason when I shut down my computer then turn it back on, it comes back directly into my account, bypassing having to enter a password to get into my account.  This works in direct conflict with the parental controls I've got set up.  Any ideas?

    For some reason when I shut down my computer then turn it back on, it comes back directly into my account, bypassing having to enter a password to get into my account.  This works in direct conflict with the parental controls I've got set up.  Any ideas?

    Thank you so much for the quick response to my question.  I tested your directions and it works!!  Thank you.  I would never have figured that out.  I knew I had to go into System Preferences but would not have guessed that I needed to have Automatic Login set to off. 

  • Error with Parent-Child Hierarchies in BIEE11.1.1.5

    Hi ,
    I am using BIEE11.1.1.5, I have created a Logical Dimensions with Parent-Child Hierarchies,
    In answer,I draged the Hierarchies named 'H5 Sales Rep', then view the results,
    It has error,error message as follows:
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 22056] To use hierarchical functions, you need to associate a Closure Table with Logical Table Source 'LTS1 Sales Rep'. (HY000)
    SQL Issued: SELECT 0 s_0, "Sample Sales"."Sales Rep"."Sales Rep Name" s_1, CASE WHEN ISLEAF("Sample Sales"."Sales Rep"."H5 Sales Rep") THEN 1 ELSE 0 END s_2, IDOF("Sample Sales"."Sales Rep"."H5 Sales Rep") s_3, PARENT("Sample Sales"."Sales Rep"."H5 Sales Rep") s_4 FROM "Sample Sales" WHERE ISROOT("Sample Sales"."Sales Rep"."H5 Sales Rep")
    anyone know why???
    Thank you!

    Hi Leo,
    Did you configure closure table? http://www.rittmanmead.com/2010/11/oracle-bi-ee-11g-parent-child-hierarchies-multiple-modeling-methods/
    Also make sure to perform the hierarchy changes in offline mode.
    Regards,
    Dpka

  • Help with x64: fatal error LNK1112: module machine type 'X86' conflicts with target machine type 'x64'

    Hello, I am trying to complie some C code for some applications I am working on in labview (I am using Labview 2012 64bit).
    When I try to build my code in Visual C++ 2010 ( I have set it up to be able to use x64) I get the following fatal error:
    nivision.lib(StartupShutdown.obj) : fatal error LNK1112: module machine type 'X86' conflicts with target machine type 'x64'
    Which I understand that .lib does not have a 64bit compatability. However, if I were to use 32bit code, how can I link/emulate it to my 64bit labview? Is there a good tutorial on this application? The problem is the rest of my application uses and requires 64bit labview, so I am stuck in this enviroment.
    Thanks.

    dbrittain wrote:
    Thanks for the reply. The C code I have cross correlates images, and it does reference the image inputs and size variables from the nivision classes. I am thinking of using a side by side labview environment with shared variables. I have not done this before, do you have any good examples? Can you make the library function node a shared variable or only the elements within it? 
    I guess I could try to convert to labview, but the are a lot of lines of code that I would prefer not to try to wrap my head around in translation.
    The LabVIEW API in Vision Development Module has functions that let you get access to all those parameters as well as the raw image data pointer. A common design is to query those items on the LabVIEW diagram and then pass them to your DLL. This would mean you wouldn't need to make any calls into the Vision DLL from your C code.
    As for examples showing how to use shared variables, keep in mind that it isn't just like doing a function call. The more appropriate way to think of it would be communicating with another VI by getting and setting controls and indicators while it runs. You could put all your arguments into a shared variable and set a boolean indicating it is ready, then wait for another boolean to go high indicating the other code has finished and placed its results in another shared variable. Your application code interacts with the shared variables just like a control/indicator/local variable. This of course is a simple description and I would not be surprised if there are well-defined frameworks/examples searchable in the forums that use shared variables in this manner.
    Eric
    Eric

  • Distiller Error / Conflict with MainType

    Hello!
    I am getting an error window from Acrobat Distiller while using a font management program called MainType (www.High-Logic.com)
    I have attached a screen shot.
    Before the error window pops up, everything slows down to a crawl. It's just really annoying to have the error message pop up about every 5 minutes or so.  Is there a way to turn off or disable Distiller while I'm using MainType? If not, is there a setting I can change to fix this?
    Here is my system info:
    OS Name      Microsoft Windows XP Professional
    Version          5.1.2600 Service Pack 3 Build 2600
    OS Manufacturer     Microsoft Corporation
    Activation Status      Activation Pending (30 days remaining)
    System Name           84A-105-21740
    System Manufacturer         Hewlett-Packard
    System Model           HP Compaq dc7600 Convertible Minitower
    System Type X86-based PC
    Processor      x86 Family 15 Model 4 Stepping 7 GenuineIntel ~2791 Mhz
    BIOS Version/Date  Hewlett-Packard 786D1 v01.54, 11/14/2005
    SMBIOS Version      2.4
    Windows Directory  C:\WINDOWS
    System Directory      C:\WINDOWS\system32
    Boot Device  \Device\HarddiskVolume1
    Locale            United States
    Hardware Abstraction Layer          Version = "5.1.2600.5512 (xpsp.080413-2111)"
    User Name    CSUMB\ehle3854
    Time Zone     Pacific Daylight Time
    Total Physical Memory       1,025.00 MB
    Available Physical Memory           353.93 MB
    Total Virtual Memory           2.00 GB
    Available Virtual Memory   1.96 GB
    Page File Space      2.39 GB
    Page File       C:\pagefile.sys
    My computer is on a university system so I'm assuming Acrobat Distiller is ran from a server.
    Acrobat Distiller 9.1 2/27/09
    Any and all help is appreciated - thanks!
    Diane

    Hi Dilek,
    Thank you very much  for the reply.
    I went to the path which you mentioned upto below.
    Personnel Management - EMployee self-service - Service-Specific Settings - Working time - Leave Request - Processing Processes - Configure output of messages -
    We did nt maintain any rule group for customizing tab.Sap standard is showing as rule group.No details has been maintained.
    Alot of employees are having substitutions,most of the  approvers are able to approve leaves of the employees who are having substitutions.This is a peculiar case,where the approver is getting an error with conflict with substitutions.
    In R/3 we are getting a warning message and able to save the leave for this employee.
    Even i tried with other employees who are having the substitutions,system is behaving the same.
    Please advice me to resolve the problem.
    Regards,
    Sairam.

  • No mapping property with name - BPM error

    Hi all ,
    In our BPM scenario we are getting this error .. "No mapping property with name"
    when the message passed from Sender system to BPM
    RFC - BPM - File
    <Trace level="1" type="T">No mapping property with name sap.bc.bmt.wfm.xi.interface.synch.http://test.com/tp/pcs:MI_RecipeDownload_Abstract</Trace>
    <Trace level="1" type="T">MI_RecipeDownload_Abstract really used in process?</Trace>
    Few points:  MI_RecipeDownload_Abstract  is my first recv step in BPM
                       It is also the recv interface for RFC sneder - BPM
    Any clue will be very helpful...
    Kind regards
    Goutam

    Goutam,
    MI_RecipeDownload_Abstract is my first recv step in BPM
    It is also the recv interface for RFC sneder
    >> for rec interface for RFC sender it should be with out abstract. only steps inside BPM must be abstract.
    Regards
    Sreeram.G.Reddy

  • Error. This extension cannot be installed, since it conflicts with an existing one. To install this extension, please remove the extension 'GuideGuide' which has been installed in", then install again.

    When I try to install GuideGuide extension this error message popups " This extension cannot be installed, since it conflicts with an existing one. To install this extension, please remove the extension 'GuideGuide' which has been installed in", then install again."
    Photoshop CC

    Hi,
    Have you ever uninstalled Photoshop CC and installed Photoshop CC 2014, or uninstalled Photoshop CC 2014 then installed Photoshop CC?
    If that, please re-install you uninstalled Photoshop, and remove GuideGuide from Extension Manager before uninstall.
    Another option is remove extension manager database file, then launch Extension Manager to install it.
    C:\ProgramData\Adobe\Extension Manager CC\Configuration\DB\ExMan.db (Windows)
    /Library/Application Support/Adobe/Extension Manager CC/Configuration/DB/ExMan.db (MAC)
    But please notice that all your previously installed extensions will not be shown in Extension Manager after you removed database file.

Maybe you are looking for

  • NoSuchMethodException calling a session bean method from a web service

    I am running on NetWeaver 6.40 SP10 on Windows. I have a Java class (not a SessionBean) exposed as a web service where I invoke a session bean method with an argument that is another Java class (basically, just a JavaBean with some getters and setter

  • Add a new sales organization to a customer

    Hello, I have to add a new sales organization to some customers. I've been searching a bapi to do it, but i haven't found anyone. I only found a bapi to create a new customer (BAPI_CUSTOMER_CREATEFROMDATA1) or to change an existing customer (BAPI_CUS

  • Trying to Upgrade from Leopard 10.5 to Mountain Lion

    Im trying to upgrade my imac model 2008  to mountain lion, (it will support it, I have upgraded the ram and confirmed it the serial # with the apple website to be sure)   Currently its running leopard.  Not snow leopard just leopard.  This is cruital

  • Boris Title 3D freezing?

    Greetings Sometimes when I open up Boris Title 3D to copy the text box and put it into a word document, it freezes on me. Any suggestions? Thanks!

  • Redirect [SWF] and [Unload SWF] trace?

    Hi all! I was wondering if there is a way to redirect or disable [SWF] and [Unload SWF] based messages when working with external SWFS. Ideally I would like to redirect trace statements, but I doubt that's possible. Thanks!