Ajax and JSTL Query possible?

Hi all ! I want to know if this is possible and if you have an example you could show. So far Im trying like this:
function ajaxFunction(){
     alert("ajaxFunction");
     var ajaxRequest;  // The variable that makes Ajax possible!
     try{
          // Opera 8.0+, Firefox, Safari
          ajaxRequest = new XMLHttpRequest();
     } catch (e){
          // Internet Explorer Browsers
          try{
               ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
          } catch (e) {
               try{
                    ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
               } catch (e){
                    // Something went wrong
                    alert("Your browser broke!");
                    return false;
     // Create a function that will receive data sent from the server
     ajaxRequest.onreadystatechange = function(){
          if(ajaxRequest.readyState == 4){     
          appendOptionLast(ajaxRequest.responseText);
     //var age = document.getElementById('age').value;
     //var wpm = document.getElementById('wpm').value;
     //var sex = document.getElementById('sex').value;
     //var queryString = "?age=" + age + "&wpm=" + wpm + "&sex=" + sex;
     //alert("Antes open");
     ajaxRequest.open("GET", "/TWC/Comun/Ajax.jsp", true);
     //alert("Despues open");
     ajaxRequest.send(null);
}And here is my JSP thats doing the query.
<%@page contentType="text/html"%>
<%@ page import="beans.*,java.util.*" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix=”sql” %>
<%@page pageEncoding="ISO-8859-1"%>
<sql:setDataSource dataSource=”jdbc/TWC” />
<sql:query var=”qryItems” >
    SELECT User_ID
    FROM product
    ORDER BY nombre
</sql:query>
<c:forEach var=”row” items=”${qryItems.rows}”>
     User: <c:out value=”${row.User_ID}” /><br> 
</c:forEach>Thanks!

thanks guys but I finally got it to work with JSTL and ajax.
The only "weird" thing is that when I parse the data to my JSP I get a bunch of white spaces at the end of each value for each field. Here is my code:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
<sql:setDataSource dataSource="jdbc/TWCApp" />
<sql:query var="producto">
select ITEMDESC AS name,IV00101.ITEMNMBR AS Number,USCATVLS_2 AS category,USCATVLS_1 AS Brand,
USCATVLS_3 AS Type,CURRCOST AS Invoice_price,
QTYONHND AS Stock_number, IV00102.LOCNCODE AS Location
from TWC.dbo.IV00101 JOIN TWC.dbo.IV00102 ON IV00101.ITEMNMBR=IV00102.ITEMNMBR
WHERE IV00101.ITEMNMBR = '${param.product}' AND IV00102.LOCNCODE = '${param.location}'
</sql:query>
<c:forEach items="${producto.rows}" var="row">
${row.name},${row.number},${row.category},${row.brand},${row.type},${row.Invoice_price},${row.Stock_number},${row.Location}
</c:forEach>Here is my JS:
ajaxRequest.onreadystatechange = function(){
          if(ajaxRequest.readyState == 4){     
          appendOptionLast(ajaxRequest.responseText);
function appendOptionLast(valor)
  //alert(valor);
  //var elOptNew = document.createElement('option');
  var elSel = document.getElementById('category_producto');
  var mySplitResult = valor.split(",");
  document.form1.nombre_producto.value=mySplitResult[0];
  document.form1.numero_producto.value=mySplitResult[1];
  document.form1.category_producto.value=mySplitResult[2];
  document.form1.brand_producto.value=mySplitResult[3];
  document.form1.type_producto.value=mySplitResult[4];
  document.form1.invoice_producto.value=mySplitResult[5];
  document.form1.stocknumber_producto.value=mySplitResult[6];
  if(mySplitResult[6]>0){
  document.form1.stock_producto.value="Available"
  else{document.form1.stock_producto.value="Out of stock"
  document.form1.location_producto.value=mySplitResult[7];So how I can get rid of all those extra spaces at the end of each value?
thanks!
Edited by: juanmanuelsanchez on Apr 2, 2010 11:29 PM
Edited by: juanmanuelsanchez on Apr 2, 2010 11:32 PM

Similar Messages

  • JSF 1.2 and JSTL 1.2

    Now that JSF 1.2 and JSTL 1.2 both use the new unified EL is it possible to use them together? I know they could be used together before but it was discouraged. I'm mostly interested in the functions and the loops (although Trinidad seems to be working pretty well).

    Thanks... I have switched over to facelets but I am getting the same problem:
    <ui:composition template="./../WEB-INF/layout.xhtml">
       <ui:define name="menu">
               <ui:include src="./flightMenu.xhtml" />
       </ui:define>
       <ui:define name="content">
         <h:panelGrid border="0" columns="1" style="width:100%">
            <h:form>
              <rich:tabPanel switchType="ajax" 
                  valueChangeListener="#{flightBean.flightTabPanel.valueChanged}"
                  binding="#{flightBean.flightTabPanel.tabPanel}" id="tab_panel">
                  <f:valueChangeListener type="org.richfaces.TabChangeListener" />
                  <rich:tab name="test" label="test">
                          <h:outputText value="bla bla" />
                  </rich:tab>
                  <ui:repeat var="tabb" value="#{flightBean.flightTabs}">
                          <rich:tab name="#{tabb.fltNum}" >
                                  <h:outputText value="bla bla" />
                          </rich:tab>
                  </ui:repeat>
              </rich:tabPanel>
            </h:form>
         </h:panelGrid>
       </ui:define>
    </ui:composition>The probem is that the tabb.fltNum method is not being invoked... If anyone has been able to build dynamic tabs using RichFaces using a similar approach I will like to see how you did it...
    BRgds, Paul

  • Verity - files and db query combo

    Is it possible to have both a search of some files and a
    query of a database table in the same cfcollection? If so, guidance
    on how to do this?

    I'm not sure if this answers your question, but it's possible
    to combine database and files while indexing.

  • JSTL Query Performance

    I have a simple JSP page that performs a SELECT query and displays the returned results. There are only ten records being returned, yet it takes about five seconds to finish loading every time (even on reloads). The actual data is very little (literally, a few sentences), so I don't know what's causing this slow performance. Any help would be appreciated.
    The code:
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
    <%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql_rt" %>
    <%@ include file="include/header.jspf" %>
    <sql:setDataSource var="datasource"
    driver="com.microsoft.jdbc.sqlserver.SQLServerDriver"
    url="jdbc:microsoft:sqlserver://localhost;DatabaseName=testDB"
    user="sa" password="" />
    <sql:query var="wines" dataSource="${datasource}">
         SELECT categories.catcode, brand, intro, catname
         FROM products, categories
         WHERE products.catcode =  categories.catcode
         AND categories.catcode = 1
    </sql:query>
    <c:forEach items="${wines.rows}" var="row">
            <p><c:out value="${row.catname}" /></p>
         <p><c:out value="${row.brand}" /></p>
            <p><c:out value="${row.intro}" /></p>
    </c:forEach>
    <%@ include file="include/footer.jspf" %>

    Not at all.
    You use the alternative setDataSource argumernt, specifying a datasource, or a JNDI name for the datasource, rather than the connection info you have right now.
    Yes, you have to configure a JNDI datasource on your server (not completely trivial) but once that is done, you're away laughing.
    <sql:dataSource="myDataSource"/>
    Examples of tomcat setup and JSTL here:
    http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html
    With regards to using the JSTL sql tags, my understanding is that it is not recommended. JSPs should not include database code - that should be encapsulated in a DataAccessObject (dao). However if you DO use it (for prototyping, or small basic apps) then you should use the JNDI approach rather than specifying connection details.

  • How many query possible in 1 second at Sql Server ?

    Hello
    I have 30,000 records. Table have 10 columns. Columns have indexes if column at where condition. And select question will give 20-30 records as result. (select column1, column2,...... column10 from table where columnSecondID=2I. I will use hosting standart
    plane. 
    How many query possible in 1 second at Sql Server 2008 ?
    How many query possible in 1 second at Sql Server 2012 ?
    How many user can visit my web site ?

    Hello
    I have 30,000 records. Table have 10 columns. Columns have indexes if column at where condition. And select question will give 20-30 records as result. I will use hosting standart plane. 
    How many query possible in 1 second at Sql Server 2008 ?
    How many query possible in 1 second at Sql Server 2012 ?
    How many user can visit my web site ?
    That's hard to say. One second for CPU is quite high time and CPU can do lot of work in that time. again, this is relative and depends on what the query is.
    The biggest bottleneck in performance is - Disk IO system. In general, if  the required data is in memory, it can help significantly in improving the performance.
    Remember, CPU will be doing other processing work while it is fetching the data from disk.
    What you need to is  - load test or stress your server. There are some tools available for you to do it. 
    RML : https://support.microsoft.com/en-us/kb/944837?wa=wsignin1.0
    distributed replay : https://msdn.microsoft.com/en-us/library/ff878183.aspx
    to test IO : http://www.brentozar.com/archive/2008/11/storage-performance-testing-with-sqlio/
    read this : http://www.brentozar.com/archive/2012/06/load-test-sqlserver/
    You also need to look at Max worker thread limitations. this depends on the server configuration(64 bit/32 bit) and other factors...
    https://technet.microsoft.com/en-us/library/ms187024%28v=sql.105%29.aspx
    one problem that can happend is thread pool starvation where there are too many connections
    happening if your server cannot keep up with the workload.. like if your cpu is working in processing the queries and cannot accept new connections..
    watch this good youtube video on thread pool starvatioin :
     https://www.youtube.com/watch?v=XJ67oHBM2Hw
    Hope it Helps!!

  • Navigation block and the Query Table Side by side in output

    Hi
    I am unable to get the navigation block and the query table side by side when i execute the WAD .Is it possible to place those 2 objects next to each other in the WAD output.In the WAD design those 2 are placed side by side.
    Regards,Pra

    I meant Html Table:
    In WAD in menu you can choose Insert -> Table -> Insert Table
    You need 1 row, 2 columns. In one of the column you should put navigation block and in the other table.
    Regards
    Erwin
    Edited by: Erwin  Buda on Feb 5, 2009 2:06 PM

  • Hi! Everyone, I have some problems with JOIN and Sub-query; Could you help me, Please?

    Dear Sir/Madam
    I'm a student who is interested in Oracle Database and
    I have some problems with JOIN and Sub-query.
    I hope so many of you could help me.
    if i use JOIN without sub-query, may it be faster or not?
    SELECT field1, field2 FROM tableA INNER JOIN tableB
    if i use JOIN with sub-query, may it be faster or not?
    SELECT field1,field2,field3 FROM tableA INNER JOIN (SELECT field1,field2 FROM tableB)
    Thanks in advance!

    Hi,
    fac30d8e-74d3-42aa-b643-e30a3780e00f wrote:
    Dear Sir/Madam
    I'm a student who is interested in Oracle Database and
    I have some problems with JOIN and Sub-query.
    I hope so many of you could help me.
    if i use JOIN without sub-query, may it be faster or not?
    SELECT field1, field2 FROM tableA INNER JOIN tableB
    if i use JOIN with sub-query, may it be faster or not?
    SELECT field1,field2,field3 FROM tableA INNER JOIN (SELECT field1,field2 FROM tableB)
    Thanks in advance!
    As the others have said, the execution plan will give you a better idea about which is faster.
    If you're trying to see how using (or not using) a sub-query affects performance, make the rest of the queries as similar as possible.  For example, include field3 in both queries, or ignore field3 in both queries.
    In this particular case, I guess the optimizer would do the same thing either way, but that's just a guess.  I can't see your execution plans.
    In general, simpler code is faster, and better in other ways, too.  In this case
    tableB
    is simpler than
    (SELECT field1, field2  FROM tableB)
    Why do you want a sub-query in this example?

  • Patch for 9iAS and JSTL?

    The following message was posted in the OC4J Forum. Our latest thoughts for fixing the problem revolve around hopes of upgrading the OC4J component in 9.0.2.0.1 in Enterprise Edition (Solaris) to 9.0.3. Is this possible?
    Thanks
    Todd
    --------- Original Post ------------
    NullPointerException using JSTL
    I currently have OAS Enterprise Edition 9.0.2.0.1 on Solaris installed. I have a web application which utilizes Tiles and JSTL. When I run my application through JDeveloper 9.0.3, both Tiles and JSTL tags work. However, when I deploy to Oracle Enterprise Manager and try to run my application, Tiles tags work but JSTL tags do not. Instead, I get the following error:
    500 Internal Server Error
    OracleJSP:
    JSP Error:
    Request URI:/edd/helloworld.jsp
    Exception:
    java.lang.NullPointerException
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:279)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:292)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:292)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:292)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
    at oracle.jsp.parse.JspUtils.loadClassJDK(JspUtils.java:219)
    at oracle.jsp.parse.JspUtils.loadClass(JspUtils.java:209)
    at oracle.jsp.parse.JspRTTag.(JspRTTag.java:102)
    at oracle.jsp.parse.JspParseState.createTagParser(JspParseState.java:410)
    at oracle.jsp.parse.JspParseTag.parseNextTag(JspParseTag.java:538)
    at oracle.jsp.parse.JspParseTagFile.parse(JspParseTagFile.java:160)
    at oracle.jsp.parse.OracleJsp2Java.transform(OracleJsp2Java.java:40)
    at oracle.jsp.runtimev2.JspPageCompiler.attemptCompilePage(JspPageCompiler.java:295)
    at oracle.jsp.runtimev2.JspPageCompiler.compilePage(JspPageCompiler.java:171)
    at oracle.jsp.runtimev2.JspPageInfo.compileAndLoad(JspPageInfo.java:338)
    at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:481)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:255)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:407)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:330)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    My JSP looks like:
    <%@ taglib prefix="c" uri="/jstl-c" %>
    <%@ taglib prefix="tiles" uri="/tiles" %>
    <html>
    <head><title>hello world</title></head>
    <body>
    <table>
    <c:forEach begin="1" end="5">
    <tr>
    <td>
    Hello world!<br><br>
    The current time is: <%= System.currentTimeMillis() %>
    </td>
    </tr>
    </c:forEach>
    </table>
    </body>
    </html>
    The relevant lines of my web.xml are:
    <taglib>
    <taglib-uri>/tiles</taglib-uri>
    <taglib-location>/WEB-INF/tlds/struts-tiles.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/jstl-c</taglib-uri>
    <taglib-location>/WEB-INF/tlds/c.tld</taglib-location>
    </taglib>
    The TLD files do exist in /WEB-INF/tlds/
    After doing some research into this issue, I haven't found a solution, but I get the feeling this is a bug that has been patched or will be patched soon. Is there a patch out, and if so, where is it?
    ------- Follow-on Question about upgrading OC4J in 9.0.2.0.1 ---------
    Upon further investigation we found bug 2698206 that seems to be the relevant bug. The bug has been fixed in 9.0.3. It is my understanding that the only certified version of Enterprise Edition is 9.0.2.0.1.
    1) Is there a newer version of Enterprise Edition (9.0.3 or 9.0.4)?
    2) If not, can we upgrade the OC4J in 9.0.2.0.1 to 9.0.3? (our sysadmins need this somewhat certified, otherwise we can't upgrade our production servers).
    3) Any other ideas?
    Thanks
    Todd

    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=179240.1
    If you are using Forms and/or Reports, you'll want to install Patch 15 too.

  • Architecture question: Integrating AJAX and STRUTS

    I'm slowly growing in familiarity with STRUTS and I have the basics of AJAX down, certainly as far as the request-response-parse-do something useful with the data paradigm goes.
    My question is more about best practices in using an AJAX enable front-end with a STRUTS-based back-end.
    In a nutshell, each user action is handled by a STRUTS action subclass. Requests are picked up by the STRUTS front controller and passed on to the handler for processing. The handler is then able to tell the controller which jsp/resource to send back to the user.
    With AJAX, we are (generally) making specific data requests. We are essentially asking for data based on a set of parameters passed through on the request.
    In the case of a dynamic search table (containing no business logic), the AJAX request is simply asking for a set of results that match some parameters supplied in the criteria form.
    What should handle that data request?
    I was thinking about a specific "data-server" set of classes which STRUTS can pass AJAX requests to.
    NOTE: I'm thinking about this from the perspective of a new development, not tacking on to an existing application.
    Thoughts, anyone?

    So let me broaden the question slightly? What are the
    best practices for implementing an AJAX solution with
    STRUTS? I have looked around on the net but not found
    anything that constructive yet.
    Suggestions and/or pointers welcome.I have played around with AJAX just to understand how the technology works and how ajax can be integrated into a j2ee (or any other for that matter) web application. I havent worked on a project which has analyzed the best practises/pitfalls of ajax and implemented a solution.
    Having said that, here's my take -
    Ajax, as far as I know and have seen is a 'view' thinggy - enhanced user experience, lesser clicks, blah blah. The underlying XMLHttpRequest technology is just another way to hit the server with a request. And as I said before, once the server receieves a request, it really doesnt/shouldnt matter where and how the request originated from - it could a tunelled http request (as from an applet/swing app), a normal http request from a browser or a XMLHttpRequest (read ajax). The server validates incoming params if any and performs business logic.
    And here's when the similarity ends. The response (or the view) is entirely dependent on the 'requestor'. For browsers, the server would emit html, wap for cellphones, objects to a swing/applet program (possibly).
    The point I am trying to make is that this (the view part) is where you'll have to concentrate on tweaking (using the so called best practises) for ajax requests. For instance, there are a set of ajax tags already that you could reuse in your jsps which help developers build cool ajax enabled apps.
    (See http://ajaxtags.sourceforge.net/)
    There however are a few standard best practises for using ajax itself (and this is at a general ajax as a technology level) - see for example
    http://www-128.ibm.com/developerworks/library/j-ajax1/?ca=dgr-lnxw01Ajax
    ram.

  • Verifying and parsing "query" in cm:select query="..." ...

    I'm writting a session EJB that's passed a param (String query) which is supposed
    to be any valid "query" string passed to the cm:select tag (see "http://edocs.bea.com/wlcs/docs31/p13ndev/jsptags.htm#1057716"
    for more info on this tag and the query param).
    My problem is this: I don't think I should write ALL the stuff to validate and
    parse this string because bea has already done it in: com.beasys.commerce.foundation.expression.*;
    but the only source of documentation available on those classes is the Javadoc(which
    isn't that complete). Has anyone used these classes before(Search, Expression,
    Criteria, Logical)? Does anyone know of some documents on how to use them?
    Please help if you can. I'd really appreciate it. Thanks.

    rajan please just google or search SDN. there are large number of post for this..
    to give you a head start: for using a particular index in the select query a %_HINTS ORACLE 'INDEX clause is added

  • I've recently been given a macbook pro from uni, with lots of adobe software on. I want to pair it with my iMac which has music etc and is it possible to get the software to the imac and the files to the macbook?Giving me the best of both :-)

    I've recently been given a macbook pro from uni, with lots of adobe software on. I want to pair it with my iMac which has music etc and is it possible to get the software to the imac and the files to the macbook?Giving me the best of both :-)

    You would need the original installation disks or files for the Adobe software to get it onto your iMac, and having it on two computers may not be allowed by your university's licensing. Talk to whoever issued the MacBook.
    As to the music, just copy it over to the MacBook, either via Home Sharing, file sharing, or an external storage medium (hard drive, USB flash drive, etc.).
    Regards.

  • Insert and update query to calculate the opening and closing balance

    create table purchase(productid number(5) ,dateofpurchase date,
    qty number(5));
    create table inventory(invid number(5),productid number(5),
    idate date,openingqty number(5),closingqty number(5));
    Records in inventory:
    1,1,'01-jan-2009', 10, 20
    2,1,'03-jan-2009', 20, 30
    3,1,'04-jan-2009', 40, 50
    when I enter the purchase invoice for 15 qty on 02-jan-2009
    after say '15-jan-09' , a new record should get inserted
    with opening balance = (closing balance before 02-jan-2009)
    and all the opening and closing balance for that product should
    get affected.
    If the invoice for 20 qty is entered for the existing date say
    '03-jan-2009' in inventory , then the closing balance
    for 03-jan-2009 should get updated and all the following records
    should get affected.
    I need the insert for the first one and update query for the
    second one.
    Vinodh

    <strike>You can do this in one statement by using the merge statement</strike>
    Hmm, maybe I spoke too soon.
    Edited by: Boneist on 25-Sep-2009 13:56
    Thinking about it, why do you want to design your system like this?
    Why not simply have your purchases table hold the required information and then either work out the inventory on the fly, or have a job that calls a procedure to add a row for the previous day?
    If you continue with this design, you're opening yourself up to a world of pain - what happens when the data doesn't match the purchases table? Also when is the inventory cut-off to reset the opening/closing balances? Monthly? Annually? Weekly? If it's set to one of those, what happens when the business request the inventory for a particular week?
    Edited by: Boneist on 25-Sep-2009 13:59

  • HT204053 Good Morning, I have 2 Apple Account, will be possible to integrate each other in one account ? And if is possible, How can I do that ? Thanks, Fabio.

    Good Morning, I have 2 Apple Account, will be possible to integrate each other in one account ? And if is possible, How can I do that ? Thanks, Fabio.

    You don't have to do anything with the first iPod that you don't use anymore. If you are planning on keeping it, put in a drawer in your house and forget about it.
    You don't need a second account to use with the new iPod. I use one Appl e ID and iTunes library for two iPods, and two iPad. I have different content on all four devices. You can select exactly what you want to sync to each device and it can be different content on all devices.

  • HT1311 i have american account but i just now have 0.61$ and i have another gift card from uk.i want to use it but itunes said i have to change my country and its not possible before i spend all my money.my question is how i can spend a 0.61$ ?

    i have american account but i just now have 0.61$ and i have another gift card from uk.i want to use it but itunes said i have to change my country and its not possible before i spend all my money.my question is how i can spend a 0.61$ ?

    If you are now in the UK then you can try contacting iTunes support and see if they can remove the balance from your account : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Assigning a new tax key for V0 and VAT not possible

    Hi Experts,
    Invoice is been created successfully in SUS , XML transfered to XI which in turn created the IDOC in ECC.
    I get the below error while transferring theinvoice IDOC from XI to ECC.
    Assigning a new tax key for V0 and VAT not possible
    Message no. FD008
    Diagnosis
    In Financial Accounting customizing, the tax ID transferred in the invoice is missing so that the system cannot determine a tax code. The system could not determine an entry with the value V0 nor with the value VAT .
    Procedure
    In Financial Accounting customizing, include the external tax ID and a corresponding internal tax code for the present partner.
    Please let me know if I am missing any setup in ECC as I have already maintained the setup in OBCA, OBCD and OMRY.
    Thanks,
    -Devi Swain

    Hi Devi,
    Can you please tell me ,how you resolved this issie,I am getting same error.I I have already maintained the setup in OBCA, OBCD and OMRY.
    Thanks,
    -Sunil

Maybe you are looking for