How to display the first capital letter.

Hi all


I want when I get lowercase letter in the field, and it displays for me first capital letter.e.g (g)

GB 1 it show G01.


Please help me.


Sarah

Hi Sarah!
If you enter just a letter and numbers in your article,
You can set the element of Restriction of case property to UPPERCASE.
Concerning

Tags: Oracle Development

Similar Questions

  • How to always keep the names with the first capital letter

    We are starting to use the customization more and would like to have names begin with a capital letter, regardless of what that user input in a form.

    I thought that there was a rule to update that can be configured for this type of function, but now can not remember how to set up this rule in E10.  Someone at - it a readily available way?

    I found a solution for this while browsing another post.  I ended up using the manipulative String cloud connector and used the title first letter in upper case only it just in my names.

  • How to display the first page first and two pages (back and front) then?

    Hello

    I use acrobat 9 (Beginner).

    I have a document that should be displayed as"a book", IE two pages on the screen at the same time, the back of the first sheet and the front of the second.

    The problem I have is to display the cover on a single page (only) and then to have the layout of double page as described above.

    How I do that?

    Thanks for your help

    Concerning

    Fanch

    Entry of the menu View > Page Display > Show covers...

  • How to display the first value in the line in the second row and the second value of the line on the third row and so on...

    Hi all

    I have a requirement as below.

    Select * from my_tab;

    col1 col2 col3

    1 test1 January 1, 2014

    Test2 2 2 January 2013

    3 test5 February 9, 2015

    I need to display it as below.

    col1 col2 col3 req_col

    -----------------------------------------------------

    1 test1 January 1, 2014

    2 test2 January 2, 2013 January 1, 2014

    3 February 9, 2015 test5 January 2, 2013

    So how do?

    If it is not possible with sql then suggest me to do in peblisher xml (in rdf or rtf)

    Hello

    jagadekara wrote:

    Hi all

    I have a requirement as below.

    Select * from my_tab;

    col1 col2 col3

    1 test1 January 1, 2014

    Test2 2 2 January 2013

    3 test5 February 9, 2015

    I need to display it as below.

    col1 col2 col3 req_col

    -----------------------------------------------------

    1 test1 January 1, 2014

    2 test2 January 2, 2013 January 1, 2014

    3 February 9, 2015 test5 January 2, 2013

    So how do?

    If it is not possible with sql then suggest me to do in peblisher xml (in rdf or rtf)

    In SQL, you can use the analytic LAG function.

    http://docs.Oracle.com/database/121/SQLRF/functions093.htm#sthref1544

    Because I don't have a copy of your table, I'll use scott.dept to illustrate:

    SELECT DeptNo

    dname

    loc

    , Trolling (loc) over (ORDER BY deptno) AS prev_loc

    OF scott.dept

    ORDER BY deptno

    ;

    Output:

    DEPTNO DNAME LOC PREV_LOC

    ---------- -------------- ------------- -------------

    10 ACCOUNTS NEW YORK

    SEARCH 20 DALLAS NEW YORK

    30 SALES CHICAGO DALLAS

    40 OPERATIONS BOSTON CHICAGO

  • How to display the first 5 rows with a specific filter

    Hi all
    Please take a look at the below mentioned query.
    select * from emp where empnm like 'B%';
    Now suppose that it will display 10 lines. But I want to display 5 rows out of them.
    How can I do? I tried with rownum and rowid. It worked because the files are in order,
    But if these records are arbitrary order, now what? What should be done here?


    Kind regards
    BS2012.

    ASO
    I changed my query, this is the correct way to refer, and you must provide the exact column based on which you assume documents are old or new, in descending order.

    Thank you!
    Ashutosh

  • How to display the results in the order based on the value of research

    Hi all

    How to display the results in the slot order.
     
    
    CREATE TABLE TEST( SONGID  NUMBER, TITLE   VARCHAR2(200))
    
    INSERT INTO TEST(SONGID,TITLE) VALUES (10,'AHMADZAI, MIRWAIS (CA)/ MADONNA (CA)');
    INSERT INTO TEST(SONGID,TITLE) VALUES (11,'CICCONE, MADONNA (CA)');
    INSERT INTO TEST(SONGID,TITLE) VALUES (12,'DALLIN, MADONNA LOUISE/STOCK');
    INSERT INTO TEST(SONGID,TITLE) VALUES (13,'MADONNA');
    INSERT INTO TEST(SONGID,TITLE) VALUES (14,'MADONNA (A)/ AHMADZAI, MIRWAIS (C)');
    INSERT INTO TEST(SONGID,TITLE) VALUES (15,'MADONNA (CA)');
    INSERT INTO TEST(SONGID,TITLE) VALUES (16,'MIRWAIS AHMADZAI, MADONNA');     
    INSERT INTO TEST(SONGID,TITLE) VALUES (17,'MIRWAIS (CA)/ MADONNA (CA),AHMADZAI');
    INSERT INTO TEST(SONGID,TITLE) VALUES (18,'MADONNA (CA),CICCONE');
    
    SELECT *FROM  TEST WHERE INSTR (TITLE, 'MADONNA') > 0
    
    output: 
    SONGID     TITLE
    10     AHMADZAI, MIRWAIS (CA)/ MADONNA (CA)
    11     CICCONE, MADONNA (CA)
    12     DALLIN, MADONNA LOUISE/STOCK
    13     MADONNA
    14     MADONNA (A)/ AHMADZAI, MIRWAIS (C)
    15     MADONNA (CA)
    16     MIRWAIS AHMADZAI, MADONNA
    17     MIRWAIS (CA)/ MADONNA (CA),AHMADZAI
    18     MADONNA (CA),CICCONE
    
    Expected output :
    13     MADONNA
    14     MADONNA (A)/ AHMADZAI, MIRWAIS (C)
    15     MADONNA (CA)
    18     MADONNA (CA),CICCONE
    ..
    ..
    ..
    ..
    ...
    If the user makes a search with "MADONNA", I view the results as title begins with "MADONNA" first then the rest of the records.
    Please let me know is possible to show the results in this order.


    Kind regards
    Rajasekhar

    This can be a little more specific:

    SQL> SELECT *
      2  FROM   TEST
      3  WHERE  INSTR (TITLE, 'MADONNA') > 0
      4  ORDER  BY INSTR (TITLE, 'MADONNA')
      5           ,TITLE
      6  ;
    
                  SONGID TITLE
    -------------------- --------------------------------------
                      13 MADONNA
                      14 MADONNA (A)/ AHMADZAI, MIRWAIS (C)
                      15 MADONNA (CA)
                      18 MADONNA (CA),CICCONE
                      12 DALLIN, MADONNA LOUISE/STOCK
                      11 CICCONE, MADONNA (CA)
                      17 MIRWAIS (CA)/ MADONNA (CA),AHMADZAI
                      16 MIRWAIS AHMADZAI, MADONNA
                      10 AHMADZAI, MIRWAIS (CA)/ MADONNA (CA)
    
  • How to display the language bar and bring back the language switch to the taskbar?

    How to display the language bar and bring back the language switch to the taskbar?

    How to display the language bar and bring back the language switch to the taskbar?

    Hello

    According to the description, I understand that you do not want to display the language bar.

    I would like to know some information.

    1. You hide the language bar, or missing?

    I suggest you try the steps mentioned below and check.

    1. Go to the control panel.

    2. Click on clock, language and region.

    3. Region and language.

    4. Keyboard and language tab.

    5. Change keyboards button.

    6. Language bar tab.

    Then simply change the parameters of language bar hidden in the "embedded in the taskbar" and check.

    Here, you can also check the option in the check box for display icons of language in addition to the taskbar bar.

     

    Hope this information helps. Please let us know if you need any other help with Windows in the future. We will be happy to help you.

  • How to display the speaker icon in the taskbar in windows 7?

    How to display the "speaker" of the taskbar icon in windows 7?

    Thank you

    concerning

    Jamal

    Hi Jamal

    1. right click on the taskbar, and then select Properties.

    In the Notification area section, click the Customize button.

    2. in the Configuration window, find the Volume icon.

    The Drop Down Menu to select the icon lounge and Notifications.

    3. If you don't see the Volume icon, click system icons activate or deactivate the link at the bottom of the window.

    Find the Volume icon and select enabled in the menu dropdown.

    Repeat step 2.

    Let us know the results.

    Concerning

  • How to set the first character as selections in the EditField.

    Hi friends,

    I am a third-party application that I have to set the first character as capital.

    so please help me how to set the first tank as capital.

    Take a look at AutoTextEditField - maybe you can use this to do it automatically...

  • How to display the value of the variable for bottom of pl/sql

    How to display the value of the variable for bottom of pl/sql

    declare

    V_1 number: = 10;

    V_2 number: = 20;

    V_3 number: = 30;

    v_4 number: = 40;

    v_5 number: = 50;

    test varchar2 (100);

    Start

    I'm in 1.5

    loop

    test: = "v_" | I have;

    dbms_output.put_line(i||) e > ' | test);

    end loop;

    end;

    /

    How to get below output:

    1 > v_1

    2 > v_2

    3 > v_3

    4 > v_4

    5 > v_5

    But I want to output of

    1 > 10

    2 > 20

    3 > 30

    4 > 40

    5 > 50

    Hello

    You cannot reference variables as you did and get the value of the variable. Use pretty collection.

    set serveroutput on size 2000
    declare
      type      number_table is table of number;
      numbers   number_table := number_table(10, 20, 30, 40, 50);
    begin
      for i in numbers.first .. numbers.last
      loop
        dbms_output.put_line(i || '->' || numbers(i));
      end loop;
    end;
    /
    
    anonymous block completed
    1->10
    2->20
    3->30
    4->40
    5->50
    

    See the Collections of PL/SQL and Records http://docs.oracle.com/cd/E11882_01/appdev.112/e25519/composites.htm#LNPLS005

  • How to display the name of audio clip in the timeline?

    How to display the name of audio clip in the timeline?  I can see the label for video clips in the timeline, and when I hover over audio clip [I see the label, but otherwise, not l; abels show in audio editing.

    Hi denniscallan,

    Audio Clip names are disabled by default in first Pro CC. Turn it on go to the timeline (wrench) display settings in the timeline panel and choose Show names of Audio.

    Hope that helps,

    Kevin

  • When I download a PDF in iBooks app Apple´s always displays the first page of the pdf.

    When I download a PDF in iBooks app Apple´s always displays the first page of the pdf. So, how can I change this first page to another page in the pdf file? We want to download a PDF file in the iBooks app. iBooks still displays the first page of the pdf, but the fist of our pdf page is always the same (black color). And we want to differentiate each other pdfs.

    There is no standard to do this, in particular no standard method to store in a PDF file, a preview map. Is iBooks entirely to Apple, but as most of the software that he will probably use the first page without condition.

    If iBooks can show something different (and it does its not useful), you will get this information to Apple.

  • How to display the data items in the header of tempalte

    Hello friends
    I have this date_from and date date_to parameters which are parameters that the user enters...
    based on these parameters of date, I want to display in the header as
    date_from day (for example if the date_from is 13 - nov - 2010.then I should see 13) and date_to to display as 15, if for example the user enters
    November 16, 2010. (day of the date-1)
    so it should break down for
    date_from-13-nov-2010, 13
    date_to-16-nov-2010, 15
    I want these two values to display in the header of the template how
    pls help
    also let me know how to display the data items in the header template

    Published by: Les on Dec 22, 2010 12:44 AM

    Use and

  • How to display the width of the page or the big screen in firefox 11 automatically?

    How to display the width of the page or the big screen in firefox 11 automatically? I know how to Ctrl +, ctrl - and ctrl 0, but is there a way to define 11 firefox to automatically set the page viewing by default "page width" or full screen (F11 not)?
    Help, please. Thank you.

    You can use an extension to set a page zoom and the size of the default font on the web pages.

  • How to display the drop-down list box in MS excel by using labview report generation toolkit? pleasepost code block diagram?

    How to display the drop-down list box in MS excel by using labview report generation toolkit? Please post the block diagram of the code so that I can able to generate from the drop-down list box in excel with the menu drop-down...

    Like this. (edition, use the reference forms instead of the reference to the worksheet)

    Ben64

Maybe you are looking for

  • shortcut to access the 'personal bar '.

    It might be smart if you access it "Personal bar" keyboard shortcutIf we say the shortcut was "ALT + B".You are now on the toolbar "bookmarks"."Here you have a few bookmarks" often used "-lets say: 'Google Maps', 'Youtube', 'IMDb', 'Facebook', 'mozil

  • Access to the BIOs after Windows 10 upgrade

    Hello I recently improved my 8300 small form Factor Desktop of WIndows 7 window 10 HP. I need to access my system in the BIOS and have trouble making. I need to access my system BIOS in order to activate Intel VT - x, so I can create a Ubuntu Virtual

  • HP F2480 - aligning not printing labels

    Hello my HP F2480 is a great little Office all in one, but I've never been able to print labels in word (office 2007). There seems to be a problem with the alignment and the tags do not match the model selected in word. It is strange, however, that s

  • Update with the Lead feature and several lines

    I have a table such as:Table1:OrderNumber EFFECTIVE_DATE EFFECTIVE_END_DATE FileName123 11/5/2015-12/31/2099 File5.txt123, 7/11/2015-12/31/2099 File7.txtor it can look like:Table2OrderNumber EFFECTIVE_DATE EFFECTIVE_END_DATE FileName123 11/5/2015-11/

  • Creative cloud desktop application does not load

    HelloMy desktop creative cloud app looked like this for the last few months:I tried to uninstall all my programs and re - install but it didn't work. I seems to be connected as I am able to download apps directly from the adobe website. However, I ca