How to Deploy Tomcat for DataSource?

I have some proplem on deploy TOMCAT4 to use Datasource.
My system:
     OS -->> windows 2000 Advance server
     DB -->> sql server 2000 enterprise edition
     jsp/servlet server -->> Tomcat4.0.4
     JDBC driver -->> Microsoft SQL Server 2000 Driver for JDBC
In order to use Datasource object of jdbc I deploy TOMCAT's server.xml like this:
     <Resource name="jdbc/mycompdb" auth="Container" type="javax.sql.DataSource"/>
          <ResourceParams name="jdbc/mycompdb">
                    <parameter>
                         <name>user</name>
                         <value>myname</value>
                    </parameter>
                    <parameter>
                         <name>password</name>
                         <value>mypassword</value>
                    </parameter>
               <parameter>
                         <name>driverClassName</name>
                         <value>com.microsoft.jdbcx.sqlserver.SQLServerDriver</value>
                    </parameter>
               <parameter>
                    <name>driverName</name>
                         <value>jdbc:microsoft:sqlserver://localhost:1433/mycompdb</value>
                    </parameter>
          </ResourceParams>
and this is my jsp code:
<html>
<head>
<title>
     myco directory
</title>
</head>
<%@ page language="java" import="java.sql.*,javax.sql.*,javax.naming.*" %>
<body>
<hl>myco employees</hl>
<table border="1" width="400">
     <tr>
          <td><b>id</b></td><td><b>name</b></td>
          <td><b>age</b></td>
     </tr>
<%
          Context ctx = new InitialContext();
          DataSource ds = (DataSource)ctx.lookup("java:comp/env/mycompdb");          
          Connection myConn = ds.getConnection();
          Statement stmt = myConn.createStatement();
          ResultSet myResultSet = stmt.executeQuery("SELECT * FROM employ INNER JOIN dept ON dept.depid = employ.dept ORDER BY dept.depid, employ.id");
          if(myResultSet != null) {
               while (myResultSet.next()) {
                    String id = myResultSet.getString(2);
                    String name = myResultSet.getString(7);          
     %>          
     <tr>
          <td><%=id %></td>
          <td><%=name %></td>
     </tr>
     <%
               } /* end while */
          } /* end if */
          stmt.close();
          myConn.close();
     %>
</table>
</body>
</html>
Now I run my server and jsp, but get this exception:
     javax.servlet.ServletException: Exception creating DataSource: com.microsoft.jdbcx.sqlserver.SQLServerDriver
I think that my code are correct and the problem are in the server.xml file.
So I changed my code for manual load the DataSource:
<html>
<head>
<title>
     myco directory
</title>
</head>
<%@ page language="java" import="java.sql.*,javax.sql.*,javax.naming.*" %>
<body>
<hl>myco employees</hl>
<table border="1" width="400">
     <tr>
          <td><b>id</b></td><td><b>name</b></td>
          <td><b>age</b></td>
     </tr>
<%
          Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
          com.microsoft.jdbcx.sqlserver.SQLServerDataSource uds = new com.microsoft.jdbcx.sqlserver.SQLServerDataSource();
          uds.setServerName("myservername");
          uds.setDatabaseName("mycompdb");
          Context uctx = new InitialContext();
          uctx.bind("mycompdb",uds);
          Context ctx = new InitialContext();
          DataSource ds = (DataSource)ctx.lookup("mycompdb");     
          Connection myConn = ds.getConnection("myname", "mypassword");
          Statement stmt = myConn.createStatement();
          ResultSet myResultSet = stmt.executeQuery("SELECT * FROM employ INNER JOIN dept ON dept.depid = employ.dept ORDER BY dept.depid, employ.id");
          if(myResultSet != null) {
               while (myResultSet.next()) {
                    String id = myResultSet.getString(2);
                    String name = myResultSet.getString(7);
     %>          
     <tr>
          <td><%=id %></td>
          <td><%=name %></td>
     </tr>
     <%
               } /* end while */
          } /* end if */
          stmt.close();
          myConn.close();
     %>
