Using Spatial to hyperlink to 'Hummingbird DM' enterprise doc library

As always, thanks in advance for your help...
I'm working on a project where we're implementing Spatial for an enterprise GIS repository. It's a challenging project as we will have a number of application clients who read and/or write to Spatial.
One of the core functions will be to provide GIS based access to corporate documents (scanned images) currently indexed and accessed through Hummingbird DM. I'd like to have a hyperlink in a field so when users click the GIS feature and open the feature's table record, they can click a field to pop open a window with related raster image(s) for the facility.
I envision storing the document name in Oracle, then potentially using an API call to Hummingbird that passes an application login and the document name, upon which Hummingbird would open a window displaying the document and related documents from its own index.
Anyone have experience or recommendations?
Thanks - Mark

Hello Mark,
we are using GIS System and Hummingbird DM too, but didn't connect them together until now.
I think what's possible depends on your GIS Client and his possibility. What can be done by your GIS when user wants to see the document? Fire requests? Run stored procedures? ....
To use the Hummingbird API is may be possible. I would prefer to get the path and filename of the document from the hummingbird metadata itselfs (you use Oracle for storing DMS metadata, aren't you?) and provide these to the GIS Client. This way you can stay the whole time inside Oracle! Normaly a GIS Client can open and show documents itself, this can be helpfull. Of course you are working beside the DMS and have to take care about access rights.
Regards
Udo

Similar Messages

  • Ask : Trigger using spatial operation

    Hi all...
    I have two tables called OBYEK_PAJAK and AREAL_KEBUN, created using following statement :
    CREATE TABLE obyek_pajak (
    nop VARCHAR2(9) NOT NULL,
    npwp_wp VARCHAR2(15) NULL,
    kel_op VARCHAR2(100) NULL,
    kec_op VARCHAR2(100) NULL,
    luas_areal_op NUMBER NULL,
    tgl_ijin_op DATE NULL,
    mi_style VARCHAR2(254) NULL,
    mi_prinx NUMBER(11,0) NOT NULL,
    geoloc SDO_GEOMETRY NULL,
    kd_kppbb CHAR(2) NULL
    CREATE TABLE areal_kebun (
    id_areal_kebun NUMBER NOT NULL,
    nop VARCHAR2(9) NOT NULL,
    luas_areal_kebun NUMBER NULL,
    tahun_tanam VARCHAR2(4) NULL,
    mi_style VARCHAR2(254) NULL,
    mi_prinx NUMBER(11,0) NOT NULL,
    geoloc SDO_GEOMETRY NULL,
    kd_areal_kebun VARCHAR2(2) NULL,
    kd_tanaman VARCHAR2(2) NULL
    both of them have spatial column called geoloc. Column NOP in table AREAL_KEBUN references to column NOP in table OBYEK_PAJAK (so AREAL_KEBUN as a child and OBYEK_PAJAK as a parent)...
    I'm using Mapinfo to insert spatial column and others column manually using (i) menu in mapinfo and they're done their job.
    Now I'm trying to fill column NOP of AREAL_KEBUN table automatically using trigger when I've finish i.e. draw a polygon IN OBYEK_PAJAK boundary...in the other words I would like to fill my NOP column in AREAL_KEBUN using spatial operation to get NOP value from OBYEK_PAJAK table were related spatially with inserted polygon in AREAL_KEBUN.
    I'm trying to create my fool trigger and it not work...here is it :
    CREATE OR REPLACE TRIGGER fill_nop_kebun before insert on areal_kebun
    REFERENCING OLD AS OLD NEW AS NEW
    FOR EACH ROW
    BEGIN
    DECLARE var_nop VARCHAR2(9)
    SELECT a.nop into var_nop from obyek_pajak a, areal_kebun where sdo_anyinteract(a.geoloc,:new.geoloc)='TRUE';
    INSERT INTO areal_kebun(:new.nop) VALUES (var_nop);
    end;
    Anybody has solution for this?? Please help me ASAP and thank for help!
    sorry about my poor english....
    Regard
    Adhi

    Hi Adhi,
    I have changed FILL_NOP_KEBUN trigger little bit, and now it is working. Changed trigger looks like:
    CREATE OR REPLACE TRIGGER FILL_NOP_KEBUN
    BEFORE INSERT
    ON AREAL_KEBUN
    REFERENCING NEW AS new
    FOR EACH ROW
    DECLARE
    var_nop varchar2(9);
    BEGIN
    SELECT a.nop into var_nop from obyek_pajak a where sdo_anyinteract(a.geoloc,:new.geoloc)='TRUE';
    :new.nop := var_nop;
    END;
    I have tested it on my machine - if new geometry interacts with geometry stored in OBYEK_PAJAK, then appropriate nop value from OBYEK_PAJAK table is inserted into AREAL_KEBUN.
    Regards,
    Andrejus

  • Way to avoid using Spatial Cartridge?

    I have a table that stores the coordinate information of images by storing the coordinate information of the four corners of the image. I need to search the table for all cases where a given coordinate point is in the 4 corner coordinate points of the image. Can I do this without using Spatial Cartridge? Is there some easy function that can do this?

    Why do you want to avoid using the cartridge?
    If you have Locator or Oracle Spatial installed but don't want to alter
    the table's definition I would create a view and construct an SDO_GEOMETRY
    from the coordinates columns in the table. I would use a function based index
    to index the generated geometry. Then you can search to your heart's content
    using native Oracle Spatial capabilities that would not require to you to write code!
    create or replace view foo_polygon
    as
    select
    foo.attributes....,
    mdsys.sdo_geometry(2003,SRID?,NULL,
    MDSYS.SDO_ELEM_INFO(1,1003,1),
    MDSYS.SDO_ORDINATES(x1,y1,x1,y2,x2,y2,x2,y1,x1,y2)) as geom
    from foo;
    insert into user_sdo_geom_metadata (table_name,column_name,srid,diminfo)
    values ('FOO','GEOM,SRID?,
    mdsys.sdo_dim_array(
    -- No idea what your X data range is but assume it is -180 -> 180
    mdsys.sdo_dim_element('X', -180,180, 0.5),
    -- No idea what your Y range is but assume it is -90 -> 90
    mdsys.sdo_dim_element('Y', -90, 90, 0.5)
    create index foo_polygon_ndx
    on
    foo( mdsys.sdo_geometry(2003,SRID?,NULL,
    MDSYS.SDO_ELEM_INFO(1,1003,1),
    MDSYS.SDO_ORDINATES(x1,y1,x1,y2,x2,y2,x2,y1,x1,y2)))
    indextype is mdsys.spatial_index
    parameters ('sdo_indx_dims=2');
    Then query like ....
    SELECT count(*)
    FROM foo_polygon A
    WHERE MDSYS.SDO_FILTER(
    A.SHAPE,
    MDSYS.SDO_GEOMETRY(2003,NULL,NULL,
    MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,3),
    MDSYS.SDO_ORDINATE_ARRAY(&llx,&lly,&urx,&ury)),
    'querytype=window') = 'TRUE';
    S

  • Doc library - 3 columns of type Hyperlink or Picture - one of them suddenly doesn't work

    Hi
    I have a doc. library with various columns (metadata) - 3 of them is of the type "Hyperlink or Picture".
    Suddenly, I'm not able to insert a link in one of them. When clicking 'OK' - I return to doc.library, and the link is not there. No errors. Nothing. I'm able to test the link - and also able to insert the same link in one of the other "Hyperlink or
    Picture" columns.
    Can anyone help?
    Best regards,
    Hasse

    Hi,
    Columns of type Hyperlink or Picture are used to store a hyperlink to a Web page or to display a graphic on the intranet or Internet.
    Does your Columns with the same Format URL? Hyperlink or Picture?
    If your column is with Picture Format URL, you can't directly add picture into "Hyperlink or Picture" column because this column takes URL value and image is binary etc. You can first upload that picture into picture library (create new picture
    or document library) then add that image link into that column.
    Besides, I suggest you create a new document library with the same 3 columns of type Hyperlink or Picture and compare the results. if the issue doesn't exists in other library, you can delete the issue column and create a same column in the document library.
    Best regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • I'm using ADE with a Mac and have successfully downloaded library books for a few years; suddenly today the books are downloading to the Finder but do not show up in ADE so that they can be put on my Nook.

    Is anyone suddenly having trouble using Adobe Digital Editions on a Mac to download library books?  I have been using this to load books on to my Nook and suddenly, out of nowhere, everything is downloading to the Finder app.  ADE pops up like it always has when I download from the library website, but the book does not show up there.
    Has something changed?

    1. iTunes won't offer cloud downloads for songs that it "thinks" are in your library, even if it "knows" the files are missing. If you've exhaustively searched for the missing files and there is no prospect of repair by restoring to them to their original locations, or connecting to new ones, then delete that tracks that display both the missing exclamation mark and are of media kind Purchased/Protected AAC audio file. Don't hide from iTunes in the cloud when asked, close iTunes, then reopen. You can download from the cloud links or iTunes Store > Quicklinks > Purchased > Music > Not on this computer > All songs > Download all.
    2. Why? Not sure, perhaps 3rd party tools or accidental key presses combined with previously hidden warning messages when trying to organize the library. There is a hint that using the feature to downsample media as it is synced to a device may also be involved, though I've not replicated it. Whatever the reason a backup would protect your media.
    tt2

  • I used to have over 2000 songs in my itunes library, now there are only a few and I cannot find the others.

    I used to have over 2000 songs in my itunes library, now there are only a few and I cannot find the others.

    See this post.
    tt2

  • Hi, does someone know if I can use two Apple tv's with the same iTunes library? Thanks

    Hi, does someone know if I can use two Apple tv's with the same iTunes library?
    Thanks

    Yes you can use two (or more) AppleTVs with one iTunes library. They can both stream from iTunes (or the internet) at the same time, as long as you have a good working LAN and internet connection.

  • I keep my library on an external hard drive 4TB.  It's full.  Can I use more than one hard drive to keep my library on?

    I keep my iTunes library on an external hard drive 4TB.  It's full.  Can I use more than one hard drive to keep my library on? Like two 4TB next to each other.

    Create a concatenated disk set
    Increase storage space with a concatenated RAID set (also called “Just a Bunch of Disks” or JBOD). If you need one large disk, but you have only several smaller disks, you can create a concatenated disk set to use several small disks as one large disk.
    Open Disk Utility, in the Utilities folder in Launchpad.
    Select one of the disks that you want in the set, and then click RAID.
    Click Add (+), and type a name for the RAID set.
    Choose a format from the Format pop-up menu. Usually you’ll choose the Mac OS Extended (Journaled) format.
    Choose Concatenated Disk Set from the RAID Type pop-up menu.
    Drag the disks you want to add to the set to the list on the right.
    Click Create.
    Exerpt from:
    Disk Utility 12.x: Create a RAID set - Apple - Support
    Note that the biggest CON to concatenated RAID configurations is vulnerability to volume failure. If either disk fails, the whole volume fails. If you choose this option, I would highly recommend backing up your music to a cloud service. There are very cheap per GB/storage, and some of the most reputable actually offer unlimited storage:
    Five Best Cloud Storage Providers - Lifehacker

  • HT3819 Can I use Home Sharing to permanently Transfer my old iTunes Library to a new macbook pro?

    Hi,
    I have a quick questoin regarding iTunes Home Sharing. 
    1. Can I use Home Sharing to transfer music from my iTunes Library on my old Power Mac to iTunes on my new MacBook Pro?
    2. If I deauthorise iTunes on my old Power Mac will I lose my music on my new iTunes Library on my Macbook Pro - essentially are the two somehow linked together? I want to erase my old HD, wipe it clean, chuck it in a case and use as a back up storage, and then sell my old Power Mac.
    Thanks in advance.
    foginwater

    Home Sharing is only for PCs that are connected in the same network

  • I have an ipod nano and use one click digital to download books from my library.  My nano says I have 2449 songs which is 65 books.  I have deleted all my playlists after I listen to the audiobook.

    I have an ipod nano and use one click digital to download books from my library.  My nano says I have 2449 songs which is about 65 books.  I have deleted all my playlists after I listen to the audiobook.  Now I get a message saying I don't have enough room on my nano to transfer new books to it.  My nano is 16 GB and my operating system is Windows 7.

    iTunes and Apple's devices work as an ecosystem. iTunes is designed to sync with Apple's products, not anyone else's. You'll need your songs in a format compatable with the Samsung phone and to use the software transfer program supplied/recommended. It is essentially not an Apple/iTunes problem. You may have better luck finding the information you need on Samsung's forums.
    tt2

  • The pc that I used to download CD music to into my itunes library was stolen and I had no backup. I have all my itunes music on my iphone and ipod. can i have music from music from my iphone or ipod transferred to my mac computer through itunes?

    The pc that I used to download CD music to into my itunes library was stolen and I had no backup. I have all my itunes music on my iphone and ipod. can i have music from music from my iphone or ipod transferred to my mac computer through itunes?

    I have a similar problem.  I recieved an IPAD for my birthday, and my daughter updated my itunes library so i can use it with the ipad...and somehow all my songs (unpurchased from itunes, and downloaded  from a large collection of CDs) ...and play lists were deleted.   I still have them on my old ipod, and wonder how to get them back onto my computer so I can redistribute some of them to the ipad.  I must be getting too old for this tech stuff, it gets less user friendly every year.

  • No longer able to use previous method for adding tracks and orginizing my library :(

    I use to add a few mp3's to my library then sort the library by date added to see the just added tracks at the top [most recent] of that view, well that don't always work since itunes 11. Can anyone explain please? or even offer an alternate method? I know there is now a folder named "Automatically Add to iTunes" is it absolutely necessary that I use that folder? If it is that odd because not everyone is as gifted as I {NOT!} and they might not be able to locate the folder.
    thanks
    Fredy

    You can restore much of the look & feel of the previous version with these shortcuts:
    CTRL+B to turn on the menu bar.
    CTRL+S to turn on the sidebar (your device should be listed here as before).
    CTRL+/ to turn on the status bar.
    Click the magnifying glass top right and untick Search Entire Library to restore the old search behaviour.
    Use View > Hide <Media Kind> in the cloud or Edit > Preferences > Store anduntick Show iTunes in the cloud purchases to hide the cloud items. The second method eliminates the cloud status column (and may allow iTunes to start up quicker).
    Use the Songs view and enable (if necessary) the Date Added column, then sort in descending order. Alternatively you could use the Recently Added smart playlist to view your imports.
    tt2

  • Using MacBook Pro to convert pdf to word doc...downloaded...converted, and what I got was illegible. What's the deal?

    Using MacBook Pro to convert pdf to word doc...downloaded...converted, and what I got was illegible. What's the deal? Did I miss a couple steps along the way?

    Hi Deborah,
    Please Elaborate your issue so that i can assist you better.
    Regards,
    Rahul

  • I'm using a Canon HV20 video camera that uses digital tape. After importing to my Events Library in Final Cut X, there are some timecode breaks between clips resulting also in gaps between the clips. Is there a way to avoid this?

    I'm using a Canon HV20 video camera that uses digital tape. After importing to my Events Library in Final Cut X, there are some timecode breaks between clips resulting also in gaps between the clips. Is there a way to avoid this?

    Thanks Russ.  I'm a beginner but Lynda.com has a video on making an archive, so I'll follow her video to try this method.

  • I am thinking of buying a "new" iPad but I have a very large iPhoto library which I would like to keep intact and be able to view on my new iPad.  Is there a way to use a external storage device to store the iPhoto library and view it on the iPad?

    I am thinking of buying a "new" iPad but I have a very large iPhoto library which I would like to keep intact and be able to view on my new iPad.  Is there a way to use a external storage device to store the iPhoto library and view it on the iPad?

    You can't use an external hard drive like you would with a computer.
    You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
    When you first connect the USB flash drive, you will only see thumbnails of the pics on the iPad; you have to import the pic file to see the full size. With your large library of pics, you will have to do this repeateably and then delete pics so you don't exceed your memory capacity.
     Cheers, Tom

Maybe you are looking for

  • I have a HP Officejet Pro 8500A Premium

    I am getting a jammed paper alert and there is no paper jammed. I have followed the instruction on the help video, but printer keeps posting a jammed paper notice.  I have unplugged the machine and that hasn't worked.  I cannot run a test page becaus

  • Time Out Error while execution of messages

    Hello All, Our Env. is XI 3.0 , and this is related to PRD system, This problem is relating to an Outbound service. This particular message gets executed in some times and in some cases it throws Time out Exception . This is the following log which i

  • Using AIA specific functions in OSB

    Hi all, Is it possible to use the AIA specific functions in OSB, which is available in aia.jar? White paper also available for this http://www.oracle.com/applications/implementing_aia_on_osb_white_paper_final.pdf But it not gives the information on h

  • Screen sharing authentication

    Somehow  authentication for screen sharing on one machine (say machine A)  from another machine (say machine B) got set to use kerberos (kdc) and not to require a password.  Both machines are running OS X 10.10.1. After successful connection, the con

  • Error in OCS provisioning webconsole for migrated LDIF user --- [ESDS error

    I migrated an LDAP user via LDIF file (source objectclass is inetOrgPerson) through OCS directory provisioning web console. It imported successfully with 0 errors and 0 warnings. However, When I view this user via the same console.. I get the followi