Fetching un-matching data

Hi,
From the below code snippet, I want to fetch the non-matching data from table "T1".
DROP TABLE T1;
DROP TABLE T2;
CREATE TABLE T1
F1 INTEGER,
F2 VARCHAR2(100 BYTE),
F3 CHAR(1)
CREATE TABLE T2
FLD1 INTEGER,
FLD2 VARCHAR2(100 BYTE)
begin
     insert into t1
     values(1, 'A1', 'F');
     insert into t1
     values(1, 'A2', 'F');
     insert into t1
     values(1, 'A3', 'T');
     insert into t1
     values(2, 'A1', 'T');
     insert into t1
     values(3, 'A1', 'F');
     insert into t2
     values(1, 'T1');
     insert into t2
     values(2, 'T2');
end;
select * from t1;
select * from t2;
Query A)
select t1.*, nvl(t2.fld1, -1), nvl(t2.fld2, 'EMPTY')
from t1, t2
where t1.f1 = t2.fld1 (+);
Query B)
select t1.*, t2.*
from t1, t2
where t1.f3 = 'T' and t1.f1 = t2.fld1;
Upto this, it is fine, now, I want to fetch the resuts of "Query A" using something like given below,
without applying outer join, this would look silly, unfortunately cannot avoid it.
I am just trying to fetch the unmatching data from T1, when F3 field is
when "F3 = 'T'" then matching data using "t1.f1 = t2.fld1" should be fetched, otherwise
no join condition be applied.
I just tried using the below SQL, it gives "ORA-00905: missing keyword" error, I understand it is not correct.
select t1.*, t2.*
from t1, t2
where case when t1.f3 = 'T' then t1.f1 = t2.fld1 else NULL end;
I cannot use scalar subqueries for this requirement, as it is quite expensive, please give me other alternatives
for this, that should be helpful to me, thank you.

I'm kind of confused about your requirements.
Do you want to return ALL rows from T1 and only the values from T2 where T1.F3 = 'T'?
Something like this maybe?
SELECT  T1.*
                CASE
                        WHEN T1.F3 = 'T'
                        THEN NVL(T2.FLD1,-1)
                END
        )       AS FLD1
                CASE
                        WHEN T1.F3 = 'T'
                        THEN NVL(T2.FLD2,'EMPTY')
                END
        )       AS FLD2
FROM    T1
,       T2
WHERE   T1.F1 = T2.FLD1(+)Sample Results:
SQL > /
F1 F2  F FLD1 FLD2
  1 A3  T    1 T1
  1 A2  F
  1 A1  F
  2 A1  T    2 T2
  3 A1  FCan you please post the expected output as well?