</table>
</body>
</html>
This time jsp runs correctly at first time and get an exception at second time to run. Because I have already bine the name "mycompdb" with
the DataSource object "uds" at first time.
So, it isn't a good method to load DataSource.
I want to use Tomcat load DataSource. Any one can help me to deal with it?

Here's the correct server.xml, web.xml and java code to connect
Also make sure that SQL Server 2000 user has set for "SQL Server authentication" Sometimes I found that if you try to connect using "sa" without creating a new user...you may not be able to connect...I don't know why but this is what happened to me many times so create a new user.
Server.xml
     <Resource name="jdbc/pubsDB" auth="Container" type="javax.sql.DataSource"/>
          <ResourceParams name="jdbc/pubsDB">
               <parameter>
                    <name>factory</name><value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
               </parameter>
               <!-- Maximum number of dB connections in pool. Make sure you
               configure your mysqld max_connections large enough to handle
          all of your db connections. Set to 0 for no limit.
          -->
          <parameter>
               <name>maxActive</name><value>100</value>
          </parameter>
               <!-- Maximum number of idle dB connections to retain in pool.
               Set to 0 for no limit.
          -->
               <parameter>
                    <name>maxIdle</name><value>30</value>
               </parameter>
               <!-- Maximum time to wait for a dB connection to become available
               in ms, in this example 10 seconds. An Exception is thrown if
               this timeout is exceeded. Set to -1 to wait indefinitely.
               -->
               <parameter>
                    <name>maxWait</name><value>10000</value>
               </parameter>
               <parameter><name>username</name><value>sa</value></parameter>
          <parameter><name>password</name><value>mypassword</value></parameter>
               <parameter><name>driverClassName</name>
                    <!--<value>com.microsoft.jdbcx.sqlserver.SQLServerDriver</value>-->
                    <value>com.microsoft.jdbc.sqlserver.SQLServerDriver</value>
               </parameter>
               <!--<parameter><name>driverName</name>
                    <value>jdbc:microsoft:sqlserver</value>
                    <value>jdbc:microsoft:sqlserver://localhost:1433/pubs</value>
                    <value>jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=pubs</value>
               </parameter>
               -->
               <parameter>
                    <name>url</name><value>jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=pubs</value>
               </parameter>
          </ResourceParams>
<B>web.xml</B>
     <resource-ref>
          <description>Resource reference to a factory for java.sql.Connection instances that may be used for talking to a particular database that is configured in the server.xml file. </description>
          <res-ref-name>jdbc/pubsDB</res-ref-name>
          <res-type>javax.sql.DataSource</res-type>
          <res-auth>Container</res-auth>
     </resource-ref>
