WAP/Servlet help is needed URGENT!!!

I've wrote this little wap-application, which update the library loans via mobile phones. I don't know why my login doesn't work properly (it gives error-messages in any cases). I believe I did everything right.
Can anyone PLEASE help me finding my mistakes!? I give all my dukes for working version of mine application.
This are my codes:
Servlet-class
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.sql.*;
import java.util.*;
public class Uusinta extends HttpServlet {
Connection conn;
String TUNNUS = "2000000112222";
String user = null;
boolean yhteys = false;
static String [] otsikko = {
"<?xml version=\"1.0\" encoding=\"utf-8\"?>",
"<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.3//EN\" \"http://www.wapforum.org/DTD/wml13.dtd\"> " ,
"<wml>" ,
"<!-- Possible <head> elements here. --> " ,
"<template>" ,
"<do type=\"accept\" label=\"Ok\" name=\"back\" >" ,
"<prev/>" ,
"</do>" ,
"</template>" ,
"<card id=\"welcome\" title=\"WAP-kirjasto\" newcontext=\"true\">" ,
"<do type=\"accept\" name=\"back\"><noop/>" ,
"</do>" ,
"<p align=\"center\"><strong>TERVETULOA</strong></p>",
"<p><br/>Kirjastokortin numero:<br/>" ,
"<input type=\"text\" name=\"numero\" size=\"11\" format=\"*N\" maxlength=\"13\"/><br/>" ,
"Salasana:<br/>" ,
"<input type=\"text\" name=\"salasana\" size=\"4\" format=\"*N\" maxlength=\"4\"/><br/>" ,
"<a href=\"skripti.wmls#Login('$(numero)','$(salasana)','kayttaja')\">Sisaan </a></p>" ,
"</card>" ,
"<card id=\"loginError\">" ,
"<do type=\"prev\" label=\"Back\">" ,
"<go href=\"#welcome\"/>" ,
"</do>" ,
"<p align=\"center\"><br/>Korttinumero tai salasana on vaara.</p>" ,
"</card>" ,
"<card id=\"lainat\" newcontext=\"true\">" ,
"<do type=\"accept\" name=\"back\"><noop/>" ,
"</do>" ,
"<do type=\"options\" label=\"Lopeta\">" ,
"<go href=\"#goodbye\"/>" ,
"</do>" ,
"<p><b>Lainatut kirjat:</b></p><p> " ,
"<select name=\"item\" title=\"Lista\">"};
static String [] r2 = {
"</select>" ,
"<br/><a href=\"skripti.wmls#uusiNide('$(item)','valittu')\">Uusi valittu</a><br/>" ,
"<a href=\"skripti.wmls#uusiKaikki()\">Uusi kaikki</a></p>" ,
"</card>" ,
"<card id=\"virhe\">" ,
"<p>Kirjan uusiminen ei onnistunut. Yrit&#xE4; uudelleen.</p>" ,
"</card>" ,
"<card id=\"uusittu\">" ,
"<do type=\"prev\" label=\"Back\">",
" <go href=\"#lainat\"/>",
"</do>",
"<p align=\"center\"><br/>Kirja on uusittu.</p>" ,
"</card>" ,
"<card id=\"virheet\">" ,
"<p>Kirjojen uusiminen ei onnistunut. Yrit&#xE4; uudelleen.</p>" ,
"</card>" ,
"<card id=\"uusitut\">" ,
"<do type=\"prev\" label=\"Back\">",
" <go href=\"#goodbye\"/>",
"</do>",
"<p align=\"center\"><br/>Kirjat on uusittu.</p>" ,
"</card>" ,
"<card id=\"goodbye\" newcontext=\"true\">" ,
"<do type=\"accept\" name=\"back\"><noop/>" ,
"</do>" ,
"<p align=\"center\"><br/>Kiitos k�ynnist�. Ja tervetuloa uudelleen.</p>" ,
"</card>" ,
"</wml>"};
private void teeWML(PrintWriter out)
Statement stmt;
ResultSet result;
boolean ok = false;
for (int i = 0; i <otsikko.length;i++)
     out.println(otsikko);
     if(yhteys)
try {
stmt= conn.createStatement();
result = stmt.executeQuery("Select * FROM lainat l join kirja k on l.nide = k.nide where tunnus = '"+this.user+"'");
int cnt = 1;
while(result.next())
          ok = true;
               String nimi ="";
     if(result.getString("nimi").length() > 8)
     nimi = result.getString("nimi").substring(0,8) + "...";
     else
     nimi = result.getString("nimi");
          out.println("<option value=\""+result.getString("l.nide")+"\">"+nimi+":"
          result.getString("erapaiva")"</option>");
result.close();
stmt.close();
}catch (SQLException ex) {
System.out.println ("\nSQLException:");
while (ex != null) {
System.out.println ("SQLState: "+ ex.getSQLState());
System.out.println ("Message: "+ ex.getMessage());
System.out.println ("Vendor: "+ ex.getErrorCode());
ex = ex.getNextException();
else
          out.println("<option value=\"0\">nothing</option>");
     for (int i = 0; i <r2.length;i++)
          out.println(r2[i]);
out.close();
private void uusiNide(PrintWriter out, String nide)
Statement stmt;
ResultSet result;
boolean ok=false;
     try {
stmt= conn.createStatement();
result = stmt.executeQuery("Select nide from lainat where tunnus='"+user+"' ");
int cnt = 1;
while(result.next())
          ok = true;
result.close();
stmt.close();
     if(ok)
          String pvm = getPvm();
          stmt = conn.createStatement();
          int a = stmt.executeUpdate("update lainat set erapaiva='"+pvm+"' where tunnus='"+user+"' AND nide='"+nide+"'");
}catch (SQLException ex) {
System.out.println ("\nSQLException:");
while (ex != null) {
System.out.println ("SQLState: "+ ex.getSQLState());
System.out.println ("Message: "+ ex.getMessage());
System.out.println ("Vendor: "+ ex.getErrorCode());
ex = ex.getNextException();
     if(ok) {
     out.println("<!doctype html public \"-//w3c//dtd html 4.0 transitional//en\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">");
          out.println("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><title>koe</title></head><body><p>OKnide</p></body></html>");
private void uusiKaikkiNiteet(PrintWriter out)
Statement stmt;
ResultSet result;
boolean ok=false;
//t�h�n tulee viel� korttinumero
     try {
          String pvm = getPvm();
     stmt = conn.createStatement();
          int a = stmt.executeUpdate("update lainat set erapaiva='"+pvm+"' where tunnus='"+user+"'");
}catch (SQLException ex) {
System.out.println ("\nSQLException:");
while (ex != null) {
System.out.println ("SQLState: "+ ex.getSQLState());
System.out.println ("Message: "+ ex.getMessage());
System.out.println ("Vendor: "+ ex.getErrorCode());
ex = ex.getNextException();
if(ok) {
          out.println("<!doctype html public \"-//w3c//dtd html 4.0 transitional//en\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">");
          out.println("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><title>koe</title></head><body><p>OKKaikki</p></body></html>");
private void tarkKayttaja(PrintWriter out, String kayttaja, String password)
Statement stmt;
ResultSet result;
boolean ok=false;
String nimi = null;
if(user !=null && password !=null)
int salasana = Integer.parseInt(password);
try {
stmt= conn.createStatement();
result = stmt.executeQuery("Select * from kortti where numero='"+kayttaja+"' and salasana="+salasana);
while(result.next())
          ok = true;
          nimi = result.getString("nimi");
}catch (SQLException ex) {
     System.out.println ("\nSQLException:");
     while (ex != null) {
     System.out.println ("SQLState: "+ ex.getSQLState());
     System.out.println ("Message: "+ ex.getMessage());
     System.out.println ("Vendor: "+ ex.getErrorCode());
     ex = ex.getNextException();
     if(ok) {
               this.user= kayttaja;
               yhteys = true;
               //teeWML(out);
     out.println("<!doctype html public \"-//w3c//dtd html 4.0 transitional//en\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">");
          out.println("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><title>koe</title></head><body><p>OK</p></body></html>");
          //out.close();
     teeWML(out);
public void init(ServletConfig cfg) throws ServletException
try{
Driver d = (Driver)Class.forName("com.mysql.jdbc.Driver").newInstance();
String sCon = "jdbc:mysql://localhost/kirjasto?user=oppilas&password=oppix";
conn = DriverManager.getConnection(sCon);
}catch(Exception e){
System.out.println ("Exception: "+ e.getMessage());
throw new ServletException(e.getMessage());
public void doGet(HttpServletRequest req, HttpServletResponse res)
throws IOException, ServletException
PrintWriter out = null;
     String kutsu = req.getParameter("toiminto");
     String uusinta = req.getParameter("uusinta");
     String password = req.getParameter("password");
     String kayttaja = req.getParameter("user");
     if (kutsu == null) {
     res.setContentType("text/vnd.wap.wml");
     out = res.getWriter();
          tarkKayttaja(out, null, null);
     if(kutsu.equalsIgnoreCase("login")) {
     res.setContentType("text/html");
     out = res.getWriter();
          tarkKayttaja(out, kayttaja, password);
     if(kutsu.equalsIgnoreCase("uusi")) {
     res.setContentType("text/html");
     out = res.getWriter();
          uusiNide(out, uusinta);
     if(kutsu.equalsIgnoreCase("uusiKaikki")){
          res.setContentType("text/html");
          out = res.getWriter();
          uusiKaikkiNiteet(out);
public void destroy()
try{
conn.close();
}catch(SQLException e){
System.out.println ("\nSQLException:");
System.out.println ("SQLState: "+e.getSQLState());
System.out.println ("Message: "+ e.getMessage());
System.out.println ("Vendor: "+ e.getErrorCode());
public String getPvm()
     Calendar x = Calendar.getInstance();
     x.add(Calendar.DATE, 30);
          int Day = x.get(Calendar.DAY_OF_YEAR);
          Day = Day+30;
          x.set(Calendar.DAY_OF_YEAR, Day);
          int monthDue = x.get(Calendar.MONTH);
          int dayOfMonthDue = x.get(Calendar.DAY_OF_MONTH);
          int yearDue = x.get(Calendar.YEAR);
               System.out.println(yearDue+"-"+monthDue+"-"+dayOfMonthDue);
          return (yearDue+"-"+monthDue+"-"+dayOfMonthDue);
skriptit.wmls
extern function uusiNide(prmIn,valittu) {
     var str, result, okInd, pInd;
     str = "http://localhost:8080/kirjasto/loans?toiminto=uusi&uusinta=" +URL.escapeString(prmIn);
     var load = URL.loadString(str,"text/html");
     okInd =String.find(load, "OKnide");
     if( okInd != -1 ) {
          result = WMLBrowser.setVar(valittu, prmIn);
          WMLBrowser.go("#uusittu");
     else {
          WMLBrowser.go("#virhe");
     return "";
extern function uusiKaikki() {
     var str, result, okInd, pInd, val, valittu;
     str = "http://localhost:8080/kirjasto/loans?toiminto=uusiKaikki&uusinta=";
     var load = URL.loadString(str,"text/html");
     okInd =String.find(load, "OKKaikki");
     if( okInd != -1 ) {
          WMLBrowser.go("#uusitut");
     else {
          WMLBrowser.go("#virheet");
     return "";
extern function Login(prmNum, prmPass, kayttaja) {
     var str, result, okInd, pInd, pos, nimi;
     str = "http://localhost:8080/kirjasto/loans?toiminto=login&user="+URL.escapeString(prmNum)+"&password="+URL.escapeString(prmPass);
     var load = URL.loadString(str,"text/html");
     okInd =String.find(load, "OK");
     if( okInd != -1 ) {     
          pos = String.find(load, "</p");
          nimi = String.subString(load,(okInd + 7), (pos - okInd -7));
          result = WMLBrowser.setVar(kayttaja, nimi);
          WMLBrowser.go("#lainat");
     else {
          WMLBrowser.go("#loginError");
     return "";
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
'http://java.sun.com/j2ee/dtds/web-app_2_3.dtd'>
<web-app>
<display-name>Verkkopizzeria</display-name>
<servlet>
<servlet-name>Vastaa</servlet-name>
<servlet-class>Vastaa</servlet-class>
</servlet>
<servlet>
<servlet-name>Uusinta</servlet-name>
<servlet-class>Uusinta</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Vastaa</servlet-name>
<url-pattern>/vastaa</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>Uusinta</servlet-name>
<url-pattern>/loans</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>
DB create and inserts
create table kortti(
numero char(13) not null,
nimi char(25),
osoite char(25),
postinro int(5),
puhelin char(15),
salasana int(4),
primary key(numero)
create table kirja(
nide char(10) not null,
nimi char(25) not null,
tekija char(25) not null,
vuosi int(4) not null,
primary key(nide)
create table lainat(
tunnus char(13) not null,
nide char(10) not null,
erapaiva date not null,
primary key (tunnus, nide),
foreign key (tunnus) references kortti,
foreign key (nide) references kirja );
insert into kortti
(numero, nimi, osoite, postinro, puhelin, salasana)
values
('2000000112222', 'Aku Ankka', 'Akunkatu 11', 00980, '0401231234', 2222);
insert into kortti
(numero, nimi, osoite, postinro, puhelin, salasana)
values
('2000000113333', 'Roope Set�', 'Mikonkatu 11', 00100, '0405552223', 3333);
insert into kortti
(numero, nimi, osoite, postinro, puhelin, salasana)
values
('2000000114444', 'Mikki Hiiri', 'Kissankuja 5', 00930, '04009876545', 4444);
insert into kortti
(numero, nimi, osoite, postinro, puhelin, salasana)
values
('2000000115555', 'Ville Vallaton', 'Mestarinrinne 4', 00310, '0952223335', 5555);
insert into kirja
(nide, nimi, tekija, vuosi)
values
('1111-85555','Wap', 'Pekka Niskanen', 2000);
insert into kirja
(nide, nimi, tekija, vuosi)
values
('1111-45345','Java 2', 'Pekka Niskanen', 2002);
insert into kirja
(nide, nimi, tekija, vuosi)
values
('1111-64648','J�rki ja tunteet', 'Jane Austin', 1998);
insert into kirja
(nide, nimi, tekija, vuosi)
values
('1111-15671','Rikos ja rangastus', 'Leo Tolstoy', 1998);
insert into kirja
(nide, nimi, tekija, vuosi)
values
('1111-85554','Inside Wap', 'Pekka Niskanen', 2002);
insert into lainat
(tunnus, nide, erapaiva)
values
('2000000112222', '1111-85555', '2004-5-01-11');
insert into lainat
(tunnus, nide, erapaiva)
values
('2000000112222', '1111-45345', '2004-5-01-11');
insert into lainat
(tunnus, nide, erapaiva)
values
('2000000112222', '1111-64648', '2004-5-01-12');
insert into lainat
(tunnus, nide, erapaiva)
values
('2000000113333', '1111-85554', '2004-5-01-11');
insert into lainat
(tunnus, nide, erapaiva)
values
('2000000114444', '1111-15671', '2004-5-01-12');

So many things wrong with this post... from [url http://www.catb.org/~esr/faqs/smart-questions.html#urgent]How to Ask Questions the Smart Way:
Don't flag your question as ?Urgent?, even if it is for you
That's your problem, not ours. Claiming urgency is very likely to be counter-productive: most hackers will simply delete such messages as rude and selfish attempts to elicit immediate and special attention.
There is one semi-exception. It can be worth mentioning if you're using the program in some high-profile place, one that the hackers will get excited about; in such a case, if you're under time pressure, and you say so politely, people may get interested enough to answer faster.
This is a very risky thing to do, however, because the hackers' metric for what is exciting probably differ from yours. Posting from the International Space Station would qualify, for example, but posting on behalf of a feel-good charitable or political cause would almost certainly not. In fact, posting ?Urgent: Help me save the fuzzy baby seals!? will reliably get you shunned or flamed even by hackers who think fuzzy baby seals are important.
If you find this mysterious, re-read the rest of this how-to repeatedly until you understand it before posting anything at all.
Be precise and informative about your problem
Describe the symptoms of your problem or bug carefully and clearly.
Describe the environment in which it occurs (machine, OS, application, whatever). Provide your vendor's distribution and release level (e.g.: ?Fedora Core 1?, ?Slackware 9.1?, etc.).
Describe the research you did to try and understand the problem before you asked the question.
Describe the diagnostic steps you took to try and pin down the problem yourself before you asked the question.
Describe any recent changes in your computer or software configuration that might be relevant.
Do the best you can to anticipate the questions a hacker will ask, and to answer them in advance in your request for help.
Simon Tatham has written an excellent essay entitled How to Report Bugs Effectively. I strongly recommend that you read it.
Volume is not precision
You need to be precise and informative. This end is not served by simply dumping huge volumes of code or data into a help request. If you have a large, complicated test case that is breaking a program, try to trim it and make it as small as possible.
This is useful for at least three reasons. One: being seen to invest effort in simplifying the question makes it more likely that you'll get an answer, Two: simplifying the question makes it more likely you'll get a useful answer. Three: In the process of refining your bug report, you may develop a fix or workaround yourself
And from [url http://www.thejword.com]The J Word:
Code Tags
When you post code, please use [code] and [/code] tags as described in Formatting Help on the message entry page. It makes it much easier to read.

Similar Messages

  • Please help me need urgent help on JPA connectio

    Hi,
    In my current assignment I'm trying to connect a remote MS Access database using JPA. But I'm not able to connect to database in my desktop itself .
    Below is my code let me know if I'm doing something wrong.
    persistence.xml
    =========
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence">
    <persistence-unit name="hello-world" transaction-type="RESOURCE_LOCAL">
    <provider>oracle.toplink.essentials.ejb.cmp3.Ent it yManagerFactoryProvider</provider>
    <class>Dao.UserDetails</class>
    <properties>
    <property name="toplink.jdbc.user" value=""/>
    <property name="toplink.jdbc.password" value=""/>
    <property name="toplink.jdbc.url" value="jdbcdbc:ds_userdsn"/>
    <property name="toplink.jdbc.driver" value="sun.jdbc.odbc.JdbcOdbcDriver"/>
    <property name="toplink.ddl-generation" value="create-tables"/>
    </properties>
    </persistence-unit>
    </persistence>
    UserAuth.java
    =========
    package DaoLayer;
    import javax.persistence.EntityManager;
    import javax.persistence.EntityManagerFactory;
    import javax.persistence.Persistence;
    import Dao.UserDetails;
    public class UserAuth {
    public static void main(String[] args) {
    String UserId="system1";
    String password="t12121";
    EntityManager em = null;
    try {
    EntityManagerFactory emf=Persistence.createEntityManagerFactory("hello-world");
    em = emf.createEntityManager();
    em.getTransaction().begin();
    UserDetails us=new UserDetails();
    us.setUserId(UserId);
    us.setPassword(password);
    em.persist(us);
    em.getTransaction().commit();
    em.close();
    System.out.println("Persisted");
    finally{
    if(em != null){
    System.out.println("hi");
    * ds_userdsn is the user dsn created
    * Also Class of the object to be persisted is properly created.
    ================
    I'm getting the below error
    [TopLink Info]: 2010.11.26 04:08:32.846--ServerSession(2773808)--TopLink, version: Oracle TopLink Essentials - 2.0.1 (Build b04-fcs (04/11/2008))
    Exception in thread "main" Local Exception Stack:
    Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.0.1 (Build b04-fcs (04/11/2008))): oracle.toplink.essentials.exceptions.DatabaseExcep tion
    Internal Exception: java.sql.SQLException: No data found

    user9235741 wrote:
    In my current assignment I'm trying to connect a remote MS Access database using JPA. Generally that is a nonsense statement.
    In standard database terminology it is not possible to "connect" to a MS Access database at all. Thus one certainly can't do it remotely.
    The ODBC (nothing to to with java) for MS Access requires OS file access to the MS Access database file.
    So if you have box A and the database file is on box B the the java application must be running in a context (user) such that a mapped drive of some sort exists from A to B. And the ODBC definition must specify that file path.
    But I'm not able to connect to database in my desktop itself .
    Where is the connection url?

  • Plz help i need urgent support on issue of my subs...

    I have been a paid skype user for over 12 Months and i have my Europe Extra for which i pay each month it says that i can have a free online number but before i signed up for this service i already had purchased an online number for 12 Months, which is now due to expire in a day.
    Please skype admin team tell me how can i use my online number offer for keeping this number, rather then paying extra money once more

    Use the web chat:
    Contact Customer Care
    Mylenium

  • Help I need urgent Help!!!!! now please read and answer!!!!

    My ipod was fine until i tried to play a song it froze then went black and it wont turn on or charge.

    Hello starlight2190,
    And welcome to Apple Discussions!
    Have you tried a simple reset of the iPod yet? To do this, toggle the hold switch on and off, then press and hold the Select (Center) and Menu buttons together until the Apple logo appears. If it doesn't work the first time keep trying.
    Otherwise, if still no response, you may have to wait for the iPod's battery to fully drain. Once it has, let it charge long enough to power on and once it has, go ahead and restore it via iTunes.
    B-rock

  • Some J2ME midlets doubts!! help needed urgently!!!

    Hi,
    I am currently working in a company where it does wireless technology like WAP and I am assigned a task of creating a screensaver midlet. I have some doubts on the midlets.
    1) How do i use a midlet suites? From what I heard from my colleagues & friends, a servlet is needed for midlets to interact with one another. is it true?
    2) How do I get the startin midlet to take note the phone is idling so that the screen saver midlet can be called?
    Help needed urgently... if there is any source codes for me to refer to would be better... Thanks...
    Leonard

    indicates that MIDlet suites are isolated (on purpose) from each other, so you can't write over another one's address space.
    Also, I believe (at least on cell phones) that you have to specifically enter the Java Apps mode; unless you do the app won't execute. If you are in Java apps mode and a call comes in, the cell's OS puts the Java app currently executing on "Pause" mode and switches back to phone mode.
    Not sure if you will be able to have a Java app do that automatically.
    BTW why do you need a screensaver on an LCD display? Is it really intended to show an advertisement?
    Download and real all the docs you can from Sun, once you get over the generic Java deficiencies MIDlet's aren't that hard.

  • BW error. Need urgent Help( I will give out full points).

    We have BW version 3.1 and content 3.3.
    We are doing loads to ODS and getting oracle partition error. It gives Oracle partition error ORA-14400. inserted partition key doesn't map to any parititon.
    The exception must either be prevented, caught within the procedure               
    "INSERT_ODS"                                                                     
    (FORM)", or declared in the procedure's RAISING clause.                          
    o prevent the exception, note the following:                                     
    atabase error text........: "ORA-14400: inserted partition key does not map to   
    any partition"                                                                   
    nternal call code.........: "[RSQL/INSR//BIC/B0000401000 ]"                      
    lease check the entries in the system log (Transaction SM21).                                                                               
    ou may able to find an interim solution to the problem                           
    n the SAP note system. If you have access to the note system yourself,           
    se the following search criteria:                                                
    The termination occurred in the ABAP program "GP3WRFMGVS1D8IW16LLGSL4QQKH " in       
    "INSERT_ODS".                                                                       
    he main program was "SAPMSSY1 ".                                                                               
    he termination occurred in line 41 of the source code of the (Include)              
    program "GP3WRFMGVS1D8IW16LLGSL4QQKH "                                              
    f the source code of program "GP3WRFMGVS1D8IW16LLGSL4QQKH " (when calling the       
    editor 410).                                                                        
    rocessing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in      
    the                                                                               
    rocedure "INSERT_ODS" "(FORM)" but was not handled locally, not declared in         
    the                                                                               
    AISING clause of the procedure.                                                     
    he procedure is in the program "GP3WRFMGVS1D8IW16LLGSL4QQKH ". Its source code      
    starts in line 21                                                                   
    f the (Include) program "GP3WRFMGVS1D8IW16LLGSL4QQKH ".                                                                               
    Please help me guys. I will award points for good answers.

    Dear Sir,
    Now I have got the problem like yours (load to ODS and ORACLE partition error ORA-14400 with INSERT_ODS). Tell me, please - did you solve this problem?
    Can you recommend me something? What did you do with partitions?
    Help me, please - I need urgent help too.
    GLEB ([email protected])
    P.S. Sorry for my English, I haven’t got any language practice for a long time.

  • I have a video in excellent quality (1280x720 23,976 fps) I burn the dvd in encore cs6 with hd menu and I get pixelated.   I've done transcoding but It downgrade to 480   I need urgent help.

    I have a video in excellent quality (1280x720 23,976 fps) I burn the dvd in encore cs6 with hd menu and I get pixelated.   I've done transcoding but It downgrade to 480   I need urgent help.

    Hi,
    first, sorry if my english sucks jajaa i speach spanish, havent practice my english for a while.
    first i edited my video in premier cc
    sequence 1280X720, 59,94 fps
    48000hz - stereo
    the i linked it with dynamik link to after, make some color correction, etc etc etc
    i renderd in quicktime animation
    my video looks fine in my computer, but when i send my .mov video to encore (cs6) in a HD MENU and standard menú, the image sucks.
    i have done the transcoding in encore, but i doesnt work either. i dont know what else to do.

  • Need urgent help!!!! (combine prompt and formula)

    Hi,
    I am using Oracle Business Intelligence 10.1.3.3.2, and creating some reports from answers. I desperately need to combine
    prompt and formula on some column.
    I need to use prompt in my formula on some column.
    Need urgent help !

    You can use the presentation variables to pass the value of the prompt into the report or any column formula.
    In the dashboard prompt you see an option called "Set Variable" where and you need to give a name to the variable.(Say Var_value)
    Now the value of the variable can be simply referenced using the syntax @{var_name}{10}. Here '10' being the defualt value which is optional you can simply reference using @{var_name} and you have the value of the prompts passed.
    Hope it works
    Thanks
    Prash

  • R12 AR Invoice raxinv  -Customization (add columns) - need urgent help

    Hi,
    I need urgent help in customization of AR invoice report (raxinv) in R12. I am doing report customization for Brazil. As soon as I add one more column in report common query, build query and main query Q_invoice. Report changes to new variables in report editor q_invoice itself for example from remit_to_address_id to remit_to_address_id1 , previous_customer_id to previous_customer_id1 and start giving error that original variables e.g. remit_to_address_id , previous_customer_id are not defined in the query. Variable names and xml tags are also different from each other. even after trying to fix it, error persist.
    Thanks
    Anju

    Hi,
    I need urgent help in customization of AR invoice report (raxinv) in R12. I am doing report customization for Brazil. As soon as I add one more column in report common query, build query and main query Q_invoice. Report changes to new variables in report editor q_invoice itself for example from remit_to_address_id to remit_to_address_id1 , previous_customer_id to previous_customer_id1 and start giving error that original variables e.g. remit_to_address_id , previous_customer_id are not defined in the query. Variable names and xml tags are also different from each other. even after trying to fix it, error persist.
    Thanks
    Anju

  • Need urgent help to expend a BB school group numbers of members...

    Need urgent help to expend a BB school group....The group can only accept 30 members and the school student using BB are about 6000 students that are interested in joining the group....
    ...Moyosoreoluwa...

    I believe there is a hard limit of 30 people in a BBM group. 

  • Urgent HELP! need for my Zen touch (20

    Right here we go. I bought my zen touch online last year from a well known supplier. Absolutly brilliant mp3 plaey and happy with the value for money i got. The player did freee alot since i got it at inappropiate times eg. When i was on holiday and had nothing to reset it with. Recently i have been experiancing alot of problems. First one is that it froze so i reseted it, all seemed well until the Welcome screen came on and stayed like that for 0 mins and then it resumed back to normal. This has since continued. 2nd problem is every time i add a song from the computer (same process that i have been using since i got it) all seems well until.... i turn the player on select any song to play and the player results in PLAYBACK ERROR. So i reset , the player then freezes for another 0 mins and then is back to normal. This also has continued. And third and finally everytime i reset now i get the message rebulding libary and it is almost done and yet low and behold freezes again for another 0mins. Also i need urgent and quick help as my warrantty runs out in days. PLEASE HELP!!!! and to add to this i have tonight installed a new firmware and still experiance same problem. And almost forgot the player freezes for 0mins after every chargeMessage Edited by ruane89 on 09-30-2005 07:8 PM

    ruane89 wrote:how long does this disk clean up tkae and what does it actually do?
    As per the FAQ post:
    How long should a Disk Cleanup take?
    It should only take a few minutes, and no longer than 30 minutes. Anything longer than this and there is a problem with the player and you need to contact Creative Support.
    If this doesn't solve it then you really just need to follow the steps in the "My Zen is not starting properly, or goes into rescue mode, what should I do?" section of the FAQ post.
    As igedit says, the player does sound faulty unfortunately, so I would contact Creative Support.

  • I need urgent help to remove unwanted adware from my iMac. Help!

    I need urgent help to remove unwanted adware from my iMac. I have somehow got green underline in text ads, pop up ads that come in from the sides of the screen and ads that pop up selling similar products all over the page wherever I go. Its getting worse and I have researched and researched to no avail. I am really hestitant to download any software to remove whatever it is that is causing this problem. I have removed and reinstalled chrome. I have cleared Chrome and Safari cookies. Checked extensions, there are none to remove. I need to find an answer on how to get rid of these ads. Help please!

    You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/Application Support/VSearch
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchAgents/com.vsearch.agent.plist
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    Restart and empty the Trash. Don't try to empty the Trash until you have restarted.
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. It must be said that this failure of oversight is inexcusable and has seriously compromised the value of Gatekeeper and the Developer ID program. You cannot rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Need urgent help with HSDIO hardware timing

    Hi everyone,
    I need urgent help regarding HSDIO hardware timing. I've been working in a project which generating serial ramp using HSDIO pxie device. 
    I'm using clock rate 40MHz and generating 14 bit of boolean for each step of ramp. And I have to generate simply 256 steps ramp.
    Which means, 256 (steps) x 14 (boolean array) x 25 ns (period of 1 boolean value) = 89,6 ns.
    What I'm doing right now is with using index of FOR loop as my input data (converting the index into 14bit boolean), then write into pxie device in every iteration,
    which means, my data is getting into output in every 1ms time, right? (I'm using windows)
    And I want to be able to generate faster than that. 
    How can I prewrite my 256 steps ramp, then write them all at once into pxie device. I'm really stuck here.
    In the picture can you see how I do the write into device in every iteration of FOR Loop.
    Regards,
    Yan.

    hi, thanks for responding.
    with using example of dynamic generation with script, I can manage to generate the ramp with controllable delay (generate the whole waveform, including delay with script command, then write to the card).
    But I still have 1 question, I can test the output of the generation using oscilloscope and cant see the start delay (I'm writing delay at the start, before generating the ramp). My signal generated at 0 sec.
    How can I check this start delay? is there any good example delivered with Labview to check this generation? Somehow I cant use the "dynamic generation and acquisition" example to see my generation (cant figure out how to capture the generated signal).
    regards,
    Yan.

  • My BB9810 refuse to load OS7.1 software on my phone after the download has completed. My phone has freezed/stucked since morning. Pls urgent help/assistant needed as I can not access/use my phone for over 24hrs now.

    My BB9810 refuse to load OS7.1 software on my phone after the download has completed. My phone has freezed/stucked since morning. Pls  urgent help/assistant needed as I can not access/use my phone for over 24hrs now.

    Hi there,
    Use the method described in the link below to get back up and running:
    http://supportforums.blackberry.com/t5/Device-software-for-BlackBerry/How-To-Reload-Your-Operating-S...
    I hope this info helps!
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • Need to do a remote wipe of my iphone - stolen 24 hrs ago and . Need urgent help on this. Thanks - Pinaki

    Need to do a remote wipe of my iphone - stolen 24 hrs ago  Need urgent help on this. Thanks - Pinaki
    < Personal Information Edited By Host >

    Follow the steps in this article:
    iCloud: Erase your device
    Sign in to icloud.com/#find with your Apple ID (the one you use with iCloud), then click Find My iPhone.If you’re using another iCloud app, click the app’s name at the top of the iCloud.com window, then click Find My iPhone.If you don’t see Find My iPhone on iCloud.com, your account just has access to iCloud web-only features. To gain access to other iCloud features, set up iCloud on your iOS device or Mac.
    Click All Devices, then select the device you want to erase.If you have Family Sharing set up, your family members’ devices appear below their names.
    In the device’s Info window, click Erase [device].
    To erase:
    An iOS device: Enter your Apple ID password. If the device you’re erasing has iOS 7 or later, enter a phone number and message. The number and message will be displayed on the screen after the device is erased.

Maybe you are looking for

  • Bank Statement management in SAP B1 on a VMWare Windows 2008 server

    Hi everybody, One of our customer is using a VMWare Windows 2008 server with SAP B1. Actual version of Business One is SBO 2007A PL 00 PL 15 (SQL Server 2005). Since the installation of this server using VMWare, we encouter problems using the SAP B1

  • Extreamly slow messager app. Takes forever to open and has a huge lag

    Extreamly slow messager app. Takes forever to open and has a huge lag Any one else have this issue?

  • Inventory management problem with WS-C2950-24 on CWLMS 4.0

    Hi Joe, I have a problem with inventory management wiht 2950- 24 switches on which I am not able to capture inventory as well as the configurations. The IOS version is 121-22.EA13 and featureset is i6k2l2q4-mz. However, when I troubleshoot it, all th

  • Bridge configuration at ISR 4000

    Hi. I´m configuring a new router ISR 4000, but i cannot find all needed commands for bridge feature. Please your help if somebody know the equivalent commands for ISR 4000 series. Thanks in advance. Step by Step Bridge Group Virtual Interface (BVI) C

  • JMS Acknowledgement message handling

    Hi All,             I have one scenrio, which is From HTTP Plain   to JMS , which is aSychnorous, But i need to capture the Acknowledgement from the legacy system back , so is there any way that apart from making JMS synchronus and tell any method wh