Change all the record in a table by clicking a button

Hello:
My version is 11.1.1.6 Jdev

I want to calculate a new price for all products in an af:table with a unique af:inputText and clicking on a single af:commandButton.
How can I multiply the price of the column of af: table by a value typed in af:inputText?

It's my interator

It is actionListener may in af:commandButton, but I don't know how to go on:

Sub CalculateNewPrice()
{
DCBindingContainer links =
(DCBindingContainer) BindingContext.getCurrent () .getCurrentBindingsEntry ();
DCIteratorBinding = selected2
bindings.findIteratorBinding ("PriceListView2Iterator");
RowSetIterator iterListPrices = selected2.getRowSetIterator ();
}

Hello.
See:Re: Loop example DCIteratorBinding - jdev 11.1.2

Tags: Java

Similar Questions

  • delete all the records in a table, the speed of insertion is not change.

    I have an empty table, and I insert a record need 100ms.
    During this table a 40,0000 trace, I insert a record need 1 s, it's ok, because I need to make a comparison according to an index before inserting a record need, so more record, more time.
    The problem is when I delete all the record in this table, the insertion time is always 1s, not reduce to 100ms. Why?

    Hello

    Read this part of the oracle documentation

    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14220/logical.htm#CNCPT004

    The reason is always 1s, because when you inserted 400ko record as HWM (high tide is the border between old and new space in a segment.) moved to the top. And when you remove all records of your HWM still in the same coordinate system and that you have not reset to 0. So when you insert 1 it save free space and after finding faces (usually a regular insertions got 6 steps it inserts data). If you truncate your table you and try it again it will be faster that your HWM is reset to 0.

    Concerning

  • How to upgrade all the record for a particular column in a table based on search criteria.

    Hi all

    I'm new to ADF. I have a requirement where I have to perform the update of mass on a table.

    Scenario:

    Ex: I have a search region manual dept. where I search with deptId: 20. I get 20 records in my table. now I have another area where I have an inputchoice list that contains all the column names that exist in the dept table. Beside that, I have a text box and a button update

    The user now, first research with dept id: 20 and click on the button Search, where it shows 20 record in the table. He then select an input choicelist(ex: ManagerId) column, then enter the new value in the decision-making box(ex: abc) then click on the button update.

    Now, I want to, all the records in the ManagerId column with dept id: 20 update with the new value 'abc '.

    Can someone help me with the code.

    Thanks in advance...

    Hello

    If you go to your VO and generate the ViewObjectImpl, here you can create a method that contains two parameters, 1 the name attribute and 2 the value.

    Then you can follow something as explained in this post:

    ADF tutorial: how to apply actions in bulk to a view object lines

    The only difference is that you must create a method like this:

    ' Public Sub updateAttribute (attribute String, Integer value) {}

    RowSetIterator iter = createRowSetIterator (null);

    While (iter.hasNext ()) {}

    Line = iter.next ();

    row.setAttribute (attribute, value);

    }

    }

    Then execute you who expose a customer interface and then after you filter your table according to your criteria just this method passing the correct parameters.

    Concerning

  • Changing all the semantic VARCHAR2 length in BYTE to CHAR columns

    Hello

    our database is to use character set AL32UTF8, i.e. multibyte.

    All our VARCHAR2 columns have been specified as VARCHAR (xxx) semantic unspecified length explicit, which makes VARCHAR(xxx BYTE) because NLS_LENGTH_SEMANTICS is set on 'BYTE' (default Oracle).

    I wonder now if it would cause problems to enter and execute the ALTER TABLE statement to change all the columns of VARCHAR2(xxx BYTE) to VARCHAR2(xxx CHAR), leaving the same xxx. For example, if a VARCHAR2 column (100 BYTE) would be amended to be VARCHAR2(100 CHAR).

    If I am not entirely mistaken, - on the contrary - it would make the columns longer, not shorter; I expect to not get errors on the values of existing records being too long to change the specifications of the column in this way (as it may happen when the shortening of a VARCHAR column, for example, of varchar (10) to varchar (5)). So I think the ALTER TABLE statements should go without problem.

    I would also change NLS_LENGTH_SEMANTICS to TANK.

    Are there problems or consequences I might meet when I do this? I'm not worried about the implications for code enforcement external or such, but simply the integrity / performance / etc on the database level.

    It is a 11.2.0.x of Oracle database.

    Thank you

    MSA

    You can make this change to your drawings, but not for Oracle schemas or third party. It would usually not be supported.

    You will not get the errors associated with the data in the table. However, you can encounter errors due to:

    1 index of issues of key length - the maximum length of an index key in bytes (based on the column definitions, no real content column) is limited to about 70% of the size of the block of the tablespace containing the index. If you try to do a column belonging to a larger index key by applying the semantics of length in characters, you get an error if the change causes the index key limit.

    2. some columns cannot be changed. This includes, but may not be limited to, the columns that are referenced by expressions of virtual column and the functional index expressions, columns that have indexes defined on them, and columns field belonging to a partitioning key.

    3. you can not change the columns that store attributes of the type defined by the user in this way. You must change the definition of type instead.

    Also, do not change NLS_LENGTH_SEMANTICS initialization file. Include the keyword CHAR in your scripts or ALTER SESSION SET NLS_LENGTH_SEMANTICS = CHAR in these scripts. Value of the initialization file will affect all the scripts for Oracle products and third-party and can create tables with the semantics of unexpected length. Therefore, for compatibility reasons, this parameter in init.ora/spfile parameters is not recommended.

    Thank you

    Sergiusz

    Post edited by: Sergiusz Wolicki (Oracle)

  • For all the records for each record double, I need to get a single column with null or 0.

    Hi all

    I have a requirement where I need to get all the records, for each record in double, I need to get a single column with null or 0.

    create table a1

    (

    Identification number,

    VARCHAR2 (100), the point

    part varchar2 (100));

    Insert into a1

    values (1, 'ABC', 'A1');

    Insert into a1

    values (2, 'DEF', 'A2');

    TABLE A

    PART ITEM ID

    1 ABC A1

    1 ABC A1

    1 ABC A1

    DEF 2 A2

    DEF 2 A2

    3 DEF A2

    O/P

    PART ITEM ID

    1 ABC A1

    1        ABC             0

    1        ABC             0

    DEF 2 A2

    2       DEF              0

    3       DEF              0

    Thanks in advance.

    Thanks for your help FrankKalush...

    This one will work.

    WITH got_r_num AS

    (

    SELECT NVL (a1.id, a1.id) as id

    NVL (a1.item, a1.item) AS element

    NVL (a1.part, a1.part) IN the framework

    a1.id AS a_id

    ROW_NUMBER () OVER (PARTITION BY a1.id

    ORDER BY NULL

    ) AS r_num

    BY the a1

    )

    SELECT id

    element

    CASE

    WHEN a_id IS NOT NULL

    AND r_num = 1

    THEN part

    ELSE ' 0'

    END in the framework

    OF got_r_num

    ;

  • Change all the templates page only once

    Hello

    Is it possible to change all the page templates in all applications of 1 GB, we have 100s of applications and to change the titile tag < title > #TITLE # < /title > < title > #TITLE #-#APP_VERSION # < /title >

    Thanks in advance.

    Graham

    If I understand correctly you need to change all your aps by changing the models?

    The fastest way is to change the actual models source if you have permission to do so.

    the table I fold models is wwv_flow_templates

    There is need of clob utilities, but it is possible

    concerning
    Piotr

  • To work with the text to the assignment by the cursor of the large fragment of page it is necessary to change all the time down, 'against the judgment", but the page automatically does not start to rise upward, as happens in other browsers. I ask you for

    After the transition to Windows 7, there was a problem with Firefox. To work with the text to the award by the cursor of the large fragment of page it is necessary to change all the time down, 'against the judgment", but the page automatically does not ascend to the top as it was earlier, and like that occurs in other browsers. It is necessary to press the other key "down" which is him very troublesome. Resettlement on an earlier version (8.0) earlier irreproachably working, gave nothing. I ask you to help

    You must activate the module bar (Firefox > Options or view > toolbars;) CTRL + /) or find bar to make Firefox scroll the page while selecting the text (Ctrl + F).

  • I can not open a new tab (empty) I change all the settings. However as I said well can I open a new tab with a link without a link, I can't open a new (empty) tab.

    I can not open a new tab (empty) I change all the settings. However as I said well can I open a new tab with a link without a link, I can't open a new (empty) tab.

    Uninstall the toolbar Ask and it should work again. There is a compatibility issue with the Ask and Firefox toolbar that prevents the opening of new tabs.

    There are a few places to check for the Ask toolbar:

  • My background changes all the time. How can I get it stays the same?

    The background on my laptop changes all the time. I am constantly going to the control panel and change = ing it and invited her to "Save Changes". This never happens. Can someone tell me why this is happening?

    Hi karey204.

    Office operating system preferences and settings, such as the desktop wallpaper, sounds, themes and screensavers can not be saved if the user account is damaged. Create a new user account to solve the problem.

    Note: If my post answered your question, please mark it as an "accepted Solution".

  • All my programs have gone there program default open in Word 2007 how to change all the programs back to defuault there?

    All my programs are passed to the default opening program here as Word 2007 How do I change all the acknowledgement of programs to defuault there? I uninstalled the steps and it made no difference so I reinstalled and opened. Then he did the same as before. How can I get my programs back to default here?
    This problem started as soon as I updated my Windows 7 - 32 bit - please help. :(

    Hello mattyboy1212,

    Thanks for posting on the Microsoft answers Forum.

    Try these steps and see if you can associate the default programs. If they are associated with Word, and then change them to the correct program.

    1. click Start and then click Control Panel.

    2. click on programs link.

    Note: If you see small icons or large icons in the control panel display, you will not see this link. Click on the default programs icon, and then click the link associated with a file type or Protocol with a program . Go to step 4.

    3. click on the link to Open a file in a specific program type always under default programs .

    4. in the set Associations window, scroll down until you see the file extension that you want to change the default for program.

    5. click on the extension of the file to select it, once you have found what you are looking for.

    6. click the button of change... program above the scroll bar.

    The Open with dialog box should appear.

    7. look into options for programs recommended and choose the application you want to open it with the file extension when you double-click on the particular type of the file on your computer.

    Note: Chances are, requests described under the programs recommended will be contain more programs for this type of file, but don't forget to look at the applications under other programs. You may need to click the v to expand the list of these programs.

    Note: Click Browse... to search, through your computer for any program not shown do not want to use.

    8. click OK in the Open with window. Windows 7 is going to update the list of file associations to display the new default program to open this type of file.

    9. click the button close the bottom together associations . You can also close the window of the Control Panel if it is still open.

    10. at this stage, when you double-click on any file with this particular file extension, the program you partner in step 7 will launch and load the particular file.

    Important: Program used to automatically open when these types of files have been launched will again open these types of files. To use a different program, you just need to start the program manually and then browse your computer for the file in particular.

    If please reply back and let us know if know if it helped to solve your problem or if you still need help.

    Sincerely,

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • Movie Maker grab and changed all the desktop icons for Movie Maker and all isopening Movie Maker

    I have a big problem, I have Windows 7 and I made a film using still photos on my computer now all binding, Movie Maker says that Movie Maker does not support the selected file type, 3 first films went great, but obviously I hit the wrong key, it changed all the icons on my desktop to display the icon of Movie Maker and each icon now opens on seizures to the top of Movie Maker, I tried every troubleshooting and restoration utility, but nothing changes; When I go to Movie Maker hand opens as if she's trying to do something. Can you give me any advice, would be much appreciated I can't do a thing right now.

    VI

    Have you tried to do a system restore
    Safe mode for one hour before the beginning of the question?

    Using Windows 7 or Vista System Restore
    http://www.howtogeek.com/HOWTO/Windows-Vista/using-Windows-Vista-system-restore/

  • I want to change all the adobe cloud programming language (I now use Korean but I want to change all the English program) is my computer OS

    I want to change all the adobe cloud programming language (I now use Korean but I want to change all the English program) is my computer OS

    Hi Parky22317382,

    Please follow the steps mentioned here https://helpx.adobe.com/creative-cloud/help/change-install-language.html

    Let us know if it works!

  • I use LRM6 with Win7.  Cannot display all of the subfolders on external drive with photos.  Can't see most recent used folders.  How can I get all the records to display in the tree when the library module?

    I use LRM6 with Win7.  Cannot display all of the subfolders on external drive with photos.  Can't see most recent used folders.  How can I get all the records to display in the tree when the library module?

    Syrup72 wrote:

    Why I see pictures when I click on the tab all the photos above, which do not show in the tree on the G: drive?

    DSC_2429 is in the shown locaton and present in all the Photos, but there is no folder "Tulsa"... "in the tree.

    The left pane is a "choose one". "All photos" are just that. 'G' is a different option.

    Lightroom is not a file Explorer. He knows only the drives and files that you have imported the photos of. If LR shows not all of the photos that are on your hard drive, it is because you did not import all photos.

    If LR shows you a photo in "all photos" but do not show it in the folder you think he is in, go to "all photos", select the image, right click "view in the library folder. This will show you where LR think the picture is.

  • How can I change a page of my document from portrait to landscape without changing all the pages

    Acrobat Reader DC - How can I change a page of my document from portrait to landscape without changing all the pages?

    Hello Tracy,.

    You must use Acrobat Pro DC to do it with the help of the Pages organize the toolset.

    Thank you

    Abhishek

  • I have install Adobe DC pro but the leguage is Spanish. I like to change all the menus in German. How do I do this?

    I have install Adobe DC pro but the leguage is Spanish. I like to change all the menus in German. How do I do this?

    Install the German version of the product.

Maybe you are looking for