ADF BC: ViewObject Behavior

Hi all,
Within my AM, there are getters like:
ViewObjectImpl getSomeVo() ...
My question is does this method return a new instance or an existing reference?
If it is an existing reference, will the index of the row iterator index be exactly where it was used (lets say a previous call iterated the index to a certain position) or reset to starting point?
Thanks,
Z

Please see Chapter "28 Application Module State Management" of the ADF Developer's Guide for Forms/4GL Developers on the ADF Learning Center at http://www.oracle.com/technology/products/adf/learnadf.html for more information on this.
The current row in an iterator is one of the pieces of information that is maintained as part of state management.

Similar Messages

  • [ADF-swing] ViewObject blocks EDT, how to work around?

    I'm working with JDeveloper 11.1.1.5.
    I have a query-based VO that takes a long time to execute.
    While the Statement runs I want to show a Waiting Dialog showing an animated GIF so that the user knows the application is working and not hung.
    When I do the query directly then my WaitingDialog shows the Animation as expected. The following runs in a thread of ist own:
    ViewObject viewObject = myApplicationModule.findViewObject("MyViewObjectsName");
    PreparedStatement s = ((DBTransaction)_am.getTransaction()).createPreparedStatement(viewObject.getQuery(),0);
    try{
      s.executeQuery();
    }(catch SQLException ex){
    ex.printStacktrace();
    when I Change this to execute the vo instead the Dialog hangs:
    ViewObject viewObject = myApplicationModule.findViewObject("MyViewObjectsName");
    viewObject.executeQuery();
    how do I configure ADF so that it does not block EDT?
    bye
    TPD

    An alternative method for the UI is to use the radio buttons control. You can customize the standard one to use the square buttons, and I believe this would give you the equivalent effect that you're doing with the lights. See attached VI along with customized control. For the customized control I took a standard radio button control, opened it for editing, and replaced the circular booleans with square buttons. The radio button control is an enumeration, with the enumeration items being the labels of the individual controls (not the text inside the buttons). The control is set so that the labels on the individual square buttons is not visible.
    Attachments:
    Event Structure Example2.vi ‏45 KB
    Control 1.ctl ‏6 KB

  • JDeveloper 11.1.2.3, ADF Faces: aberrant behavior declarative components

    Strange things have been happening with my research into declarative components.
    1. declarative component cannot be used the within the same project it is defined. only in a separate project which consumes it as an adflib
    2. periodically, in the componentdef property inspector for my declarative component would miss displaying all values I defined for "Facet Definitions, Method Signature, Methods". Closer inspection of the code reveals that somehow, the afc tags disappeared! so the code for something like a method attribute would look like:
    <method-attribute>
      <attribute-name>
       commit
      </attribute-name>
    <method-signature>
      void method(javax.faces.event.ActionEvent)
    </method-signature>
    </method-attribute>
    ...instead of:
    <afc:method-attribute>
    <afc:attribute-name>
      commit
    </afc:attribute-name>
    <afc:method-signature>
      void method(javax.faces.event.ActionEvent)
    </afc:method-signature>
    </afc:method-attribute>
    ...3. during design time, the ActionListener attribute of a button (in the declarative component definition) shows up under "warning node" and states "Reference comp.nameofactionlistener" not found.
    Code will run but there are many warnings similar to this.
    anyone else on 11.1.2.3 have similar issues working with declarative components? i'm trying to find steps to reproduce but havent stumbled upon it yet.

    Wes,
    1) is documented at http://docs.oracle.com/cd/E35521_01/web.111230/e16181/af_reuse.htm#autoId21
    2) and 3) I personally have not stumbled upon, but if you have a reproducible test case you should open an SR or make an entry in the ADFEMF issue tracker (http://java.net/jira/browse/ADFEMG side is currently down :()
    Timo

  • JDeveloper 10g & ADF BC:Unexpected behavior on activation within AM

    I have overwritten the passivateState/activateState within my root am. The DOM printout is correct after the passivation but upon activation, the nodes seem to be concatenated together. I'm perplexed on how this is happening, anyone run into this?
    This is what I'm trying to passivate (visually). Which works as intended.
    -MYMAP
    ---KEY0
    ------CHILD_NODE_0
    ------CHILD_NODE_1
    ---KEY1
    ------CHILD_NODE_0
    ------CHILD_NODE_1
    This is what I get upon activation
    -MYMAP
    ---KEY0
    ------CHILD_NODE_0CHILD_NODE_1
    ---KEY1
    ------CHILD_NODE_0CHILD_NODE_1
    here is my code and printout:
    private void printMapWithChildNode(Node mapNode) {
    NodeList nl = mapNode.getChildNodes();
    for (int i = 0; i < nl.getLength(); i++) {
    Node node = nl.item(i);
    for(int j=0; j<node.getChildNodes().getLength(); j++){
    System.out.println("i: " + i + "key: " + node.getNodeName() +
    " value: " +
    node.getChildNodes().item(j).getNodeValue() +" on j: "+j);
    private void passivateMenuItemMap(Document doc, Element parent, Map map, String NODE_KEY_NAME){
    if (map != null) {
    Node mapNode = doc.createElement(NODE_KEY_NAME);
    for (Iterator keys = map.keySet().iterator(); keys.hasNext();) {
    String key = (String)keys.next();
    Node keyNode = doc.createElement(key); // KEY0,KEY1, ETC...
    ModuleNameAndPatientCheck mnpc =(ModuleNameAndPatientCheck) map.get(key);
    Node childNode1 = doc.createTextNode("CHILD_NODE_0");
    Node childNode2 = doc.createTextNode("CHILD_NODE_1");
    keyNode.appendChild(childNode1);
    keyNode.appendChild(childNode2);
    mapNode.appendChild(keyNode);
    parent.appendChild(mapNode);
    printMapWithChildNode(mapNode);
    PRINT OUT:
    10/11/30 10:49:04 i: 0 key: KEY0 value: CHILD_NODE_0 on j: 0
    10/11/30 10:49:04 i: 0 key: KEY0 value: CHILD_NODE_1 on j: 1
    10/11/30 10:49:04 i: 1 key: KEY1 value: CHILD_NODE_0 on j: 0
    10/11/30 10:49:04 i: 1 key: KEY1 value: CHILD_NODE_1 on j: 1
    public void activateMenuItemMap(Element elem, Map map, String NODE_KEY_NAME) {
    if (elem != null) {
    NodeList nl = elem.getElementsByTagName(NODE_KEY_NAME);
    if (nl != null && nl.item(0)!=null) {
    printMapWithChildNode(nl.item(0));
    PRINT OUT:
    10/11/30 10:49:04 i: 0 key: KEY0 value: CHILD_NODE_0CHILD_NODE_1 on j: 0
    10/11/30 10:49:04 i: 1 key: KEY1 value: CHILD_NODE_0CHILD_NODE_1 on j: 1
    ...

    Got word from metalink that this is bug 9220124. There are no official fixes for either 10g or 11g at this point. I ended up creating extra nodes to get the code to work.

  • ADF dynamic ViewObject based on query. how to get attributes?

    hi.
    i have an read-only view object based on query like this:
    SELECT :func(:paramm) as EMP_SAL from dual
    and set :func & :paramm parameter by vo.setNamedWhereClauseParam(..) function.
    but i couldn`t get EMP_SAL attribute after executeQuery command.
    in another case i would set new whole Query by vo.setQuery(..) but the problem exists.
    please help me. how to get attribute in such vo objects!
    thanks!
    Morena!

    thanks to Quick reply!
    i seek into code and found a uninitialized Parameter in view object. error has gone after correct the problem!
    and now could get the attribute value.
    thanks so much!
    /\/\ o r e n a!

  • ADF : Generating Viewobject table at run time based on Bind Parameter

    Hi,
    My JDeveloper Version 11.1.1.5,
    I am facing one issue. I an not understanding how to deal with it. Its kind of road block for me.
    Scenario:
    I have a list of value(SOC), Which contains names of projects. Upon selecting one project and clicking on search button, table should be generated dynamically based on a query. To this query I need to pass the selected value from SOC, and should generate the query out put on to the screen, upon clicking on search button.
    Could any one please tell me the solution how to implement it?
    Please help.
    Thanks in Advance,

    Hi,
    the approach should be
    1. on click of search buton get the selected value in managed bean.
    2. write a method in am impl to execute the view by setting the where clause with selected value from SOC. the method should accept SOC selected value as parameter.
    3. expose the method in clent interface.
    4. on click search button method, invoke the am impl method using peration binding.
    ~Abhijit

  • Viewobject transcient attribute update value base on other field

    Dear All,
    I have a viewobject with a transcient attribute which is calculated based on some other attributes queried from the DB. I have set the default value of the transcient field using the express:
    adf.object.viewObject.getFTType()
    and the getFTType() in the viewObjectImpl will return a string base on other fields' values;
    Then I test it in the AM Model tester and it looks fine. However, when I drag this VO to a Table in the page, the transcient field column always showing the same value on every rows instead of showing different values base on the other fields on each row.
    I've added a button to print the selected row values in the table and after I click on the button, the transcient field column is updated according to my selected row other fields' values and it updates the value for the whole column instead of only the selected row.
    I wonder if there is sth wrong I did? Thanks a lot.
    The getFTType() method is pasted here:
    public String getFTType() {   
    Row row = this.getCurrentRow();
    String ftType = "";
    try {
    if (row.getAttribute("TxType").toString().equals("99")) { // all non-GJs
    if (row.getAttribute("InputFutureTrfDate") != null) { // Future type FT
    if (row.getAttribute("TiMToMYorn") != null) {
    if (!row.getAttribute("TiMToMYorn").toString().toLowerCase().equals("y")) {
    if (row.getAttribute("TrfMethod").toString().equals("5")) {
    ftType = "ECI FT (Future)";
    } else {
    ftType = "Misc FT (Future)";
    } else {
    ftType = "Misc FT M to M (Future)";
    } else {
    if (row.getAttribute("TrfMethod").toString().equals("5")) {
    ftType = "ECI FT (Future)";
    } else {
    ftType = "Misc FT (Future)";
    } else { // non-future FT
    if (row.getAttribute("TiMToMYorn") != null) {
    if (!row.getAttribute("TiMToMYorn").toString().toLowerCase().equals("y")) {
    if (row.getAttribute("TrfMethod").toString().equals("5")) {
    ftType = "ECI FT";
    } else {
    ftType = "Misc FT";
    } else {
    ftType = "Misc FT M to M";
    } else {
    if (row.getAttribute("TrfMethod").toString().equals("5")) {
    ftType = "ECI FT";
    } else {
    ftType = "Misc FT";
    if (row.getAttribute("TxType").toString().equals("11")) {
    ftType = "GJ Interest Income";
    if (row.getAttribute("TxType").toString().equals("12")) {
    ftType = "GJ Bank Charge";
    if (row.getAttribute("TxType").toString().equals("13")) {
    ftType = "GJ Others";
    } catch (Exception e){
    e.printStackTrace();
    return ftType;
    }

    Did you set recalculate on the field you are basing its value on.
    See http://docs.oracle.com/cd/E16162_01/web.1112/e16182/bcintro.htm

  • How to Auto Select some RadioButton on page load using ADF/JSF

    Hi,
    I am learning ADF and need some help. I have multiple radio buttons and couple of text boxes on my page. How can I make some radio button be selected based on some value from a database table and also populate the text boxes with the corrosponding value when a page loads. Any tips on how it can be done using ADF. Any sample tutorial will be helpful.
    Thanks

    Hi,
    when you e.g. use ADF BC then the radio button should be selected automatically based on the value of the attribute. If the row is new then you can have a default value specified in the ADF BC ViewObject attribute.
    However, if you just dragged the radio button and checkboxes onto the page - not using any ADF binding - then you will have to create a managed bean with a field variable (incl. setter/getter methods) to link the radio button's value property to it using Expression Language
    Frank

  • Building tree using view crateria in view objects

    suppose that i have the following tables "class" ,"group" and "item".
    items in table "item" belong to groups in table "group" and groups belong to classes in table "class" .
    suppose there is another table called "selling_basket" that contains an id for the customer and also a foreign key for rows in item table for the items he sold and a "Customer" table that contains customers id and other informations.
    suppose that i want to build an JSF page that contains a table from a view based on the "customer" table and a tree of herarichy - class
    |_group1
    |_item1
    |_item2
    -class2
    |_group2
    |_item3
    |_group3
    and when i click on a row on table customer the tree only display the herarichy for items that this customer sold just.

    i solve the probel the description as follow :
    . the problem : the problem is that when we use the tree model component with the scenario of filtration on the child nodes, we do a normal transactions of steps on the knowledge that the tree will use the master detail behavior as in table component and other ADF Master-details behaviors, so we build two view criteria one on employee and the other on department with the scenario of displaying only the department who has employees with salary equal some certain value, and only shows the employees who has salary equal that value, and on our code we apply the two criteria on the two view objects with the same value we entered to search for , the scenario works well for the top level nodes, but for child nodes it seems it doesn’t work, the behavior make us walk around our selves for why this happened. By debugging options and Tracing what SQL statements that it executes we found that the system execute two statements on the employee view object one with the bind value with the same we inserted and the other with null value, and we notice that the name of the second view object executed is not what we apply the view criteria for(departmentEO_employeeEO_emo_dept_FK_employeeView).
    .The solution: we notice that the tree component doesn’t use master detail behavior as in tables, and instead of that it uses the View link assessors (the run time generated view object departmentEO_employeeEO_emo_dept_FK_employeeView ), to get the detailed items, so we should override the action of the View link assessor.
    To deal with that we generate the view object rowimpl and viewimpl java classes, in the rowimpl class there is a method to call the link assessors with the following code:
    public RowIterator getEmployeesView()
    this.getAttributeInternal(EMPLOYEESVIEW);
    We write our code:
    public RowIterator getEmployeesView()
    System.out.println("Here");
    ViewObject s=((DepartmentsViewImpl)this.getViewObject()).getViewLinks()[0].getDestination();//we get the employee object by using the view link
    // between department and employee
    // then we apply the view criteria to that view object and return it as view link
    System.out.println("row number "+s.getEstimatedRowCount());
    ViewCriteria evc=s.getViewCriteriaManager().getViewCriteria("EmployeesViewCriteria");
    s.ensureVariableManager().setVariableValue("nSal",((DepartmentsViewImpl)this.getViewObject()).getnSal());
    s.applyViewCriteria(evc);
    s.executeQuery();
    return s;
    Notice that we use the employee view object getted by the view link instead of the master details.
    Regards
    Mohammad.b.yaseen
    Sep 26 2011 @ 11:43
    J2EE Team
    RealSoft
    for more info this the application url :
    http://www.4shared.com/file/lgeaYWXa/TreeTestApplication1.html
    notice that i diidn't attach the database with the project so you can connect to the local db
    Edited by: mohammad.j.b.yaseen on Sep 26, 2011 12:13 PM

  • JB-3300-cfgration file-demo/common/bc4j.xcfg is not found in the classpath.

    Frnds,
    Doing login application using ADF thru viewobjects and entity objects.Created login page with fileds and backing bean fetching values entered by user, in the same bean trying to get data(from database)thru viewobject ......iam getting this error
    javax.faces.el.EvaluationException: oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.ConfigException, msg=JBO-33001: Configuration file /demo/common/bc4j.xcfg is not found in the classpath.
         at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:51)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
    Caused by: oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.ConfigException, msg=JBO-33001: Configuration file /demo/common/bc4j.xcfg is not found in the classpath.
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:529)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1505)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1482)
    code used in bean is:
    ApplicationModule appmod = Configuration.createRootApplicationModule("demo.model","LAppModule");
    ViewObject vo= appmod.findViewObject("ViewObj1");
    pls help me.
    Thanks and Regards,
    Ashok B.

    **LogBeanPage.java**
    package project1;
    import oracle.adf.model.BindingContext;
    import oracle.adf.view.rich.component.rich.RichDocument;
    import oracle.adf.view.rich.component.rich.RichForm;
    import oracle.adf.view.rich.component.rich.input.RichInputText;
    import oracle.adf.view.rich.component.rich.layout.RichPanelFormLayout;
    import oracle.adf.view.rich.component.rich.nav.RichCommandButton;
    import oracle.adf.view.rich.component.rich.output.RichMessages;
    import oracle.binding.BindingContainer;
    import oracle.binding.OperationBinding;
    public class LoginPage {
    private RichCommandButton cb1;
    private RichInputText it1;
    private RichInputText it2;
    private RichPanelFormLayout pfl1;
    private RichForm f1;
    private RichMessages m1;
    private RichDocument d1;
    public LoginPage() {
    public void setCb1(RichCommandButton cb1) {
    this.cb1 = cb1;
    public RichCommandButton getCb1() {
    return cb1;
    public void setIt1(RichInputText it1) {
    this.it1 = it1;
    public RichInputText getIt1() {
    return it1;
    public void setIt2(RichInputText it2) {
    this.it2 = it2;
    public RichInputText getIt2() {
    return it2;
    public void setPfl1(RichPanelFormLayout pfl1) {
    this.pfl1 = pfl1;
    public RichPanelFormLayout getPfl1() {
    return pfl1;
    public void setF1(RichForm f1) {
    this.f1 = f1;
    public RichForm getF1() {
    return f1;
    public void setM1(RichMessages m1) {
    this.m1 = m1;
    public RichMessages getM1() {
    return m1;
    public void setD1(RichDocument d1) {
    this.d1 = d1;
    public RichDocument getD1() {
    return d1;
    public String cb1_action()
    String returnStr="error";
    System.out.println("Inside loginBtn_action");
    BindingContainer bindings=getBindings();
    OperationBinding operationBinding = bindings.getOperationBinding("checkLoginCredentails");
    Object result = operationBinding.execute();
    System.out.println(result);
    if (operationBinding.getErrors().isEmpty())
    returnStr= "success";
    System.out.println("returnStr= " + returnStr);
    return returnStr;
    private BindingContainer getBindings()
    return BindingContext.getCurrent().getCurrentBindingsEntry();
    }

  • How can to get connection at runtime?

    I use Jdev 11.1.1.4 adf JSF.
    I have 2 connection into Model.jpx.
    First I use in production and second I use in test.
    I would like to change the value of the variable name nowDate, in "Bean Variables" in Query into "View Object".
    Specifically, I'd like to change the value of nowDate either adf.currentDate, when I have choose first connection or *12/01/2010* when I have choose second connection.
    It's possible?
    I don't know how retrive the database connection used to create business components from existing database object by code and i don't know how to write the code in "Expression Editor" into "Bind Variable" of "View Object".
    Thank's a lot for any help.

    hi user2964099
    ... because I have not records with current Date into my local Database ...Maybe it is worth considering to get your data into the shape you need it (using SQL scripts), instead of making your application more complicated (possibly introducing bugs) just for this.
    ... and I do not know how to write the code in "Expression Editor" into "Bind Variable" of "View Object" for this ...In forum thread "ADF BC : how to use bind variable (default) values in UI "
    at ADF BC : how to use bind variable (default) values in UI
    I refer to the example application BindVarDefaultsInUIApp-v0.01.zip and I write about it ...
    Jan Vervecken wrote:
    note : In the example application the Bind Variables have as default value a Groovy expression like "adf.object.viewObject.fromHireDateBVarDefault".... maybe that can help.
    success
    Jan Vervecken

  • A question about the Tree Component

    I have try to use the tree component i a flash page, and
    it´s going allright until I´ll want to link the content
    to a page... WHY??
    I have tried a lot of different codes here are those I tried:
    <tree>
    <folder label="Mine own">
    <link label="My page" url="
    http://www.mickesei.se" />
    </folder>
    </tree>
    Nr2:
    <tree>
    <folder label="Mine own">
    <link label="My page" link="
    http://www.mickesei.se" />
    </folder>
    </tree>
    nr3:
    <tree>
    <folder label="Mine own">
    <link label="My page" href="
    http://www.mickesei.se" />
    </folder>
    </tree>
    nr4:
    <tree>
    <folder label="Mine own">
    <link label="My page" get URL="
    http://www.mickesei.se" />
    </folder>
    </tree>
    But nothing seems to work, when I go mouse over it still a
    arrow should it?
    HELP ME PLEASE!!! Micke

    Thanx Jeanne,
    You brought me on a idea with the UIX Developer's Guide and EXPANDABLE_EXPANDED value.
    I couldn't figure out how the expand property was filled, because it wasn't done in the ADF BC ViewObject. We have a Utility class that creates a DataObject from the ViewObject Data and here the expand property was set.
    Now it was easy to build a ExpandAll option. It is possible to access the HttpServletRequest object were the DataObject is created. By setting a attribute in the request I could react on that and give the expand property indeed the value EXPANDABLE_EXPANDED.
    Dennis

  • One Bind Variable used in multiple VOs jdev 11.1.2.3 redhat 5.8

    Hello:
    I have multiple View Objects and each view object needs to use a bind variable. I would like each VO to reference the same bind variable.
    Example: I have 3 VO and in each VO where clause I need something like emp_key = :p_emp_key, but I want only one bind variable used in each VO. Is this possible?
    So I would like to create one drop down list of values for all the employee names and have all the view objects reference the selected value key of the drop down for employees.
    Each VO should reference the same employee selected.
    What is the best way to accomplish this?
    Thanks much.

    Also, you can try the programatic way if it suits your requirement:
    1. for all 3 VO, make them extend a base class
    2. have a common property with relevant getter and setters in the base class - eg. private String myjob
    3. set this varaible from the view(page/screen - button click/dropdown selection etc) using EL
    4. in each VO using groovy to access the set variables like this -> adf.object.viewObject.myjob
    5. call execute query on requried vo

  • How i can manipulate xml  writeXML()

    I am using wirteXML() Method for creating xml from
    ADF BC Viewobject from generated xml i want to create txt file with the help of xslt but my consern is when i am creating concern file i want it align properly for that reason what i can do if is it possible to give RPAD for my view object query (i tried to give that it is working for Varchar of type but this method is not working for Number of type in this case how i can go forward )
    How to manipulate xml ,If I want add spaces in any node values of an xml file using oracle.xml.parser.v2.DOMParser
    Message was edited by:
    prabeethsoy

    Hi zxxxxwe,
    >>I need to know how to get the numbers from the phonebook
    What do you mean by "phonebook", does it mean contact list or contact history.
    Currently, there is no API to get contact history in Windows phone for privacy
    If you need to get contact information, for WP8/8.1 Silverlight, see:
    #Walkthrough: Accessing contact and calendar data for Windows Phone 8
    https://msdn.microsoft.com/en-us/library/windows/apps/hh286414(v=vs.105).aspx
    For WinRT, See:
    https://msdn.microsoft.com/en-us/library/windows/apps/windows.applicationmodel.contacts.aspx
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • JBO-25014: Another user has changed the row with primary key...

    Hello,
    could you help me please with resolving this error "JBO-25014: Another user has changed the row with primary key..." - I am just getting a row from a view by bind "filter" variable, then I am assigning new values for some of the attributes - and trying to commit ..unsuccessfully..
    View is based on Entity.
    I saw directive for setting Entity's attributes as "update after insert / update" - but this did not help me.
    Thanks in advance.

    Hi
    Please try this solutions:
    One solution is to change the ADF BC locking behavior to optimistic instead of pessimistic. Choose the AM and click the Configuration context menu option. Select the LocalAM entry and go to the Properties. Scroll down to the locking setting and change the existing entry
    If there is a trigger changing values, you need to mark those attributes (the ones that may be changed) as refresh after insert and/or refresh after update in your Entity Object.

Maybe you are looking for

  • CRVS2010 beta - Date field from database does not display in report

    Hi there - can someone please help?! I am getting a problem where a date field from the database does not display in the report viewer (It displays on my dev machine, but not on the client machines...details given below) I upgraded to VS 2010 I am us

  • I updated to my itunes to 11.1.3 now it wont open

    i updated to my itunes to 11.1.3 and now it wont open I've tried uninstalling and installing again and nothing is happening its still not opening

  • Set ajax value to the textbox[in modal box jquery]

    Hi, In my page i have one interactive report with 2 button add and edit, i have used modal box j-query for the button add and edit. Adding the data through modal box working fine. when tried to edit the existing data i am not able set the data to the

  • How to check ISA version?

    HI, We have ISA installed but I dont know how to check the version of what version of ISA is installed. It's ABAP+JAVA. Can some one help regarding this? I have tried system>>status>... nothing showing about ISA. Your help is really appreciated. Than

  • CSA 6.0 release date

    Any news on CSA 6.0? Think it was announced in May, postponed till the end of July, ????