ADF ViewObject Clarifications

Hello,
I'm facing strange behaviours in ADF viewobject. I have a viewobject PropertyView1. I need to list the properties only for a particular user. And also within that , I need to display based on the property status.
So I have a dataaction (DA1) which binds to a app module function ,
ViewObject vo = getPropertyView1();
vo.setWhereClause(" Property.USERID = :1 ");
vo.setWhereClauseParam(0,new Long(uid));
vo.executeQuery();
This sets the view object to display only the properties of a particular user. This DA1 forwards to a datapage (DP1) on "Success", The DP1 contains the ADF Read-Only table for the propertyview1 view instance.
I have another function which should display only the "new" properties for a particular user.
Another data action (DA2) which contains the function,
ViewObject vo = getPropertyView1();
vo.setWhereClause(" Property.PROPSTATUS = :1 and Property.LAGENT = :2 ");
vo.setWhereClauseParam(0,status1);
vo.setWhereClauseParam(1,new Integer(uid));
vo.executeQuery();
This displays the user properties which are "New". Similar to the first data action, DA2 -> DP2 on success.
The following Sequence of actions gives strange behaviours every time,
1. Execute the first dataaction (DA1) . It works properly , Provides me with correct list of properties.
2. Execute Second dataaction (DA2). There are no rows which match the criteria. So I get "No Records Found" in Dp2.
3. execute first data action again, It provides me No records found as well as Errors.
The errors are,
" Bind variable does'nt exist"
Somehow there are two bind parameters set for DA1, while there is only one bind parameter in my where clause. And this happens only on the second time. I'm able to ececute DA1 correctly on the first time.
Also, Pelase let me know if I Have two create two view instances for these types of queries. Or Is there a way to revert back to all the rows originally in the propertyview1 view object (The view object has no where clauses in the definition), after executing the DA2 or DA1 dataction. I hope i was clear in the above questions.
Thanks a lot.

Just a guess: call vo.setWhereClauseParams(null) before setting new parameters.
From the VO API Doc:
Note that calling setWhereClause() does not clear the previous settings of WHERE clause parameters. To reset WHERE clause parameters in the middle tier, call ViewObjectImpl.setWhereClauseParams(Object[]) explicitly with a null value. For example:
vo.setWhereClauseParams(null);

