How to find record having second highest salary

Hello friends
I ve a table empsal
it has 2 columns name,salary
i need to find out name of employee with second highest salary.
how shud i ..pls help...
thks
sonal...

in the doc
create or replace type SecondMaxImpl as object
  max NUMBER, -- highest value seen so far
  secmax NUMBER, -- second highest value seen so far
  static function ODCIAggregateInitialize(sctx IN OUT SecondMaxImpl)
    return number,
  member function ODCIAggregateIterate(self IN OUT SecondMaxImpl,
    value IN number) return number,
  member function ODCIAggregateTerminate(self IN SecondMaxImpl,
    returnValue OUT number, flags IN number) return number,
  member function ODCIAggregateMerge(self IN OUT SecondMaxImpl,
    ctx2 IN SecondMaxImpl) return number
create or replace type body SecondMaxImpl is
static function ODCIAggregateInitialize(sctx IN OUT SecondMaxImpl)
return number is
begin
  sctx := SecondMaxImpl(0, 0);
  return ODCIConst.Success;
end;
member function ODCIAggregateIterate(self IN OUT SecondMaxImpl, value IN number) return number is
begin
  if value > self.max then
    self.secmax := self.max;
    self.max := value;
  elsif value > self.secmax then
    self.secmax := value;
  end if;
  return ODCIConst.Success;
end;
member function ODCIAggregateTerminate(self IN SecondMaxImpl,
    returnValue OUT number, flags IN number) return number is
begin
  returnValue := self.secmax;
  return ODCIConst.Success;
end;
member function ODCIAggregateMerge(self IN OUT SecondMaxImpl, ctx2 IN SecondMaxImpl) return number is
begin
  if ctx2.max > self.max then
    if ctx2.secmax > self.secmax then
      self.secmax := ctx2.secmax;
    else
      self.secmax := self.max;
    end if;
    self.max := ctx2.max;
  elsif ctx2.max > self.secmax then
    self.secmax := ctx2.max;
  end if;
  return ODCIConst.Success;
end;
end;
CREATE OR REPLACE FUNCTION SecondMax (input NUMBER) RETURN NUMBER
PARALLEL_ENABLE AGGREGATE USING SecondMaxImpl;
SELECT deptno,SecondMax(sal)
FROM emp
GROUP BY deptno;
    DEPTNO SECONDMAX(SAL)
        10           2450
        20           3000
        30           1600

