I build Messenger by RMI+SWING + ORACLE is it best Approch For Messenger?

i make messenger like MSN by using RMI , Swing and oracle for database , now i want
to asked is it best approch for makinng messenger which is work like MSN, and is it
work proper when i host it for public use ?
i also want to konw can i make it by using Servlet if yes then how ?
and can i use beens for this perpouse ?
If any body know about it then please tell me,
Thanks
M.Arif.

Hi,
I have worked on the same patterns long back and had done a lot.Anyway creating the application like msn is what you want or the Efficient Chat Application.I believe you will be interested in creating in chat application which will not decieve you at the critical point.
The RMI technology is the best for the java programmer,In fact you can create the thing with the
servlet but then there will be restriction ,the clients can only be browsers.So what you would
like is to create the General application which will serve any of the user agent.Now the client can
be swing,applet,browser or console.For each you will have to install the required software at the
client side.
But the server tech will remain same,the RMI server........
i also want to konw can i make it by using Servlet if
yes then how ?
and can i use beens for this perpouse ?Yes you can do this.....
But there will be restrictions,as you cannot get the latest info unless you send it from server.
What you will have to do is create an object at the server which will interacted from the servlet,and the Object should contain all the info till the application is running.So you have to
read,update,remove the data corresponding to each client from that object with invocation of servlet...
Hope you understand............
regards vicky