Java Code to connect
public class DBT extends HttpServlet {
private static final String CONTENT_TYPE = "text/html; charset=windows-1252";
private DataSource ds = null;
private java.sql.Connection con = null;
public void init(ServletConfig config) throws ServletException {
super.init(config);
try {
          Context ctx = new InitialContext();
          ds = (DataSource)ctx.lookup(java:comp/env/jdbc/pubsDB");
System.out.println("Looking up jdbc/pubsDB");
System.out.println("Found");
catch (Exception ex) {
System.out.println("lookup failed.");
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType(CONTENT_TYPE);
PrintWriter out = response.getWriter();
java.sql.DatabaseMetaData dm = null;
     java.sql.ResultSet rs = null;
try {
          con = ds.getConnection();
          dm = con.getMetaData();
..........

Similar Messages

  • How to use Tomcat for naming services

    Hi,
    I want to use Tomcat server for a naming service,but how??.
    What i want to do is
    It will register 2 services to a the naming server.
    Later lookup for it from another code.
    I want to know how i can register the same using Tomcat...
    Thanks in Advance
    Mandrake

    http://tomcat.apache.org/tomcat-5.0-doc/jndi-resources-howto.html

  • How to deploy personalization for other langauges.

    We have added some link buttons using OA framework. We have done this for US and French languages.
    When I deploy personalization using Functional Administrator responsibility, it exported only US personalization. How do I export all the languages.
    I was able to export both using export command line tools, but we are not going to use command line method.
    Thank you.

    Check the chapter 8 "Translating Personalizations". It has provided the detailed process and command. You will have to use XLIFF Extractor and XLIFF Importer.
    --Shiv                                                                                                                                                                                                                                                                                                                                               

  • How to create infosource for datasource?

    dear all,
    how does 1 go about creating infosource for a particular datasource to update to 2 infoobjects?

    Raj,
    Thanks for your reply
    when i right click to create my infosource i input this datasource name 0EMPLOYEE_USER_ATTR
    and i get this error
    Pos. 1 of the InfoSource must be diff. to one of char.: 0123456789YZ.
    Message no. RSAR150
    any idea?

  • How to use EBW_DQ_SS for datasource 0UC_SALES_STATS_02

    Hello All,
    Could someone please guide me how to use the OLTP transaction code EBW_DQ_SS. It is mentioned in help.sap that we need to execute this t-code to update data to the delta queue of datasource 0UC_SALES_STAT_02.
    I tried running this t-code with following selections:
    Date ID: Current Date; Run ID = any key; Posting date: 1st Jan 2010 - 31st Dec 2010.
    But however much I try, no data is updated to the delta queue. (Data is available in tables ERDK and ERCH)
    Kindly help.
    Thanks & Regards,
    Labanya.

    First In BW, execute  infopackages:
    Full u2013 returns 0
    Init u2013 returns 0     
    Then Go to  R/3, run EBW_DQ_SS.  Select a date and deactivate old runs.  Select a date 1 year in the future to be sure all old runs are deactivated.  Unlock mass activity type and delete old runs. 
    Execute EBW_DQ_SS by entering your inputs.
    The above mass activity run will populate the delta queue.
    Then Run Delta Info pkg which will pull records into BW
    Thanks
    KPK

  • How to enable delta for Datasource 0HR_PT_1

    Hi BW Gurus,
    I am trying to extract records for the period from 01/05/2007 to 01/02/2007. But it is extracting all the full update records instead of extracting only this period records. I checked in R/3 using RSA3. Here it is displaying only 188 records for this period. So please suggest me how to get only this period records or else how can I enable delta to get modified/newly added records.
    Plz suggest me as  it is urgetnt.

    create a selection condition in your existing info package & give the required time period value in it & try scheduling

  • Manager password in tomcat for form based authentication

    Hi all,
    I have a jsp using form based authentication.I have set up the web.xml,server.xml and created my database with the various users and roles but when i try to deploy the application,it as for the manger username/password and when i enter what i have in the database it refuses to connect.
    Anyone has any idea what i might be doiing wrong?
    Thans in advance

    Hi,
    I'm a little confused. You wanted to know how to configure Tomcat for form based authentication, and I sent you an article on how to do that. Is there something more you need from me? You had offered 10 duke dollars for this post, and if there is more I can do I will help for the remaining amount, but I can't help you getting access to the Tomcat *.xml file.

  • Configuring tomcat for form based authentication-help badly needed

    hi , i want to have form based or some other way of authentication for the users comming to my site , i have access only to web.xml , but in tomcat documentations its giveni need to change server.xml and tomcat-user.xml , can i make these changes on web.xml to implement it or please tell me way out of this please , i tried even jguard but it needs changes in jvm which also not into my access

    Hi,
    I'm a little confused. You wanted to know how to configure Tomcat for form based authentication, and I sent you an article on how to do that. Is there something more you need from me? You had offered 10 duke dollars for this post, and if there is more I can do I will help for the remaining amount, but I can't help you getting access to the Tomcat *.xml file.

  • How to deploy EAR file in Tomcat?

    Is we can deploy ear file in tomcat?
    Normally we can deploy WAR file in tomcat webapps folder. When we run the tomat it will automatically extract the war file.
    But samethink I have tried EAR file. But it is not working.
    Is we can deploy EAR file or not?
    If not plz give reason.

    Hi
    Normally we can deploy the war file thats routene stuff ofcourse ..........but when u deploy ear file it will give problmes as ear structure and war structure are differeant
    The Tomcat Servlet/JSP Container      
    The Apache Tomcat 5.5 Servlet/JSP Container
         Apache Logo
    Links
    * Docs Home
    Contents
    * Contents
    * Introduction
    * Installation
    * Deployment
    * Source Code
    * Processes
    * Example App
    Application Developer's Guide
    Deployment
         Printer Friendly Version
    print-friendly
    version
    Background
    Before describing how to organize your source code directories, it is useful to examine the runtime organization of a web application. Prior to the Servlet API Specification, version 2.2, there was little consistency between server platforms. However, servers that conform to the 2.2 (or later) specification are required to accept a Web Application Archive in a standard format, which is discussed further below.
    A web application is defined as a hierarchy of directories and files in a standard layout. Such a hierarchy can be accessed in its "unpacked" form, where each directory and file exists in the filesystem separately, or in a "packed" form known as a Web ARchive, or WAR file. The former format is more useful during development, while the latter is used when you distribute your application to be installed.
    The top-level directory of your web application hierarchy is also the document root of your application. Here, you will place the HTML files and JSP pages that comprise your application's user interface. When the system administrator deploys your application into a particular server, he or she assigns a context path to your application (a later section of this manual describes deployment on Tomcat). Thus, if the system administrator assigns your application to the context path /catalog, then a request URI referring to /catalog/index.html will retrieve the index.html file from your document root.
    Standard Directory Layout
    To facilitate creation of a Web Application Archive file in the required format, it is convenient to arrange the "executable" files of your web application (that is, the files that Tomcat actually uses when executing your app) in the same organization as required by the WAR format itself. To do this, you will end up with the following contents in your application's "document root" directory:
    * *.html, *.jsp, etc. - The HTML and JSP pages, along with other files that must be visible to the client browser (such as JavaScript, stylesheet files, and images) for your application. In larger applications you may choose to divide these files into a subdirectory hierarchy, but for smaller apps, it is generally much simpler to maintain only a single directory for these files.
    * /WEB-INF/web.xml - The Web Application Deployment Descriptor for your application. This is an XML file describing the servlets and other components that make up your application, along with any initialization parameters and container-managed security constraints that you want the server to enforce for you. This file is discussed in more detail in the following subsection.
    * /WEB-INF/classes/ - This directory contains any Java class files (and associated resources) required for your application, including both servlet and non-servlet classes, that are not combined into JAR files. If your classes are organized into Java packages, you must reflect this in the directory hierarchy under /WEB-INF/classes/. For example, a Java class named com.mycompany.mypackage.MyServlet would need to be stored in a file named /WEB-INF/classes/com/mycompany/mypackage/MyServlet.class.
    * /WEB-INF/lib/ - This directory contains JAR files that contain Java class files (and associated resources) required for your application, such as third party class libraries or JDBC drivers.
    When you install an application into Tomcat (or any other 2.2/2.3-compatible server), the classes in the WEB-INF/classes/ directory, as well as all classes in JAR files found in the WEB-INF/lib/ directory, are made visible to other classes within your particular web application. Thus, if you include all of the required library classes in one of these places (be sure to check licenses for redistribution rights for any third party libraries you utilize), you will simplify the installation of your web application -- no adjustment to the system class path (or installation of global library files in your server) will be necessary.
    Much of this information was extracted from Chapter 9 of the Servlet API Specification, version 2.3, which you should consult for more details.
    Shared Library Files
    Like most servlet containers, Tomcat 5 also supports mechanisms to install library JAR files (or unpacked classes) once, and make them visible to all installed web applications (without having to be included inside the web application itself. The details of how Tomcat locates and shares such classes are described in the Class Loader HOW-TO documentation. For the purposes of our discussion, there are two locations that are commonly used within a Tomcat 5 installation for shared code:
    * $CATALINA_HOME/common/lib - JAR files placed here are visible both to web applications and internal Tomcat code. This is a good place to put JDBC drivers that are required for both your application and internal Tomcat use (such as for a JDBCRealm).
    * $CATALINA_BASE/shared/lib - JAR files placed here are visible to all web applications, but not to internal Tomcat code. This is the right place for shared libraries that are specific to your application.
    Out of the box, a standard Tomcat 5 installation includes a variety of pre-installed shared library files, including:
    * The Servlet 2.4 and JSP 2.0 APIs that are fundamental to writing servlets and JavaServer Pages.
    * An XML Parser compliant with the JAXP (version 1.2) APIs, so your application can perform DOM-based or SAX-based processing of XML documents.
    Web Application Deployment Descriptor
    The description below uses the variable name $CATALINA_HOME to refer to the directory into which you have installed Tomcat 5, and is the base directory against which most relative paths are resolved. However, if you have configured Tomcat 5 for multiple instances by setting a CATALINA_BASE directory, you should use $CATALINA_BASE instead of $CATALINA_HOME for each of these references.
    As mentioned above, the /WEB-INF/web.xml file contains the Web Application Deployment Descriptor for your application. As the filename extension implies, this file is an XML document, and defines everything about your application that a server needs to know (except the context path, which is assigned by the system administrator when the application is deployed).
    The complete syntax and semantics for the deployment descriptor is defined in Chapter 13 of the Servlet API Specification, version 2.3. Over time, it is expected that development tools will be provided that create and edit the deployment descriptor for you. In the meantime, to provide a starting point, a basic web.xml file is provided. This file includes comments that describe the purpose of each included element.
    NOTE - The Servlet Specification includes a Document Type Descriptor (DTD) for the web application deployment descriptor, and Tomcat 5 enforces the rules defined here when processing your application's /WEB-INF/web.xml file. In particular, you must enter your descriptor elements (such as <filter>, <servlet>, and <servlet-mapping> in the order defined by the DTD (see Section 13.3).
    Tomcat Context Descriptor
    The description below uses the variable name $CATALINA_HOME to refer to the directory into which you have installed Tomcat 5, and is the base directory against which most relative paths are resolved. However, if you have configured Tomcat 5 for multiple instances by setting a CATALINA_BASE directory, you should use $CATALINA_BASE instead of $CATALINA_HOME for each of these references.
    A /META-INF/context.xml file can be used to define Tomcat specific configuration options, such as loggers, data sources, session manager configuration and more. This XML file must contain one Context element, which will be considered as if it was the child of the Host element corresponding to the Host to which the The Tomcat configuration documentation contains information on the Context element.
    Deployment With Tomcat 5
    In order to be executed, a web application must be deployed on a servlet container. This is true even during development. We will describe using Tomcat 5 to provide the execution environment. A web application can be deployed in Tomcat by one of the following approaches:
    * Copy unpacked directory hierarchy into a subdirectory in directory $CATALINA_HOME/webapps/. Tomcat will assign a context path to your application based on the subdirectory name you choose. We will use this technique in the build.xml file that we construct, because it is the quickest and easiest approach during development. Be sure to restart Tomcat after installing or updating your application.
    * Copy the web application archive file into directory $CATALINA_HOME/webapps/. When Tomcat is started, it will automatically expand the web application archive file into its unpacked form, and execute the application that way. This approach would typically be used to install an additional application, provided by a third party vendor or by your internal development staff, into an existing Tomcat installation. NOTE - If you use this approach, and wish to update your application later, you must both replace the web application archive file AND delete the expanded directory that Tomcat created, and then restart Tomcat, in order to reflect your changes.
    * Use the Tomcat 5 "Manager" web application to deploy and undeploy web applications. Tomcat 5 includes a web application, deployed by default on context path /manager, that allows you to deploy and undeploy applications on a running Tomcat server without restarting it. See the administrator documentation (TODO: hyperlink) for more information on using the Manager web application.
    * Use "Manager" Ant Tasks In Your Build Script. Tomcat 5 includes a set of custom task definitions for the Ant build tool that allow you to automate the execution of commands to the "Manager" web application. These tasks are used in the Tomcat deployer.
    * Use the Tomcat Deployer. Tomcat 5 includes a packaged tool bundling the Ant tasks, and can be used to automatically precompile JSPs which are part of the web application before deployment to the server.
    Deploying your app on other servlet containers will be specific to each container, but all containers compatible with the Servlet API Specification (version 2.2 or later) are required to accept a web application archive file. Note that other containers are NOT required to accept an unpacked directory structure (as Tomcat does), or to provide mechanisms for shared library files, but these features are commonly available.
    Copyright © 1999-2006, Apache Software Foundation

  • How to deploy JSPs in Tomcat 5.5

    hello all
    i am Mayuresh Trivedi. i don't know how to Deploy Jsps in Tomcat 5.5. i m using MYSql as Backend. i m trying to use "import" command in Jsp so it shows me error like under :
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
    Generated servlet error:
    Syntax error on token "import", delete this token
    Generated servlet error:
    Syntax error on token "import", delete this token
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:84)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:328)
         org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:397)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:288)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:556)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:296)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:245)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.7 logs.
    so , can any body help me please ?

    hi
    first create a arbitrary folder in \webapp folder in tomcat home foder.
    for instance \webapp\myJSP
    second you must create a folder with this name : \WEB-INF under myJSP folder
    then make a web.xml in that
    so write in web.xml this :
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">
    <description>
    myJSP
    </description>
    <display-name>JSP 2.0 Examples</display-name>

  • How to deploy business objects web services on tomcat

    Hi everyone can anyone tell how i need to deploy business objects web services on tomcat, i installed business objects on unix server.what r the steps i need to follow in order to deploy web services on business objects. this web services must be called by a java program externally, that the reason i am deploying web services.
    i downloaded business objects web services portal sample zip file. the wssdkj2eeportal directory is created with ant_scripts,src, dsws.config and wsportalassemblyscripts.bat.
    i am trying to configure the dsws.config, by modifying it to
    <configuration version="1.0">
       <WebService Name="BusinessObjects Enterprise XI 3.1 sp3" Icon="image/java.gif">
          XI 3.1 Web Services
          <Connection URL="http://169.111.33.61:8080/dswsbobje/services/session" Proxy="0" Timeout="120000" />
       </WebService>
       <Proxy Name="Outside" URL="http://http-cache.mycompany.com:3667" />
    </configuration>
    what i need to do in order to deploy
    i am using bo xi 3.1 sp3

    Hi,
    You deploy all the web applications provided by BOE with the use of Wdeploy tool installed with BOE installation, for details please reffer the following document
    [BusinessObjects Enterprise XI 3.1 Web Application Deployment Guide for UNIX*|http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000715844%26_SCENARIO=01100035870000000202]
    Regards,
    Ramu.
    Edited by: Gowda Timma Ramu on Nov 9, 2010 8:39 PM

  • How to deploy the .war to tomcat

    Hello All,
                 How to deploy the war file into tomcat server & work? Can any body enlighten me how to proceed and test the application?

    Hi,
    assumed you talk about Tomcat in general.
    Simply copy you archive (xyz.war) into the subdir \webapps of your tomcat installation.
    Invocation: http://hostname:port/xyz/resource
    -> where xyz is the name of your archive and
    -> resource is what you have specified within web.xml (<servlet-mapping> - tag) or a jsp / html you have in your archive.
    -> host is your machine (try localhost for instance)
    -> port usually is 8080
    Hope that helps
    M.

  • Hi team, please help me how to deploy creative cloud desktop application through SCCM for an enterprise

    Hi team, please help me how to deploy creative cloud desktop application through SCCM for an enterprise

    Moving this discussion to the Enterprise Deployment for Creative Cloud, Creative Suite forum.

  • How to deploy BI  on EHP1 for SAP NetWeaver Composition Environment 7.1

    Hello Gurus,
    i have installed SAP NetWeaver 7.01 SR1 SP3 ABAP Trial Version  at home on vista 32 bits.
    it's running well...
    next i have installed EHP1 for SAP NetWeaver Composition Environment 7.1 - Preview Version
    and follow this guide :
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b057d7e3-b89e-2b10-1e9e-c426e967f8e1
    the portal is running well....coooool.. ( http//:localhost:50100/irj/portal)
    after i follow this documentation to create some cubes on BI abap trail (client 001).
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/4096b8fc-6be7-2a10-618e-b02a5e5e798f
    i create my report with the query designer,
    and i see my bi report with transaction RSRT and ABAP WEB tab ( http://localhost:80000)
    it's running well....whaooouuu !!!!
    Now i'm lost, i would like to deploy my bi report on the portal, but i don't know what i must do.
    ( and when i try with the query designer or rsrt + java web i have a error message )
    - perhaps create an user communication  between portal/bi abap  where ?
    - how to deploy bi java on portal (EHP1 for SAP NetWeaver Composition Environment 7.1)
    by the way, i can't find the bi post install template in the configuration wizard on the the portal...
    thank's for your help.
    Florent,
    Edited by: Florent BUTTY on Mar 24, 2009 1:43 PM

    Hi,
    Can you please tell me what is the diff between 7.01 & 7.1? if you can share any docs, is highly appreciated.
    Thanks,
    Kiran

  • How to refer field of DataSource in transfer rule for DSO object  in BI 7.0

    hello Gurus,
    I am new to BI 7.
    pls tellme how to refer field of DataSource in transfer rule for DSO object.
    I will assign points to proper answer.
    Praveen.

    hi praveen,
    when u create the transformation for the DSO, it asks for the source. in that you enter your datasource, then you get the datasource fields on one side and the rules in the middle and the DSO objects on the other side. whichever field of DataSource you want to refer in tranformation rule, just connect that field to the rule for the required object of the DSO.
    hope this will help you.
    regards
    vaibhav

Maybe you are looking for

  • QM usage decision error

    hi QM gurus, in tcode QA11 i cannot do the usage decision, it says you have not completed all characteristic. what shall i do to correct this. can anyone pls give me specific instructions on what to do.. thank you so much.

  • Print Workbench

    Hi guru's, I am implementing SAP LSO recently. I want to use the Print Workbench(Collections) to create an email with a Attachment(NOT PDF Format). How can I do that? for example: When learner book a course, system will send a email(with attachment i

  • Lotus Notes menu bar issue

    Hi, Although I'm able to start Lotus Notes on OS 10.8 (after installing the Java bundle of OS X), the menu bar is completely unresponsive (but I actually do see LN menu bar items) : I really don't understand what's going on.. Lotus Notes 8.5.2 for Ma

  • JPCAP: Network Device Information Display

    hi i am using JPCAP to display network device information.. but, problem i am getting with following code is that it works only on first JComboBox value change and then, Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException occurs.. i

  • Where have all the people gone?

    Several years ago (5+) all the other web-tier forums (JSP,JSTL,Servlets) were flooded with questions everyday. So why are they so quiet nowadays? Does this reflect the trend of moving towards different technologies like web-services and SOA or are pe