Selecting first char from column

In my qeury below i would like to select the first character from the column other_party_number. How can i do this? The left function does not seem to work
in pl/sql. I get an error statinf invalid identifier. Can anyone please help? Thanks
select call_date, left(other_party_number, 1) as number
from ccwebcf.calls_archive

Hallo,
why do you think, that LEFT must work in SQL ? :-)
Dmytro,
Probably because LEFT works in other languages and other incarnations of SQL. Not everyone is tied to Oracle you know. ;-)
Oh look, if I run the SQL on an ingres database...
select left('blushadow',3) as name
name
bluMwuhahahaha!
:)

Similar Messages

  • Select first field from column in group value

    Hello,
    I need to return the first row of data grouped by the first field (Visit ID) in multi-column table:
    VisitID       AdmitDate            Unit       Room          OrderCode
    001041      2014-08-01         2E          202            SWCC
    001041      2014-08-01         2E          202            NULL
    006811      2014-08-01         2E          204            SWCC
    008815      2014-08-01         2E          206            NULL
    004895      2014-08-01         2E          207            SWFA
    004895      2014-08-01         2E          207            SWCC
    004895      2014-08-01         2E          207            NULL
    To return:
    001041      2014-08-01         2E          202            SWCC
    006811      2014-08-01         2E          204            SWCC
    008815      2014-08-01         2E          206            NULL
    004895      2014-08-01         2E          207            SWFA
    I currently have a group by clause with all field names; and have tried max on the OrderCode in the select that doesn't work, and FIRST isn't recognized in SSL server.  Do I need a subquery (if so, how as I'm newer to writing SQL) or what is another
    solution?  Thank you.

    create table t (VisitID varchar(50), AdmitDate date, Unit varchar(50),Room varchar(50),OrderCode varchar(50))
    insert into t values ('001041' , '2014-08-01' , '2E' , 202 , 'SWCC' ),
    ('001041', '2014-08-01' , '2E' , 202 , NULL),
    ('006811' , '2014-08-01' , '2E' , 204 , 'SWCC'),
    ('008815' , '2014-08-01' , '2E' , 206 , NULL),
    ('004895' , '2014-08-01' , '2E' , 207 , 'SWFA'),
    ('004895' , '2014-08-01' , '2E' , 207 , 'SWCC'),
    ('004895' , '2014-08-01' , '2E' , 207 , NULL)
    --To return:
    --001041 2014-08-01 2E 202 'SWCC'
    --006811 2014-08-01 2E 204 'SWCC'
    --008815 2014-08-01 2E 206 NULL
    --004895 2014-08-01 2E 207 'SWFA'
    select VisitID,AdmitDate,Unit,Room , max(OrderCode) as OrderCode from t
    group by VisitID,AdmitDate,Unit,Room
    Order by VisitID
    --Or
    select VisitID,AdmitDate,Unit,Room ,OrderCode from (
    select VisitID,AdmitDate,Unit,Room ,OrderCode, Row_number() Over(Partition By VisitID Order by OrderCode DESC) rn from t
    )t
    WHERE rn=1
    Order by VisitID
    drop table t

  • Select first row from every set

    id num dtl sdate udate
    4 4JQ010907 MO601159736142323333 09-NOV-03
    4 4JQ010907 MO601159736142323333 09-NOV-03 08-DEC-03
    4 4JQ010907 MO601159736142323333 09-NOV-03 08-NOV-04
    4 4JQ010907 MO601159736142323333 09-NOV-03 09-DEC-03
    4 4JQ014529 W436-5902-285308-17-00 30-JAN-04
    4 4JQ014529 W436-5902-285308-17-00 30-JAN-04 02-FEB-04
    4 4JQ014529 W436-5902-285308-17-00 30-JAN-04 08-NOV-04
    For each record having the same num, i want only one record picked, and that one should not have udate blank.
    How can I do this using ROWNUM?

    ...but there is a pitfall when the columns in selection list are not the same to
    columns in order by. Here unique can't help (while row_number() will
    also return one row (another question is it wnat you need or not):
    Compare:
    SQL> select ename, deptno,sal from emp_1 order by 2,1;
    ENAME          DEPTNO        SAL
    CLARK              10       1225
    CLARK              10       2450
    KING               10       2500
    KING               10       5000
    MILLER             10        650
    MILLER             10       1300
    ADAMS              20        550
    ADAMS              20       1100
    FORD               20       1500
    FORD               20       3000
    JONES              20     1487,5
    JONES              20       2975
    SCOTT              20       1500
    SCOTT              20       3000
    SMITH              20        500
    SMITH              20       1000
    ALLEN              30        900
    ALLEN              30       1800
    BLAKE              30       1425
    BLAKE              30       2850
    JAMES              30        560
    JAMES              30       1120
    MARTIN             30        625
    MARTIN             30       1250
    TURNER             30        750
    TURNER             30       1500
    WARD               30        725
    WARD               30       1450
    28 rows selected.
    SQL> select ename, deptno, sal from
      2  (select ename, deptno, sal,
      3  dense_rank() over(partition by deptno order by ename) rn
      4  from emp_1) where rn = 1
      5  /
    ENAME          DEPTNO        SAL
    CLARK              10       1225
    CLARK              10       2450
    ADAMS              20        550
    ADAMS              20       1100
    ALLEN              30        900
    ALLEN              30       1800
    6 rows selected.
    SQL> select unique ename, deptno, sal from
      2  (select ename, deptno, sal,
      3  dense_rank() over(partition by deptno order by ename) rn
      4  from emp_1) where rn = 1
      5  /
    ENAME          DEPTNO        SAL
    CLARK              10       1225
    CLARK              10       2450
    ADAMS              20        550
    ADAMS              20       1100
    ALLEN              30        900
    ALLEN              30       1800
    6 rows selected.
    SQL> select ename, deptno, sal from
      2  (select ename, deptno, sal,
      3  row_number() over(partition by deptno order by ename) rn
      4  from emp_1) where rn = 1
      5  /
    ENAME          DEPTNO        SAL
    CLARK              10       1225
    ADAMS              20        550
    ALLEN              30        900Rgds.

  • Select first 4 char

    Hi all,
    I am new to ABAP.
    I want select first 4 char of  variable.
    Example:
    X = '627128891'.
    i want first 4 char of X  save to Y.
    Y= '6271'.
    How can I do it with ABAP statement?
    Thanks
    Shiva.

    hi,
    data x(10) type c value '1234567'.
    data y(4) type c.
    y = x0(4).   " xn(m) n is the starting position and m no of character from n.
    output y = 1234.. first four characters
    y = x+2(2).
    output y = 34 ..
    rewards if understood..
    regards,
    nazeer

  • Selecting only normal character data from column

    Hi,
    We have a table column which stores party names and this could consist of non english characters. Would anyone know how do we just select regular english character rows from the table using a select query and not include the rows which have non-english characters?
    Thanks

    There iare two points with the suggestion by Frank.
    First i think he missed an +
    and secondly it doesnt work for example with german umlauts.
    with data as (
    select 'SERPI!! GAB' s from dual union all
    select 'SE£ GRA' from dual union all
    select 'ARA%%& sa' from dual union all
    select 'dasssädsa' from dual union all
    select 'ara€ ssa' from dual union all
    select 'gabriele dsa' from dual
    SELECT     *
    FROM     data
    WHERE     REGEXP_LIKE ( s
                  , '^[A-Za-z]+$'
    no rwos selected
    with data as (
    select 'SERPI!! GAB' s from dual union all
    select 'SE£ GRA' from dual union all
    select 'ARA%%& sa' from dual union all
    select 'dasssadsa' from dual union all
    select 'ara€ ssa' from dual union all
    select 'gabriele dsa' from dual
    SELECT     *
    FROM     data
    WHERE     REGEXP_LIKE ( s
                  , '^[A-Za-z]+$'
    S
    dasssadsa
    (without umlaut)
    so perhaps you will give translate a try e.g.
    with data as (
    select 'SERPI!! GAB' s from dual union all
    select 'SE£ GRA' from dual union all
    select 'ARA%%& sa' from dual union all
    select '@dass äsadsa' from dual union all
    select 'ara€ ssa' from dual union all
    select 'gabriele dsa' from dual
    select s
    ,  translate(
        lower(s)
        ,'@abcdefghijklmnopqrstuvwxyz1234567890 '
      ) t
    from data
    where
    length(
      translate(
        lower(s)
        ,'@abcdefghijklmnopqrstuvwxyz1234567890 '
    < length(s)
    S T
    SERPI!! GAB !!
    SE£ GRA £
    ARA%%& sa %%&
    @dass äsadsa @ä
    ara€ ssa € porjection is just for explanation purpose
    regards

  • Return chars to right of first dot from right in string

    Anyone know how to return file extensions in BO? Ex. Return "doc" where file name = "document.doc" or where file name = "document.asdf.lkjh.123.doc".  I have some files names that contain 8 or more dots, so need to find first dot from right and return all chars to the right of it.

    Jeff,
    Without predictability to the data, the ability to identify the placement of the final period (.) in a string and then display that final portion is impossible with the given functions provided in WebI.  Two factors are against us here:  1) you cannot perform a loop (a do, while, end or similiar construct), or 2) there is no "reverse" function.  a Reverse function reads a column (string) and places the last character first, the second-to-last character second, etc, etc.   If there were a reverse function you could reverse the string and then use the POS function to find the first period, then use the left function on what is returned and then reverse again to put it in the original sequence again.  I'm working with MS SQL Server and there is a reverse function there, but I'm not sure what your database vendor is.  If you have a reverse function in your DB engine, perhaps you can perform your string manipulation via the universe, dressing it up at the DB layer and using WebI to perform the reporting phase.
    Thanks,
    John

  • How to create a multi column list item and select these values from a LOV

    Hi all,
    My requirements are:
    1) create an LOV which holds the productno, productname and productprice fields (this is working)
    2) at run time, select one record from LOV and populate the list/grid with this selected record values of productno, productname and productprice fields, so we are showing them on the form in the form of a table/grid (not working)
    3) be able to select multiple records from LOV and be able to populate the list item with multiple records (not working)
    4) have two more columns in the list/grid, for productquatity and total price (not wokring)
    Please help me.
    how can i create this grid or list in oracle
    whats the possible way of acheiving this in oracle

    If you use a list item to display multiple columns then you'll need to use a fixed-width font. You can achieve a similar look with proportional fonts by using a normal block and setting the fields' bevel to 'None'.
    Each column in the LOV has a Return Item property (under Column Mapping Properties). Set this to a :block.item reference for each column to bring the data back into those referenced fields.
    You can't select multiple records from an LOV. For this you will need to create your own form. Check the help for system.mouse_button_modifiers to see how to respond to Ctrl+click and Shift+click.
    To add columns just modify the LOV's record group's query.

  • In the mail list pane, 'From' column shows the first sender in a conversation? How to make that the sender of the last mail in the conversation (by time)?

    The first sender in a conversation can be irrelevant after a conversation grows long and I'm more interested in who's active more recently than whoever started the conversation/thread.

    @duggabe, Not actually. That would just sort "threads/conversations" by date. The From column would continue to show the first sender for each thread/conversation.

  • Can't select char type columns using ODBC link to SQL Server 2K

    I have set up a db link using hsodbc from 8.1.7 to SQL Server 2000. I can select numeric and date columns from the
    SQL Server table with no problem. But any character datatype (nchar or nvchar) column name included in the query
    returns an ORA-00904 ("invalid column name"). I know the column names are valid for SQL Server and can access
    these columns via EXCEL using the same user id and data source that is used for the link. I don't have a clue as to why ORACLE can't "see" the character type columns. Following is the hs trace file (HS_FDS_TRACE_LEVEL = debug) generated for "select assay_name from bio_assay@sqlsrvl":
    FRIDAY SEP 05 2003 10:39:47.674
    (0) hoagprd(2); Entered.
    (0) [Generic Connectivity Using ODBC] version: 2.0.4.0.0010
    (0) connect string is:
    (0) YEAR2000_POLICY=-1;CTL_DEBUG=T;CONSUMER_API=1;SESSION_BEHAVIOR_FLAGS=4;PARSER_-
    (0) DEPTH=2000;EXEC_FLAGS =
    (0) 131080;defTdpName=SQLSRVL;binding=(SQLSRVL,ODBC,"LIBERTY");
    (0) ORACLE GENERIC GATEWAY Log File Started at 05-Sep-03 10:39:47
    (0) Class version: 65
    (0) hoagprd(2); Exited with retcode = 0.
    (0) hoainit(3); Entered.
    (0) hoainit(3); Exited with retcode = 0.
    (0) hoalgon(7); Entered. name = XXXXXXXXXXX.
    (0) Created new ODBC connection (28382608)
    (0) Silent DB Function!!
    (0) (Last message occurred 4 times)
    (0) hoalgon(7); Exited with retcode = 0.
    (0) hoaulcp(4); Entered.
    (0) hoaulcp(4); Exited with retcode = 0.
    (0) hoauldt(5); Entered.
    (0) hoauldt(5); Exited with retcode = 0.
    (0) hoabegn(9); Entered. formatID = 306206, hoagttid
    (0) =XXXXXXXXXXXXXXXXXXXXXXXX, hoagtbid = , tflag = 0, initial = 1
    (0) hoabegn(9); Exited with retcode = 0.
    (0) hoapars(15); Entered. stmtType = 0, id = 1.
    (0) nvOUT (P:\Src\QP\QP_SQTXT.C 55): SELECT * FROM "BIO_ASSAY"
    (0) odbc_rec: select * from "BIO_ASSAY"
    (0) Silent DB Function!!
    (0) nvOUT (P:\Src\QP\QPT2SEXE.C 929):
    (0) SELECT "T0000"."WH_ADDED_DATE" AS c00010, "T0000"."ASSAY_MODIFIED_TIME" AS c0009, "T0000"."ASSAY_CREATED_TIME" AS c0008, "T0000"."ASSAY_DATE_COMPLETED" AS c0007, "T0000"."ASSAY_DATE_PLANNED" AS c0006, "T0000"."ASSAY_DATE_STARTED" AS c0005, "T0000"."ASSAY_STATUS_NO" AS c0004, "T0000"."TIMEFRAME_KEY" AS c0003, "T0000"."TARGET_KEY" AS c0002, "T0000"."ENVIRONMENT_KEY" AS c0001, "T0000"."ASSAY_KEY" AS c0000 FROM "BIO_ASSAY" T0000
    (0) nvOUT (P:\Src\QP\QPT2SEXE.C 932):
    (0) <<<<<<<<<<<<<<<<<<< Execution Strategy Begin <<<<<<<<<<<<<<<<<<<<<<<<<<<<
    (0) Original SQL:
    (0) SELECT * FROM "BIO_ASSAY"
    (0)
    (0)
    (0) Accessing Database "SQLSRVL" with SQL:
    (0) SELECT "T0000"."WH_ADDED_DATE" AS c00010, "T0000"."ASSAY_MODIFIED_TIME" AS c0009, "T0000"."ASSAY_CREATED_TIME" AS c0008, "T0000"."ASSAY_DATE_COMPLETED" AS c0007, "T0000"."ASSAY_DATE_PLANNED" AS c0006, "T0000"."ASSAY_DATE_STARTED" AS c0005, "T0000"."ASSAY_STATUS_NO" AS c0004, "T0000"."TIMEFRAME_KEY" AS c0003, "T0000"."TARGET_KEY" AS c0002, "T0000"."ENVIRONMENT_KEY" AS c0001, "T0000"."ASSAY_KEY" AS c0000 FROM "BIO_ASSAY" T0000
    (0)
    (0)
    Execution Strategy End >>>>>>>>>>>>>>>>>>>>>>>>>>>>(0) hoapars(15); Exited with retcode = 0.
    (0) hoaopen(19); Entered. id = 1.
    (0) hoaopen(19); Exited with retcode = 0.
    (0) hoadscr(16); Entered. id = 1.
    (0) hoastmt(195); Array fetch size is: 1.
    (0) ------ hoadscr() -------:
    (0) hoadamsz: 11, hoadasiz: 11, hoadambr: 1, hoadabrc: 1
    (0) row 0 - hoadambl: 20, hoadadty: 134, hoadaprc: 19, hoadacst: 0
    (0) row 0 - hoadascl: 0, hoadanul: 0, hoadanml: 9, hoadanam: ASSAY_KEY, hoadabfl:
    (0) 20, hoadamod: 0
    (0) row 1 - hoadambl: 20, hoadadty: 134, hoadaprc: 19, hoadacst: 0
    (0) row 1 - hoadascl: 0, hoadanul: 0, hoadanml: 15, hoadanam: ENVIRONMENT_KEY,
    (0) hoadabfl: 20, hoadamod: 0
    (0) row 2 - hoadambl: 20, hoadadty: 134, hoadaprc: 19, hoadacst: 0
    (0) row 2 - hoadascl: 0, hoadanul: 1, hoadanml: 10, hoadanam: TARGET_KEY,
    (0) hoadabfl: 20, hoadamod: 0
    (0) row 3 - hoadambl: 20, hoadadty: 134, hoadaprc: 19, hoadacst: 0
    (0) row 3 - hoadascl: 0, hoadanul: 0, hoadanml: 13, hoadanam: TIMEFRAME_KEY,
    (0) hoadabfl: 20, hoadamod: 0
    (0) row 4 - hoadambl: 2, hoadadty: 7, hoadaprc: 5, hoadacst: 0
    (0) row 4 - hoadascl: 0, hoadanul: 1, hoadanml: 15, hoadanam: ASSAY_STATUS_NO,
    (0) hoadabfl: 2, hoadamod: 0
    (0) row 5 - hoadambl: 7, hoadadty: 167, hoadaprc: 0, hoadacst: 0
    (0) row 5 - hoadascl: 0, hoadanul: 1, hoadanml: 18, hoadanam: ASSAY_DATE_STARTED,
    (0) hoadabfl: 7, hoadamod: 0
    (0) row 6 - hoadambl: 7, hoadadty: 167, hoadaprc: 0, hoadacst: 0
    (0) row 6 - hoadascl: 0, hoadanul: 1, hoadanml: 18, hoadanam: ASSAY_DATE_PLANNED,
    (0) hoadabfl: 7, hoadamod: 0
    (0) row 7 - hoadambl: 7, hoadadty: 167, hoadaprc: 0, hoadacst: 0
    (0) row 7 - hoadascl: 0, hoadanul: 1, hoadanml: 20, hoadanam:
    (0) ASSAY_DATE_COMPLETED, hoadabfl: 7, hoadamod: 0
    (0) row 8 - hoadambl: 7, hoadadty: 167, hoadaprc: 0, hoadacst: 0
    (0) row 8 - hoadascl: 0, hoadanul: 0, hoadanml: 18, hoadanam: ASSAY_CREATED_TIME,
    (0) hoadabfl: 7, hoadamod: 0
    (0) row 9 - hoadambl: 7, hoadadty: 167, hoadaprc: 0, hoadacst: 0
    (0) row 9 - hoadascl: 0, hoadanul: 1, hoadanml: 19, hoadanam: ASSAY_MODIFIED_TIME,
    (0) hoadabfl: 7, hoadamod: 0
    (0) row 10 - hoadambl: 0, hoadadty: 0, hoadaprc: 0, hoadacst: 0
    (0) row 10 - hoadascl: 0, hoadanul: 0, hoadanml: 13, hoadanam: WH_ADDED_DATE,
    (0) hoadabfl: 0, hoadamod: 0
    (0) hoadscr(16); Exited with retcode = 0.
    Note, the query I entered doesn't appear and I never entered the query "select * from bio_assay" - it appears that this is
    automatically generated by the hsodbc process and raises other questions (like wouldn't this return a lot of unneeded
    data ?). It also appears that the "select * from bio_assay" gets translated somehow into a select statement listing each column - however, non of the columns listed are character type columns like assay_name.
    Does this make sense to anyone? Any ideas ? HELP !

    Remote view gives the same error. I think the problem has to do with nchar and nvchar fields. It seems that the hsodbc agent issues a "select * from bio_assay" at the beginning of the session (see above trace).
    0) odbc_rec: select * from "BIO_ASSAY"
    (0) Silent DB Function!!
    (0) nvOUT (P:\Src\QP\QPT2SEXE.C 929):
    (0) SELECT "T0000"."WH_ADDED_DATE" AS c00010, "T0000"."ASSAY_MODIFIED_TIME" AS c0009, "T0000"."ASSAY_CREATED_TIME" AS c0008, "T0000"."ASSAY_DATE_COMPLETED" AS c0007, "T0000"."ASSAY_DATE_PLANNED" AS c0006, "T0000"."ASSAY_DATE_STARTED" AS c0005, "T0000"."ASSAY_STATUS_NO" AS c0004, "T0000"."TIMEFRAME_KEY" AS c0003, "T0000"."TARGET_KEY" AS c0002, "T0000"."ENVIRONMENT_KEY" AS c0001, "T0000"."ASSAY_KEY" AS c0000 FROM "BIO_ASSAY" T0000
    Apparently, the list of fields that is returned from the "select *" does not include any of the nchar or nvchar type columns. After this initial "select *" the oracle server only looks at the initial list of columns and gives an "invalid column" error for any fields that are not in this initial list. So the question is: how do I make the hsodbc agent see the nchar/nvchar type fields and include them in the initial list ? I've tried setting the HS_NLS_LANGUAGE and HS_NLS_NCHAR parameters but these seem to have no effect.
    Any clue as to what's going on ?

  • Select first n columns

    Hi
    I need to select first n columns thru a query. i dont know the column names.
    Thanks and Regards
    Ananth Antony

    desc emp
    EMPNO
    ENAME
    JOB
    MGR
    HIREDATE
    SAL
    COMM
    DEPTNO
    if n=3 means the output should be (i dont know the column name)
    EMPNO ENAME JOB
    7369 SMITH CLERK
    7499 ALLEN SALESMAN
    7521 WARD SALESMAN
    7566 JONES MANAGER
    7654 MARTIN SALESMAN
    7698 BLAKE MANAGER
    7782 CLARK MANAGER
    7788 SCOTT ANALYST
    7839 KING PRESIDENT
    7844 TURNER SALESMAN
    7876 ADAMS CLERK
    EMPNO ENAME JOB
    7900 JAMES CLERK
    7902 FORD ANALYST
    7934 MILLER CLERK
    for emp Table.
    Thanks
    Ananth Antony

  • How can I select random records from one column

    How can I random select 400 records from a column contains more than 500,000 records? And how long will it take in oracle? Thanks.

    here is one option: (just change 5 to suit your needs...)
    SQL>select * from (
      2  select object_name
      3  from all_objects
      4  order by dbms_random.random
      5  ) where rownum < 5
      6  /
    OBJECT_NAME
    UTL_SYS_COMPRESS
    GV_$LOG_HISTORY
    GV_$LOGMNR_LOGS
    WWV_FLOW_THEME_7
    SQL>/
    OBJECT_NAME
    WWV_FLOW_UPGRADE_REPORT
    WRI$_ADV_SQLT_STATISTICS_PK
    V_$DATABASE
    GV_$SERVICEMETRIC
    SQL>/
    OBJECT_NAME
    WWV_FLOW_CREATE_FLOW_API
    WRH$_SERVICE_WAIT_CLASS_BL
    EXU8SNAPL
    GV$SERVICEMETRIC_HISTORY
    SQL>                well, regarding how long will it take... it depends from lots of variables...
    Cheers,
    Andrea

  • When printing a highlighted (selected) print range from an internet item pulled up through Firefox, the first line of the selected range is not printing or is partially cut off.

    When printing a highlighted (selected) print range from an internet item pulled up through Firefox, the first line of the selected range is not printing or is partially cut off. This is not an issue with my printer, as printer prints the whole selected print range when using Internet Explorer or Word Doc applications. The problem only happens when using Firefox. Please advise on how to fix this. Is this a settings issue or do I need to download and update? Thx

    * [[Printing a web page]]
    * [[Firefox prints incorrectly]]
    Check and tell if its working.

  • How to select first several records from a database table by using select?

    Hi,
       I want to select first 100 records from a database table by using select clause. How to write it?
       Thanks a lot!

    hai long!
                 well select statement is used to retrive
    records from the database.
    following is the syntax to be used.
    1) select *  into corresponding fields of itab from basetable where condition.
    endselect.
      ex: select * into corresponding fields of itab from mara
                where matnr >= '1' and  matnr <= '100'.
           append itab.
          endselect.
    select * is a loop statement.it will execute till matnr is less than or equal to 100.
    note: you can also mention the required field names in the select statement otherwise it will select all the field from table mara.
    note: itab means your internal table name.
    hope you got the required thing.if it really solved u r problem then award me the suitable points.<b></b>

  • Mail selecting from column - Yosemite no good.

    In Mavericks and previous OS's if I select a person's name in my inbox, then click the 'From' column I then see that email along with all the others from that person. If I use Mail in Yosemite performing the same action puts all the From mail into alphabetical order and unless the person you selected starts with 'Z' it disappears.
    Either they have done a poor backward step or they have tried to be clever and there's a new method in doing this.
    Can anyone offer any suggestions?
    Thanks

    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Mail Feedback

  • Selection first n(20 )records from result page

    Hi,
    I have a requirement where the the users  want to select first n(20)  record from the result page after applying the date filter . They want to see all results and then select the records say first 50.I do not want to select manually clicking( browsing on page).Any thoughts how this can be achieved  like adding  text box at frame so that I can give number .

    Hello Senthil,
    why you want to create one more textbox... you can achieve your requirement by entering 20 in "maximum number of fields". It will give first 20 results.
    If you want to add one more textbox for your purpose then tell me.
    Thanks and Regards,
    Amit Singh

