Field of # of phone and displayed columns.

Hello

I have a few requirements:

1. I have a 'Phone' field in the list applet. I want to have it exact 10 numbers. entry less or more than 10, it must give error.
2. in the list applet, there are five columns. But the right click and 'Display columns' and pressing 'Reset defaults', it should display only four columns.

How can I do?
Kindly help

Cherkaoui

Hello
You are getting this error looks like
SBL-DAT-00399: the expression of query on the field '%1' is not valid. Please review and try again.

I presume that you hit this error to the user interface. You validate you are DVM expression? Ensure that its okay.
If you are still encounter this error, try on another field. I worry about the phone # a class forced /bc vanilla constraints field.

Thank you

Tags: Oracle

Similar Questions

  • Is it possible to take the fields on a form and display on a form is submitted?

    I have created a form in MUSE and takes advantage of the information that was entered and present back to the sender of the information they sent in the confirmation form.  I don't know how to do this in MUSE.

    Hello

    If you host your site on Business catalyst, then it is possible. It's not a way in Muse to do.

    Kind regards

    Aish

  • Compare and display several column data according to requirement

    Hello

    I have a requirement where I want to compare the data in two tables and display only the columns if there is a gap using the sql query.

    Tell userid, e-mail and phone number of the same employee is stored in two tables. Now, I want to compare data from e-mail and phone number of the two tables and display the e-mail and phone number as if they are different data.

    Employee table:

    user_id E-mail phone
    emp01[email protected]00200
    emp02[email protected]

    00300

    emp03[email protected]00400

    Table user_details:


    ID user_email user_phone
    emp01[email protected]00201
    emp02(null)00300
    emp03[email protected]00401


    Please note that both tables have completely different column names and the data may contain a null as well. What I want to achieve is to compare the same employee data in both tables and display columns that have a different value of user_details table; as:


    user_id user_email phone
    emp01[email protected]00201
    emp02(null)
    emp03[email protected]00401


    As the table column names are different, I can't use a join and less to know the difference. I tried this with the help of CASES after the WHERE clause for comparison of columns multiple but GOLD or AND the two would defy the condition to display all columns with different data for the same line.


    How to do this without creating a separate view or a table that I don't have write access? Pointers would be useful.


    -Thank you.


    No need for something like

    You just run

    Select k.user_id, k.id,.

    e.email, u.user_email,

    e.Phone, u.user_phone

    of user_key_table k

    left outer join

    e employee

    On k.user_id = e.user_id

    left outer join

    user_details u

    on k.user_id = u.id


    the rest is here just to simulate your tables (I don't want to create tables in my APEX Tablespace as there are far too many people already)

    Concerning

    Etbin

  • My phone has stopped ringing, but it will vibrate and display on call incoming screen then what direction should I have it on ring outloud.  I don't remember changing anything?

    My phone has stopped ringing, but it will vibrate and display as a call comes in, so what settings should I have on that.  I don't remember changing anything?

    Have you checked the ring/silent switch on the left side of the phone?

    If the switch is slid to the back of the phone and you can see a red line above the switch (the side closest to the screen), it is in silent mode.

  • display the data in a row and different columns in the listbox

    Hi I want to disply data in different and same columns line in listbox using InsertListItem(), but it displays data in different lines... I use the escape sequence for the creation of columns... Also, I want to display an integer which I converted to a string using sprintf() on listbox with a Word, for example 10 Kg where 10 is stored in a variable and I must add Kg, how to do it in a single call to InsertItemList()... Thank you

    I see: you must create all of the line before adding it to the list box:

    sprintf (string, "&d\033p30l%s\033p100l%s\033p170l%d\033p220l%.2f", itemNo, itemName, itemPack, 123, 15.98);
    InsertListItem (panel, PANEL_LISTBOX , 0, string, 0);
    
  • Search for a similar string in the 2D array and displays the result with another column

    Hello

    One who can help, I have a chart 2D of txt file that have as many lines and 5 columns and I want to do a search and display the other results of the column.

    For example.

    Column 0                      1                           2                                  3                           4

    12345 qwer asdf 12qwe tjhrtyert

    werr 23568 wef fgertge fsefff

    If I manage to find 12345 and I want to display 12qwe, what should I do in labview? Help, please!

  • I created form in adobe acrobat X 1 Professional. Now, I want to put logic on a field. I want that the document will be closed if someone between age under the age of 18. and display a message for minors?

    I created form in adobe acrobat X 1 Professional.

    Now, I want to put logic on a field.

    I want that the document will be closed if someone between age under the age of 18. and display a message for minors?

    The final document is a little drastic... Perhaps simply display an error message? In any case, you can do it like this, as a custom field validation script:

    if (event.value && Number(event.value)<18) {
        app.alert("You must be an adult to fill in this form!");
        this.closeDoc(true);
    }
    

    Be aware that using this code will close the file without saving it, and the user will lose all unsaved data that they have entered.

  • Year (only) extracted from field Date and display in the text field

    I need extract the year from a field of date entered by the user and display the year in a text field. Can someone help me with the correct script to do this?

    Hello

    It is quite easy to achieve with FormCalc.

    In you the output of the date fields event add the following code:

    textField1 = Num2Date( Date2Num($.formattedValue, "MM/DD/YYYY"), "YYYY")
    

    Note: This example assumes that your date field formats the date with "MM/DD/YYYY". You may need to change the schema to make it work for your purpose.

  • A Multiple of a column value and display it as a line

    I need to retrieve data from a particular column and display it as a row of data.

    For example,.

    Table

    Col1 col2 col3
    1-6-10
    1-7-11
    1-8-12
    2-6-18
    2 7 null
    2-8-19

    The data should be displayed using col 2 as partition as below

    col1, col3 col3 col3
    1 10 11 12
    2 18 19 null

    Help, please...

    Hello

    This is called a Pivot . The best wauy to do depends on your version of Oracle. The books following in Oracle 8.1 (or newer)

    SELECT        col1
    ,        MIN (CASE WHEN col2 = 6 THEN col3 END)     AS col2_6_col3
    ,        MIN (CASE WHEN col2 = 7 THEN col3 END)     AS col2_7_col3
    ,        MIN (CASE WHEN col2 = 8 THEN col3 END)     AS col2_8_col3
    FROM        t
    GROUP BY   col1
    ;
    

    but from Oracle 11, select the following... Function PIVOT is preferable:

    SELECT     *
    FROM     t
    PIVOT     (     MIN (col3)
         FOR     col2 IN     ( 6     AS col2_6_col3
                        , 7     AS col2_7_col3
                   , 8     AS col2_8_col3
                   )
            )
    ;
    

    To make a pivot, you should know, when you write the query, the number of columns will be in the output. If the number of columns depends on the data in the table at the time of the execution, then you neeed aggregation of chain , as in the previous answers, or dynamic SQL .

    Published by: Frank Kulash, April 19, 2011 10:48
    Accidentally, answered Pierre. Sorry; I wanted to respond to OP.

  • I can't enter in gmail. Error "page is not redirecting properly" is displayed. I can access gmail on my phone and with IE, but not firefox.

    I tried to clear the cache and delete cookies from gmail, but none worked. I can access gmail from my phone and through IE but not firefox. I also use the gmail gadget to my igoogle page and it does not work either.

    Tried all that precedes, and nothing has worked. I don't think it would be though, it is a new installation of windows 7 with very little installed. I wasn't expecting to find any virus/malware. The only thing found was an adware but removing those does not solve the problem.

    Edit: Uninstall and reinstall firefox did not work either.
    Edit2: I initially deleted all cookies associated with google and it does not work. I went back and remove all cookies, and it works now. Sorry I don't know what cookie was the cause of the problem.

  • Multiplies two values of two different columns and display in cold fusion!

    Hi all

    I have a table book_sale
    Topic | quantity | rate
    ===================
    Science | 5. $25.00
    Mathematics | 7. $70.00
    Reading | 20. $2.30
    ==========================================================
    I tried to code
    < cfquery name = "get_saleamount" datasource = "Book" >
    Select the object, the quantities, rates
    of book_sale
    < / cfquery >

    < table >
    < b >
    < /Th > < th > topic
    < /Th > < th > quantity
    < /Th > < th > rates
    Proceeds from the sale of < /th > < th >
    < /tr >
    < cfloop query = "get_saleamount."
    < b >
    < td > #Subject # < table >
    < td > #Quantity # < table >
    < td > #Rate # < table >
    < td > #Quantity # * #Rate # < table >
    < /tr >
    < / cfloop >
    < /table >

    The multiplication operation did not work code above. I want to calculate sale_amount = quantity * note and display the results in a table. Please give me some advice how to multiply two values from database and display them in a table above. Thanks in advance.




    If you want to exit, then simply change your
    #Quantity # * #Rate #.
    TO
    #Quantity * rate #.

    but you can do it at the level of the database, if you have db (most do so):

    Select the object, the quantities, rates, (amount * rate) AS ttl_cost
    of book_sale

    ...


    #Subject #.
    #Quantity #.
    #Rate #.
    #ttl_cost #.

    Azadi Saryev
    SABAI - Dee.com
    http://www.SABAI-Dee.com/

  • Tax calculation based on the user in the box input and displaying the result.

    Thanks to WhyIsThisMe for starting me on my first draft script & Jono! I'm almost there with my purchase requisition form (90% manufactured from the tutorial).  Everything works except for the taxable column

    form.JPG

    I can't understand the correct syntax to check the value of the checkbox in the column taxable and then do the math for the tax based on user input in the field % tax

    (total * stateTaxPercent / 100)

    Essentially, I want to make the calculation only the taxable = 1, and then display the cumulative tax in the tax field.

    Should I use mouseup as trigger to perform the calculation of the tax and save the result as a variable and displays the variable in the tax field? Then if another taxable box gets checked, I could add the new calculation of the variable. Not sure whether in an elegant way to get there.

    ?

    I would put the following text in the change event of each taxable check box (in formcalc):

    If ($ == 1) then

    tax = tax + (amount * 0,0825)

    ElseIf ($ == 0) then

    tax = tax - (quantity * 0,0825)

    endif

    (where 'tax' is what you called your total tax box and the 'amount' is what you called your box of price).

  • My 5s iphone suddenly showed no service, then I made an attempt to update to ios and itunes connected, now iphone is not enable and display cannot connect to the server and in itunes it shows unable to check your device.please help me

    My 5s iphone suddenly showed no service, then I made an attempt to update to ios and itunes connected, now iphone is not enable and display cannot connect to the server and in itunes it shows unable to check your device.please help me

    Assuming that you have a valid SIM card in the phone, it is more often symptomatic of a phone that has been hacked or jailbroken to unlock.

    Where do you have the phone first?

  • In ver39.0, I lost my display column of the number of messages in each of my subfolder - how can I get that back?

    When TB opens, it displays the tab file (version 39.0)
    On the left is a list of all my folders created sub - right is the list of the messages in the selected folders list.
    In my list of subfolders (left), there was a displayed column showing how many messages were in each case.
    I see is no longer this column of the counts of messages.
    That's happened?
    How can I get that back?
    Thank you
    Billy D. Reagan [email protected]

    DUUHH - I found how to restore the column Layout - VIEW - Menu - and check out pain of folder columns

  • Notification by email to the phone and not headset/Bluetooth Headset

    I have an iPhone6 and whenever my bluetooth headset is connected, my notifications by e-mail through the headset and not via the phone.  I need to call to keep giving me the notification and send it through the headset.  Often, I have my phone and the headset on my desk and will not hear the notification.  I'm pretty sure I could change this once, but can't remember how.

    Maybe you have active AirPlay? Swipe up from the bottom of the screen to display the command center and ensure AirPlay is disabled.

    How to use AirPlay on your iPhone, iPad or iPod touch - Apple Support

    Also, go to settings > general > accessibility > routing of Audio calls > and set it to automatic.

Maybe you are looking for

  • Satellite 2805-S201: AC power light flashes orange 8 times

    Hello I worked on a Satellite 2805-S201 and everything was fine until I put a PCMCIA wireless with 3, 3V power.After that, the AC power light flashes orange 8 times and recycle. It comes with power supply, battery, AC and no battery installed, etc. I

  • HP 2000: Drivers hp 2000

    I recently installed Windows 7 on my HP 2000 and I can't find drivers for two of the devices, the first is a PCI device: PCI\VEN_10EC & DEV_5229 & SUBSYS_188B103C & REV_01PCI\VEN_10EC & DEV_5229 & SUBSYS_188B103CPCI\VEN_10EC & DEV_5229 & CC_FF0000PCI

  • Problems with limited WiFi connection

    When I try to connect to a Terminal Wifi, I have a problem of limited connection, despite the fact that the same connection works on other computers by the way I just bought this computer and I've never connected with wifi connection Thanks for help

  • Problem with Counter strike 1.6 on Vista

    When I run my CS on vista, suddenly an unrecoverable error message on the screen that says "the available memory is less than 15MG!:-some figures.What should I do?

  • Please EXAMINE MY, MY IP ID AND SEND VERIFICATION CODE to MY EMAIL ADDRESS THAT IS * E-mail address is removed from the privacy *.

    Hi, I'm the real owner of the * address email is removed from the privacy * I know the secret code and my password but I do not use my secondary e-mail that is written on my info, so I can't get the verification code.  I just reset my password for 10