Similar Messages

  • How to find record lenth

    Hi All,
    Please can anyone forward if there is any document/URL link on how to find the record length for a particular field in source system.
    Thanks In advance.
    My e-mail address is :
    [email protected]
    Regards,
    Reddy.

    Hi,
    Go to perticula data source in source system and then sum the each field lenght then you will get total length of record. or use SE11 tcode and fine table and then identify your field and find length. Or in BW system if you see in Tranfer structure, you can find leght of each field, so in this way aslo you can find.
    Thanks
    Message was edited by: Ganga N

  • How to Ignore records having duplicate field value

    Hi,
    I have a fixed length flat file having multiple records.
    Ex:
    1000423421A8090
    1000802421A8091
    1000454421B8092
    1000412421C8093
    The first 2 record has A. So I have to take only one out of first two record and ignore the second one. I mean if there is any duplicate field at 11th position then I have to select only one record.
    Can you please let me know how to handle this.
    Thanks
    Mukesh

    Mukesh,
    Use the following UDF to achieve the same.
    <u><b><i>getchar</i></b></u>
    char ret = Values.charAt(10);
    return ""ret"";
    <u><b><i>Maptarget</i></b></u>
       //write your code here
    int len = Values.length;
    String char_at="";
    String pos="";
    for(int j=0;j<len;j++)
    if(j==0){
    result.addValue(Values[j]);
    else
    char_at= ""+ Values[j-1].charAt(10);
    pos=""+Values[j].charAt(10);
    if(!char_at.equals(pos))
    result.addValue(Values[j]);
    <b><i><u>Mapping Logic</u></i></b>
    1. Use sort by key function
    in the first parameter map - Source -UDF(getchar)
    in the second parameter map -Source
    2.Map the output of sortbykey to UDF(Maptarget)
    3.Finally Map the o/p of UDF to target.
    I checked it, its working as per your reqmt.
    If you have any doubts reply me I'll help you out.
    Note: In UDF(MapTarget) use Queue
    Best Regards,
    Raj.

  • How to find table having relation between opportunity and activity

    Hi All,
    I need to develop an ABAP report where when the user logged in runs the report. The report finds all opportunities to which the logged in user is the sales representative and find out the number of activities attached to the opportunity.
    Only completed activities should be counted. Show the count of the activities based on their category.
    The output should be in form of an ALV where the columns are:
    1) Sales representative
    2) opportunity number
    3) count of call tasks
    4) count of quote tasks etc.
    I need to cross check as to what categories are available to follow up tasks(BUS2000125) to an opportunity(BUS2000111) and based on that add or remove the columns specifying the count.
    Here
    1. How can I find out opportunity data associated to logged in user?
    2. How to get activity data related to opportunity?
    Thanks,
    Anup Garg

    done

  • How to find Record creation date

    Hi Friends,
    Is there any way to find the actual Record creation date for each record in Database tables?
    Thanks

    Hi.
    I would like to suggest you something.
    In order to get the changed record date entry,
    1. GoTo the table you have created.
    2. GoTo the data element related to that field which you have defined.
    3. In the data element window, GoTo->Further Characteristics (Window) and
    4.Check the CHANGE DOCUMENT Radio button.
    Hence, For every change the date will be fetched.
    But, This is valid for only that TABLE.
    \[removed by moderator\]
    Regards
    Harsh
    Edited by: Jan Stallkamp on Jul 7, 2008 6:03 PM

  • How to find BPs having no lead created

    Hi,
    I am running CRM 5.0. There are approx. 62,500,000 BPs (customers) in the system. It is quite possible that against some BPs, there is no lead created in the system. Please guide me how can i count the no of BPs which are not linked to any Lead? My idea is to drop the those BPs from copy of production system and save some space for other PoCs.
    Thanks.
    - gaurav

    Hi,
    you can write a report program based on following logic,
    1) take the list of all "LEAD" documents in system,
    2) find out "sold to party" of each LEAD Document,
    3) store it in temporaty table
    4) take the list of BP in role sold to party in system
    5) remove the list you get in step-3
    6) you will get out put list of all sold to party ( BP ) in system for whom LEAD is not created,
    hope it helps,
    regards,
    Prashant

  • How to find record for deleted credit master data?

    Some credit master data been deleted.
    While do SAP has report to show the deleted credit master data? when deleted? and by who?
    Thanks!

    Hi,
    You can find out all the master data tales used in the BW system by
    Tcode : SE11
    Enter as /BIC/P* for master data tables and press F4 which gives list of master data tables currently used in BW system.
    Similarly for Texts  /BIC/T*  and press F4
    Similarly for Hierarchies /BIC/H-* press F4
    and can know the size of the all tables.
    Thanks,
    Gopal

  • How to find invoices having a particular string in item description

    SELECT T0.[DocDate], T0.DocNum,T0.[CardCode], T0.[CardName], T7.[descript] [Territory],
      T5.[SlpName], T1.[ItemCode],
    T1.[Dscription], T1.[Quantity], T1.[LineTotal], T1.[TotalFrgn],
    T1.[Rate],T2.[U_SheetTab], T2.[U_SubCategory], T2.U_SPCatgry, T6.U_CatName, T3.[QryGroup22] Exports  
    FROM OINV T0 
       RIGHT JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
       INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode
       INNER JOIN OCRD T3 ON T0.CardCode = T3.CardCode
       INNER JOIN CRD1 T4 ON T3.CardCode = T4.CardCode
       INNER JOIN OSLP T5 ON T0.SlpCode = T5.SlpCode
       INNER JOIN [@NCM_PRODCATGRY] T6 ON T2.U_SPCatgry = T6.U_CatCode
       INNER JOIN [OTER]  T7  ON T3.Territory = T7.territryID
    WHERE T0.DocType ='I'
    and T1.[ItemCode] = T2.[ItemCode]
    AND T4.ADRESTYPE='S'
    and (T2.U_SPCatgry = '079' or T2.U_SPCatgry = '168' or T2.U_SPCatgry = '169')
    --and T3.[QryGroup22]= 'Y'
    and  T0.[DocDate] between '[%0]' and '[%1]'
    Union All
    SELECT T0.[DocDate], T0.DocNum, T0.[CardCode], T0.[CardName],T7.[descript] [Territory],
      T5.[SlpName],  T1.[ItemCode], T1.[Dscription],
      (T1.[Quantity] * -1 )Quantity, (T1.[LineTotal] * -1 )LineTotal, (T1.[TotalFrgn] * -1) TotalFrgn,
    T1.[Rate],T2.[U_SheetTab], T2.[U_SubCategory], T2.U_SPCatgry, T6.U_CatName , T3.[QryGroup22] Exports    
    FROM ORIN T0 
        RIGHT JOIN RIN1 T1 ON T0.DocEntry = T1.DocEntry
        INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode
        INNER JOIN OCRD T3 ON T0.CardCode = T3.CardCode
        INNER JOIN CRD1 T4 ON T3.CardCode = T4.CardCode
        INNER JOIN OSLP T5 ON T0.SlpCode = T5.SlpCode
        INNER JOIN [@NCM_PRODCATGRY] T6 ON T2.U_SPCatgry = T6.U_CatCode
         INNER JOIN [OTER]  T7  ON T3.Territory = T7.territryID
    WHERE T1.[ItemCode] = T2.[ItemCode]
    and T0.DocType ='I' 
    AND T4.ADRESTYPE='S'
    and (T2.U_SPCatgry = '079' or T2.U_SPCatgry = '168' or T2.U_SPCatgry = '169')
    --and T3.[QryGroup22]= 'Y'
    and  T0.[DocDate] between '[%0]' and '[%1]'
    --However in this query even if the invoice has many items, only items belonging to U_SPCatgry 079 or 168 or 169 are displayed. This can be a problem since the commission payable has to be calculated on all the other items that may also belong to some other U_SPCatgry

    Hi,
    Try this:
    SELECT T0.[DocDate], T0.DocNum,T0.[CardCode], T0.[CardName], T7.[descript] [Territory],
      T5.[SlpName], T1.[ItemCode],
    T1.[Dscription], T1.[Quantity], T1.[LineTotal], T1.[TotalFrgn],
    T1.[Rate],T2.[U_SheetTab], T2.[U_SubCategory], T2.U_SPCatgry, T6.U_CatName, T3.[QryGroup22] Exports 
    FROM OINV T0
       RIGHT JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
       INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode
       INNER JOIN OCRD T3 ON T0.CardCode = T3.CardCode
       INNER JOIN CRD1 T4 ON T3.CardCode = T4.CardCode
       INNER JOIN OSLP T5 ON T0.SlpCode = T5.SlpCode
       INNER JOIN [@NCM_PRODCATGRY] T6 ON T2.U_SPCatgry = T6.U_CatCode
       INNER JOIN [OTER]  T7  ON T3.Territory = T7.territryID
    WHERE T0.DocType ='I'
    and T1.[ItemCode] = T2.[ItemCode]
    AND T4.ADRESTYPE='S'
    and T2.U_SPCatgry IN ('079','168','169','XXX','YYYY')
    --and T3.[QryGroup22]= 'Y'
    and  T0.[DocDate] between '[%0]' and '[%1]'
    Union All
    SELECT T0.[DocDate], T0.DocNum, T0.[CardCode], T0.[CardName],T7.[descript] [Territory],
      T5.[SlpName],  T1.[ItemCode], T1.[Dscription],
      (T1.[Quantity] * -1 )Quantity, (T1.[LineTotal] * -1 )LineTotal, (T1.[TotalFrgn] * -1) TotalFrgn,
    T1.[Rate],T2.[U_SheetTab], T2.[U_SubCategory], T2.U_SPCatgry, T6.U_CatName , T3.[QryGroup22] Exports   
    FROM ORIN T0
        RIGHT JOIN RIN1 T1 ON T0.DocEntry = T1.DocEntry
        INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode
        INNER JOIN OCRD T3 ON T0.CardCode = T3.CardCode
        INNER JOIN CRD1 T4 ON T3.CardCode = T4.CardCode
        INNER JOIN OSLP T5 ON T0.SlpCode = T5.SlpCode
        INNER JOIN [@NCM_PRODCATGRY] T6 ON T2.U_SPCatgry = T6.U_CatCode
         INNER JOIN [OTER]  T7  ON T3.Territory = T7.territryID
    WHERE T1.[ItemCode] = T2.[ItemCode]
    and T0.DocType ='I'
    AND T4.ADRESTYPE='S'
    and T2.U_SPCatgry IN ('079','168','169','XXX','YYYY')
    --and T3.[QryGroup22]= 'Y'
    and  T0.[DocDate] between '[%0]' and '[%1]'
    Replace XXX and YYYY with your category value to all other category value.
    Thanks & Regards,
    Nagarajan

  • Finding nth highest salary

    Hi guys , I am trying to find the nth highest salary
    using the below query , is there any case in which the below query can fail
    select
    * from (
    select
    distinct rownum rn,salary from emp_mgr order by rownum) t where t.rn=3

    chris227 wrote:
    Sory, may be i am blind, dont see it yet.
    Doesnt the Nth high paid employee earns the Nth highest salary?
    No. Multiple employees can earn same salary. Look at EMP table:
    SQL> select ename,sal from emp order by sal desc;
    ENAME             SAL
    KING             5000
    FORD             3000
    SCOTT            3000
    JONES            2975
    BLAKE            2850
    CLARK            2450
    ALLEN            1600
    TURNER           1500
    MILLER           1300
    WARD             1250
    MARTIN           1250
    ENAME             SAL
    ADAMS            1100
    JAMES             950
    SMITH             800
    Highest salary 5000. Second highest salary is 3000. Third highest salary is 2975. Now look what NTH_VALUE returns:
    SQL> select distinct sal
      2    from (select nth_value(sal,&n) over(order by sal desc) sal from emp)
      3  /
    Enter value for n: 1
    old   2:   from (select nth_value(sal,&n) over(order by sal desc) sal from emp)
    new   2:   from (select nth_value(sal,1) over(order by sal desc) sal from emp)
           SAL
          5000
    SQL> /
    Enter value for n: 2
    old   2:   from (select nth_value(sal,&n) over(order by sal desc) sal from emp)
    new   2:   from (select nth_value(sal,2) over(order by sal desc) sal from emp)
           SAL
          3000
    SQL> /
    Enter value for n: 3
    old   2:   from (select nth_value(sal,&n) over(order by sal desc) sal from emp)
    new   2:   from (select nth_value(sal,3) over(order by sal desc) sal from emp)
           SAL
          3000
    SQL> /
    Enter value for n: 4
    old   2:   from (select nth_value(sal,&n) over(order by sal desc) sal from emp)
    new   2:   from (select nth_value(sal,4) over(order by sal desc) sal from emp)
           SAL
          2975
    SQL>
    SY.

  • Retrive the second-highest value from the table using query.

    Hi,
    I am using Oracle 8i...
    I have to retrieve the second-highest salary from the table...for this I need to write a SQL..Can anybody please help me to figure out this problem..Thanks in advance..
    smitha

    Using analytic functions
    SELECT *
    FROM (SELECT other_columns,DENSE_RANK() OVER(ORDER BY salary DESC) sal_rank
          FROM table)
    WHERE sal_rank = 2
    Using Order by and rownum
    SELECT *
    FROM (SELECT other_columns,rownum sal_rank
          FROM (SELECT other_columns,salary
                FROM table
                ORDER BY salary DESC))
    WHERE sal_rank = 2TTFN
    John

  • How to find the third highest salary by distinct the salary from deptno20,from employee table

    how to find the third highest salary by distinct the salary from deptno20,by using employee table

    You already asked this question, a half hour earlier:
    https://forums.oracle.com/thread/2569985
    and received a reply.
    Do not multi-post to the forums.
    These are user-to-user forums and everyone is posting because they volunteer to post and not because they get paid to post.    Everyone else is paid exactly the same as you are paid to post here.   When you multi-post is makes you appear as impatient and expecting instantaneous answers.
    That is poor forum etiquette, approaching behavior similar to spamming the forums.
    This duplicate post is locked.

  • How to find the third highest salary from deptno20,from employee table

    how to find the third highest salary from deptno20,from employee table

    SELECT *
      FROM emp;
    EMPNO
    ENAME
    JOB
    MGR
    HIREDATE
    SAL
    COMM
    DEPTNO
    7369
    SMITH
    CLERK
    7902
    12/17/1980
    1000
    3
    20
    7499
    FEDERAL
    SALESMAN
    7654
    2/20/1981
    2000
    4
    30
    7521
    WARD
    SALESMAN
    7698
    2/22/1981
    3000
    4
    30
    7566
    JONES
    MANAGER
    7839
    4/2/1981
    4000
    3
    20
    7839
    MARTIN
    SALESMAN
    7698
    9/28/1981
    5421
    4
    30
    7698
    BLAKE
    MANAGER
    7698
    5/1/1981
    6222
    4
    30
    7782
    CLARK
    MANAGER
    7839
    6/9/1981
    5222
    2
    10
    7788
    SCOTT
    ANALYST
    7566
    12/9/1982
    5463
    3
    20
    7839
    KING
    PRESIDENT
    7902
    11/17/1981
    8543
    2
    10
    7844
    TURNER
    SALESMAN
    7698
    9/8/1981
    2124
    4
    30
    7876
    ADAMS
    CLERK
    7788
    1/12/1983
    2125
    3
    20
    7900
    JAMES
    CLERK
    7698
    12/3/1981
    5462
    4
    30
    7902
    FORD
    ANALYST
    7566
    12/3/1981
    2132
    3
    20
    7934
    MILLER
    CLERK
    7782
    1/23/1982
    5165
    2
    10
    SELECT sal, deptno
      FROM (SELECT   a.*,
                     DENSE_RANK () OVER (PARTITION BY deptno ORDER BY sal DESC) r
                FROM emp a
          ----  ORDER BY sal DESC
    WHERE r = 3;
    SAL
    DEPTNO
    5421
    30
    5165
    10
    2132
    20
    Regards ,
    Friend
    Message was edited by: MostWanted!!!!

  • ABAP Query to display top 5 employees who are having highest salary

    How will you write a query in abap to display top 5 emplyeee records who are having Highest Salary Among all the employees.
    Please Reply...

    Hi Kush,
    Before writing any Database Query, always keep 2 important thumb rules in your mind :
    1. Keep the number of data base access small
    2. Keep the amount of data transfer small.
    As you mentioned the Database Table has only 100 records, you can locally buffer the Table. So, make a local buffering and then you can sort the table based on the salary.
    Select *
      from Table_name
    into table gt_itab.
    Sort gt_itab by salary descending.
    Now you can read the  entries one after the another based on the index.
    Have a look at the following code for an efficient performance feature. Goto SE38 and have a look at the ABAP Examples.
    demo_select_some_columns. Package : SABAPDEMOS
    Hope this will help.
    Thanks,
    Samantak.

  • How to find the number of records in ods?

    how to find the number of records in ods?
    Pls suggest the solution apart going to the table of ods and seeing the number of records.
    Is there any program or function module to see the number of records in ods?
    For eg: SAP_INFOCUBE_DESIGNS is a program which gives the detail (number of records) of infocube.

    Hi,
    I was looking at this and found the following tables that may be of help.
    One of these tables will include a summary of the record count of all the tables in your system based on the last time each table had it's database statistics calculated:
    DBSTATTADA
    DBSTATTDB2
    DBSTATTDB4
    DBSTATTDB6
    DBSTATTINF
    DBSTATTMSS
    DBSTATTORA
    We run on an Oracle database so the table record counts can be taken from DBSTATTORA. Type in AZ in table selection field in SE16 to restrict the output to ODS (or DSO) tables only.
    The record count is at the time indicated in the timestamp field. Obviously this is not real time but should not be too out of date - if it is you may be having performance issues and should get your DBA / Basis to run a full refresh of DB stats.
    Hope this helps, alhtough not real time the table should give you a decent indication of the size of all your ODS objects (or any other table for that matter!)

  • How to find out the latest Record in per_all_people_f and per_all_assignme

    Hi ,
    How to find out the latest Record in per_all_people_f and per_all_assignments_f
    Requirement : Need to find out the latest record in per_all_people_f and per_all_assignments_f to update the attribute column with pre defined value . Its not possible to track only with person_id / assignment_id and effective end date
    SELECT pp_id
    FROM (SELECT app.person_id pp_id,
    asf.*
    FROM apps.per_all_people_f app,
    apps.per_all_assignments_f asf
    WHERE --app.person_id=123568 and
    asf.person_id = app.person_id AND
    app.effective_end_date = to_date('31-dec-4712') AND
    asf.effective_end_date = to_date('31-dec-4712')
    GROUP BY app.person_id)
    HAVING COUNT(pp_id) > 1
    GROUP BY pp_id
    This query also returns more than 1 value for person_id .
    It would be great if you put comment on this .. Thanks in advance ,
    Arya

    I am getting more records with asf.primary_flag='Y' . If you give ur mail id , i will send the sample data
    ASSIGNMENT_ID     EFFECTIVE_START_DATE     EFFECTIVE_END_DATE     BUSINESS_GROUP_ID     RECRUITER_ID     GRADE_ID     POSITION_ID     JOB_ID     ASSIGNMENT_STATUS_TYPE_ID     PAYROLL_ID     LOCATION_ID     PERSON_REFERRED_BY_ID     SUPERVISOR_ID     SPECIAL_CEILING_STEP_ID     PERSON_ID     RECRUITMENT_ACTIVITY_ID     SOURCE_ORGANIZATION_ID     ORGANIZATION_ID     PEOPLE_GROUP_ID     SOFT_CODING_KEYFLEX_ID     VACANCY_ID     PAY_BASIS_ID     ASSIGNMENT_SEQUENCE     ASSIGNMENT_TYPE     PRIMARY_FLAG     APPLICATION_ID     ASSIGNMENT_NUMBER     CHANGE_REASON     COMMENT_ID     DATE_PROBATION_END     DEFAULT_CODE_COMB_ID     EMPLOYMENT_CATEGORY     FREQUENCY     INTERNAL_ADDRESS_LINE     MANAGER_FLAG     NORMAL_HOURS     PERF_REVIEW_PERIOD     PERF_REVIEW_PERIOD_FREQUENCY     PERIOD_OF_SERVICE_ID     PROBATION_PERIOD     PROBATION_UNIT     SAL_REVIEW_PERIOD     SAL_REVIEW_PERIOD_FREQUENCY     SET_OF_BOOKS_ID     SOURCE_TYPE     TIME_NORMAL_FINISH     TIME_NORMAL_START     BARGAINING_UNIT_CODE     LABOUR_UNION_MEMBER_FLAG     HOURLY_SALARIED_CODE     REQUEST_ID     PROGRAM_APPLICATION_ID     PROGRAM_ID     PROGRAM_UPDATE_DATE     ASS_ATTRIBUTE_CATEGORY     ASS_ATTRIBUTE1     ASS_ATTRIBUTE2     ASS_ATTRIBUTE3     ASS_ATTRIBUTE4     ASS_ATTRIBUTE5     ASS_ATTRIBUTE6     ASS_ATTRIBUTE7     ASS_ATTRIBUTE8     ASS_ATTRIBUTE9     ASS_ATTRIBUTE10     ASS_ATTRIBUTE11     ASS_ATTRIBUTE12     ASS_ATTRIBUTE13     ASS_ATTRIBUTE14     ASS_ATTRIBUTE15     ASS_ATTRIBUTE16     ASS_ATTRIBUTE17     ASS_ATTRIBUTE18     ASS_ATTRIBUTE19     ASS_ATTRIBUTE20     ASS_ATTRIBUTE21     ASS_ATTRIBUTE22     ASS_ATTRIBUTE23     ASS_ATTRIBUTE24     ASS_ATTRIBUTE25     ASS_ATTRIBUTE26     ASS_ATTRIBUTE27     ASS_ATTRIBUTE28     ASS_ATTRIBUTE29     ASS_ATTRIBUTE30     LAST_UPDATE_DATE     LAST_UPDATED_BY     LAST_UPDATE_LOGIN     CREATED_BY     CREATION_DATE     TITLE     OBJECT_VERSION_NUMBER
    931510     7-Nov-08     31-Dec-12     122     (null)     (null)     (null)     3978     1     (null)     14402     (null)     220150     (null)     734956     (null)     (null)     476     (null)     (null)     (null)     (null)     2     E     Y     (null)     100035417-2     (null)     (null)     (null)     45948739     (null)     (null)     (null)     (null)     (null)     (null)     (null)     868007     (null)     (null)     (null)     (null)     449     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)                                        
    797386     26-Aug-08     26-Aug-08     122     (null)     (null)     (null)     3980     3     (null)     14402     (null)     218925     (null)     734956     (null)     (null)     476     (null)     (null)     (null)     (null)     1     E     Y     (null)     100035417     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     740071     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)                                        
    916076     26-Aug-08     31-Dec-12     122     (null)     (null)     (null)     3980     1     4     14402     (null)     218925     (null)     734956     (null)     (null)     476     (null)     (null)     (null)     (null)     1     B     Y     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)                                        
    797386     25-Feb-08     25-Aug-08     122     (null)     (null)     (null)     3980     1     (null)     14402     (null)     218925     (null)     734956     (null)     (null)     476     (null)     (null)     (null)     (null)     1     E     Y     (null)     100035417     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     740071     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)     (null)

Maybe you are looking for

  • How to download document from attachment section

    Hi experts, I need to know how I can download the document in attachment section through any program,since we need to download the attachments for multiple opportunites,if any FM's or BADi's are availble please let me know. Thanks Anu.

  • Clustering in EP SP4 Sneak Preview

    Hi Portal Gurus, Can we install a clustering setup in EP SP4 Sneak preview. Regardless,can anyone pls send me some "How To"s related to clustering e.g. configuring cluster id,fail safe etc. I would reward good points for your help. Thanks. Harsha

  • Recommended Structure for Large Files

    I am working at re-familiarizing myself with Oracle development and management so please forgive my ignorance on some of these topics or questions. I will be working with a client who is planning a large-scale database for what is called "Flow Cytome

  • RMI Server

    Alright guys I am trying to get a Simple RMI example running. I can run the registtry from the command prompt but cannot get the server started. My command to run the server and the error are as follows C:\Documents and Settings\John\jbproject\simple

  • Is it possible to save all document from cloud at once? [Android]

    Hi Android A Reader team, Is it possible to download all books from the cloud account? Since every time there is update or refresh system with cleaned cache, I have to open the document to trigger download. If there is a one click or choose to downlo