Text in Textfield to Uppercase and Send Value to Another Textfield

Hi Everyone,
I have used the Denes Kubicek example http://htmldb.oracle.com/pls/otn/f?p=31517:113:425753199246065::NO. I have managed to replicate this in my application but i have a small problem.
i want the value of the text area to be sent to another textarea, like the example shows, but i also need the textarea where the end user inputs the value to be changed to uppercase aswell.
There is an example of the exact thing i want on this example page (third text field down) but i can not combine the two into just ont text area.
Does anyone know how i could do this?
Regards,
-N.S.N.O.

Thanks Varad =)
I was tring to do this....
onKeyUp="f_getTextUpper('P20_COU_ISO_ID_P','P20_COU_ISO_ID_P')";"onKeyUp="f_getTextUpper('P20_COU_ISO_ID_P','P20_COU_ISO_ID_PN')";  Thanks for your help
Regards,
-N.S.N.O.

Similar Messages

  • Set the css style of text in a column according to the value of another col

    I'd like to set the css style of text in a column according to the value of another column. Each field may end up with a different style of text as a result, for instance.
    Any ideas? I looked thru the forums but couldn't find anything.
    Thanks,
    Linda

    Does the class=”t7Header” make it into the rendered HTML?
    ---The text "class="tHeader" does not show but the other text is rendered using the style t7Header as defined in the stylesheet! Exactly what I wanted.
    You might want to use a div or a span instead of a p.
    ---Yes -
    What's very cool is we can create a display column that is dynamically filled with the html and style wrappers based on a lookup to see what style should be applied according to the actual data value. This is critical as our tables are all dynamic so I can't depend on using the additional APEX methods to control the display of a column (as the # of columns in the view vary from instance to instance) and I did not want the display specs to muddy up my SQL queries.
    I wonder why this is not well documented. It is so easy!
    Thanks again for your help.
    Linda

  • I lost my iphone 5 and it died. If i erased it in lost mode can i get my info on my phone and send it to another? or would it be lost? but if i find my phone can i recover it? can anyone even see the contents in my phone when its in lost mode?

    If i erased it in lost mode can i get my info on my phone and send it to another? or would it be lost? but if i find my phone can i recover it? can anyone even see the contents in my phone when its in lost mode?

    If you wiped it then the data is gone.
    your only hope would be to get a new iphone and restore any backups made of the old phone to the new one.

  • Why mine iphone 5c cannot normal receive message  and send message to another phone?   I also cannot receive any message form Digi Centre~  I am form malaysia~

    Why mine iphone 5c cannot normal receive message  and send message to another phone?   I also cannot receive any message form Digi Centre~  I am form malaysia~

    Sorry, forgot to add this and I can't find the edit button.
    -I am using build: 9A406
    -One funny thing I want to add too: when I put the iPhone in the Apple dock and connect it with my PC, I open iTunes and select my phone. There you can see the build, software version,.. But after telephonenumber it says N/A: not applicable.. Something I only just noticed. I'm pretty sure my number was displayed back in Nov. when I first got my iPhone 4S.
    And the very last thing: Most of the time I have a very good signal, 4 out of 5 bars. It is only rarely that I have only 1 or 0 bars.

  • Trigger to call webservice and send values

    Hello, can i do this, create a trigger and send some values over a webservice? Really need help. How can I do it?

    Podstrana, i´m new to oracle webservices and i dont heven now how to test the call to the webservice. Can you tell me how to test those examples from scoot/tiger? Thanks for your reply.

  • Want to replicate Payext  IDocs and send them to another logical system

    Hi all
    we are generating payext Idocs to a bank partner profile using rffoedi1 program. Our requirement is to replicate the same payext IDoc and send to another logical system using a different partner profile.
    I have a rough idea of sucking data from EDID4 table....
    Can any one let me know how the code looks like If we have to create same IDocs again with different control record with same kind of data?
    can some one throw their ideas of doing this with less development work?
    Thanks
    Steve

    Try this way:-->
    1.Using fm IDOC_READ_COMPLETELY get complete data of IDoc you want to send, then change the Header record (EDIDC) with new partner profile, port and other values
    2. Pass these values to fm MASTER_IDOC_DISTRIBUTE.
    (pl remember to clear EDIDS values before calling above said fm)
    This will send your IDoc to new destination
    a®s
    Edited by: a®s on Apr 10, 2008 3:41 PM

  • Change value in a field and reflect value of another field

    Hi all,
    I have a situation here where in the Single Customer View, under the Completed Task. When I changed the value of a field name called Status to "Completed" in the Edit screen and I save it, another field that is in the same screen called "Completed Date" will auto populate the current date as value. may I know how do I achieve this?
    Thanks and appreciate for help
    Regards,
    Anson

    Hi !
    You've got to create a workflow rule on Activity with the event trigger Before modified record saved.
    The condition will be like this :
    *[<Status>]=LookupValue("EVENT_STATUS", "Completed") AND [<Status>]<>PRE('<Status>')*
    Then the action of this rule will update the field *"Completed Date"* with the value Today().
    But you don't have to do it for the completed date field, because it's already filled automatically when you change the status to completed.
    Hope this will help, feel free to ask more !
    Max

  • Inserting field text into sql query and comparing values to another table

    I have an issue in Visual Web Developer 2010 that I need help with.
    The code below is a Gridview Sql query where I'm extracting PART_NUMBER from various tables.  I would like to add the table name in a separate field named Table.  The end result should appear as follows:
    PART_NUMBER     Table
    010-0075-06       Resistors (or Capacitors, etc.)
    Sql query:
    SELECT     PART_NUMBER
    FROM         Capacitors
    EXCEPT
    SELECT     PART_NUMBER
    FROM         [CIS Manufacturer Parts]
    UNION
    SELECT     PART_NUMBER
    FROM         Connectors
    EXCEPT
    SELECT     PART_NUMBER
    FROM         [CIS Manufacturer Parts]
    UNION
    SELECT     PART_NUMBER
    FROM         Diodes
    EXCEPT
    SELECT     PART_NUMBER
    FROM         [CIS Manufacturer Parts]
    UNION
    SELECT     PART_NUMBER
    FROM         ICs
    EXCEPT
    SELECT     PART_NUMBER
    FROM         [CIS Manufacturer Parts]
    UNION
    SELECT     PART_NUMBER
    FROM         Inductors
    EXCEPT
    SELECT     PART_NUMBER
    FROM         [CIS Manufacturer Parts]
    UNION
    SELECT     PART_NUMBER
    FROM         Misc
    EXCEPT
    SELECT     PART_NUMBER
    FROM         [CIS Manufacturer Parts]
    UNION
    SELECT     PART_NUMBER
    FROM         Relays
    EXCEPT
    SELECT     PART_NUMBER
    FROM         [CIS Manufacturer Parts]
    UNION
    SELECT     PART_NUMBER
    FROM         Resistors
    EXCEPT
    SELECT     PART_NUMBER
    FROM         [CIS Manufacturer Parts]
    UNION
    SELECT     PART_NUMBER
    FROM         Switches
    EXCEPT
    SELECT     PART_NUMBER
    FROM         [CIS Manufacturer Parts]
    UNION
    SELECT     PART_NUMBER
    FROM         Transformers
    EXCEPT
    SELECT     PART_NUMBER
    FROM         [CIS Manufacturer Parts]
    UNION
    SELECT     PART_NUMBER
    FROM         Transistors
    EXCEPT
    SELECT     PART_NUMBER
    FROM         [CIS Manufacturer Parts]
    UNION
    SELECT     PART_NUMBER
    FROM         [Crystals and Oscillators]
    EXCEPT
    SELECT     PART_NUMBER
    FROM         [CIS Manufacturer Parts]
    ORDER BY PART_NUMBER
    I have a separate table (CIS Manufacturer Parts) that contains manufacturer data for the above parts.  Multiple manufacturer rows can exist.  The connection between tables in the PART_NUMBER field.  What I would like to do is make this query
    add the table name to the gridview output listing only parts without manufacturer data and the table they can be found in.
    This is a lot for a newbie so I will appreciate any help, thanks!

    Hello Bulldog248,
    Thank you for your post.
    Your issue is out of support range of VS General Question forum which mainly discusses the usage issue of Visual Studio IDE such as
    WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    I am moving your question to the moderator forum ("Where is the forum for..?"). The owner of the forum will direct you to a right forum.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can I take an itunes credit from one Apple ID and send it to another?

    I purchased a gift card for my son, but when checking for the email, it added the money to my account.  How can I send it to his account?

    Click here and request assistance.
    (80443)

  • In Windows Explorer, I can copy and paste a path and send it to another user as a link to a file location. Is there a way to do that with Finder?

    If not with Finder, is there some other way to do it simply with Mountain Lion OS?

    Thanks for your suggestion Eric. I ended up finding a very simple way to copy a path. When you have navigated to the location for the path in Finder, simply right click on the folder and choose "get info". The path will be displayed in the info window and it can be selected and copied. Then it can be pasted into any text doc or field.

  • How to make validation in Bean and select value from another table

    I want to know how to select data from table in backing bean according to primary key i have
    the problem is that
    i have a table Employee_Salary contains Employee ids and their salary
    Empoloyee_Salary table
         Employee_ID      Number
         Employee_salary Number
    And Another table Called Employees
    Employees table
         Employee_ID     Number
         IsManager Varchar2 its value is [*Yes or NO*]
    and other columns that i don't care about this table
    i have on a jsff page an <af:table> this table is editable this is the Empoloyee_Salary table
    *i want to check before save or after insert if this employee is Manager [from Employees tabke(yes or no)] the salary*
    cannot be less that 100
    i want to know how to make this how to select the value from employees table according to the id i have in the employee_salary table how to make this and make this validation
    i have to select IsManager from Employees Table to see if this manager or no
    i want to know how to make this in a bean
    i use jdeveloper 11g
    and my project is ADF Fusion project
    and the page that have the Emplpyee_Salary table is JSFF
    thanks in advance

    You might want to write this code in a validator on the entity object if it should apply from every screen.
    If you want to access view objects from a backing bean the basics are here: http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/bcservices.htm#sthref918

  • How send value to another class

    Hello I saw this at the internet.
    //: Cake.java
    // Accesses a class in a separate
    // compilation unit.
    class Cake {
      public static void main(String[] args) {
        Pie x = new Pie();
        x.f();
    } ///:~
    In a second file, in the same directory:
    //: Pie.java
    // The other class
    class Pie {
      void f() { System.out.println("Pie.f()"); }
    } ///:~ Now if you run Cake.java it prints out Pie.f()
    But how can i give a value in Cake to Pie? I mean something like this
    //: Cake.java
    // Accesses a class in a separate
    // compilation unit.
    class Cake {
      public static void main(String[] args) {
    int cakeint = 20;
        Pie x = new Pie();
        x.f();
    } ///:~
    In a second file, in the same directory:
    //: Pie.java
    // The other class
    class Pie {
    int Pieint=0;
      void f() { System.out.println("Pie.f()"+"  "+Pieint); }
    } ///:~ And that if you run Cake.java Pie.if() 20
    is printed because Cake gives value 20 but I don't know how

    Or just as you can reach the f function using the x reference you can reach Pieint, like
    Pie x = new Pie();
    x.Pieint = cakeint;
    x.f();To follow convention you shouldn't use a capital first letters in variable names. So Pieint should be called pieint.
    There are advance issues regarding direct access to class variable fields like
    x.pieint = cakeint;
    but it's possible.

  • How to show Min and Max values when another value "changes to a new value"

    Hi
    If I have this data (generated with this query: SELECT 1 A, 1 B UNION ALL SELECT 2, 1 UNION ALL SELECT 3, 2 UNION ALL SELECT 4, 2 UNION ALL SELECT 5, 1)
    A B
    1 1
    2 1
    3 2
    4 2
    5 1
    How can I generate this data (created with this query SELECT 1 Amin, 2 Amax, 1 B UNION ALL SELECT 3, 4, 2 UNION ALL SELECT 5, 5, 1)
    Amin Amax B
    1 2 1
    3 4 2
    5 5 1
    Thanks.

    Please post DDL, so that people do not have to guess what the keys, constraints, Declarative Referential Integrity, data types, etc. in your schema are. Learn how to follow ISO-11179 data element naming conventions and formatting rules. Temporal data should
    use ISO-8601 formats. Code should be in Standard SQL as much as possible and not local dialect. 
    This is minimal polite behavior on SQL forums. You also do not know the ANSI/ISO syntax for insertion and you did the old Sybase insertion kludge wrong, that we need keys, etc.
    CREATE TABLE Foobar
    (foo_seq INTEGER NOT NULL PRIMARY KEY,
     glop_score INTEGER NOT NULL);
    INSERT INTO Foobar
    VALUE
    (1,1),
    (2,1),
    (3,2),
    (4,2),
    (5,1);
    >> How can I generate this data (created with this query SELECT 1 Amin, 2 Amax, 1 B UNION ALL SELECT 3, 4, 2 UNION ALL SELECT 5, 5, 1) <<
    This makes no sense; you have the wrong syntax and mixed data types. My guess is: 
    SELECT MIN(foo_seg), MAX(foo_seq), MAX(glop_score)
      FROM Foobar
     GROUP BY glop_score
    HAVING MIN(glop_score) = MAX(glop_score); 
    Amin Amax B
    1 2 1
    3 4 2
    5 5 1
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • PHP/MySQL: Get value from one field, subtract 2, multiply by 20,   and insert value into another column on form submit

    Hello all,
    I'm pulling my hair out--thank you for any help you can give
    me.
    I have a form that a person fills out that has a field that
    asks "How
    many visitors including you" and I'd like them to type in a
    number, and
    on submit of the form, have that value -2 multiplied by 20
    and inserted
    into a "total cost" column.
    I'm using the standard DW server behaviors and I've searched
    the
    internet. How do I perform basic math on that value and
    insert it into
    the database?
    If you have any pointers, that would be great.
    Thank you!
    -John

    John R. Lenz wrote:
    > Your code below works great, and I just noticed links to
    your book were
    > available on your web site, and it's in the mail to me.
    Looking forward
    > to it.
    Thanks, hope you find it useful.
    > After the form is posted, I'd like to address the person
    who posted it
    > by their first name and last name, as well as some of
    the details. How
    > would you go about doing this in the best way? Would you
    set a variable
    > and echo it on the 'Thank you' page, or are there better
    ways of doing
    > it with a recordset and filtering it on form submit?
    To pass the details to a thank you page, you would need to
    store the
    information in $_SESSION variables. You could amend the
    earlier script
    like this:
    <?php
    session_start();
    if (isset($_POST['visitors'])) {
    if ($_POST['visitors'] < 3) {
    $num = 0;
    } else {
    $num = $_POST['visitors'] - 2;
    $_POST['total_cost'] = $num * 20;
    $_SESSION['total_cost'] = $_POST['total_cost'];
    $_SESSION['first_name'] = $_POST['first_name'];
    $_SESSION['last_name'] = $_POST['last_name'];
    ?>
    In the thank you page, put the following at the top of the
    page:
    <?php session_start(); ?>
    It must go before anything is output to the browser, so put
    it above the
    DOCTYPE declaration, and make sure there's no space before
    it.
    You can then use the $_SESSION variables in the thank you
    page.
    At the end of the page, add this to clear up the session
    variables:
    <?php
    $_SESSION = array();
    destroy_session();
    ?>
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Hi i forgot my sercurity questions and apple sent me the answers on a email that doesnt work any more so how can i change that and send it to another email

    i dont know my sercurity questions and apple sent me the ansers to a email that no longer works so how can i change it to the right wmail and get my answers.

    How to reset your Apple ID security questions.
    Go to appleid.apple.com, click on the blue button that says 'Manage Your Apple ID'.
    Log in with your Apple ID and password. (If you have forgotten your Apple ID password, go to iforgot.apple.com first to reset your password with a password recovery email)
    Go to the Password & Security section on the left side, and click on the link underneath the security questions that says 'Forgot your answers? Send reset security info email to [email]'.  This will generate an automated e-mail that will allow you to reset your security questions.
    If that doesn't work, or  there is no rescue email link available, then click on 'Temporary Support PIN' that is in the bottom left side, and generate a 4-digit PIN for the Apple Account Security Advisor you will be contacting later.
    Next, go to https://getsupport.apple.com
    (If you see a message that says 'There are no products registered to this Apple ID, simply click on 'See all products and services')
    Choose 'More Products & Services', then 'Apple ID'.
    A new page will open.
    Choose 'Other Apple ID Topics', then 'Forgotten Apple ID Security Questions'.
    Click the blue 'Continue' button.
    Select the contact option that suits your needs best.
    Make sure to tell Apple Support to include an alternate email address for the iForgot email, other than your inactive one.  Then, log into appleid.apple.com, and change your primary and rescue email addresses to ones that you can actually access.

Maybe you are looking for

  • Observations on the "New & Improved" Forum

    I've now lived with the new forum for a bit. I've been posting and replying to similar threads in the Adobe Premiere Video Lounge, since the changeover, but after some reflection, realize that this is a better place to, er-r-r vent. Still, there are

  • Portal Session Timeout Setting

    There is a JServ session and a portal session. I know how to control session timeout and session clean up frequency in JServ - that's in zone.properties. But, I dont know how to set timeout for portal session, i.e., I'd like to have the user be force

  • Why is the "Lightroom Help"(F1) and the "Map Module" Offline?

    I ask because everything requiring Internet connection thru Lightroom appears fine, such as the Web Module! There is nothing wrong with my Home Network nor any usage of the Internet, except when it comes to the Map Module and contacting "Lightroom He

  • Cursor locked at startup

    Hi, When I am loging into my DE (compiz alone or xmonad) with and init to 5 to start X directly and some modification to .zshrc /etc/inittab x:45:once:/bin/su lymphatik -l -c "/bin/bash --login -c startx >/dev/null 2>&1" .zshrc if [[ -z "$DISPLAY" ]]

  • Unplugged tv and now I don't have any channels?

    I quickly unplugged my tv and set top box and then when I plugged it back in it showed that I couldn't get any channels. It would just say "[insert channel] is currently unavailable". I tried rebooting it multiple times but it still didn't do anythin