BTS 2013/ VS 2012: Map Editor

Hi
In BTS 2006 R2/VS 2005 I could easily replace a functoid by dragging it over the old functoid in the map designer
How to do this in VS 2012 Map Editor? In VS 2012 the mouse pointer changes to "not allowed"
Thanks  /Peter

It seems that this feature is not present in BTS2010/VS2010 combination either, but I found this:
http://biztalkmessages.vansplunteren.net/2010/10/19/replacing-functoids-in-biztalk-2009/ So it has been dropped from BTS2009 -> BTS2010.
Too bad that isn't supported anymore. I haven't used it, but I really see the benefits of it.

Similar Messages

  • Mapping editor not working with Java 5 classes

    I have a small protoype web service which I wrote using Tomcat/Axis/Spring/Hibernate and using EJB3 annotations for the mappings. I want to port the persistence layer to Toplink.
    I installed Toplink 9.0.4.1 and added the toplink libraries to my project and implemented the DAO and the spring bean defs.
    I opened the mapping editor and created a project. When I try to add classes to it for mapping I get an error that it can't find the classes (even though I selected them from the chooser). I figured it might be that they were compiled with Java 5, so I switched the JRE_HOME in setenv.cmd to my Java 5 JRE. Now I can import the classes and see the attributes but when I click on any of them in the Navigator panel, the editor panel remains blank. If I now try to save, I get:
    java.lang.NullPointerException
         at oracle.toplink.workbench.ui.tools.CheckListModel.getRowCount(CheckListModel.java:119)
         at javax.swing.JTable.checkLeadAnchor(JTable.java:2949)
         at javax.swing.JTable.tableChanged(JTable.java:2993)
         at javax.swing.JTable.setModel(JTable.java:2827)
         at oracle.toplink.workbench.ui.tools.CheckList.initialize(CheckList.java:47)
         at oracle.toplink.workbench.ui.tools.CheckList.<init>(CheckList.java:26)
    It seems that the mapping workbench doesnt work with Java 5. What should I do?

    Ah, I see. I saw another post here stating that must use 10.1.3.

  • Mapping Editor using Multiple Structures

    Hello all!
    I am trying to implement complex mapping scenario in the Mapping Editor. The source structure has tree element tags, <ORDEMSERVICO>, <SERVICOS> and <PECA>, and xml root element <MT_OrdemServico_Dealer>. Translating this tags for English, we have <Service Order>, <Services> and <Parts>. So, we could be 1 or N orders, composed with services and services with parts.  We need to transform this source structure into a target structure like as EDI file, repeating  ID_CONC, ID_OS elements of <ORDEMSERVICO> into a <SERVICOS>, and repeating the same elements into a <PECA> and adding ID_CONC, ID_OS, ID_SERVICE.  It follows below both samples Source and Target Structure.
    We have tried uses Mapping Editor with a Standard functions: SplitByValue and OneAsMany  in the lowest elements <SERVICOS> and <PECAS>.  Because, it is possible has  many services with parts, or one service with many parts. And both can have one or more Service Order.  But we couldnu2019t have success.
    Please see the source and target xml files?
    Please somebody could help me? To solve this problem? Is there other way to do this?
    Thanks for your help!
    Regards!
    *Source Structure*
    <?xml version="1.0" encoding="UTF-8"?>
    <MT_OrdemServico_Dealer>
                 <DEALER>
          <ID_CONC>ID_CONC</ID_CONC>
          <ORDEMSERVICO>
             <ID_OS>Service Order Number 1000</ID_OS>
             <TP_OS> Type Service Order - 10</TP_OS>
             <CHASSI>CHASSI Number 9090190HJJX</CHASSI>
             <MODELO>Car Model Honda CRV</MODELO>
             <SERVICOS>
                <TP_SERV>Type Service - Inspetion</TP_SERV>
                <DS_SERV>Description Service Inspetion car</DS_SERV>
                <PECA>
                   <CD_PECA>Code Part - A</CD_PECA>
                   <QT_PECA>Quantity part - 1</QT_PECA>
                </PECA>
                <PECA>
                   <CD_PECA>Code Part - B</CD_PECA>
                   <QT_PECA>Quantity part -2 </QT_PECA>
                </PECA>
             </SERVICOS>
             <SERVICOS>
                <TP_SERV>Type Service - Revsion</TP_SERV>
                <DS_SERV>Description Service RevisionCar</DS_SERV>
                <PECA>
                   <CD_PECA>Code Part - C</CD_PECA>
                   <QT_PECA>Quantity part -1</QT_PECA>
                </PECA>
             </SERVICOS>
          </ORDEMSERVICO>     
       </DEALER>
    </MT_OrdemServico_Dealer>
    *Target Structure*
    <?xml version="1.0" encoding="UTF-8"?>
    <MT_OrdemServico_Dealer>
          <ORDEMSERVICO>
             <ID_CONC>ID_CONC</ID_CONC>
             <ID_OS> Service Order Number 1000</ID_OS>
             <TP_OS> Type  Service Order - 10</TP_OS>
             <CHASSI>CHASSI Number 9090190HJJX</CHASSI>
             <MODELO>Car Model Honda CRV</MODELO>
             <SERVICOS>
               <ID_CONC>ID_CONC</ID_CONC>
               <ID_OS> Service  Order Number 1000</ID_OS>
                <TP_SERV>Type Service - Inspetion</TP_SERV>
                <DS_SERV>Description Service Inspetion car</DS_SERV>
                <PECA>
                  <ID_CONC>ID_CONC</ID_CONC>
                  <ID_OS> Service Order Number 1000</ID_OS>
                  <TP_SERV>Type Service - Inspetion</TP_SERV>             
                  <CD_PECA>Code Part - A</CD_PECA>
                   <QT_PECA>Quantity part - 1</QT_PECA>
                </PECA>
                <PECA>
                   <ID_CONC>ID_CONC</ID_CONC>
                  <ID_OS> Service Order Number 1000</ID_OS>
                  <TP_SERV>Type Service - Inspetion</TP_SERV>            
                   <CD_PECA>Code Part - B</CD_PECA>
                   <QT_PECA>Quantity part -2 </QT_PECA>
                </PECA>
             </SERVICOS>
             <SERVICOS>
                <TP_SERV>Type Service - Revsion</TP_SERV>
                <DS_SERV>Description Service RevisionCar</DS_SERV>
                <PECA>
                   <CD_PECA>Code Part - C</CD_PECA>
                   <QT_PECA>Quantity part -1</QT_PECA>
                </PECA>
             </SERVICOS>
          </ORDEMSERVICO> 
    </MT_OrdemServico_Dealer>

    That should work with useOneAsMany
    It should be:
    ID_OS                     \
    PECA                      - useOneAsMany - ID_OS
    PECA - splitbyvalue /

  • Graphical icons disabled in Integration Repository - Mapping Editor Screen

    Hi,
    Below icons are disabled in Mapping Editor screen.
    Select Message,
    Map Selected fields and strctures if Names are identical,
    Clear Mapping,
    DataFlow Editor,
    Text Preview,
    Show Mapping Templates Used,
    Dependencies,
    Show Suitable Templates etc.
    OS using: Windows XP Home
    Please let me know if anybody faced this problem and how to resolve.
    Thanks
    Balaji

    Just in case someone else sees this posting - I will tell you how to revert back to working version of JAVA.
    Upgraded the other day to JAVA 1.6.0_01 then Editor would not activate the buttons
    From my PCs Control Panel - go to JAVA Control Panel and via the JAVA tab, check JAVA version you are using.
    If like me it was 1.6.0_01 then go to the Java Application Runtime settings and disable that version
    and apply the setting - this should now set you back a version.   I restarted my PC too just in case.
    Now when you go back into the Designer check the JAVA version being used   Menu go to Help > Information.  For me it was 1.6.0_01 and now it is back to 1.5.0_09.
    Now the Editor in change mode will now have the buttons active again !

  • Hibernate mapping editor not working fully

    My hibernate mapping editor is not working fully. I can manually enter a new property into the xml and the design pane will update but if I try to add a new property in the design pane it only adds "<property/>" without the attributes specified.
    I looked at my workshop log and I did find the following exception:
    BEGIN EXCEPTION-
    !ENTRY org.eclipse.ui 4 0 2007-03-13 09:08:37.939
    !MESSAGE Failed to execute runnable (java.lang.NullPointerException)
    !STACK 0
    org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException)
         at org.eclipse.swt.SWT.error(SWT.java:3374)
         at org.eclipse.swt.SWT.error(SWT.java:3297)
         at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:126)
         at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3325)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2971)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95)
         at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
         at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
         at org.eclipse.core.launcher.Main.run(Main.java:977)
         at org.eclipse.core.launcher.Main.eclipse_main(Main.java:952)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.m7.installer.util.NitroxMain$1.run(NitroxMain.java:36)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.lang.NullPointerException
         at com.m7.wide.doceditor.XmlTagCommander$_A.actionPerformed(Unknown Source)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.AbstractButton.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at com.m7.wide.eclipse.jstudio.Plugin$_A.A(Unknown Source)
         at com.m7.wide.eclipse.jstudio.Plugin$4.run(Unknown Source)
         at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
         at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
         ... 32 more
    ---END EXCEPTION---
    Any ideas on how to fix this?
    Thanks,
    Avi.

    Yes, there is a known issue using the latest update of 1.4.2 or 1.5.0 vm.
    Generally, Workshop should work fine with 1.4.2 or 1.5.0 series. You can find the supported platform info at
    http://edocs.bea.com/workshop/docs92/supportedplatforms33.html
    FYI:
    http://forums.bea.com/bea/thread.jspa?threadID=400001144&tstart=15&mod=1169490304818
    http://forums.bea.com/bea/thread.jspa?threadID=400001987&tstart=0&mod=1172533558688

  • Obsticles moving within WCS MAP Editor

    I have an issue whereby I import a floor plan into WCS and then open the map editor and draw over the map the wall obsticles so as to have the heat maps and RF predictions reflect the attenuation characteristics of the walls.
    I save the map and at a later date reopen it only to find that the obsticle layer has moved or offset to the map. Considering that the floor layouts I have been editing are in some cases 40,000 sq meters in area, the number of walls to re draw constitutes major work.
    I picked this problem up originally when my heat maps would suddenly be cut off mid room where the was no obvious obsticle. On opeing up the map editor I find that the overlay is offset by the same amout of the error in the heat maps.
    The maps in question, beign floor layouts have nopt been moved in reference to their offset to their respective building plan.
    The versions of code I am runnign is as follows:-
    WCS: 7.0.164.0
    MSE: 7.0.105.0
    WLC: 7.0.98.0

    No mention of the number of obstacles. I too am very detailed on my map layouts. The only thing they came back to me was that I may have been inaccurately drawing the obstacles by not magnifying the floor plan enough. This was a bit of an insult.
    I have had situaltions whereby I can open a map one day and it is out of sync, and next it appears fine ( or almost).
    I also have problems whereby i cannot get to the lower right portions of the floor plans when magnified as it is off the screen. I currently have 9 major hospital campuses with numerous buildings in each, some with up to 12 floors. Each floor layour is as detailed as I can possibly make it, and the thought of re doing these maps is somethign i just do not want to go to!
    What the TAC finally got me to do was to tunr on logging and record when instances happened. The only problem here is that if you do not know or cannot repeat an instance of teh map going out of sync, how do you record the logging.
    As I stated, I have basically given up on finding a resolution as I think it goot all too hard for Cisco to identify the actual issue.

  • WCS Map editor offsetting walls

    Hi,
    WCS version: 7.0.230.0.
    I import a map to WCS then open Map Editor, scale the floor and then draw the walls. But the next time (for example the next day) I open Map editor the walls have moved about 1-2 meters. Often to the left and/or up. This mess up my RF predictions.
    I have tried Internet Explorer 8, Chrome, latest FireFox. Om rare occations the walls are in their correct place, but most often not.
    Anyone had this problem and got a fix for it?
    //Philip

    I have experienced this exact problem before in WCS 7 a couple of years back and we are not the only ones it seems: https://supportforums.cisco.com/thread/2040769
    I now run NCS 1.1 and this problem is still not resolved, all the walls in my drawn maps gets offset a couple of meter messing up my RF predictions.
    I would also really like to find a fix for this or know what I might do wrong.
    //Markus

  • Convert from 2013 to 2012 files

     any idea  how to convert from  2013 to 2012  ??
    thanks alot
    Solved!
    Go to Solution.

    In LV2013 do File...Save For Previous Version.
    I don't know if this is available for all LV version (I have Pro). You can also post your vi to the version conversion board
    http://forums.ni.com/t5/Version-Conversion/bd-p/VersionConversion
    Ben64

  • Hang in Mapping editor Canvas in OWB 10G r2

    For the second time I have problem with the mapping editor. All objects and mappings are invisible. The background color is grey, and it's not possible to drag new objects into the canvas. The only workaround I have found, is a full new installation of the clientsoftware.
    Any idees why this happens, and possible workarounds ?

    I raised a Tar on metalink for this issue, here is the reply I got:
    This is what I received from Development:
    The real-time feature was pulled from OWB 10gR2 and this also included the
    AQ import which was in 10.1, I think they must have been
    tightly coupled. The workaround involves coding; the pre-Paris solution
    basically created a temporary table where messages were staged and this
    queue table used for the map; the map had pre/post map triggers for
    initializing/finalizing the queue. To use it effectively it would be best to
    create some scripts that generate the appropriate SQL scripts for the
    supporting map queue table and also the PLSQL procedures representing the
    pre/post map triggers. Similar manual coding is applicable for using CDC
    within OWB for OWB 10gR2.
    These features are planned for a future release.
    Implementation of this work-around is something you can do or Oracle Consulting can do. Support
    cannot assist in developing a solution for this.
    ------------------------------------------------------------------------------

  • Message mapping editor

    in messgae mapping editor, what are the nodes with a "red circle" mean....and what does green colored and red colored circle means,
    sometimes i encounter this problem while testing message mapping:
    "Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd"
    can u detail this

    The nodes with a little red-lined circle are the nodes that are marked with max occurrence > 1 (for example, unbounded). That means that these fields can occur repeatedly in the target message.
    Green circles mean fields that you have already mapped or that are not necessary to be mapped, they will be created automatically (for fields with 1...1 occurrence in target message).
    Grey circles mean fields that you haven't mapped yet, but that are not necessary (optional fields, with min occurrence = 0). In particular, nodes which accept multiple instances (with little red circle) will have gray circle, even if they have min occurrence >= 1. You'll have to pay attention on those.
    Red circles mean fields that are obrigatory in target message (for example, fields with min occurrence = 1) but are not mapped yet.
    Regards,
    Henrique.

  • Creat a Dashboard - A Particular User/User Group mails send/receive Statstics - is it possible ? How ? Exchagen 2013 Scom 2012 R2

    I want to see a particular user mailbox statistics for its send receive count in particular hours of the day
    Is there a way to build such a dashboard in SCOM 2012 R2 for Exchange 2013 ?
    Please help.
     

    Hi,
    The follwing article may be helpful
    Monitoring Exchange 2013 with SCOM 2012
    http://www.msexchange.org/articles-tutorials/exchange-server-2013/monitoring-operations/monitoring-exchange-2013-scom-2012-part1.html
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Many Options in Message Mapping Editor Disabled

    Hello all,
    Many fields in Mapping editor are disbled. Fields like,
    ==>"Map Selected fields and Substructures, if names are identical"
    ==>"Clear Mapping"
    ==>"Data Flow Editor"
    etc, in that row, except "Edit Java sections" and "Select Message" are diabled.
    How to enable them?
    Thanks and Regards,
    Sundar

    Hi,
    Open your respective SWCV.
    Double click on SWCV and look at the bottom of it, there will be two check boxes just make sure both are checked. (I don't remember the names but you need to check both of them).
    Regards,
    Sarvesh
    Edited by: Sarvesh Singh on Jan 2, 2008 5:41 PM

  • WCS 7 map editor issue

    Hi Guys,
    I am currently setting up some maps on WCS version 7. The map displays correctly in the floor view but if I open in Map Editor it seem to crop about a 1/3 of the picture on the right hand side. I have tried using different building/floor size combinations and also tried using the scaling tool to oversize/undersize the picture.
    No matter what I try the picture always looks correct in the floor view but is cropped in the Map editor.
    Any ideas? is there a way to move the the picture around in the  Map editor?  I have had not encountered this before on previous versions.

    Hi,
    This may be the bug that we are hitting..
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCti28776
    You can try the work aroung specified in the bug and see if that helps.
    Workaround:
    Re-size image to make sure that neither height or width exceeds 2880 pixels.  If
    needed, use WCS to re-scale the image to needed building proportions.
    lemme know if this answered your question..
    Regards
    Surendra
    ====
    Please dont forget to rate the posts which answered your question and mark it as answered or was helpfull

  • Cisco WCS Map Editor- Any suggestions???

    Does anyone here on the forum have any suggestions to make the Map Editor function in Cisco's WCS easier to navigate??  I have been trying to set the "light walls" on the floor plan I uploaded and it keeps coming out a mess.  Also, when I am done adding the interior walls how do I stop editor for outlining?
    Any suggestions would be great.  Ready to scream!
    Thank you.
    Rgds,
    Vicky

    I used to double click the mouse when i finish drawing  a wall it seems to work but yea it is quite hard. You should be able to click save button on top of the editor to stop and you can outline. Is that what you want to know?
    cheers

  • WCS map editor

    Hi, we use WCS 7.0.240, with Wism controller to manage our wireless network. We try to import map in the WCS to place AP and see the propagation of the signal, but no matter if I import cad file, jpeg or png file, I see the it in the maps tool but when I try to edit the map with map editor to draw wall, the image is all white. So I can't see the imported image. I try different scale, resolution. nothing change.
    In the last years or two, I import some map and these one we can edit it, but new one, we can't. The only change we made in past years is to update WCS.
    How can I resolve that.                

    Hi,
    have you tried different browsers?
    Rating useful replies is more useful than saying "Thank you"

Maybe you are looking for