Limitation of the number of values in an LOV

Greetings,
I have a tabular form with few of the columns as LOVs. One of the LOVs returns close to 1000 records and the form is giving me a "PL/SQL Numeric Value error". If I do a rownum < 450 in the LOV query the form works. But I need all the values in the LOV.
Any ideas ow to fix this issue. Your help will be greatly appreciated.
Thanks
Vatsa

sr**** wrote:
I have a tabular form with few of the columns as LOVs. One of the LOVs returns close to 1000 records and the form is giving me a "PL/SQL Numeric Value error". If I do a rownum < 450 in the LOV query the form works. But I need all the values in the LOV.
Any ideas ow to fix this issue. Your help will be greatly appreciated.The total size of the HTML generated for an LOV-based item in APEX is restricted to 32K&mdash;something that can be discovered by a basic search of the forum.
You have not provided enough information to enable anyone to "fix this issue" directly. ALWAYS provide the following information in a question:
<li>Full APEX version
<li>Full DB version and edition
<li>Web server architecture (EPG, OHS or APEX listener)
<li>Browser(s)/version(s) used
<li>Theme
<li>Template(s)
<li>Region type(s)
When discussing a tabular form, always indicate whether it was created using a wizard with generated column items, validations and MRU processing, or created manually using <tt>apex_item</tt> API items and custom validations and processing (or some other combination of these possibilities).
LOVs can be used in rendering a number of APEX items: text look-ups, select lists, radio groups and pop-ups. You have not specified which item type(s) are involved. All of these item types except pop-ups are subject to the 32K restriction.
For text look-ups rendered as Display as Text (based on LOV, does not save state), change the display type to Display as Text (escape special characters, does not save state) and do the the look-up in the query using a join or scalar subquery.
As pointed out above, even if it was possible to render a select list or radio group with 1000 options in APEX, this is way too many for an effective UI. There's also the effect on the overall size of a page: if the tabular form displays 10 rows, and each select list contains 32K of options, how big is the page? How long does it take to download? The maximum number of options I'd use in a select list is the ~200 used in lists of countries. (For select lists used in tabular forms I'd prefer to limit it to about 6!) The workaround for select lists/radio groups is to change them to Popup Key LOVs.

Similar Messages

  • Limitation on the number of characters in an input field

    Hi All,
    We are on EP 7.0 SP12.
    When I select an input field/text editor and map it to a field in a BAPI it truncates the value to 80 characters and thus I get the truncated value in the result.
    When I pass a value larger than 80 characters in length while doing test data service, it works fine and I face this issue only while passing the data from the screen. Is this a bug in VC? Or if any one has a solution to this?
    Regards,
    Murtuza

    Hi Ganesh,
    Following are the Answers regaring your queries:
    Query : 1
    There is no limitation on the number of components (objects, classes, tables, joins, hierarchies, lov's, etc) in a universe. But of course as the number of components increases, you could run into problems  related to performance.
    This depends on available RAM and the processing speed.
    Query 2:
    There is NO such option to select the number of table to be automatically inserted in to the universe because Suppose if you have 22000 tables in DB and you want only 1000 table ,you entered 1000 tables as the value to insert tables in Universe then How Designer will come to know which tables you want to take in Schema to build the Universe?
    It all depends on the DBA and Universe Designer which tables are important for organizations reporting needs.
    When you  create connection to the DB then Connection will fetch all table from the database and we canu2019t limit  DB data retrieval.
    I hope this Helps...
    Thanks...
    Pratik

  • Limitation on the number of Collections in a Page ?

    Hi All,
    Can I know if there is any limitation on the number of collections I can create on a page ?
    Thanks,
    Rads

    Rads,
    Collections are not limited to a page but to a user's specific apex session
    "Collections enable you to temporarily capture one or more nonscalar values. You can use collections to store rows and columns currently in session state so they can be accessed, manipulated, or processed during a user's specific session. You can think of a collection as a bucket in which you temporarily store and name rows of information."
    [http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/advnc_collections.htm#HTMDB13002] .
    The documentation should answer all your questions.
    Kofi

  • Limitation on the number of tables in a Database Schema!

    Hi All,
    Is there a limitation on the number of tables present in a schema that can be fetched in Designer while creating a universe.
    Customer is using Oracle schema which contains 22000 tables and while trying to insert tables in Designer XIR2 (or trying to get the table browser) Designer hangs.
    In BO 6.5 there are no issues while retrieving the tables from the schema in Designer.
    Is there a way to retrieve only a certain amount of tables in Designer XIR2?
    Thanks for your help!

    Hi Ganesh,
    Following are the Answers regaring your queries:
    Query : 1
    There is no limitation on the number of components (objects, classes, tables, joins, hierarchies, lov's, etc) in a universe. But of course as the number of components increases, you could run into problems  related to performance.
    This depends on available RAM and the processing speed.
    Query 2:
    There is NO such option to select the number of table to be automatically inserted in to the universe because Suppose if you have 22000 tables in DB and you want only 1000 table ,you entered 1000 tables as the value to insert tables in Universe then How Designer will come to know which tables you want to take in Schema to build the Universe?
    It all depends on the DBA and Universe Designer which tables are important for organizations reporting needs.
    When you  create connection to the DB then Connection will fetch all table from the database and we canu2019t limit  DB data retrieval.
    I hope this Helps...
    Thanks...
    Pratik

  • Limitation on the number of applications for a domain?

    Does anyone know if there is a limitation on the number of applications you can
    deploy on a domain for weblogic server 7?

    java -XX:MaxPermSize=... worked, so now the app server starts fine
    Thanks a lot.
    Rob Woollen <[email protected]> wrote:
    Jing wrote:
    Rob,
    I deployed 291 EJBs into the applications directory for a weblogicdomain, since
    each jars stands on its own, so weblogic treats them as individualapplications.
    Interesting. Is that really how you want to structure your server?
    The behaviour I ran into was weblogic server was not able to startcorrectly,
    it seems to stuck on some infinite loop, keep printing out the samemessage saying
    it's trying to active xxx.jar, but as soon as I reduce the number ofEJBs to a
    certain number(238) in this directory, weblogic server started correctly,deployed
    xxx.jar just fine.Without more information (like showing me what error it printed out),
    I
    can't tell you where the problem lies.
    However, the server is limited by the heap size, and the class size
    space is another limit you might hit.
    I would suggest increasing the heap size as well as the MaxPermSize in
    your JVM.
    -- Rob
    Is there any configuration I need to set on the domain?
    Thanks
    Rob Woollen <[email protected]> wrote:
    No limit.
    -- Rob
    Jing wrote:
    Does anyone know if there is a limitation on the number of applicationsyou can
    deploy on a domain for weblogic server 7?

  • Count the number of values in a two dimensional array

    i am trying to figure out how to count the number of values in a two dimensional array.
    numScores = student[i][j].length;This doesn't work, i am trying to find a way of counting the columns

    Object[][] o;
    int tot = 0;
    for(int x = 0 ; x < o.length ; x++)
       tot += o[x].length;
    }If it's not a jagged array, however, this would be easier:
    int tot = o.length * o[0].length;

  • Count the number of values selected in a Dashboard prompt

    Hi,
    I have a requirement to show the count of the number of values selected in a Dashboard prompt. How to do that?
    Thanks in advance.

    Hi,
    Please follow below steps;
    1. create a report(which will show the number of value selected)-
    Pull the dimension column in criteria on which the prompt is created, make this column as IS PROMPTED. Edit the FX and put the expresion as; Count(*)2. In report pull narrative view add your custom text like "Number of prompt selected are @1". (@1 is nothing but he count of prompt selected.)
    3. Put this report on the dashboard which has prompt.
    Mark correct/helpful if it helps.
    Regards,
    Kashi
    Edited by: K N Yadav on 28 May, 2013 2:01 AM

  • Count the number of values selected in a form

    Hello
    I need to count the number of values selected in a form.
    Here is my form dump:
    I want to count the values circled in red.
    So the number I want in this case is 5.
    Any suggestions?

    Aegis,
    Yeah, good point.  Here is a minor tweak:
    <cfset total = 0>
    <cfloop collection="#FORM#" item="field">
         <cfif field NOT IS "fieldnames">
           <cfset total += ListLen( FORM[ field ] )>
         </cfif>
    </cfloop>
    <cfoutput>
         <p>Total: #total#</p>
    </cfoutput>
    -Carl V.

  • Limit to the number of values I can specify in a query

    Hi,
    I want to select a certain number of rows from a table in my Azure Table Storage by specifying the PartitionKey and RowKey. Say, I have a list of 500 PartitionKey and RowKey pairs that I need to read from my table. Can I specify these 500 values in my query?
    I have a feeling that I'll have to come up with a composite key as my partition key so that I don't have to specify so many PartitionKey/RowKey values but I want to first make sure that there's a limit to the number of values I can specify in a query.
    Thanks, Sam

    Hi,
    Thank you for reaching out to us.I am currently researching to gather more information with regards to your request. I shall revert back to you with an update at the earliest.Sincerely appreciate your patience.
    Regards,
    Prasant

  • Why is there a limitation on the number of boolean parameters in a custom function?

    We have a custom function which 'flattens' four text temporal values into a single temporal value.
    We want to do the same with boolean temporal values.
    However, OPM throws an error when  it reads the metadata for the function in extensions.xml.  It says all boolean paramaters need to be last.  We can't put them all last as there are more than one.
    This is OPM error code OPM-W00001.
    Any ideas on how I can work around this limitation?

    Taken from OPA Developer's help:
    Only one boolean parameter can be passed to a function, and it must be the last parameter.  This is due to a limitation in the rule compiler.  Any number of other parameters may be present however.
    Should you want to pass more boolean values, create a temporary/document text variable with values "True"/"False" using rule table.

  • There are fewer columns in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in the INSERT statement.

    I have been looking at my code for hours now and cant figure out what is wrong. The error has kept popping up even when i thought i had fixed everything. maybe a second set of eyes could help me out here. If you could help me out it would be much appreciated.
    USE [ConorsSetKits]
    GO
    CREATE TABLE Customers (
    CustomerID Int NOT NULL IDENTITY(1000,1),
    LastName NChar(30) NOT NULL,
    FirstName NChar(30) NOT NULL,
    Address NChar(50) NOT NULL,
    City NChar(30) NOT NULL,
    State NChar(2) NOT NULL,
    Zip Numeric(5) NOT NULL,
    Email NVarChar(50) NOT NULL,
    DateOfBirth Numeric (4) NOT NULL,
    CONSTRAINT CustomersPK PRIMARY KEY(CustomerID),
    CONSTRAINT ValidZip
    CHECK ( [Zip] LIKE '[0-9][0-9][0-9][0-9][0-9]' ),
    CONSTRAINT ValidState
    CHECK( LEN([State]) = 2),
    CONSTRAINT DateOfBirth
    CHECK ([DateOfBirth] BETWEEN '1920-01-01' AND getdate() - 5844));
    CREATE TABLE Sets (
    SetID Int NOT NULL IDENTITY(1000,1) Primary Key,
    SetName NChar(20) NOT NULL,
    SetType NChar (20) NOT NULL,
    Price Numeric (20) NOT NULL,
    Quantity Numeric (50) NOT NULL,
    CONSTRAINT SetTypeCheck
    CHECK (SetType IN ('Planes','Tanks','Robots','Cars','Helicopters','Boats','Trains','Motorcycles','Jets')),
    CONSTRAINT ValidQuantity 
    CHECK (Quantity >= 0)
    CREATE TABLE Orders (
    OrderID Int NOT NULL IDENTITY(1000,1),
    CustomerID Int NOT NULL,
    OrderDate Date NOT NULL,
    CONSTRAINT CAIntPK PRIMARY KEY(OrderID, CustomerID),
    SET IDENTITY_INSERT dbo.CUSTOMER OFF
    SET IDENTITY_INSERT dbo.Sets OFF
    SET IDENTITY_INSERT dbo.Orders OFF
    SET IDENTITY_INSERT dbo.CUSTOMER ON
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1000, 'Janes', 'Jeffrey', '123 W. Elm St', 'Renton', 'WA', '98055',
    '[email protected]',1985);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1001, 'Smith', 'David', '813 Tumbleweed Lane', 'Loveland', 'CO', '81201', 
    '[email protected]',1992);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1015, 'Twilight', 'Tiffany', '88 1st Avenue', 'Langley', 'WA', '98260',
    '[email protected]',1972);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1033, 'Smathers', 'Fred', '10899 88th Ave', 'Bainbridge Island', 'WA', '98110',
    '[email protected]',1980);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1034, 'Frederickson', 'Mary Beth', '25 South Lafayette', 'Denver', 'CO', '80201',
    '[email protected]',1970);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1036, 'Warning', 'Selma', '205 Burnaby', 'Vancouver', 'BC', '80201',
    '[email protected]',1981);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1037, 'Wu', 'Susan', '105 Locust Ave', 'Atlanta', 'GA', '30322',
    '404', '653-3465', '[email protected]',1971);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1040, 'Gray', 'Donald','55 Bodega Ave', 'Bodega Bay', 'CA', '94923',
    '[email protected]',1985);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1041, 'Johnson', 'Lynda', '117 C Street', 'Washington', 'DC', '20003',
    '[email protected]',1969);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1051, 'Wilkens', 'Chris', '87 Highland Drive', 'Olympia', 'WA', '98508',
    '[email protected]',1994); 
    SET IDENTITY_INSERT dbo.CUSTOMER OFF
    SET IDENTITY_INSERT dbo.Sets ON
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1000, 'MysterySet1','Planes',$29.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1001, 'MysterySet2','Planes',$19.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1002, 'MysterySet4','Tanks',$39.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1003, 'MysterySet3','Robots',$19.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1004, 'MysterySet5','Cars',$29.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1005, 'MysterySet6','Boats',$29.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1006, 'MysterySet7','Trains',$39.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1007, 'MysterySet8','Motorcycles',$9.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1008, 'MysterySet9','Helicopters',$29.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1009, 'MysterySet10','Jets',$29.99,10);
    SET IDENTITY_INSERT dbo.Sets OFF
    SET IDENTITY_INSERT dbo.Orders ON
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1000, '2012-12-12');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1000, '2013-12-30');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1005, '2013-08-30');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1004, '2013-12-30');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1004, '2013-08-31');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1004, '2014-03-25');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1002, '2012-11-14');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1001, '2012-11-14');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1001, '2013-01-05');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1006, '2012-06-22');
    SET IDENTITY_INSERT dbo.Orders OFF

    Price Numeric (20) NOT NULL,
    I do not think you understand this datatype?  Go look at the values you are attempting to insert into this column.  For example, "$29.99".  After the insert, what value is actually stored in that column? 
    DateOfBirth Numeric (4) NOT NULL,
    No. Just No.  Either change the column name to faithfully represent what values you intend to store (and apply the appropriate constraints) or change the datatype and the values that you intend to store to match the column name.  And the constraint
    that you do have:
     CONSTRAINT DateOfBirth
     CHECK ([DateOfBirth] BETWEEN '1920-01-01' AND getdate() - 5844));
    is both logically suspect and syntactically wrong. First, the upper boundary will be computed as 1999-04-29 15:50:21.670.  But, of course, your column is a whole number of no more than 4 digits.  The same issue applies to your lower boundary. 
    A simple select statement will show you those errors
    select cast('1920-01-01' as numeric(4)), getdate() - 5844, cast(getdate() - 5844 as numeric(4));
    An insert statement fails with the same error.  Because, of course, your boundary values must actually be converted to numeric(4) in order to compare them against the value contained in the column.   Generally, you can convert from
    string to numeric - IF the content of the string actually contains a value that is numeric and can be converted into the specific type needed.  Not so in this case.  Is this 16 year period (5844 days) significant for some reason?  You should
    document it here in your DDL with a comment, because it is unlikely to be documented (and kept current) anywhere else. 
    And lastly, your script has:
    SET IDENTITY_INSERT dbo.CUSTOMER OFF
    That is not the name of your table, and therefore that statement also fails.  The table name you used is plural. 

  • Is there a limitation to the number of calendars that iCal can manage?

    My wife and I share calendars. Recently she found that one of my calendars was not showing up on her iMac and any dates or appointments were automatically sent to Notifications. However, all of my calendars and hers as well show up on her iPhone and iPad. With that we took her iMac to a Genius Bar. The tech after trying many things determined that because the age of her iMac (a 24", dual core) was limiting iCal to 10 calendars. I find this incredible. I can't image that this could be a hardware problem. She and both are running under Mountain Lion. Has anyone ever heard of this issue?

    Kim331 wrote:
    Is there a limit to the number of devices that I can run off my iTunes account?
    According to this Support Article  >  http://support.apple.com/kb/HT4627
    Your Apple ID can have up to 10 devices and computers (combined) associated with it.

  • Limit the number of values in the listagg function and create multiple sets

    Hi All,
    I have a requirement where I would like to group one of the fields into one field based on the number of records. Lets say if we have an employee having multiple AREACODE's. Please see the below example. I want to do string concatenation of every 10 records of EMPNO into one set. If it has more than 10 records for a given EMPNO, it has to display as another record.
    Eg:
    EMPNO AREACODE
    A111     AL
    A111     AK
    A111     AZ
    A111     AR
    A111     CA
    A111     CO
    A111     CT
    A111     DE
    A111     DC
    A111     FL
    A111     GA
    A111     HI
    B222     AL
    B222     AK
    B222     AZ
    B222     IA
    B222     KS
    B222     KY
    B222     LA
    B222     ME
    B222     MD
    B222     MA
    B222     MI
    B222     CA
    B222     CO
    B222     CT
    B222     DE
    Result Set:
    EMPNO AREACODE
    A111     AL|AK|AZ|AR|CA|CO|CT|DE|DC|FL
    A111     GA|HI
    B222     AL|AK|AZ|IA|KS|     KY|LA|ME|MD|MA
    B222     MI|CA|CO|CT|DE
    The above example can have any number of AREACODE's for a given EMPNO, final result should display only a maximum 10 area codes for a given EMPNO in each record. If it has more than 10 AREACODE's it should display as another record. Please provide me a generic query to solve this. I was not able to control by setting the limit on the records for a given EMPNO on to LISTAGG function. Any ideas are highly appreciated.
    Thanks

    1008754 wrote:
    Hi All,
    I have a requirement where I would like to group one of the fields into one field based on the number of records. Lets say if we have an employee having multiple AREACODE's. Please see the below example. I want to do string concatenation of every 10 records of EMPNO into one set. If it has more than 10 records for a given EMPNO, it has to display as another record.
    Eg:
    EMPNO AREACODE
    A111     AL
    A111     AK
    A111     AZ
    A111     AR
    A111     CA
    A111     CO
    A111     CT
    A111     DE
    A111     DC
    A111     FL
    A111     GA
    A111     HI
    B222     AL
    B222     AK
    B222     AZ
    B222     IA
    B222     KS
    B222     KY
    B222     LA
    B222     ME
    B222     MD
    B222     MA
    B222     MI
    B222     CA
    B222     CO
    B222     CT
    B222     DE
    Result Set:
    EMPNO AREACODE
    A111     AL|AK|AZ|AR|CA|CO|CT|DE|DC|FL
    A111     GA|HI
    B222     AL|AK|AZ|IA|KS|     KY|LA|ME|MD|MA
    B222     MI|CA|CO|CT|DE
    The above example can have any number of AREACODE's for a given EMPNO, final result should display only a maximum 10 area codes for a given EMPNO in each record. If it has more than 10 AREACODE's it should display as another record. Please provide me a generic query to solve this. I was not able to control by setting the limit on the records for a given EMPNO on to LISTAGG function. Any ideas are highly appreciated.
    Thanks
    ME_XE?with data (empno, areacode) as
      2  (
      3     select 'A111', 'AL' from dual union all
      4     select 'A111', 'AK' from dual union all
      5     select 'A111', 'AZ' from dual union all
      6     select 'A111', 'AR' from dual union all
      7     select 'A111', 'CA' from dual union all
      8     select 'A111', 'CO' from dual union all
      9     select 'A111', 'CT' from dual union all
    10     select 'A111', 'DE' from dual union all
    11     select 'A111', 'DC' from dual union all
    12     select 'A111', 'FL' from dual union all
    13     select 'A111', 'GA' from dual union all
    14     select 'A111', 'HI' from dual union all
    15     select 'B222', 'AL' from dual union all
    16     select 'B222', 'AK' from dual union all
    17     select 'B222', 'AZ' from dual union all
    18     select 'B222', 'IA' from dual union all
    19     select 'B222', 'KS' from dual union all
    20     select 'B222', 'KY' from dual union all
    21     select 'B222', 'LA' from dual union all
    22     select 'B222', 'ME' from dual union all
    23     select 'B222', 'MD' from dual union all
    24     select 'B222', 'MA' from dual union all
    25     select 'B222', 'MI' from dual union all
    26     select 'B222', 'CA' from dual union all
    27     select 'B222', 'CO' from dual union all
    28     select 'B222', 'CT' from dual union all
    29     select 'B222', 'DE' from dual
    30  )
    31  select
    32     empno, listagg(areacode, ',') within group (order by emp_grp)   as emp_list
    33  from
    34  (
    35     select
    36             ceil(row_number() over (partition by empno order by areacode) / 10) as emp_grp,
    37             empno,
    38             areacode
    39     from data
    40  )
    41  group by empno, emp_grp;
    EMPNO                          EMP_LIST
    A111                           AK,AL,AR,AZ,CA,CO,CT,DC,DE,FL
    A111                           GA,HI
    B222                           AK,AL,AZ,CA,CO,CT,DE,IA,KS,KY
    B222                           LA,MA,MD,ME,MI
    4 rows selected.
    Elapsed: 00:00:00.05
    ME_XE?In the future, it would be nice if you could provide the starting data.
    Cheers,

  • The limitation of the number of iphones on one account at the AppStore

    Don't you believe that this limitation should be done in some other way?
    In my opinion, there should be a limit for a number of iphones of the same generation.
    I had 2 Iphones 2G (i broke one), now I use 2 iphones 3G, and one of them was replaced due to warranty issues. That means I've already used up the limit of 5 phones for one account and as I wanna update to 3GS, i'll have to buy all the software from the store again! Do you think it's fair? It is all for my personal use, I just want to have the up-to-date gadget and they break down quite frequently, that's why I change them!

    The limit is on COMPUTERS not devices. You can have an unlimited number of iPhones and iPods on your iTunes account, but only 5 authorized computers.

  • Counting the number of values selected in a list box

    I'm trying to add a counter to a form that tells the user how many values have been selected from a list box... I tried adding a FormCalc formula to a calculate event in the "counter" field as follows:
    count(form1.#subform[0].ListBox1.rawValue)
    But for some reason it's not adding them up. It only gives me a value of 0 when none are selected, or 1 where any number of selections are made.
    Can anyone help me out?
    Thanks in advance

    Try putting this in the calculate event of your counter field:
    var num=0;
    for (var a=0;a<ListBox1.items.nodes.length;a++){
    if (ListBox1.getItemState(a))
      num++;
    this.rawValue=num;
    Exit the list box and the field will calculate.
    Kyle

Maybe you are looking for

  • In which table we can find the relationship between Role id and Task id

    Hi Experts, In which table we can find the relationship between Role id and Task id in Cprojects. Thanks Subhaskar

  • Xmldom.writetoclob hanging forever when writing a domnode to a temp clob

    Hi Wondering has anyone come across anything similar (or know a work around) 1. Basically the the procedure below loads an XML file. (OK) 2. Removes reference to external dtd, ref was causing and error (OK) 3. Parses the XML (OK) 4. Gets a list of th

  • [URGENT] Really frustrated over 'Not Charging' Err...

    Hi, I have Nokia x6 16gb and when I plug it to charge it it shows 'Not Charging' which is really frustrating :/  I use the charger that came along with my phone, I also used the charger which came along with another Nokia Phone (Both Orignal Chargers

  • Time Machine Terminal Preferences?

    I have two issues with Time Machine. 1. 2 hourly backups is too frequent but there is no way to change this in the preferences (10.6.8). 2. Occasionally my back up disc falls off FW and I don't notice. Time Machine waits until 10days have passed befo

  • Managers Desktop - Urgent

    Hi Friends,      I'm not aware of PPMDT-Manager's Desktop.      if u know pls tell me the Functionalities of PPDMT and      its use.      If Helpfull Mark Rewarded.Thanks in Advance. Regards, Manian.