We all appreciate that you posted sample data and the DDL to go with it can you post the following too?
1. Oracle version (e.g. 10.2.0.4)
2. Sample data, and expected output in \ tags (see FAQ for more information).
Edited by: Centinul on Aug 14, 2009 6:46 AM
Added query...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Fetch last match data..

    table
    id carno houseno entrytime                            exit time
    1  11       333        3/4/2014 3:15:18 PM         3/4/2014 3:25:18 PM
    2  11       333        3/4/2014 3:35:18 PM         3/4/2014 3:45:18 PM
    3 11       333        3/4/2014 3:55:18 PM         3/4/2014 4:25:18 PM
    4  14       33        3/4/2014 4:35:18 PM         3/4/2014 5:25:18 PM
    5   15      544      3/4/2014 6:35:18 PM         3/4/2014 7:25:18 PM
    6 11       333        4/4/2014 3:55:18 PM         null
    7 15      544        6/4/2014 3:55:18 PM         6/4/2014 4:25:18 PM
    this is my table structure.............
    so my query is i want to search row which use where clause to match carno and houseno.....in my table so many place carno and houseno are same but only timings are different ..i want to select the last entry which matchs...
    example i give input houseno-333 and carno-11 then i want to serch last entry for this same houseno and carno...that means id-6 will be fetch.......how to achieve this.....i m able to fetch last record with where clause like house no and carno condition.....then
    i want to check is exit time in null in dis row or having some value...
    fynl summary i want to retrive last row based on where clause after retrivinbg i want to check value of exit column....
    is it blank or some value in exit time..

    there are so many issue arise when i test with dummy values..
     some chnges.....
    id carno houseno entrytime                            exit time
    1  11       333        3/4/2014 3:15:18 PM         null
    2  11       333                       null                     3/4/2014 3:45:18 PM
    3 11       333        3/4/2014 3:55:18 PM        null
    4  14       33       null                                     3/4/2014 5:25:18 PM
    5   15      544      3/4/2014 6:35:18 PM         null
    6 11       333        4/4/2014 3:55:18 PM         null
    7 15      544        6/4/2014 3:55:18 PM         null
    now i have to find if there is two  simulatneously entry  happening in a sequence means without exit
     between  two entry of same carno and house no..   thn i need to beep alarm.....if entry tym is store then it should exit first for reenter again....if somehave two duplicate id of card no and house no..then we need to find duplicate of id....this
    is rfid tag which is used for enter in a society,,,,entry gate will open after  identify this tag
    example/////// id-5 carno-15 enter at  3/4/2014 6:35:18 PM  means last entry inserted...after tht no exit
    happen for this carno and houseno.......at 7 id it will try again to enter..but it doesnot have exit so we need to restrict this.......

  • Trying to fetch previous month data

    hi ...
    i have to develope a report in which cutomer on selecting month from the prompt , i have to show transactions for that selected month,transactions for previous month and growth %.
    for fetching previous month data i am using the below formula in column
    FILTER(etxnmistopbr.tot_txns USING (etxnmistopb(TIMESTAMPADD(SQL_TSI_MONTH, -1,etxnmistopbr.month_year)))
    but it doesnt fetch any result.
    i have tried
    FILTER(etxnmistopbr.tot_txns USING (etxnmistopbr.month_year= TIMESTAMPADD(SQL_TSI_MONTH,-1,timestamp '@{current_year}{2012}-@{current_month}{07}-31 00:00:00')))
    where current_year and current_month are presentation variable
    but it throws error as "
    HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 46046] Datetime value 2012-8-31 00:00:00 does not match the specified format. (HY000) "
    can anyone please help how to retrieve previous month data and current month data
    Edited by: 8826 on Sep 27, 2012 4:31 AM

    I would recommend using Time Series Functions, specifically the Ago function in the RPD. This is precisely what they have been designed for and is a very powerful feature of OBIEE. This removes the need for complex formulae embedded within result columns (which you will have to replicate each time you create a new analysis).
    The syntax of the Ago function is as simple as:-
    AGO(Measure, Time Dimension Level, Number of Periods Ago) e.g.
    AGO(Core."Fact - Project Cost".Cost, Core."Date - Fiscal Calendar"."Fiscal Period", 1)
    Please mark if helpful/answered.
    Andy.

  • How to fetch year till date value for earning for current ,last and year

    hi,
    how to fetch year till date value for earning for current ,last and year before that from payroll result
    plz reply soon,
    pratyush

    Dear Pratyush,
    Pick this from CRT.
    Use LDB PNPCE & Fire event GET PAYROLL &
    then you can pick from CRT.
    Hope this helps.
    Kindly reward in case useful.
    Regards & Thanks,
    Darshan Mulmule

  • AddOnsLocalRegistration.sbo file does not match data in the common datab...

    We are receiving the following error everytime we logon our pc for the first time: Add-On Outlook_Integration: This Add-on cannot be upgraded. AddOnsLocalRegistration.sbo file does not match data in the common database for this add-on. See SAP Note 1323680 for more information.
    A few months ago, SBO Server was moved from one server to a new virtual server, but we had no problems with the addons. The other day, we upgraded from SBO 2007 to 8.8 and now we are having problems with the Outlook Integration.
    I have followed the directions in the message noted above, and did find the AddOnsLocalRegistration.sbo file in some odd places, with a reference to the old server. I cleaned this up, on the server and the client and I can get it running...however, after the user shuts down the pc and logs back in the next day, the problem is back.
    In the process of cleaning this up (un-registering the addon and removing the addon references in the local .sbo file) I noticed at times that we would still receive this error, when there really shouldn't be an reference to it.
    Thanks for any help.

    Hi Vaughn.........
    I guess you need a re installation of Outlook Integration Addon.
    Whatever version addon of OI you installed just uninstall it and Install it freshly from 8.8 setup package......
    Regards,
    Rahul

  • Balance Carry Forward in Accrual Engene: "No matching data found in fiscal"

    Hi,
    I have executed ACACCARRYFORWARD (Balance Carry Forward in Accrual Engine) to 2011 and I have success message on screen of Overview of Balances Carried Forward.
    But, when I execute Start Periodic Accrual Run (manual  accruals) for 31 January 2011 I have error message "Processing not posible on 31.12.2011 - Fiscal Year 2011 not carried forward", and then I execute again ACACCARRYFORWARD to 2011 but now, I have massege "No matching data found in fiscal year before 2011".
    For more information when I execute ACACCARRYFORWARD for the first, I haven't maintain no range for 2011 (ACEPS_RUNID-Define Number Ranges for Periodic Posting Runs; ACAC_ACEPS_APPLLOG-Define Number Ranges for Application Log ; ACEPS_ACEDOCNR-Define Number Ranges for Accrual Engine Documents; ACEPS_AWREF-Define Number Ranges for Assigning ACC Doc. to ACE Doc.)
    Please help me !!
    Thank you verry much.
    Suryadi.

    We are operating two company codes. Company A and B.  We followed the same steps in executing the Balance carry forward for both the company codes but in Company A we cannot display the actual line items.
    Edited by: Ellicec on Jan 26, 2011 8:39 AM

  • Does data type nvarchar in SQL 7.0 have matched DATA TYPE in JAVA

    does data type nvarchar in SQL 7.0 have matched DATA TYPE in JAVA
    I use odbc-jdbc bridge to connect to SQL 7.0
    thanks in advance!

    try String.
    java.sql.Types.VARCHAR would be the sql type.

  • SQD3 select options not fetching all the data?

    Hi abapers,
    standard SDQ3 tcode is not fetching all the data?
    In this standard t.code how to find that for different Select-options, different data retrieval queries have been written?
    where to find the select options conditions are written?
    thans in advance

    This could be an issue as ROWTERMINATOR and FIELDTERMINATOR are not well placed.
    Use FORMAT FILE while using BULK INSERT.

  • Compare two text files for matching data

    HI
    I want to compare data in two separate spreadsheet files and store the matching data in another spreadsheet file.
    like
    1)reading data from two spread sheets
    2)compare the data of fist one with second
    3)writing the matched data to third one.
    I am find difficulty in combining them to sort string bu string
    pls help me in this
    thanks
    jyohti

    hi
    i am implementing the following logic
    1)  textfile1--------->string to array
    2)textfile 2--------->string to array
    3) compare the elements (substring) of one array to other using for loop
    4)append the match to an array every time you find a match betwwen two arrays
    5)wriitng the result in new file
    i am strugulling in with 3) i have finshed 1,2,4and 5 th part
    problelms are with indexing and loop conditions for me...
    anyways i am trying and feeling like i will finish and post that soon....

  • Match Data dialog window in Master Data Services Excel Add-in

    Hello, I am following the Enterprise Information Management using SSIS, MDS, and DQS Together
    on
    http://technet.microsoft.com/en-us/library/jj819782.aspx. I am now in lesson 4 Task 4 on
    http://technet.microsoft.com/en-us/library/13a13f03-b307-4555-8e33-6d98c459d994.
    I click the Match Data button in the ribbon in step 21. According to the tutorial the Match Data dialog window should look like this:
    However, the Match Data dialog window I have looks like this:
    Am I doing something wrong? Or am using a different version of the Master Data Excel Add-in?
    I use SQL Server 2012 Developer Edition version 11.0.3000. Master Data Excel Add-in 11.0.2100. Excel 2010. Both Master Data Services and Data Quality Services are installed. Integration between those is configured. I have a full Master Data ribbon containing
    the Data Quality buttons, which indicates DQS integration is configured.

    Hi Arjen,
    I seem to be having the same issue i.e the Match
    Data dialog window that I have looks like the one you show
    I am using:
    SQL Server 2012 Service Pack 1 (SP1) MDS Add-In For Excel:
     11.0.3393.0
    SQL Server 2012 Developer Edition: Microsoft
    SQL Server 2012 (SP1) - 11.0.3128.0 (X64)       
    Don't know if you got anyhere with the issue recently.?
    I'll keep digging.
    Thanks, Martin

  • Field symbols for fetching ME21N screen data

    Hi,
    I need to fetch ME21N screen data,i.e,line item data( material number),for which i have written code as below:
    IF SY-TCODE = 'ME21N' OR
       SY-TCODE = 'ME22N'.
    ematn = '(SAPLMEGUI)MEPO1211-EMATN'.
    ENDIF.
    FIELD-SYMBOLS : <fs1> TYPE ANY.
    ASSIGN (ematn) TO <fs1>.
    But data is not coming to <fs1>.
    Can any one tell me whether any mistake in above statement.
    Or alternatively whether any better method available for fetching screen data?
    I need to use this data in a pricing routine.
    Thanks & Regards
    Seshagiri.

    Hi,
    The combination of both these can be used-
    we can read the screnn fields using this FM-
    DYNP_VALUES_READ
    ***TO READ VALUES
    CALL FUNCTION 'DYNP_VALUES_READ'
           EXPORTING
                DYNAME                   = W_PROG
                DYNUMB                   = W_DYNP
                TRANSLATE_TO_UPPER       = 'X'
           TABLES
                DYNPFIELDS               =  T_DYNPRO.
      READ TABLE  T_DYNPRO INDEX 1 INTO FIELD_VALUE.
      W_CARRID = FIELD_VALUE-FIELDVALUE.
    Paricularly for Material numbers this aslo shoud be used -
    CONVERSION_EXIT_MATN1_INPUT
    Thanks & Regards,
    Chandralekha.

  • Table Comparison to pull back non matching data

    Hello,
    I have been working on the below for a few days now and cannot figure out how to get the desired results. Was hoping someone could point me in the right direction. I have attached the data below and the queries I have come up with so far. I only need data for MU_ID (3,7,4) and only need SKILL_NM ('THICV','HELPDESK_FOUNDATIONAL','SPANISH','AUTO','HELPDESK_COMPLEX','HOUSE_COMPLEX','BOAT','HOUSE','HELPDESK','HELPDESK_MODERATE') as there are hundreds more in the actual tables. I also have the problem of the skill levels for the foundational, moderate, complex skill names from the IEX table. If SKILL_LEVEL is 0-2 on the GEN table they are listed as _FOUNDATIONAL in the IEX table, 3-7 is _MODERATE, 8-10 is _COMPLEX but only for the SKILL_NM 'HELPDESK' & 'HOUSE'.
    CREATE TABLE IEX(
      MU_ID         NUMBER(5),
      AGENT_NM      VARCHAR2(30),
      EXTERNAL_ID   VARCHAR2(8),
      SKILL_NM      VARCHAR2(50))
    CREATE TABLE GEN(
      USER_ID       VARCHAR2(8),
      SKILL_NM      VARCHAR2(255),
      SKILL_LEVEL   NUMBER(10))
    INSERT INTO IEX(MU_ID,AGENT_NM,EXTERNAL_ID,SKILL_NM)VALUES(3,'ROBERTS,CHRIS','ROBERT1','THICV')
    INSERT INTO IEX(MU_ID,AGENT_NM,EXTERNAL_ID,SKILL_NM)VALUES(3,'ROBERTS,CHRIS','ROBERT1','HELPDESK_FOUNDATIONAL')
    INSERT INTO IEX(MU_ID,AGENT_NM,EXTERNAL_ID,SKILL_NM)VALUES(7,'SEW,HEATHER','SEW1','SPANISH')
    INSERT INTO IEX(MU_ID,AGENT_NM,EXTERNAL_ID,SKILL_NM)VALUES(7,'SEW,HEATHER','SEW1','AUTO')
    INSERT INTO IEX(MU_ID,AGENT_NM,EXTERNAL_ID,SKILL_NM)VALUES(4,'PRATT,MIKE','PRATT2','HOUSE_COMPLEX')
    INSERT INTO IEX(MU_ID,AGENT_NM,EXTERNAL_ID,SKILL_NM)VALUES(4,'PRATT,MIKE','PRATT2','HELPDESK_MODERATE')
    INSERT INTO IEX(USER_ID,SKILL_NM,SKILL_LEVEL)VALUES('ROBERT1','THICV',1)
    INSERT INTO IEX(USER_ID,SKILL_NM,SKILL_LEVEL)VALUES('ROBERT1','HELPDESK',7)
    INSERT INTO IEX(USER_ID,SKILL_NM,SKILL_LEVEL)VALUES('SEW1','SPANISH',1)
    INSERT INTO IEX(USER_ID,SKILL_NM,SKILL_LEVEL)VALUES('SEW1','BOAT',1)
    INSERT INTO IEX(USER_ID,SKILL_NM,SKILL_LEVEL)VALUES('PRATT2','HOUSE',9)
    INSERT INTO IEX(USER_ID,SKILL_NM,SKILL_LEVEL)VALUES('PRATT2','HELPDESK',2)
    DESIRED RESULTS:
    MU_ID      AGENT_NM                EXTERNAL_ID      IEX_SKILL_NM                                GEN_SKILL_NM      SKILL_LEVEL
    3                ROBERTS,CHRIS      ROBERT1            NULL                                                     HELPDESK                7
    3                ROBERTS,CHRIS      ROBERT1            HELPDESK_FOUNDATIONAL      NULL                           NULL
    7                SEW,HEATHER           SEW1                      AUTO                                                NULL                           NULL
    7                SET,HEATHER           SEW1                      NULL                                                     BOAT                           1
    4                PRATT,MIKE                PRATT2                 HELPDESK_MODERATE                     NULL                           NULL
    4                PRATT,MIKE                PRATT2                 NULL                                                          HELPDESK                2
    I wrote the 2 below queries, the first one is getting some of the data I need, but not all of it. The second one was something I was playing around with to see if it would do that I need, looks kinda like it works but pulling back way more data than I need and I cannot figure out how to have the skill level data in it.
    SELECT
    A.MU_ID,
    A.AGENT_NM,
    A.EXTERNAL_ID,
    A.SKILL_NM
    FROM IEX A
    WHERE
      A.mu_id IN
       ('3', '4', '7') AND
      UPPER (A.AGENT_NM) NOT LIKE ('%Temp%') AND
        A.EXTERNAL_ID IS NOT NULL
    AND A.SKILL_NM NOT IN
    (SELECT B.SKILL_NM
    FROM GEN B
    WHERE A.EXTERNAL_ID = B.USER_ID
    and A.SKILL_NM = B.SKILL_NM)
    ORDER BY AGENT_NM ASC
    (SELECT
       A.EXTERNAL_ID,
       A.SKILL_NM
    FROM
       IEX A
    WHERE
       A.MU_ID IN ('3', '4', '7')
    MINUS
    SELECT
       B.USER_ID,
       B.SKILL_NM
    FROM
       GEN B
    WHERE
       B.SKILL_NM IN
         ('THICV',
          'HELPDESK_FOUNDATIONAL',
          'SPANISH',
          'AUTO',
          'HELPDESK_COMPLEX',
          'HOUSE_COMPLEX',
          'BOAT',
          'HOUSE',
          'HELPDESK',
          'HELPDESK_MODERATE'))
    UNION ALL
    (SELECT
       B.USER_ID,
       B.SKILL_NM
    FROM
       GEN B
    WHERE
       B.SKILL_NM IN
         ('THICV',
          'HELPDESK_FOUNDATIONAL',
          'SPANISH',
          'AUTO',
          'HELPDESK_COMPLEX',
          'HOUSE_COMPLEX',
          'BOAT',
          'HOUSE',
          'HELPDESK',
          'HELPDESK_MODERATE')
    MINUS
    SELECT
       A.EXTERNAL_ID,
       A.SKILL_NM
    FROM
       IEX A
    WHERE
       A.MU_ID IN ('3', '4', '7'))

    Thanks Frank,
    I guess I explained it wrong. What you provided does pull back non matching data but is also pulling back matching data. Below is the exact query I am using and sample data. What is need  to show all skill_nm that do not match each other from both table. There are a handful of skill_nm that I have to use a condition with levels to make them match up based on "complex" "moderate" "foundational" but only these few need to have that condition and everything else is just straight up does skill_nm from a = skill_nm.
    My current query:
    SELECT
      A.MU_ID,
      A.AGENT_NM,
      B.USER_ID AS EXTERNAL_ID,
      A.SKILL_NM AS IEX_SKILL_NM,
      B.SKILL_NM AS GEN_SKILL_NM,
      B.SKILL_LEVEL
    FROM
      LIGHTHOUSE.IEX_AGT_SKILL A
      FULL OUTER JOIN
      LIGHTHOUSE.CFG_PERSON_SKILL_VALUES B
        ON A.EXTERNAL_ID = B.USER_ID AND
           A.SKILL_NM = B.SKILL_NM
         || CASE
                WHEN B.SKILL_NM NOT IN ('THIPayment','THIPL','SPSC') THEN NULL
              WHEN B.SKILL_LEVEL <= 2 THEN '_FOUNDATIONAL'
            WHEN B.SKILL_LEVEL <= 7 THEN '_MODERATE'
          WHEN B.SKILL_LEVEL <= 10 THEN '_COMPLEX'
         END AND
                A.MU_ID IN
             ('3','4','5','6','7','12','14','220','222','410','411','412','413','414','415','480','600','650','717','720','721',
              '722','723','800','801','3008','3010','3012','3100','4200','4201','4202','4203','4400','4401','4402','4404')
    Doing this, it is looking at the SKILL_LEVEL for all SKILL_NM and pulling back things that do match, but not on the level. I only need to have skill level match up for:
    GENESYS
    IEX
    SKILL LEVEL
    THIPayment
    THIPayment_Complex
    8 to 9
    THIPayment_Foundational
    0-1
    THIPayment_Moderate
    2 to 7
    THIPL
    THIPL_Complex
    8 to 9
    THIPL_Foundational
    0-1
    THIPL_Moderate
    2 to 7
    SPSC
    SPSC_Foundational
    0- 1
    SPSC_Moderate
    2 to 7
    PLSCLegacy
    PLSCLegacy_Complex
    8 to 9
    PLSCLegacy_Foundational
    0- 1
    PLSCLegacy_Moderate
    2 to 7
    PLSCPCIO
    PLSCPCIO_Complex
    8 to 9
    PLSCPCIO_Foundational
    0- 1
    PLSCPCIO_Moderate
    2 to 7
    CREATE TABLE IEX_AGT_SKILL(
      MU_ID         NUMBER(5),
      AGENT_NM      VARCHAR2(30),
      EXTERNAL_ID   VARCHAR2(8),
      SKILL_NM      VARCHAR2(50))
    CREATE TABLE CFG_PERSON_SKILL_VALUES(
      USER_ID       VARCHAR2(8),
      SKILL_NM      VARCHAR2(255),
      SKILL_LEVEL   NUMBER(10))
    INSERT INTO IEX_AGT_SKILL(MU_ID,AGENT_NM,EXTERNAL_ID,SKILL_NM)VALUES(3,'ROBERTS,CHRIS','ROBERT1','THIPayment_FOUNDATIONAL')
    INSERT INTO IEX_AGT_SKILL(MU_ID,AGENT_NM,EXTERNAL_ID,SKILL_NM)VALUES(3,'ROBERTS,CHRIS','ROBERT1','SPSC_FOUNDATIONAL')
    INSERT INTO IEX_AGT_SKILL(MU_ID,AGENT_NM,EXTERNAL_ID,SKILL_NM)VALUES(7,'SEW,HEATHER','SEW1','SPSC_MODERATE')
    INSERT INTO IEX_AGT_SKILL(MU_ID,AGENT_NM,EXTERNAL_ID,SKILL_NM)VALUES(7,'SEW,HEATHER','SEW1','SPSC_BOAT')
    INSERT INTO IEX_AGT_SKILL(MU_ID,AGENT_NM,EXTERNAL_ID,SKILL_NM)VALUES(4,'PRATT,MIKE','PRATT2','THIPayment_COMPLEX')
    INSERT INTO IEX_AGT_SKILL(MU_ID,AGENT_NM,EXTERNAL_ID,SKILL_NM)VALUES(4,'PRATT,MIKE','PRATT2','HELPDESK')
    INSERT INTO CFG_PERSON_SKILL_VALUES(USER_ID,SKILL_NM,SKILL_LEVEL)VALUES('ROBERT1','THIPayment',1)
    INSERT INTO CFG_PERSON_SKILL_VALUES(USER_ID,SKILL_NM,SKILL_LEVEL)VALUES('ROBERT1','SPSC',7)
    INSERT INTO CFG_PERSON_SKILL_VALUES(USER_ID,SKILL_NM,SKILL_LEVEL)VALUES('SEW1','SPSC',1)
    INSERT INTO CFG_PERSON_SKILL_VALUES(USER_ID,SKILL_NM,SKILL_LEVEL)VALUES('SEW1','SPSC_BOAT',1)
    INSERT INTO CFG_PERSON_SKILL_VALUES(USER_ID,SKILL_NM,SKILL_LEVEL)VALUES('PRATT2','SPANISH',9)
    INSERT INTO CFG_PERSON_SKILL_VALUES(USER_ID,SKILL_NM,SKILL_LEVEL)VALUES('PRATT2','HELPDESK',2)
    DESIRED OUTCOME:
    MU_ID AGENT_NM       EXTERNAL_ID    IEX_SKILL_NM                   GEN_SKILL_NM
    3     ROBERTS,CHRIS  ROBERT1           SPSC_FOUNDATIONAL
    3     ROBERTS,CHRIS  ROBERT1                                                            SPSC_MODERATE
    7     SEW,HEATHER      SEW1                     SPSC_MODERATE
    7     SEW,HEATHER      SEW1                                                                  SPSC_FOUNDATIONAL
    4     PRATT,MIKE            PRATT2                   THIPayment_COMPLEX
    4     PRATT,MIKE            PRATT2                                                              SPANISH

  • Output does not match data sheet as only 1 report was available for selecti

    Output does not match data sheet as only 1 report was available for selection in hyperion planning.Can anyone help me in resolving this issues.Its very urgent.

    You will need to provide much more detailed information before anybody can help.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • RUN LOGIC:Accounts and entities do not match data in application Ownership (BPC10.0 NW)

    Hello Experts,
    During execution of the legal consolidation package we get the following error: "Accounts and entities do not match data in application OWNERSHIP"
    We have entered the ownership and transaction data.
    Could you, please, help us to solve the problem?
    Thanks.

    Hi
    The Ownership has accounts like Percentage consolidation etc. Please check if you have selected the correct ones, marked as use in consolidation process and loaded Ownership data aganst those .
    Regards
    Surabhi

  • XL reporter  -Financial/Match Date field not in the formulae builder

    XL reporter Version:      6.80.218 (from Help/About XL reporter)
                 6.80.01.00 (from Add-on Manager Screen)
    Match date required to build ageing report but can't find this field.

    u'll be selecting a row for any expansion right?
    Do select ur row expansion i.e. highlight ur row which is having the expansion. now in the Formula Report Builder scroll down to " Transaction Row " . Click ' ... ' button to open Lookup window.
    There in the attribute field select 'Document Date -- A/R' .
    When you choose in the header ' Parameter ' tab u can see ur described parameter. double click the "fromdate" it 'll be displaying with symbol @ like @FD. now click adjacent to @FD and type :@TD   manually.
    Click OK. dont forget to click 'Apply'
    Regards,
    Dhana.

