Help for changing the case of a selected word of a multiline text to upper

DBVersion:10g
Foms Version:10g
Hi Experts,
Actually i have a requirement where i have to change the case of a selected word by a user into upper case.
ex: FFFFFF hhhhh GGGG
when user selects hhhhh and click on some button or any other option it should change it to upper case.
plss help me out.
regards :(
Edited by: user123 on May 11, 2011 12:46 PM

Here is some PL/SQL code to change a particular occurence of a word in a text.
In this case, I change the second occurence of the "two" word:
Connected to:
Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> set serveroutput on
SQL>
SQL> declare
  2   c varchar2(100) := 'one two three four one two three four one two three four' ;
  3   c2 varchar2(100);
  4   i integer;
  5   j integer := 0 ;
  6   pos integer := 1 ;
  7   occurence integer := 2 ; -- occurence to change
  8  begin
  9   loop
10    i := instr(c,'two', pos);
11    exit when j = (occurence-1) or i = 0;
12    j := j + 1;
13    pos := pos + i ;
14   end loop;
15   i := instr(c,'two', pos);
16   if i > 0 then
17     c2 := substr( c,1,i-1) || upper(substr(c,i, length('two')))
18        || substr(c, i+length('two'));
19   end if ;
20   dbms_output.put_line(c2);
21  end;
22  /
one two three four one TWO three four one two three four
PL/SQL procedure successfully completed.Francois

Similar Messages

  • Need help : for changing the flv movie size

    i am loading my flv thogh xml link if load my flv the same
    size what i kept in my folder using script shall i change the movie
    size because lot of movies is loads dynmicaly i cannot go and
    change each and evry movie
    so some body can help me to change the movie - flv while it
    loads.

    You should be able to change the product name in Google Cloud.  The ChromeBook uses Google Cloud to print (Google Cloud uses HP ePrint).  Log into your google account and change the printer name there.
    I am an HP employee.
    Opinions expressed are mine and do not necessarily reflect the opinions of HP.
    Reminder: Please select the Accept as Solution button on the post that best answers your question. Also, you may select the Kudos button on any helpful post to give that person a quick thanks.

  • How to correct the case of letters and word spacing in some text

    if the user inputs the text:
    bird-watchers LOVE to watch birds.birds don't liKE
         being watched,so bird-watchers build boxes,called "hides" ,in which they
         can hide While they watch the birds .
    the program should output:
    Bird-watchers love to watch birds. Birds don't like being
    watched, so bird-watchers build boxes, called "hides", in which
    they can hide while they watch the birds.
    Sentences start with a letter in upper case.
    All other letters must be in lower case.
    There should be two spaces after a period (.).
    There should be one space after a comma (,).
    Teacher said that reuse the right classes from the Java API would be easy to solve this problem, who can tell me a easier way to solve this problem

    Got Eclipse running OK now then? It's my favorite IDE so far.
    Check out java.util.StringTokenizer and java.io.StreamTokenizer classes. Which you choose depends on what you're planning to do, but reading the APIs should help you decide.
    luck.

  • Can anyone help me change the DOB on my sons profile for his apple I'd so I can setup family sharing? I originally put both ids in my name. He is 19 do it keeps saying needs my permission but no instructions in how to get that done?

    Can anyone help me change the DOB on my sons profile for his apple I'd so I can setup family sharing? I originally put both ids in my name. He is 19 do it keeps saying needs my permission but no instructions in how to get that done? His phone was stollen once last month need to get this done ASAP to prevent future headaches. Ty

    You can not change the date of birth on the account. Apple makes that clear up front when the account is created.
    The only way to "fix" this is going to be for him to create a new account with the correct information. Any apps purchased with the old one will need to be re-purchased with the new account. They can not be transferred.

  • I cannot find information to help me change the orientation of a video filmed in portrait format but only able to be played back lying on its side  (landscape) instead of upright. All the rotation buttons for iPhoto are not 'engaged' when it is in video .

    I cannot find information to help me change the orientation of a video filmed in portrait format but it can only able to be played back lying on its side  (landscape) instead of upright. All the rotation buttons for iPhoto are not 'engaged' when it is in video .

    Thanks OT,
    I tried the Export function but it would not allow me to choose the option of exporting to iMovie. I think you are right about needing Quicktime Pro. I opened iMovie and imported the clip from iPhoto and with some searching found the 'cropping, rotation' mechanism. So I now have a copy in the correct orientation. I plan to import/export it back to iPhoto because I want to have a copy on my iPhone to show people and I wanted to have it available as part of a slideshow I am making in iPhoto of my recent overseas trip. It is a pain that there is no simple orientating tool for the movie clips downloaded to iPhoto with the photos from the one camera.

  • I have set up my work Exchange email/calendar. After setting up I am getting passcode expired message and asking for changing the passcode with a 16   digit and 4 special characters. No combination of numberic, alphanumeric, special characters works. Help

    I have set up my work Exchange email/calendar. After setting up I am getting passcode expired message and asking for changing the passcode with a 16 +  digit and 4 special characters. No combination of numberic, alphanumeric, special characters is working. Help!!

    I have set up my work Exchange email/calendar. After setting up I am getting passcode expired message and asking for changing the passcode with a 16 +  digit and 4 special characters. No combination of numberic, alphanumeric, special characters is working. Help!!

  • How do i change the size of a select list?

    Hello everyone,
    I know this is probably a newbie questiopn but i spent some time trying and already browsed for the forum to look and found nothing related to it.
    I m using apex 3.1, and i would like to know in what part of the item i define it's size, in the case of a select list where do i put it's size?
    In html i would do it like this:
    -----------------HTML CODE--------------------------
              <select size="18" class="bigselect">
                   <option>Mapa 1</option>
                   <option>Mapa 2</option>
                   <option>Mapa 3</option>
                   <option>Mapa 4</option>
              </select>
    -----------------HTML CODE--------------------------
    i already tried these and nothing:
    HTML Table Cell Attributes
    HTML Form Element Attributes <--- this one says i can t define id and size in it
    Form Element Option Attributes
    thanks and best regards

    Hi,
    I misunderstood you the first time :)
    It seems like APEX is automatically setting the SIZE attribute to 1 when you create a Select List. I'm not sure if you'll manage to change this value before the page is rendered. But if it is really important to you, maybe you can change this attribute after the page is rendered using javascript.
    Add this function to the page header section:
    <script type="text/javascript">
    function setLovSize(){
        var x=document.getElementById("PX_MY_SELECTLIST")
        x.size="18"
    </script>Then on the same page, put the following code into Page HTML Body Attribute:
    onLoad="setLovSize();"Hope this helps.
    Paulo Vale
    http://apex-notes.blogspot.com

  • How to change the case structure to string input?

    Hi,
    I have the inner case structure that it will decide to set "DC Voltage" or "DC Current" mode. The "Output Function" contained the selection of function "DC Voltage" or "DC Current". So far it only work with DC Voltage not DC Current. My question is how do I change the case structure to string selector? When the output function is selected to DC Voltage then the case structure is selected DC voltage case. Please help Thanks.
    Attachments:
    test.vi ‏35 KB

    You don't really need to convert the value to a string? The problem is that the value of the individual ring items are not 0 and 1, as you assumed. The values generated by the controls are:
    DC Voltage: 1006
    DC Current: 1007.
    You can find this out by viewing the properties for the "Output Function" and going to the "Edit Items" tab.
    So, all you need to do is change the 0 to 1006 and the 1 to 1007 for your case items.
    By the way, your sequence frame serves no purpose.

  • HP ENVY 700-210xt changed the case. Wifi adapterworking but can't find my network

    Hi all, I just changed the case of my  HP ENVY 700-210xt and now my wifi adpater cannot find my network. I work as an IT so I have done this before many times but this is weird. The adapter is detected by the OS. I installed the newest drivers with a usb key. I did everything and it just can't seem to find my network. all its saying is that it finds a hidden network which I have tried to enter my network info in and is not working. I know for a fact that my network is ok because I can use my cell phone, my ps4 and my wii U on my network and surf the web just fine. please help.
    HP ENVY 700-210xt
    adapter: Integrated Bluetooth 4.0 and Wireless LAN 802.11a/b/g/n featuring Dual-band (2.4GHz and 5GHz) 2x2 MIMO technology
    windows 8.1 64 bits 

    CodeExploit, welcome to the forum.
    Here is a guide that explains how to connect to a hidden wireless network.  From what you are saying, however, I doubt that you even have one.
    Have you tried completely eliminating your network and setting it up again?  It makes no sense that it would have worked with the original case and not the new one.  Unless, that is, the case is shielding the signal some way.  Is there an internal antenae?
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Need help with changing letter cases : (

    Hey everyone, I have an assignment that needs to
    1) allow the user to enter a sentence
    2) count the number of upper case, lower case, spaces, and other characters in the sentence,
    3) convert each first letter of a word into upper case if not already in upper case,
    4) convert non first letters to lower case if not already in lower case
    So, I have been successfull counting all characters, but I can't seem to find a way to convert the letter cases.
    I understand I have to distinguish first letters and non first letters, and I did this by using a boolean.
    Also, I tried to use a for loop and convert the letter cases accordingly by += 32 and -= 32.
    This is what I have for now :
    import javax.swing.JOptionPane;
    public class Asg3 {
         public static void main(String [] args)     {
              String sentence = JOptionPane.showInputDialog("Enter a Sentence!");
              int length = sentence.length();
              int counter = 0;
              int uppercase = 0;
              int lowercase = 0;
              int space = 0;          
              int other = 0;
              int total = 0;
              boolean firstletter = true;
              char thischarac;
              for (counter = 0; counter < sentence.length(); counter++)
                        thischarac = sentence.charAt(counter);
                        if ( thischarac >= 65 && thischarac <= 90 ) {
                             ++ uppercase;
                   else if ( thischarac >= 97 && thischarac <= 122 ) {
                             ++ lowercase;
                   else if ( thischarac == 32) {
                             ++ space;
                   else {
                             ++ other;
                             ++ total;
              for (counter = 0; counter < sentence.length(); counter++) {
                   thischarac = sentence.charAt(counter);
                   if (firstletter == true) {
                             if (thischarac >= 97 && thischarac <= 122) {
                                  thischarac -= 32;
                   else
                        if (firstletter == false)
                             if (thischarac >= 65 && thischarac <= 90) {
                                  thischarac += 32;
    System.out.println("You have entered: " + sentence);
              System.out.println("Upper case Letters: " + uppercase);
              System.out.println("Lower case Letters: " + lowercase);
              System.out.println("The number of blank spaces: " + space);
              System.out.println("The number of other characters: " + other);
              System.out.println("Grand total: " + total);
              System.exit( 0 );               
    I am stuck on this for hours now, and all googling, asking friends, going over lectures have failed, and this is my last resort.
    I understand it is frustrating when students come here for homework, but I would really appreciate any hints or help.
    Thank you!

    Oh, sorry I'm new and didn't realize the code button. Anyways, here it is
    import javax.swing.JOptionPane;
    public class Asg3 {
         public static void main(String [] args)     {
              String sentence = JOptionPane.showInputDialog("Enter a Sentence!");
              int length = sentence.length();
              int counter = 0;
              int uppercase = 0;
              int lowercase = 0;
              int space = 0;          
              int other = 0;
              int total = 0;
              boolean firstletter = true;
              char thischarac;
              for (counter = 0; counter < sentence.length(); counter++)
                        thischarac = sentence.charAt(counter);
                        if ( thischarac >= 65 && thischarac <= 90 ) {
                             ++ uppercase;
                   else if ( thischarac >= 97 && thischarac <= 122 ) {
                             ++ lowercase;
                   else if ( thischarac == 32) {
                             ++ space;
                   else {
                             ++ other;
                             ++ total;
              for (counter = 0; counter < sentence.length(); counter++) {
                   thischarac = sentence.charAt(counter);
                   if (firstletter == true) {
                             if (thischarac >= 97 && thischarac <= 122) {
                                  thischarac -= 32;
                   else
                        if (firstletter == false)
                             if (thischarac >= 65 && thischarac <= 90) {
                                  thischarac += 32;
                                    System.out.println("You have entered: " + sentence);
              System.out.println("Upper case Letters: " + uppercase);
              System.out.println("Lower case Letters: " + lowercase);
              System.out.println("The number of blank spaces: " + space);
              System.out.println("The number of other characters: " + other);
              System.out.println("Grand total: " + total);
              System.exit( 0 );               
    }The problem I'm having is converting letters to their right cases. I need to change the first letters of a word to upper cases, and non first letters to lower cases. For example, if the sentence the user entered is
    "tHIS AssigNMent IS harD!" , I would have to convert it to : "This Assignment Is Hard!"
    What I tried to do is use a for loop and a boolean.
    If firstletter == true, and if the character was lower case, I would subtract 32 from that character.
    If firstletter == false, and if the character was upper case, I would add 32.
    The problem here is that, what do I have to do to make it print the converted sentence? I have tried System.out.println( "The new sentence is :" + sentence); which gives me only the original sentence,
    and System.out.println("The new sentence is :" + thiscarac); which gives me all capital letters.
    So there are two main problems:
    1) Is my forloop and boolean correct in converting the cases? Am I using the right method?
    2) If so, how do I get the system to printout the new converted sentence?
    Edited by: ShaRpy on Oct 28, 2008 4:51 PM

  • I need to reset security question but the email that was saved for changing the password and security question is blocked , what can i do

    i need to reset security question but the email that was saved for changing the password and security question is blocked , what can i do?
    i purchased my account but i cant use that because apple ask me about security question and i forgot the correct answer

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
    Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                             Apple ID- All about Apple ID security questions.

  • Hello there .. When I want to change my security question I can't and show me Emil not for me to send the information for change the security question how to fix this problem

    Hello there .. When I want to change my security question I can't and show me Emil not for me to send the information for change the security question how to fix this problem

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a rescue email address or a Security Questions issue, then see:
             If you forgot the answers to your Apple ID security questions - Apple Support.
             Manage your Apple ID primary, rescue, alternate, and notification email addresses - Apple Support
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • I udate my os to 10.6.7 and since then my Pages have color problems. The text is not visible (white on white background) it does'nt help to change the text color nor background color. Pls help

    I udate my os to 10.6.7 and since then my Pages have color problems. The text is not visible (white on white background) it does'nt help to change the text color nor background color. I just download the recent trail version of Iworks and install it. The first document I opened it was ok. When I open the second one the problem appear again and stayed. Pls help

    This behavior was described many times.
    In every occurrence,the operating system was an uncompleted one resulting of the use of Software Update to update the operating system to 10.6.2, 10.6.3, 10.6.4, 10.6.5, 10.6.6, 10.6.7.
    In such cases, the solace was to apply a combo updater.
    As you are using 10.6.7, download and apply the combo 10.6.7 :
    http://support.apple.com/kb/DL1361
    After that, run Software Update which will urge you to apply :
    Snow Leopard Font Update
    Yvan KOENIG (VALLAURIS, France) dimanche 29 mai 2011 21:15:58
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • How do I find and/or change the pre-set voltage selection switch in an HP TouchSmart IQ500 series

    how do I find and/or change the pre-set voltage selection switch in an HP TouchSmart IQ500 series (specifically an IQ524)
    This question was solved.
    View Solution.

    Doesn't it use an external AC Adapter? If so, all you should need to use in another country is an adpater plug to match the wall socket.
    ... an HP employee expressing his own opinion.
    Please post rather than send me a Message. It's good for the community and I might not be able to get back quickly. - Thank you.

  • To change the font of a selected row in a Jtable

    Hello,
    Is it possible to change the font of a selected row in a jtable?
    i.e. if all the table is set to a bold font, how would you change the font of the row selected to a normal (not bold) font?
    thank you.

    String will be left justified
    Integer will be right justified
    Date will be a simple date without the time.
    As it will with this renderer.Only if your custom renderer duplicates the code
    found in each of the above renderers. This is a waste
    of time to duplicate code. The idea is to reuse code
    not duplicate and debug again.
    No, no, no there will be NO duplicated code.
    A single renderer class can handle all types ofdata.
    Sure you can fit a square peg into a round hole if
    you work hard enough. Why does the JDK come with
    separate renderers for Date, Integer, Double, Icon,
    Boolean? So that, by default the rendering for common classes is done correctly.
    Because its a better design then having code
    with a bunch of "instanceof" checks and nested
    if...else code.This is only required for customization BEYOND what the default renderers provide
    >
    And you would only have to use instanceof checkswhen you required custom
    rendering for a particular classAgreed, but as soon as you do require custom
    renderering you need to customize your renderer.
    which you would also have to do with theprepareRenderer calls too
    Not true. The code is the same whether you treat
    every cell as a String or whether you use a custom
    renderer for every cell. Here is the code to make the
    text of the selected line(s) bold:
    public Component prepareRenderer(TableCellRenderer
    renderer, int row, int column)
    Component c = super.prepareRenderer(renderer, row,
    , column);
         if (isRowSelected(row))
              c.setFont( c.getFont().deriveFont(Font.BOLD) );
         return c;
    }It will work for any renderer used by the table since
    the prepareRenderer(...) method returns a Component.
    There is no need to do any kind of "instanceof"
    checking. It doesn't matter whether the cell is
    renderered with the "Object" renderer or the
    "Integer" renderer.
    If the user wants to treat all columns as Strings or
    treat individual columns as String, Integer, Data...,
    then they only need to override the getColumnClass()
    method. There is no change to the prepareRenderer()
    code.
    Have you actually tried the code to see how simple it
    is?
    I've posted my code. Why don't you post your solution
    that will allow the user to bold the text of a Date,
    Integer, and String data in separate column and then
    let the poster decide.Well, I don't see a compilable, runnable demo anywhere in this thread. So here's one
    import javax.swing.*;
    import javax.swing.table.*;
    import java.awt.*;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.util.Arrays;
    import java.util.Date;
    import java.util.Vector;
    public class TableRendererDemo extends JFrame{
        String[] headers = {"String","Integer","Float","Boolean","Date"};
        private JTable table;
        public TableRendererDemo() {
            buildGUI();
        private void buildGUI() {
            JPanel mainPanel = (JPanel) getContentPane();
            mainPanel.setLayout(new BorderLayout());
            Vector headerVector = new Vector(Arrays.asList(headers));
             Vector data = createDataVector();
            DefaultTableModel tableModel = new DefaultTableModel(data, headerVector){
                public Class getColumnClass(int columnIndex) {
                    return getValueAt(0,columnIndex).getClass();
            table = new JTable(tableModel);
    //        table.setDefaultRenderer(Object.class, new MyTableCellRenderer());
            table.setDefaultRenderer(String.class, new MyTableCellRenderer());
            table.setDefaultRenderer(Integer.class, new MyTableCellRenderer());
            table.setDefaultRenderer(Float.class, new MyTableCellRenderer());
            table.setDefaultRenderer(Date.class, new MyTableCellRenderer());
            JScrollPane jsp = new JScrollPane(table);
            mainPanel.add(jsp, BorderLayout.CENTER);
            pack();
            setLocationRelativeTo(null);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        private Vector createDataVector(){
            Vector dataVector = new Vector();
            for ( int i = 0 ; i < 10; i++){
                Vector rowVector = new Vector();
                rowVector.add(new String("String "+i));
                rowVector.add(new Integer(i));
                rowVector.add(new Float(1.23));
                rowVector.add( (i % 2 == 0 ? Boolean.TRUE : Boolean.FALSE));
                rowVector.add(new Date());
                dataVector.add(rowVector);
            return dataVector;
        public static void main(String[] args) {
            Runnable runnable = new Runnable() {
                public void run() {
                    TableRendererDemo tableRendererDemo = new TableRendererDemo();
                    tableRendererDemo.setVisible(true);
            SwingUtilities.invokeLater(runnable);
        class MyTableCellRenderer extends DefaultTableCellRenderer{
            public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
                 super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
                if ( isSelected){
                    setFont(getFont().deriveFont(Font.BOLD));
                else{
                    setFont(getFont().deriveFont(Font.PLAIN));
                if ( value instanceof Date){
                    SimpleDateFormat formatter =(SimpleDateFormat) SimpleDateFormat.getDateInstance(DateFormat.MEDIUM);
                    setText(formatter.format((Date)value));
                if(value instanceof Number){
                   setText(((Number)value).toString());
                return this;
    }Hardly a "bunch of instanceof or nested loops. I only used the Date instanceof to allow date format to be specified/ modified. If it was left out the Date column would be "18 Apr 2005" ( DateFormat.MEDIUM, which is default).
    Cheers
    DB

Maybe you are looking for

  • FaceTime and imessage not working in South Africa

    Help! I'm in South Africa for a month and my iMessage and  FaceTime aren't working. When I try to imessage someone, the message says "turn off airplane mode or use wifi to send and receive messages" but i have full wifi strength. When I try to FaceTi

  • Internal Order Report - For the documnets when the cost ele. was not create

    Hi, We created internal orders for tracking capital expenditure relating to assets. At that time, we were not created asset GL's as cost element. Recently we created asset GL's as cost elements (category 90). Now we are getting the internal order rep

  • ORA-24344: Success with compilation error.

    Hi, i got the following error notification mail when the DB job [runs only once in a day at 1 AM] tries to execute the following procedure. The mail reads like this ---- "Condition Raised in: toll_partitions.recompile_invalid_objects Short Desc: ORA-

  • Using Discoverer 4i to view data on SQL Server

    Hello, We have Discoverer 4i set up to work with Oracle 9i. Now our Discoverer users want to use Discoverer to view data that is in SQL Severer. We don't want to rebuild data in SQL Server into 9i. What can we set up so 4i can view and maybe update d

  • BC4J / ADF Faces: Define ViewCriteria at the Iterator in the PageDef

    Hi! Is it possible to set the viewcriteria inside the binding (pageDef) and not on the VO level. I need the criterias only in a special view and not in all the others. If I set the criterias on VO level I have to reset them on leaving a view - this c