Similar Messages

  • In Oracle, which is best practice for 'NOT EQUAL TO'

    I need to check for where a decimal value is not zero.
    Am I better to use
    'less than symbol or greater than symbol' 0
    or
    != 0or does Oracle substitute 'less than symbol or greater than symbol' to != effectively ?
    In my mind if it doesn't the 'less than symbol or greater than symbol' would be slower because it has to check if the value is greater than OR less than.
    I appreciate != is not SQL-92 compliant.
    I appreciate it would be less than a nano second difference but they all add up!
    Thanks
    The 'less than symbol or greater than symbol' do not show it seems as they are used in HTML.
    Edited by: cubmar on Jun 5, 2009 11:16 AM
    Edited by: cubmar on Jun 5, 2009 11:21 AM

    Even though The CBO is cleverly written program it does makes its assumptions. When ever the Optimizer finds a NOT operator it assumes that is going to fetch a large portion of the data and goes for a FULL TABLE SCAN. INDEX SCAN Is not an option.
    And hence if you are not going to select a large portion of the data using NOT can be expensive.
    Below is an example.
    i have created a table which has one record with value as 1 and 99999 records with value as 0.
    SQL> create table t
      2  as
      3  select decode(level,1,1,0) no, rpad('*',100,'*') name
      4    from dual
      5  connect by level <= 100000
      6  /
    Table created.
    SQL> create index t_idx on t(no)
      2  /
    Index created.
    SQL> exec dbms_stats.gather_table_stats(user,'T',cascade=>true)
    PL/SQL procedure successfully completed.so when i use the condition no != 0 i am gong to select only 1 record. So i expect the optimizer to go for a INDEX RANGE SCAN but see what happens.
    SQL> explain plan
      2  for
      3  select * from t where no != 0
      4  /
    Explained.
    SQL> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT
    Plan hash value: 1601196873
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |     1 |   103 |   345   (2)| 00:00:05 |
    |*  1 |  TABLE ACCESS FULL| T    |     1 |   103 |   345   (2)| 00:00:05 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       1 - filter("NO"<>0)
    13 rows selected.But with the use of < or > you can go for a INDEX RANGE SCAN.
    SQL> explain plan
      2  for
      3  select * from t where no >0 or no <0
      4  /
    Explained.
    SQL> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT
    Plan hash value: 4259936809
    | Id  | Operation                    | Name  | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |       |     2 |   206 |     6   (0)| 00:00:01 |
    |   1 |  CONCATENATION               |       |       |       |            |          |
    |   2 |   TABLE ACCESS BY INDEX ROWID| T     |     1 |   103 |     3   (0)| 00:00:01 |
    |*  3 |    INDEX RANGE SCAN          | T_IDX |     1 |       |     2   (0)| 00:00:01 |
    |   4 |   TABLE ACCESS BY INDEX ROWID| T     |     1 |   103 |     3   (0)| 00:00:01 |
    |*  5 |    INDEX RANGE SCAN          | T_IDX |     1 |       |     2   (0)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
       3 - access("NO"<0)
       5 - access("NO">0)
           filter(LNNVL("NO"<0))
    19 rows selected.So you must be cautious when you use NOT operator.

  • Mapping LDAP Role in Building Your First Process with Oracle BPM 11g

    I'm working on "Building Your First Process with Oracle BPM 11g" I'm at the end of step where assigns user for the requester. The problem is in identity lookup, "Realm" is empty for Remote_WLServer.
    Servers are up and running. Demo user community has been loaded - I can see the list of users and groups in the administration server under myrealm. We haven't done much since SOA suite 11g installation. I'm probably the first one who uses this. I wonder we have a missing set up? Can you me what's missing? Appreciate your help in advance.

    I get this error message when I clicked gear icon.
    "Server exception is : Connection refused from server"
    Here is the result of testing Remove_WLServer connection. Does this cause the issue?
    Testing JSR-160 Runtime ... failed.
    Cannot establish connection.
    Testing JSR-160 DomainRuntime ... skipped.
    Testing JSR-88 ... skipped.
    Testing JSR-88-LOCAL ... skipped.
    Testing JNDI ... skipped.
    Testing JSR-160 Edit ... skipped.
    Testing HTTP ... success.
    Testing Server MBeans Model ... skipped.
    Testing HTTP Authentication ... success.
    2 of 9 tests successful.
    I have installed JDeveloper 9i, 10g, and 11g in my laptop. SOA is installed on linux.

  • Error on AIX6.1 when building 'C' application pointing to oracle 10.2.0.3

    Hi
    We are trying to build our 'C' application on AIX6.1 pointing to oracle 10.2.0.3 but we are not able to build it successfully because we are getting below error. However, the build is successful if we use oracle 11. Would appreciate for any kind of help or pointer. Thanks in advance.
    System default option values taken from: /usr1/arbor/3p/../3poracle/AIX/precomp/admin/pcscfg.cfg
    Syntax error at line 148, column 2, file /usr/include/standards.h:
    Error at line 148, column 2 in file /usr/include/standards.h
    #warning The -qdfp option is required to process DFP code in headers.
    .1
    PCC-S-02014, Encountered the symbol "warning" when expecting one of the followin
    g:
    a numeric constant, newline, define, elif, else, endif,
    error, if, ifdef, ifndef, include, line, pragma, undef,
    an immediate preprocessor command, a C token,
    The symbol "newline," was substituted for "warning" to continue.
    Syntax error at line 77, column 50, file /usr1/arbor/3p/terrapin/AIX/include/sw_Types.h:
    Error at line 77, column 50 in file /usr1/arbor/3p/terrapin/AIX/include/sw_Types
    .h
    FILE* stream);
    .................................................1
    PCC-S-02201, Encountered the symbol "FILE" when expecting one of the following:
    ... auto, char, const, double, enum, float, int, long,
    ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    union, unsigned, utext, uvarchar, varchar, void, volatile,
    a typedef name, exec oracle, exec oracle begin, exec,
    exec sql, exec sql begin, exec sql type, exec sql var,
    The symbol "enum," was substituted for "FILE" to continue.
    Syntax error at line 99, column 5, file /usr1/arbor/3p/terrapin/AIX/include/sw_Types.h:
    Error at line 99, column 5 in file /usr1/arbor/3p/terrapin/AIX/include/sw_Types.
    h
    sw_dumpMethod dump;
    ....1
    PCC-S-02201, Encountered the symbol "sw_dumpMethod" when expecting one of the fo
    llowing:
    } char, const, double, enum, float, int, long, ulong_varchar,
    OCIBFileLocator OCIBlobLocator, OCIClobLocator, OCIDateTime,
    OCIExtProcContext, OCIInterval, OCIRowid, OCIDate, OCINumber,
    OCIRaw, OCIString, short, signed, sql_context, sql_cursor,
    struct, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name,
    Syntax error at line 0, column 0, file ck_OracleBlobDB.pc:
    Error at line 0, column 0 in file ck_OracleBlobDB.pc
    PCC-S-02201, Encountered the symbol "<eof>" when expecting one of the following:
    ; : an identifier, end-exec, random_terminal
    Error at line 0, column 0 in file ck_OracleBlobDB.pc
    PCC-F-02102, Fatal error while doing C preprocessing
    *** Error code 1
    Regards,
    Vishal

    Hi
    We are trying to build our 'C' application on AIX6.1 pointing to oracle 10.2.0.3 but we are not able to build it successfully because we are getting below error. However, the build is successful if we use oracle 11. Would appreciate for any kind of help or pointer. Thanks in advance.
    System default option values taken from: /usr1/arbor/3p/../3poracle/AIX/precomp/admin/pcscfg.cfg
    Syntax error at line 148, column 2, file /usr/include/standards.h:
    Error at line 148, column 2 in file /usr/include/standards.h
    #warning The -qdfp option is required to process DFP code in headers.
    .1
    PCC-S-02014, Encountered the symbol "warning" when expecting one of the followin
    g:
    a numeric constant, newline, define, elif, else, endif,
    error, if, ifdef, ifndef, include, line, pragma, undef,
    an immediate preprocessor command, a C token,
    The symbol "newline," was substituted for "warning" to continue.
    Syntax error at line 77, column 50, file /usr1/arbor/3p/terrapin/AIX/include/sw_Types.h:
    Error at line 77, column 50 in file /usr1/arbor/3p/terrapin/AIX/include/sw_Types
    .h
    FILE* stream);
    .................................................1
    PCC-S-02201, Encountered the symbol "FILE" when expecting one of the following:
    ... auto, char, const, double, enum, float, int, long,
    ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    union, unsigned, utext, uvarchar, varchar, void, volatile,
    a typedef name, exec oracle, exec oracle begin, exec,
    exec sql, exec sql begin, exec sql type, exec sql var,
    The symbol "enum," was substituted for "FILE" to continue.
    Syntax error at line 99, column 5, file /usr1/arbor/3p/terrapin/AIX/include/sw_Types.h:
    Error at line 99, column 5 in file /usr1/arbor/3p/terrapin/AIX/include/sw_Types.
    h
    sw_dumpMethod dump;
    ....1
    PCC-S-02201, Encountered the symbol "sw_dumpMethod" when expecting one of the fo
    llowing:
    } char, const, double, enum, float, int, long, ulong_varchar,
    OCIBFileLocator OCIBlobLocator, OCIClobLocator, OCIDateTime,
    OCIExtProcContext, OCIInterval, OCIRowid, OCIDate, OCINumber,
    OCIRaw, OCIString, short, signed, sql_context, sql_cursor,
    struct, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name,
    Syntax error at line 0, column 0, file ck_OracleBlobDB.pc:
    Error at line 0, column 0 in file ck_OracleBlobDB.pc
    PCC-S-02201, Encountered the symbol "<eof>" when expecting one of the following:
    ; : an identifier, end-exec, random_terminal
    Error at line 0, column 0 in file ck_OracleBlobDB.pc
    PCC-F-02102, Fatal error while doing C preprocessing
    *** Error code 1
    Regards,
    Vishal

  • How can i migrate Power Builder 8.0 Function into oracle PL/SQL

    Hi Oracle Experts...
    How can i migrate Power Builder 8.0 Function into oracle PL/SQL.. I had migrate some of the coding from PB to PL/SQL. But i don't know how can i convert PB structure(here structure is a data type) into oracle PL/SQL.
    Instead of structure what is the equivalent in oracle plsql
    Below i pasted my POWER BUILDER FUNCTION:
    Long ll_perd,ll_lnperd,ll_mon,ll_effmon,ll_instno,ll_odno
    Decimal{5} ldl_actual,ldl_diff,ldl_inst
    Datetime ldt_first,ldt_exp,ldt_oddt, ldt_lastprod
    String ls_instmode,ls_inst
    str_batch lstr_od //Structure to store odamt and oddate
    Select pay_c_final,lon_d_expiry, lon_d_lastprod
    Into     :ls_inst,:ldt_exp, :ldt_lastprod
    From      loan_mast
    Where branch_c_code = :gs_branch and
              act_c_type      = :as_actype and
              act_c_no           = :as_acno;
    If Sqlca.Sqlcode = -1 Then
         f_message('FT-0189',Sqlca.Sqlerrtext)
         lstr_od.batchslno = -1
         Return lstr_od
    End If
    If adt_prodt > ldt_exp Then
         Select Ceil(months_between(:adt_prodt,:ldt_exp)) Into :lstr_od.batchslno From dual;
         lstr_od.cheqdt = ldt_exp
         lstr_od.batchslno = DaysAfter(Date(ldt_lastprod), Date(adt_prodt))
    Else
         If ls_inst = 'N' Then
              If adt_prodt > ldt_exp Then
                   Select Ceil(months_between(:adt_prodt,:ldt_exp)) Into :lstr_od.batchslno From dual;
                   lstr_od.cheqdt = ldt_exp
              Else
                   lstr_od.batchslno = 1
              End If
         ElseIf ls_inst = 'Y' Then
              Select first_d_due,lon_c_instperd,lon_n_perd
              Into     :ldt_first,:ls_instmode,:ll_lnperd
              From     loan_mast
              Where branch_c_code = :gs_branch and
                        act_c_type      = :as_actype and
                        act_c_no          = :as_acno;
              If Sqlca.Sqlcode = -1 Then
                   f_message('FT-0189',Sqlca.Sqlerrtext)
                   lstr_od.batchslno = -1
                   Return lstr_od // Return Structure
              End If
              Select Ceil(months_between(:adt_prodt,:ldt_first)) Into :ll_mon from dual;
              If ll_mon > 0 Then
                   Select Nvl(ln_n_balance,0),Nvl(ln_n_instlamt,0),Nvl(ln_n_instlno,0)
                   Into     :ldl_actual,:ldl_inst,:ll_instno
                   From     loan_inst_sch
                   Where act_c_type = :as_actype and
                             act_c_no     = :as_acno and
                             ln_d_effdate = (Select Max(ln_d_effdate)
                                                           From     loan_inst_sch
                                                           Where act_c_type = :as_actype and
                                                                     act_c_no     = :as_acno and
                                                                     ln_d_effdate < :adt_prodt);
                   If Sqlca.Sqlcode = -1 Then
                        f_message('FT-0224', Sqlca.Sqlerrtext)
                        lstr_od.batchslno = -1
                        Return lstr_od
                   ElseIf Sqlca.Sqlcode = 100 Then
                        lstr_od.batchslno = 1
    *                    Return lstr_od*
                   End If
                   If adl_bal > ldl_actual Then
                        If ldl_inst > 0 Then
                             lstr_od.batchslno = (adl_bal - ldl_actual) / ldl_inst
                        End If
                   Else
                        lstr_od.batchslno = 1
                   End If     
                   If lstr_od.batchslno = 0 Then lstr_od.batchslno = 1
                   //For full OD
                   If ll_mon > ll_lnperd Then
                        lstr_od.batchslno = (ll_mon - ll_lnperd) + lstr_od.batchslno
                   End If
                   If ls_instmode = 'Q' Then
                        lstr_od.batchslno = lstr_od.batchslno * 3
                   ElseIf ls_instmode = 'H' Then
                        lstr_od.batchslno = lstr_od.batchslno * 6
                   ElseIf ls_instmode = 'Y' Then
                        lstr_od.batchslno = lstr_od.batchslno * 12
                   End If
                   Select :adt_prodt - :lstr_od.batchslno Into :lstr_od.cheqdt From dual;
                   If ls_instmode = 'M' Then
                        ll_odno = ll_instno - lstr_od.batchslno // To get OD Date
                        Select ln_d_effdate
                        Into     :lstr_od.cheqdt
                        From     loan_inst_sch
                        Where act_c_type = :as_actype and
                                  act_c_no     = :as_acno and
                                  ln_n_instlno = :ll_odno;
                        If Sqlca.Sqlcode = -1 Then
                             f_message('FT-0224', + Sqlca.Sqlerrtext)
                             lstr_od.batchslno = -1
                             Return lstr_od
                        End If
                   End If
              Else
                   lstr_od.batchslno = 1
              End If
         End If
    End if
    Return lstr_od
    Thanks in adance
    Arun M M

    What are you going to return the structure to? What I would normally use here if the code was going to be used by other PL/SQL would be a PL/SQL object type.
    However, if PowerBuilder is still in the equation (you're moving the logic to PL/SQL but keeping PowerBuilder for the GUI ), then you'll have to return something else, because PowerBuilder doesn't understand PL/SQL object types. Perhaps passing a REF CURSOR as a OUT argument and populating it from the procedure. PowerBuilder could then retrieve the result of the procedure using a stored procedure based DataWindow.

  • Building a Custom Workflow in Oracle ERP and then link it to AME

    I have a requirement to build a custom workflow in Oracle ERP which will then be attached to teh AME. Help appreciated on this. Wanted to k now if there is any genreal workflow already existing in oracle erp which I can start as a base and then build my details into it. This workflow will be called from a custom form in oracle ERP and the approval notification needs to follow the same Oracle ERP standards with notifications etc.

    Pl do not post duplicate threads - insert dont work in Workflow
    Srini

  • Best way for building an application main frame

    I'm about to program a desktop application.
    The main frame will have menus, toolbar, status bar etc.
    There will be a lot of interaction between the menus, toolbar buttons and other custom gui components (such as an editor).
    My question is which is the best way for building it.
    Cramming all the code in one class file is out of the question.
    I thought about making my own custom JFrame and add API functions like for it so different GUI elements can be accessed.
    Each component which will be manipulated will be in its own class file with the constructor accepting a reference to my custom JFrame object which it is contained in.
    Any suggestions on the matter would be of great help since I've never done extensive Swing programming before.
    P.S.
    The application makes extensive use of RMI.
    What considerations should I take into account (except using SwingUtilities.invokeLater()) ?

    Hi,
    I have replied on this subject somewhere else today but what I do is have one simple entry point where I just instanciate a JFrame.
    On that frame I have a main JPanel. On that panel I add new objects like JPanels, tabs etc.
    I keep each new panel in a separate source as it is easier when the application grows, and it will. That also means that several programers can work with the same application without interfearing each other.
    I hope you understand what I mean the the thing is to split up the code into several sources.
    It may not suit everyone but I found this approach to be the best for me.
    Klint

  • Oracle Fusion Order Demo Application For JDeveloper error

    HI,
    i try to run the (Oracle Fusion Order Demo Application For JDeveloper) Fusion Order Demo (FOD) is an end-to-end application sample :
    when i try to : Right click build.xml and choose Run Ant Target > buildAll . error coming
    Buildfile: C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\build.xml
    init:
    [javac] Compiling 1 source file to C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\classes
    setProperties:
    createDatabase:
    refreshSchema:
    BUILD FAILED
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\build.xml:51: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:100: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:63: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:28: C:\Oracle\Middleware\jdeveloper\wlserver_10.3\server\lib not found.
    Total time: 6 seconds
    how i can run the build.xml

    Hi,
    not quite sure the question is clear. The add cart command is a link defined in the JSPX file
    <af:commandLink partialSubmit="true"
    actionListener="#{shoppingCartBean.addItemToCart}"
    id="cl3">
    that points to
    public void addItemToCart(ActionEvent evt) {
    Map attributes = evt.getComponent().getAttributes();
    invokeUpdateOp(new Integer(attributes.get( PRODUCT_ID_COL )+ ""));
    in StoreFrontModule\StorefrontUI\src\oracle\fodemo\storefront\cart\view\managed\ShoppingCartBean.java . This is where you follow up then.
    +"how i can make Repetition for the items in home.jspx"+
    I can only assume you mean how to create the catalog items. Here I suggest you look at the demo source as this is what the demo is for. If you are new to ADF, I recommend that you first run a tutorial from here
    If you are on 11g R1: http://www.oracle.com/technetwork/developer-tools/jdev/overview/index-100269.html
    If you are on 11g R2: http://docs.oracle.com/cd/E18941_01/tutorials/toc.htm
    No demo can replace proper learning, to be honest
    Frank

  • Oracle.jbo.uicli.binding.JUCtrlActionBinding for method doesn't work

    I have a data control method called as listForums(). When i dropped this method on to a region it renders the data fine in af:selectOneChoice. But when the same method is dropped on to a simple jspx page it doesn't render the data.
    The difference in the console logs i see is that:
    In the case where it renders data it says:
    FINE: [103] DCUtil, returning:oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding, for listForums
    But in the case where it doesn't render the data it says:
    FINE: [106] DCUtil, returning:oracle.jbo.uicli.binding.JUCtrlActionBinding, for listForums
    Can some one give me any tips on how to make this work on a simple jspx page?

    I have a test case with me.But I found out the issue. The problem is, in the old projects which we have created long time back, we never have migrated the web.xml file. Hence it was failing. I have migrated the web.xml now. So it started working fine. (Build JDEVADF_MAIN_GENERIC_070416.1022.4501).
    Thanx for the response.

  • Oracle RAC and crossover cable for private network

    Hi,
    I have the following configuration: two database servers, each has four network cards, two for public network and two for private, cluster network. Each public card has own IP-address and both have virtual IP-address, defined in operation system (SLES-9) for redundancy. Because I have only two machines in the cluster I want to connect the two machines for private with crossover cable without switch. For redundancy I want to make two connections between machines. Is it at all possible? How should I defined all network interfaces and what should be included in /etc/hosts for properly work of Oracle cluster?
    Best Regards,
    Jacek

    Hi,
    You can build a RAC witch CROSSOVER, but the Oracle no homolog.
    As you have 4 cards, 2 to public (redundancy) and 2 to interconnect (redundancy) you need of a software to to make a TEAM, and create a card virtual that will have a IP address.
    Eder

  • How can Oracle Portal 11g improve ROI for a utility company

    I want to prepare a presentation regarding Oracle Portal 11g for a group of senior management in my company which sells electricity for commercial building. So i need to know from where i can find related papers that gives some practical examples for how implementing an Oracle Portal 11g can reduce operational costs and can improve ROI over time. So that if the company buy Oracle Portal 11g which costs for example X dollars then the company can cover this cost from reducing the operational costs in few years.
    Appreciate a lot any help and support.
    Best Regards
    John.

    The supported way to install Oracle Portal is available in Note [url https://support.oracle.com/epmos/faces/DocContentDisplay?id=1436807.1]1436807.1, 'How to Perform a New Installation of Oracle Portal 11g With Oracle Access Management 11g as Single Sign-On Solution ?'.
    A few remarks about this note :
    <li>The note mentions FMW 11.1.1.6 - FMW 11.1.1.7 is out already and should be used instead
    <li> The note mentions OAM 11.1.1.5 - use OAM 11.1.2 instead as it will allow you to consume a future patch for DAS support
    Thanks,
    EJ

  • Oracle JDev 10g with OAExt for Release 12 now on Metalink

    The much awaited Oracle Jdev 10g with OAExt for Release 12 is now available on metalink through patch 5856648. Note : This jdev build will only work with the Oracle Apps Release 12 env and should not be used against a 11.5.10 env.

    New features in reference of OAF also given in "Apps Technology Family RCD" (Note:404152.1)
    Thanks, Avaneesh

  • Oracle Pre-defined Business Flows for BF.015

    Hi All,
    I am new to ABF 1.4. I need to prepare a BF.015 (the old BP.080). In the guideline for preparing BF.015, the ABF Guide says -
    "The work product for this task is the Future Process Model. It consists of all the Oracle Business Flows being implemented including pre-defined Business Flows obtained from one of the Business Flow repositories...."
    Where can I access these predefined business flows from? For example, if I want to see Oracle's predefined flow diagram for Procure-to-Pay or Order-to-Cash, where can I find it?
    I would highly appreciate any knowledge you can share in this regard.
    Regards,
    Ari

    I've found this list of variables inside the "Oracle® Business Intelligence Answers, Delivers, and Interactive Dashboards User Guide"
    system.productVersion = 10.1.3.2 (Build 091506.1900)
    system.currentTime = 2006-9-21 14:1:35
    session.locale = en-gb
    session.language = en
    session.rtl = false
    session.timeZone = Unknown Time Zone
    session.loginTime = 2006-9-21 14:0:17
    session.logoutTime = 2006-9-21 16:0:17
    session.lastAccessTime = 2006-9-21 14:01:35
    session.currentUser = administrator
    user.id = administrator
    user.displayName = administrator
    user.homeDirectory = /users/administrator
    dashboard.currentPage = test page name
    dashboard.xml = the dashboard XML
    Hope is usefull.
    Bye,
    Pierfrancesco

  • Oracle BPEL - Does not cater for not null columns and use of "default".

    Oracle BPEL - Does not cater for not null columns and use of "default".
    BPEL fails with message:
    ORA-01400: cannot insert NULL into ("EDDB"."SEISMIC_LINES"."COORD_SYSTEM_ID")
    But SQL*PLUS command works:
    INSERT into EDDB.SEISMIC_LINES
    (etc)
    regards
    Allan Ford
    Analyst / Programmer - IT Application Services, IT Services, Shared Business Services
    Santos Ltd
    Level 4, 91 King William Street, Adelaide SA 5000
    Phone: 08 8224 7944 Fax: 08 8218 5320
    Email: [email protected]

    note: BPEL keeps it's own "offline" copy of table and database items. A column that is marked not null in the database can be marked as nullable in this area. (if you kmow that a trigger is going to cater for this ..)
    One workaround is to use a trigger to provide value rather than use the column default ..

  • [svn] 3120: When you point Flex Builder at a local sandbox trunk build, it couldn' t generate the html-templates folder correctly for new projects so we moved all the html templates up one level and removed the html-templates directory and adjusted build

    Revision: 3120
    Author: [email protected]
    Date: 2008-09-05 10:44:10 -0700 (Fri, 05 Sep 2008)
    Log Message:
    When you point Flex Builder at a local sandbox trunk build, it couldn't generate the html-templates folder correctly for new projects so we moved all the html templates up one level and removed the html-templates directory and adjusted build.xml's to accommodate the directory change
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/webapps/webtier/build.xml
    Added Paths:
    flex/sdk/trunk/templates/client-side-detection/
    flex/sdk/trunk/templates/client-side-detection/AC_OETags.js
    flex/sdk/trunk/templates/client-side-detection/index.template.html
    flex/sdk/trunk/templates/client-side-detection-with-history/
    flex/sdk/trunk/templates/client-side-detection-with-history/AC_OETags.js
    flex/sdk/trunk/templates/client-side-detection-with-history/history/
    flex/sdk/trunk/templates/client-side-detection-with-history/history/history.css
    flex/sdk/trunk/templates/client-side-detection-with-history/history/history.js
    flex/sdk/trunk/templates/client-side-detection-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/client-side-detection-with-history/index.template.html
    flex/sdk/trunk/templates/express-installation/
    flex/sdk/trunk/templates/express-installation/AC_OETags.js
    flex/sdk/trunk/templates/express-installation/index.template.html
    flex/sdk/trunk/templates/express-installation/playerProductInstall.swf
    flex/sdk/trunk/templates/express-installation-with-history/
    flex/sdk/trunk/templates/express-installation-with-history/AC_OETags.js
    flex/sdk/trunk/templates/express-installation-with-history/history/
    flex/sdk/trunk/templates/express-installation-with-history/history/history.css
    flex/sdk/trunk/templates/express-installation-with-history/history/history.js
    flex/sdk/trunk/templates/express-installation-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/express-installation-with-history/index.template.html
    flex/sdk/trunk/templates/express-installation-with-history/playerProductInstall.swf
    flex/sdk/trunk/templates/metadata/
    flex/sdk/trunk/templates/metadata/AC_OETags.js
    flex/sdk/trunk/templates/metadata/readme.txt
    flex/sdk/trunk/templates/no-player-detection/
    flex/sdk/trunk/templates/no-player-detection/AC_OETags.js
    flex/sdk/trunk/templates/no-player-detection/index.template.html
    flex/sdk/trunk/templates/no-player-detection-with-history/
    flex/sdk/trunk/templates/no-player-detection-with-history/AC_OETags.js
    flex/sdk/trunk/templates/no-player-detection-with-history/history/
    flex/sdk/trunk/templates/no-player-detection-with-history/history/history.css
    flex/sdk/trunk/templates/no-player-detection-with-history/history/history.js
    flex/sdk/trunk/templates/no-player-detection-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/no-player-detection-with-history/index.template.html
    Removed Paths:
    flex/sdk/trunk/templates/html-templates/

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

Maybe you are looking for

  • Cannot activate iPhone 4 as cannot connect to iTunes store!

    Just got my new iphone 4 but cannot use it as my main PC cannot connect to the itunes store. I tried my old laptop, but that wouldnt recognise the iphone4. So I upgraded the laptop to the latest version of itunes, and now that cannot connect to the s

  • EHP4 installation - problem with stack files

    Hello all, I installed ERP 6.0 EHP4 ready and would like to install EHP4 with sapehpi. I have a problem with my XML stack files because it contains kernel 69 for all os and db. This stack file has been generated in the MOPZ and MOPZ don't ask me to s

  • FCE project suddenly won't open in FCE but it will open in FCP???

    I've been working on a FCE 3.5 project for a couple weeks. Everyday I save the project under a differently dated name. I finished working on the file for this morning and saved it before closing. When I went to open it this afternoon, it suddenly won

  • Loading Exception.jar from NERP

    Hi everyone, I am getting XI started on my sytem first time but i have had some problems. After i try to start Integration repository , Java webstart is starting and immediately i get this message it says " Loading Exception.jar from NERP". Read 53k

  • After updating to Yosemite, MacBook Pro freezes every 5 seconds and is unusable.

    Macbook pro was working perfectly fine for first day after update, but after a day it freezes and shows the rainbow wheel every 5 seconds so that I can't even use it. I've noticed when it logs in and I have two options of my accnt and guest, then whe