Maybe you are looking for

  • Java related error while installing 10.2.0.1 on Radhat Linux 5

    Hi , I am getting below error while running runInstaller.sh on Radhat Linux 5. Help is much appreciated. inflating: /tmp/OraInstall2009-09-30_06-23-57PM/jre/1.4.2/lib/fonts/LucidaBrightItalic.ttf inflating: /tmp/OraInstall2009-09-30_06-23-57PM/jre/1.

  • Error while converting video in iTunes

    So, I'm trying to convert a movie that was not bought on iTunes into an iPhone/iPod version (File > Create New Version > iPhone/iPod) and I get an error similar to this: Error occurred while converting the file "**Insert File Name Here**"  An unknown

  • Error -1607: Unable to Install InstallShield Scripting Run Time

    i cannot open itunes tried to delete and re-install and still wont work ...what else can i do i also tried to install by cd and nothin...iv tried turning off norton and looked for spyware

  • System Monitoring set up

    Hi All, I  am using solution manager 7.0 on linux and DB2 and want to setup system monitor on solution manager 7.0. But whn I goto DSWP->operation setup->system monitoring I cant see "set- up system monitor" button under to start confiuring it. Any i

  • Can´t find where to download Robodemo 5 from.

    I had Robodemo 5 installed on my PC but a virus crashed my hard disk. Now that I follow the link I received with my e-purchase http://global.ehelp.com/robodemo/5/full/eLearning.exe) I find out is no longer available. Any idea where I can get the file