Filter based on the count of value

Hi All,
I have the table below and want to show the prop_code if the rent_review_date count is less than 1 in 12 months. This means to show only propcode if there has not been any rent update since the first rent_review_date. For few prop_code the rent was
updated twice on the same day and we need to take the max for that date using time.
DECLARE @table TABLE
( Prop_Code INT
,Current_Rent INT
,Revised_Rent INT
,Rent_Review_Date varchar(10)
,Rent_Review_Time DATEtime)
INSERT INTO @table (PROP_CODE,Current_Rent,Revised_Rent,Rent_Review_Date,Rent_Review_Time) VALUES
(2977,372,339.15,'2013-07-08','7:44')
,(2977,372,339.15,'2013-07-03','11:01')
,(2977,372,372,'2014-06-30','9:07')
,(2977,372,372,'2014-07-07','11:06')
,(2981,372,372,'2014-07-07','11:06')
,(2981,372,340.15,'2013-07-08','7:23')
,(2981,372,314.15,'2013-07-08','7:44')
,(2981,372,340.15,'2013-07-29','7:16')
,(3089,205.63,400,'2014-10-27','8:38')
,(3089,205.63,205.63,'2014-02-03','8:29')
,(3089,205.63,127.64,'2014-01-20','0:52')
,(3089,205.63,123.02,'2013-08-12','8:28')
,(3089,205.63,205.63,'2014-12-15','8:46')
,(3109,252.62,198,'2014-01-20','0:52')
,(3109,252.62,252.62,'2014-04-07','8:30')
,(3109,252.62,198,'2013-08-12','8:28')
,(3117,284.96,336,'2014-04-21','1:03')
,(3125,267.53,267.53,'2014-02-03','8:29')
Select * from @table
Thanks
Jag

>> I have the table below and want to show the property_id if the rent_review_date count is less than 1 in 12 months. This means to show only property_id if there has not been any rent update since the first rent_review_date. For few property_id
the rent was updated twice on the same day and we need to take the max for that date using time. <<
Thank you for trying to post DDL. But it is wrong. Why do you think that “table” is a valid table name? Please do not use DECLARE..TABLE. You have no key or constraints. You have no way to have a key! You split a time stamp! You cast a date as a string! You
have a money amount as an INTEGER! And then posted decimal to it! 
You put a comma at the start of each line of SQL. We do not do that, but old punch card programmer do (I was one!). I bet you do not even know why! What you call a property_code looks like a property_id. Why was it a string? What math do you do on it? None! 
CREATE TABLE Rentals
(prop_id CHAR(4) NOT NULL,
 current_rent DECIMAL(8,2) NOT NULL,
 revised_rent DECIMAL(8,2) NOT NULL,
 rent_review_timestamp DATETIME2(0) NOT NULL,
 PRIMARY KEY (propery_id, rent_review_timestamp))
INSERT INTO Rentals
VALUES
('2977' 372.00, 339.15, '2013-07-08 07:44:00'),
 ('2977' 372.00, 339.15, '2013-07-03 11:01:00'),
 ('2977' 372.00, 372.00, '2014-06-30 09:07:00'),
 ('2977' 372.00, 372.00, '2014-07-07 11:06:00'),
 ('2981', 372.00, 372.00, '2014-07-07 11:06:00'),
 ('2981', 372.00, 340.15, '2013-07-08 07:23:00'),
 ('2981', 372.00, 314.15, '2013-07-08 07:44:00'),
 ('2981', 372.00, 340.15, '2013-07-29 07:16:00'),
 ('3089', 205.63, 400.00, '2014-10-27 08:38:00'),
 ('3089', 205.63, 205.63, '2014-02-03 08:29:00'),
 ('3089', 205.63, 127.64, '2014-01-20 00:52:00'),
 ('3089', 205.63, 123.02, '2013-08-12 08:28:00'),
 ('3089', 205.63, 205.63, '2014-12-15 08:46:00'),
 ('3109', 252.62, 198.00, '2014-01-20 00:52:00'),
 ('3109', 252.62, 252.62, '2014-04-07 08:30:00'),
 ('3109', 252.62, 198.00, '2013-08-12 08:28:00'),
 ('3117', 284.96, 336.00, '2014-04-21 01:03:00'),
 ('3125', 267.53, 267.53, '2014-02-03 08:29:00');
