Create Application in Apex Employee Directory

Hi,
I need some sample application or suggestion me designing employee directory application. Please suggest me if you have some links or sample applications.
Thanks
Sudhir

Hi Sadhir,
I've been looking for similar application for some time and finally decided to create my own. Here are few guidelines:
- I've created my own users table with attributes I have interest.
- Because we have Active Directory the best option was to load users periodically from there into my application. I'm using DBMS_LDAP package and developed my function to load users into temp table and then make a decision whether the user has left or it's a new user.
- Created admin page where administrator could edit user details.
- Respectively the best option for authentication was to use again Active Directory.
- I've created my own Report template where I have business card like web page.
- Just like Aria I created page to search users with their names or phones. Once I select the user I'm looking for, his details are shown on the above report (business card like).
Pretty much this is it. Another thing is that Aria was using APEX 3.2, current version is APEX 4.1 and soon we will see 4.2. So it's much better to create your own application with latest APEX version and technologies.
Regards,
Sve
Senior Oracle DBA
http://sve.to

Similar Messages

  • Error while running "Create Application" wizard

    Hello,
    I'm trying to use the "Create Application" wizard (APEX 3.1.0) to generate a report/form application based on a table. When running the last step of the wizard, the process fails with the following info:
    ORA-20001: Unable to create modules. ORA-20001: Create pages error. ORA-20001: Unable to create form page. ORA-20001: Error page=2 item="P2_SZRXSTG_APPL_COLLEGE_STATE_" id="1625410167910413" ORA-20001: Error page=2 item="P2_SZRXSTG_APPL_COLLEGE_STATE_" id="1625410167910413" has same name as existing application-level item. ORA-0000: normal, successful completion
    Unable to create application.
    These are the three table columns that seem to be causing the error:
    SZRXSTG_APPL_COLLEGE_STATE_1
    SZRXSTG_APPL_COLLEGE_STATE_2
    SZRXSTG_APPL_COLLEGE_STATE_3
    From what I can tell, when generating the code, APEX seems to be cutting off the last character from the column names and it's attempting to create multiple items for the same column.
    Any ideas on how to work around this?
    Thank you,
    Teddy
    Update:
    Seems the reason is because total length of an item name in APEX is 30 chars. My column name is 28 characters, and when the wizard is creating the page items, it prefixes each column name with a "P2_" which pushes the last char off the column name.
    As a work around, I just created the report and form pages separately, and chose not to add those three columns to the form page.
    Out of curiosity, is this something we can avoid or work around any other way, or will I have to always be wary of my column names in this sense?

    Looks like the long column names mess up the wizard. You can create an application on a "similar" table, one with shorter column names. Then edit it the page processes that refer to the column names/table name to refer to the real table name and column names.
    Scott

  • Installer does not create directories/files in APPDATA directory

    I have an installer that installs the application into the Program Files directory, and additionally, is supposed to create application files and a directory structure in the Public App Data (%APPDATA%) directory of the Windows installation. In the LV Build Specification, I have created the appropriate destinations, moved the project specific files to those destinations in the Source File section, and tried combinations of the source file properties. When I run the installer, the application installs into Program Files correctly, however, nothing is created in %APPDATA%. I have even marked these files as vital to the installation, in order to stop, if there's a problem. No problem was indicated during the installation.
    Thanks for the help.

    Hi Jlgeris,
    I build a little istaller and told the installer to put something in the appdata directory as you can see in the attached files. After  installing it, I found the file in the right directory.
    Did you do this in the same way?
    regards
    Tobias
    Attachments:
    Destinations.png ‏89 KB
    Source_Files.png ‏93 KB
    Appdata.png ‏95 KB

  • It is possible create app. in APEX with semantics data?

    I´m sorry for this new thread,
    but I was looking for some information about APEX and semantic data (RDF ). But maybe I´m wrong, that I´m not found answer to my question:
    It is possible create application in APEX for the RDF data(I mean semantic data). I have DB Oracle 10.2g with semantic RDF framework. I created some test RDF database and now I need to know, If can be possible create some easy application on this RDF data in the APEX.
    If found also this topic: Semantics at Oracle Open World that the guy wrote that they planned "demo APEX with RDF data at the Oracle semantic technology".
    Does anyone know if this is possible?If it is, how? and it is this demo semantic. app ready?
    Thank you for answer.
    Best Regards
    Vladimír Vávra
    Edited by: user8321295 on 14.2.2010 2:32 - Edit some Grammar mistakes.

    Hi SArbjeet
    Both are giving same..
    In view i have a button, in button action i have this code
    DATA LR_NODE TYPE REF TO if_wd_context_node.
    DATA ls_data TYPE wd_this->element_node.
    data lt_data type wd_this->elements_node.
    lr_node = wd_context->get_child_node( 'NODE').
    ls_data-button1 = 'Add '.
    ls_data-name = 'Name1'.
    APPEND LS_DATA TO LT_dATA.
    ls_data-button1 = 'Add Sub'.
    ls_data-name = 'Name2'.
    APPEND LS_DATA TO LT_dATA.
    LR_NODE->BIND_TABLE( LT_DATA ).
    It creating two records. on button click of ADD, code is like this
    DATA LR_NODE TYPE REF TO if_wd_context_node.
    DATA ls_data TYPE wd_this->element_node
    data lt_data type wd_this->elements_node.
    lr_node = wd_context->get_child_node( 'NODE' ).
    ls_data-button = 'SUB.'
    ls_data-name = 'name3'.
    APPEND LS_DATA TO LT_dATA.
    LR_NODE->BIND_TABLE( LT_DATA ).
    LR_NODE->BIND_TABLE(
    NEW_ITEMS = LT_DATA
    SET_INITIAL_ELEMENTS = ABAP_TRUE ).
    This code is adding one record, but instead of old records, but i want this record as third one. how to do this???
    My output is like this..
    After first button action 2 row like
    ADD(button) - Name(text view) - value(input).
    SUB(button) - Name1(tv) - Value(ip).
    After clicking ADD button at first row i want output like this
    ADD(button) - Name(text view) - value(input).
    SUB(button) - Name1(tv) - Value(ip).
    ADD1(button) - Name2(TV) - value(ip).
    but i am getting only--- ADD1(button) - Name2(TV) - value(ip).
    Thanks,
    Kris.

  • Error when create application - apex 4.0

    hi all,
    i have problem when create new project in apex.
    my step to create project :
    1. in oracle from i create simple form ,in form just textA - textB and button arithmetic.
    2. in command prompt, i'm type iff2xml90 (form_name)
    3. run apex like http://localhost:8080/apex/ and login
    4. i'm click Application Builder icon
    5. click Migration on the right side of the page
    6. on the Application Migration page, i'm click Create Project
    7. i'm enter thr project detail and upload Forms Module XML File (i'm made in point 1)
    8. project successful i'm created
    9. i'm create Application and show Generate Application and enter the detail,next
    but in point 9 have error when i'm Create Application.
    the error is _"1 error has occurred * The project, "Penjumlahan" does not contain any Blocks associated with database objects."_
    how fix the problem?
    thx :):):)

    Hi Beny,
    I think it would be better to post this question to another forum: {forum:id=137}
    Thanks,
    Udo
    P.S.: Please mark this thread as answered anyway.

  • Create application from spreadsheet failing - APEX 3.0

    Create Application from Spreadsheet failing (wrong column order) on the upload
    example csv columns are nameA, nameB, nameC
    Upload as csv
    The column order of the csv file changes....(its random).
    example csv is nameC, nameB, nameA -.but sometimes it works after numerous tries uploading it (column order is correct - same as csv file)
    I have another apex/db (10.1.0.4.2) installation(same version 3.0) where it works all the time(same csv file)
    The database for the failing Apex installation is (10.2.0.1.0)
    ANY IDEA???...could be a a database caching issue or a wrong db parameter?

    What table gets populated when you upload a csv file via create application from spreadsheet (is it only APEX_APPLICATION_FILES)? Because if i import the csv file in the repository it looks file when i download it. I not sure what controls the order of the csv file column order upon the upload create application from spreadsheet process. This is a very perplexing problem since it works on another apex 3.0/10.1 database environment.
    thanks

  • Creating a simple image application in Apex

    select
    "IMAGE_ID",
    <img src="#OWNER#.deliver_thumbnail?p_image_id='||IMAGE_ID||'"/> thumbnail,
    "FILENAME" from "ORDIMAGE_IMAGES"
    where
    instr(upper("FILENAME"),upper(nvl(:P1_REPORT_SEARCH,"FILENAME"))) >
    Its is showing an error
    showing only the coding part when i run the application instead of showing image....
    can you please help me rectify the error
    Edited by: 880021 on 17-Aug-2011 20:58

    Creating a simple image application in Apex
    Create a new application from scratch. Name it ORDImages_images.
    Add a Report and Form Page based on your ORDImage_images table. Ensure that you select a Classic Report (i.e. not Interactive, which is the default). As expected, two pages are created.
    Continue to create the application and then run it.
    After the login page, there will be spurious entries for image and thumbnail.
    This is expected because of the ORDImage columns in the images table.
    Edit Page 1 and open the Images Region
    The Source entry is
    select
    "IMAGE_ID",
    "IMAGE",
    "THUMBNAIL",
    "FILENAME"
    from "ORDIMAGE_IMAGES"
    where
    instr(upper("FILENAME"),upper(nvl(:P1_REPORT_SEARCH,"FILENAME"))) > 0
    In SQL Developer, create the deliver_images_thumb procedure
    CREATE OR REPLACE PROCEDURE deliver_thumbnail(p_image_id IN NUMBER) IS
    l_thumbnail ORDSYS.ORDImage;
    BEGIN
    -- Fetch the thumbnail from the database
    SELECT thumbnail
    INTO l_thumbnail
    FROM ORDImage_images
    WHERE image_id = p_image_id;
    -- Check update time if browser sent If-Modified-Since header
    IF ordplsgwyutil.cache_is_valid( l_thumbnail.getUpdateTime() )THEN
    owa_util.status_line( ordplsgwyutil.http_status_not_modified );
    RETURN;
    END IF;
    -- Set the MIME type and deliver the image to the browser.
    owa_util.mime_header( l_thumbnail.mimeType, FALSE );
    ordplsgwyutil.set_last_modified( l_thumbnail.getUpdateTime() );
    owa_util.http_header_close();
    IF owa_util.get_cgi_env( 'REQUEST_METHOD' ) <> 'HEAD' THEN
    wpg_docload.download_file( l_thumbnail.source.localData );
    END IF;
    END;
    Then
    GRANT EXECUTE ON deliver_thumbnail TO PUBLIC;
    Return to Apex and change the Source entry to
    select
    "IMAGE_ID",
    '<img src="#OWNER#.deliver_thumbnail?p_image_id='||IMAGE_ID||'"/>' thumbnail,
    "FILENAME" from "ORDIMAGE_IMAGES"
    where
    instr(upper("FILENAME"),upper(nvl(:P1_REPORT_SEARCH,"FILENAME"))) > 0
    Apply changes and run the application
    You can now search on substrings of filenames. Note that the image_ID is not shown. To rectify this, Edit Page 1 and open Report in Regions.
    Edit the image_id and under Column Link, change the Link Text to #IMAGE_ID#. Also change the Heading in the Column Attributes to Image ID.
    Apply the changes and re-run.
    Clicking on the image_id link takes you to Page 2 – the form for that image.
    Page 2 is sparse so reveal the image_id by Editing Page 2 and opening the P2_IMAGE_ID Page Item. Change Display as Hidden to Text Field. Apply changes and re-run.
    In Page Items, open and delete the P2_THUMBNAIL item.
    Open the P2_IMAGE item.
    Under Name, change the Display As entry to Display Image (from the select list).
    Under Settings, change the Based On entry to BLOB Column returned by SQL Statement
    Enter
    SELECT i.image.source.localdata
    FROM ORDimage_images i
    WHERE image_id = :P2_IMAGE_ID
    as the SQL Statement
    Apply changes and re-run the application
    Making an image clickable
    Edit Page 1 and open Report in Regions. Edit THUMBNAIL and under Column Link, insert
    <img src="#OWNER#.deliver_thumbnail?p_image_id=#IMAGE_ID#"/>
    as Link Text.
    Select Page 2 as the Target Page in this Application.
    Finally, set Item 1's name to P2_IMAGE_ID and its Value to #IMAGE_ID#
    Removing the Spreadsheet link
    Under Report Attributes, set Enable CSV Output to No

  • Need to create a searchable employee directory in Muse.  How can I do this using Business Catalyst?

    I have been tasked with updating our firm website, and have no prior web design experience.  Muse seems like a great option, but I understand that Muse has no database capabilities.  I was advised that I could find a way to incorporate a searchable employee directory (database) via Business Catalyst. Are there any links that show how to do this?

    Thanks, Adam.  I think this looks like a good option for us.  Here is our current, existing website, which I am tasked with updating:
    www.bstz.com
    Would you mind taking a look at the attorney directory, and confirming that the BC Meet the Team will allow me to create essentially the same sort of directory, with search fields, photos and cv?  I'm sure it will, but I just need confirmation before I go too much further down the design path.
    Right now I am just on trial Adobe Creative Cloud membership, so I was able to download and experiment with Muse.  I believe the cost to continue this would be about $15/month.  If I join Business Catalyst with eCommerce membership, would that be in addition to the Adobe Creative Cloud membership?  I'm going to need to give a proposal to my partners, and I want to make sure I am accurately stating the monthly costs.  We currently have our own in-house server, and I want to be able to rationalize moving away from that.
    Thank you for your continuing expertise.
    Ingrid
    BSTZ
    310.500.4750

  • How to create application/ application link

    Hi All,
    Since I have raised several queries you all know that I am doing my project on purchasing and inventory system based on oracle.
    As a part of this project I have creates number of forms (including Login and Menu form) merely I have just saved all these form on ‘form90’ directory.
    Now I wanted to create application link for the same or suggest me what will be my next step to build an application with this forms.
    Thanks,
    Ar

    I have modified as per your suggestion but now its not working at all.
    Enitire file is like
    # $Id: formsweb.cfg,v 1.24 2003/08/22 01:07:35 pkuhn Exp $
    # formsweb.cfg defines parameter values used by the FormsServlet (f90servlet)
    # This section defines the Default settings. Any of them may be overridden in the
    # following Named Configuration sections. If they are not overridden, then the
    # values here will be used.
    # The default settings comprise two types of parameters: System parameters,
    # which cannot be overridden in the URL, and User Parameters, which can.
    # Parameters which are not marked as System parameters are User parameters.
    # SYSTEM PARAMETERS
    # These have fixed names and give information required by the Forms
    # Servlet in order to function. They cannot be specified in the URL query
    # string. But they can be overriden in a named configuration (see below).
    # Some parameters specify file names: if the full path is not given,
    # they are assumed to be in the same directory as this file. If a path
    # is given, then it should be a physical path, not a URL.
    # USER PARAMETERS
    # These match variables (e.g. %form%) in the baseHTML file. Their values
    # may be overridden by specifying them in the URL query string
    # (e.g. "http://myhost.mydomain.com/servlet/f90servlet?form=myform&width=700")
    # or by overriding them in a specific, named configuration (see below)
    [default]
    # System parameter: default base HTML file
    baseHTML=base.htm
    # System parameter: base HTML file for use with JInitiator client
    baseHTMLjinitiator=basejini.htm
    # System parameter: base HTML file for use with Sun's Java Plug-In
    baseHTMLjpi=basejpi.htm
    # System parameter: base HTML file for use with Microsoft Internet Explorer
    # (when using the native JVM)
    baseHTMLie=baseie.htm
    # System parameter: delimiter for parameters in the base HTML files
    HTMLdelimiter=%
    # System parameter: working directory for Forms runtime processes
    # WorkingDirectory defaults to <oracle_home>/forms90 if unset.
    workingDirectory=
    # System parameter: file setting environment variables for the Forms runtime processes
    envFile=default.env
    # System parameter: JVM option for Microsoft Internet Explorer.
    # This parameter specifies how to execute the Forms applet under
    # Microsoft Internet Explorer 5.x or above. Put IE=native if you want
    # the Forms applet to run in the browser's native JVM.
    IE=JInitiator
    # Forms runtime argument: whether to escape certain special characters
    # in values extracted from the URL for other runtime arguments
    escapeparams=true
    # Forms runtime argument: which form module to run
    form=test.fmx
    # Forms runtime argument: database connection details
    userid=
    # Forms runtime argument: whether to run in debug mode
    debug=no
    # Forms runtime argument: host for debugging
    host=
    # Forms runtime argument: port for debugging
    port=
    # Other Forms runtime arguments: grouped together as one parameter.
    # These settings support running and debugging a form from the Builder:
    otherparams=buffer_records=%buffer% debug_messages=%debug_messages% array=%array% obr=%obr% query_only=%query_only% quiet=%quiet% render=%render% record=%record% tracegroup=%tracegroup% log=%log% term=%term%
    # Sub argument for otherparams
    buffer=no
    # Sub argument for otherparams
    debug_messages=no
    # Sub argument for otherparams
    array=no
    # Sub argument for otherparams
    obr=no
    # Sub argument for otherparams
    query_only=no
    # Sub argument for otherparams
    quiet=yes
    # Sub argument for otherparams
    render=no
    # Sub argument for otherparams
    record=
    # Sub argument for otherparams
    tracegroup=
    # Sub argument for otherparams
    log=
    # Sub argument for otherparams
    term=
    # HTML page title
    pageTitle=Oracle Application Server Forms Services
    # HTML attributes for the BODY tag
    HTMLbodyAttrs=
    # HTML to add before the form
    HTMLbeforeForm=
    # HTML to add after the form
    HTMLafterForm=
    # Forms applet parameter: URL path to Forms ListenerServlet
    serverURL=/forms90/l90servlet
    # Forms applet parameter
    codebase=/forms90/java
    # Forms applet parameter
    imageBase= code base
    # Forms applet parameter
    width=750
    # Forms applet parameter
    height=600
    # Forms applet parameter
    separateFrame=false
    # Forms applet parameter
    splashScreen=
    # Forms applet parameter
    background=
    # Forms applet parameter
    lookAndFeel=Oracle
    # Forms applet parameter
    colorScheme=teal
    # Forms applet parameter
    logo=
    # Forms applet parameter
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,pageTitle,HTMLafterForm,log,allow_debug,allowNewConnections
    # Forms applet parameter
    formsMessageListener=
    # Forms applet parameter
    recordFileName=
    # Forms applet parameter
    serverApp=default
    # Forms applet archive setting for JInitiator
    archive_jini=f90all_jinit.jar,icon.jar
    # Forms applet archive setting for Microsoft Internet Explorer native JVM
    archive_ie=f90all.cab
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=f90all.jar
    # Number of times client should retry if a network failure occurs. You should
    # only change this after reading the documentation.
    networkRetries=0
    # Page displayed to Netscape users to allow them to download Oracle JInitiator.
    # Oracle JInitiator is used with Windows clients.
    # If you create your own page, you should set this parameter to point to it.
    jinit_download_page=/forms90/jinitiator/us/jinit_download.htm
    # Parameter related to the version of JInitiator
    jinit_classid=clsid:CAFECAFE-0013-0001-0017-ABCDEFABCDEF
    # Parameter related to the version of JInitiator
    jinit_exename=jinit.exe#Version=1,3,1,17
    # Parameter related to the version of JInitiator
    jinit_mimetype=application/x-jinit-applet;version=1.3.1.17
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/plugin/1.3/plugin-install.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;version=1.3
    # EM config parameter
    # Set this to "1" to enable Enterprise Manager to track Forms processes
    em_mode=0
    # Single Sign-On OID configuration parameter
    oid_formsid=%OID_FORMSID%
    # Single Sign-On OID configuration parameter
    oracle_home=D:\DevSuiteHome
    # Single Sign-On OID configuration parameter
    formsid_group_dn=%GROUP_DN%
    # Single Sign-On OID configuration parameter: indicates whether we allow
    # dynamic resource creation if the resource is not yet created in the OID.
    ssoDynamicResourceCreate=true
    # Single Sign-On parameter: URL to redirect to if ssoDynamicResourceCreate=false
    ssoErrorUrl=
    # Single Sign-On parameter: Cancel URL for the dynamic resource creation DAS page.
    ssoCancelUrl=
    # Single Sign-On parameter: indicates whether the url is protected in which
    # case mod_osso will be given control for authentication or continue in
    # the FormsServlet if not. It is false by default. Set it to true in an
    # application-specific section to enable Single Sign-On for that application.
    ssoMode=false
    # The parameter allow_debug determines whether debugging is permitted.
    # Administrators should set allow_debug to "true" if servlet
    # debugging is required, or to provide access to the Forms Trace Xlate utility.
    # Otherwise these activities will not be allowed (for security reasons).
    allow_debug=false
    # Parameter which determines whether new Forms sessions are allowed.
    # This is also read by the Forms EM Overview page to show the
    # current Forms status.
    allowNewConnections=true
    # Example Named Configuration Section
    # Example 1: configuration to run forms in a separate browser window with
    # "generic" look and feel (include "config=sepwin" in the URL)
    # You may define your own specific, named configurations (sets of parameters)
    # by adding special sections as illustrated in the following examples.
    # Note that you need only specify the parameters you want to change. The
    # default values (defined above) will be used for all other parameters.
    # Use of a specific configuration can be requested by including the text
    # "config=<your_config_name>" in the query string of the URL used to run
    # a form. For example, to use the sepwin configuration, your could issue
    # a URL like "http://myhost.mydomain.com/servlet/f90servlet?config=sepwin".
    [sepwin]
    separateFrame=True
    lookandfeel=Generic
    # Example Named Configuration Section
    # Example 2: configuration affecting users of MicroSoft Internet Explorer 5.x.
    # Forms applet will run under the browser's native JVM rather than using Oracle JInitiator.
    [ienative]
    IE=native
    # Example Named Configuration Section
    # Example 3: configuration forcing use of the Java Plugin in all cases (even if
    # the client browser is on Windows)
    [jpi]
    baseHTMLJInitiator=basejpi.htm
    baseHTMLie=basejpi.htm
    # Example Named Configuration Section
    # Example 4: configuration running the Forms ListenerServlet in debug mode
    # (debug messages will be written to the servlet engine's log file).
    [debug]
    serverURL=/forms90/l90servlet/debug
    *[CONFIG1]*
    baseHTMLjinitiator=basejini.htm
    logo=no
    userid=hr/welcome@orcl
    form=D:\DevSuiteHome\forms90\Employees.fmx

  • Flex Builder 3 and Employee Directory Sample App

    Ok, please be paitent with me.  Just starting out with Flex Builder 3 and Flash Builder 4.
    I have installed Flex Builder 3 and imported the Employee Directory application sample, but I cannot get it to run, nor debug.
    I'm on a Mac Pro and I have not done any other configuration to the Flex Builder 3 installation, yet.
    In order to get the Employee Directory app to run, can someone give me some assistance as to what I need to do in order to get it running within the development environment.
    Any assistance will be greatly appreciated.
    Regards,
    Jeff

    No errors, it just will not run.
    I loaded the employeedirectory.mxml into the editor and simply tried to run it.  The Eclipse editor / employeedirectory canvas blinks, but doesn't execute.
    In addition, when I set a breakpoint and try to debug, I get the following error:
    Process terminated without establishing connection to debugger.
    Command:
    "/Applications/Adobe Flex Builder 3/sdks/3.2.0/bin/adl" -runtime "/Applications/Adobe Flex Builder 3/sdks/3.2.0/runtimes/air/mac" "/Users/Jeff/Documents/Flex Builder 3/employeedirectory/bin-debug/employeedirectory-app.xml" "/Users/Jeff/Documents/Flex Builder 3/employeedirectory/bin-debug"
    Output from command:
    error while loading initial content
    Thanks for the reply...  hopefully it's a simple configuration issue.
    Update:  I created a blank application with no control, notta and it ran fine, i.e. loaded up into Firefox with a blank canvas.

  • Error while creating application

    Hi,
    I am getting the following error while creating the application.
    "IHspAppAssistantACM_SaveAppAssistant() Error
    Unable to Create application FirstApp.
    Error Number: 2147024891"
    No other application is existing with this name.
    I checked the HspEventLog... the following listed in it:
    Information*16*ns36225*01/09/08 11:53:17*CHspDataSourceImp.cpp*Line 378*Entering CreateApplication: FirstApp*
    Information*16*ns36225*01/09/08 11:53:19*CHspDSSQL.cpp*Line 3255*Could not retrieve planning version*
    Information*16*ns36225*01/09/08 11:53:19*CHspDSSQL.cpp*Line 3326*Could not retrieve product release*
    Information*16*ns36225*01/09/08 11:53:19*CHspDSSQL.cpp*Line 3397*Could not retrieve product CSS Version*
    Error*16*ns36225*01/09/08 11:53:19*CHspDSSQL.cpp*Line 217*Version & Release not found*
    Information*16*ns36225*01/09/08 11:53:19*CHspDataSourceImp.cpp*Line 394*CreateApplication: Deleting old schema*
    Information*16*ns36225*01/09/08 11:53:20*CHspDataSourceImp.cpp*Line 408*CreateApplication: Recreating security tables*
    Information*16*ns36225*01/09/08 11:53:20*CHspDataSourceImp.cpp*Line 437*CreateApplication: Creating Essbase application*
    Information*16*ns36225*01/09/08 11:53:31*CHspDataSourceImp.cpp*Line 495*CreateApplication: Creating new schema*
    Information*16*ns36225*01/09/08 11:53:32*CHspDataSourceImp.cpp*Line 574*CreateApplication: Initializing schema*
    Information*16*ns36225*01/09/08 11:53:32*CHspDataSourceImp.cpp*Line 642*CreateApplication: Creating plantypes*
    Information*16*ns36225*01/09/08 11:53:32*CHspDataSourceImp.cpp*Line 754*CreateApplication: Creating application owner user*
    I am using the following credentilas:
    Essbase Server login : admin
    SQl Server login: admin
    Windows NT login: ns36225
    We are using Planning 9.2 version and Planning Desktop for creating the applications.
    please help me.
    Thanks in advance.
    null

    Hi,
    I had set up CSS Properties file and as follows:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <!-- Sample XML file generated by XML Spy v4.4 U (http://www.xmlspy.com)
    -->
    - <css>
    - <hub location="http://hic-pcs27303:58080">
    <dirPort>58089</dirPort>
    </hub>
    - <spi>
    - <provider>
    <native name="Native Directory" />
    </provider>
    </spi>
    - <searchOrder>
    <el>Native Directory</el>
    </searchOrder>
    - <token>
    <timeout>480</timeout>
    </token>
    - <logger>
    <priority>WARN</priority>
    </logger>
    </css>
    I got the problem. it is with DCOM account. I am adding a user in my LAN network, after clicking apply it taking the user in System account not in the domain account. e.g: I logged into my Sys(no: hst-pcs5424) with ABC domain, added a user ns36225 in this domain. During application setup it is looking for DCOM account in hst-pcs5424 account not in my ABC domain. So i need to add a user to the system account that should work without the LAN netwrok. But now my user account won't work with LAN.

  • Migrate/Import/[etc.] PL/SQL Web-Toolkit Application to APEX

    Hello all,
    I've only recently learned about APEX and have dabbled with it for a little while, and I'm quite impressed with how amazingly quick it is to develop applications with it.
    A few co-workers and myself are trying to convince "The Management" that we should pursue using APEX to develop our Enterprise Applications. Currently we write our web apps using the PL/SQL WebToolkit, accessing our applications at URL's like: http://host/dad/[package.]procedure .
    Recently (within the past month) there was a convention in the Southern California region where I believe some people from TUSC presented on APEX. As I understand it, they said it was possible to migrate existing applications (written in packages and procedures) to APEX. I'm also told that it is possible to view the PL/SQL that is rendered by APEX to display the application.
    We've practically sold our Director, however he has a few outstanding issues he's asked me to research, as he feels his boss would be most concerned with:
    * How much effort will it take to migrate/import/etc the PL/SQL WebToolkit Application to APEX
    * Should the need arise, how much effort would it take to move from APEX back to PL/SQL WebToolkit
    I've tried researching these topics over the past few days and I haven't really come up with much. I realize that you can call PL/SQL packages/procedures/etc from within a region, but as I read on a thread in these forums ( How to jump from mod_plsql to APEX! ), you still won't be able to take advantage of the Items, Computations, Processes, etc. Is there, in fact, a way of importing a PL/SQL-developed Web Application into APEX to take advantage of all its tools? I would imagine it would be quite a feat to be able to create the items for the form fields, maintain the layout and such, but I need to provide my Director with as much information on these topics as possible.
    Many of us developers are really excited at the prospect of developing with this tool; it would be a shame to lose the opportunity over not being able to provide any information on the topics above.
    Thanks in advance for your assistance,
    -Luis

    Hi Luis,
    I had a client a couple of years back who had an existing PL/SQL Web Toolkit application who used the htp.p etc calls to generate the HTML (and in some cases CSS) for their site. They were interested in using Application Express and asked me to design a new administration module for their site (which I did). The development went extremely smoothly so they then asked about re-writing their existing site in APEX (since maintaining the old site was not a straight-forward task).
    Fortunately for me, the original designer had the foresight to put lots of the application logic into packages (which I could reuse), but I quickly (about 2 or 3 days from memory) created a custom theme and templates in APEX which gave the same look and feel as the existing site.
    Personally, I think if you tried to re-use the existing htp.p calls (by using PL/SQL regions etc), then you would be missing out on some of the major advantages of using APEX (such as the ability to easily change the look and feel of your application).
    I always think that migrating to a new tool/platform etc is a great opportunity to re-examine your existing code to perhaps see if you can do things differently (speed up those queries, perhaps make the navigation more logical etc).
    So, yes you can certainly re-use lots of your existing packaged logic, but I would also take the leap and use the features that Application Express provides to make future maintenance of your application easier.
    Just my thoughts.
    John.

  • Error unable to create jar cache in /tmp directory!

    I using tomcat4.0.2,but when I start the tomcat from %catalina_home%/bin using startup.bat, in the startup console printing "error unable to create jar cache in /tmp directory: java.io.IOException: System cant find the direct", and tomcat can be started, no problem when I access my web application.
    Why it happened?
    But if I start tomcat from startup menu of the system instead of using startup.bat, no error is thrown.

    anyone know it? Please tell me.
    I was puzzled about it.
    TIA

  • Create application from database issues

    Just trying out the 'Create application from database'
    feature and found the following.
    Running:
    Vista
    Flex Builder 3 Public Beta 2
    Visual Studio 2008
    - The wizard cant find the development web server so IIS is
    the only choice. I assume VS2005 & 2008 are different.
    - When validating the IIS option it would always fail until I
    enabled directory browsing (IIS 7).
    - When creating a SQL connection the wizard will not connect
    to a SQL 2005 named instance. Tried 'localhost\instance' and
    'hostname\instance' and get the following error.
    java.sql.SQLException: Unknown server host name
    'DMC\DEV2005'.
    at
    net.sourceforge.jtds.jdbc.ConnectionJDBC2.<init>(ConnectionJDBC2.java:364)
    at
    net.sourceforge.jtds.jdbc.ConnectionJDBC3.<init>(ConnectionJDBC3.java:50)
    Dave

    Hi Dave,
    Would you please file a bug with all the necessary details
    regarding this issue? The bug base is found at:
    http://bugs.adobe.com/jira.
    We’ll look into this. Thank you for letting us know!
    Lacra

  • Create WORKSPACE on APEX 2.1 problem

    Hello,
    I try to create a workspace on an Application Express 2.1.0.00.39 without success.
    My System:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Following advices found on the web I tried to access to the admin adding 'apex_admin' on the url like: http://127.0.0.1:8080/apex/apex_admin ... but then a 'the page is not found' error occurs.
    I logged as SYS and SYSTEM but no clues about any 'workspace' stuffs appeard.
    Any help will be welcomed.
    Claude

    Oracle Apex forum is here
    Oracle Application Express (APEX)

Maybe you are looking for