Maybe you are looking for

  • Video i took on iphone 4 will not open. can i recover this video?

    i took several videos over the last two days. all are fine except one that says it cannot be opened. not sure why it won't, it was only maybe 3-4 mins long. anyone know if there is any way to recover this video? it was for a band that just won a huge

  • How to change the FONT size in mail

    Hi, i have one scenario like have generated the one inbound F.M when ever that IDOC is fail i need to send the mail in that  i need to change the Headings as bold please smuggest me. Thanks, Hari.

  • Noob Question: T400 Switchable Graphics?

    Just got my T400 this weekend, and I have a question about the switchable graphics feature. I can't actually find any way to control the switchable graphics.  I see the different battery life options and that type of thing, but is there anything that

  • Safari Crash when opening PDF's

    Safari will intermittently quit when opeing adobe PDF documents from the web. Crash log is below. Any help woud be appreciated. Process: Safari [8690] Path: /Applications/Safari.app/Contents/MacOS/Safari Identifier: com.apple.Safari Version: 4.0.3 (5

  • LRM-00109:could not open parameter file '/u01/app/oracle/product/10.2.0/db

    hi i have manually created a database called ora.i have done all the relative tasks.i can open the database by startup nomount pfile.but when i try to create spfile from pfile, it is showing an error that it is already created.when i give the startup