My SQL Server crashed, so this is untested. I am guessing at the specs, too. 
WITH Last_Rent_Change (property_id,  last_rent_change)
AS
(SELECT property_id, MAX (rent_review_timestamp) 
    FROM Rentals
WHERE rent_review_timestamp BETWEEN CAST (CURRENT_TIMESTAMP AS DATE)
                 AND DATEADD( YEAR, -1, CAST (CURRENT_TIMESTAMP AS DATE))
GROUP BY propery_id
HAVING COUNT(*) > 1) 
SELECT R.*
  FROM Last_Rent_Change AS L, Rentals AS R
WHERE R.property_id = L.property_id ;
Most of the work in SQL is in the DDL. Once it is right, the DML is usually easy. 
--CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
in Sets / Trees and Hierarchies in SQL

Similar Messages

  • How to release the IDOC based on the count

    Hi IDOC gurus,
    How to release IDOC's based on the count?
    Actually, my requirement is I have to release the IDOC's of count 50 for every 5 or 10 minutes. I tried by scheduling the background job for the program RSEOUT00, but unfortunately there was no option of selecting the IDOC's based on count for the given message type except IDOC range i.e FROM and TO select options in the selection screen.
    Are there any other alternative where I can release the IDOC's based on count for every periodic 5 or 10minutes?
    Also, can I know how can we configure the multiple QUEUES for the IDOC's?
    I highly appreciate who can help regarding this and points are awarded.
    Thanks,
    Sreevani.

    Hi Ferry,
    I tried with that option. Maximum number of IDocs parameter is the package size not the count of IDOC's.
    I have 100 IDOC's with status 30 and all IDOC's got released eventhough the value of  "Maximum number of IDocs" parameter is 50. I checked in the code it is an package size i.e., maxm IDOCs that it can be transferred from RFC outbound queue to a port at time and not maximum number that can be processed for the program execution.
    Thanks,
    Sreevani.

  • How can I filter based on the IPTC core information?

    How can I filter based on the IPTC core information? (CS6)

    "Substitution Variables" can do what you are asking for.

  • Automated solution to convert or directly filter based on the discontinued local flags?

    Hi,
    I really liked a lot of the LR 4 features and thus upgraded LR and my main catalogue as soon as v 4 was released. While a lot of stuff is very welcome (soft proofing!), I just realized that Adobe has horribly screwed up my workflow by dropping local pick/rejected flags from V4. I really hate this change as it was very useful for me to reject images for a certain collection (but still being able to know that at some point I had considered it to be included). For the future I guess I will have to find another workflow, probably by creating additional "archive" collections...
    But the real problem is the literally tens of thousands of images I have flagged as rejected in collections in my big lightroom catalogue. If I go into any of my old collections I see the entire selection including all the rejects. I know I can get a context menu to select all the items that were locally flagged rejected via the "Select Old Contextual Rejected" action. But to do this for several hundred collections is out of the question. (I am not kidding btw, I am a wedding photographer and have about 400000 photos in my catalogue and about 1000 collections).
    So my question is: does anyone know of an automated solution to get the old local flag infomration back? I guess it would be possible to write a plugin that creates 3 collections for every collection that used the old local picked/rejected flags (one with -picked, one with -rejected and one -unflagged). Has anyone done this yet? Or create a plugin that can filter based on the old information (as it is still in the database, just not accessible in the UI).
    I am a software developer as well as a photographer so if no one has done this yet I might consider giving it a try myself but I would hate to do something that has been done already...
    And btw I am pretty angry at adobe for making this a breaking change.
    Best,
    Daniel
    http://www.iconoclash-photography.com

    To build on John's response: While we're still awaiting the LR 4 SDK documentation and can't say for sure, I'm skeptical that the LR 4 SDK exposes the old collection-based flags, given that the LR 3 SDK didn't expose them. 
    One solution would be for a plugin to read the catalog database outside of LR, e.g. in the manner of the SQLiteroom plugin.  Accessing the database directly isn't supported by Adobe, but in this case, doing so to do a one-time recovery of legacy data is likely more than robust enough.

  • Mark the checkbox based on the backing bean value in h:selectManyCheckBox

    Hai
    I am using the h:selectManyCheckbox based on the backened List values, the list of check box should be selected. But in my code the check box was not checked based on that value.
    jsp code
    <h:selectManyCheckbox border="1" layout="pageDirection" value="#{bean.checkValue}" >
    <f:selectItems value="#{bean.allList}" />
    </h:selectManyCheckbox>     
    bean.java
    //getter and setter
    List checkValue= new ArrayList();;
    List allList = new ArrayList();;
    for save action i stored the values from checkbox to database. then for edit option i retrieve the value from database into list but cant select the checkbox.
    pls help me.....

    What exactly is in the checkValue list? What exactly is in the allList list? (Why not use generics?)
    Were you able to use this construct successfully for input?

  • Missed Incident Resoultion Time Filter Based on the Assignee in SAP BO

    Greetings!
    I am trying to find a way to filter the below results in SAP BO using the BMC ITSM universe, based on the person who missed the Incident Resolution Time.
    However, I have filtered the below result based on the following query:
    Due Date Time > Last Assigned Date. - (Applied in the query object filter)
    & Min (Last Assigned Date). - Applied on the formula of inserted tables
    But, when I try to insert the Last Modified By column and the Assignment Group, it ignores all my filters and puts all the assignees who had worked on this > than the due date and time.
    Please help me out to filter only the person who breached the ticket, eg: In this case, INC58518 was breached by "hlayiseka.mkhombo". I need to display only this assignee and his assigned group.
    Incident
      ID
    Due Date Time
    Last Assigned
      Date
    Last Modified
      By
    Assignment
      Detail.Assigned Group
    Goal
    Progress
    INC000000058518
    2/10/2015
      1:27:03 PM
    3/1/2015
      1:52:10 PM
    dalia.serhal
    Business
      Relationship Management
    Incident
      Resolution Time
    Missed
    INC000000058518
    2/10/2015
      1:27:03 PM
    3/1/2015
      2:14:37 PM
    dalia.serhal
    Service
      Design
    Incident
      Resolution Time
    Missed
    INC000000058518
    2/10/2015
      1:27:03 PM
    2/26/2015
      2:35:48 PM
    guruprasath.jayarama
    Service
      Design
    Incident
      Resolution Time
    Missed
    INC000000058518
    2/10/2015 1:27:03 PM
    2/11/2015
      11:26:32 AM
    hlayiseka.mkhombo
    Service
      Improvement
    Incident
      Resolution Time
    Missed
    Thanks in advance for your feedback and inputs.
    Regards
    Sherwin

    I have also tried using the formula First (Last Modified By), but it doesn't give me the correct value. i.e, the actual assignee doesn't seem to match with the Last Assigned Date.

  • Subtotal in alv report based on the particular field value

    Hi,
    As per my requirement, i need to do subtotal of quntity field based on the material number field value in alv report.
    Ex:  if material number falls 1 to 10 then i need to be calculate and display subtotal qty amount with text " total of the mat1" and if material number falls 11 to 20 then again i need to be claculate and display subtotal qty amount with text "total of the mat2". similarily i need to display the details.
    <removed_by_moderator>
    Regards
    Nagendra

    Hi,
    Ex: if material number falls 1 to 10 then i need to be calculate and display subtotal qty amount with text " total of the mat1" and if material number falls 11 to 20 then again i need to be claculate and display subtotal qty amount with text "total of the mat2". similarily i need to display the details.
    What you can do is in your output table, you will have to create an auxilary field, lets call it as material group (groupid). Now you can do a subtotal on the material group. However the logic to determine what materials belong to which group should be coded. I guess you might be having some logic for that.
    So lets say that material 1 to 10 as G1 ( group 1 ) and material 11 to 20 as G2 ( group 2 )
    The output of the internal table would be
    Groupid  matnr ...
    1  1
    1  2
    1  3.....and so on
    2  11
    2  12
    2  13....upto 20.
    Now in the fieldcatalog assign an 'X' to the 'dosum' parameter to the field Groupid
    In the sort info do the following :
    gs_sort-fieldname = 'GROUPID'.
    gs_sort-spos = 1.
    gs_sort-up = 'X'.
    gs_sort-subtot = 'X'. ***CRUCIAL STATEMENT****
    append gs_sort to gt_sort.
    Now pass all this data to the alv grid function. And you are done.
    regards,
    Advait

  • OBIEE Report - filter based on the result from another analysis

    Hi,
    I am using OBIEE 11g,
    I am trying to use a filter which is based on the result from another analysis. I have an analysis A which is as table 1, and I want to filter the respective columns of analysis B (Table B) based on analysis A to remove the duplicates for march 01, 02, and 07 , but it is not working properly. I took a max of start and end time when I created analysis A. Please let me know if I did anything wrong. thanks.
    Table 1
    Employee Number
    Date
    IN
    Out
    Start Time
    End Time
    xxxxxxx
    2015-02-26
    9:00
    13:00
    00:00:00
    00:00:00
    2015-02-27
    12:00
    18:00
    00:00:00
    00:00:00
    2015-02-28
    8:00
    14:00
    00:00:00
    00:00:00
    2015-03-01
    14:00
    20:00
    14:00:00
    20:00:00
    2015-03-02
    16:00
    20:00
    16:00:00
    20:00:00
    2015-03-07
    14:06
    20:02
    14:00:00
    20:00:00
    2015-03-11
    16:00
    20:00
    16:00:00
    20:00:00
    2015-03-14
    8:00
    14:00
    00:00:00
    00:00:00
    2015-03-25
    14:00
    20:00
    16:00:00
    20:00:00
    Table 2
    Employee Number
    Date
    IN
    Out
    Start Time
    End Time
    Hours
    xxxxxxx
    2015-02-26
    9:00
    13:00
    00:00:00
    00:00:00
    -3
    2015-02-27
    12:00
    18:00
    00:00:00
    00:00:00
    6
    2015-02-28
    8:00
    14:00
    00:00:00
    00:00:00
    6
    2015-03-01
    14:00
    20:00
    00:00:00
    00:00:00
    6
    14:00:00
    20:00:00
    6
    2015-03-02
    16:00
    20:00
    00:00:00
    00:00:00
    4
    16:00:00
    20:00:00
    4
    2015-03-07
    14:06
    20:02
    00:00:00
    00:00:00
    6
    14:00:00
    20:00:00
    6
    2015-03-11
    16:00
    20:00
    16:00:00
    20:00:00
    4
    2015-03-14
    8:00
    14:00
    00:00:00
    00:00:00
    6
    2015-03-25
    14:00
    20:00
    16:00:00
    20:00:00
    4

    Why avg here?
    What columns you want to show in the report?
    for a employee for given date if he have 2 rows then you may sum up hours right?
    Employee Number
    Date
    IN
    Out
    Start Time
    End Time
    Hours

  • Populate text field based on the lov selected value

    Hi,
    based on the value selected in lov, i want to populate another text field. Below is the code I have written
    In PFR:
    if(pageContext.isLovEvent())
    String lovInputSourceId = pageContext.getParameter(SOURCE_PARAM);
    if ("lovCategory".equals(lovInputSourceId))
    java.util.Hashtable lovResults = pageContext.getLovResultsFromSession(lovInputSourceId);
    if(lovResults!=null)
    String value =(String)lovResults.get("lovCategory");
    amobj.categorycode(value);
    AMImpl code:
    public void categorycode(String code) {
    sundryCodeVOImpl vobj = getsundryCodeVO1();
    vobj.setWhereClause( "lookup_code = "+"'"+code+"'");
    vobj.reset();
    vobj.executeQuery();
    String desc = vobj.first().getAttribute("Description").toString();
    String attr = vobj.first().getAttribute("Attribute1").toString();
    testEOViewImpl vobj1 = gettestEOView1();
    vobj1.getCurrentRow().setAttribute("CodeDescription",desc);
    vobj1.getCurrentRow().setAttribute("PurchasingCategoryCd",attr);
    vobj1.executeQuery();
    With this code, the updated values for the attributes CodeDescription, PurchasingCategoryCd are getting inserted into the database table but they are now showing up in the text fields when a value is selected in lov.
    Please tell me what is the mistake I'm doing.
    Thanks
    Sunny

    I'm using Lov Map to populate the lov field say field A. But I need to populate another field say field B based on the value selected in field A.
    to give an example of my requirement. Consider a view object having attributes col1,col2,col3 and having following data.
    col1--col2--col3
    1-----a-------x
    2-----b------y
    3-----c------z
    I 'll populate the lov of field A with values in col1. when user selects value 1 in field A. automatically field B should show value 'a'. If user selects value 2 in field A, field B should show value 'b' so on.
    Thanks
    Sunny

  • Loading data into csv file based on the count of data in table in ODI

    Hi,
    I have a requirement like i have data in table and need to be loaded in csv file.
    If the count of the data in the table exceeds the csv data limit then i need to call the same procedure again to
    generate one more csv file and load the remaining data into it.my data in the table may vary all the time.
    I am new to this ODI.Can anyone tell any ways to do it in ODI or tell me any logic to do this?
    Thanks in advance..
    Edited by: 883410 on May 22, 2012 12:01 AM

    What limit on the csv file are you talking about. There isn't a limit (unless you are on Unix where the filesize is limit is 2GB). Are you talking about opening it in earlier versions of Excel where the display limit is 60,000 rows as this is irrelevant for your operation?

  • How to get search help for 2nd  parameter based on the 1st parameter value

    Hi all!
       I have 2 parameters (material no, revision level). I have created a search help for revision level. It has an importing parameter :material no. and one exporting parameter : revision level.When I checked it, it's giving the revision values only for the specified.
    In my report , I have kept these 2 materials in my selection screen.For revision level , I have added the matchcode object which I have created. When I  pressed F4 for revision level, it's giving all the values irrespective of the material no. in the first parameter. How to solve it? Please suggest.

    Hi,
    Try this code filling internal table fields,
    DATA: BEGIN OF values,
            OID TYPE ZCL_OBJECT-OBJECTID,
            ODEC TYPE ZCL_OBJECT-OBJECT_DESC,
           END OF values,
           W_FIELD(10).
    DATA: ZCL_PROJECT-PROJECTID type zcl_project-projectid,
          ZCL_OBJECT-OBJECTID(5).
    DATA: progname TYPE sy-repid,
          dynnum   TYPE sy-dynnr,
          dynpro_values TYPE TABLE OF dynpread,
          field_value LIKE LINE OF dynpro_values,
          values_tab LIKE TABLE OF values.
    CALL SCREEN 100.
    *&      Module  VALUE_PROJECTID  INPUT
          text
    *MODULE VALUE_PROJECTID INPUT.
    CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
          EXPORTING
               tabname     = 'ZCL_PROJECT'
               fieldname   = 'PROJECTID'
               dynpprog    = progname
               dynpnr      = dynnum
               dynprofield = 'ZCL_PROJECT-PROJECTID'.
    *ENDMODULE.                 " VALUE_PROJECTID  INPUT
    *&      Module  VALUE_OBJECTID  INPUT
          text
    MODULE VALUE_OBJECTID INPUT.
       CALL FUNCTION 'DYNP_VALUES_READ'
           EXPORTING
                dyname             = progname
                dynumb             = dynnum
                translate_to_upper = 'X'
           TABLES
                dynpfields         = dynpro_values.
      READ TABLE dynpro_values INDEX 1 INTO field_value.
    W_FIELD = FIELD_VALUE-FIELDVALUE.
      SELECT  OBJECTID
              OBJECT_DESC
        FROM  ZCL_OBJECT
        INTO  (VALUES-OID,
               VALUES-ODEC)
    WHERE PROJECTID = FIELD_VALUE-FIELDVALUE.
       APPEND VALUES TO VALUES_TAB.
    ENDSELECT.
       CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
           EXPORTING
                retfield    = 'OID'
                dynpprog    = progname
                dynpnr      = dynnum
                dynprofield = 'ZCL_OBJECT-OBJECTID'
                value_org   = 'S'
           TABLES
                value_tab   = values_tab.
    ENDMODULE.                 " VALUE_OBJECTID  INPUT
    *&      Module  INIT  OUTPUT
          text
    MODULE INIT OUTPUT.
      progname = sy-repid.
      dynnum   = sy-dynnr.
      CLEAR: field_value, dynpro_values.
      field_value-fieldname = 'ZCL_PROJECT-PROJECTID'.
      APPEND field_value TO dynpro_values.
      IF SY-UCOMM = 'BACK'.
        LEAVE program.
    ENDIF.
    IF SY-UCOMM = 'ANS'.
       LEAVE  TO SCREEN  '0'.
    ENDIF.
    ENDMODULE.                 " INIT  OUTPUT
    START-OF-SELECTION.
    WRITE: / field_value-fieldvalue,
             W_FIELD.
      LOOP AT VALUES_TAB INTO VALUES.
        WRITE / VALUES.
      ENDLOOP.
      if sy-subrc <> 0.
        WRITE / field_value-fieldvalue.
      endif.
    Plzz reward points if it helps

  • "How do you build a filter based on the conditions of two columns?"

    Hi all,
    line desc     Period     Amount1     Amount2
    jan feb 0 10
    jan mar 0 20
    jan jan 0 30
    jan apr 0 40
    I have a report like this with four columns
    Line Descr is from one table and period from other table and amounts 1 and amounts 2 are respective amounts.
    now i need to see the only one column in the Result i,e. jan jan 0 30
    I need to write a sql in the column formula so that i need to get this Result
    Any suggestions like what sql do i need to write
    thanks
    Xavier.
    Edited by: Xavier on Jul 1, 2011 12:03 PM
    Edited by: Xavier on Jul 1, 2011 12:04 PM
    Edited by: Xavier on Jul 1, 2011 12:05 PM
    Edited by: Xavier on Jul 1, 2011 12:05 PM
    Edited by: Xavier on Jul 1, 2011 12:06 PM
    Edited by: Xavier on Jul 1, 2011 12:07 PM
    Edited by: Xavier on Jul 2, 2011 11:37 AM

    David,
    Thank you very much for your Reply.I was looking,who could understand my situation and guess "YOU DID'
    I'll tell my situation David.
    We used to have a sql filter for this Report .In 11.1.1.3 version it used to work ,but in 11.1.1.5 we have a bug .if you have a sql filter in the Report it is not allowing us to use navigation links on that report it is saying some "Assertion Error".
    We are using this Report on Dashboard .If we use the report on Dashboard and if that Report contains the Sql Filter than it's throwing the "ASSERTION ERROR".
    but if i open the same Report from the catalog then the navigation links works fine
    Can you help me out with this one .
    Thanks
    Xavier

  • Get value based on the previous segment value

    Dear all brothers,
    In the entry form of SIT i want to retreive a value depends on the previous value, i know that "$FLEX$.value_set_name" is used for this but for example:
    if the first segment is entered date and i want to get the second segment as the person grade within this date "in the first segment", what should i do for this ?
    BTW, it is working fine in core apps using fffun.cd function , but not fine at all in the SSHR.
    Regards,

    No help :( ??

  • Why when I preordered the new Iphone was the tax estimated at plus minus $55 it sould have been about $18. I was told it was based on the full $649 value of the phone, but that's not right. Sales tax is on the purchase price.

    Why when I recently preordered the new $199 I phone was the sales tax estimated at +- $55? It should have been +- $18. The supervisor said the tax was on the $649 value, but that's not right as sales tax is charged on the sales amount. What is this charge for?

    Complain to your elected officials, they're the one's that write the tax code. I know that in CA and RI, sales tax is collected on the unbundled price(full) of not just the iPhone, but any cell phone.

  • How to make Parametres mandatory based on the selected parametre value

    Hi Gurus,
    I have a requirement in concurrent program.can anyone suggest me on this how to proceed,
    i have a concurrent program like ABC Program with three parameters (A parameter, B parameter, C parameter)
    my requirement is
    A parameter has 3 values (TEST,DEV,PROD)
    if a user selects 'TEST' value from the A parameter then 'B' parameter should become mandatory for user to enter value
    if a user selects 'DEV' value from the A parameter then 'C' parameter should become mandatory for user to enter value
    if a user selects 'PROD' value from the A parameter then 'B' and 'C' parameter should become mandatory for user to enter value.
    is it requirement is feasible ,
    any inputs on this post is highly appreciable.
    Thanks in advance

    Please see these links.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Concurrent+AND+Dependent&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Concurrent+AND+Dependent+AND+LOV&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

Maybe you are looking for

  • I can't figure out how to set a breakpoint in a SenTestingKit unit test

    I'm learning Cocoa after decades of doing other languages. I'm trying to use SenTestingKit for unit tests. One of my unit tests doesn't work, and I want to set a breakpoint to figure out why. So far, I haven't figured out how to do this. I found Chri

  • Error while populating data

    hi, Here i am giving the DDLs and Inserts of Database .i am getting error while fetching data into outlist. and the error is err_msg = ORA-00932: inconsistent datatypes: expected - got - I also posted the same one in my previous post but i did not go

  • Displaying chinese characters in browser

    Dear sirs, I am having the following issue in chinese internationalization.when i stored the JSP form parameters(typed in chinese) in database,it stored some kind of junk characters ....and when i displayed ,they showed like SMALL SMALL tables.... in

  • SQL Developer - database connect problem

    Hello Just wanted to give SQL Developer a try, downloaded it, unzipped and pointed at Java SDK's java.exe. It started, I created a TNS connection and successfully passed test. But when I try to connect to database - it errors with following java.lang

  • IPCC - Relation between CSQ and Agent

    Hello, I'm trying to develop a report where I'll place metrics per CSQ and, inside that, per Agent. For example, I want to retrieve the login time of agent X in CSQ Y; the number of calls handled by agent A in CSQ B. Is that possible? right now I've