Using a form to submit data to database

I have a servlet and I am trying to implement a form in the page so that it will submit from a text box a string into the database. Here is my code.
java.util.Date d = new java.util.Date();
          java.sql.Timestamp t = new java.sql.Timestamp(d.getTime());
          String data = "";
          out.println("<form method=get>");
          out.println("Enter Data: ");
          out.println("<input type=text name='data' >");
          out.println("<input type=submit value=Submit>");
          out.println("</form>");
          // Insert Data
          PreparedStatement pst = con.prepareStatement("INSERT INTO FOO (NAME,DATE_MODIFIED) VALUES(?,?)");
          pst.setString(1, data);
          pst.setTimestamp(2, t);
          pst.executeUpdate();
I believe this is incorrect in the <form> code. I do not know how to INSERT the data that is submitted from the <form>.

You need to separate the servlet code from the HTML code.
First you create an HTML page with the HTML form:
<form method="get" ACTION="myservletname">
Enter Data:
<input type=text name='data' >
<input type=submit value=Submit>
</form>
Then you create the servlet which will read the request object with the parameter called "data".
And then you input that value into a database.
Visit the servlet tutorials in the Sun site.
-AJD

Similar Messages

  • How to use one form to submit data to 2 tables on mysql

    Can someone please help me on this,
    I am developing a jsp website and I want to use one form to submit data to 4 tables on mysql database and the tables are related by one foreign key.
    Can someone bail me out of this ....I've hit a hard brick wall!!!!...

    kwesij wrote:
    Can someone please help me on this,
    I am developing a jsp website and I want to use one form to submit data to 4 tables on mysql database and the tables are related by one foreign key.
    Can someone bail me out of this ....I've hit a hard brick wall!!!!...What's the problem? What does a brick wall look like?
    Connect to the database and execute four SQL INSERT/UPDATE statements as a single unit of work. The fact that you have one form shouldn't be an issue.
    I'll bet you're having trouble because you haven't layered the problem either in code or in your mind.
    I'd recommend that you write a POJO to take in some objects and execute the SQL. Once you have that running successfully you can worry about the form. Decouple the two.
    Computer science is all about decomposing large problems into smaller ones.
    %

  • I have manually inputted data into a blank spreadsheet and would like to use a form to enter data into that sheet !!! How do I do that please

    I have manually inputted data into a blank spreadsheet and would like to use a form to enter data into that sheet !!! How do I do that please

    Leigh,
    After creating your table, Tap the Tab marked "+" and select "Form" - you will be asked which table to use. (You should get into the habit of naming your tables - if the table name isn't visible, select the table and tap the Styles (Brush) Menu > Table > Turn ON table Name, then double tap on the Table to edit it.)
    Select the table you wish to to fill with a form and you will see a new form based on the header data.
    The form will allow you to add one row at a time and when you get to the last row, there is an option at the bottom of the form to add a new row using the "+" button. At the top of the form is the row header which you can rename by double tapping.
    You can also rename the form on the Tab by double tapping on the name.
    Try it out.

  • Problem about using Oracle Form 6i to connect Oracle Database 10g express.

    Sorry to interrupt all of you.
    I have encountered a problem about using Oracle Form 6i to connect Oracle Database 10g express.
    As I would like to
    I use Oracle Net8 Easy Config to create a connection.
    According to "tnsnames.ora", the paramater of connection is as follows;
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA = (SID = XE))
    Unfortunately, when I use Oracle Net8 Easy Config to test the connection, an error message is prompted as follows:
    Connecting....
    The test did not succeed.
    ORA-03106: fatal two-task communication protocol error
    There may be an error in the fields entered
    or the server may not be ready for a connection.
    You can check the server and retry, or continue.
    After I google it, I still have no idea how to solve the problem. I would like to ask, could anyone mind providing some hints or solution to address the issues.
    Thanks for your assistance in advance.

    I don't believe the Net8 Easy Config (NEC) will create a compatible entry in the tnsnames.ora. I have Forms 6i running successfully against a 10g Express database, but I did not use the NEC - I created the entry myself. Here is the entry I use:
    XE=
      (DESCRIPTION=
        (ADDRESS=
          (PROTOCOL=TCP)
          (HOST=<<servername or IP address>>)
          (PORT=1521)
        (CONNECT_DATA=
          (SERVER=dedicated)
          (SERVICE_NAME=XE)
      )Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Help needed: clarifying the use of beans to pass data from database to JSP

    Hi everyone,
    I am sure you all get fed up with being asked this question as I can see it is asked a lot when googled, but the answers given have not cleared things up for me.
    Anyway, I have a JSP page that contains a text box, submit button and a select box of size 10. The user enters a search string and the form submits the data and reloads the same page. From the code you can see the Name property of the bean is set.
    <jsp:useBean id="vtm" class="FinalYearProject.Types.VtmType" scope="page" />
    <jsp:setProperty name="vtm" property="NM" value="${param.NM}" />I then need to be able to use that name to query a postgresql database. I have a JDBCConnector class with the method:
        public ResultSet searchTable(String NM ) throws SQLException {
            String[] names = NM.split(" ");
            NM = "";
            for(int i = 0; i < names.length; i++) {
                NM = names[i] + "%";
            return stat.executeQuery("SELECT * FROM vtm WHERE nm ILIKE '" + NM + "';");
        }This method however can be changed.
    My question really is what is the best way for me to take the name, get the resultset and pass back the VtmType objects to the jsp so that I can populate my select box, and where should each part be handled i.e. the JSP page, the VtmType, the JDBCConnector.
    I may be going about it completely the wrong way and using beans incorrectly, but I just cant seem to get my head around the problem.
    Any help would be much appreciated,
    Thanks.

    Hi,
    Thanks for the help, I actually found some literature about the JSP Model 2 and realised that was what I needed to do. I have now re-written everything and it has made my life a lot eaiser, typically this was before I checked back on this post though!
    Anyway, I now have JSP pages requesting Servlets which create beans and call classes that access the database. The servlet then forwards the beans and where necessary a small of html to another JSP. Like you have suggested.
    One problem I have now however, is that the user needs to be logged in to access some of the pages. An error page with the correct message is displayed to the user when it is processed via the servlet.
    //Servlet detects an error
    request.setAttribute("errorMsg", "1");
    gotoPage("/loginError.jsp", request, response);
    //JSP detects which errorMsg to display
    <c:set var="errorMsg" value="${requestScope.errorMsg}" />However, when the user does not sign in and clicks a link which is blocked the JSP forwards directly to the error JSP.
    //Tests to see if user is logged in
    <c:if test="${empty user.username}">
        <jsp:forward page="/loginError.jsp">
            <jsp:param name="errorMsg" value="3" />
        </jsp:forward>
    </c:if>The problem with this is that the only way I can see of checking the errorMsg type is with:
    //JSP checks which errorMsg to display
    <c:set var="errorMsg" value="${param.errorMsg}" />Which is different to how I determine the errorMsg from the Servlet. Is there a way of getting the errorMsg type that is the same for both actions?
    Thanks.

  • Using Access forms after migrating data to Oracle

    Hi,
    One of the features provided by the original Migration Workbench appears to be the ability to modify a migrated Access database to use an ODBC connection to Oracle so that the original forms could still be used. I have just been through the process of migrating the demo Northwind database into Oracle using the SQL Developer Migration Workbench but this doesn't appear to be an option.
    I am missing something or is this feature not available using the migration tools in SQL Developer?
    And if it is missing what would be the easiest way to achieve this? From my limited exposure to Access converting the Northwind application manually appears to be rather painful.
    Many thanks,
    Vince

    Hi Vince,
    As you have correctly stated, the option to modify an MS Access database for the purpose of using the original forms is not available in Oracle SQL Developer Migration Workbench. As this option is no longer available, the easiest way to achieve the same result is to manually update your MDB file to reference the migrated Oracle tables. Once your MS Access Forms are referencing the link tables, you can continue using the forms as before. I would suggest doing the following:
    NOTE: These steps should only be carried out after you have migrated your tables from Access to Oracle using Oracle SQL Developer Migration Workbench. I would also recommend that you take a back-up of your MDB file before carrying out the following steps...just to be on the safe side!
    1. Create a new System DSM (using the ODBC Data Source Administrator dialog, via the Control Panel > Administrative Tools on your OS), using the connection details to access the newly migrated Oracle database schema. Test the connection, to ensure it's working correctly.
    2. Open your MDB file in database view - double-click the MDB file, holding down the Shift key.
    3. Remove the original Access tables.
    4. Using the Insert > Table menu item in MS Access, start the New Table wizard and create Link Tables to each of the migrated tables in your Oracle schema. NOTE: Rename the Link Table(s) so it matches the original Access table name. This will save you from having to edit each of the Forms, to change the Record Source it's based on. The form will still have a reference to the original table name, so by reusing the same name your form should just continue working as before. The only difference is that the data is being retrieved from the Oracle database now!
    If you have any questions regarding any of the above information, just respond to this thread & I'll get back to you.
    I hope this helps.
    Regards,
    Hilary

  • Acrobat 9-Want to use single form, not for data collection

    I have created a form that I want to give to my employees using Acrobat 9 Pro. The only options I see are to send the files and let them use them to re-submit. I don't need the information back. This is merely a checklist of information that they can keep for themselves for the project they are on. It will be stored on the file server accessable and editable at any time. If I save the form and open it from somewhere else using Adobe Reader, I can fill in the form fine, but if I save it after having changed it, it loses its "Advanced" form functions (mostly checkboxes and textboxes) and I cannot edit the form anymore.
    I just want to be able to create a form that can be opened, then "save as" for each employee to save their own copy per job.
    Thanks!

    ... and 7 is using oracle 8.1.7 client.From your sales representative. 8i is no longer available for downloading,because desupported since many years.
    Werner

  • Using .csv file and adding data into database

    hi,
    i'm working on a project which shows all the share prices on a webpage from the FTSE100..
    my problem is..i connect to yahoo.co.uk to get my share price information which is updated every 15mins..they return a .csv file to me...at the moment, i am just printing the information onto my website, but is there any way that i could store this information into a database if i needed the data to be used elsewhere...thanx for the help in advance

    below is my code which i used to get my info onto the web...i'd just like to know how i would use this to store the data into a database..
    import java.net.*;
    import java.io.*;
    import java.lang.*;
    import java.util.*;
    public class SharePrice
         private String line;
         private int maxShares = 101;//maximun shares a user can have
         private int details = 5;//five details, name,date,time,price,change.
         public String [][] shareData = new String[maxShares][details];
    public SharePrice(String [] shares) throws Exception
              getShare(shares);
         //returns a double array containing share data of each share as a seperate row in the array
    public String [][] getShare(String [] sh) throws Exception
                   for(int i=0; i<sh.length; i++)
                        //if the entry is null we have reached the end of the array
                        if(sh!=null)
                             String share = sh[i];
                             //part of url of the resource
                             String address ="http://uk.finance.yahoo.com/d/quotes.csv?s=";
                             //adds the share tothe url so that particular shares data is retieved
                             address = address+share;
                             System.out.println(address);
                             try
                                  //connection is created to the resource and input stream opened to read data
                                  URL url = new URL(address);
                                  BufferedReader in = new BufferedReader(
                                            new InputStreamReader(
                                            url.openStream()));
                                  line = in.readLine();
                                  in.close();
                             }catch(Exception e){System.err.println("Exception: " + e.getMessage());
                                  e.printStackTrace();}
                             //the line of data retrieved is spli and placed in a single row of the array
                             //beause the each piece of data is seperated by commas it is easily seperated.
                             StringTokenizer t = new StringTokenizer(line, ",");
                             int count = t.countTokens();
                             System.out.println(" count= "+count);
                             while(t.hasMoreTokens())
                                  for(int j=0; j<count; j++)
                                       String s = t.nextToken();
                                       shareData[i][j] = s;
              return shareData;

  • Problem populating html form fields with data from database.

    I'm using a straight forward piece of code to populate a form with data from a database, to create and 'edit record' page. The code is as follows;
    TO RETREVE THE DATA FROM THE DATABASE;
         $query = "SELECT * FROM $table WHERE newsletter_id = '$newsletter_id'" ;
         mysql_select_db($database) ;
         $result = mysql_query($query, $connect);
         $numRows = mysql_num_rows($result);
         $dbnewsletter_title = mysql_result($result,$i,'newsletter_title');
    TO POPULATE THE FORM FEILD;
    <tr>
              <td width="140"><p class="admin">Newsletter title</p></td>
              <td><input name="newsletter_title" type="text" <? print "value=$dbnewsletter_title";}?> /></td>
            </tr>
    However, when I view the page, the string shows in the text feild, but seems to be split at the point of the first space. So basically only the first word of the string shows in the text field. If I try to print '$dbnewsletter_title' outside of the table, the string is shown in full as it should be.
    Does anyone know what is causing this problem?
    Many Thanks

    Put the value in quotes:
    <?php print "value='$dbnewsletter_title'"; ?>

  • Field validation using distributed form's "Submit Form" built-in function

    Hello,
    I am hoping someone can help me out with a small problem I'm having. I have a hidden field on a form which is the total of other numeric values on the form with code in place so that if the number doesn't equal what it should, the alert box is displayed. The problem is that it's a distributed form and even though the message is displayed, if you hit submit (Built-in Submit Form) button form on a second attempt, it submits anyway. So the question is, how do I change the built-in API submit button code to catch the error? Because it's a distributed form, am I dealing with global variables vs. form level? I've tried using the "event.rc = false" at the form level to no avail. I can't seem to locate the built-in "submit form" code so that I can change that to make this APP work. Or is there a better way to do this. My validation code is below and I would greatly appreciate anyone's help.
    Thanks,
    Tom
    // JScript source code if (this.getField("RankGame1").value > 0 &&     this.getField("RankGame2").value > 0 &&     this.getField("RankGame3").value > 0 &&     this.getField("RankGame4").value > 0 &&     this.getField("RankGame5").value > 0 &&     this.getField("RankGame6").value > 0 &&     this.getField("RankGame7").value > 0 &&     this.getField("RankGame8").value > 0 &&     this.getField("RankGame9").value > 0 &&     this.getField("RankGame10").value > 0 &&     this.getField("RankGame11").value > 0 &&     this.getField("RankGame12").value > 0 &&     this.getField("RankGame13").value > 0 &&     this.getField("RankGame14").value > 0 &&     this.getField("RankGame15").value > 0 &&     this.getField("RankGame16").value > 0)     {       if (this.getField("RankGameTotal").value == 136) {         } else {         event.rc = false;         app.alert("Please check your confidence points. They should add up to 136, but are adding up to " + this.getFiel         ("RankGameTotal").value + ".");        }     } else { }

    try67,
    Thanks for your reply. When you say to "remove the Submit action, and submit the form yourself inside your code" are you refering to the
    distributed forms "Submit Form" button displayed on the purple tool bar of the distributed form? And if so, could you please let me know how I can do that? I've
    looked into that and haven't found an answer. Doing that would solve my problem of having my own submit code acting correctly and the
    distributed forms "Submit form" code not having any idea about my forms desired field value.
    Thanks again,
    Tom

  • Using interactive form to capture data from user u0096 please helpu0085.

    Hi folks,
         I am trying to use an interactive form to capture some data from the user.
    This is what I have planned to do
    User runs a program which will have four function module calls
    (FP_JOB_OPEN
    FP_FUNCTION_MODULE_NAME
    'Function modules which the above function module returned'
    FP_JOB_CLOSE)
    This will display a print box where I can click on the print preview to get the interactive form.
    From here I am not sure how to go about, but following is what I can think …
    Once the user enters the data in the form and he should be given some button to click(say ‘save’). This button click should trigger the program (PAI) which will read the data from the form (this data will be saved to a Z table)..
    First of all, Can I do this? Please guide…
    Note: I am not using WebDynpro ABAP or JAVA. Rather I am trying to use a Module pool + interactive form solution.
    Thanks in advance

    could you tell me how to read data from the form ? which function module(s) to be used ?

  • Using a paramter to fetch data from database

    Hello SAP,
    Is there a way to use a parameter that takes in the employee ID and have it fetch from the database the employee name.  Just to note, the tables that I am using in this report do not link to the employee table that contains the employee name. I just want to be able to use a parameter that can fetch me the name from the database dynamically so that it prints in the report header. 
    Is this possible?
    Thanks in advance,
    Z

    Thanks for your responses all.
    I tried what you've recommended. I tried but it didn't seem to work.  Perhaps I misunderstood so please let me know if I did.  I'll elaborate a bit more of what I'm looking to achieve.
    I have a report that gives information that pertains to an employee.  The three tables in the report have no reference to the employee table (meaning I cannot link the Emp ID field to any field of the three tables).  We as the firm know based on coding within the three tables which employee the records within the report beloing to.
    So basically, I want to be able to display the employee's full name in the Report Header by using a parameter.  I want to enter the employee ID in the parameter field and have it display the employee name in the report header.
    I tried to insert the Employee table in my report as the only "unlinked" table in my report.  I tried to create a formula as:
    @Employee Name
    if {?Emp ID} = {Employee table. Emp ID} then
    {Employee Name}
    This resulted in as a null value when I inserted it into the report header.
    I also tried creating a formula as such:
    @Employee Name (2nd)
    BeforeReadingRecords;
    Global StringVar FullName;
    if {?Emp ID} = {Employee table. Emp ID} then
    FullName:={Employee Name};
    This did not work either as the error message stated the field {Employee table.Emp ID} must be evaluated later.
    If I'm heading in the wrong direction can someone steer me back into the right direction? 
    Sastry, if I need to use the Add Command feature to fetch the data, is there a way to dynamically insert the parameter value in the SQL so that only the record that you want to be brought back into your report comes back?
    Thanks again to all!
    Z
    Edited by: Zack H on Jan 19, 2009 8:34 PM

  • Using Toplink API to persist data to database

    My requirement is to persist data to the database (oracle) using Toplink Java API approach.
    I have a basic setup program, but its not solving the purpose.
    Kindly let me know where I am missing.
    package sample;
    import oracle.toplink.essentials.descriptors.ClassDescriptor;
    import oracle.toplink.essentials.descriptors.RelationalDescriptor;
    import oracle.toplink.essentials.internal.sessions.DatabaseSessionImpl;
    import oracle.toplink.essentials.mappings.DirectToFieldMapping;
    import oracle.toplink.essentials.queryframework.DatabaseQuery;
    import oracle.toplink.essentials.sessions.Login;
    import oracle.toplink.essentials.sessions.UnitOfWork;
    public class EmployeeProject extends oracle.toplink.essentials.sessions.Project
    private ClassDescriptor classDescriptor;
    public EmployeeProject()
    applyPROJECT();
    applyLOGIN();
    classDescriptor = buildEmployeeDescriptor();
    addDescriptor(classDescriptor);
    System.out.println("classDescriptor.getMappings(): " + classDescriptor.getMappings());
    protected void applyPROJECT(){
    setName("Employee");
    protected void applyLOGIN()
    oracle.toplink.essentials.sessions.DatabaseLogin login = new oracle.toplink.essentials.sessions.DatabaseLogin();
    login.setDriverClassName("oracle.jdbc.OracleDriver");
    login.setConnectionString("jdbc:oracle:thin:ptyagi-pc.idc.oracle.com:1521:orcl");
    login.setUserName("system");
    login.setPassword("orcl");
    // Configuration Properties
    setDatasourceLogin((Login)login);
    // SECTION: DESCRIPTOR
    public ClassDescriptor buildEmployeeDescriptor() {
    RelationalDescriptor descriptor = new RelationalDescriptor();
    // specify the class to be made persistent
    descriptor.setJavaClass(sample.Employee.class);
    // specify the tables to be used and primary key
    descriptor.addTableName("EMP1");
    descriptor.addPrimaryKeyFieldName("EMP1.ID");
    // Descriptor Properties
    descriptor.useSoftCacheWeakIdentityMap();
    descriptor.setIdentityMapSize(100);
    descriptor.setAlias("Employee");
    // Mappings
    DirectToFieldMapping idMapping = new DirectToFieldMapping();
    idMapping.setAttributeName("id");
    idMapping.setFieldName("EMP1.ID");
    descriptor.addMapping(idMapping);
    DirectToFieldMapping nameMapping = new DirectToFieldMapping();
    nameMapping.setAttributeName("name");
    nameMapping.setFieldName("EMP1.NAME");
    descriptor.addMapping(nameMapping);
    DirectToFieldMapping salMapping = new DirectToFieldMapping();
    salMapping.setAttributeName("salary");
    salMapping.setFieldName("EMP1.SALARY");
    descriptor.addMapping(salMapping);
    return descriptor;
    public static void main(String [] args) {
    EmployeeProject empProj = new EmployeeProject();
    Employee emp = new Employee();
    emp.setID(1);
    emp.setName("Pulkita");
    emp.setSalary(100);
    DatabaseSessionImpl databaseSessionImpl = new DatabaseSessionImpl(empProj);
    databaseSessionImpl.login();
    databaseSessionImpl.beginTransaction();
    UnitOfWork unitOfWork = databaseSessionImpl.acquireUnitOfWork();
    unitOfWork.registerNewObject(emp);
    unitOfWork.commit();
    }

    The issue is with the line:
    databaseSessionImpl.beginTransaction();Since you began the transaction yourself you must also commit it. The easiest solution is to remove the above line and allow the UnitOfWork to begin and commit the transaction itself.
    Doug

  • How to create a thread safe and concurrent form that updates data to database.

    Hi ,
    I am creating an application which will store information from 4 or 5 text boxes in the database.
    At the same instance of time atleast 300 users will be trying to update to the  database.
    That is trying to execute the same code.
    I am worried if there will be any issue of object lockign or my page giving some error or performance issue.
    How can I solve this issue.
    Regards
    Vinod

    SQL Server manages simultaneous access to data itself, when it comes to executing a single query. It locks/unlocks tables/records automatically. So, if you are using a single UPDATE, INSERT or DELETE command, usually you won't need anything to take care
    of synchronization, but a problem named "Concurrency issue" which I explained a little ahead.
    However, if you are updating more than one table, you must use transactions, so that your changes are applied atomically. This can be done both in database level in T-SQL and also in application level in C#, VB, etc.
    In T-SQL you want to use BEGIN TRAN, COMMIT TRAN, ROLLBACK TRAN commands and in C# you want to use TransactionScope.
    You should pay attention that, transactions indeed have a hit on the performance of your database. But using them is indispensable. To prevent performance degradation, you have to tune your database and queries which itself is another big topic.
    One thing that is more important is a problem known as concurrency issue.
    If more than one user tries to update a single record, each one might overwrite the update of another user without being even notified of this. Suppose user A and B both try to update a record. They are not aware of each other working with the application.
    They open a record in edit mode in the application. Edit it and then click the "Save" button. When the application saves the record with the data provided by each user, one data will be lost definitely. Because it will be overwritten with the data
    another user has provided and his Save command, executes later than the first user.
    There are multiple ways to avoid concurrency issue. One of them is using Timestamp (old method) and RowVersion (newer method) column in a table. They can help you detect a change in a record since its last time read. But they are unable to detect what column
    or columns are changed.
    You can get better answers for this if you ask a solution for concurrency issue in a SQL Server forum.
    Regards
    Mansoor

  • Using bmp to get the data from database

    Hi!
    I'm testing different clients ask for the same data by bmp. But when I use
    WLS6.1 console to monitor the entity beans, the "Beans In Use Count" and the
    "Cached Beans Current Count" for one entity bean keep increasing, though I'm
    trying to retrieve the same data for several times. Entity beans can stay
    in memory and be reused, right? Maybe I'm wrong. I'm confused by the
    monitor console. Could anyone tell me the correct concept or the meaning of
    the monitor indicates? Thanks a lot.
    Hattie

    If db-is-shared is set to false and you are using a find by pk then it
    should pull from cache.
    Peace,
    Cameron Purdy
    Tangosol Inc.
    << Tangosol Server: How Weblogic applications are customized >>
    << Download now from http://www.tangosol.com/download.jsp >>
    "Hattie" <[email protected]> wrote in message
    news:3c056cfc$[email protected]..
    Hi!
    I'm testing different clients ask for the same data by bmp. But when Iuse
    WLS6.1 console to monitor the entity beans, the "Beans In Use Count" andthe
    "Cached Beans Current Count" for one entity bean keep increasing, thoughI'm
    trying to retrieve the same data for several times. Entity beans can stay
    in memory and be reused, right? Maybe I'm wrong. I'm confused by the
    monitor console. Could anyone tell me the correct concept or the meaningof
    the monitor indicates? Thanks a lot.
    Hattie

Maybe you are looking for

  • Help Desk - Project Management Add-on

    Background:  We currently offer a third party e-commerce solution for our clients called Four51.   Four51 is integrated into our SAPB1 platform.   We provide comprehensive print managment and marketing fulfillment programs for medium and large sized

  • How to estimate the time needed for unicode conversion

    Experts: I am going to perform an upgrade from 46C (non-unicode) to ECC6/EHP4. In the action plan , it's hard to estimate the time needed for unicode conversion. We do not have a sandbox to benchmark that time. Could you please help share your experi

  • I Tunes not recognizing the I Pod, I Pod is frozen.

    Hi thank you for Holping me with the Error 1417 and 1418, Before i can try thos solutions I have A new problum. I Tunes is not recognizing the I Pod, and I Pod is frozen on the "Do not disconnect" screen. Thanks DELL   Windows XP   3.2 Ghz Pentium D

  • Related to SRM PO

    Hello friends,                         We are using SRM 5.0 ECS scenario.  This problem has been discussed many times in this forum and I read many solutions given by experts but still my problem has been not solved. When I am creating a PO in SRM po

  • Proxy to JDBC Sync, with Idoc Receiver

    Hello all, I have to set up following synchronous scenario. PROXY -> PI -> JDBC   |   JDBC -> PI -> PROXY                                        JDBC -> PI -> IDOC In other words, I need that the response from the JDBC Receiver adapter is sent back t