Need your suggestion / Input about choosing Apex for new application

Guys,
I came across oracle apex this week and started digging through the documentation and presentations. Read some forums as well. Now I believe, our application can be helpful by utilizing Apex but I would like to share high level application functionality which I am trying to implement through Apex
Following are the functionality of the application:
1) there will be 40 different entity in the application (create/edit/read/delete)
2) Each entity and CRUD processing will be roles based
3) On various events, send email and generate XML files for interfacing with external system
4) Scheduling report generation and normal report generation
5) Detail audit trail of the application (doesn't depend of Ajax, but still want to point out)
6) Various search capabilities for each entity
7) On various event and user selection: generate PDF file which user can download / print.
8) Many client side and server side validations.
Based on my reading, I believe this can be easily achieved with certainly some learning curve in AJAX. (which I have to do as I lost my entire project team due to budget issues.). I have a web devleopment background using Java, JSP and Servlet for 5 years. (Nothing in last 3 years though)
Please let me know your thoughts based on my current situation and functionality.
Also, Do i need to buy anything to get started with apex and implementing apex full blown application (they say it's free, but just want to understand your perspective as well).
Thank you for reading the post and your support.
-Raj

Guys,
I came across oracle apex this week and started digging through the documentation and presentations. Read some forums as well. Now I believe, our application can be helpful by utilizing Apex but I would like to share high level application functionality which I am trying to implement through Apex
Following are the functionality of the application:
1) there will be 40 different entity in the application (create/edit/read/delete)
2) Each entity and CRUD processing will be roles based
3) On various events, send email and generate XML files for interfacing with external system
4) Scheduling report generation and normal report generation
5) Detail audit trail of the application (doesn't depend of Ajax, but still want to point out)
6) Various search capabilities for each entity
7) On various event and user selection: generate PDF file which user can download / print.
8) Many client side and server side validations.
Based on my reading, I believe this can be easily achieved with certainly some learning curve in AJAX. (which I have to do as I lost my entire project team due to budget issues.). I have a web devleopment background using Java, JSP and Servlet for 5 years. (Nothing in last 3 years though)
Please let me know your thoughts based on my current situation and functionality.
Also, Do i need to buy anything to get started with apex and implementing apex full blown application (they say it's free, but just want to understand your perspective as well).
Thank you for reading the post and your support.
-Raj

Similar Messages

  • Query performance tuning need your suggestions

    Hi,
    Below is the sql query and explain plan which is taking 2 hours to execute and sometime it is breaking up( erroring out) due to memory issue.
    Below it the query which i need to improve the performance of the code please need your suggestion in order to tweak so that time take for execution become less and also in less memory consumption
    select a11.DATE_ID DATE_ID,
    sum(a11.C_MEASURE) WJXBFS1,
    count(a11.PKEY_GUID) WJXBFS2,
    count(Case when a11.C_MEASURE <= 10 then a11.PKEY_GUID END) WJXBFS3,
    count(Case when a11.STATUS = 'Y' and a11.C_MEASURE > 10 then a11.PKEY_GUID END) WJXBFS4,
    count(Case when a11.STATUS = 'N' then a11.PKEY_GUID END) WJXBFS5,
    sum(((a11.C_MEASURE ))) WJXBFS6,
    a17.DESC_DATE_MM_DD_YYYY DESC_DATE_MM_DD_YYYY,
    a11.DNS DNS,
    a12.VVALUE VVALUE,
    a12.VNAME VNAME,
    a13.VVALUE VVALUE0,
    a13.VNAME VNAME0,
    9 a14.VVALUE VVALUE1,
    a14.VNAME VNAME1,
    a15.VVALUE VVALUE2,
    a15.VNAME VNAME2,
    a16.VVALUE VVALUE3,
    a16.VNAME VNAME3,
    a11.PKEY_GUID PKEY_GUID,
    a11.UPKEY_GUID UPKEY_GUID,
    a17.DAY_OF_WEEK DAY_OF_WEEK,
    a17.D_WEEK D_WEEK,
    a17.MNTH_ID DAY_OF_MONTH,
    a17.YEAR_ID YEAR_ID,
    a17.DESC_YEAR_FULL DESC_YEAR_FULL,
    a17.WEEK_ID WEEK_ID,
    a17.WEEK_OF_YEAR WEEK_OF_YEAR
    from ACTIVITY_F a11
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 1 ) a12
    on (a11.PKEY_GUID = a12.PKEY_GUID and
    a11.DATE_ID = a12.DATE_ID and
    a11.ORG = a12.ORG)
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 2) a13
    on (a11.PKEY_GUID = a13.PKEY_GUID and
    a11.DATE_ID = a13.DATE_ID and
    a11.ORG = a13.ORG)
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 3 ) a14
    on (a11.PKEY_GUID = a14.PKEY_GUID and
    a11.DATE_ID = a14.DATE_ID and
    a11.ORG = a14.ORG)
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 4) a15
    on (a11.PKEY_GUID = a15.PKEY_GUID and
    89 a11.DATE_ID = a15.DATE_ID and
    a11.ORG = a15.ORG)
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 9) a16
    on (a11.PKEY_GUID = a16.PKEY_GUID and
    a11.DATE_ID = a16.DATE_ID and
    A11.ORG = A16.ORG)
    join W_DATE_D a17
    ON (A11.DATE_ID = A17.ID)
    join W_SALES_D a18
    on (a11.TASK = a18.ID)
    where (a17.TIMSTAMP between To_Date('2001-02-24 00:00:00', 'YYYY-MM-DD HH24:MI:SS') and To_Date('2002-09-12 00:00:00', 'YYYY-MM-DD HH24:MI:SS')
    and a11.ORG in (12)
    and a18.SRC_TASK = 'AX012Z')
    group by a11.DATE_ID,
    a17.DESC_DATE_MM_DD_YYYY,
    a11.DNS,
    a12.VVALUE,
    a12.VNAME,
    a13.VVALUE,
    a13.VNAME,
    a14.VVALUE,
    a14.VNAME,
    a15.VVALUE,
    a15.VNAME,
    a16.VVALUE,
    a16.VNAME,
    a11.PKEY_GUID,
    a11.UPKEY_GUID,
    a17.DAY_OF_WEEK,
    a17.D_WEEK,
    a17.MNTH_ID,
    a17.YEAR_ID,
    a17.DESC_YEAR_FULL,
    a17.WEEK_ID,
    a17.WEEK_OF_YEAR;
    Explained.
    PLAN_TABLE_OUTPUT
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 1245 | 47 (9)| 00:00:01 |
    | 1 | HASH GROUP BY | | 1 | 1245 | 47 (9)| 00:00:01 |
    |* 2 | HASH JOIN | | 1 | 1245 | 46 (7)| 00:00:01 |
    |* 3 | HASH JOIN | | 1 | 1179 | 41 (5)| 00:00:01 |
    |* 4 | HASH JOIN | | 1 | 1113 | 37 (6)| 00:00:01 |
    |* 5 | HASH JOIN | | 1 | 1047 | 32 (4)| 00:00:01 |
    |* 6 | HASH JOIN | | 1 | 981 | 28 (4)| 00:00:01 |
    | 7 | NESTED LOOPS | | 1 | 915 | 23 (0)| 00:00:01 |
    | 8 | NESTED LOOPS | | 1 | 763 | 20 (0)| 00:00:01 |
    | 9 | NESTED LOOPS | | 1 | 611 | 17 (0)| 00:00:01 |
    | 10 | NESTED LOOPS | | 1 | 459 | 14 (0)| 00:00:01 |
    | 11 | NESTED LOOPS | | 1 | 307 | 11 (0)| 00:00:01 |
    | 12 | NESTED LOOPS | | 1 | 155 | 7 (0)| 00:00:01 |
    | 13 | NESTED LOOPS | | 1 | 72 | 3 (0)| 00:00:01 |
    | 14 | TABLE ACCESS BY INDEX ROWID| W_SALES_D | 1 | 13 | 2 (0)| 00:00:01 |
    |* 15 | INDEX UNIQUE SCAN | CONS_UNQ_W_SALES_D_SRC_ID | 1 | | 1 (0)| 00:00:01 |
    | 16 | TABLE ACCESS BY INDEX ROWID| W_DATE_D | 1 | 59 | 1 (0)| 00:00:01 |
    |* 17 | INDEX UNIQUE SCAN | UIDX_DD_TIMSTAMP | 1 | | 0 (0)| 00:00:01 |
    | 18 | TABLE ACCESS BY INDEX ROWID | ACTIVITY_F | 1 | 83 | 4 (0)| 00:00:01 |
    |* 19 | INDEX RANGE SCAN | PK_ACTIVITY_F | 1 | | 3 (0)| 00:00:01 |
    |* 20 | TABLE ACCESS BY INDEX ROWID | W_ORG_D      | 1 | 152 | 4 (0)| 00:00:01 |
    |* 21 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 22 | TABLE ACCESS BY INDEX ROWID | W_ORG_D | 1 | 152 | 3 (0)| 00:00:01 |
    |* 23 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 24 | TABLE ACCESS BY INDEX ROWID | W_ORG_D | 1 | 152 | 3 (0)| 00:00:01 |
    |* 25 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 26 | TABLE ACCESS BY INDEX ROWID | W_ORG_D | 1 | 152 | 3 (0)| 00:00:01 |
    |* 27 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 28 | TABLE ACCESS BY INDEX ROWID | W_ORG_D | 1 | 152 | 3 (0)| 00:00:01 |
    |* 29 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 30 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    |* 31 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    |* 32 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    |* 33 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    |* 34 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    -----------------------------------------------------------------------------------------------------------------------

    Hi,
    I'm not a tuning expert but I can suggest you to post your request according to this template:
    Thread: HOW TO: Post a SQL statement tuning request - template posting
    HOW TO: Post a SQL statement tuning request - template posting
    Then:
    a) you should posting a code which is easy to read. What about formatting? Your code had to be fixed in a couple of lines.
    b) You could simplify your code using the with statement. This has nothing to do with the tuning but it will help the readability of the query.
    Check it below:
    WITH tab1 AS (SELECT a.org AS org
                       , a.date_id AS date_id
                       , a.time_of_day_id AS time_of_day_id
                       , a.date_hour_id AS date_hour_id
                       , a.task AS task
                       , a.pkey_guid AS pkey_guid
                       , a.vname AS vname
                       , a.vvalue AS vvalue
                       , b.variable_obj
                    FROM    w_org_d a
                         JOIN
                            w_person_d b
                         ON (    a.task = b.task
                             AND a.org = b.id
                             AND a.vname = b.vname))
      SELECT a11.date_id date_id
           , SUM (a11.c_measure) wjxbfs1
           , COUNT (a11.pkey_guid) wjxbfs2
           , COUNT (CASE WHEN a11.c_measure <= 10 THEN a11.pkey_guid END) wjxbfs3
           , COUNT (CASE WHEN a11.status = 'Y' AND a11.c_measure > 10 THEN a11.pkey_guid END) wjxbfs4
           , COUNT (CASE WHEN a11.status = 'N' THEN a11.pkey_guid END) wjxbfs5
           , SUM ( ( (a11.c_measure))) wjxbfs6
           , a17.desc_date_mm_dd_yyyy desc_date_mm_dd_yyyy
           , a11.dns dns
           , a12.vvalue vvalue
           , a12.vname vname
           , a13.vvalue vvalue0
           , a13.vname vname0
           , a14.vvalue vvalue1
           , a14.vname vname1
           , a15.vvalue vvalue2
           , a15.vname vname2
           , a16.vvalue vvalue3
           , a16.vname vname3
           , a11.pkey_guid pkey_guid
           , a11.upkey_guid upkey_guid
           , a17.day_of_week day_of_week
           , a17.d_week d_week
           , a17.mnth_id day_of_month
           , a17.year_id year_id
           , a17.desc_year_full desc_year_full
           , a17.week_id week_id
           , a17.week_of_year week_of_year
        FROM activity_f a11
             JOIN tab1 a12
                ON (    a11.pkey_guid = a12.pkey_guid
                    AND a11.date_id = a12.date_id
                    AND a11.org = a12.org
                    AND a12.variable_obj = 1)
             JOIN tab1 a13
                ON (    a11.pkey_guid = a13.pkey_guid
                    AND a11.date_id = a13.date_id
                    AND a11.org = a13.org
                    AND a13.variable_obj = 2)
             JOIN tab1 a14
                ON (    a11.pkey_guid = a14.pkey_guid
                    AND a11.date_id = a14.date_id
                    AND a11.org = a14.org
                    AND a14.variable_obj = 3)
             JOIN tab1 a15
                ON (    a11.pkey_guid = a15.pkey_guid
                    AND a11.date_id = a15.date_id
                    AND a11.org = a15.org
                    AND a15.variable_obj = 4)
             JOIN tab1 a16
                ON (    a11.pkey_guid = a16.pkey_guid
                    AND a11.date_id = a16.date_id
                    AND a11.org = a16.org
                    AND a16.variable_obj = 9)
             JOIN w_date_d a17
                ON (a11.date_id = a17.id)
             JOIN w_sales_d a18
                ON (a11.task = a18.id)
       WHERE (a17.timstamp BETWEEN TO_DATE ('2001-02-24 00:00:00', 'YYYY-MM-DD HH24:MI:SS')
                               AND TO_DATE ('2002-09-12 00:00:00', 'YYYY-MM-DD HH24:MI:SS')
              AND a11.org IN (12)
              AND a18.src_task = 'AX012Z')
    GROUP BY a11.date_id, a17.desc_date_mm_dd_yyyy, a11.dns, a12.vvalue
           , a12.vname, a13.vvalue, a13.vname, a14.vvalue
           , a14.vname, a15.vvalue, a15.vname, a16.vvalue
           , a16.vname, a11.pkey_guid, a11.upkey_guid, a17.day_of_week
           , a17.d_week, a17.mnth_id, a17.year_id, a17.desc_year_full
           , a17.week_id, a17.week_of_year;
    {code}
    I hope I did not miss anything while reformatting the code. I could not test it not having the proper tables.
    As I said before I'm not a tuning expert nor I pretend to be but I see this:
    1) Table W_PERSON_D is read in full scan. Any possibility of using indexes?
    2) Tables W_SALES_D, W_DATE_D,  ACTIVITY_F and W_ORG_D have TABLE ACCESS BY INDEX ROWID which definitely is not fast.
    You should provide additional information for tuning your query checking the post I mentioned previously.
    Regards.
    Al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • I need help whenever I want to install a new application I receive a message that I cannot be connected to I tunes store although I am connected to the Internet Help

    I need help whenever I want to install a new application I receive a message that I cannot be connected to I tunes store although I am connected to the Internet Help

    Click here and follow the instructions to change the iTunes Store country.
    (85848)

  • Need your suggestions for developing a Forum Site using Adobe Flex

    Hi ,
    I want to develop a small Forum Site where people can post questions and reply to questions .
    I want to develop the whole thing using Adobe Flex , Is there any plugin avialable for this .
    Means i mean to ask , if i go for normal J2EE there is a JForum avialable as far as i know .
    Please share your ideas .

    I meant "Don't use flex" unless you have some superb new design for a forum. I suspect that if you already had such a design, you wouldn't need to ask the question. Flex for Flex sake isn't good.
    There are already great html forum solutions out there.
    Basically, there's no point in duplicating in Flex what is already done in HTML, unless the Flex version offers a significant improvement to the user experience in some way.
    I am not aware of any Flex forum implementations and there is probably a good reason for that.
    Maybe someone else will know of one.

  • Need Your suggestion on Performance Management

    Hi All
    When Creating objectives it can be linked different criterian.But Whati would need to know can this be linked based on
    Person wise
    Department
    Band
    Can objectives be mapped to One - Many Many - one relations !!
    Employee /Manager should have an option remove unwanted objectives.I think it can be done.But stilli need all gurus inputs
    When An employee transfered from Org to another existing objectives will need to be attached to the employee
    Upon transfer of an employee appraisal final rating should be given by both the managers
    Do a mid-term appraisal with ratings but not to complete the appraisal.
    Do an Annual appraisal with final ratings
    Can these be possible as straight fit. Need all your valuable inputs .This is very urgent.

    When Creating objectives it can be linked different criterian.But Whati would need to know can this be linked based on
    Person wise
    Department
    Band
    Yes, u can create different eligibility profiles as required.
    Can objectives be mapped to One - Many Many - one relations !!You cannot have more than one eligibility profile linked to an objective. But you can create all the eligibility factors into a single profile. This was you will not need more than 1 eligibility profile for 1 objective.
    You can link 1 eligibility profile to more than 1 objective.
    Employee /Manager should have an option remove unwanted objectives.I think it can be done.But stilli need all gurus inputsYes.
    When An employee transfered from Org to another existing objectives will need to be attached to the employeeNot sure. But but during the appraisal, the manager can attach more objectives. Also, if you republish the plan, the extra objectives gets added to the employee's scorecard.
    Upon transfer of an employee appraisal final rating should be given by both the managers.Final rating can only be given by the appraiser.
    1. The previous appraiser can change the Main Appraiser and select the new appraiser
    2. The previous appraiser can add the new manager as a particiapnt and get his inputs.
    Do a mid-term appraisal with ratings but not to complete the appraisal.
    Do an Annual appraisal with final ratings
    You need to create 2 separate appraisal. You can create two seperate appraisal tasks in the same PMP, one for mid year and the second for annual. But the final rating column will be there, you can ignore it.

  • Need your suggestion ..

    Dear folks,
    Could you share to me your suggestions please .. ??
    I have report whose type is summary and it's coming from info-cubes. The info-cube before going to info-cube, the data it's sent to ODS first.
    The source of data come from CRM System.
    The case is like this, sometimes my user wanna delete the data that has been displayed in the report.
    Could you suggest me what i should do regarding this requirement .. ?? What procedure should i do ?
    Many thanks.
    regards,
    Niel.

    Deal All,
    I'd like to express my tks to you for your response.
    The user wanna to delete the data from the report permanently.
    It means, if i have data about transaction 1 for customer A, the data should be deleted from Info-Cube and also the source (CRM).
    I've ever heard the method, that we can delete the record in ODS using mark 0recordmode in ODS with 'D'.
    My questions are :
    1. If i use that method, how can i delete the data in info-cube ?
    2. Is there other method except this ?
    fyi, my data flow :
    SAP CRM -> BW : data source -> PSA -> ODS -> Cube.
    Regards,
    Niel.

  • Request for input about Forte support for the Eurocurrency

    The design work for Forte support for the Euro currency is underway.
    The Euro becomes legal at the start of 1999.
    It is important that Forte support for the Euro currency provides
    all the features that knowledgeable users will expect and require.
    Please email me ([email protected]) before July 31 if you know of
    features that should be supported, or if you have suggestions or
    thoughts of any kind regarding supporting the Euro currency.
    Thanks ..
    Walt Loew
    Forte Engineering
    Walt Loew [email protected]
    Forte Software Inc. 510.869.3428
    1800 Harrison St.
    Oakland CA. 94612
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Jonathan,
    Contact BEA sales, I believe that version 7.0 supports the seamless
    replacement of security providers and that several major security vendors
    have developed providers that are or will shortly be commercially available.
    Alex
    "Jonathan" <[email protected]> wrote in message
    news:[email protected]..
    First off, this may seem redundant.
    Our company is looking for security products that can be used to
    secure the Weblogic Application server. We are currently upgrading
    from 5.1 to 7.0 and left to my own devices I would use the Security
    that is built into weblogic.
    However in order to do the due diligence I need to provide other
    options i.e. get a product that can be configured to provide security
    for the Application server. An additional nice to have feature would
    be security for resources outside of Weblogic.
    My primary request is for any websites that give a comparison of
    such tools. but if anyone has experience using a security tool with
    weblogic, it would be great to hear this. If anyone has used an
    external LDAP server with Weblogic 7.0 that would be interesting also.

  • Creation of initial DB for new application

    Hello,
    I have to develop an application in a not connected environment, having synchronization with a master repository, so I'm using Oracle Lite.
    As far as I understood the process of creation :
    1- Create local DB
    2- Create the application
    3- Publish application
    a. define authorizations
    b. define tables to synchronize
    4- Get new application on client
    I'm facing difficulties to create the DB : the tables I need already exist in the master repository, so I made a local copy of them.
    But I need to use Views existing in the master repository : how can I define them since they refer tables that are not present in the local database ?
    The process is not really clear for me.

    if you need to create a win ce application my way to do it is the following in a bit more detail:1)have your cab file ready. the cab file is the installation file for your application. there can be more than one
    2)Create your database through your sql developer (if your using oracle as your repository database)
    3)use your workbench to create a new project, create your publication items based on your tables. add some sequences if you need to.
    remember that if you need to do some data subsetting then you need to put a variable, for instance
    select * from customer where salemanid=:myvariable
    4)create a new publication and add your pub items and sequences, save it
    5)run your packaging wizard, create a new application , select the application folder that you have your cab files and select you
    publication (if you dont know your repository url, you can see it through the mobile manager->data synchronization->repository
    6)select the cab files from the corresponding tab. then select publish the application. enter the administrator's credentials and click ok
    . by the way if you have a new cab file in the future and you want to update your app, then use packaging wizard to edit the app
    7)go in the mobile manager, create a new group of users . go in the application and give access to the group. then create new users and
    add them to your group.
    8)go in the application->data subsetting and enter the myvariable value (remember that if it is string we put it in '...' if it is number i think you dont need that)
    9)then go to your client,pda in my case . open your internet explore and go to your server/webtogo. select setup from the top corner,choose your client and run it
    10)enter your user's credentials and whoops dmagent is registered.
    11)go in start->programs->oracle msync and sync. your database is now created, click ok and exit. oracle update pops up saying you have a software update.
    its your cab files, install them too!
    >
    Ok this worked on the mobile PC!
    >
    12)client is ready to be used. there might be the case that you need to enter some specific language or other parameters but thats
    out of the scope of this thread i guess.
    hope i didnt forget anything:P
    good luck>
    I tried to launch the msql command line but it answered me: 'Access violation' X-(

  • Need your suggestions related to transport the structures

    Hi Experts & Gurus,
    We are planning to do data refresh from our BI Production to Q and DEV systems. We have a problem as we have some structures (some process chains or models etc.) in production and those are not available in Q & DEV. So is there any easy way we can transfer those structures in our Q & DEV, so that everything should be in sync.  Please provide me your valuable suggestions and methods.
    Regards
    Sunny

    Hi sunny,
    For that you have to create a transport of copies in Production and transport it to QA and development.
    reverse transporting is the one solution for ur requirement.
    In order to do this first make sure you have this connectivity maintained to reverse transport.
    For that you have in transaction SCC4 in quality change the type of system and open it (basically change the settings in SCC4 in quality to be the same you have in development).
    Afterwards you should in quality go to rsa1->Transport Connection and from the menu choose Edit->Transport->Switch On Standard.
    Afterwards on the same screen on the grouping (right screen area button) choose Only necessary objects.
    Also on the right screen area choose the Display to List.
    Choose on the left area the objects you want to transport.
    Click on the button of the transport (between grouping and package) and create a new transport request.
    Now this transport request is a local one. You have to create one as trasnport of copies.
    Go to transaction se01 and click on display. Liberate the transport you have just created but note it down the transport id.
    Afterwards go to transaction se01 again and click on create button and choose a new transport with the type "Transport of copies"
    Give it a name.
    Aftewards double-click on the transport id and click on change. Go to the tab Properties and on the Target field select from the list the Target System of the development and save the changes.
    Afterwards click on the button "Include objects" (Ctrl+F11) and insert the local transport id you've liberated before.
    After this just liberate the transport and on transaction stms you'll see on the development system the new transport of copies you've created and you can now transport it normally as you do.
    After all this is done just close your system on transaction SCC4 on quality system as it was before.
    Or
    Develop the changes in the Dev and retransport the changes to QA n PROD.
    Regards
    Kp

  • Need your suggestions

    <SPAN>:angry: I'm so frustrated. I'm not going to follow the lemming-IPod rush.
    <SPAN>
    Could someone please review my info and give me some suggestions as to which Creative mp3 player would best suit my needs?
    I would hate to buy the wrong player.<SPAN> I appreciate your honest opinions on your personal Creative Player.
    <SPAN>
    <SPAN>Please do not recommend a player that is soon to be discontinued!I really appreciate your help in this matter. I?m currently dropping hints that I want a player for Christmas and hope to have a product name/price to tell people when they ask what I want. <B>Must Haves: </B>Plenty of storage for 0 plus audio books and over 500 songsBookmark function for audio booksMinimum of 8 hours of continuous play
    <SPAN>Flash Memory ? don?t plan to drop it, but if a good song starts to play ? I might start dancing.<SPAN>
    <SPAN>Windows XP compatibleUpgrades and Online SupportEasy upload of audio books and songs capabilitiesDecent sound quality from headphonesComes with headphones and other cables/cords/software to start using straight from boxAccessories that are available most anywhereMinimum 30 day warranty that covers most aspects<B>Not needed: </B>Features such as: photo or video storage/view, calendar, address book, memo pad, etc.Color screen

    Once you say Flash player, your options are limited when it comes to Audible support. First off the capacity of a flash player is small for what Creative is offering. So right there you need to get a hard dri've player.
    If flash is what you <i>REALLY</i> want then consider another brand. But if you can settle for a hard dri've. Then go for a Zen Micro, Zen Neeon 5gb/6gb, or Zen Sleek. I'm not sure if the Zen Micro Photo and Zen Sleek Photo have Audible support but I would think so. Hopefully someone can confirm this as the website for both devices dont list Audible as a compatible format.
    Also the accessories part, as the market is dominated by the iPod's that pretty much all you see. The accessories are pretty much iPod only and Everything else. So with anything but an iPod your choice of accessories are limited.

  • Need your suggestion : VMWare Workstation Network Bridge Never works

    Hi, I am new to the Archlinux, and begin to love this distribution, event though I struggling all the time to get my archlinux up to running. It is very painful move from windows to Linux because some of my company software only runs correctly under windows (most of time get error under wine...), so I need to install VMWare-Workstation on my PC.
    With the help from Arch Fan's Blog I successfully installed VMWare-WorkSation 7.1 on my arch (64bit version) and everything works fine except the network. Not matter how I struggle search on the google I just can not make the network adapter working under bridge mode. which works perfectly under windows OS.
    So I wonder is any one have the same issue and will be great help if you can share your experience.
    Thanks A lot !!
    BTW: My PC only have one Wireless Network card enabled, so I have disable the eth0 on "/etc/rc.conf"

    abraham10 wrote:Have you tried Virtual box instead and what about crossover?
    thanks for reply,
    Virtualbox not support some USB features which is required by the software and however, I found Virtualbox alway consume more system resource than VMWare-Workstation, so that is the reason I need to stick to the VMWare.

  • Need your suggestion in maintaining Member Proflle Details

    Hi Experts,
    I was asked to return the new updated value for the customer when successfully any changes updated to his/her information.
    My Table:
    customerid          -     Pk
    customerfirstname     -     
    customerlastname     -
    Customer bussiness phone
    customer home phone
    In Average, there will be thousands and more customer per day. Each customer will update his/her profile once or twice per day.
    Can someone suggest how can i proceed this?
    Thanks,
    Database Developer.
    Edited by: user11904889 on Sep 21, 2009 3:27 AM

    user11904889 wrote:
    I was asked to return the new updated value for the customer when successfully any changes updated to his/her information.What does that mean exactly?
    Do you need to keep the history of the records too, or just know which records have been updated?
    If you need a history, then you'll need either a) to implement something like triggers to store the changes elsewhere or b) to include a "from" date/time and "to" date/time against each record so that you can determine which are the latest records for each customer. You can then use the "from" date/time to determine which records you are interested in retrieving (i.e. those that have changed since a specified date/time).
    If you don't need a history, then simply have a "date_updated" date/time against the record and use that.

  • Needs your suggestion: New to SAP BI

    Hi All
    I am working in an MNC as a business analyst, related to business intelligence. But not related to SAP. I have learnt SAP through an institute. now i want to use my previous experience to get into SAP. Can i use it? Can i get in to SAP without handson experience in SAP??
    needs ur sugeestion
    thanks

    Hi,
    Below links are very useful to concentrate your BI knowledge.
    data modelling..
    http://searchsap.techtarget.com/searchSAP/downloads/April2006.pdf
    http://searchsap.techtarget.com/searchSAP/downloads/chapter-october.pdf
    Enterprise Dataware Housing.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/67efb9bb-0601-0010-f7a2-b582e94bcf8a
    Enterprise Reporting.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0901c9bb-0601-0010-49ab-c1770c527673
    http://help.sap.com/saphelp_nw04s/helpdata/en/a4/1be541f321c717e10000000a155106/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    https://www.sdn.sap.com/irj/sdn/bi
    http://searchsap.techtarget.com/searchSAP/downloads/April2006.pdf
    http://searchsap.techtarget.com/searchSAP/downloads/chapter-october.pdf
    LO Extraction
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0af763b-066e-2910-a784-dc6731660f46
    lo extraction step by step
    LO Step by step documentation
    LO Cockpit  (SD) Step by step
    LIS Extraction
    lis extraction
    Steps for LIS Extraction
    COPA Extraction
    /people/prakash.darji/blog/2006/09/18/bpx-methodology-and-example--part-2
    How to handle COPA realignment / restatement
    /people/hari.peruri/blog/2006/11/01/execute-conversion-of-logical-system-names-bdls-in-short-time-and-in-parallel--intermediate
    Thanks,
    Sankar M

  • NEED YOUR HELP TO WRITE COMPLEX QUERIES FOR MULTIPLE RECHARGE

    Dear friend,
    Kindly help me out to prepare query for below scenario in telecom environment ..
    sometimes retailer do multiple recharge to same subscriber for same price points(MRP) in a day i.e Suppose in day ,a reatailer:A did recharge mrp 50 to Customer: B , Again after 5 min ,then reatailer:A did recharge mrp 50 to Customer: B again , then after 30 min ,then reatailer:A did recharge mrp 50 to Customer: B again ...similarly lot of retailer did same thing so on ....
    Kndly suggest a query for below scenario..
    1)How to get 1st recharge for customer if retailer did multiple recharge to particular customer for same price points in day ..
    2)how to get 2nd recharge for customer considering 1st scenarion i.e.a particular retailer did recharge MRP 50 three times a partucular customer in day ..then how can get 2nd one ....
    3)how can get second transaction to customer which happened after 2 mins after did 1st recharge ..considering multiple recharge scenario
    4) how can get second transaction to same customer which happened after 30 mins after did 1st reharge to customer ..considering multiple recharge scenario
    5) how can get second transaction to customer which happened between 2 mins and 5 mins after did 1st recharge to cuastomer considering multiple recharge scenario
    i have tried with below query , But it's not giving exact output .Kindly suggest qury for same .. table with column with some sample recode given below ..
    SELECT DISTINCT a.TRANSACTION_ID,a.TRASFER_DATE,b.transaction_id,
    ABS(a.TRASFER_DATE-b.TRASFER_DATE)*24*60*60,b.TRASFER_DATE next1,
    a.PROCESSING_TIME,a.RETAILER_MSISDN,a.CUSTOMER_MSISDN,a.MRP FROM SG_JK_190313 a,SG_JK_190313 b
    WHERE a.retailer_msisdn=b.RETAILER_MSISDN
    AND a.CUSTOMER_MSISDN=b.CUSTOMER_MSISDN
    AND a.MRP=b.MRP
    AND a.TRASFER_DATE!=b.TRASFER_DATE
    AND ABS(a.TRASFER_DATE-b.TRASFER_DATE)*24*60*60>120
    ORDER BY a.transaction_id
    Table Details :SG_JK_190313 it's columns:TRANSACTION_ID, TRASFER_DATE, PROCESSING_TIME, RETAILER_MSISDN, CUSTOMER_MSISDN, MRP
    transaction_id     trasfer_date processing_time     retailer_msisdn     customer_msisdn     mrp
    JKR13031900571000005     3/19/2013 0:57     0.75     7298297447     7298297447     10
    JKR13031900571000005     3/19/2013 0:57     0.75     7298297447     7298297447     10
    JKR13031900571000005     3/19/2013 0:57     0.75     7298297447     7298297447     10
    JKR13031900571000005     3/19/2013 0:57     0.75     7298297447     7298297447     10
    JKR13031911511200235     3/19/2013 11:51     0.392     7298297447     7298297447     10
    JKR13031911511200235     3/19/2013 11:51     0.392     7298297447     7298297447     10
    JKR13031911511200235     3/19/2013 11:51     0.392     7298297447     7298297447     10
    JKR13031911511200235     3/19/2013 11:51     0.392     7298297447     7298297447     10
    JKR13031915551100480     3/19/2013 15:55     0.4     7298297447     7298297447     10
    JKR13031915551100480     3/19/2013 15:55     0.4     7298297447     7298297447     10
    JKR13031915551100480     3/19/2013 15:55     0.4     7298297447     7298297447     10
    JKR13031915551100480     3/19/2013 15:55     0.4     7298297447     7298297447     10
    JKR13031922321000078     3/19/2013 22:32     0.417     7298297447     7298297447     10
    JKR13031922321000078     3/19/2013 22:32     0.417     7298297447     7298297447     10
    JKR13031922321000078     3/19/2013 22:32     0.417     7298297447     7298297447     10
    JKR13031922321000078     3/19/2013 22:32     0.417     7298297447     7298297447     10
    JKR13031905141100001     3/19/2013 5:14     0.502     7298698345     7298598324     50
    JKR13031923121000043     3/19/2013 23:12     0.404     7298698345     7298598324     50
    JKR13031905141100001     3/19/2013 5:14     0.502     7298698345     7298598324     50
    JKR13031905141100001     3/19/2013 5:14     0.502     7298698345     7298598324     50
    JKR13031907151100019     3/19/2013 7:15     0.569     7298698345     7298598324     50
    JKR13031907151100019     3/19/2013 7:15     0.569     7298698345     7298598324     50
    JKR13031907151100019     3/19/2013 7:15     0.569     7298698345     7298598324     50
    JKR13031907151100019     3/19/2013 7:15     0.569     7298698345     7298598324     50
    JKR13031907451100041     3/19/2013 7:45     0.483     7298698345     7298598324     50
    JKR13031907451100041     3/19/2013 7:45     0.483     7298698345     7298598324     50
    JKR13031907451100041     3/19/2013 7:45     0.483     7298698345     7298598324     50
    JKR13031907451100041     3/19/2013 7:45     0.483     7298698345     7298598324     50
    JKR13031923121000043     3/19/2013 23:12     0.404     7298698345     7298598324     50
    JKR13031923121000043     3/19/2013 23:12     0.404     7298698345     7298598324     50
    JKR13031923121000043     3/19/2013 23:12     0.404     7298698345     7298598324     50
    JKR13031905141100001     3/19/2013 5:14     0.502     7298698345     7298598324     50
    JKR13031901061000004     3/19/2013 1:06     0.487     9697199326     8803799846     1
    JKR13031918431100989     3/19/2013 18:43     0.323     9697199326     8803799846     1
    JKR13031918431100989     3/19/2013 18:43     0.323     9697199326     8803799846     1
    JKR13031918431100989     3/19/2013 18:43     0.323     9697199326     8803799846     1
    JKR13031918431100989     3/19/2013 18:43     0.323     9697199326     8803799846     1
    JKR13031918431100989     3/19/2013 18:43     0.323     9697199326     8803799846     1
    JKR13031918431100989     3/19/2013 18:43     0.323     9697199326     8803799846     1
    JKR13031918431100989     3/19/2013 18:43     0.323     9697199326     8803799846     1
    JKR13031901061000004     3/19/2013 1:06     0.487     9697199326     8803799846     1
    JKR13031901061000004     3/19/2013 1:06     0.487     9697199326     8803799846     1
    JKR13031901061000004     3/19/2013 1:06     0.487     9697199326     8803799846     1
    JKR13031901061000004     3/19/2013 1:06     0.487     9697199326     8803799846     1
    JKR13031901061000004     3/19/2013 1:06     0.487     9697199326     8803799846     1
    JKR13031901061000004     3/19/2013 1:06     0.487     9697199326     8803799846     1
    JKR13031900081200010     3/19/2013 0:08     0.253     9697199326     8803799846     1
    JKR13031900081200010     3/19/2013 0:08     0.253     9697199326     8803799846     1
    JKR13031900081200010     3/19/2013 0:08     0.253     9697199326     8803799846     1
    JKR13031900081200010     3/19/2013 0:08     0.253     9697199326     8803799846     1
    JKR13031900081200010     3/19/2013 0:08     0.253     9697199326     8803799846     1
    JKR13031900081200010     3/19/2013 0:08     0.253     9697199326     8803799846     1
    JKR13031900081200010     3/19/2013 0:08     0.253     9697199326     8803799846     1
    JKR13031900291100016     3/19/2013 0:29     0.464     9697199326     8803799846     1
    JKR13031900291100016     3/19/2013 0:29     0.464     9697199326     8803799846     1
    JKR13031900291100016     3/19/2013 0:29     0.464     9697199326     8803799846     1
    JKR13031900291100016     3/19/2013 0:29     0.464     9697199326     8803799846     1
    JKR13031900291100016     3/19/2013 0:29     0.464     9697199326     8803799846     1
    JKR13031900291100016     3/19/2013 0:29     0.464     9697199326     8803799846     1
    JKR13031900291100016     3/19/2013 0:29     0.464     9697199326     8803799846     1
    JKR13031900191000011     3/19/2013 0:19     0.302     9697199326     8803799846     1
    JKR13031900191000011     3/19/2013 0:19     0.302     9697199326     8803799846     1
    JKR13031900191000011     3/19/2013 0:19     0.302     9697199326     8803799846     1
    JKR13031900191000011     3/19/2013 0:19     0.302     9697199326     8803799846     1
    JKR13031900191000011     3/19/2013 0:19     0.302     9697199326     8803799846     1
    JKR13031900191000011     3/19/2013 0:19     0.302     9697199326     8803799846     1
    JKR13031918501101022     3/19/2013 18:50     2.231     9697199326     8803799846     1
    JKR13031918501101022     3/19/2013 18:50     2.231     9697199326     8803799846     1
    JKR13031918501101022     3/19/2013 18:50     2.231     9697199326     8803799846     1
    JKR13031918501101022     3/19/2013 18:50     2.231     9697199326     8803799846     1
    JKR13031918501101022     3/19/2013 18:50     2.231     9697199326     8803799846     1
    JKR13031918501101022     3/19/2013 18:50     2.231     9697199326     8803799846     1
    JKR13031918501101022     3/19/2013 18:50     2.231     9697199326     8803799846     1
    JKR13031918371101555     3/19/2013 18:37     0.376     9697199326     8803799846     1
    JKR13031918371101555     3/19/2013 18:37     0.376     9697199326     8803799846     1
    JKR13031918371101555     3/19/2013 18:37     0.376     9697199326     8803799846     1
    JKR13031918371101555     3/19/2013 18:37     0.376     9697199326     8803799846     1
    JKR13031918371101555     3/19/2013 18:37     0.376     9697199326     8803799846     1
    JKR13031918371101555     3/19/2013 18:37     0.376     9697199326     8803799846     1
    JKR13031918371101555     3/19/2013 18:37     0.376     9697199326     8803799846     1
    JKR13031900191000011     3/19/2013 0:19     0.302     9697199326     8803799846     1
    JKR13031920541100321     3/19/2013 20:54     0.373     9858998396     9858998396     10
    JKR13031920541100321     3/19/2013 20:54     0.373     9858998396     9858998396     10
    JKR13031917321000533     3/19/2013 17:32     0.361     9858998396     9858998396     10
    JKR13031917321000533     3/19/2013 17:32     0.361     9858998396     9858998396     10
    JKR13031917321000533     3/19/2013 17:32     0.361     9858998396     9858998396     10
    JKR13031913071200251     3/19/2013 13:07     0.422     9858998396     9858998396     10
    JKR13031913071200251     3/19/2013 13:07     0.422     9858998396     9858998396     10
    JKR13031920541100321     3/19/2013 20:54     0.373     9858998396     9858998396     10
    JKR13031913071200251     3/19/2013 13:07     0.422     9858998396     9858998396     10
    Regards
    Srikanta Parida

    PFB sample data of table .Kindely prepare the query..
    transaction_id     trasfer_date     processing_time     retailer_msisdn     customer_msisdn     mrp
    JKR13031900571000005     19/Mar/2013 12:57:51 AM     0.75     7298297447     7298297447     10
    JKR13031900571000005     19/Mar/2013 12:57:51 AM     0.75     7298297447     7298297447     10
    JKR13031900571000005     19/Mar/2013 12:57:51 AM     0.75     7298297447     7298297447     10
    JKR13031900571000005     19/Mar/2013 12:57:51 AM     0.75     7298297447     7298297447     10
    JKR13031911511200235     19/Mar/2013 11:51:19 AM     0.39     7298297447     7298297447     10
    JKR13031911511200235     19/Mar/2013 11:51:19 AM     0.39     7298297447     7298297447     10
    JKR13031911511200235     19/Mar/2013 11:51:19 AM     0.39     7298297447     7298297447     10
    JKR13031911511200235     19/Mar/2013 11:51:19 AM     0.39     7298297447     7298297447     10
    JKR13031915551100480     19/Mar/2013 03:55:50 PM     0.40     7298297447     7298297447     10
    JKR13031915551100480     19/Mar/2013 03:55:50 PM     0.40     7298297447     7298297447     10
    JKR13031915551100480     19/Mar/2013 03:55:50 PM     0.40     7298297447     7298297447     10
    JKR13031915551100480     19/Mar/2013 03:55:50 PM     0.40     7298297447     7298297447     10
    JKR13031922321000078     19/Mar/2013 10:32:34 PM     0.42     7298297447     7298297447     10
    JKR13031922321000078     19/Mar/2013 10:32:34 PM     0.42     7298297447     7298297447     10
    JKR13031922321000078     19/Mar/2013 10:32:34 PM     0.42     7298297447     7298297447     10
    JKR13031922321000078     19/Mar/2013 10:32:34 PM     0.42     7298297447     7298297447     10
    JKR13031905141100001     19/Mar/2013 05:14:11 AM     0.50     7298698345     7298598324     50
    JKR13031923121000043     19/Mar/2013 11:12:55 PM     0.40     7298698345     7298598324     50
    JKR13031905141100001     19/Mar/2013 05:14:11 AM     0.50     7298698345     7298598324     50
    JKR13031905141100001     19/Mar/2013 05:14:11 AM     0.50     7298698345     7298598324     50
    JKR13031907151100019     19/Mar/2013 07:15:05 AM     0.57     7298698345     7298598324     50
    JKR13031907151100019     19/Mar/2013 07:15:05 AM     0.57     7298698345     7298598324     50
    JKR13031907151100019     19/Mar/2013 07:15:05 AM     0.57     7298698345     7298598324     50
    JKR13031907151100019     19/Mar/2013 07:15:05 AM     0.57     7298698345     7298598324     50
    JKR13031907451100041     19/Mar/2013 07:45:13 AM     0.48     7298698345     7298598324     50
    JKR13031907451100041     19/Mar/2013 07:45:13 AM     0.48     7298698345     7298598324     50
    JKR13031907451100041     19/Mar/2013 07:45:13 AM     0.48     7298698345     7298598324     50
    JKR13031907451100041     19/Mar/2013 07:45:13 AM     0.48     7298698345     7298598324     50
    JKR13031923121000043     19/Mar/2013 11:12:55 PM     0.40     7298698345     7298598324     50
    JKR13031923121000043     19/Mar/2013 11:12:55 PM     0.40     7298698345     7298598324     50
    JKR13031923121000043     19/Mar/2013 11:12:55 PM     0.40     7298698345     7298598324     50
    JKR13031905141100001     19/Mar/2013 05:14:11 AM     0.50     7298698345     7298598324     50
    JKR13031901061000004     19/Mar/2013 01:06:39 AM     0.49     9697199326     8803799846     1
    JKR13031918431100989     19/Mar/2013 06:43:37 PM     0.32     9697199326     8803799846     1
    JKR13031918431100989     19/Mar/2013 06:43:37 PM     0.32     9697199326     8803799846     1
    JKR13031918431100989     19/Mar/2013 06:43:37 PM     0.32     9697199326     8803799846     1
    JKR13031918431100989     19/Mar/2013 06:43:37 PM     0.32     9697199326     8803799846     1
    JKR13031918431100989     19/Mar/2013 06:43:37 PM     0.32     9697199326     8803799846     1
    JKR13031918431100989     19/Mar/2013 06:43:37 PM     0.32     9697199326     8803799846     1
    JKR13031918431100989     19/Mar/2013 06:43:37 PM     0.32     9697199326     8803799846     1
    JKR13031901061000004     19/Mar/2013 01:06:39 AM     0.49     9697199326     8803799846     1
    JKR13031901061000004     19/Mar/2013 01:06:39 AM     0.49     9697199326     8803799846     1
    JKR13031901061000004     19/Mar/2013 01:06:39 AM     0.49     9697199326     8803799846     1
    JKR13031901061000004     19/Mar/2013 01:06:39 AM     0.49     9697199326     8803799846     1
    JKR13031901061000004     19/Mar/2013 01:06:39 AM     0.49     9697199326     8803799846     1
    JKR13031901061000004     19/Mar/2013 01:06:39 AM     0.49     9697199326     8803799846     1
    JKR13031900081200010     19/Mar/2013 12:08:11 AM     0.25     9697199326     8803799846     1
    JKR13031900081200010     19/Mar/2013 12:08:11 AM     0.25     9697199326     8803799846     1
    JKR13031900081200010     19/Mar/2013 12:08:11 AM     0.25     9697199326     8803799846     1
    JKR13031900081200010     19/Mar/2013 12:08:11 AM     0.25     9697199326     8803799846     1
    JKR13031900081200010     19/Mar/2013 12:08:11 AM     0.25     9697199326     8803799846     1
    JKR13031900081200010     19/Mar/2013 12:08:11 AM     0.25     9697199326     8803799846     1
    JKR13031900081200010     19/Mar/2013 12:08:11 AM     0.25     9697199326     8803799846     1
    JKR13031900291100016     19/Mar/2013 12:29:38 AM     0.46     9697199326     8803799846     1
    JKR13031900291100016     19/Mar/2013 12:29:38 AM     0.46     9697199326     8803799846     1
    JKR13031900291100016     19/Mar/2013 12:29:38 AM     0.46     9697199326     8803799846     1
    JKR13031900291100016     19/Mar/2013 12:29:38 AM     0.46     9697199326     8803799846     1
    JKR13031900291100016     19/Mar/2013 12:29:38 AM     0.46     9697199326     8803799846     1
    JKR13031900291100016     19/Mar/2013 12:29:38 AM     0.46     9697199326     8803799846     1
    JKR13031900291100016     19/Mar/2013 12:29:38 AM     0.46     9697199326     8803799846     1
    JKR13031900191000011     19/Mar/2013 12:19:51 AM     0.30     9697199326     8803799846     1
    JKR13031900191000011     19/Mar/2013 12:19:51 AM     0.30     9697199326     8803799846     1
    JKR13031900191000011     19/Mar/2013 12:19:51 AM     0.30     9697199326     8803799846     1
    JKR13031900191000011     19/Mar/2013 12:19:51 AM     0.30     9697199326     8803799846     1
    JKR13031900191000011     19/Mar/2013 12:19:51 AM     0.30     9697199326     8803799846     1
    JKR13031900191000011     19/Mar/2013 12:19:51 AM     0.30     9697199326     8803799846     1
    JKR13031918501101022     19/Mar/2013 06:50:40 PM     2.23     9697199326     8803799846     1
    JKR13031918501101022     19/Mar/2013 06:50:40 PM     2.23     9697199326     8803799846     1
    JKR13031918501101022     19/Mar/2013 06:50:40 PM     2.23     9697199326     8803799846     1
    JKR13031918501101022     19/Mar/2013 06:50:40 PM     2.23     9697199326     8803799846     1
    JKR13031918501101022     19/Mar/2013 06:50:40 PM     2.23     9697199326     8803799846     1
    JKR13031918501101022     19/Mar/2013 06:50:40 PM     2.23     9697199326     8803799846     1
    JKR13031918501101022     19/Mar/2013 06:50:40 PM     2.23     9697199326     8803799846     1
    JKR13031918371101555     19/Mar/2013 06:37:59 PM     0.38     9697199326     8803799846     1
    JKR13031918371101555     19/Mar/2013 06:37:59 PM     0.38     9697199326     8803799846     1
    JKR13031918371101555     19/Mar/2013 06:37:59 PM     0.38     9697199326     8803799846     1
    JKR13031918371101555     19/Mar/2013 06:37:59 PM     0.38     9697199326     8803799846     1
    JKR13031918371101555     19/Mar/2013 06:37:59 PM     0.38     9697199326     8803799846     1
    JKR13031918371101555     19/Mar/2013 06:37:59 PM     0.38     9697199326     8803799846     1
    JKR13031918371101555     19/Mar/2013 06:37:59 PM     0.38     9697199326     8803799846     1
    JKR13031900191000011     19/Mar/2013 12:19:51 AM     0.30     9697199326     8803799846     1
    JKR13031920541100321     19/Mar/2013 08:54:23 PM     0.37     9858998396     9858998396     10
    JKR13031920541100321     19/Mar/2013 08:54:23 PM     0.37     9858998396     9858998396     10
    JKR13031917321000533     19/Mar/2013 05:32:39 PM     0.36     9858998396     9858998396     10
    JKR13031917321000533     19/Mar/2013 05:32:39 PM     0.36     9858998396     9858998396     10
    JKR13031917321000533     19/Mar/2013 05:32:39 PM     0.36     9858998396     9858998396     10
    JKR13031913071200251     19/Mar/2013 01:07:22 PM     0.42     9858998396     9858998396     10
    JKR13031913071200251     19/Mar/2013 01:07:22 PM     0.42     9858998396     9858998396     10
    JKR13031920541100321     19/Mar/2013 08:54:23 PM     0.37     9858998396     9858998396     10
    JKR13031913071200251     19/Mar/2013 01:07:22 PM     0.42     9858998396     9858998396     10
    Edited by: user3558544 on Apr 5, 2013 5:55 AM

  • Need Your help how to: "Install APEX"

    Can you help me and show me by details how can I install the oracle application express in my PC ?
    Thank you very much.

    Can someone help me as i'm trying to upgrade into apex 3.0.1
    The standard install went OK but the next step failed, which is to run this:
    @apex_home/apex/apxldimg.sql APEX_HOME
    ERROR at line 1:
    ORA-22280: file or LOB operation FILEOPEN failed
    The system cannot find the path specified.
    ORA-06512: at "SYS.DBMS_LOB", line 523
    ORA-06512: at "SYS.XMLTYPE", line 287
    ORA-06512: at line 15
    is there a way to fix this??? when i run apex, it doesn't load properly. images for objects are missing and its not loading any page definition.
    please help. thanks.

Maybe you are looking for

  • Setup tables for invoices header data (2LIS_13_VDHDR)

    Hi experts, I am using 2LIS_13_VAHDR and 2LIS_13_VAITM to transfer data to SAP BW.  Through the t-code SBIW, I I run the job to fill setup tables with invoices data. the job is completed succefully. when I check the extractors in RSA3, the extractor

  • Payload Encryption - Clarification ?

    Hi EBS Gurus, We are running 11.5.10.2 on Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit. I am looking for some clarification on payload encryption. In our environment we are observing that the the transactions are encrypted before

  • Patch for developer6.0

    Hi can any one tell me the site address to download a patch for developer 6.0 thanks sanjay null

  • Install error 1401 - Could not create key

    I'm trying to install BlackBerry Desktop Software 4.5 in Windows XP. I'm installing it in my daughters WinXP user account. Durring the install process I said to make the software available only to her account, not to all users. (I run ActiveSync for

  • AirPort Extreme w/ USB Disk -  Need to remove old configuration

    I have an external 500Gig USB drive that I have connected to my AirPort Extreme which was formatted FAT32. The drive works fine and I had no problems setting up the AirPort to use it as a shared drive. However, I realized that having the drive as FAT