BI-Beans functionality

Great Tech-Preview but any information on how and when bi-beans functionality will be available?

The graph functionality of BI Beans is now "renamed" ADF Data Visualization Components - they are our graph JSF components.
You can play with them in the preview.
Some resources:
http://download.oracle.com/otn_hosted_doc/jdeveloper/11/demos/graph/ADFGraphDemoFinal.html
http://www.oracle.com/technology/products/adf/adffaces/11/doc/dvt_graph_gauge_tags/dvt_adf_faces_tag_list.html
http://www.oracle.com/technology/products/jdev/11/how-tos/graph/configuring_graph_types.html
http://technology.amis.nl/blog/?p=2007

Similar Messages

  • To call a bean function to set a property value with hx:ajaxRefreshRequest

    I have an input box
    I need to output some text onto an output box,When the input box value changes
    I am using Ibm jsf implementation and RSA 7.0,JSF 1.1 implementation
    I know how to call a bean property's setter method using this hx:refresh submit and associated behaviours and target actions.
    As explained in this tutorial
    http://www.ibm.com/developerworks/rational/library/06/1205_kats_rad2/
    But my aim is to call a bean function other than the setter method,because i could do some business logic there and give output.This is possible via setters too,but i believe thats a poor programming practice.
    Hope ppl have got a clear picture of my problem.
    Help me in this.

    You can use any jsf implementation you want, I suggested you only the steps to accomplish the task but I don't know the components you are using...
    You can also accomplish the task without Ajax at all using "classic" http requests but it will be very frustrating for your users...
    Catch client side event (input value change) -> fire an action that update the model -> update presentation layer with up to date model values

  • Call managed bean function using javascript

    Any one help me how to call managed bean function through Javascript onload() event.

    What do you want to do after all? Isn't the constructor/initblock of the bean sufficient? Which JSF version/implementation are you using?

  • Lazy form bean functionality in 8.1.4

    Hi All!
    Is there any functionality in Workshop 8.1.4 which similar to struts lazy form bean functionality? I can't find any doc or example or forum item about it.
    I need it to implement a functionality where my html form generated runtime and don't know in advance how many and what type of fields will it contain.
    Any suggestion should be highly appreciated!
    Thanks in advance!
    S.

    I can't be sure about exactly what's happening here, but I can point out several things.
              The class "javax.servlet.jsp.el.VariableResolver" is associated with JSTL 1.1.x, and JSP 2.0. It's not part of JSTL 1.0.x. Make sure you really have version 1.0.6, and don't have 1.1 somewhere.
              If you're just trying to use the JSTL, you shouldn't need several of those jars that you're presently including. You only need jstl.jar and standard.jar.
              Why are you using the "rt" versions of these taglibs? Those don't even use the expression language. I would remove "_rt" from all of those references.
              Note that if you're using Struts and the JSTL, you probably want to use Struts-EL, which is a version of the Struts jar that uses the EL to evaluate attribute values. Check the struts-user archive for some information about this. You'll find the struts-el distribution in the "contrib" directory of the Struts distribution.

  • Calling JSP bean function on button OnClick

    Hi-
    A NewBie question....
    I have a .jsp page and supporting .java bean.
    I registed the bean in .jsp page using <jsp:useBean ...>
    I want to fire a function defined in that bean on the click of a button which is defined in the .jsp page
    So I am doing something like this... seems like not the correct way to do since it fires this script all the time, not just when the button is clicked.
    <input name='click1' type='Submit' value='Click1' onClick='<% testBean.click1Clicked (); %>'/>
    Thanks for your help.

    Hi Kishor-
    Thanks for the reply.
    I realize that might be the case, as u explained in your two points.
    so now I have created a hidden input field and use it's value as a way to communicate between javascript and jsp. and in bean's function I check the value of this hidden field, which will be set by the OnClick's javascript and then proceed accordingly.
    Is this the correct way to accomplish what I am trying to?
    Thanks again

  • Java Bean Function problem

    Hi All .
    i just embeded a java bean into oracle forms it appear succesfully on the canvas now i want to execute the following function but unable to do so. Can u please explain me what i have to type where requested to call following function.
    FUNCTION getDate(
    obj ORA_JAVA.JOBJECT) RETURN ORA_JAVA.JOBJECT;
    and the code i have on custom-trigger is
    declare
    newdate date;     
    begin
         newdate := JCALENDAR.getdate("WHAT to write here");
         if (newdate is not null) then
              :vhead.DTv := newdate;
         end if;
    end;
    Thanks in Advance
    Message was edited by:
    Fiz Dosani

    Did you use the Java Importer to import the classes ?
    >>yes i do
    and i am also using a bean area & while looking your reply at the following thread i try to use fbean package for calling a function but the problem is that the getdate function return date and i didnot find invoke_date precedure in fbean package
    Re: How to call java function in Oracle forms?

  • Passing parameter for the bean function that deletes record from DB

    I need to delete some record from the DB without updating the reset of the user screen.
    I use commandButton with immediate attribute as true, because validation should be skipped.
    So, I can't rely on backing bean values being updated, but need to pass a param to the function that does the delete (deleteTemplate) function below.
    The value of this param is selected value in another comboBox called "template".
    Code below is not parsing. Could you advise how to do it?
    <a4j:commandButton id="deleteTemplate" value="Delete"
                             action="#{qtBeanParam.deleteTemplate(param['piPerformanceReturnsForm:template'])}" immediate="true" reRender="template,templateList,templateOwner,templateOwnerList"
                             styleClass="blue-button">
                        </a4j:commandButton>Error Parsing: #{qtBeanParam.deleteTemplate(param['piPerformanceReturnsForm:template'])}

    Thank you for your reply.
    Could I pass the value that is entered in some other field as a "parameter" though?
    <f:param name="anyName" value="parameter" />
    For example the value from the following comboBox?
    <rich:comboBox id="template" width="250" value="#{qtBeanParam.templateName}" enableManualInput="true"
                                  converter="#{templateConverter}" valueChangeListener="#{qtBeanParam.changeTemplate}" >
                                  <a4j:support event="onselect" reRender="template,templateList" ajaxSingle="true" />
                                  <a4j:support event="onchange" reRender="template,templateList" ajaxSingle="true" />
                             <f:selectItems id="templateList" value="#{qtBeanParam.templateList}" />
                        </rich:comboBox>

  • Calling bean function in script

    hai sir, this is surendra i developed a software for online examination .I wrote java script to print the limited time but i got a problem with calling the submit methode in managed bean after complition of limited time .what should i do sir to call that function

    hai sir, this is surendra i developed a software for online examination .I wrote java script to print the limited time but i got a problem with calling the submit methode in managed bean after complition of limited time .what should i do sir to call that function

  • USe a Bean Function (Method, Prop ) from another Bean

    Sorry for the Vocabulary I'm just a beginer,
    I have Two Beans BeanA and BeanB
    In BeanA I Try to Call a Method from BeanB what do I need to Declare, Import ....
    The Beans are in the same Package in the Classes Folder of my WebServer (Iplanet)
    Thanks for your help

    Sorry for the Vocabulary I'm just a beginer,
    I have Two Beans BeanA and BeanB
    In BeanA I Try to Call a Method from BeanB what do I
    need to Declare, Import ....
    The Beans are in the same Package in the Classes
    Folder of my WebServer (Iplanet)
    Thanks for your helpHi hoanet
    You can write
    import package.BeanB;
    and try
    Rambee

  • JSP 2.1 Bean Function Access

    Porting an application from JSP 2.0/Tomcat to JSP 2.1/Jetty 6.
    In the original application:
    <jsp:useBean id="userLogin" class="user.beans.ValidateLoginBean" scope="page">
    <c:if test="${userLogin.loggedIn}">
    </c:if>
    </jsp:useBean>This used to work, but now, it doesn't even run the getLoggedIn method at all!
    This, however, does, but is not of much use to me:
    <jsp:useBean id="userLogin" class="user.beans.ValidateLoginBean" scope="page">
    <jsp:getProperty name="userLogin" property="email" />
    </jsp:useBean>Whats the new syntax for this?
    Thanks,
    Mike

    Does your class 'user.beans.ValidateLoginBean' implement any of the java.util.Map, java.util.List or java.util.ResourceBundle interfaces?
    If so, the el-resolvers for those classes will shadow the default bean-resolver, so you won't get any value back from your 'loggedIn' property.
    Try including a tag in your page like this:
      <c:out value="${userLogin.loggedIn}" />Do you see "true" or "false", or just blank?
    If you are using the standard web-container security, then you can also make use of the "remoteUser" request attribute. For example:
      <c:if test="${!empty pageContext.request.remoteUser}">
      </c:if>

  • How to assign and display an attribute value from backing bean?

    Hello all,
    I am using Jdev 11g. I have a form page which has two inputText attributes The first one implements a valueChangeListener feature. When the user enters a value in the first field, a backing bean function will be invoked through the valueChangeListener . In this backing bean function, based on the value in the first field, I want to assign the value to the second field and display it on the page. Can somebody help me how to achieve this?
    Thanks,
    John

    Hi John,
    Here is small example.
    Create two string variables in your backing bean and generate accessors for them.
        private String text;
        private String text1;
        public void setText(String text) {
            this.text = text;
        public String getText() {
            return text;
        public void setText1(String text1) {
            this.text1 = text1;
        public String getText1() {
            return text1;
        }Bind this variables to the value property of the input texts you have. Add the valuechangedlistener for the first input text (and also set autosubmit to true for that item). Also, add the id of the first input text as partial triggers for the second input text. Like,
            <af:inputText label="Label 1"
                          binding="#{backingBeanScope.backing_untitled1.it1}"
                          id="it1"
                          valueChangeListener="#{backingBeanScope.backing_untitled1.textValueChanged}" autoSubmit="true"
                          value="#{backingBeanScope.backing_untitled1.text}"/>
            <af:inputText label="Label 2"
                          binding="#{backingBeanScope.backing_untitled1.it2}"
                          id="it2"
                          value="#{backingBeanScope.backing_untitled1.text1}"
                          partialTriggers="it1"/>Finally, put the logic on your value changed listener. Like,
        public void textValueChanged(ValueChangeEvent vce){
            this.setText1("Hi " + vce.getNewValue());
        }Now, when you run the page and enter your name in the first input text, the second input text will display Hi <your_name>
    HTH.
    -Arun

  • Open popup from managed bean

    How can i open a popup from a managed bean function?
    Suppose i have an inputfield that is bound to a function getValue(), how can i open a specific popup from that function?

    Essential you have to put the popup somewhere on the page and you have to know the popup id (or search for it in the page). Then you call
         * Opens the RichPopup based on the key.
        public static void showPopup(String popupId)
            FacesContext context = FacesContext.getCurrentInstance();
            ExtendedRenderKitService extRenderKitSrvc =
                Service.getRenderKitService(context, ExtendedRenderKitService.class);
            extRenderKitSrvc.addScript(context,
                                       "AdfPage.PAGE.findComponent('" + popupId + "').show();");
        }with the popup id as parameter.
    Timo

  • How to use a managed bean in a bounded task flow without definig it in adfc-config

    Dear all
    I create a bounded task flow without page fragments (the pages are jspx), i created a jspx page with a button that its action has bounded to a managed bean function.
    i defined the managed bean on the corresponding bounded task flow, but it does not work.
    But there is no problem when i define the managed bean in adfc-config.xml.
    can anybody help me with this problem.
    is it possible to use jspx page with backing bean in bounded task flows, without defining the beans on adfc-config?
    Thank you very much

    Dear Timo
    I use jDev 11.1.1.6 and the scope is Request.Although when i use task flow page fragment and create jsff pages, there is no problem.

  • ADF -- Accessing table column header in java bean called from jsf

    Hi everyone,
    I am calling a common bean function for all columns of a table from jsf inlineStyle, for each call i need to access caller column's headerText in bean.
    How can i access the same in that common function, i.e. for each column's call to the bean, i need the respective headerText accessible in bean.
    Can anyone help me out with this???

    store the value in page flow scope and get it anywhere you want.
    RequestContext rc = RequestContext.getCurrentInstance();
    rc.getPageFlowScope().put("somevar", somevalue);

  • Can we call custom functions in view objects?

    Can we call custom functions in view objects?these custom functions are from my backing bean...
    Please help.....

    User,
    You can certainly add code to your view objects to do whatever you like.
    However, it would be considered a very bad practice to call something in the backing bean from your view object. It violates the whole MVC design principle of ADF.
    Perhaps if you can share your real use case, someone will give you ideas about the best way to do it, but I, for one, would advise you to forget about calling a backing bean function from your view object.
    Best,
    John

Maybe you are looking for

  • Windows 7 wont install on macbook pro 15

    I have a 15 macbook pro with the latest version of leopard installed and windows 7 will just not work! I used bootcamp, partitioned the hd, formatted it to whatever windows needed to be installed and all went smoothly till the last stage where it was

  • Adapter Engine not working

    Hi, I've found the follonwin log error Monitoring the Adapter engine cache: <i>11-may-2006 17:13:25 - Cache notification from Integration Directory received successfully Attempt to fetch cache data from Integration Directory failed; cache could not b

  • In Mail 2.1.3 how do I reduce the number of emails?

    Hi, I hope this is the right discussion group for a question about Apple Mail. I didn't see Mail in the list of discussion topics, but I see that Mail is an application because it's in my application folder. I have over a thousand emails in my inbox

  • Accounting Entry

    Dear All what are the accounting entries for the follwoing scenario. If I return the goods to the vendor through mvt 161 i.e using returnable Purchase order.And when Vendor send me credit note for the goods I returned , at this time if the amount of

  • Spinning beach ball and slower performance

    I have been noticing that the performance of my iMac is becoming slower, with the dreaded spinning beach ball apearing whenever I change between applications to perform relatively basic functions. However, the worst is when I am in iTunes, where I ex