Need help on validation of inputted text

Hi there. I got the following script for the format of an inputted number (7 numeric char). If entered as "1", the format will be changed to "0000001". Now I want to get this effect: if entered as "f1", the format will be changed to "F000001". How can I modify the script to achieve that? Thanks.
if (!(this.isNull)) {
var tf = this.rawValue;
if (tf < 1 ) {
xfa.host.messageBox("The number must be a numeral starting from 1.","Incorrect Number",1);
xfa.host.setFocus("TextField27"); }
if (tf.length < 7) {
var diff = 7 - tf.length;
for (var i=0;i < diff;i++) {
tf = "0" + tf;}
this.rawValue = tf;}
var regExp = /\d{7}/;//}
if (!(regExp.test(tf))) {
xfa.host.messageBox("The number must be in the format of 9999999.","Validation",1);
this.rawValue = "";
xfa.host.setFocus("TextField27");}}

How about this, where TextField27 has a max length of 7?
if (!(this.isNull)) {
          var str = this.rawValue;
          var regExp = /\D/;
          if (regExp.test(str)) {
    xfa.host.messageBox("...must contain numbers only.");
          else {
    var diff = 6 - str.length;
    for (var i=0; i < diff; i++) {
      str = "0" + str;
    this.rawValue = "f" + str;
Steve

Similar Messages

  • Need help with connecting file inputs to arrays

    In this assignment I have a program that will do the following: display a list of names inputed by the user in reverse order, display any names that begin with M or m, and display any names with 5 or more letters. This is all done with arrays.
    That was the fun part. The next part requires me to take the names from a Notepad file, them through the arrays and then output them to a second Notepad file.
    Here is the original program: (view in full screen so that the code doesn't get jumbled)
    import java.io.*;       //Imports the Java library
    class progB                    //Defines class
        public static void main (String[] arguments) throws IOException
            BufferedReader keyboard;                                  //<-
            InputStreamReader reader;                                 //  Allows the program to
            reader = new InputStreamReader (System.in);               //  read the the keyboard
            keyboard = new BufferedReader (reader);                  //<-
            String name;                 //Assigns the name variable which will be parsed into...
            int newnames;               //...the integer variable for the amount of names.
            int order = 0;              //The integer variable that will be used to set the array size
            String[] array;             //Dynamic array (empty)
            System.out.println (" How many names do you want to input?");   //This will get the number that will later define the array
            name = keyboard.readLine ();
            newnames = Integer.parseInt (name);                                         // Converts the String into the Integer variable
            array = new String [newnames];                                               //This defines the size of the array
            DataInput Imp = new DataInputStream (System.in);       //Allows data to be input into the array
            String temp;                                       
            int length;                                                                  //Defines the length of the array for a loop later on
                for (order = 0 ; order < newnames ; order++)                                //<-
                {                                                                           //  Takes the inputed names and
                    System.out.println (" Please input name ");                            //  gives them a number according to
                    temp = keyboard.readLine ();                                           //  the order they were inputed in
                    array [order] = temp;                                                  //<-
                for (order = newnames - 1 ; order >= 0 ; order--)                                //<-
                {                                                                                //  Outputs the names in the reverse 
                    System.out.print (" \n ");                                                   //  order that they were inputed
                    System.out.println (" Name " + order + " is " + array [order]);             //<-
                for (order = 0 ; order < newnames ; order++)                                  //<-
                    if (array [order].startsWith ("M") || array [order].startsWith ("m"))     //  Finds and outputs any and all
                    {                                                                         //  names that begin with M or m
                        System.out.print (" \n ");                                            //
                        System.out.println (array [order] + (" starts with M or m"));         //
                    }                                                                         //<-
                for (order = 0 ; order < newnames ; order++)                                            //<-
                    length = array [order].length ();                                                   //
                    if (length >= 5)                                                                    //  Finds and outputs names
                    {                                                                                  //  with 5 or more letters
                        System.out.print (" \n ");                                                      //
                        System.out.println ("Name " + array [order] + " have 5 or more letters ");      //<-
    }The notepad file contains the following names:
    jim
    laruie
    tim
    timothy
    manny
    joseph
    matty
    amanda
    I have tried various methods but the one thing that really gets me is the fact that i can't find a way to connect the names to the arrays. Opening the file with FileInputStream is easy enough but using the names and then outputing them is quite hard. (unless i'm thinking too hard and there really is a simple method)

    By "connect", do you just mean you want to put the names into an array?
    array[0] = "jim"
    array[1] = "laruie"
    and so on?
    That shouldn't be difficult at all, provided you know how to open a file for reading, and how to read a line of text from it. You can just read the line of text, put it in the array position you want, until the file is exhausted. Then open a file for writing, loop through the array, and write a line.
    What part of all that do you need help with?

  • Need help in Overwriting result in text file

    Sorry, im new to Labview.
    My situation is
    this.
    I can store the name and the result and i have the index.
    Now
    I'm having a problem on overwriting result i had in text file.
    I
    give you an example.
    Now in my text file i have a name of a
    student and the result.
    i wan to overwrite the result of the
    student.(this is just an example.)
    can someone guide me please?
    really
    need help as this is my school project.
    Thanks!
    i'll attach my program i have done soon.

    you got the wrong idea.
    i do not want to replace the file to a new file.
    what i want was to edit the exsiting file if the same name appear twice.
    Example:
    in my text file i have already had the name of example Tom and result 80
    and now i input the same name and diff result.
    i wan was to overwrite the result. 
    my project was similar to this here is my attachment of my project
    Attachments:
    LOCATOR.vi ‏19 KB
    TESTCAR.txt ‏1 KB

  • I need help with validating signatures.

    I have Adobe Acrobat X and Reader 9 and need help with how to validate signatures.
    I have a document that I am emailing to all employees that require the signature; but, when the form is emailed back, it states that the signatures requires validating.

    Or, is the validation something I do once the form is emailed back to me?
    I guess a subquestion would be, how to establish/manage trusted certificates with reader or acrobat 8. 

  • Need some help regarding validation of input in a text field

    Hello everyone,
    i am new to all this website designing stuff and is working on my first website (treausre hunt types) and expecting some guidance over here.   :-)
    I have successfully managed to validate the login page using server behaviour.
    Let me explain what i need guidance with.
    After login , the user is redirected to a page where a question is asked and he has to type the answer in the given text field and click on the submit button. Now i want to validate the given answer with the correct one and if it is answered correctly then the user is redirected to the next page.
    the question is what and how am i supposed to do this?  i am using adobe dreamweaver cc and wampserver as localhost.

    This becomes complicated to do it the way you want BUT YOU CAN do it - you just need to be a bit more efficient and get a template together.
    Copy the 4 documents below and paste into seperate DW files to see how this works then look at the code and see if a pattern becomes noticeable to you. What we are doing is adding 1 to each level and checking the user has accumulated a score to that level - if not they are bumped down to the level which they have reached or in the case of not reaching any level to question 1.
    question_1.php:
    <?php
    // Start the session
    session_start();
    ?>
    <?php
    if (isset($_POST['submit'])) {
    $answer = trim($_POST['answer']);
    if(($answer == "Green" || $answer == "green")) {
    $_SESSION['question'] = 2;
    $correct = "<p>Correct Answer</p><p>You will automatically be taken to the next level</p>";
    header( "refresh: 5; url=question_2.php" );
    else {
    $wrong = "<p>Wrong, please try again,</p>";
    ?>
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Quiz</title>
    <style>
    p {
    font-size: 20px;
    color:#930;
    margin: 0;
    padding: 10px 0 8px 0;
    </style>
    </head>
    <body>
    <h3>Question 1.</h3>
    <h2>What color is grass?</h2>
    <form id="quiz" action="question_1.php" method="post">
    <label for="answer">Answer<br>
    <input type="text" name="answer" id="answer"></input>
    <input type="submit" name="submit" value="Sumbit">
    </label>
    </form>
    <?php
    if(isset($wrong)) {
        echo $wrong;
    elseif(isset($correct)) {
    echo $correct;
    ?>
    </body>
    </html>
    question_2.php
    <?php
    // Start the session
    session_start();
    ?>
    <?php
    // This sends the user to question 1 if SESSION question has not been set
    if(!isset($_SESSION['question'])) {
    header('Location: question_1.php');
    // This sends the user back if SESSION question is LESS than 2
    if($_SESSION['question'] < 2) {
    header('Location: question_1.php');
    if (isset($_POST['submit'])) {
    $answer = trim($_POST['answer']);
    if(($answer == "Blue" || $answer == "blue")) {
        $_SESSION['question'] = $_SESSION['question']+1;
    $correct = "<p>Correct Answer</p><p>You will automatically be taken to the next level</p>";
    header( "refresh: 5; url=question_3.php" );
    else {
    $wrong = "<p>Wrong, please try again,</p>";
    ?>
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Quiz</title>
    <style>
    p {
    font-size: 20px;
    color:#930;
    margin: 0;
    padding: 10px 0 8px 0;
    </style>
    </head>
    <body>
    <h3>Question 2.</h3>
    <h2>What color is the sky?</h2>
    <form id="quiz" action="question_2.php" method="post">
    <label for="answer">Answer<br>
    <input type="text" name="answer" id="answer"></input>
    <input type="submit" name="submit" value="Sumbit">
    </label>
    </form>
    <?php
    if(isset($wrong)) {
        echo $wrong;
    elseif(isset($correct)) {
    echo $correct;
    ?>
    </body>
    </html>
    question_3.php
    <?php
    // Start the session
    session_start();
    ?>
    <?php
    // This sends the user to question 1 if SESSION question has not been set
    if(!isset($_SESSION['question'])) {
    header('Location: question_1.php');
    // This sends the user back if SESSION question is LESS than 3
    if($_SESSION['question'] < 3) {
    header('Location: question_2.php');
    if (isset($_POST['submit'])) {
    $answer = trim($_POST['answer']);
    if(($answer == "Yellow" || $answer == "yellow")) {
        $_SESSION['question'] = $_SESSION['question']+1;
    $correct = "<p>Correct Answer</p><p>You will automatically be taken to the next level</p>";
    header( "refresh: 5; url=question_4.php" );
    else {
    $wrong = "<p>Wrong, please try again,</p>";
    ?>
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Quiz</title>
    <style>
    p {
    font-size: 20px;
    color:#930;
    margin: 0;
    padding: 10px 0 8px 0;
    </style>
    </head>
    <body>
    <h3>Question 3.</h3>
    <h2>What color is the sun?</h2>
    <form id="quiz" action="question_3.php" method="post">
    <label for="answer">Answer<br>
    <input type="text" name="answer" id="answer"></input>
    <input type="submit" name="submit" value="Sumbit">
    </label>
    </form>
    <?php
    if(isset($wrong)) {
        echo $wrong;
    elseif(isset($correct)) {
    echo $correct;
    ?>
    </body>
    </html>
    question_4.php
    <?php
    // Start the session
    session_start();
    ?>
    <?php
    // This sends the user to question 1 if SESSION question has not been set
    if(!isset($_SESSION['question'])) {
    header('Location: question_1.php');
    // This sends the user back if SESSION question is LESS than 4
    if($_SESSION['question'] < 4) {
    header('Location: question_3.php');
    if (isset($_POST['submit'])) {
    $answer = trim($_POST['answer']);
    if(($answer == 4 || $answer == 4)) {
    $_SESSION['question'] = $_SESSION['question']+1;
    $correct = "<p>Correct Answer</p><p>You will automatically be taken to the next level</p>";
    header( "refresh: 5; url=question_5.php" );
    else {
    $wrong = "<p>Wrong, please try again,</p>";
    ?>
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Quiz</title>
    <style>
    p {
    font-size: 20px;
    color:#930;
    margin: 0;
    padding: 10px 0 8px 0;
    </style>
    </head>
    <body>
    <h3>Question 4.</h3>
    <h2>What  is 2 + 2?</h2>
    <form id="quiz" action="question_4.php" method="post">
    <label for="answer">Answer<br>
    <input type="text" name="answer" id="answer"></input>
    <input type="submit" name="submit" value="Sumbit">
    </label>
    </form>
    <?php
    if(isset($wrong)) {
        echo $wrong;
    elseif(isset($correct)) {
    echo $correct;
    ?>
    </body>
    </html>

  • Need help creating valid XHTML statement

    Hi -
    This is for a homework assignment that requires valid XHTML (I have to validate the dynamically generated HTML). Everything is great with the servlet except the statements where I "echo" the user input.
    The user inputs several values (loan calculator servlet), hits submit and if the values are valid inputs, the servlet returns the amount of the monthly payment. It also displays the inputs in case the user wants to change one of them (loan amount, interest rate or term of the loan).
    The servlet output is fine but my problem is in validating the html. The W3C validator shows an error on the lines where I'm echoing the original inputs.
    Here's my code that generates the html:
    out.println("<td><input type=\"text\" name=\"amount\" value=" + amount + "><br/></td>");Here's the html line that is output:
    <td><input type="text" name="amount" value=783745.43><br/></td>For this to be valid XHTML, the value needs to be in quotes. For example, that parameter should be value="783745.43".
    This is the error that the validator produces:
    Error Line 16 column 43: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified.
    <td><input type="text" name="amount" value=783745.43><br/></td>The 'shorttag' and 'omittag' make no sense to me; I haven't found a decent reference yet on how to use them.
    I've tried multiple combinations of escape sequences but have had no success. Can anybody point out what I'm overlooking?
    Thanks in advance.

    I have understand about the SQL statement.
    My problem is like this. I have 3 variable. I have a table with 3 field.
    How can I use those variable to reftrieve value from my select statement?
    How can I use those variable to send value to my update or insert statement?
    sample statement:
    - select F1, F2, F3 from T where F1 = V1
    - insert into F1, F2, F3 values(V1, V2, V3)
    please help, I'm working on my final project in college.
    Thanks before.
    "Sweet devil is still as sweet as ever..."

  • Need help with validation of SSNumber in ESS US Personal Data WebDynpro app

    Hi,
       We're using ESS /SAP Netweaver 2004....
    When I make the Soc Sec#  visible (changing the Java webdynpro app ess.us.fam the dependents update form in ESS) and trying to make this field not mandatory, I get strange results...
    The Gender field that was mandatory before is now not treated as Required after I select the Review button, but this SSN Text that I made visible is treated as Mandatory with a Red box saying This field is required....
    I guess the Required (state) attribute in the InputField properties is only for showing the red asterisk, but the actual mandatory logic is done somewhere else???..Is this somewhere in the webdynpro app or in the SAP backend...
    This app uses the structure HCMT_BSP_PA_US_R0021...
    Can anyone point me to where this validation is done so I can change it to what I need,
    Thanks,
    Venkatesh

    Hello ,
    I am working on EP7.0 ERP05 NW04s . I want to make the Social Security Number field mandatory on the Family Members Detail (Edit) , ...I want to know what's the procedure to do that...
    Any help would be highly appreciated.

  • Need Help waiting for user input.

    I've got a simple card game, which I've pretty much made all with swing. I have a JTextField and a JButton. I want the user to input a number into the textfield and the click the button which fires the action listener. This then takes the text and reads it and set a boolean hasBid to true. I don't want to program to continue until this has happened so I made an empty while(!hasBid) loop. The first time through, the program starts and stop until the user inputs something and click the button. The second time through, however, the whole window freezes. For somereason object aren't even being displayed which are displayed before this while loop. Without the while loop, everything runs fine, but the program won't stop to wait for input.
    So, my question pretty much is how can I get the program to stop for user input in a function which will be called multiple times. I don't want to use a JOptionPane or anyother pop-up box. If my way won't work, I'd really like to know of another way. Thanks for any help!

    you simply need to separate the functionality of your input object and the card game into two threads. as sanbingo said, running in a while loop prevents your GUI from even drawing its components.
    Remember: AWT/Swing is an event driven interface! so only events can/should cause some action to happen.
    i'd properly implement an event listener which is fired when the input is received. the listener is your game class which upon receipt of the event starts playing. when its done, its done, ie doesn't do anything until it receives an new event from your input object.
    thomas

  • Need Help-How Store the input parameter through java bean

    Hello Sir,
    I have a simple Issue but It is not resolve by me i.e input parameter
    are not store in Ms-Access.
    I store the input parameter through Standard Action <jsp:useBean>.
    jsp:useBean call a property IssueData. this property exist in
    SimpleBean which create a connection from DB and insert the data.
    At run time servlet and server also show that loggging are saved in DB.
    But when I open the table in Access. Its empty.
    Ms-Access have two fields- User, Password both are text type.
    Please review these code:
    login.html:
    <html>
    <head>
    <title>A simple JSP application</title>
    <head>
    <body>
    <form method="get" action="tmp" >
    Name: <input type="text" name="user">
    Password: <input type="password" name="pass">
    <input type="Submit" value="Submit">
    </form>
    </body>
    </html>LoginServlet.java:
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class LoginServlet extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException{
    try
    String user=request.getParameter("user");
    String pass=request.getParameter("pass");
    co.SimpleBean st = new co.SimpleBean();
    st.setUserName(user);
    st.setPassword(pass);
    request.setAttribute("user",st);
    request.setAttribute("pass",st);
    RequestDispatcher dispatcher1 =request.getRequestDispatcher("submit.jsp");
    dispatcher1.forward(request,response);
    catch(Exception e)
    e.printStackTrace();
    }SimpleBean.java:
    package co;
    import java.util.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    public class SimpleBean {
    private String user="";
    private String pass="";
    private String s="";
    public String getUserName() {
    return user;
    public void setUserName(String user) {
    this.user = user;
    public String getPassword() {
    return pass;
    public void setPassword(String pass) {
    this.pass = pass;
    public String getIssueData() //method that create connection with database
    try
    System.out.println("Printed*************************************************************");
    getUserName();
    getPassword();
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    System.out.println("Loading....");
    Connection con=DriverManager.getConnection("jdbc:odbc:simple");
    System.out.println("Connected....");
    PreparedStatement st=con.prepareStatement("insert into Table1 values(?,?)");
    System.out.println("~~~~~~~~~~~~~~~~~~~~");
    String User=getUserName();
    st.setString(1,User);
    String Password=getPassword();
    st.setString(2,Password);
    st.executeUpdate();
    System.out.println("Query Executed");
    con.close();
    s=  "Your logging is saved in DB ";
    System.out.println("Your logging is saved in DB *****************");
    return(s);
    catch(Exception e)
    e.printStackTrace();
    return "failed";
    }submit.jsp:
    This is Submit page
    <html><body>
    Hello
    Student Name: <%= ((co.SimpleBean)request.getAttribute("user")).getUserName() %>
    <br>
    Password: <%= ((co.SimpleBean)request.getAttribute("pass")).getPassword() %>
    <br>
    <jsp:useBean id="st" class="co.SimpleBean" scope="request" />
    <jsp:getProperty name="st" property="IssueData" />
    </body></html>web.xml:<web-app>
    <servlet>
    <servlet-name>one</servlet-name>
    <servlet-class>LoginServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>one</servlet-name>
    <url-pattern>/tmp</url-pattern>
    </servlet-mapping>
    <jsp-file>issue.jsp</jsp-file>
    <jsp-file>submit.jsp</jsp-file>
    <url-pattern>*.do</url-pattern>
    <welcome-file-list>
    <welcome-file>Login.html</welcome-file>
    </welcome-file-list>
    </web-app>Please Help me..Thanks.!!!
    --

    Dear Sir,
    Same issue is still persist. Input parameter are not store in database.
    After follow your suggestion when I run this program browser show that:i.e
    This is Submit page Hello Student Name: vijay
    Password: kumar
    <jsp:setProperty name="st" property="userName" value="userValue/> Your logging is saved in DB
    Please review my code.
    login.html:
    {code}<html>
    <head>
    <title>A simple JSP application</title>
    <head>
    <body>
    <form method="get" action="tmp" >
    Name: <input type="text" name="user">
    Password: <input type="password" name="pass">
    <input type="Submit" value="Submit">
    </form>
    </body>
    </html>{code}
    LoginServlet.java:
    {code}import javax.servlet.*;
    import javax.servlet.http.*;
    public class LoginServlet extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException{
    try
    String userValue=request.getParameter("user");
    String passValue=request.getParameter("pass");
    co.SimpleBean st = new co.SimpleBean();
    st.setuserName(userValue);
    st.setpassword(passValue);
    request.setAttribute("userValue",st);
    request.setAttribute("passValue",st);
    RequestDispatcher dispatcher1 =request.getRequestDispatcher("submit.jsp");
    dispatcher1.forward(request,response);
    catch(Exception e)
    e.printStackTrace();
    }{code}
    SimpleBean.java:
    {code}package co;
    import java.util.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    public class SimpleBean {
    private String userValue="";
    private String passValue="";
    private String s="";
    public String getuserName() {
    return userValue;
    public void setuserName(String userValue) {
    this.userValue = userValue;
    public String getpassword() {
    return passValue;
    public void setpassword(String passValue) {
    this.passValue= passValue ;
    public String getissueData() //method that create connection with database
    try
    System.out.println("Printed*************************************************************");
    getuserName();
    getpassword();
    Class.forName("oracle.jdbc.driver.OracleDriver");
    System.out.println("Connection loaded");
    Connection con=DriverManager.getConnection("jdbc:oracle:thin:@VijayKumar-PC:1521:XE","SYSTEM","SYSTEM");
    System.out.println("Connection created");
    PreparedStatement st=con.prepareStatement("insert into vij values(?,?)");
    System.out.println("~~~~~~~~~~~~~~~~~~~~");
    String userName=getuserName();
    st.setString(1,userName);
    String password=getpassword();
    st.setString(2,password);
    st.executeUpdate();
    System.out.println("Query Executed");
    con.close();
    s= "Your logging is saved in DB ";
    System.out.println("Your logging is saved in DB *****************");
    return(s);
    catch(Exception e)
    e.printStackTrace();
    return "failed";
    }{code}
    submit.jsp:
    {code}This is Submit page
    <html><body>
    Hello
    Student Name: <%= ((co.SimpleBean)request.getAttribute("userValue")).getuserName() %>
    <br>
    Password: <%= ((co.SimpleBean)request.getAttribute("passValue")).getpassword() %>
    <br>
    <jsp:useBean id="st" class="co.SimpleBean" scope="request" />
    <jsp:setProperty name="st" property="userName" value="userValue/>
    <jsp:setProperty name="st" property="password" value="passValue"/>
    <jsp:getProperty name="st" property="issueData" />
    </body></html>web.xml:<web-app>
    <servlet>
    <servlet-name>one</servlet-name>
    <servlet-class>LoginServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>one</servlet-name>
    <url-pattern>/tmp</url-pattern>
    </servlet-mapping>
    <jsp-file>submit.jsp</jsp-file>
    <url-pattern>*.do</url-pattern>
    <welcome-file-list>
    <welcome-file>Login.html</welcome-file>
    </welcome-file-list>
    </web-app>Sir I can't use EL code in jsp because I use weblogic 8.1 Application Server.This version are not supported to EL.
    Please help me...How store th input parameter in Database through Java Bean                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Need help in Validation of Network no.

    Hello, I am doing one enhancement.The report is for Post Travel and Living (T/L))Expense to G/L.
    Right now there are two scenarios. In first, Interface can book the expense in natural account (travel/meal etc.)to the cost center.
    In other scenario, it books a credit to a cost center in a separate account and debits the network on a billable T & L account.
    In the event if the network is invalid I have to handle the error.
    I need the help from experts. How can network be valid or invalid? Is it any FM for it or Table for it?
    Thanking in anticipation.
    Warm Regards,
    Harish

    Hi,
    I guess that you are talking about netwrok from PS module. In that case you can use BAPI BAPI_NETWORK_EXISTENCECHECK to check if network exists.
    Cheers

  • Need help in highlighting the query text in document

    Hi, I am trying to load the files in the blob column and trying to create the text index on it.
    i need to query the blob column in the document table with a string, which needs to return the relevant documents with the query string highlighted with some color.
    Can you please help me with an example on the above.
    Thanks in advance.

    SCOTT@orcl_11gR2> -- table:
    SCOTT@orcl_11gR2> CREATE TABLE document_tab
      2    (document_col  BLOB)
      3  /
    Table created.
    SCOTT@orcl_11gR2> -- procedure to load documents:
    SCOTT@orcl_11gR2> CREATE OR REPLACE PROCEDURE load_document
      2    (p_dir  IN VARCHAR2,
      3       p_file IN VARCHAR2)
      4  AS
      5    v_blob       BLOB;
      6    v_bfile       BFILE;
      7  BEGIN
      8    INSERT INTO document_tab (document_col)
      9    VALUES (EMPTY_BLOB())
    10    RETURNING document_col INTO v_blob;
    11    v_bfile := BFILENAME (UPPER (p_dir), p_file);
    12    DBMS_LOB.FILEOPEN (v_bfile, DBMS_LOB.LOB_READONLY);
    13    DBMS_LOB.LOADFROMFILE (v_blob, v_bfile, DBMS_LOB.GETLENGTH (v_bfile));
    14    DBMS_LOB.FILECLOSE (v_bfile);
    15  END load_document;
    16  /
    Procedure created.
    SCOTT@orcl_11gR2> SHOW ERRORS
    No errors.
    SCOTT@orcl_11gR2> -- load documents (directory and files must be on server, not client):
    SCOTT@orcl_11gR2> CREATE OR REPLACE DIRECTORY my_dir AS 'c:\my_oracle_files'
      2  /
    Directory created.
    SCOTT@orcl_11gR2> BEGIN
      2    load_document ('my_dir', 'banana.pdf');
      3    load_document ('my_dir', 'english.doc');
      4    load_document ('my_dir', 'sample.txt');
      5  END;
      6  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> -- confirm files were loaded:
    SCOTT@orcl_11gR2> SELECT DBMS_LOB.GETLENGTH (document_col)
      2  FROM   document_tab
      3  /
    DBMS_LOB.GETLENGTH(DOCUMENT_COL)
                              222824
                               22016
                                  60
    3 rows selected.
    SCOTT@orcl_11gR2> -- text index:
    SCOTT@orcl_11gR2> CREATE INDEX document_idx
      2  ON document_tab (document_col)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  /
    Index created.
    SCOTT@orcl_11gR2> -- confirm files were indexed:
    SCOTT@orcl_11gR2> SELECT COUNT(*) FROM dr$document_idx$i
      2  /
      COUNT(*)
           319
    1 row selected.
    SCOTT@orcl_11gR2> -- function to return highlighted document:
    SCOTT@orcl_11gR2> CREATE OR REPLACE FUNCTION your_markup
      2    (p_index_name IN VARCHAR2,
      3       p_textkey    IN VARCHAR2,
      4       p_text_query IN VARCHAR2,
      5       p_plaintext  IN BOOLEAN  DEFAULT TRUE,
      6       p_tagset     IN VARCHAR2 DEFAULT 'HTML_DEFAULT',
      7       p_starttag   IN VARCHAR2 DEFAULT '*',
      8       p_endtag     IN VARCHAR2 DEFAULT '*',
      9       p_key_type   IN VARCHAR2 DEFAULT 'ROWID')
    10    RETURN          CLOB
    11  AS
    12    v_clob          CLOB;
    13  BEGIN
    14    CTX_DOC.SET_KEY_TYPE (p_key_type);
    15    CTX_DOC.MARKUP
    16        (index_name => p_index_name,
    17         textkey    => p_textkey,
    18         text_query => p_text_query,
    19         restab     => v_clob,
    20         plaintext  => p_plaintext,
    21         tagset     => p_tagset,
    22         starttag   => p_starttag,
    23         endtag     => p_endtag);
    24    RETURN v_clob;
    25  END your_markup;
    26  /
    Function created.
    SCOTT@orcl_11gR2> SHOW ERRORS
    No errors.
    SCOTT@orcl_11gR2> -- query that returns highlighted document:
    SCOTT@orcl_11gR2> VARIABLE string VARCHAR2(100)
    SCOTT@orcl_11gR2> EXEC :string := 'test AND demonstration'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> SELECT your_markup ('document_idx', ROWID, :string)
      2           AS highlighted_text
      3  FROM   document_tab
      4  WHERE  CONTAINS (document_col, :string) > 0
      5  /HIGHLIGHTED_TEXT
    This is a test document for demonstration of highlighting.
    1 row selected.
    SCOTT@orcl_11gR2>

  • (Need Help) How to create Numeric text box in SVG

    Hello everyone,
    Can any one help me to create Numeric TextField in SVG? I'm struggling to do this please someone help me as soon as possible....
    Thanks In advance,
    Ulaga

    To get the best answers, I think you probably need to break down your post into several different one with a separate question in each, along with the business problem you are trying to solve... but here's a few pointers for you to research...
    Textbox - there's plenty of info in SDN on creating a custom control with a textbox e.g. Re: Text Editor on modulepool Screen and sample code in SAP too.
    Attachments - If this is for an email, then GUI_UPLOAD might help and the BCS class is the newer way to send messages... check out Re: Offline Approval: RBBP_NOTIFICATION_OFFAPP Vs RSWUWFMLEC for example... if this is an attachment for an SAP object such as an FI Document or Purchase Order, then the Generic Object Services (GOS) could be what you want e.g. https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0e6b0d95-0a01-0010-4696-ca0a48de5fb3
    Jonathan

  • Need help with validation of SSNumber in ESS US Dependent WebDynpro app

    Hi,
    We're using ESS /SAP Netweaver 2004....
    When I make the Soc Sec# visible (changing the Java webdynpro app ess.us.fam the dependents update form in ESS) and trying to make this field not mandatory, I get strange results...
    The Gender field that was mandatory before is now not treated as Required after I select the Review button, but this SSN Text that I made visible is treated as Mandatory with a Red box saying This field is required....
    I guess the Required (state) attribute in the InputField properties is only for showing the red asterisk, but the actual mandatory logic is done somewhere else???..Is this somewhere in the webdynpro app or in the SAP backend...
    This app uses the structure HCMT_BSP_PA_US_R0021...
    Can anyone point me to where this validation is done so I can change it to what I need,
    Thanks,
    Venkatesh

    Thanks for the replies folks...
    I had to go to the ESS Config in the back end (transaction SM30)
    and make changes to the backend maintenance table V_T588MFPROPC
    Thanks,
    Venkatesh

  • Need help to change line item text for 220 Line items

    Hi Specialists,
    The user has posted a reversal entry ( doc type : Manual Accrual) using TCODE FBS1.
    It has 220 line items.
    Is there a way in SAP he can change the text of All Line Items for a particular document number in one shot ( Mass Change).
    Pls note : Header text remains same . Only the line item text needs to be changed in one shot .
    For Eg :
      1 50 2758000047 Accruals for CAS               Accrl - Dec 08 / Nalini Marketing(Door Mats) - Oth
      2 50 2758000047 Accruals for CAS               Accrl - Dec 08 / SKC - M&E Repair
    Changed Description:
      1 50 2758000047 Accruals for CAS               Accrl - Jan 09 / Nalini Marketing(Door Mats) - Oth
      2 50 2758000047 Accruals for CAS               Accrl - Jan 09 / SKC - M&E Repair
    Thanks,
    Abhinav.

    Hi
    This is possible, please follow as below:
    If it is GL (FBL3N), Customer (FBL5N), Vendor (FBL1N) line item use the TCODE' mentioned.
    In the selection screen, if possible give all the document numbers (it is possible with addition selection).
    Once you get the output with the line item, select all line items and go to the menu options  there you can see the mass change option, it will give one popup screen give the new value in the text field and proceed further.
    VVR

  • Need help fixing validation report errors

    Here are errors I am getting:
    Validator Results
      Report date:    April 22 2012 
      Report time:    06:30:33 
    Severity
    File
    Description
    Line
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "type" not specified
    127
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "type" not specified
    128
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    there is no attribute "tabindex"
    147
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    there is no attribute "height"
    151
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    153
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    154
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    155
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    156
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    159
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    160
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    162
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    163
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    166
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    167
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    168
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    169
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    172
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    173
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    174
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    175
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    185
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    186
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    196
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    required attribute "alt" not specified
    197
    Error
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    document type does not allow element "link" here
    213
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    153
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    153
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "&" is the first character of a delimiter but occurred as data
    153
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    153
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    153
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    154
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    154
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "&" is the first character of a delimiter but occurred as data
    154
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    154
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    154
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    155
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    155
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    155
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    155
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    156
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    156
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    156
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    156
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    159
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    159
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "&" is the first character of a delimiter but occurred as data
    159
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    159
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    159
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    160
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    160
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "&" is the first character of a delimiter but occurred as data
    160
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    160
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    160
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    161
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    161
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    161
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    161
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    163
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    163
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    163
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    163
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    166
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    166
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    166
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    166
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    167
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    167
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    167
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    167
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    168
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    168
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    168
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    168
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    169
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    169
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    169
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    169
    Warning
    C:\Users\Sylvester Aleong\Pictures\KADweb\KAD\KADport1.html
    character "<" is the first character of a delimiter but occurred as data
    172
    Warning

    I created a lightbox for my portfolio images and it works in the live view and browser view but when upload it, it does not work. Thanks
    Here is the link: designs1.net/portfolio/KAD/index.html
    Here is the code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    body {
        font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
        background: #42413C;
        margin: 0;
        padding: 0;
        color: #000;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
        padding: 0;
        margin: 0;
    h1, h2, h3, h4, h5, h6, p {
        margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
        padding-right: 15px;
        padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color: #42413C;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
        color: #6E6C64;
        text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: none;
    /* ~~ this fixed width container surrounds the other divs ~~ */
    .container {
        width: 1024px;
        background: #FFF; /* the auto value on the sides, coupled with the width, centers the layout */
        height: 768px;
        margin-top: 0;
        margin-right: auto;
        margin-bottom: 0;
        margin-left: auto;
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
        height: 89px;
        width: 1024px;
        background-color: #ADB96E;
        background-image: url(images/KADprintport1_01.jpg);
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
        height: 535px;
        width: 1024px;
        padding-top: 10px;
        padding-right: 0;
        padding-bottom: 10px;
        padding-left: 0;
        background-image: url(images/KADprintport1_02.jpg);
    /* ~~ The footer ~~ */
    .footer {
        height: 102px;
        width: 1024px;
        padding-top: 10px;
        padding-right: 0;
        padding-bottom: 10px;
        padding-left: 0;
        background-color: #CCC49F;
        background-image: url(images/KADprintport1_03.jpg);
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    #apDiv1 {
        position:absolute;
        width:643px;
        height:41px;
        z-index:1;
        left: 426px;
        top: 27px;
    -->
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    #apDiv2 {
        position:absolute;
        width:689px;
        height:538px;
        z-index:2;
        left: 394px;
        top: 107px;
    </style>
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" /><script src="js/jquery-1.7.2.min.js"></script>
    <script src="js/lightbox.js"></script>
    </head>
    <body>
    <div class="container">
      <div class="header"><!-- end .header -->
        <div id="apDiv1">
          <ul id="MenuBar1" class="MenuBarHorizontal">
            <li><a href="index.html">Home</a>        </li>
            <li><a href="KADres.html">Resume</a></li>
            <li><a href="KADport1.html"><strong>Portfolio</strong></a></li>
            <li><a href="#">Process</a>        </li>
            <li><a href="#">Contact</a></li>
          </ul>
        </div>
      </div>
      <div class="content">
        <div id="apDiv2">
          <div id="Accordion1" class="Accordion" tabindex="0">
            <div class="AccordionPanel">
              <div class="AccordionPanelTab">PRINT</div>
              <div class="AccordionPanelContent">
                <table width="687" height="196" border="0" cellpadding="5" cellspacing="5">
                  <tr>
                    <th align="center" scope="col"><a href="images/Large/_5515061140.jpg"rel="lightbox" title="Date Created:  12/4/2011<br><br>Program: Adobe Photoshop & Illustrator<br><br>This poster promotes Ecochic apparel with a tagline that resonates with the whole image appearance."><img src="images/Thumb/_5515061140.jpg" width="107" height="129" /></a></th>
                    <th align="center" scope="col"><a href="images/Large/_6374589227.jpg"rel="lightbox" title="Date Created:  2/11/2012<br><br>Program: Adobe Photoshop & Illustrator<br><br>A full color book cover, titled Music in the digital Age, using a combination of vector and raster imagery to express the theme of the book"><img src="images/Thumb/_6374589227.jpg" width="129" height="129" /></a></th>
                    <th align="center" scope="col"><a href="images/Large/_4734055001.jpg"rel="lightbox" title="Date Created:  8/21/2011<br><br>Program: Adobe Illustrator<br><br>This poster promotes the natural beauty of Alaska, Mt. McKinley and some of its wildlife to urge residents to take care of the environment."><img src="images/Thumb/_4734055001.jpg" width="129" height="101" /></a></th>
                    <th align="center" scope="col"><a href="images/Large/_5593210516.jpg"rel="lightbox" title="Date Created:  1/3/2012<br><br>Program: Adobe Photoshop<br><br>A collage of a designer’s work from the 1920s. "><img src="images/Thumb/_5593210516.jpg" width="129" height="99" /></a></th>
                  </tr>
                  <tr>
                    <td align="center"><a href="images/Large/_1467227833.jpg"rel="lightbox" title="Date Created:  8/12/2011<br><br>Program: Adobe Photoshop & Illustrator<br><br>Poster design promoting support for military soldiers and The American Red Cross"><img src="images/Thumb/_1467227833.jpg" width="129" height="103" /></a></td>
                    <td align="center"><a href="images/Large/_1252352166.jpg"rel="lightbox" title="Date Created:  12/4/2011<br><br>Program: Adobe Photoshop & Illustrator<br><br>A book cover redesign for Johannes Itten’s “The Art of Color”. "><img src="images/Thumb/_1252352166.jpg" width="129" height="79" /></a></td>
                    <td align="center"><a href="images/Large/_1771736232.jpg"rel="lightbox" title="Date Created:  3/25/2012<br><br>Program: Adobe Photoshop<br><br>
    An illustration of the movie Ghost DVD cover with only the use of typography and text effects."><img src="images/Thumb/_1771736232.jpg" width="129" height="91" /></a></td>
                    <td align="center"><a href="images/Large/_6554868794.jpg"rel="lightbox" title="Date Created:  8/6/2011<br><br>Program: Adobe Illustrator<br><br>Typographic poster using only words, color, different typefaces and Illustrator tools to illustrate the words of a song that resonate with me personally."><img src="images/Thumb/_6554868794.jpg" width="129" height="99" /></a></td>
                  </tr>
                  <tr>
                    <td align="center"><a href="images/Large/_7292231722.jpg"rel="lightbox" title="Date Created:  1/9/2012<br><br>Program: Adobe Photoshop<br><br> A smoke-like visual text effect using different colors, layers, and the gradient tool."><img src="images/Thumb/_7292231722.jpg" width="129" height="103" /></a></td>
                    <td align="center"><a href="images/Large/_9231445618.jpg"rel="lightbox" title="Date Created:  1/25/2012<br><br>Program: Adobe InDesign<br><br>A 2013 calendar design with wildcat animal theme."><img src="images/Thumb/_9231445618.jpg" width="86" height="129" /></a></td>
                    <td align="center"><a href="images/Large/_1396958091.jpg"rel="lightbox" title="Date Created:  3/3/2012<br><br>Program: Adobe InDesign<br><br> Brochure design for Rachael Ray cookware company."><img src="images/Thumb/_1396958091.jpg" width="129" height="99" /></a></td>
                    <td align="center"><a href="images/Large/_6955454525.jpg"rel="lightbox" title="Date Created:  3/11/2012<br><br>Program: Adobe Illustrator<br><br>Trifold brochure design for Columbia clothing company."><img src="images/Thumb/_6955454525.jpg" width="129" height="99" /></a></td>
                  </tr>
                  <tr>
                    <td align="center"><a href="images/Large/_2121752674.jpg"rel="lightbox" title="Date Created:  10/8/2012<br><br>Program: Adobe InDesign<br><br>A food and wine magazine layout."><img src="images/Thumb/_2121752674.jpg" width="99" height="129" /></a></td>
                    <td align="center"><a href="images/Large/_2493972603.jpg"rel="lightbox" title="Date Created:  1/20/2012<br><br>Program: Adobe Photoshop & Illustrator<br><br>Magazine layout for a winter theme."><img src="images/Thumb/_2493972603.jpg" width="129" height="83" /></a></td>
                    <td align="center"><a href="images/Large/_6370868564.jpg"rel="lightbox" title="Date Created:  11/19/2011<br><br>Program: Adobe Photoshop & Illustrator<br><br>A mall map created using signage and color coding."><img src="images/Thumb/_6370868564.jpg" width="129" height="83" /></a></td>
                    <td align="center"><a href="images/Large/_9581180847.jpg"rel="lightbox" title="Date Created:  11/10/2011<br><br>Program: Adobe Photoshop & Illustrator<br><br> A vehicle wrap design LemonFree.com using typography, vector logos, and images."><img src="images/Thumb/_9581180847.jpg" width="129" height="99" /></a></td>
                  </tr>
                </table>
              </div>
            </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab">WEB</div>
              <div class="AccordionPanelContent">
                <table width="354" height="199" border="0" cellpadding="5" cellspacing="5">
                  <tr>
                    <th scope="col"><a href="images/Large/_0373638936.jpg"rel="lightbox" title="Date Created:  3/6/2012<br><br>Program: Adobe Photoshop<br><br>An interface design for the Graphical Arts Gallery and Academy."><img src="images/Thumb/_0373638936.jpg" width="129" height="96" /></a></th>
                    <th scope="col"><a href="images/Large/_3824118655.jpg"rel="lightbox" title="Date Created:  3/9/2012<br><br>Program: Adobe Photoshop<br><br>Aninterface design for the new plush character introduced by The Learning Company, a children’s learning software program."><img src="images/Thumb/_3824118655.jpg" width="129" height="87" /></a></th>
                  </tr>
                </table>
              </div>
            </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab">LOGO</div>
              <div class="AccordionPanelContent">
                <table width="355" border="0" cellspacing="5" cellpadding="5">
                  <tr>
                    <th scope="col"><a href="images/Large/_0301530214.jpg"rel="lightbox" title="Date Created:  12/4/2011<br><br>Program: Adobe Illustrator<br><br>Logo design for my personal identity package. KADesigns stands for “Katrina Aleong Designs”."><img src="images/Thumb/_0301530214.jpg" width="99" height="129" /></a></th>
                    <th scope="col"><a href="images/Large/_0990478412.jpg"rel="lightbox" title="Date Created:  2/23/2012<br><br>Program: Adobe Illustrator<br><br>Logo design for a company'sstationary package in which the letters in the logo stands for the last name of owner of the company."><img src="images/Thumb/_0990478412.jpg" width="129" height="129" /></a></th>
                  </tr>
                </table>
              </div>
            </div>
          </div>
        </div>
        <h1> </h1>
      <!-- end .content --></div>
      <div class="footer">
        <p> </p>
        <!-- end .footer --></div>
      <!-- end .container --></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var Accordion1 = new Spry.Widget.Accordion("Accordion1");
    </script><link href="css/lightbox.css" rel="stylesheet" />
    </body>
    </html>

Maybe you are looking for

  • Excise Invoice (J1IIN) Cancelltion did not update RG23A Part-II

    Hi, Dear's I have cancelled Excise Invoice (T.Code J1IIN), system shows reversal accounting entry generated thru J1IH BUT did not update RG23A Part-II register Thanks SR

  • To get the system time in milliseconds

    i want to get the system time in milliseconds eventhough the MLS(milliseconds) is given in the select statement as follows, sql>select to_char(sysdate,'MON:DD:YYYY.HH:HH:MI:SS:MLS') "NOW" from dual; does not seem to work. it throws the error that ORA

  • Adding menu entry to "About Third Party Plug-Ins..."

    I am trying to find the language-independent identifier for the "About Third Party Plug-Ins..." menu in the Help menu but I can't seem to find it. Can someone help me find the identifier so that I can add my plug-in's about menu item entry to it? Her

  • How to create a copy of emails to share folder

    I'm currently new to OCS Email and I need all the helps from you guys in here. Here is my scenario. Our employee having a one to one relationship to the share folder. All emails from our employee need to duplicated and sent to the share folder. Where

  • Groups com.apple.access_afp /calendar/chat...

    I have sucessful setup the basic functionality of a 10.5 server. 1 shared folder is availible for guests. Also I checked, that I can use the iCal and iChat services from a remote workstation. Now, I added a few users through the workgroup manager. Bu