BC4J tags

Hi all
I have two Fields in my database e.g. Street Number and Street Address, I would like to Concatenate these two fields using BC4J tags to get Full address Field and it wold not have any effect on the database level.
Please can some one tell me how to achieve this. I know how to do it using the SQL, PL/SQL and also javascript but I can not figure out how to do it with BC4J.
Thank you for Helping.

There are a number of options to accomplish this. I recommend creating a "calculated" attribute in the view object and changing the "get" method to concatonate your two strings (or number and string in your case). ...
1) In the view object Dialog, create a new attribute (maybe called FullAddress) and make it updateable Never.
2) In the Java tab of the View object dialog, check generate java file and generate accessors.
3) Open the ViewObjectRowImpl.java file (where ViewObject is probabaly the name of your view object). and find the section that will look like:
public String getFullAddress()
return (String)getAttributeInternal(Phone);
or something similar..
Change the return to read like this psuedocode:
return (Number)getStreetNumber().toString+(String)getStreetAddress();

Similar Messages

  • Update the database using bc4j tag

    hi
    i am new to struts based bc4j tag.
    i have created the one application using the struts based jsp for business component.
    this wizard create a web application , with update , delete facility record. and number of pages like :
    1) DataEditComponent.jsp
    2) DataQueryComponent.jsp
    3) DataScrollerComponent.jsp
    4) DataTransacationComponet.jsp
    5) viewnameBrowse.jsp
    6) viewnameEdit.jsp
    7) viewnameQuery.jsp
    8) description.html
    9) content.html
    etc...
    and number of java files
    1) viewnameBrowsAction.java
    2) viewnameEditAction.java
    3) viewnameForm.java
    5) viewnameFormBeaninfo.java
    6) viewnameQueryAction.java
    and
    applicationResource.properties and struts-config.xml.
    this application run sucessfully,
    but when i clicked on the edit and after change the record and finally update the record internally it update the record in the view object or application module.
    but it dont update the data base.
    also, the DataTransacationComponent.jsp page display the link like
    commit and Rollback
    when i click on the commit link it invoked the appropriate java file (Transaction.java) which is provided by the oracle itself.
    but it dosent update the record in the database.
    last few days i have try to identify , any other requirement which one i was missing
    so, please help me

    I have a form with form elements like text box,list box with multiple values. I want to insert this using xsql and also update the same. Is there any method by which i can do this by just submitting the form to xsql as posted xml document with out using xsl as transform attribute and posting the xml with ROWSET/ROW form directly which includes my form element values as sub nodes. The easy way of doing is create a view (either simple or object) and write an INSTEAD OF trigger on the view. You can keep insert-request in the xsql and put logic in the trigger whether to update or insert the record.

  • BC4J tag - add new record only in child table using join query

    Hi,
    I have developed the struts base jsp for BC4J component application using jdeveloper wizard.
    i have first developed the BC4J component. using emp table and dept table,
    also developed the association between emp and dept , and create view object using created association.
    when i haae developed the the struts base jsp for BC4J applicaion using alerady created view object. it creates automatically DataEditComponent.jsp and DataTableComponent.jsp and etc...
    and when i want to add new row or record it automatically add the entry in both table ,
    in above scenario i have used dept as master and emp as child table.
    what is the solution , if i want to add row or record in only emp table.
    please help me

    Hi Reetesh,
    I have written following code into the ADD ROW button
    System.out.println("Coming in Click Event");
    OAApplicationModuleImpl am = (OAApplicationModuleImpl) pageContext.getApplicationModule(webBean);
    OAWebBean innerTablebean = (OAWebBean)webBean.findChildRecursive("region12");
    OATableBean innerTable = (OATableBean)webBean.findChildRecursive("innerTablebean");
    OAInnerDataObjectEnumerator enum = new OAInnerDataObjectEnumerator(pageContext,innerTablebean);
    while(enum.hasMoreElements())
    RowSet innerRowSet = (RowSet) enum.nextElement();
    Row []rowsInRange = innerRowSet.getAllRowsInRange();
    OARow newRow = (OARow) innerRowSet.createRow();
    OADBTransaction dbt = am.getOADBTransaction();
    Number b = dbt.getSequenceValue("PK_XX_BATCH_PROGRAM_PARAMETERS");
    newRow.setAttribute("ProgramId", b);
    newRow.setAttribute("ProgramParmId",b);
    newRow.setAttribute("ParameterName",new String(""));
    newRow.setAttribute("ParameterDataType",new String(""));
    newRow.setAttribute("ParameterInOutType",new String(""));
    innerRowSet.insertRow(newRow);
    Now the problem occurs only when there are more than one rows in parent table... As many rows are there in parent table that many times the rows are being added.
    With Regards,
    Sandip

  • 9i; UIX  BC4J Tags; How to show all retrieved rows using bc4juix:Table .. ?

    seems <bc4juix:Table ....> tag by default shows the rows one by
    one. I just need to know any attribute/way to change the default
    to show all rows, or more than one row in each iteration.

    even <jbo:DataTable...> only shows one row. I'd to show all
    rows retrieved. Please advice.

  • ' Include ... ' tag in a page which use UIX template is not work! Help!

    I've used JDev9.0.4 and UIX.
    I want to use include and template at the same time.
    So I've put a 'globalHeader' and a 'tabBar' in 'Test.uit'.
    And I've made 'TestUIT.uix' which used 'Test.uit' as a template include 'Table.uix'.
    But 'Table.uix' included by 'TestUIT.uix' has been ignored and has not worked!!
    Is this problem oriented from my fault or a bug of jdev904?
    My codes like this.
    -->
    Test.uit
    <?xml version="1.0" encoding="windows-949"?>
    <templateDefinition xmlns="http://xmlns.oracle.com/uix/ui"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:data="http://xmlns.oracle.com/uix/ui"
    targetNamespace="http://www.example.org/demo/templates"
    localName="oplBaseLayout">
    <content>
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui"
    xmlns:data="http://xmlns.oracle.com/uix/ui">
    <provider>
    </provider>
    <contents>
    <pageLayout>
    <tabs>
    <include node="../Component/MenuBar/TabBar.uix"/>
    </tabs>
    <pageHeader>
    <include node="../Component/MenuBar/GlobalHeader.uix"/>
    </pageHeader>
    <contents>
    </contents>
    </pageLayout>
    </contents>
    </dataScope>
    </content>
    </templateDefinition>
    TestUIT.uix
    <?xml version="1.0" encoding="windows-949"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:data="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40"
    xmlns:bc4j="http://xmlns.oracle.com/uix/bc4j"
    xmlns:myTemplate="http://www.example.org/demo/templates">
    <bc4j:registryDef>
    <bc4j:rootAppModuleDef name="OligoAppModule" definition="View.OplModule"
    releaseMode="stateful">
    <bc4j:viewObjectDef name="Oligo" rangeSize="3"/>
    </bc4j:rootAppModuleDef>
    </bc4j:registryDef>
    <templates xmlns="http://xmlns.oracle.com/uix/ui">
    <templateImport source="Test.uit"/>
    </templates>
    <content>
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
    <provider/>
    <contents>
    <document>
    <metaContainer>
    <head title="UITTest"/>
    </metaContainer>
    <contents>
    <body>
    <contents>
    <myTemplate:oplBaseLayout title="UITTest">
    <contents>
    <bc4j:viewObjectScope name="Oligo">
    <contents>
    <include node="Table.uix"/> </contents>
    </bc4j:viewObjectScope>
    </contents>
    </myTemplate:oplBaseLayout>
    </contents>
    </body>
    </contents>
    </document>
    </contents>
    </dataScope>
    </content>
    <handlers/>
    </page>

    Hi -
    But 'Table.uix' included by 'TestUIT.uix' has been
    ignored and has not worked!!So is the problem that you don't see the contents of Table.uix? Are any error messages logged? Do you see the contents of the GlobalHeader.uix and TabBar.uix includes?
    It would be very helpful if you could put together a minimal testcase which reproduces the problem (no BC4J tags) that we could use to test the problem out over here.
    Andy

  • Problems with BC4J - jdk version

    Why BC4J Tag Libs uses an old version of jdk (com.sun.java.util)and where can I find it?
    Thanks for your answers.

    Bob, you're not going to believe this but I must confess.  As I was online with support, he had me try to reinstall 5.5 so I could tell him the exact error message I was getting.  Well, I suddenly realized that there were more options as to which software I was trying to upgrade and that I had chosen the wrong one.  Once I put in the correct software selection it installed.  Now, however, there are several error messages that came up at the end of the installation.  So I have to deal with that now.  I briefly ran Premiere just to see if it would work and it did but I am sure there are functions that will not work until fixed.  What next.  The good news is that the serial number problem is over, my bad.
    Thank you for your interest, Ted

  • How to define bc4j:bc4j:rootAppModuleDef in 10g

    I write my uix file in 10g as following:
    <?xml version="1.0" encoding="GBK"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40"
    xmlns:bc4j="http://xmlns.oracle.com/uix/bc4j"
    expressionLanguage="el">
    <bc4j:registryDef>
    <bc4j:rootAppModuleDef name="VPSAppModule"
    definition="vps.model.VPSAppModule"
    releaseMode="stateful">
    </bc4j:rootAppModuleDef>
    </bc4j:registryDef>
    <content>
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
    i meet the error message:
    Warning(11,51): login.uix: Parsing error, line 11, column 51: Could not parse value of attribute: definition
    i know it will work in jdev903.
    Would you help me.thanks.

    Hi Qinghua Guo,
    The problem you hit is that you do not have a CPX file in your project with references to your module, or that your definition is incorrectly defined. It should be "definition=<name_of_cpx_file>.<name_of_datacontrol>", which in your case would look something like this:
    "definition=<name_of_cpx_file>.<model_VPSAppModule>"
    If you are building a new application I strongly suggest that you try to use the new ADF Data bindings instead of the old BC4J specific tags. Please refer to the ADF UIX tutorial on OTN for more information (http://otn.oracle.com/products/jdev/collateral/tutorials/9050/adfuix_tut.html).
    If you still want to use the old BC4J tags there is currently a bug filed against the CPX file in the JDev 10g Preview, which prevents you from manually creating a CPX file or adding a bc4j AppModule to an already existing CPX file. The workaround is to use the Data Control Palette to DAD a component on to your page. This will create a new cpx file in your project. You can then remove the component and continue develop your application with the old BC4j tags.
    Thanks,
    Jonas
    JDev Team

  • UIX/XML BC4J - Controlling page flow in event handlers

    We have an event handler that executes some data processing using bc4j tags, and need to redirect the flow to another page, based on the value of some parameters. For example, we have a checkbox Prepare for another insert, and we want to check for its state in the event handler to determine which page to display.
    We tried the following code
    UIX page event handler:
    <event name="saveEvent" >
         <bc4j:findRootAppModule name="TipoPunteggioViewAppModule" >
              <bc4j:findViewObject name="TipoPunteggioView" >
                   <bc4j:findRow name="CreateTipoPunteggioView" >
                        <bc4j:setPageProperty name="keyTipoPunteggio" >
                             <bc4j:stringKey />
                        </bc4j:setPageProperty>
                        <bc4j:setAttribute name="FlgObsoleto" />
                        <bc4j:setAttribute name="Firma" />
                        <bc4j:setAttribute name="TitTipoPunteggio" />
                        <bc4j:insertRow/>
                        <bc4j:commit/>
                        <bc4j:executeQuery/>
                        <ctrl:method class="com.websiteitalia.valutazioni.handlers.Handlers"
                             method="anotherInsertEventHandler" />
                   </bc4j:findRow>
              </bc4j:findViewObject>
         </bc4j:findRootAppModule>
    </event>
    Java method event handler:
    public static EventResult anotherInsertEventHandler(BajaContext bCtx,
                                       Page page,
                                       PageEvent event) {
         // AnotherInsert is the name of the checkbox on the page
    if ("on".equals(event.getParameter("AnotherInsert"))) {
              return new EventResult(page);
         } else {
              return new EventResult(new Page("ListPage"));
    When we return the same page, things work fine, but when we return another page we get an ArrayIndexOutOfBoundException. We have also noticed that if we return a simple page, without data scopes and bc4j tags, we get the correct result. We are probably wrong in the manner we do the redirect inside of a java event handler, because seems that the page we return is not completely processed.
    Can anyone explain the available techniques to control the page flow, using UIX XML tags or Java APIs alone or both of these together? For example, how can be replicated the <ctrl:go> behavior using Java APIs?

    The UIX page works correctly if loaded directly, the error takes place only when we redirect in this manner from a page that has a different application module / view object scopes. In fact, when we redirect to a page that have the same scopes of the first (or when the second page has not scopes at all the simple page) the error doesnt occur. Thats why we suppose that some step of the page rendering process arent executed correctly, it seems that the new page still finds some of the old page (the scopes)..
    To redirect to a page from a java event handler we have returned an event result with the next page (see above post for a code snippet), is this the correct way? Can we simulate the ctrl:go tag from the java code (with the redirect=true option)? There are any other?

  • Right-justify number columns in BC4J

    I have several JSP pages that I am using BC4J tags in. I want to right justify all dollar columns. In addition, I want some columns to have a default width regardless of the data in them. For instance, even if a column has 'Test' in it, I want it to have a display width of 50.
    How can I accomplish these two things?
    Thanks,
    Brett

    Sounds like you might want to add properties to the attributes in your VO. If you set up some properties to hold values for alignment and width for each column, you can just interogate these values when you render the JSP and writre them into the HTML.
    Matt

  • BC4J JSP and XHTML

    I would like to use (Struts-based) JSP for Business Components in a project where I have to generate XHTML.
    The BC4J tag library generates attribute values which contain the ampersand character ("&"). For example, the UrlEvent-Tag generates URLs with HTML-parameters separated by the ampersand character.
    But this is not XHTML conform (see http://www.w3.org/TR/xhtml1/ section C.12). Ampersands used in a document that are to be treated as literal characters must be expressed themselves as an entity reference (e.g. "&amp;")
    Is there a chance to change this in future releases? We would need this change very quickly. Otherwise we cannot use BC4J in our project.
    Michael Seyfried
    [email protected]

    Michael,
    Thank you for your report.
    I filed a bug against the BC4J tag library to support XHTML. Bug 2645909.
    This will be fix in a future release.
    Meanwhile your options are:
    1) Not using the UrlEvent tag and build the url using the JboEvent, JboEventVo, jboRowKey, amId and currentPath parameters.
    2) Extend the current UrlEvent tag implementation to provide this functionality.
    The sources is provided for all these tags. You can open it from JDev when asking for the class "oracle.jbo.html.jsp.datatags.UrlEventTag" or look into <JDEV_HOME>\BC4J\src\bc4jhtmlsrc.zip for UrlEventTag.java.
    Charles.

  • Struts bc4j

    Sometimes i got the following error:
    oracle.jbo.PCollException: JBO-28012: Could not add key column keycont to table PS_KimModule_1
    ..... at oracle.jbo.pcoll.OraclePersistManager.createKeyInfoTable(....)
    in conjunction with:
    ORA-00054:resource busy and ayquire with NOWAIT specified
    This is within a STRUTS/JSP/BC4J application.
    The BC4J Application Module is named KimModule.
    The error occures when querying a set of 1500 rows from a table and presenting the result as a table.
    No Bc4J Tags are used.
    BTW: i find the design of BC4J a bad choice, since it relies on the creation of (randomly) sequentially generated tables E.g. PS_KimModule_1

    This means that you have put the <controller> element in the wrong order in the XML file. If you look in the struts-config_1_1.dtd, you'll see declared there the expected order of child elements for the <struts-config> element. You need to respect this order correctly or your XML file is not valid.

  • TemplateUIExtension and BC4J

    Hy, I have write some new composants with template.
    And grouping all with templateLibrary.
    <?xml version="1.0" encoding="windows-1252" ?>
    <templateLibrary xmlns="http://xmlns.oracle.com/uix/ui" >
      <templateImport source="link.uit" />
      <templateImport source="label.uit" />
    </templateLibrary>And now I would like to import template file for using my new component in JAVA API.
    I have create my own UIExtension, and use here
          <param-name>oracle.cabo.ui.UIExtensions</param-name>
          <param-value>oracle.cabo.data.jbo.ui.JboUIExtension,myPckg.myUIExtension</param-value>It's work fine but parser make a error on loading OC4J with template use BC4J tag.
    All my template don't use BC4J work but with BC4J a have a parsing error.
    However these templates work well if I import them with the standrad method.
      <templates xmlns="http://xmlns.oracle.com/uix/ui">
        <templateImport source="template/library.uit"/>
      </templates>Thanks you for your help,
    Nathanael

    can you please tell us what the parsing errors are?
    This might be caused by having a UIExtention that depends on another UIExtension. I will find out if that is supported.

  • BC4J: NullPointerException in Tomcat 4.1.24, but in OC4J it works fine

    Dear reader,
    I am having a weird exception in tomcat, which does not occur in the OC4J server (shipped with JDeveloper 9.0.3.1).
    I have a web-application built with BC4J/struts (struts final release) and this works fine in the OC4J server. In Tomcat it works fine until a certain row does not contain data (it looks like that). The code in the jsp where it goes wrong is the following:
    <jbo:RowsetIterate datasource="ConsultantModule.ConsultantGeneralView" changecurrentrow="true" userange="false">
    <jbo:Row id="generalRow" datasource="ConsultantModule.ConsultantGeneralView" action="current">
    <jbo:Row id="allocatiesRow" datasource="ConsultantModule.AllocatieRegistratiesView" action="current">
    The last row it goes wrong if there is no data in it (in OC4J it just works fine there). I've also looked up the generated servlet in tomcat, and the following lines are responsible (for the last jbo:Row tag):
    oracle.jbo.Row allocatiesRow = null;
    jspxallocatiesRow_1 = allocatiesRow;
    oracle.jbo.html.jsp.datatags.RowTag jspxth_jbo_Row_2 = new oracle.jbo.html.jsp.datatags.RowTag();
    jspxth_jbo_Row_2.setPageContext(pageContext); jspxth_jbo_Row_2.setParent(_jspx_th_jbo_Row_1); jspxth_jbo_Row_2.setId("allocatiesRow"); jspxth_jbo_Row_2.setDatasource("ConsultantModule.AllocatieRegistratiesView");
    jspxth_jbo_Row_2.setAction("current");
    int jspxeval_jbo_Row_2 = jspxth_jbo_Row_2.doStartTag(); // This line throws a NullPointerException in Tomcat
    Has anyone encountered a similar problem? And is it a bug in the tag libraries, or is it a bug in Tomcat? And most importantly can it be solved, so that I can still deploy to Tomcat.
    Thanks a lot for your time!
    Regards Martijn

    [UPDATE]
    I've done some more research to the problem of the NullPointerException in Tomcat.
    It seems to happen only when a certain View does not contain rows (no data, it is empty).
    Once the <jbo:Row id="anyID" ... > defines a row based on that view, this causes Tomcat to crash on the doStartTag, in the RowTag class. OC4J does not crash. The source tomcat crashes on in the RowTag class is:
       public int doStartTag() throws JspException
          initialize();
          handleAction();
          pageContext.setAttribute(id , row); // NULLPOINTER EXCEPTION
          return Tag.EVAL_BODY_INCLUDE;
       }Apparently row is null, which is the case as I know there is no row, which causes an exception (as per the setAttribute definition of pageContext).
    It seems that OC4J does never execute this tag, or it should have crashed as well, wouldn't it? As in the handleAction() method, the action 'current' is defined as follows:
    else
    if (ACTION_ROW_CURRENT.equalsIgnoreCase(sAction))
             row = rs.getCurrentRow();
             if (row == null)
                row = rs.first();
                if (row == null)
                   rs.executeQuery();
                   row = rs.first();
          } The row must always be null, as the view doesn't contain any rows (not even after executeQuery()).
    Can someone please have a look at this? I really need to know whether this is indeed a Tomcat bug, BC4J tag library bug or an OC4J bug (perhaps the code it generates is too kind to developers, and prevents errors, compared to normal specifications of jsp/servlets?).
    Using the <jbo:RowSetIterate ..> tag in front of the <jbo:Row ..> tag (empty one) prevents the crash (also in Tomcat).
    If you require the Tomcat and/or OC4J generated java-code to see what happens, please let me know. But it is rather large to paste it here.
    Thanks a lot for your time!
    Regards Martijn

  • UIX and hGrid Component with BC4J support

    Hi!
    I heard, that UIX Developer Team developing hGrid component with BC4J support. Does anyone know when it's ready?
    Thanks

    I'm not sure exactly what you're asking, but the uix bc4j tags have been deprecated in favor of ADF, so there will not be a uix bc4j hgrid tag. For 10g production there will be an hgrid in the data binding palette.

  • Looking documentation about filling comboboxes in bc4j JSP´s edit pages.

    Im looking documentation about filling comboboxes in bc4j JSP pages (bc4j forms). My case is as follows:
    I have an edit JSP form. This edit jsp form needs two comboboxes. The values in the second combo box depends of the choice selected in the first combo box. Both combos are bounded to its respective tables.
    How can i do that?
    Thank u.

    It is possible to use Javascript to refresh, but the code in Javascript is not entirely trivial.
    Here is an example of a dependent select control which uses javascript to refresh the dependent list.
    One use BC4J tags to populate a similar dependent list dynamically:
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script type="text/javascript">
    // Create arrays containing state cities
    // Note: These arrays could be created dynamically
    var arrStates, arrFlorida, arrNewYork, arrTennessee
    arrFlorida = ["Daytona Beach", "Miami", "Orlando", "Tampa"]
    arrNewYork = ["Albany","New York", "Oakland", "Rochester"]
    arrTennessee = ["Gatlinburg", "Knoxville", "Memphis", "Nashville"]
    arrStates =[arrFlorida, arrNewYork, arrTennessee]
    // Function to handle dynamically altering the contents of the City List box
    function handleChange(newDisplay)
    {   var StateSelect, CitySelect, NumEntries, i
    StateSelect = document.frm.States
    CitySelect = document.frm.Cities
    // Delete all entries in the cities list box
    for (i = CitySelect.length; i > 0; i--)
    CitySelect.options[i-1] = null
    // Add comment option to City List box
    CitySelect.options[0] = new Option("-- Select City --",0)
    // If state is selected add its cities to the City List box
    if (newDisplay >= 0)
    NumEntries = arrStates[newDisplay].length
    for (i = 1; i <= NumEntries; i++)
    CitySelect.options[i] = new Option((arrStates[newDisplay])[i-1],(i))
    CitySelect.selectedIndex = 0
    </script>
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <p>This is a test.. </p>
    <p>  </p>
    <form name="frm" action="">
    States:
    <select name="States" onChange="handleChange(this[this.selectedIndex].value)">
    <option value="-1">-- Select State --
    <option value="0">Florida
    <option value="1">New York
    <option value="2">Tennessee
    </select>
    <p>
    Cities:
    <select name="Cities">
    <option value="-1">-- Select City --
    <option>
    <option>
    <option>
    <option>
    </select>
    <script type="text/javascript">
    handleChange(-1)
    </script>
    </form>
    </body>
    </body>
    </html>

Maybe you are looking for

  • Why are the icons on my home page only in black and white?

    This is a new BB Curve 8900 and at one time the icons were in color.  Now only in B&W?  How do I turn the color back on? Solved! Go to Solution.

  • Deleting Palm Tree Icon - Missing Photos

    I searched for a bit here but didn't find an exact answer to my question, so I thought I'd post a "fix" for an oddity that I ran into.  I was recently using iPhoto (9.4.2) to edit some photos I had just imported on my iMac (OS X 10.8.2) and for some

  • Photoshop CC still shows as a trial

    I have just purchased a one year subscription for Photoshop CC and have downloaded the trial version as requested. Initially it asked me to sign in which I did and it then asked me for a product key which I do not have. Now  each time I open Photosho

  • Oracle 11i backup and recovery!

    Hi to all OracleForum fanatics.. can anyone help me to create and execute backing up and recovery in oracle application 11i with 9.2.0.6 database.. Im newbie in oracle apps.. thanks Cheers! BJCDR

  • Can't log in to account. My password doesn't work.

    TB opens, can read mail but can not delete mail. TB keeps asking for my gmail password, which I enter but TB will not open. Have been trying for several day to open TB to no avail. TB says that a new password has been sent to my gmail account, howeve