How to create substyles in Oracle Maps?

Hi, is there any way to create substyles in Oracle Maps? I would like to create a style as described in the User's Guide for Oracle MapViewer, 3.1.12 Map Request Using Advanced Styles and Rendering Rules. This example uses a substyle element nested inside the style element.
I use MVThemeBasedFOI.addStyle to add a style to my request and MVThemeBasedFOI.setRenderingStyle to set the style for the theme. However, there's no setRenderingSubstyle or something like that.
I use Oracle 10.2.0.3.0, OC4J 10.1.3.5.0, MapViewer 10.1.3.3, and would like to create an Oracle Maps application. Thanks in advance.
Regards,
Markus

I don't have a version 8i (now desupported) database around to look, but to create a schema in oracle databases you create a user.
So... create yourself a new user and you've created a schema automatically.
;)

Similar Messages

  • How to create a new Oracle OSB project automaticaly with script without IDE

    Hello,
    I want to create automatically an "Oracle service bus project" and an "Oracle service bus configuration project" with scripts (ANT or Maven or ...) without using IDE, without using workshop or Eclipse. I want to create automatically (ANT or Maven) just a skeleton of an OSB project witch i can use after in workshop.
    I want to create 1 "Oracle service bus configuration project" with many "Oracle service bus project" automatically (ANT or Maven or scripts) witch i can use after in workshop. How to create a new Oracle OSB project automaticaly with script without IDE ? How can i do this ?
    I'm using Oracle service bus 10.3.1
    Thank you for your help.

    Thank you for your response,
    I do not want to just create the services (proxy services and business services) but I want to create a template for 40 OSB project with the same scripts ANT/Maven.
    Template="Oracle service bus configuration project" + "Oracle service bus project" + services of 40 OSB projects
    The goal is that I have more than 40 projects to create and just the name of the projects that changes (when I say the name of the project ie the name of the OSB project, the name of proxy services and the name of business services ).
    So I want to give my script (ANT/Maven) the name of 40 OSB project and the script must generate the skeleton of the 40 projects at once time and after generation of skeleton of the 40 project, I will import them in the workshop to add manually mapping and routing and other things that differs from one project to another.
    So i want to generate automatically a skeletons of 40 OSB projects using a script (ANT / Maven) and I give to the script juste the names of the 40 projects.
    I want to create a "Oracle service bus configuration project" and "Oracle service bus project" automatically of 40 OSB projects (ANT or Maven or scripts) witch i can use after in workshop.
    I want to create one 'template' of all 40 projects in the same time, with the same directory structure (Transforlation, Business services, proxy services, WSDL .....) and all 40 project have the same transport, just the names of projects and services witch changes and i can give to the script all names of projects and services and i can give also all WSDL.
    Regards,
    Tarik

  • How to create snapshot on Oracle VM 3.1.1

    Dear All,
    Any one know about how to create snapshot in Oracle VM 3.1.1? Where we can find it in Oracle VM 3.1.1?
    Please kindly shared experience about this.
    Thanks and regards,
    Vandy

    Thank you very much for your help.
    Now I am using Sun Storage 6180 Array direct attach (Fiber Chanel) with 2 Sun Fire X4100M2 Servers as Cluster, I don't know whether this storage can create snapshot for this or not? How about Oracle VM Manager can help for this?
    It seem more difficult than VMware vSphere, if Oracle can create a option for this is very good.
    Thanks and regards,
    Vandy

  • How to create an occupancy grid map

    I am using a LIDAR sensor (URG-04LX) to map an environment for DaNI 1.0 in LabVIEW Robotics 2010 module.  I want to create an occupancy grid map of the environment to use for path planning purposes. Can anyone provide me with any assistance. I have looked at the examples for path planning using the A* technique on an occupancy grid but I don't understand how to create the occupancy map.

    ... everyone above as told you how to create and LABVIEW occupancy map.... using an occupancy map.
    The labview VI assumes you know exactly what the envrioment is like. Meaning you pretty much have some representation of the enviroment.
    What you want to know is how do I generate and occupancy map using a laserscanner. For this you would need something called SLAM. Simultaneous localisation and Mapping. In order generate an occupancy map you need to continously localise your system so you can map laser measurements with refference to a fixed refferece frame, you then have to localise with respect to your map and repeat. This is non-trivial !
    unfortuently there is no LabviewVi to do this for you, and there is not much working example code. So honestly if you want to do this, i would use a robotic development framework call ROS and using gmapping (which is a SLAM package). Alternatively if you inist on using labview you could create a dll of the gmapping (open source libary) and call it from labview, Our you could try to implement it from scratch yourself....
    I just wish it was easier to use opensource libaries like pcl,opencv and integrate with textbased langauges using a labview system... it would make labview so much better, but labview robotics i feels is not really a good robotic application framework comapared to alternatives like ROS which have much bigger communities and much more modules of code you can use... escpecially for SLAM 
    https://decibel.ni.com/content/docs/DOC-22790 this is the best i have managed to find ( they do implement SLAM for this) 
    http://www.ros.org/wiki/gmapping

  • How to create scheduler sql oracle developer

    Hi
    how to create How to create scheduler sql oracle developer?

    Hi
    finally i refer below link its usefull
    ORACLE-BASE - SQL Developer 3.1 Scheduler (DBMS_SCHEDULER) Support

  • How to create mass users and map them to existing  hrms users

    Hi,
    Im running oracle ebusiness suite 12i . I want to create mass users , and map them to existing hrms users.
    The users I want to create exist in an excel spreadsheet with the columns employee id, user name. They will all be granted the same responsibility. I want to map them to existing hrms users using the employee id key.
    I have read about the package FND_USER_PKG.CREATEUSER and I can loop over it by using sql loader to create a temporary table, but I m lost on how to automatically map them to hrms users as part of the script.
    Any help.
    dula

    Thanks a lot Omka,
    I managed to create the users by running the script:
    declare
    Cursor C1 is
    select d.product_code,b.responsibility_key from FND_USER_RESP_GROUPS_ALL a,fnd_responsibility b,fnd_user c,fnd_application d
    where a.user_id = c.user_id
    and a.responsibility_id = b.responsibility_id
    and b.application_id = d.application_id
    and c.user_name ='JOCHIENG';
    Cursor employee is
    SELECT EMPLOYEE_ID,EMPLOYEE_NAME from eldoret_final;
    BEGIN
    for e in employee loop
    fnd_user_pkg.createuser
    x_user_name => e.EMPLOYEE_NAME
    *,x_owner => ''*
    *,x_unencrypted_password => 'welcome123'*
    *,x_start_date => SYSDATE - 10*
    *,x_end_date => NULL*
    *,x_description => 'CBK Employee'*
    *,X_EMPLOYEE_ID => e.EMPLOYEE_ID*
    fnd_user_pkg.addresp(upper (e.EMPLOYEE_NAME),'PER', 'CBK_EMPLOYEE_DIRECT_ACCESS','STANDARD', 'DESCRIPTION', sysdate, null);
    end loop;
    commit;
    end;
    I had first created the user JOCHIENG and assigned it the responsibility for Self service. So the script just assigns the responsibilities by copying from the one assgined to this user.
    Everything seems ok. However, when trying to log in as the new user, the login error: Login failed. Please verify your login information or contact the system administrator.
    is returned. But I can reset the password using the forms under Security > Define. Even with the correct password, the login doesn't go through.
    Any idea?
    dula

  • How to create clustering on oracle application server on windows

    hi,
    i want to know how can i create clustering on oracle application server on windows machine.
    regards

    I think that you need to configure Web cache for this as a frontend, and two or more servers behind it.
    Try to read :
    Metalink DOC ID 312834.1
    http://www.oracle.com/technetwork/developer-tools/forms/documentation/advancedformsconf-128186.pdf
    Edited by: Marcos_Pawloski on 15/12/2010 00:02

  • How to create menus in oracle forms6i?

    hello all,
    I want to create menu option in oracle forms6i..Is it possible? then how to create menus in a frame? pls help me..
    USER MANAGEMENT-------------->this is main menu.under this i want following
    --------->1.ADD USER
    ---------->2.EDIT USER
    ----------->3.DROP USER

    Hi Balraj
    Try to read this & implement it
    http://dbaforums.org/oracle/index.php?showtopic=2031
    u have also menu FREE sample as Demo Forms6i pls down load
    http://www.oracle.com/technology/sample_code/products/forms/6idemos.html
    Or download it directly as in this Thread Francois posted Directly...
    Forms6 : default menus menudef.mmb and menudefs.mmb
    Regards,
    Abdetu...
    Edited by: Abdetu on Jan 23, 2011 11:31 PM

  • How to create URL in Oracle Application Server ?

    Hello,
    I would like to know how to create a URL in Oracle Application server (LINUX) so that our application can be invoked from each and every machine in our
    local hosting.I expect a quick reply.

    You question is not so clear. Basically, after installing infrastructure and middle-tier instances, you can simple run http://localhost:port/appication from any web browser.
    If not, what is your requirements?
    Jaffar

  • How to create form in oracle application express

    hi friends,
    i am a new person in oracle application express software.
    i just want to ask that can we use oracle application express as a front end for oracle 10g database???
    if yes then can any one tell me that how to create form in it?
    is there any connection string to connect that form with oracle 10g.
    Please do me reply soon thanks

    To this forum... please:
    Oracle Application Express (APEX)
    Greetings

  • How to create a huge interactive map?

    Hello everybody
    I've started learning Flash two weeks ago and I have the challenge of creating an interactive political map with about 4000 cities. Some cities will have more than 600 lines defining their limits which will make this project very demanding on processing.
    People will be able to zoom in/out, select cities and see information about them.
    As a starting point, I've begun working with 500 cities. I've imported a vectorial drawing of these cities and converted each one of them to symbols using flash javascript, resulting of course in 500 symbols. I don't know if it was a good way of starting this project but worked for me. Then my problems begun.
    First I tried to use the mouse roll over and roll out events to change the (fill) color of cities but the city limits (stroke) changed also.
    Second I want to add some properties to the cities such as city code, name, etc. but I wasn't able to do that using class inheritance. Would I have to create a different City class for every symbol I would like to extend? This approach looks like a lot of headache and redundant work.
    Finally my question is should I start all over again and change my approach? If yes, how? If no, how can I solve those two problems?
    Thanks

    can't answer everything but I find this project very ambitious for someone with 2 weeks experience. I give you credit for trying.
    as for the color changes, in each city symbol you need to have a separate "fill" symbol so that you can change the color of the fill and not the stroke.
    also this link will help you understand the concept and confusion of target, currentTarget, mouse_over vs roll_over:
    http://www.wastedpotential.com/?p=10
    if each of your mc's is using a City.as class, that should work fine for giving each city the same properties. No need to create 500 different classes. I'm not an OOP expert but I know what you are trying is very possible and should be straight-forward.
    Get Colin Moock's Essential ActionScript 3.0 and Shrupe's Learning ActionScript 3.0 for a crash course on implementing something like this.

  • How to display SDO_GEOMETRY on oracle map

    Hi All,
    I am new to Oracle Mapviewer . For my application that uses oracle maps i refer to http://elocation.oracle.com/mapviewer to get the base map. My requirement here is to capture the area of interest from the end user, which i am doing using the redlining tool. The SDO_geometry information from the redlining tool is stored in the db.
    In one use case i want to display the existing area's of interest on the map, how can i achieve this ? can any body help me on this ?
    Regard's,
    Naveen

    Presumably you're using the javascript API (Oracle Maps). If not then the following does not address your question.
    Since the stored redline info is in the db already you just need a predefined theme defined on it.
    Then add that theme (MVThemeBasedFOI) to the map.
    The Oracle Maps tutorial has examples of this. The "Theme Based FOI" layer example which displays the customers theme.
    In your case it'll be a redlines theme which display areas/polygons instead of points.

  • How to create JNDI for Oracle Apps Adapter

    I have created a data-source(jdbc/testds) and connection pool which connects to apps schema in Weblogic console.
    Then i go to Deployments-> Oracle Apps Adapter -> Configuration -> Outbound Connection Pools. In the Outbound Connection Pools table i expand "javax.resource.cci.ConnectionFactory" and then click New and select "javax.resource.cci.ConnectionFactory", click Next and give JNDI name "eis/apps/testds"
    But when i try to execute my BPEL process that has a reference eis/apps/testds it throws a JCA binding error. Can someone please guide me on how to create a Apps adapter connection. Also i would like to know how to refresh the connection pool(we used to have this facility in Oracle Application Server).
    Thanks,

    Can you once check the OA adapter check box in deployments and click update?

  • How to create dblink between oracle 10G and mysql

    I want to create dblink between oracle 10G and mysql
    I create it in ECC6.0 using DBCO transaction tcode,which database type can choose?Microsoft sql server?Because there have no mysql item.
    I choosed MSS  so that I can test it, but it failed,there is an error that 'ORA-12569:TNS:packet checksun failure'.
    I configured the oracle tnsnames.ora file like this:
         CW.WORLD =
               (DESCRIPTION =
                    (ADDRESS_LIST =
                          (ADDRESS =
                                  (COMMUNITY = SAP,WORLD)
                                  (PROTOCOL = TCP)
                                  (HOST = XX.XX.XX.XX)
                                  (PORT = XXXX)
                   (CONNECT_DATA =
                        (SID = XXX )
                   (HS = ok )
    When I tnsping CW,it will fail,like this " TNS-12569:TNS:packet checksum failure"
    How can I do.

    I want to know if this possible?

  • How to create a more interactive map with DW hotspot tool

    Hi - I've been asked to put together a map for my client.  I want to avoid getting into GMaps and all of that and just want to make a simple one myself.  Here's an explanation of what I'm trying to do:
    http://designerandpublisher.com/montrose/map.html
    Just trying to create a simple map like you see above so that if they clicked on a state or a point in the state, a little pop-up window comes on like you see in many interactive map applications.  Can someone help me figure out how to do this with DW's hotspot tool?  I'm terrible with code but I do know it would probably start with something like onclick (I think that's what it is).  But even if I get that onclick code working, I'm not even sure how to incorporate it into the <map> code that DW makes for the hotspot.
    Any help is appreciated.  Thanks.
    PS - I use DW4 and also have access to 5.5 on another computer.

    Here's another way you could do it but wil get very long. Also consider Kens tooltip - probably the easiest if you don't want a 'close button'
    <!DOCTYPE HTML PUBLIC">
    <html>
    <head>
    <meta http-equiv="charset=UTF-8">
    <title>Map</title>
    <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <style>
    #map {
        width: 550px;
        height: 390px;
        margin: 0 auto;
        position: relative;
    #nevada {
    position: absolute;
    top: 150px;
    left: 50px;
    background-color:#FFC;
    padding: 15px;
    display: none;
    #nevada {
    position: absolute;
    top: 100px;
    left: 50px;
    background-color:#FFC;
    padding: 15px;
    display: none;
    .close {
        position: absolute;
        display: inline-block;
        background-color:#903;
        color: #fff;
        text-decoration: none;
        padding: 6px;
        right: 0;
        top: 0;
    h2 {
        margin: 0;
        padding: 0;
    p {margin: 0;
    padding: 0;
    </style>
    <script>
    $(document).ready(function() {
    $('.hide').hide();
    $('.newMexico').click(function() {
    $('#newMexico').show();
    $('.nevada').click(function() {
    $('#nevada').show();
    $('.close').click(function() {
    $('.hide').hide();
    </script>
    </head>
    <body>
    <div id="map">
    <!-- New Mexico -->
    <div class="hide" id="newMexico">
    <a href="#" class="close">X</a>
    <h2>New Mexico</h2>
    <p>Some content about New Mexico</p>
    </div>
    <!-- New Mexico -->
    <div class="hide" id="nevada">
    <a href="#" class="close">X</a>
    <h2>Nevada</h2>
    <p>Some content about Nevada</p>
    </div>
    <img src="map.png" width="550" height="390" border="0" usemap="#Map">
    <map name="Map">
    <area shape="poly" coords="157,176,216,183,213,246,173,241,159,244,158,249,147,247,156,177" class="newMexico" href="#">
    <area shape="poly" coords="64,91,118,105,105,180,99,176,96,190,52,131,64,92" class="nevada" href="#">
    </map>
    </div>
    </body>
    </html>

Maybe you are looking for

  • Discount after tax in TAXINJ

    Hai My requirement is in TAXINJ procedure my client want discount to be reflected in PO like this. Base value 1000 BED 14%         140 cess3%         4.2 Discount 2% -20 (this on base value but subtracted after tax) subtotal   1124.20 Vat 4%         

  • PSE9 Quick edit and guided edit have disappeared

    Hi everyone, hope you can help me. I downloaded an action, followed the installation advice and installed the action BUT then when I clicked the guided and quick edit tabs (which were kind of ghost letters), there's just blank panels. The process for

  • Sales Order Incoterms

    I did a search for a question like this and found a few similar, but I wanted to get mine out with the exact scenario.  We are using an EDI ORDERS01 message to create our sales orders for a customer.  This specific customer has a requested that their

  • Purchase order  item long text

    Hi  to all experts, pls.help me of this requrement i need to get  a table of long text of  purchase order  item long text . can anybody know where long text will saved . Regards , Kiran.

  • Convert number to letter of alphabet?

    Hi, Is there a LabWindows function for converting a number to an alphabet equivalent? I was trying something like this... char getLetterOfAlphabetByNum(int number){     //test if alpha     if(isalpha (number)==0)         DebugPrintf ("Error convertin