How to enter a new value not contained in a dynamic LOV?

Hello

I have a tabular layout with a report. This report is used to update a table. I defined a column of the report as a list of selection (called LOVE). It diaplays a dynamic LOVE to let the user choose a value in the LOVE, as a suggestion, but I want to make it possible to the user enters a value that is not in dynamic LOVE. I tried with "Display additional value" in the section "List of values", but this option displays an 'empty' value, but does not offer the possibility to enter a new value.

You have an idea?

Thank you very much for your help!

Christian

Hi Christian,

Sorry - my suggestion was for the normal items.

-J' tried it myself with a tabular form and it market in my env with Popup LOV (named LOV). I have a LOV named for it and then enter
additional values directly in the text field.

Best regards

Carsten-

Tags: Database

Similar Questions

  • How to compare the new values with the old values in triggers.

    Dear all,

    Please tell me how to compare the new values with the old values in triggers.

    Hi, the employee example is in the document. You'd better read yourself.

    CREATE OR REPLACE TRIGGER Print_salary_changes
      BEFORE DELETE OR INSERT OR UPDATE ON Emp_tab
      FOR EACH ROW
    WHEN (new.Empno > 0)
    DECLARE
        sal_diff number;
    BEGIN
        sal_diff  := :new.sal  - :old.sal;
        dbms_output.put('Old salary: ' || :old.sal);
        dbms_output.put('  New salary: ' || :new.sal);
        dbms_output.put_line('  Difference ' || sal_diff);
    END;
    /
    
  • Smartphones blackBerry how to enter text in the 'notes' fleld in my contacts?

    I need to keep various information with my contacts (directions to locations, password tips, etc.).  When I scroll to the bottom of the screen to enter new contact at the end it says that there is a field for notes, but when I try to enter, pressing the trackball or press the blackberry key to bring up a context menu, I get the following options:

    Save

    Add custom ringtone

    Add photo

    Help!

    Move the note field and simply enter the text, you don't need to click on anything whatsoever.

  • How to get the new value of VO through CO?

    Hello

    I have several tab in page in. In the tab lines to change certain values that I want to get on the Distribution tab. These values are not in the comic book. How can I get?

    I tried the following code, but it did not work

    OAViewObject PoLineMergeVO = (OAViewObject) rootAM.findViewObject ('PoLinesMergeVO');

    oracle.jbo.Row PoLineMergeRow = PoLineMergeVO.first ();

    String s_category_id = PoLineMergeRow.getAttribute("CategoryId").toString ();

    any idea?

    Best regards Mayte

    HI Mayte

    You can browse PoLineMergeVO second that co has provided the two CO are attached to the region who share the same mdoule application (ie you can get the unstance of PoLineMergeVO in the two CO and it must not be null)

    To iterate of use

    ViewObject OAViewObject =
    (OAViewObject) am.findViewObject ("PoLinesMergeVO") - name of the instance
    Line OARow = null;
    ITR RowSetIterator = null;
    {If (viewObject! = null & {viewObject.isExecuted ())}
    If (viewObject.findRowSetIterator ("Iterator") == null) {}
    ITR = viewObject.createRowSetIterator ("Iterator");
    } else {}
    ITR = viewObject.findRowSetIterator ("Iterator");
    }
    While (itr.hasNext ()) {}
    line = (OARow) itr.next ();
    String category = String.valueOf (row.getAttribute ("CategoryId"));
    }
    itr.closeRowSetIterator ();
  • How to add a new value to the item of Menu of Table Action?

    Hello

    I have a table in the application with an option of the Menu Action containing general values such as "Add", "delete" etc. Now, I created a new command button, and I want him there in the table toolbar, and also a reference to it in the Menu Action just as the other buttons.

    I was able to add the button on the table toolbar, however, I can't add it to the option from the Action Menu.

    If someone has done this before then can you please help me?


    Thank you
    Akshay

    Akshay, please indicate which version of jdev you use.

    Do you mean that you have a table that is embedded in a panelCollection? then the panelCollection have a menu of facets that you can activate by dropping a menu as a child a menuItem. This menu will appear next to the other menu existing menu. The property of action or actionListener menuItem points to the same action button points to.

    ...
                 
                    
                      
                        
                      
                    
    ...
    

    Timo

  • Variants: How to assign a new value without alteration/losing its attributes?

    Hello

    I work with data varying with some metadata stored as attributes. Data values change frequently, but the metadata values are fairly constant.

    I am looking for a way to update the value of a Variant while preserving its attributes (or equivalently, transfer the old attributes to a new variant). I know that I can read the attributes of the old variant and insert them into a new, but I imagine that because many variants in a tight loop is a waste of cycles CPU - that is a legitimate concern? Is there a cleaner way to do this?

    Thank you!

    Here's a quick and dirty example:

  • How do you define a value for a list item select (LOV) with Javascript?

    I am trying set the values for a group of elements in a dynamic way, based on a selection of a report. Everything works fine, but the selection list.  What I have so far is the following:

    get var = new htmldb_Get (null, $v ('pFlowId'), 'APPLICATION_PROCESS is REFRESH_LIMIT_TYPE', $v ('pFlowStepId'));
    var gReturn = get.get ();
    $x('P10014_LIMIT_TYPE').value = gReturn;

    My guess is that a Select list of an LOV is more complicated than a text or a single display element.

    Thanks in advance for your help,

    Jim

    Thank you user - placed you me in the correct district-

    $s ('P10014_LIMIT_TYPE', gReturn); -This update value, but not the displayed value.

    Apparently LOVs require two values ('P10014_LIMIT_TYPE', return_value, display_value) $s;    Then I changed my code-

    ".. gReturn a = 44001, now = ' 44001, ASSUMPTION..."

    var args = gReturn.split(",");

    var r = args [0];

    var d = args [1];

    $s ('P10014_LIMIT_TYPE', r, d);

  • link: new values on after the trigger by using dynamic sql.

    Hello all I have a problem I want to solve using dynamic sql on a trigger. The problem is that are around 5 qty fields who each have 18 separate fields. This is because of different sizes (S, M, L, XL, etc., up to 18). So I will try to use the: new values on a trigger to dynamically fill these information on a table, but immediate execution is run is returning the value like: new.open_sz (x) instead of the actual numeric value of the column. See code below. Is there a way to do this.

    Thank you in advance.


    CREATE OR REPLACE TRIGGER T_EXAMPLE
    after update of
    open_sz1, open_sz2, open_sz3, open_sz4, open_sz5, open_sz6,
    open_sz7, open_sz8, open_sz9, open_sz10, open_sz11, open_sz12,
    open_sz13, open_sz14, open_sz15, open_sz16, open_sz17, open_sz18
    on order_li_m for each line
    declare
    Is of TYPE NumArray table indexes number directory;
    NumArray v_orderqty;
    -TYPE VarArray is the table of the varchar2 (200) index directory.
    -v_orderqty K_A2KSTD. VarArray;
    v_col varchar2 (30);
    v_sql varchar2 (1000);
    BEGIN
    for a 1 in... 18 loop
    v_col: = ': new.open_sz' | one;
    v_sql: = ' SELECT: 1 double ';
    run immediately v_sql in v_orderqty (a) using v_col;
    dbms_output.put_line (v_orderqty (a));
    end loop;
    end T_EXAMPLE;
    /

    Raffy Martin wrote:
    Is there a way to do this.

    You may not use: news and: old identifiers in dynamic SQL, the way to do it is to specify the real column names.

  • Anyone know how to enter values containing / by the numbers?

    Anyone know how to enter values containing / numbers?  I am trying to enter values of blood pressure requiring this symbol.  Thank you

    You can force numbers does not interpret the value as a number by typing the single quote... like this:

    120/72

    the column text format or

    or enter systolic diastolic and columns in then next:

    Systolic

    Diastolic

    120

    72

    124

    80

  • I upgraded my Mac and does not contain a disk drive. I have creative suite 5 on my old computer and I want to put it on my new computer. How can I do this?

    I upgraded my Mac and does not contain a disk drive. I have creative cloud 5 on my old computer and I want to put it on my new computer. How can I do this?

    Download & install instructions https://forums.adobe.com/thread/2003339 can help

    -includes a link to access a page to download the Adobe programs if you do not have a disk or drive

    -you will need to enter your original serial number during the installation for non-Cloud programs

    - or kglad links in response to #1 here can help https://forums.adobe.com/thread/2081216

    Also go to https://forums.adobe.com/community/creative_cloud/creative_cloud_faq

    - and also read https://forums.adobe.com/thread/1146459

  • How to check that the variable 'does not contain' value?

    Hello

    I use CP 7.0.1.237.

    We want to use the widget text box for a custom quiz and verify a response. While we understood how to check the existence of certain key words, we are not able to find a way to check that the content does NOT contain certain keywords. For example, we want to ensure that the text entered in this widget does not contain a "Transformation" and "Non-compliant.

    Is this possible at all?

    Thank you

    Anthony

    Anthony, it works perfectly. Created this conditional action with 4 decisions. I used the interaction of training text scrolling in CP8 (because now you can control the variable - which means I might have a Reset button):

    First decision:

    Second decision (the third is similar to the following)

    Fourth and final decision

    I put the variable words (v_first... v_fifth), it's a reflex I use since I shared actions that much. The variable associated to the ETB (you can now reset an empty var in CP8) is v_TextArea and the Boolean value that will decide if positive feedback (StarOK) should be shown is v_TA_OK. If you want to display a negative feedback, put this in the ELSE part of the final decision.

    FYI: it took 15 minutes, including the creation of assets and the variables and tests. Personally I would have needed more time to do it in JS, but that's just me.

    Lieve

  • How can I enter a web address (not in bookmarks) in a new tab FF8

    I used to open a new tab and enter a new web address. This seems more possible in FF8.01, except that I can enter a bookmark be selecting from bookmarks menu list.

    Please notify

    Try Firefox SafeMode to see how it works there.

    A way of solving problems, which disables most of the modules.

    (If you use it, switch to the default theme).

    • You can open the mode without failure of Firefox 4.0 + by pressing the SHIFT key when you use the desktop Firefox or shortcut in the start menu.
    • Or use the Help menu option, click restart with the disabled... modules while Firefox is running.

    Do not choose anything at the moment, just use 'continue in safe mode.

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before using the shortcut of Firefox (without the Shift key) to open it again.

    If it's good in Firefox Safe mode, your problem is probably caused by an extension, and you need to understand that one.

    http://support.Mozilla.com/en-us/KB/troubleshooting+extensions+and+themes

    When find you what is causing that, please let us know. It might help others who have this problem.

  • How do the average of the last 5 values of a column as new values automatically entered?

    If the issue is not clear for you, here's a site I found that teaches you how do it on excel. ml https://www.extendoffice.com/documents/Excel/2533-Excel-average-last-5-values.HT    I can't find the corresponding method on the good numbers. Thank you for your response in advance :-)

    Hi Z_J,

    This number approach pulls the last 5 (low) values of table 1 in another table where the average can be calculated.

    Step 1. Add line numbers in column A of table 1. This gives a way for table 1-1 to extract the last 5 values.

    Formula in A2 (and fill down

    = ROW()

    Step 2.

    In table 1-1, the formula in A6 estimated the maximum line in table 1

    = MAX (Table 1::A)

    The formula in A5 (and filling up)

    = A6−1

    Formula in B2 of table 1-1 (and fill down) using VLOOKUP to find a match for each line number in table 1-1 and get the value out of this line in table 1.

    = VLOOKUP(A2,Table 1::A:B,2,FALSE)

    Step 3.

    Now add another row (and insert a new value) to the lower part of table 1

    Lines 3 to 7 are now drawn.

    Ranger by hiding some columns

    Kind regards

    Ian.

  • How to turn off the old and new values for a plsql code

    Hi, when I run any code plsql as I age and the new value calls after execution how turn off...

    < pre >
    DECLARE
    V_Day VARCHAR2 (3): = TO_CHAR (TO_DATE ('& YourDate ',' DD-MON-AA '), 'DY');
    BEGIN
    IF V_Day NOT IN ("SAT", "SUN") THEN
    DBMS_OUTPUT. Put_line ("Have a Nice Day");
    ON THE OTHER
    DBMS_OUTPUT. Put_line ("' live the weekend");
    END IF;
    END;
    /
    < / pre >

    Enter the value of yourdate: January 31, 2010

    2 old : VARCHAR2 (3) V_Day: = TO_CHAR (TO_DATE ("& YourDate","DD-MON-YY'), 'DY');
    2 new : VARCHAR2 (3) V_Day: = TO_CHAR (TO_DATE ("January 31, 2010","DD-MON-YY'), 'DY');

    Enjoy the weekend

    HOW to left of these old and new guest values after execution...?

    SET VERIFY OFF

  • Satellite T135 how to enter Safe Mode and HDD Recovery if 'F8' does not work

    Hello everyone

    I have a laptop Toshiba Satellite T135 and it crashed recently. Since then, whenever I turn it on, startup repair is enabled automatically. But it does not fix the error.
    I tried to solve the problem with the system restore, but that no longer works. So I think I have to go through the procedure of HARD drive recovery.

    The problem is that I have a lot of data on my laptop that I must first of all safe. I wanted to do it via Safe Mode that supposedly, I should be able to enter by pressing "F8" at initialization, when the Windows logo appears. But my laptop is not responding when I press F8, but rather getting a sound alert, if I press the button for a long time.

    Apart from how to enter safe mode by pressing F8 during initialization does not work, I have a second question: Toshiba Recovery Wizard is the equivalent for the HDD recovery procedure? It is the only similar option that I could find...

    Thank you very much for your advice.

    Hello

    The recovery of HARD drive installs the image of Toshiba.
    The image is the package that contains the operating system, drivers and all the tools that have been installed on the first day of purchase; simply said; using HARD drive recovery you would set the laptop back to factory settings.

    You want to save the date before you install the operating system once more?
    Well, remove the HARD drive, put this in a USB HDD enclosure and move the file to the HARD drive to another computer.
    It would be the best way to get the file save.

Maybe you are looking for

  • El Capitan has taken my SD card reader

    Since my upgrade to El Capitan last week, my sd card reader does not work. She is not in the hardware. I did the reset where you unplug for 30 seconds. I did the control + apple + r + thing p and the card reader worked for only a few days. I can't do

  • Portege R700 - Installation Ubuntu 10.10 Maverick

    Hello I don't want a Windows operating system. I installed the latest Ubuntu 10.10 on my new toshiba R700-131 Core i5Sometimes, my cell phone is freeze with hight CPU (hight fan).then I restarted (reboot = 10:22) Toshiba R700 is compatible with the L

  • Satellite P200-140: cannot install software on Vista with the administrator account

    Hello just bought a new P200-140 Sat with windows vista at home, but I cannot load the software on the computer. I'm in administrator mode and when I am trying to load the software I get an error message saying "can only load software as an administr

  • Windows initialize with Veritical lines

    My desktop computer is having problems when starting Windows. Often, he will have veritical lines through the screensaver after startup. Sometimes it wouldn't start after the black screen. If I continue to force close down and restart, finally I get

  • Error code 0 x 80244015

    Cannot install Windows update due to error codes: 0 x 80244015 or 80070020. What should I do to correct errors?