Using exist/ not exist

Hi, can anyone help me design a query which will give me all expertise(exid) which do not have any employees associated with it, using not exist?
emp (empid, xxx..x..)
skl (skillid, empid, exid)
exp(exid, xxx,xxx)
thanks

user12258774 wrote:
hmm, what would be select 1?Does not matter. You can put anything you want. EXISTS/NOT EXISTS cares if select returns rows or it does not. It does not care how many columns or what are the values. In fact, it does not even calculate selected expressions (optimization) so you can put something like 1/0 and still it will work:
SQL> select deptno from dept d where not exists (select 1/0 from emp e where e.deptno = d.deptno)
  2  /
    DEPTNO
        40
SQL> SY.

Similar Messages

  • Using WHERE NOT EXISTS for a Fact Table Load

    I'm trying to set up a fact table load using T SQL, and I need to use WHERE NOT EXISTS. All of the fields from the fact table are listed in the WHERE NOT EXISTS clause. What I expect is that if the value of any one of the fields is different, that the whole
    record be treated as a new record, and inserted into the table. However, in my testing, when I 'force' a field value, new records are not inserted.
    The following is my query:
    declare 
    @Created_By nchar(50)
    ,@Created_Date datetime --do we need utc check?
    ,@Updated_By nchar(50)
    ,@Updated_Date datetime
    select @Created_By = system_user
    ,@Created_Date = getdate()
    ,@Updated_By = system_user
    ,@Updated_Date = getdate()
    insert fact.Appointment
    Slot_ID
    , Slot_DateTime
    , Slot_StartDateTime
    , Slot_EndDateTime
    , Slot_Duration_min
    , Slot_CreateDateTime
    , Slot_CreateDate_DateKey
    , Healthcare_System_ID
    , Healthcare_Service_ID
    , Healthcare_Supervising_Service_ID
    , Healthcare_Site_ID
    , Booked_Appt_ID
    , Appt_Notification_Submission_DateKey
    , Appt_Notification_Completion_DateKey
    , Appt_Notification_Duration
    , Appt_Notification_ID
    , Patient_ID
    , Physician_ID
    , Referral_ID
    , Specialty
    , LanguageRequested
    , Created_Date
    , Created_By
    , Updated_Date
    , Updated_By
    select distinct
    Slot.Slot_ID 
    , Slot.Slot_Start_DateTime  as Slot_DateTime --???
    , Slot.Slot_Start_DateTime
    , Slot.Slot_End_DateTime
    , datediff(mi,slot.Slot_Start_DateTime,slot.Slot_End_Datetime) as Slot_Duration_Min 
    , Slot.Created_Date as Slot_CreateDateTime
    , SlotCreateDate.Date_key as Slot_CreateDate_DateKey
    , HSite.Healthcare_System_ID
    , HSite.Healthcare_Service_ID
    , HSite.Healthcare_Service_ID as Healthcare_Supervising_Service_ID
    , HSite.Healthcare_Site_ID 
    , Ref.Booked_Appt_ID 
    , ApptSubmissionTime.Date_key as Appt_Notification_Submission_DateKey
    , ApptCompletionTime.Date_key as Appt_Notification_Completion_DateKey
    , datediff(mi,appt.SubmissionTime,appt.CompletionTime) as Appt_Notification_Duration
    , Appt.Appt_Notification_ID 
    , pat.Patient_ID 
    , 0 as Physician_ID
    , ref.Referral_ID
    , Hsrv.Specialty
    , appt.[Language] as LanguageRequested
    ,@Created_Date as Created_Date
    ,@Created_By as Created_By
    ,@Updated_Date as Updated_Date
    ,@Updated_By as Updated_By
    from dim.Healthcare_System HSys
    inner join dim.Healthcare_Service HSrv
    on HSys.Healthcare_System_ID = HSrv.HealthCare_System_ID 
    inner join dim.Healthcare_Site HSite
    on HSite.HealthCare_Service_ID = HSrv.Healthcare_Service_ID
    and HSite.HealthCare_System_ID = HSrv.HealthCare_System_ID 
    inner join dim.Referral Ref 
    on Ref.ReferralSite_ID = HSite.Site_ID
    and Ref.ReferralService_ID = HSite.Service_ID
    and Ref.ReferralSystem_ID = HSite.System_ID 
    right join (select distinct Slot_ID, Source_Slot_ID, Slot_Start_DateTime, Slot_End_DateTime, Created_Date from dim.slot)slot
    on ref.Source_Slot_ID = slot.Source_Slot_ID
    inner join dim.Appointment_Notification appt
    on appt.System_ID = HSys.System_ID
    inner join dim.Patient pat 
    on pat.Source_Patient_ID = appt.Source_Patient_ID
    inner join dim.SystemUser SysUser
    on SysUser.Healthcare_System_ID = HSys.Healthcare_System_ID
    left join dim.Calendar SlotCreateDate
    on SlotCreateDate.Full_DateTime = cast(Slot.Created_Date as smalldatetime)
    left join dim.Calendar ApptSubmissionTime
    on ApptSubmissionTime.Full_DateTime = cast(appt.SubmissionTime as smalldatetime)
    left join dim.Calendar ApptCompletionTime
    on ApptCompletionTime.Full_DateTime = cast(appt.CompletionTime as smalldatetime)
    where not exists
    select
    Slot_ID
    , Slot_DateTime
    , Slot_StartDateTime
    , Slot_EndDateTime
    , Slot_Duration_min
    , Slot_CreateDateTime
    , Slot_CreateDate_DateKey
    , Healthcare_System_ID
    , Healthcare_Service_ID
    , Healthcare_Supervising_Service_ID
    , Healthcare_Site_ID
    , Booked_Appt_ID
    , Appt_Notification_Submission_DateKey
    , Appt_Notification_Completion_DateKey
    , Appt_Notification_Duration
    , Appt_Notification_ID
    , Patient_ID
    , Physician_ID
    , Referral_ID
    , Specialty
    , LanguageRequested
    , Created_Date
    , Created_By
    , Updated_Date
    , Updated_By
    from fact.Appointment
    I don't have any issues with the initial insert, but records are not inserted on subsequent inserts when one of the WHERE NOT EXISTS field values changes.
    What am I doing wrong?
    Thank you for your help.
    cdun2

    so I set up a WHERE NOT EXIST condition as shown below. I ran the query, then updated Slot_Duration_Min to 5. Some of the Slot_Duration_Min values resolve to 15. What I expect is that when I run the query again, that the records where Slot_Duration_Min resolves
    to 15 should be inserted again, but they are not. I am using or with the conditions in the WHERE clause because if any one of the values is different, then a new record needs to be inserted:
    declare 
    @Created_By nchar(50)
    ,@Created_Date datetime
    ,@Updated_By nchar(50)
    ,@Updated_Date datetime
    select
    @Created_By = system_user
    ,@Created_Date = getdate()
    ,@Updated_By = system_user
    ,@Updated_Date = getdate()
    insert fact.Appointment
    Slot_ID
    , Slot_DateTime
    , Slot_StartDateTime
    , Slot_EndDateTime
    , Slot_Duration_min
    , Slot_CreateDateTime
    , Slot_CreateDate_DateKey
    , Healthcare_System_ID
    , Healthcare_Service_ID
    , Healthcare_Supervising_Service_ID
    , Healthcare_Site_ID
    , Booked_Appt_ID
    , Appt_Notification_Submission_DateKey
    , Appt_Notification_Completion_DateKey
    , Appt_Notification_Duration
    , Appt_Notification_ID
    , Patient_ID
    , Physician_ID
    , Referral_ID
    , Specialty
    , LanguageRequested
    , Created_Date
    , Created_By
    , Updated_Date
    , Updated_By
    select distinct
    Slot.Slot_ID 
    , Slot.Slot_Start_DateTime  as Slot_DateTime --???
    , Slot.Slot_Start_DateTime
    , Slot.Slot_End_DateTime
    , datediff(mi,slot.Slot_Start_DateTime,slot.Slot_End_Datetime) as Slot_Duration_Min 
    , Slot.Created_Date as Slot_CreateDateTime
    , SlotCreateDate.Date_key as Slot_CreateDate_DateKey
    , HSite.Healthcare_System_ID
    , HSite.Healthcare_Service_ID
    , HSite.Healthcare_Service_ID as Healthcare_Supervising_Service_ID
    , HSite.Healthcare_Site_ID 
    , Ref.Booked_Appt_ID 
    , ApptSubmissionTime.Date_key as Appt_Notification_Submission_DateKey
    , ApptCompletionTime.Date_key as Appt_Notification_Completion_DateKey
    , datediff(mi,appt.SubmissionTime,appt.CompletionTime) as Appt_Notification_Duration
    , Appt.Appt_Notification_ID 
    , pat.Patient_ID 
    , 0 as Physician_ID
    , ref.Referral_ID
    , Hsrv.Specialty
    , appt.[Language] as LanguageRequested
    ,@Created_Date as Created_Date
    ,@Created_By as Created_By
    ,@Updated_Date as Updated_Date
    ,@Updated_By as Updated_By
    from dim.Healthcare_System HSys
    inner join dim.Healthcare_Service HSrv
    on HSys.Healthcare_System_ID = HSrv.HealthCare_System_ID 
    inner join dim.Healthcare_Site HSite
    on HSite.HealthCare_Service_ID = HSrv.Healthcare_Service_ID
    and HSite.HealthCare_System_ID = HSrv.HealthCare_System_ID 
    inner join dim.Referral Ref 
    on Ref.ReferralSite_ID = HSite.Site_ID
    and Ref.ReferralService_ID = HSite.Service_ID
    and Ref.ReferralSystem_ID = HSite.System_ID 
    right join (select distinct Slot_ID, Source_Slot_ID, Slot_Start_DateTime, Slot_End_DateTime, Created_Date from dim.slot)slot
    on ref.Source_Slot_ID = slot.Source_Slot_ID
    inner join dim.Appointment_Notification appt
    on appt.System_ID = HSys.System_ID
    inner join dim.Patient pat 
    on pat.Source_Patient_ID = appt.Source_Patient_ID
    inner join dim.SystemUser SysUser
    on SysUser.Healthcare_System_ID = HSys.Healthcare_System_ID
    left join dim.Calendar SlotCreateDate
    on SlotCreateDate.Full_DateTime = cast(Slot.Created_Date as smalldatetime)
    left join dim.Calendar ApptSubmissionTime
    on ApptSubmissionTime.Full_DateTime = cast(appt.SubmissionTime as smalldatetime)
    left join dim.Calendar ApptCompletionTime
    on ApptCompletionTime.Full_DateTime = cast(appt.CompletionTime as smalldatetime)
    where not exists
    select
    Slot_ID
    , Slot_DateTime
    , Slot_StartDateTime
    , Slot_EndDateTime
    , Slot_Duration_min
    , Slot_CreateDateTime
    , Slot_CreateDate_DateKey
    , Healthcare_System_ID
    , Healthcare_Service_ID
    , Healthcare_Supervising_Service_ID
    , Healthcare_Site_ID
    , Booked_Appt_ID
    , Appt_Notification_Submission_DateKey
    , Appt_Notification_Completion_DateKey
    , Appt_Notification_Duration
    , Appt_Notification_ID
    , Patient_ID
    , Physician_ID
    , Referral_ID
    , Specialty
    , LanguageRequested
    , Created_Date
    , Created_By
    , Updated_Date
    , Updated_By
    from fact.Appointment fact
    where 
    Slot.Slot_ID  = fact.Slot_ID 
    or
    Slot.Slot_Start_DateTime   = fact.Slot_DateTime  
    or
    Slot.Slot_Start_DateTime = fact.Slot_StartDateTime
    or
    Slot.Slot_End_DateTime = fact.Slot_EndDateTime
    or
    datediff(mi,slot.Slot_Start_DateTime,slot.Slot_End_Datetime) =
    fact.Slot_Duration_min
    or
    Slot.Created_Date  = fact.Slot_CreateDateTime
    or
    SlotCreateDate.Date_key = fact.Slot_CreateDate_DateKey
    or
    HSite.Healthcare_System_ID = fact.Healthcare_System_ID
    or
    HSite.Healthcare_Service_ID = fact.Healthcare_Service_ID
    or
    HSite.Healthcare_Service_ID  =
    fact.Healthcare_Service_ID 
    or
    HSite.Healthcare_Site_ID  = fact.Healthcare_Site_ID 
    or
    Ref.Booked_Appt_ID  = fact.Booked_Appt_ID 
    or
    ApptSubmissionTime.Date_key =
    fact.Appt_Notification_Submission_DateKey
    or
    ApptCompletionTime.Date_key =
    fact.Appt_Notification_Completion_DateKey
    or 
    datediff(mi,appt.SubmissionTime,appt.CompletionTime)  = fact.Appt_Notification_Duration
    or
    Appt.Appt_Notification_ID = fact.Appt_Notification_ID 
    or
    pat.Patient_ID  =
    fact.Patient_ID 
    or
    0 = 0
    or
    ref.Referral_ID = fact.Referral_ID
    or
    Hsrv.Specialty = fact.Specialty
    or
    appt.[Language] = fact.LanguageRequested

  • SP19 Import Queue Error: domain used does not exist

    Hi,
    In order to import support package 19 (KB70019) I encountered following errors:
    Field KEY: Component type or domain used not active or does not exist
    Nametab for table /1PYXXFO/SAP_PAYSLIP_____L0001 cannot be generated
    Field KEY: Component type or domain used not active or does not exist
    Nametab for table /1PYXXFO/SAP_PAYSLIP_____L0020 cannot be generated
    The missing component types are
    /1PYXXFO/SAP_PAYSLIP_____K0001
    /1PYXXFO/SAP_PAYSLIP_____K0020
    I found out so far.
    Can anyone tell me why they are missing?
    M.

    Hi
    Check below SAP notes which is not exaclty related to your problem but can give you a brief idea how ot solve the problem:
    Note 824421 - EEW: Nametab for table ZMDM_BPH9..._SCR cannot be generated
    Note 306296 - No active nametab for <table> exists
    You can take help of ABAP guys for this using above notes--
    Hope it helps
    Thanks
    Sunny

  • No synch choice in safari. So how do I synch my bookmarks in safari to firefox when the synch icon firefox says you have to use does not exist in safari.

    no synch choice in safari. So how do I synch my bookmarks in safari to firefox when the synch icon firefox says you have to use does not exist in safari?
    I cannot set up synch with bookmarks in safari since there is no synch icon in preferences in safari.

    This is crazy. The directions on firefox keep telling you to go to links that do not exist to import bookmarks from safari.
    For example, it says;
    Firefox imports Safari settings automatically. Just go to File > Import... and select Safari. In the next window, check the boxes of what you want to import. For example, your Safari Bookmarks will appear in Firefox's Bookmarks menu as "From Safari." Whatever other bookmarks you had on your Safari Bookmarks Bar will automatically appear on your Firefox Bookmarks Bar, too.
    BUT THERE IS NO IMPORT LINK UNDER FILES ON FIREFOX!
    Then I tried to add a device. I got the code but the continue link was not on ever. I tried it over and over and it does not work.
    WHO MAKES THIS SYSTEM??? How can something that should be so simple be so impossible, and why does Firefox direct you to links that do not exist or, if they exist, do not work!
    Thanks,
    Mike Ruggeri

  • HT204053 I need to use an existing ID (email address) on a new iPhone. It tells me "choose another ID - that one is in use," with the option to "use existing ID," however, it is an endless loop, referring me only to change my password on the existing ID.

    I need to use an existing ID (email address) on a new iPhone. It tells me "choose another ID - that one is in use," with the option to "use existing ID," however, it is an endless loop, referring me only to change my password on the existing ID.
    How do I enable my new device with an existing ID - I do not need to change the password for the millionth time!
    None of the FAQs (or the Community choices below) address new devices, they are all about APPS and iCloud stuff.

    If it is an existing iCloud ID, you should be able to just go to Settings>iCloud and sign in with it.

  • Can we use EXISTS in where condition

    hi all,
    can we use EXISTS (instead of IN) in where condition of a query which is not part of a subquery ?
    for e.g:
    update gpf_vou_sm set up_amt=0 where src_cd exists ('1101','1201');
    the query works fine with the IN operator in place of EXISTS.
    anybody please help.
    thomas k prakash

    Hi:
    You can use EXISTS in where clause but not in that syntax.
    UPDATE gpf_vou_sm g
       SET up_amt = 0
    WHERE EXISTS (SELECT 1
                     FROM gpf_vou_sm
                    WHERE src_cd IN ('1101', '1201') AND id = g.id);Using IN in your case is better...
    Saad,

  • Please help to re-write this query using exists or with

    Hi please help to re-write this query using exists or with, i need to write same code for 45 day , 90 days and so on but sub query condition is same for all
    SELECT SUM (DECODE (t_one_mon_c_paid_us, 0, 0, 1)) t_two_y_m_mul_ca_
    FROM (SELECT SUM (one_mon_c_paid_us) t_one_mon_c_paid_us
    FROM (
    SELECT a.individual_id individual_id,
    CASE
    WHEN NVL
    (b.ship_dt,
    TO_DATE ('05-MAY-1955')
    ) >= SYSDATE - 45
    AND a.country_cd = 'US'
    AND b.individual_id in (
    SELECT UNIQUE c.individual_id
    FROM order c
    WHERE c.prod_cd = 'A'
    AND NVL (c.last_payment_dt,
    TO_DATE ('05-MAY-1955')
    ) >= SYSDATE - 745)
    THEN 1
    ELSE 0
    END AS one_mon_c_paid_us
    FROM items b, addr a, product d
    WHERE b.prod_id = d.prod_id
    AND d.affinity_1_cd = 'ADH'
    AND b.individual_id = a.individual_id)
    GROUP BY individual_id)
    Edited by: user4522368 on Aug 23, 2010 9:11 AM

    Please try and place \ before and after you code \Could you not remove the inline column select with the following?
    SELECT a.individual_id individual_id
         ,CASE
            when b.Ship_dt is null then
              3
            WHEN b.ship_dt >= SYSDATE - 90
              3
            WHEN b.ship_dt >= SYSDATE - 45
              2
            WHEN b.ship_dt >= SYSDATE - 30
              1
          END AS one_mon_c_paid_us
    FROM  items           b
         ,addr            a
         ,product         d
         ,order           o
    WHERE b.prod_id       = d.prod_id
    AND   d.affinity_1_cd = 'ADH'
    AND   b.individual_id = a.individual_id
    AND   b.Individual_ID = o.Individual_ID
    and   o.Prod_CD       = 'A'             
    and   NVL (o.last_payment_dt,TO_DATE ('05-MAY-1955') ) >= SYSDATE - 745
    and   a.Country_CD    = 'US'

  • Automatically name computers using existing computer name

    In my environment, I have brand new computers to be imaged.  The computer name needs to consist of the room number and the serial number.
    I am utilizing the Collection Variables within All Unknown Computers collection to define the room number.  And I am using CustomSettings.ini to automatically grab the serial number and combining that to the room number to OSDComputerName.
    That is working perfectly fine.
    My question is how to automatically use existing computer name as the name of the re-imaged computer?
    If I use the same task sequence, because the computer is no longer an unknown computer, it doesn't prompt me for the room number.  The computer name ended up containing the variable %roomnum% plus the serial number.  I do not want SCCM to prompt
    me for anything but automatically use the existing computer name.
    Please advise.

    Maybe I am missing a step.
    This is my current CustomSettings.ini file
    [Settings]
    Priority=Init, Default
    Properties=ComputerSerialNumber
    [Init]
    ComputerSerialNumber=#Left("%SerialNumber%",7)#
    [Default]
    OSDComputerName=%RoomNumber%%ComputerSerialNumber%
    OSInstall=Y
    SkipCapture=YES
    SkipAdminPassword=NO
    The variable %RoomNum% is defined in the All Unknown Computer collection and a prompt appears for me to manually enter that information before imaging the computer the first time.
    But when I reimage an existing computer, I get no prompt and because the variable is not defined, the final computer name because %RoomNumber%9999999, which is longer than 15 characters and so the task sequence fails.
    How and where in the task sequence do I define: if this is not an unknown computer, then use existing computername?
    I also notice that I can add a step called "Capture Windows Settings-Migrate Computer Name".  Is this the step that I need?  Where in the task sequence should it be added to?
    Here is a section of my task sequence. I didn't change much from the default created MDT Task Sequence.

  • Using EXISTS in SELECT

    In general,
    If I want to construct a query, such as,
    SELECT t1.fld1,t1.fld2,t1.fld3, mStr
    FROM tbl t1
    WHERE fld3 = 1
    WHERE fld* are fields in table "tbl" and mStr is dynamic and is to hold a TRUE/FALSE value.
    mStr is to be constructed using something like,
    EXISTS ( SELECT * FROM tbl t2 where t2.fld2 = t1.fld2)
    What's the correct syntax here?

    I just realized that the code above will produce duplicate rows if there is more than one child, so DISTINCT should be added. The corrected code would look like this:
    CREATE OR REPLACE PROCEDURE GetRecords
    AS
    CURSOR toplevel_cur
    IS
    SELECT DISTINCT b1.label,
    b1.target,
    b1.type,
    b1.objectid,
    DECODE (b2.parentid,
    null, 'false ',
    'true ') has_children
    FROM buttons b1, buttons b2
    WHERE b2.parentid(+) = b1.objectid
    AND b1.lvl = 0;
    BEGIN
    FOR rec IN toplevel_cur
    LOOP
    DBMS_OUTPUT.PUT_LINE (rec.label
    &#0124; &#0124; ' '
    &#0124; &#0124; rec.target
    &#0124; &#0124; ' '
    &#0124; &#0124; rec.type
    &#0124; &#0124; ' '
    &#0124; &#0124; rec.objectid
    &#0124; &#0124; ' '
    &#0124; &#0124; rec.has_children);
    END LOOP;
    END GetRecords;
    Also, if you are determined to use EXISTS, or just want to see that it produces the same results, you code use the code below, but I expect that it would run slower:
    CREATE OR REPLACE PROCEDURE GetRecords
    AS
    CURSOR toplevel_cur
    IS
    SELECT b1.label,
    b1.target,
    b1.type,
    b1.objectid,
    'true ' has_children
    FROM buttons b1
    WHERE EXISTS
    (SELECT b2.parentid
    FROM buttons b2
    WHERE b2.parentid = b1.objectid)
    AND b1.lvl = 0
    UNION
    SELECT b1.label,
    b1.target,
    b1.type,
    b1.objectid,
    'false ' has_children
    FROM buttons b1
    WHERE NOT EXISTS
    (SELECT b2.parentid
    FROM buttons b2
    WHERE b2.parentid = b1.objectid)
    AND b1.lvl = 0;
    BEGIN
    FOR rec IN toplevel_cur
    LOOP
    DBMS_OUTPUT.PUT_LINE (rec.label
    &#0124; &#0124; ' '
    &#0124; &#0124; rec.target
    &#0124; &#0124; ' '
    &#0124; &#0124; rec.type
    &#0124; &#0124; ' '
    &#0124; &#0124; rec.objectid
    &#0124; &#0124; ' '
    &#0124; &#0124; rec.has_children);
    END LOOP;
    END GetRecords;
    null

  • I want to build android application using existing desktop dimension fla files. so for this I am resizing existing desktop dimension fla files to mobile dimension files but during resizing some files are resizing properly but most of the files the content

    problem definition:
    To build android application using existing desktop dimension fla fies , I am resizing that files to mobile dimension and publishing with air fo android 16  . In this process some fla's are not resizing properly I mean the content is not matching with stage
                      In one post I saw that by copying frames in movie clip we can adjust with stage . I did this and made an application but the swf's which are following the movieclip resized swf are going out of stage
    development tool : adobe flash professsional cc
    extension : air for android 16
    original file dimension: 800 * 600 px
    new dimension required is : 2650 * 1600 px ( to get full screen view)
                                           anyone please suggest me to solve this problem
    when I resized using copy frames in movie clip the output swf is coming with white screen . If I played with package it coming properly but the files which are following this are going out of stage
    Thanks&regards
    K.Niranjan

    problem definition:
    To build android application using existing desktop dimension fla fies , I am resizing that files to mobile dimension and publishing with air fo android 16  . In this process some fla's are not resizing properly I mean the content is not matching with stage
                      In one post I saw that by copying frames in movie clip we can adjust with stage . I did this and made an application but the swf's which are following the movieclip resized swf are going out of stage
    development tool : adobe flash professsional cc
    extension : air for android 16
    original file dimension: 800 * 600 px
    new dimension required is : 2650 * 1600 px ( to get full screen view)
                                           anyone please suggest me to solve this problem
    when I resized using copy frames in movie clip the output swf is coming with white screen . If I played with package it coming properly but the files which are following this are going out of stage
    Thanks&regards
    K.Niranjan

  • SAP Cloud SDK : Default Check in Marketing Lead for Field "Use Existing Account"

    Hi Experts,
    I have requirement to enhance the standard business object Marketing Lead screen. In that screen i need to make default check on "Use Existing Account" checkbox when user click on New Marketing Lead or QC option.
    I have tried using Application studio but the field "Use Existing Account" not exist in cloud repository its on Front-end UI screen.
    How i can make default value check to this checkbox in UI designer for standard screen
    Or
    How i can make default value check to this checkbox using ABSL code.
    Please refer the screen as shown below.
    Regards,
    Mithun

    Mithun,
    Could you please check Fine tune options available for Leads ?
    Under Involved Parties there is an option "Forbid Manual Changes". For Account Party Role if you select that it will not allow user to enter new account information.
    Fine -Tune -> Leads - > Involved Parties -> Account
    - Shrikant

  • Lollipop 5.0.2 - ICE - Use existing contacts - Contact picture bug???

    Possible bug!
    Contacts -> ICE - In Case of Emergency -> Use existing contacts
    Contact images are cut off.
    Spoiler (Highlight to read)

    I have not noticed this before, I have the same localization problem..
    Not so bad if its only wen adding ICE contact. I'm glad is not in the main contact app..

  • Reinstall DB and ASM using existing RAW devices in RAC

    Hi,
    We have two Database servers in Cluster environment DB1 and DB2 using CX300(SAN) as Storage device.Recently we had upgraded the OS kernel on DB1 from RHEL 3 to RHEL 4 and DB2 is still running on RHEL 3. Due to some application problems we wanted the DB1 to be rollbacked to RHEL 3
    DB1-has ASM1 instance and DB2 has ASM2 instance running.Similary SID1 and SID2 on both of them.
    Since we want to roll back to RHEL 3 it is a clean install on DB1. So my problem is I had never done this kind of reinstallation of DB and ASM using existing raw devices.
    Can Someone sent me out some instructions and steps on how to do the reinstall without disturbing RAC,DB2 and Data on RAW/CX300(SAN) device.
    I am basically a system admin not a complete Oracle DBA.I will be grateful for your help.
    Thanks,
    Shiva

    It means, before proceeding a proper database backup must be taken, then it has to be started from scratch. RHEL3 is certified with 10gR1 and 10gR2, you should be aware of the patchsets available for the oracle version.
    I suggest you to read the Clusterware and RDBMS installation guides:
    Oracle® Database Release Notes
    10g Release 2 (10.2) for Linux x86
    B15659-03
    Oracle® Database Oracle Clusterware and Oracle Real Application Clusters Installation Guide
    10g Release 2 (10.2) for Linux
    Part Number B14203-08
    Installing Oracle RAC 10g Release 2 on Linux x86
    ~ Madrid

  • OEM Grid control 10.2.0.1 installation using existing database 10.2.0.3

    Hi,
    I am planning to install oem grid control 10.2.0.1 using existing database 10.2.0.3 for storing repository on HP_UX 64 bit PARISC.
    Can it be possible, If not whats the reason and what issues it may arise.
    If it possibel can anyone explain me the correct steps and is it compulsory to take full backup(we cant take ful backup bcoz space issues)

    Yes, you must download and install the 10.2.0.1 version and then patch it up to the 10.2.0.4 version.
    http://www.oracle.com/technology/obe/obe10gem/install/index.html
    The above link shows you the install routine when using a new database, the steps for the existing database are only slightly different, all you need are the connection details for that existing database and you should be ok.
    As for taking full backups of the Grid Control repository, I know many choose not to, space is always a big concern, but this depends on how critical your repository is to you. If you need it for the auditors, well then I'd suggest acquiring some more hard disks to up your space.

  • Call transformation: tt:cond using="exist..." doesn't work a second time?

    Hello,
    unfortunately I did not find a solution in the internet. So I'll try to get an answer here.
    I  created a simple transformation and want it to work with two similar internal tables. These tables contain one different column with different names and types.
    <tt:loop .... name ="line">
         <tt:cond using="exist($line.columnname1)">
        </tt:cond>
        <tt:cond using="exist($line.columnname2)">
        </tt:cond>
    </tt:loop>
    During deserialization time the second <tt:cond does not recognize that columnname2 exist. If I write something like
    <tag><tt:value ref="$line.columnname3" /></tag>
    beetween these two tt:cond groups columnname2 is found afterwards.
    I know that I can add an addiional parameter describing the type of the table.
    But my question is whether I did something wrong or whether there is an other solution without using any additional information.

    I tried it your way and got error.
    I added a close and did not get the error and second attempt.
    Did you try closisng?
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Setup was unable to use existing system partition because it does now contain the requiered free space.

    I try to install it, but i select my free (fresh formated) partition with 35GB free space and i see:
    Setup was unable to use existing system partition because it does now contain the required free space.
    if i select partition with partition that does not contain the required i see
    "Windows cannot be installed to Disk 0 Partition 1. (show details)"
    so what is it? what can i test?
    My Disk has 250GB, my partitions:
    C: 8MB - Boot (7MB Free) - FAT
    D: 37,5GB - WINXP (27,9GB Free space) - NTFS
    E: 35,3GB - New (35,2GB Free) - NTFS - i want to install on it
    F: 160GB - Data (6GB Free)  - ntfs

    kolorafa_ said:
    I try to install it, but i select my free (fresh formated) partition with 35GB free space and i see:
    Setup was unable to use existing system partition because it does now contain the required free space.
    if i select partition with partition that does not contain the required i see
    "Windows cannot be installed to Disk 0 Partition 1. (show details)"
    so what is it? what can i test?
    My Disk has 250GB, my partitions:
    C: 8MB - Boot (7MB Free) - FAT
    D: 37,5GB - WINXP (27,9GB Free space) - NTFS
    E: 35,3GB - New (35,2GB Free) - NTFS - i want to install on it
    F: 160GB - Data (6GB Free)  - ntfs
    Is this 8MB "Boot" partition (formatted as FAT???) something you created when you partitioned this disk for the Windows XP installation, or is this an 8MB OEM partition that you've somehow assigned drive letter C: to?
    I wouldn't be surprised at all that your error message is being generated because thsi "BOOT" partition, labelled as drive C:, is only 8MB in size, and you can be absolutely positive that an 8MB partition is going to generate this error: "Setup was unable to use existing system partition because it does not contain the required free space."
    The correct answer really depends on whether that drive C: is the boot (sic) (the proper terminology is to call it the system partition) partition for the Windows XP installation. If it is, then you're going to have some repair work to do on your Windows XP installation first, so that you can free up that 8MB partition.
    In any event, I'm fairly certain that the solution is going to require the removal of that 8MB partition, as you've suggested in your most recent post.
    Lawrence Garvin, M.S., MCITP(x2), MCTS(x5), MCP(x7), MCBMSP
    Principal/CTO, Onsite Technology Solutions, Houston, Texas
    Microsoft MVP - Software Distribution (2005-2009)

Maybe you are looking for