Similar Messages

  • ADF - ViewObject (with Bind Variable) Bind to Table- JDeveloper 10.1.3 EA

    Hi all,
    1.- This is the situation:
    In JDeveloper 10g 10.1.3 EA I have two JSP JSF Pages with bind automatically coponents (backing bean).
    - In the first page I can select a value from a list. Then, when I press the "Accept" ADF Command Button, the selected value is stored in a property called "rutEntidad" of a Session Managed Bean and the Flow Control is passed to the second page.
    - In the second page I have an ADF Table (called tablePolizas) bind to a ViewObject (I drop the ViewObject from the Data Control Palette to the Page - ADF Read-Only Table ). The ViewObject has a Bind Variable called RUT_ENTIDAD. When this page is loaded, value in the rutEntidad property of Session Managed Bean is passed to the ViewObject in order the ADF Table show filtered data . Also in this page there is a "back" ADF Command Button to the first page. The filter mechanism is performed in the getTablePolizas method in the backing bean of the second page, like this:
    //**** The backing bean of the second page *****
    package cl.bicevida.view.backing;
    public class CrearUsuario {
    private CoreTable tablePolizas;
    public CoreTable getTablePolizas() {
    DCBindingContainer dcbc;
    DCControlBinding cb;
    String rutEntidad;
    FacesContext ctx =FacesContext.getCurrentInstance();
    ValueBinding vb =
    ctx.getApplication().createValueBinding("#{SessionManager.rutEntidad}");
    rutEntidad = vb.getValue(ctx).toString();
    dcbc = this.getBindingContainer();
    cb = dcbc.findCtrlBinding("VoPolizasAsociadasEntidadExterna1");
    ViewObject vo = cb.getViewObject();
    vo.setNamedWhereClauseParam("RUT_ENTIDAD", rutEntidad);
    vo.executeQuery();
    return tablePolizas;
    2.- And this is the problem:
    The first time all works fine... then I press the "back" ADF Command Button to the first page (and NOT the back button of the browser). The second time, if the numbers of rows returned by the ViewObject is different than the first time, the application throws this message (but not crash):
    validation - JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was oracle.jbo.Key[1 ]
    validation - JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was oracle.jbo.Key[1 ]
    Well, I had read the "Generic Approach for Back-Button-Friendly Web Rowset Paging" article of Steve Muench in http://www.oracle.com/technology/products/jdev/tips/muench/paging/index.html
    but I think here have another problem.
    3.- The questions:
    Which is the cause of this problem?
    How I can solve it?
    What another way I can programmatic pass a parameter to a ViewObject connected to a table?
    Thanks!!!

    Another thing: the used strategy to obtain a binding container is explained by Steve Muench http://www.oracle.com/technology/products/jdev/tips/muench/1013eabinding/index.html:
    Next, you can use JDeveloper's Overview tab of the faces-config.xml file editor to configure a managed property. Define the managed property name as bindingContainer to match the property in your bean, and set the class to the fully-qualified name of the DCBindingContainer class. You can use the (Browse...) button to quickly locate the class using the new JDeveloper 10.1.3 class browser. Just type in the first few letters of the DCBindingContainer name, and then select the class. Edit the new managed property and set its Value to the JSF EL expression: #{bindings}.
    ************************

  • Format values: DB View or anything in ADF ViewObject?

    Hi.
    I have a DB table with a field called PERSON_ID, which is the ID of one person.My JDeveloper version is 11.1.1.7.0
    With an Oracle funcion in DB, I pass this ID and get Mr. John Smith Smith ready to show in the application.
    Other field in the table is AGE, with a raw simple number.
    I need to generate an ADF table, and I need to show the formatted person name and his/her age.
    I have tried these two approaches to get the solution:
    Generate a calculated attribute in the ViewObject, and try to invoke the DB function: obviosly, if this was possible, I did something wrong, because it didn't work. If something like this was possible, it would be the best solution.
    DB View: This works, but I can't commit data in this application window.
    Create a DB View with formatted name, age, etc.
    Map it in an EO and VO
    Generate an ADF table from this VO
    When the above form is filled, insert the form data in DB Table.
    Commit the new row
    Reload the ADF table.
    How can I solve this issue?
    Any suggestion is very appreciated
    Thanks in advance. Regards

    . I have tried these two approaches to get the solution:
    Generate a calculated attribute in the ViewObject, and try to invoke the DB function: obviosly, if this was possible, I did something wrong, because it didn't work. If something like this was possible, it would be the best solution.
    Did you follow this: http://docs.oracle.com/cd/E28280_01/web.1111/b31974/bcquerying.htm#CHDHJHBI
    What you mean by "it didn't work"? Is there any error?
    Another approach is to change query mode from normal to expert and directly add new column to sql query, but in this case you will need to manually synchronize attribute list and sql query every time when you modify columns in your view object(for example, when you add new column to table)
    DB View: This works, but I can't commit data in this application window.
    Event that is possible, but you need to define "instead of" trigger in db and modify lock() method in EntityImpl class, so this is overkill for your usecase.
    Dario

  • Enhancement to ADF ViewObjects

    An Additional enhancement request regarding ADF/BC4J.
    i would like to have ViewObjects that has INSERT MODE and QUERY MODE similar to Oracle Forms.
    When an Orcale Form is launched, a default new blank record is displayed on the screen and the only time data is fetched from the database is when u enter query mode and then execute the query. And that is using only one Datablock.
    In Oracle ADF/JSF, we can replicate that by setting the ViewObject maxfetchsize to zero upon creation of the ViewObject object. When the page associated with the viewObject launches, I will just execute a CreateInsert on pageLoad (invokeAction). To enter Query mode, I will have a backing Bean action that resets the maxfetch size to a positive number and then execute the query.
    Then I override the ViewObject's executeQuery() method so that after calling "super.executeQuery()", is will reset the fetch size again to zero.
    Now, my request is if the ViewObject can have this functionality BUILT-IN so that I won't have to create a custom backing bean action.
    regards,
    Anton

    Hi,
    I created bug 6066516 as an ER
    thanks
    Frank

  • ADF ViewObject scolding me.

    Hi,
    I have created a ViewObject through ADF Business Objects which contains 3 fields(code,name,mail) all are updatable.
    In the query part I am using a where clause
    select code,name from table_name
    where employee_email = :1
    order by name
    In my action class I am passing value to :1 like
    vo = am.getXXXXQuery();
    vo.setWhereClauseParam(0,userId);
    System.out.println(vo.getQuery()); ---> displays the preceeding query where employee_email = :1
    its not getting the value for :1.
    My ViewObject contains some row implementation class, do I have to pass the value here?
    protected Object getAttrInvokeAccessor(int index, AttributeDefImpl attrDef) throws Exception
    switch (index)
    case CODE:
    return getCode();
    case NAME:
    return getName();
    case EMAIL:
    return getEmail();
    default:
    return super.getAttrInvokeAccessor(index, attrDef);
    * setAttrInvokeAccessor: generated method. Do not modify.
    protected void setAttrInvokeAccessor(int index, Object value, AttributeDefImpl attrDef) throws Exception
    switch (index)
    case CODE:
    setCode((String)value);
    return;
    case NAME:
    setName((String)value);
    return;
    case EMAIL:
    setEmail((String)value);
    return;
    default:
    super.setAttrInvokeAccessor(index, value, attrDef);
    return;
    Plss help me.
    Thanks,Vicky

    Hi Vicky,
    first of all you should post your question in the JDeveloper forum (JDeveloper and ADF
    The answer to you question is simple. vo.getQuery() returns the query text as is (without any bounded parameters). The values for the parameters are bound automatically when you do vo.exceuteQuery(). You have nothing else to do, just call executeQuery().
    Timo

  • Selecting unique rows in ADF ViewObject

    Hi,
    In my ADF application, i am fetching data from a table. the situation is, my table is having same row of data multiple times. The primary key is a sequence. I want to fetch distinct rows of data from the table.
    So, I wrote query to fetch the distinct rows of the table.
    The query works in the Database SQL worksheet, but when i use it in my ViewObject and run, it throws an error saying
    View object ActiveUsersVO does not include a primary key attribute Pk of entity base ExtUserMapping.here Pk is my primary key. I did not used it in the query to get the unique rows.
    help me fetch the unique rows in ADF without the primary key
    thanks,
    Rajan

    User please tell us yor jdev version!
    This should be no problem as long as your VO is build as road only based on a query like
    select distinct department_id from job_historyThis VO can be used without a PK, however some function which are working on PKs won't work. The query works on hte HR schema.
    Timo

  • ADF View object validation. Cannot have same column value multiple time.

    Hi Expert,
    I have a ADF viewobject validation question. I have the Department and employee view objects. Each department have multiple employees. (may be u can also assume. the employee name is an VO attribute not the database field)
    I need to implement the following validation rule
    One department shouldn't have same employee name. How can i implement this validation rule in the ADF-BC.
    Looking forward ur expert suggestions. Thanks
    -t

    Assuming that the employee name (which you have said is a transient attribute) is created by concatenating some other fields, you could, I suppose create a unique index in the DB or a unique validator in the EO to ensure that the department ID (assume you have such an attribute) and the fields that make up the name are unique. It seems kind of unusual to be validating a transient field like this.
    John

  • How To: Use ADF Form in "Insert" Mode in jDeveloper 12c

    Hi all,
    I'm in the process of learning jDeveloper and after going through the basics, a task that I'm trying to accomplish is to have a ADF Form load in "Insert" mode rather than the default "Update" behavior. After significant searches, the closest that I could come to was Create-adf-input-form post. But since that tutorial is based on the 11g version, I'm struggling to find an equivalent of that in 12c.
    Can anyone point me in the right directly and help me in determining how I would achieve the same in 12c?
    Thanks,
    Nisar

    Nisar,
    If you want the newRow to be readily available when the page loads, you call vo.createRow() in a AM method and expose that method as a client interface. Call this method on the page load.
    The below links might help to call method on page load:
    Johny's Tips: ADF: How to execute the ViewObject with a ViewCriteria on the PageLoad in ADF Web Application
    https://blogs.oracle.com/aramamoo/entry/an_epic_question_how_to
    This link helps to know how to create VO row programatically.
    http://www.awasthiashish.com/2012/12/insert-new-row-in-adf-viewobject.html
    Let us know if you face any issue while implementing.
    Cheers
    AJ

  • Adf table filter

    adf filterable table
    filter works only on numeric columns ,on text columns "No data...."

    I created a simple test application in JDev/ADF 11.1.1.6 and I can confirm the problem you encountered. My test application is very simple. It consists of a single ADF Faces page containing a read-only <af:table> with a filter. The <af:table> is based on an ADF ViewObject on a MySQL 5.5 DB table containing two varchar columns.
    The problem happens when a MySQL DB is used and it is related to the MySQL's SQL syntax. The problem is caused by a wrong WHERE-clause criterion generated by ADF when the user enters some condition in a filter field backed by a DB column of character datatype. ADF generates a WHERE-clause similar to this one:
    WHERE MyTable.col1 LIKE ( ? || '%' )This would be a correct WHERE-clause for many SQL-databases, but it is not correct for MySQL, because in MySQL the operator || does not perform a string concatenation but it acts as a logical OR. In this way the expression <tt>( ? || '%' )</tt> is not evaluated to a string but to a boolean value (e.g. 0 or 1), so the operator LIKE fails to filter the rows correctly.
    You can inspect the generated SQL-query and the values of the bind variables yourself by switching ADF diagnostics on (e.g. set -Djbo.debugoutput=console to the runtime configuration of your ViewController project).
    JDeveloper/ADF 11.1.1.6 certification matrix says that MySQL 5.5 is certified for both JDeveloper IDE and ADF, so in my opinion you can submit an official SR if you have a valid support contract which covers Oracle ADF.
    A good workaround would be to implement a custom SQLBuilder or a custom ViewCriteria adapter that patches the problem, but it would require a lot of efforts. Alternatively, you can try to implement a tricky workaround by subclassing the ViewObjectImpl class and overriding some of its query-related methods in order to replace the substring <tt>LIKE ( ? || '%')</tt> with <tt>LIKE CONCAT( ?, '%' )</tt> in the generated SQL query. This is tricky, so I do not recommend you this way either.
    However, if you decide to follow the later alternative, you can override both methods <tt>ViewObjectImpl.buildQuery(...)</tt> in a custom base ViewObjectImpl class (or in a custom ViewObjectImpl class of particular VOs only) as follows:
      @Override
      protected String buildQuery(int noUserParams, boolean forRowCount)
        String query = super.buildQuery(noUserParams, forRowCount);
        if (query!=null) {
          query = query.replace( "LIKE ( ? || '%')", "LIKE CONCAT( ?, '%' )");
        return query;
      @Override
      protected String buildQuery(int noUserParams, boolean forRowCount, String selClause, String fromClause, String whereClause, int subQueryLevel)
        String query = super.buildQuery(noUserParams, forRowCount, selClause, fromClause, whereClause, subQueryLevel);
        if (query!=null) {
          query = query.replace( "LIKE ( ? || '%')", "LIKE CONCAT( ?, '%' )");
        return query;
      }Dimitar
    Edited by: Dimitar Dimitrov on Feb 2, 2013 12:07 PM

  • Adf Readonly table to Editable

    Hi All
    I am using JDev 9.0.5.2. I need an editable table from an adf viewobject. Here is what I do:
    1. I create a view.
    2. On my jsp page I drag a readonly table from my data controls onto the page. There is no editable table option in this version of Jdev.
    3.I drag a create button onto the jsp page.
    Problem
    When I hit create, nothing happens.
    I go to the Ui Model to have a look at the action for the create button and its action is set to create. There are a list of other actions that can be assigned to this button but there is no insert or new action.
    Can anyone help with this
    Thanks

    Hi,
    open the Create action and set it to CreateInsert to create a new record. Note that you have to navigate to a page that has an editable form based on the VO
    Frank

  • Swing JTable error when clicking on column header

    Hi I'm using ADF Swing in JDev 10.1.3 linking a UI JTable to a ADF viewobject, when clicking on the column header i get the follwing:
    [ConditionalEventPump] Exception occurred during event dispatching:
    oracle.jbo.InvalidObjNameException: JBO-25005: Objektnavn 1 for type Variabel er ugyldigt
    at oracle.jbo.common.VariableImpl.validateName(VariableImpl.java:234)
    at oracle.jbo.common.VariableImpl.setVariableKind(VariableImpl.java:301)
    at oracle.jbo.server.ViewRowSetImpl.defineNamedWhereClauseParam(ViewRowSetImpl.java:3390)
    at oracle.jbo.server.ViewObjectImpl.retrieveByKey(ViewObjectImpl.java:10374)
    at oracle.jbo.server.ViewObjectImpl.retrieveByKey(ViewObjectImpl.java:10180)
    at oracle.jbo.server.ViewRowSetImpl.findByKey(ViewRowSetImpl.java:3955)
    at oracle.jbo.server.ViewRowSetImpl.findByKey(ViewRowSetImpl.java:3794)
    at oracle.jbo.server.ViewRowSetImpl.findByKey(ViewRowSetImpl.java:3782)
    at oracle.jbo.server.ViewObjectImpl.findByKey(ViewObjectImpl.java:6991)
    at oracle.adf.model.bc4j.DCJboDataControl.setCurrentRowInRSI(DCJboDataControl.java:930)
    at oracle.adf.model.bc4j.DCJboDataControl.setCurrentRowWithKey
    (DCJboDataControl.java:881)
    at oracle.jbo.uicli.jui.JUTableBinding$1$1.run(JUTableBinding.java:222)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:158)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

    Hi,
    in this case the bind variable name comes from the viewLink definition. What is the m/d, is it based on e.g. Departments/Employees pushing the ADF BC wizard? I need to understand how to build a testcase that allows me to reproduce the issue. Do you show both , master and detail on the Swing form, or only the detail?
    Frank

  • Complex Query JSP page

    I have a JSP page where I want to display the results from a query with a parameter supplied by a form.
    The problem is, my query does not have a where clause but instead is a hierarchical query e.g.
    http://www.dbazine.com/mishra3.shtml
    SELECT LEVEL, EMP_NAME , EMP_ID, MGR_ID
    FROM EMPLOYEE
    START WITH MGR_ID IS :1
    CONNECT BY PRIOR EMP_ID = MGR_ID;
    Where :1 is where I want to put in a parameter.
    Can I do this using an ADF ViewObject and JSP page?
    I am open to design suggestions here.
    I have tried two naive ways of doing this which did not work.
    1. Just try to set the parameters before opening the page using a DataActionMethod that opens the page on success
    ViewObject vo = findViewObject("TrayTrackFwdHistory1");
    vo.setWhereClauseParam(0, my_parameter);
    vo.executeQuery();
    In this case, somehow the page errors out before the set method is invoked with a ":1 is not set as an input or output parameter"
    2. Simply drop and recreate the view object with the query parameter value inside it. e.g.
    ViewObject vo = findViewObject("TrayTrackRevHistory1");
    vo.remove();
    vo = createViewObjectFromQueryStmt("TrayTrackRevHistory1", sqlStr);
    vo.executeQuery();
    In this case I get the error
    Operation getCurrentRowSlot cannot be performed because the working set object is not bound. So somehow I have to reset the iterator binding for the JSP page I generated versus the above view?
    Any help much appreciated.

    So, I figured out the solution for this.
    The answer here was to set the parameter value in the prepareModel event before the page is loaded. It turns out that setWhereClauseParam seems to set a parameter even if it is not part of a where clause so e.g.
    protected void prepareModel(DataActionContext ctx) throws Exception {
    String manager= ctx.getHttpServletRequest().getParameter("manager");
    DCDataControl dc = ctx.getBindingContext().findDataControl("AppModuleDataControl");
    AppModule am = (AppModule)dc.getDataProvider();
    ViewObject vo = am.findViewObject("EmployeeManagers");
    vo.setWhereClauseParam(0, manager);
    vo.executeQuery();
    super.prepareModel(ctx);
    }

  • Joining two tables in two different schema

    Hi All,
    I have a requirement to join two tables in two different schema. How to join these two tables in view object.
    Many thanks in advance.
    Regards
    Kaushik Gopalakrishnan

    1) If these tables are in one and same database instance, then you can join them by specifying the fully-qualified table names (inlcuding the schema name), for example:
    SELECT ...
    FROM schema_A.table1 T1, schema_B.table2 T2
    WHERE T2.parent_code = T1.code
         AND ...2) If the tables are in different database instances, then you can create a database link in one of the databases and access the table from the other database via the DB link, for example:
    SELECT ...
    FROM schema_A.table1 T1, schema_B.table2@mydblink T2
    WHERE T2.parent_code = T1.code
         AND ...3) If the tables are in different database instances and there is no option for DB links, then you cannot join the tables in an ADF ViewObject.
    Dimitar

  • ADF Toystore question:  no blank row in viewobject on "Add" JSP form

    A new thread based on Suggestions for Automatic Commit/Rollback
    In the ADF Toystore application, I did not notice the blank row behavior in the user registration section like we encountered in the other thread posting (Suggestions for Automatic Commit/Rollback To test this, I created another instance of the Accounts viewobject (called it AllAccounts) inside the ToyStoreService app module and then created a JSP to list the contents of the AllAccounts viewobject. Then, I went to the registration page (which creates a blank row in the view object with a status of STATUS_INITIALIZED) and then without submitting the form, I clicked on the link that I created to view the contents of the AllAccounts view object and noticed that a blank row did not appear. What is causing a blank row to appear in our discussions in the other thread (Suggestions for Automatic Commit/Rollback but not in the ADF Toystore application? I guess somehow this row with a status of STATUS_INITIALIZED is being "removed" but I cannot find the code that does this.
    Steve -- any ideas?

    I was trying to figure out what would be the best practice to implement 'partial rollback'. Could not really find the example in Toy Store demo. For example if we create new account, the model will get dirty. And let's say user does NOT commit the record but rather uses link and navigates to some other pages. After some work user may commit the transaction which in turn will commit blank entry in account table. Well for the sake of example let's assume that this is possible scenario.
    So what I am up to is how to implement 'cancel' operation when user changes his/her mind and does something else rather then commit/save_changes in new/edit screens? What would be the best practice?
    What I have done so far is rather too bulky. I have implemented event handler for all my links and cancel button in data page:
       * "Cancel" Event Handler.
       * @param ctx The DataAction context
      public void onCancel(DataActionContext ctx) {
        HttpServletRequest request = ctx.getHttpServletRequest();
        BindingContext bcc = HttpBindingContext.getContext(request);
        DCBindingContainer dbc = DCUtil.findBindingContainer(bcc, "modifyAddSchedulingUIModel");   
        DCIteratorBinding studentCat = dbc.getIteratorBinding("AddModifyScheduleView1",null , "AddModifyScheduleView1Iterator");
        Row currentRow = studentCat.getNavigatableRowIterator().getCurrentRow();   
        currentRow.refresh(Row.REFRESH_REMOVE_NEW_ROWS | Row.REFRESH_WITH_DB_FORGET_CHANGES);
        dbc.getApplicationModule().getTransaction().commit();
        String target = "individual";
        ctx.setActionForward(target);
      Any other idea?

  • Reading data From XML file and setting into ViewObject to Pouplate ADF UI

    Hi,
    I have following requirement.
    I would like to read data from XML file and populate the data in ViewObject so that the data can be displayed in the ADF UI.
    Also when user modifies the data in the ADF UI, it should be modified back into to ViewObject.
    Here is an example - XML file contains Book Title and Author. I would like to read Book Title and Author from XML file and set it into ViewObject Attribute and then display Book title and Author in ADF UI page. Also when user modifies Book title and Author, I would like to store it back in View Object.
    Please help me with this requirement and let me know if any solution exist in ADF, for populating the ADF UI screen fields with external XML file data.
    Thanks

    Read chapter 42 http://download.oracle.com/docs/cd/E16162_01/web.1112/e16182/bcadvvo.htm of the fusion developer guide
    Section 42.7, "Reading and Writing XML"
    Section 42.8, "Using Programmatic View Objects for Alternative Data Sources"
    Timo

Maybe you are looking for

  • How to Perform Group By operation in OBIEE 11g

    Hi, I have created a report for the "Nationality count in department wise manner", since for this i need to give 'group by department' for getting correct answer... But in OBIEE 11g on presentation service how i need to give "Group BY" operation....f

  • RG 1 updating Problem

    Hi, For RG1 update, In Tcode j1i5 after filling all respective parameters when we execute, a list of material doc for finished goods displayed but after simulate green light appers, then again we do simulate then by selecting material doc when we cli

  • Intermittent NO SERVICE

    I have been getting intermittent NO SERVICE and then full bars at the same spot in the Upper East Side of Manhattan several times a day for the last week. Putting the iPhone SIM in an unlocked Nokia 6682 shows full bars all day. A reboot of the phone

  • Is it possible to link a graphic button to a script?

    I've used an email address obfuscator (http://www.projecthoneypot.org/how_to_avoid_spambots_3.php) to create a script.  I would like to make it so that the user can click on the email button which would trigger the script and open the email client. 

  • Suggestion: Remove bucket from the dirty-words list

    The forum software evidently believes "bucket" is a dirty word, as in "Photoshop Elements' Paint Bucket tool".  (B u c k e t).   See this thread: http://forums.adobe.com/thread/434983?tstart=0