Drag on map to collect all coordinates

Hi,
As far as I know and after looking at the mapviewer library, I feel that there is no way to attach mouse drag event with mapview. Please correct me if I'm wrong and let me know if there is a way in updated version of mapviewer to attach mouse drag event with mapview.
Best,
Tejas Gajera
Edited by: Tejas Gajera on Mar 11, 2010 11:51 AM

Hi Remo;
OSS number is 934848 and one more to check is 965386 and a bunch of document from all over but the problem is not see the data that i have but being connected to the backend system.
just type in BI Administrator and you will find about 5 PDF document pages, 15, 58, 61, 66 and 71. all these documents explains what this cockpit can do and a little how it does it.
any way BASIS has to configure BI, WAS and Jave to communicate with each other.
Backend system has to communicate with portal and it uses Java connectors and shows all the interactive pages using WAS.
I am having the same problem, it is not connecting i had it working in Dev but not in QA. if you find some new let me know and we will share the docs.

Similar Messages

  • After dragging a map and navigating away all other scenes are off centre..

    My Flash document contains several scenes, one of them is a draggable map including hotspots/buttons to navigate to another scene.
    After dragging the map then navigating from one of the buttons the next frame is remains off centre (as if when the map was dragged the whole Flash movie has been dragged away from the centre stage).
    The map is a graphic, inside that it is a button and then inside that the navigational button.
    In the timeline in an actions layer I have:
    stop();
    mapisland.onPress = function(){
        this.startDrag(false,296,317,-55,10);
    mapisland.onRelease = function(){
        stopDrag
    mapisland.onReleaseOutside = function(){
         stopDrag
    And applied to the hotspot button:
    on (release) {
        this._parent.gotoAndPlay("Arrow");
    The navigation and drag work fine, however as I stated before when navigated to the "Arrow" scene the all that can be seen of it is just a corner.
    Any help would be greatly appreciated. Thank You
    Ric

    If your Jetpack is powered on then you are going to be liable for any data usage that occurs.  It doesn't matter if the usage was intentional or not.  The best practice while investigating a data usage/overage situation is to power down your Jetpack when you are done using it.  That is the only way you can be sure that your sleeping devices are not actually communicating and pulling updates.  Situations like this are often why I do not suggest Jetpacks as a primary internet connection from home.  Jetpacks are designed to be temporary and mobile internet connections best suited for a traveling business man or someone frequently on the move.
    It sounds like you have done everything that VZW can normally do in an overage situation.  You had your first overage wiped, had the device swapped out and changed passwords (although that shouldn't matter from your description).  The only loose end you haven't tended to is leaving the Jetpack powered on when not in use.  That or switching to a different Jetpack model or 4G LTE device (ex. USB modem+router or 4G LTE router) to see if they behave any better.
    My suggestion would be to terminate considering the amount of time and money you have already invested in this situation.  Give another service provider a chance and see if the performance is any better.  If you spend more time troubleshooting it should be on how to handle the termination fee (which is pro-rated). VZW will still be here if you decide to return down the road, perhaps things will be better.

  • Issue with xsd Data type mapping for collection of user defined data type

    Hi,
    I am facing a issue with wsdl for xsd mapping for collection of user defined data type.
    Here is the code snippet.
    sample.java
    @WebMethod
    public QueryPageOutput AccountQue(QueryPageInput qpInput)
    public class QueryPageInput implements Serializable, Cloneable
    protected Account_IO fMessage = null;
    public class QueryPageOutput implements Serializable, Cloneable
    protected Account_IO fMessage = null;
    public class Account_IO implements Serializable, Cloneable {
    protected ArrayList <AccountIC> fintObjInst = null;
    public ArrayList<AccountIC>getfintObjInst()
    return (ArrayList<AccountIC>)fintObjInst.clone();
    public void setfintObjInst(AccountIC val)
    fintObjInst = new ArrayList<AccountIC>();
    fintObjInst.add(val);
    Public class AccountIC
    protected String Name;
    protected String Desc;
    public String getName()
    return Name;
    public void setName(String name)
    Name = name;
    For the sample.java code, the wsdl generated is as below:
    <?xml version="1.0" encoding="UTF-8" ?>
    <wsdl:definitions
    name="SimpleService"
    targetNamespace="http://example.org"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://example.org"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    >
    <wsdl:types>
    <xs:schema version="1.0" targetNamespace="http://examples.org" xmlns:ns1="http://example.org/types"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import namespace="http://example.org/types"/>
    <xs:element name="AccountWSService" type="ns1:accountEMRIO"/>
    </xs:schema>
    <xs:schema version="1.0" targetNamespace="http://example.org/types" xmlns:ns1="http://examples.org"
    xmlns:tns="http://example.org/types" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import namespace="http://examples.org"/>
    <xs:complexType name="queryPageOutput">
    <xs:sequence>
    <xs:element name="fSiebelMessage" type="tns:accountEMRIO" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="accountEMRIO">
    <xs:sequence>
    <xs:element name="fIntObjectFormat" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageType" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageId" type="xs:string" minOccurs="0"/>
    <xs:element name="fIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fOutputIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fintObjInst" type="xs:anyType" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="queryPageInput">
    <xs:sequence>
    <xs:element name="fPageSize" type="xs:string" minOccurs="0"/>
    <xs:element name="fSiebelMessage" type="tns:accountEMRIO" minOccurs="0"/>
    <xs:element name="fStartRowNum" type="xs:string" minOccurs="0"/>
    <xs:element name="fViewMode" type="xs:string" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://example.org"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://example.org" xmlns:ns1="http://example.org/types">
    <import namespace="http://example.org/types"/>
    <xsd:complexType name="AccountQue">
    <xsd:sequence>
    <xsd:element name="arg0" type="ns1:queryPageInput"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="AccountQue" type="tns:AccountQue"/>
    <xsd:complexType name="AccountQueResponse">
    <xsd:sequence>
    <xsd:element name="return" type="ns1:queryPageOutput"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="AccountQueResponse" type="tns:AccountQueResponse"/>
    </schema>
    </wsdl:types>
    <wsdl:message name="AccountQueInput">
    <wsdl:part name="parameters" element="tns:AccountQue"/>
    </wsdl:message>
    <wsdl:message name="AccountQueOutput">
    <wsdl:part name="parameters" element="tns:AccountQueResponse"/>
    </wsdl:message>
    <wsdl:portType name="SimpleService">
    <wsdl:operation name="AccountQue">
    <wsdl:input message="tns:AccountQueInput" xmlns:ns1="http://www.w3.org/2006/05/addressing/wsdl"
    ns1:Action=""/>
    <wsdl:output message="tns:AccountQueOutput" xmlns:ns1="http://www.w3.org/2006/05/addressing/wsdl"
    ns1:Action=""/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="SimpleServiceSoapHttp" type="tns:SimpleService">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="AccountQue">
    <soap:operation soapAction=""/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="SimpleService">
    <wsdl:port name="SimpleServicePort" binding="tns:SimpleServiceSoapHttp">
    <soap:address location="http://localhost:7101/WS-Project1-context-root/SimpleServicePort"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    In the above wsdl the collection of fintObjInst if of type xs:anytype. From the wsdl, I do not see the xsd mapping for AccountIC which includes Name and Desc. Due to which, when invoking the web service from a different client like c#(by creating proxy business service), I am unable to set the parameters for AccountIC. I am using JAX-WS stack and WLS 10.3. I have already looked at blog http://weblogs.java.net/blog/kohlert/archive/2006/10/jaxws_and_type.html but unable to solve this issue. However, at run time using a tool like SoapUI, when this wsdl is imported, I am able to see all the params related to AccountIC class.
    Can some one help me with this.
    Thanks,
    Sudha.

    Did you try adding the the XmlSeeAlso annotation to the webservice
    @XmlSeeAlso({<package.name>.AccountIC.class})
    This will add the schema for the data type (AccountIC) to the WSDL.
    Hope this helps.
    -Ajay

  • ImmutableArrayList default for Map Long, Collection String

    Hi,
    There are a few topics out there about the com.tangosol.util.ImmutableArrayList default, but the actual fix still seems a bit unclear to me.
    In my example there is a Map with each entry containing a Collection of Strings (i.e. Map<Long, Collection<String>>). Objects will be placed in the Map as ArrayLists, but they seem to come out as ImmutableArrayLists.
    The Oracle site mentions wrapping the Collection (http://extranet.tangosol.com/display/COH35UG/Best+Practices+for+Coherence+Extend).
    There is another Oracle forum post that suggests using more general classes (List instead of ArrayList). (Serialize an ArrayList<ArrayList>
    It seems like you have to make a new collection anytime you wish to reserialize the object. Is there a better way?
    Thanks for taking the time,
    Mike

    This problem comes up for us when persisting documents. We are torn between saving as XML vice saving a normalized object model or something else: like your database solution.
    Since you have already designed the database, then you can reverse out the TopLink class from that database design in the mapping workbench. You then have to perform a transform in the middle tier to extract your business model.
    Alternatively, if you want your business model to map via ORM to the data model, then you would have a database design that more closely maps the business model design then you get three tables:
    TopLevel
    Integer primaryKey; //This table may just have the PK
    SetMap theSets;
    SetMap
    TopLevel parent; //FK to the Parent table
    Long primaryKey; //Assumes the Longs are globally unique. If not, the PK will include the parent
    SetList theSet;
    SetList
    SepMap parent; //Part of PK. This can get complicated if the PK migrates all the way from TopLevel. We insert a surrogate key at this point.
    String setMember; //Rest of PK
    The database constraints ensure that the SetList is unique. The equivalent string may exist in different SetMaps, but may not be duplicated for a particular parent.

  • Create new Collection by simply dragging a "Folder" into "Collections"

    Ability to create new Collection by simply dragging a "Folder" into "Collections". Currently the collection name has to be created manually and files dragged into it.
    Note: Collections are important because this is the only way you can have "virtual copies" separated into different folders. For example I wanted to have set of virtual B&W images in its own folder (and the original color images in a different folder). You could only do this in "Collections". "Folders" does not allow you to separate a virtual copy from its original (because the virt copy is not really a file).
    Joe

    Thanks Sean, Good analogy! I'll have to give your method a try.
    However, I'm finding that in LR1.0 I'll probably need to create a "Collection" of almost all my "Folders" (past and future) because of the ability to have virtual copies separated into sub collections. To do so, even in the way you describe, seems to require too much typing. It would be nice to be able to simply drag folders (which I've already gone to the trouble of naming) into a Collection and have it keep the name. In Beta 4 you only had "Shoots" to deal with, hence it wasn't an issue. Now you have "Folders" and "Collections". That in itself is a little confusing; but I understand why it was done (i.e. the "why no folders?" complaints of beta testers).
    Speaking of not liking to type; I've already typed too much here... : )
    -Joe

  • How to send a Weekly E-mail to a Distribution list from Sharepoint by collecting all the events available in all Sharepoint calendars

    Hi,
        I have created many Calendars in my Sharepoint site like Meeting Calendar, Downtime Calendar etc. I will be creating some events in these calendars every week. My requirement is to collect all the events available in the calendar for that week
    and send a weekly mail with all this events to the distribution list
         Is this requirement can be done using the Sharepoint designer workflow or does it require any code related activities to accomplish this? If so can you please provide me the Steps by step process to complete this and can you also share
    the code in case if you have it
    Thanks in Advance

    Hi,
    Try with worklfow timer control and send mail to weekly.(Performance good)
    http://infomoss.blogspot.in/search/label/Workflow2010
    one more option try with Timerjob..(if no way use it)
    http://infomoss.blogspot.in/2013/05/companymicrosoft-todo-update-copyright.html
    http://infomoss.blogspot.in/2013/01/webclient-sharepoint-2010-read-image-uri.html
    Thanks
    Jaison A
    http://infomoss.blogspot.in

  • Mapping and Monitoring all the User and the Field exits

    Hello Dears,
    Are possible, with the Solution Manager to map and monitor all the user and the field exists existing in my ECC6 Productivity Environment?
    Anyone has some documentation?
    Regards to all.
    FS.

    Hello Gurus,
    Someone has any information about this question?
    Regards to all.
    FS.

  • In Photo 1.0, how does one access the map showing where all photos were taken, as could be done previously in iPhoto?

    In Photo 1.0, how does one access the map showing where all photos were taken, as could be done previously in iPhoto?

    Hi JohnDory,
    The information side-bar from iPhoto has been removed in Photos App, and so it's been converted into a pop-up window showing both the exposure, aperture and so technical photo parameters, as well as the comments, faces and LOCATION for that photo.
    This small floating window is shown whenever you click the button in the app title bar, right clicking a specific photo or pressing ⌘i
    If you open the albums view (clicking in the name of the album list, NOT an album name, you can see in your left sidebar - which can be shown or hidden) and press ⌘i without selecting a specific photo the Info pop-up will show the map for your whole library (as well as the total amount of photos, videos, GB used, etc)
    So, I'm afraid the "Locations" view (which I really loved) from iPhoto has been ripped off... and we can only get "some sort of locations view" by this method.
    As for locations... there is no option for manual geotagging (so, setting location to a specific photography which doesn't have it yet)... that really ****** me off 
    Regards,
    braincasualties.

  • Best way to collect all video and picture files for a project

    after effects has this great feature where you choose COLLECT and basically what it does is collects all your media files and puts them in a folder. What the best way to do this in FCP?

    ThatChineesYouth wrote:
    As a disclaimer; I used FCP's 'Media Manager' To duplicate my original project, to remove the excess unused clips and to preserve the right to keep specific audio files within the confines of the company. The file structure of the project, PROJECTNAME, may or has been altered as a result. Sequences might have blank spaces as a result of time remapped clips being incorrectly duplicated and media names and bin structure may be altered as 'Media Manager' caters not for the organization of the original project. These might or might not be corrected depending on how i feel at the moment of reviewing this 'duplicated' project.
    I make special exceptions for clients that do their best to stay on my good side. This disclaimer was made specifically for a project that I had to redo when the original editor was too lazy to make it "watchable". They said I only had to make some changes.... almost 2 months later, I technically did the project over from scratch.

  • MOST VISITED FOLDER all screwed up! Top sites gone; collecting all pages seen...How to fix?

    Top sites have disappeared from MOST VISITED FOLDER and is collecting ALL pages visited. I am having to delete as I surf.
    Additionally, the top sites just stayed in the MOST VISITED folder after I deleted them from showing up on the Bookmarks Toolbar. Now if I do that, it is not in MOST VISITED FOLDER.
    I am NO techie so hope your help is simple, clear and step-by-step.
    This has never happened before...HELP, ASAP!
    THXXX!
    using MOZILLA WIN XP

    * "Most Visited" and "Recently Bookmarked" and "Recent Tags" are examples of so called [[Smart Bookmarks folders|Smart Bookmarks folders]] and are not real existing folders.
    * Such smart folders show a list created by a query of the places.sqlite database that stores the bookmarks and the history in Firefox.
    * Smart folder lists show a maximum of 10 entries by default.
    * Bookmarks or history items that show up in a smart folder list are stored elsewhere in another folder and any changes made are applied to the real bookmark or history item.
    * If you remove an entry then the list is shifted up and a new entry that wasn't shown previously is added to show 10 entries.
    * If you add a new bookmark or visit a website then a new item is added at the top and the entry at the bottom disappears from that list.
    * Items that disappear from the list are not gone, but merely do not show up anymore in that list.
    * Actions like copy & paste or delete that you perform on bookmarks in such a list are done on the original bookmark.
    You may have a problem with the places.sqlite file if the history isn't working properly.
    You can check for problems with the places.sqlite database file in the Firefox Profile Folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    You can try to check and repair the places database with this extension:
    *https://addons.mozilla.org/firefox/addon/places-maintenance/

  • How do I collected all the SMS from iPhone to Mac.

    How do I collected all the SMS from iPhone to Mac. Besides these paymentprograms. And I have no previous backup that I can get it from.

    This is amazing! Pick out everything I need from the iPhone. Just what I've been looking for a long time, but did not find anything I liked. So started to see if I could pick out one and one thing ... Definitely worth the money. Thank you Julian!
    PS. I fully support the payment thing, but theres allot of legal free programs aswell, so just wondered =)

  • St03N not collecting all data

    HI
    does anyone know why would st03n not collect all proper data, we found out recently that a user had scheduled a program as a background job to run and it ran successfully but when we look on that date we don't see that it had run and even that user doesn't come out in the history
    any ideas why?
    regards

    Sorry Sujit that I wasn't clear
    the job i was referring to was a z program that was run be a user in the background.
    that is how we started knowing that there were missing data in st03n
    we were trying to see how many time that program ran and who ran it
    so we went to see in st03n but we found out that there was no history for that program in there or any history for the user who ran the z program in the background.
    there is no connection to SAP_COLLECTOR_FOR_PERFMONITOR background job. this job is running successful in our system and all other data is being collected
    so the data that was missing was on the 14th of march and then we found out that there is no entry of any sort in st03n for 15th of march, but we have data for 16th of march.
    so now we want to know what happened
    i hope this is clear now
    regards

  • BI 7.0 NW2004S SP7 - transport connection is not collecting all

    Hi ,
    I am collecting all the necessary objects and trying to transport , some of the objects like datasource or transfers structure are not getting included into the transport ? Is this some kind of bug or is there a OSS note for this ?
    Thanks
    Hareesh

    Hi,
    Have you mentioned the tick mark for required Source systems in transport connector tool?
    With rgds,
    Anil Kumar Sharma .P

  • Report which would collect all users in STAD running an specific program

    Hi
    How could I make an report which would collect all users in STAD running an specific program daily. The issuse is that this program is not available in sm20. How could I then send this list to list of receipients?
    I have in mind to "submit "stad" but it is long time ago I used this and I do not have access to that source
    THX

    we found solution via a job runned report with variant

  • How to collect all UCS-C series minor serial numbers

    Assuming one is deploying a stand alone C220 chassis which will be managed through CIMC, is there an efficient way to collect all the serial numbers for all the minor parts in the chassis?
    Cutting and pasting from the GUI is painful because complete rows and / or areas (i.e. storage adapter tab) can't be copied. It needs to be done one "cell" at a time.
    Other posts indicate using "connect debug-shell"  or "show server inventory", but seem to be available only on B series or possibly different chassis versions.
    The server_inventory.txt you get as a result of Admin | Utilities | Generate Technical Support Data unfortunately does not include serial numbers or much detail.
    Now I'm looking at simply running the following and massaging it into a pleasant spreadsheet:
    show chassis
    scope chassis
    show cpu detail
    show dimm detail
    show psu detail
    ow pciadapter-pid detail
    show network-adapter detail
    show storageadapter detail
    Does anyone have any better suggestions?  I'm currently looking at CIMC v1.5(2) if it makes a difference.

    Hello,
    Are these rack servers managed by UCSM ?
    If yes, you can export the inventoy that will include serial number information.
    If not, we can use XML API to extract necessary information.
    http://www.cisco.com/en/US/docs/unified_computing/ucs/c/sw/api/b_cimc_api_book_chapter_01.html
    As as example,following XML query would return server model and chassis serial number
    The doc has detailed information about each class.
    Padma

Maybe you are looking for

  • Erasing songs that no longer exist question

    So if you have deleted the file or also in my case renamed the song and moved it to another location, when you click on the song it says no longer exists and displays a ? beside its name now. My question is there a way to erase all songs that no long

  • Apple Thunderbolt Adapter Questions

    I just bought a new iMac. I still use FireWire peripherals, including a tape-based HDV camcorder. I just bought two of Apple's Thunderbolt-to-FireWire Adapters. These adapters serve as "patch cables" to convert Thunderbolt to FireWire 800. I have a c

  • The server {4D8E7D87-0103-42F6-BE82-598C7E90A42C} did not register with DCOM within the required tim

    hello all..... when i try to convert .indd file to PDF file in C# , i got the following error The server {4D8E7D87-0103-42F6-BE82-598C7E90A42C} did not register with DCOM within the required timeout. just 1 day ago i installed adobe indesign cs4 in m

  • Problem - Sort output in table (multiple columns)

    Dear all, First of all - Best wishes for 2008. I probably have an easy matter, but i can't figure it out, and on this forum very little is mentioned about the sort operator, so therefore this new post. I have a dashboard with some input fields (dropd

  • ACR 3.7 not available in the Camera Calibration Profile

    On a Mac G5 in the Develop module>Camera Calibration panel the only Profile that shows up is ACR 3.6. I have Camera Raw 3.7 installed in Library>Application Support>Adobe> Plug-Ins>CS2>File Formats>Camera Raw.plugin. I have a new camera that is suppo