Case satement assistance

present case statement:
Thank
CASE WHEN MEPE.CSPI_ID IN ('MD03','MD04','MD05','MD06','MD07','MD08','MD09','MD10') THEN MEPE.CSPI_ID
ELSE 'N/A'
END AS LIS_CD,
Intending case statement.How di I go about it?
Please update the LIS copays to the following amounts:
MD07 & MD10 = $2.65 & $6.60
MD09 = $1.20 & $3.60
MD03, MD04, MD05, MD06, & MD08 are the same for 2015.

better explanation of what I want.
INSERT INTO frdmrpt.PremeraHMOPlusConfirmedEnrollment
(BATCH_ID,
MEMBER_NAME,
MEMBER_ADDRESS,
CITY_STATE_ZIP,
LETTER_DT,
EFFECTIVE_DT,
SALUTATION,
PLAN_SELECTED,
MEMBER_ID,
PRODUCT_ID,
MEME_CK,
GRGR_ID,
DOCUMENT_ID,
PREMIUM_AMT,
COPAY_AMT,
PBP,
DEDUCTIBLE,
LIS_CD,----INTERESTED COLUMN
LEP_AMT,
UNCOV_MONTHS,
COMB_PREM,
GROUP_NAME,
CLASS_PLAN_ID,
LETTER_CD,
RUN_DT)
SELECT DISTINCT
@p_iBATCH_ID,
RTRIM(MEMB.MEME_FIRST_NAME) + ' ' + RTRIM(MEMB.MEME_MID_INIT) + ' ' + RTRIM(MEMB.MEME_LAST_NAME) AS MEMBER_NAME,
RTRIM(SBAD.SBAD_ADDR1) + ' ' + RTRIM(SBAD.SBAD_ADDR2) + ' ' + RTRIM(SBAD.SBAD_ADDR3) AS MEMBER_ADDRESS,
CITY_STATE_ZIP = RTRIM(SBAD.SBAD_CITY) + ', ' + RTRIM(SBAD.SBAD_STATE) + ' ' +
RTRIM(CASE WHEN LEN(RTRIM(SBAD.SBAD_ZIP)) = 5 THEN SBAD.SBAD_ZIP
ELSE SUBSTRING(SBAD.SBAD_ZIP,1,5) + '-' + SUBSTRING(SBAD.SBAD_ZIP,6,4)
END),
MEEL.MEEL_INSQ_DT AS LETTER_DT,
MEEL.MEEL_EFF_DT AS EFFECTIVE_DT,
CASE MEMB.MEME_SEX
WHEN 'M' THEN 'MR.'
WHEN 'F' THEN 'MS.'
ELSE ''
END as SALUTATION,
'Premera Blue Cross Medicare Advantage Plus (HMO)' AS PLAN_SELECTED,
RTRIM(SBSB.SBSB_ID) + '-' + RIGHT('0' + RTRIM(CONVERT(CHAR(2),MEMB.MEME_SFX)), 2) AS MEMBER_ID,
MEPE.PDPD_ID AS PRODUCT_ID,
MEEL.MEME_CK,
GRGR.GRGR_ID,
'Premera Blue Cross Medicare Advantage Plus (HMO)' AS DOCUMENT_ID,
SUM(PDRA_PREM_1) AS PREMIUM_AMT,
MCSA.CoPay AS LIS_CO_PAY,
MEMD.MEMD_MCTR_PBP AS PBP,
MCSA.DEDUCTIBLE AS LIS_DEDCTBL,
CASE WHEN MEPE.CSPI_ID IN ('MD03','MD04','MD05','MD06','MD07','MD08','MD09','MD10') THEN MEPE.CSPI_ID
ELSE 'N/A'
END AS LIS_CD, ---INTERESTED CASE STAEMENT TO B MODIFIED WITH d below REQUIREMENT
--(MD07 & MD10 = $2.65 & $6.60 (Are they respect values i.e.( MD07 =$2.65 & md10= $ 6.50)
--MD09 = $1.20 & $3.60----has the 2 values
-- MD03, MD04, MD05, MD06, & MD08 are the same for 2015.)
As you can see is a n insert into statement.
Assistance needed ASAP. Thanks.

Similar Messages

  • Case satement in where Clause..

    Hi I haev issue facing in procedure there are 4 param as in put some time 2 parameter will have value and some time it is null and and one parameter has multiple value . and this value i am passing to cursor and cursor should return value even though value is null so using case satement in where clasue but it is throwing error.
    here syntax
    SELECT strategicinitiativeid, projectid, -- ltm, ltmdeptid,
    YEAR,
    SUM (netexpensebudget) netexpensebudget,
    SUM (devsoftcapbudget + purchasesoftcapbudget
    + hardwarecapbudget
    ) AS totalcapbudget,
    SUM (netexpensebudgetinprog) netexpensebudgetinprog,
    SUM ( devsoftcapbudgetinprog
    + purchasesoftcapbudgetinprog
    + hardwarecapbudgetinprog
    ) AS totalcapinprogbudget
    FROM vpendingprojectsaligntosi
    WHERE CASE
    WHEN v_projectid IS NOT NULL
    THEN projectid IN (v_projectid)
    END and case v_SIID is not null
    then strategicinitiativeid=v_SIID end
    AND budgetstepid IN (v_budgetstepid)
    GROUP BY strategicinitiativeid, YEAR, projectid;

    user13301356 wrote:
    Hi I haev issue facing in procedure there are 4 param as in put some time 2 parameter will have value and some time it is null and and one parameter has multiple value . and this value i am passing to cursor and cursor should return value even though value is null so using case satement in where clasue but it is throwing error.
    here syntax
    SELECT strategicinitiativeid, projectid, -- ltm, ltmdeptid,
    YEAR,
    SUM (netexpensebudget) netexpensebudget,
    SUM (devsoftcapbudget + purchasesoftcapbudget
    + hardwarecapbudget
    ) AS totalcapbudget,
    SUM (netexpensebudgetinprog) netexpensebudgetinprog,
    SUM ( devsoftcapbudgetinprog
    + purchasesoftcapbudgetinprog
    + hardwarecapbudgetinprog
    ) AS totalcapinprogbudget
    FROM vpendingprojectsaligntosi
    WHERE CASE
    WHEN v_projectid IS NOT NULL
    THEN projectid IN (v_projectid)
    END and case v_SIID is not null
    then strategicinitiativeid=v_SIID end
    AND budgetstepid IN (v_budgetstepid)
    GROUP BY strategicinitiativeid, YEAR, projectid;may be --untested
    SELECT strategicinitiativeid,
           projectid,
           YEAR,
           SUM(netexpensebudget) netexpensebudget,
           SUM(devsoftcapbudget + purchasesoftcapbudget + hardwarecapbudget) AS totalcapbudget,
           SUM(netexpensebudgetinprog) netexpensebudgetinprog,
           SUM(devsoftcapbudgetinprog + purchasesoftcapbudgetinprog +
               hardwarecapbudgetinprog) AS totalcapinprogbudget
      FROM vpendingprojectsaligntosi
    WHERE projectid in nvl(v_projectid, projectid)
       AND strategicinitiativeid in nvl(v_SIID, strategicinitiativeid)
       AND budgetstepid in (v_budgetstepid)
    GROUP BY strategicinitiativeid, YEAR, projectid

  • Case statement assistance

    I am using a case statement in the following script, so that I can return two seperate columns in my item master query, one for Frozen Cost and one for Actual Cost. I am having trouble with the else close. If the records for frozen are other then frozen, I do not want to have them returned as part of the records and same thing for Actual, if they are not actual I do not want them returned. Any help is appreciated. I am running on 10.2.0.4.0 for the database and for the app layer we are at 11.5.10.2.
    SELECT MSI.INVENTORY_ITEM_ID INVENTORY_ITEM_ID
    , msi.segment1 ITEM
    , MSI.DESCRIPTION DESCRIPTION
    , msi.inventory_item_status_code INVENTORY_ITEM_STATUS_CODE
    , msi.item_type ITEM_TYPE
    , max (mirb.revision) REVISION
    , MSI.PRIMARY_UOM_CODE PRIMARY_UOM_CODE
    , msi.shippable_item_flag SHIPPABLE_ITEM_FLAG
    , NVL (CIC.ORGANIZATION_ID, '0') ORGANIZATION_ID
    ,CASE when cct.cost_type in 'Frozen' then cic.item_cost else 0 end as FROZEN_COST
    ,CASE when cct.cost_type in 'ACTUAL' then cic.item_cost else 0 end as ACTUAL
    , cct.cost_type COST_TYPE
    FROM CST_ITEM_COSTS CIC
    , CST_COST_TYPES CCT
    , MTL_SYSTEM_ITEMS MSI
    , MTL_DEFAULT_CATEGORY_SETS MDC
    , MFG_LOOKUPS LU1
    , mtl_item_revisions_b mirb
    WHERE CCT.COST_TYPE_ID(+) = CIC.COST_TYPE_ID
    AND CIC.INVENTORY_ITEM_ID(+) = MSI.INVENTORY_ITEM_ID
    AND CIC.ORGANIZATION_ID (+) = MSI.ORGANIZATION_ID
    AND MSI.COSTING_ENABLED_FLAG = 'Y'
    AND msi.inventory_item_id = mirb.inventory_item_id
    AND msi.organization_id = mirb.organization_id
    AND LU1.LOOKUP_CODE(+) = MSI.PLANNING_MAKE_BUY_CODE
    /* the outside join below, speeds up query, not sure why */
    AND LU1.LOOKUP_TYPE(+) = 'MTL_PLANNING_MAKE_BUY'
    and cct.cost_type = 'Frozen'
    AND msi.organization_id = 4
    group by CIC.ROWID, MSI.INVENTORY_ITEM_ID, MSI.SEGMENT1, MSI.DESCRIPTION, MSI.INVENTORY_ITEM_STATUS_CODE,
    MSI.PRIMARY_UOM_CODE, MSI.SHIPPABLE_ITEM_FLAG, CIC.ORGANIZATION_ID, MSI.ITEM_TYPE, CIC.ITEM_COST, CIC.MATERIAL_COST, cct.cost_type

    Hi,
    The CASE expressions look good to me, except that you need parentheses after the keyword IN. (See 'Frozen' below.)
    If you're only comparing to one item, as you are here, you can use = instead of IN. (See 'ACTUAL' below.)
    ,      CASE
                 WHEN  cct.cost_type IN ('Frozen' )
              THEN  cic.item_cost
              ELSE  0
           END     AS frozen_cost
    ,      CASE
                 WHEN  cct.cost_type = 'ACTUAL'
              THEN  cic.item_cos
              ELSE  0
           END       AS actualRemember to capitalize things inside quotes carefully. The code above is looking for 'Frozen' with only one capital letter, the 'F', but 'ACTUAL' with all capital letters. Is that what you want?
    It looks like you're doing a GROUP BY in this query. If so, you'll have to copy these CASE expresssions into the GROUP BY clause, or use them only inside an aggregate function. For example:
    ,      SUM ( CASE
                        WHEN  cct.cost_type IN ('Frozen' )
                     THEN  cic.item_cost
                     ELSE  0
                 END
               )         AS frozen_cost
    ,      SUM ( CASE
                        WHEN  cct.cost_type = 'ACTUAL'
                     THEN  cic.item_cos
                     ELSE  0
                 END
               )           AS actualSince your WHERE clause includes the condition
    cct.cost_type = 'Frozen'I would expect the 1st CASE expression to include all rows, and the 2nd to include no rows. If that's the situation, why have CASE expressions at all?
    I hope that answers your question.
    If not, post a simplified query, involviong only these CASE exoressions and the GROUP BY.
    Post CREATE TABLE and INSERT statements for a little sample data (include only the columns and tables in the simplified query). Also post the results you want from that sample data.
    Edited by: Frank Kulash on Aug 12, 2010 5:10 PM
    Corrected bad nesting: "END" should be before ")".

  • How to migrate when Migration Assistant isn't helping

    I'm helping a friend move from her old MacBook (OS X 10.4.11) to a new MacBook Air (OS X 10.7.1). Her home directory on the MacBook is Filevault-protected.
    The first thing that I tried was using Migration Assistant to migrate via wi-fi. However, the two machines just stall at the "searching for other computers" stage. Neither computer is ever able to see the other (I had a similar experience migrating a Snow Leopard MacBook Pro to a newer machine, making me think that wireless migration just doesn't work).
    I tried on a non-Apple wireless network, and on a network using an Airport Express. I also tried having the Air create an ad hoc network, and connecting the MacBook to that. In all cases, Migration Assistant on the Air was not able to detect the Macbook and just stayed at "searching for other computers" indefinitely.
    The Air doesn't have a Firewire port, so a Firewire connection is not an option. I believe that it's not possible to connect two machines using USB and have Migration Assistant work over the USB connection.
    I don't have the USB-to-Ethernet adaptor, so Ethernet isn't an option. The MacBook is running OS X 10.4.11, so making a TimeMachine backup is not an option.
    I used Carbon Copy Cloner to create a disk image of the MacBook's disk on an external drive, in the hope that Migration Assistant could import from that. However, Migration Assistant on the Air won't migrate user data from a Filevault-protected home directory.
    It looks to me as if the best route is for me to remove Filevault protection from her home directory, image the disk to the external drive, and then migrate from that image.
    However, my understanding is that disabling Filevault protection requires free space on the hard drive equal to the size of the protected user home directory (at least temporarily). There simply isn't that much space available.
    Is there a way that I can duplicate the user's home directory to the external drive, removing FileVault encryption as I go? Or can I clone the user's home to the external drive, and then strip FileVault from the copy there?
    Any suggestions or tips would be gratefully received.

    Also, I want to add that in the accounts section I DO NOT see two accounts there. I have been reading the forums and some suggested that after using MA it creates another user profile and all the files should be there. However, I do not see another profile. Also, I think it is strange that it took less than 1 minute to transfer my files! Help!

  • Count Distinct Wtih CASE Statement - Does not follow aggregation path

    All,
    I have a fact table, a day aggregate and a month aggregate. I have a time hierarchy and the month aggregate is set to the month level, the day aggregate is set to the day level within the time hierarchy.
    When using any measures and a field from my time dimension .. the appropriate aggregate is chosen, ie month & activity count .. month aggregate is used. Day & activity count .. day aggregate is used.
    However - when I use the count distinct aggregate rule .. the request always uses the lowest common denominator. The way I have found to get this to work is to use a logical table source override in the aggregation tab. Once I do this .. it does use the aggregates correctly.
    A few questions
    1. Is this the correct way to use aggregate navigation for the count distinct aggregation rule (using the source override option)? If yes, why is this necessary for count distinct .. what is special about it?
    2. The main problem I have now is that I need to create a simple count measure that has a CASE statement in it. The only way I see to do this is to select the Based on Dimensions checkbox which then allows me to add a CASE statement into my count distinct clause. But now the aggregation issue comes back into play and I can't do the logical table source override when the based on dimensions checkbox is checked .. so I am now stuck .. any help is appreciated.
    K

    Ok - I found a workaround (and maybe the preferred solution for my particular issue), which is - Using a CASE Statement with a COUNT DISTINCT aggregation and still havine AGGREGATE AWARENESS
    To get all three of the requirements above to work I had to do the following:
    - Create the COUNT DISTINCT as normal (counting on a USERID physically mapped column in my case)
    - Now I need to map my fact and aggregates to this column. This is where I got the case statement to work. Instead of trying to put the case statement inside of the Aggregate definition by using the checkbox 'Base on Dimension' (which didnt allow for aggregate awareness for some reason) .. I instead specified the case statement in the Column Mapping section of the Fact and Aggregate tables.
    - Once all the LTS's (facts and aggregates) are mapped .. you still have to define the Logical Table Source overrides in the aggregate tab of the count distinct definition. Add in all the fact and aggregates.
    Now the measure will use my month aggregate when i specify month, the day aggregate when i specify day, etc..
    If you are just trying to use a Count Distinct (no CASE satement needed) with Aggregate Awareness, you just need to use the Logical Table Source override on the aggregate tab.
    There is still a funky issue when using the COUNT aggregate type. As long as you dont map multiple logical table sources to the COUNT column it works fine and as expected. But, if you try to add in multiple sources and aggregate awareness it randomly starts SUMMING everything .. very weird. The blog in this thread says to check the 'Based on Dimension' checkbox to fix the problem but that did not work for me. Still not sure what to do on this one .. but its not currently causing me a problem so I will ignore for now ;)
    Thanks for all the help
    K

  • Migration Assistant stalls every time, even with different backups

    I recently had the hard drive replaced on my 2009 intel iMac.  I have tried using Migration Assistant to transfer user settings and applications from both the USB backup drive of the iMac as well as my Macbook Pro but in both cases, Migration Assistant stalls at either 1hr 47min ot 1hr 53min and doesn't progress past that point.  I've let it continue for hours but it just doens't go any further than that. 
    I assumed it was coming to a corrupt file but now I'm not so sure as it does the same thing when I try migrating from my Macbook Pro, which is a completely differn't system.
    Any suggestions?  Next, I'm going to try just transferring applications to see if I have any luck with that.
    Any way to transfer applications manually?  I have so many, it would take days to re-download and install everything.

    It may have completed the migration. Have you logged out and then looked for a new user account to see if your migration was completed?

  • Activating Backup Assistant

    I am trying to activate the backup assistant.  Have the app on my iPhone 4s.  rec'd an access code from Verizon but every time I y=use it I get an error message.  Have been trying to initiate a live chat with service rep but all roads lead to nowhere.  The Verizon home page is not user friendly at all.  Anyone have a solution???

    Hello sled,
         Help is just a post away my friend. It will be my pleasure to assist in getting Backup Assistant activated for you. May I ask are you able to access the web on your iPhone 4S without any issues? Also, have you used Backup Assistant before, whether on this device or a previous device? I would suggest removing the app, reset the network settings, reboot the device, re-download the app, and attempt the setup again. For steps on how to reset network settings, here's a link for you.
    http://vz.to/19OMzKU
    Let me know the results, just in case more assistance is needed.
    Thank you...
    ArnettH_VZW
    Follow us on Twitter @VZWSupport

  • Auto import, how to prevent LR from jumping to new pictures

    Hi,
    I would like to use my Nikon D700 together with the WT-4 to send pictures automatically to my laptop on events.
    The pictures appear on the laptop's hard drive on a folder that is watched by LR's auto import feature.
    Then my assistant would be at the laptop printing these pictures for customers to buy.
    However, while testing this I cannot seem to disable Lightroom always jumping back to the latest imported pictures.
    This is very annoying, because my assistant has to display the pictures to the customers, so she would be showing some pictures to a customer, and suddenly when I snap a new shot, the laptop jumps to the new picture and my assistant has to go hunting for that customers pictures again...
    Is there some way to disable this?
    Or am I taking the wrong approach to this?
    I could off course disable the auto-import but in that case my assistant would have to go to the import screen every once in a while, which is also not ideal.
    Thanks for any help!

    I don't know a way to disable this.

  • Export and deemed exp

    I have joind a project in the middle and I am at complete loss to understand the export and deemed export scenario. I have gone through the help files but I am still not clear as to when i should include duties in the sales order and where i should not...........how to get the duties directly in the exc invoice .............. which registerss should i look in to for updation and how is rg23a ,c and pla relevant in this case.
    plss assist in clearing out these things .i am sure a lot of fellow consultants could benefit from a detailed description for the same.
    Regards
    MAddy
    Edited by: Maddy on Jun 12, 2008 11:07 AM
    Edited by: Maddy on Jun 12, 2008 11:20 AM

    Hi
    Meddy,
    Both are having the same excise duty effect. In both cases the duty will be not paid to excise authorities and both will be shown on invoice undeer forgone head. In both invoices you have to show all the duties which are applicable as tariff head. For gorgone duty case u have to prepare ARE1/ ARE3.
    In case of export, material will be despatch to outside Inida       ( foreign customer ) and in case of deemed export u can sell the good wihtin the india aginst CT2 and CT3.
    So in both the cases u need not to debit any of yr RG23C,A or PLA this will come in picture only when u sold duty paid goods to any customers.
    Hope this will help you.
    Thx.

  • Fetch data from two tables and insert into one table

    I have similar to the following data in two tables (@Plant, @PlantDirector) and need to consolidate into one table (@PlantNew) as follows.
    DECLARE @Plant TABLE (PlantID INT, PlantName VARCHAR(100))
    INSERT INTO @Plant (PlantID, PlantName) VALUES (1, 'Name One'),(2, 'Name Two'),(3, 'Name Three'),(4, 'Name Four'),(5, 'Name Five'),(6, 'Name Six')
    Director data for the Plants exist in the following table. Assistant value 1 means Assistant Director and 0 means Director. 
    Data exists only for subset of plants and a Plant may have one or both roles.
    DECLARE @PlantDirector TABLE (PlantID INT, PlantDirectorID INT, Assistant bit)
    INSERT INTO @PlantDirector (PlantID, PlantDirectorID, Assistant) VALUES (2, 111, 1),(2, 222, 0),(4, 333, 0),(6,444,1)
    The above data needs to be inserted into one table (@PlantNew) as follows: 
    PlantID in @Plant table is IDENTITY value and needs to be inserted as-is into this table.
    PlantDirExists will get a value of 1 if at least one record exists in @PlantDirector table for a PlantID. PlantAssistantDirID and PlantDirID should be set to the corresponding PlantDirID or NULL appropriately depending on the data.
    DECLARE @PlantNew TABLE (PlantID INT, PlantName VARCHAR(100), PlantDirExists bit, PlantAssistantDirID INT, PlantDirID INT)
    INSERT INTO @PlantNew (PlantID, PlantName, PlantDirExists, PlantAssistantDirID, PlantDirID)
    VALUES (1, 'Name One', 0, NULL, NULL),(2, 'Name Two', 1, 111, 222),(3, 'Name Three', 0, NULL, NULL),(4, 'Name Four', 1, NULL, 333),(5, 'Name Five', 0, NULL, NULL),(6, 'Name Six',1, 444, NULL)
    How do I achieve the above using SQL ? Thanks.

    like this
    INSERT @PlantNew  (PlantID, PlantName, PlantDirExists, PlantAssistantDirID, PlantDirID) 
    SELECT p.PlantID,
    p.PlantName,
    CASE WHEN pd.PlantID IS NULL THEN 0 ELSE 1 END,
    PlantAssistantDirID,
    PlantDirID
    FROM @Plant p
    LEFT JOIN (SELECT PlantID,
    MAX(CASE WHEN Assistant = 1 THEN PlantDirectorID END) AS PlantAssistantDirID,
    MAX(CASE WHEN Assistant = 0 THEN PlantDirectorID END) AS PlantDirID
    @PlantDirector
    GROUP BY PlantID)pd
    ON pd.PlantID = p.PlantID
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs
    You're missing a FROM
    insert into @PlantNew
    SELECT p.PlantID,
    p.PlantName,
    CASE WHEN pd.PlantID IS NULL THEN 0 ELSE 1 END,
    PlantAssistantDirID,
    PlantDirID
    FROM @Plant p
    LEFT JOIN (SELECT PlantID,
    MAX(CASE WHEN Assistant = 1 THEN PlantDirectorID END) AS PlantAssistantDirID,
    MAX(CASE WHEN Assistant = 0 THEN PlantDirectorID END) AS PlantDirID
    from @PlantDirector
    GROUP BY PlantID)pd
    ON pd.PlantID = p.PlantID

  • Do latest macbook pro's still have the heat issue? (7/10/06)

    wondering if the latest revisions of macbook pro still have the heat issue.. i heard the issue of the fan going off/on causing that 'whine' is gone and now the last thing holding me back from making the 'switch' is this heat dealy.

    My week 12 MBP has never had heat issues. It's fast, stable and comfortable to use.
    The case bottom of my 5+ year old TiBook gets hotter than the MBP. I've used a tilt stand for PowerBooks for years, both to reduce heat and because I prefer the typing angle.
    People are not getting burned. Really. If I were to charge a battery at the same time I'm running processes that load up both CPUs, the metal strip behind the function keys would get quite warm. It might be uncomfortable to touch (but doesn't have to be touched to use the computer). But it will not result in a physical burn, unless one loves discomfort enough to keep touching it for a protracted period. Even then, not a serious burn. A cup of coffee or tea is far more dangerous than a MacBook Pro.
    I've encountered several hot-running MBPs owned by people that I know in my local area. In each case, the problem was caused by software that was loading up the processors at full blast. One case was a runaway process that was initiated by software that was incompatible with the Intel processors. Another was caused by a stalled startup item -- again, software incompatible with the Intel CPU. In both cases, Migration Assistant had been used and the applications had not been updated for Intel compatibility.
    And still another case was a large collection of Widgets, some of which are badly written and load up the processors. Deactivating all but 3 or 4 Widgets made that computer run cool and quickly.
    Complaints about heat on this forum dropped dramatically after the last firmware update.
    If you want the most powerful notebook computer Apple has ever designed, get a MacBook Pro. I'm delighted with mine. No fix necessary, thank you.

  • Need to know what is CWB

    pls i am new to the following items i have seen on the oracle web site and i am very curious to know what are the functionality below are in real business case:
    pls assist me
    Compensation Workbench
    Create and Maintain Plans Definition, Types & Years
    Explain Plan Enrollment Requirements
    Define and Use Standard Rates
    Define Life Events
    Define Eligibility Profiles
    Explain Total Compensation Statement
    Use Compensation Workbench for Managers & Administrators
    Use Profile Options for CWB
    Perform Budgeting
    Manage Promotion and Rating

    user12011641 wrote:
    No i havn't gone through these documents...
    Pl read thru the docs referenced above.
    But in general i want to know why there is need for CWB setup can't we just define the elements and links and make the payment of bonus using payroll.? what is the importance of having CWB? pls i am still a beginner in CWB pardon me if i have said something wrong.
    CWB is an optional tool that eases the use of compensation management, especially for companies with large numbers of employees in multiple countries. You can define elements/links etc without using CWB.
    pls advise.
    thank you!HTH
    Srini

  • Synchronization of deletions failed [80040115-514-80040115-130]

    Today we received a bunch ( thousands of email informing us that the are some synchronization issues.
    In the folder "synchronization problems" we constantly receive the following message. Do you have a solution for this?
    10:33:26 Synchronisations of some removeals failed
    10:33:26                                [80040115-514-80040115-130]
    10:33:26                                No connection with Microsoft Exchange
    10:33:26                                Information archieve
    10:33:26                                Click on URL below for more information on this matter:
    Hope you can help me.
    Other posts haven't provided an answer for this so I am opening a fresh post and hopefully someone can assist me.
    The environment we are talking about is Exchange 2010 SP1 with Outlook 2010/2007 clients.
    We had an operational environment till today.
    I can still send and receive email but as soons as I receive an email I am receiving the above displayed message.
    Andre

    Hi ,
    I don’t know if this is a bug, because I can't found the same error.  I only found the same error code, but the error is a little different. And it explains the warning can be ignored, maybe you can install outlook sp1 to test, someone said sp1
    have removed this error code.
    So did you install the latest update on outlook 2007 ?
    You can also contact Microsoft Customer Support Service (CSS) and submit a case for assistance. The case will be free for charge if it is confirmed to be a bug.  
    Sync Issues folder for Outlook 2010 contains warnings such as "Synchronization of some deletions failed”
    http://support.microsoft.com/kb/2606009
    Wendy Liu
    TechNet Community Support

  • Capture from Two Tables and Apply in one Table

    Hi All,
    Is it possible to capture from two tables (master and child table) and apply in one table?
    For example,
    1. DEPT and EMP tables in source database with relation
    DEPT table structure is like DEPT_ID, DEPT_NAME, LOC_NAME
    EMP table structure is like EMP_ID, EMP_NAME, EMP_DOJ, EMP_SAL, DEPT_ID
    2. EMP_DEPT_STAGING in destination database
    EMP_DEPT_STAGING table structure is like EMP_ID, EMP_NAME, EMP_DOJ, EMP_SAL, DEPT_ID. DEPT_NAME, LOC_NAME
    if there is any update in DEPT table, EMP_DEPT_STAGING should get populated with Department and its employee details. Similarly, if there is any update in EMP table EMP_DEPT_STAGING table should get populated with Employee details and along with department detail.
    Is it possible to accomplish this? If yes, could you please provide me some examples?
    Thanks & Regards
    Thiyagu
    Edited by: mt**** on Sep 4, 2011 11:22 PM

    like this
    INSERT @PlantNew  (PlantID, PlantName, PlantDirExists, PlantAssistantDirID, PlantDirID) 
    SELECT p.PlantID,
    p.PlantName,
    CASE WHEN pd.PlantID IS NULL THEN 0 ELSE 1 END,
    PlantAssistantDirID,
    PlantDirID
    FROM @Plant p
    LEFT JOIN (SELECT PlantID,
    MAX(CASE WHEN Assistant = 1 THEN PlantDirectorID END) AS PlantAssistantDirID,
    MAX(CASE WHEN Assistant = 0 THEN PlantDirectorID END) AS PlantDirID
    @PlantDirector
    GROUP BY PlantID)pd
    ON pd.PlantID = p.PlantID
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs
    You're missing a FROM
    insert into @PlantNew
    SELECT p.PlantID,
    p.PlantName,
    CASE WHEN pd.PlantID IS NULL THEN 0 ELSE 1 END,
    PlantAssistantDirID,
    PlantDirID
    FROM @Plant p
    LEFT JOIN (SELECT PlantID,
    MAX(CASE WHEN Assistant = 1 THEN PlantDirectorID END) AS PlantAssistantDirID,
    MAX(CASE WHEN Assistant = 0 THEN PlantDirectorID END) AS PlantDirID
    from @PlantDirector
    GROUP BY PlantID)pd
    ON pd.PlantID = p.PlantID

  • SIM card not in??

    So I've been having this problem lately where my phone goes hot in my pocket and it drains the battery quickly, also my SD card which holds onto anything you download or take pictures in the phone, it says its not in there, but I checked and the card was perfectly in there. So I went to one of the verizon stores and the guy tells me to master reset it, so I did. So far the battery problems been solved but still the SD card still stands. So all my music, ringtones, pictures, and videos are gone.
    I went into Settings->SD Card & Phone Storage, there it said Total space & Available space were unavailable and the mount SD card button was grey and wouldn't work
    can you guys please help me fix my SD card into my phone

    Hello xa1life,
    Memory cards can be a little tricky sometimes. Sometimes they are unable to be read by the device and other times they are temperamental. Is this the memory card that came with the device? Also, may I ask what size is the memory card? This is to ensure that the card is compatible with the device. Also, please verify that there isn't any evidence of liquid or physical damage on the card. From the look of the pictures that you attached, the device is a Samsung Droid Charge. JerryF gave an excellent suggestion about trying another memory card in the device to test the functionality. Have you done this yet? If so then what were your findings?
    Another troubleshooting step to try is to put the memory card into the computer to verify if the computer can read the memory card. If the computer recognizes the memory card then I would recommend archiving your information and media before trying the next step. Also, I would reformat the memory card in the computer then reinsert it into the phone and see if you get the same error message as before. Once you have done so, please post your findings just in case additional assistance is needed.
    Thank you...
    ArnettH_VZW
    Follow us on Twitter @vzwsupport

Maybe you are looking for

  • HOW TO REFUND A DOWN PAYMENT

    What is the transaction code for returning down payments to customers. Do we do a credit memo. What do we mean by clear customer down payment. Is it applying the down payment towards an invoice or does it mean refidn customer down payment. I need to

  • Query for Identifying column changes

    Hi Guys, Need help in getting a query for my scenario. I have 2 table Table A and Table B. Both have same columns and data type. Table A: Id  PersonId    Name      Code      Date 1    1000           John         M         2014-07-28 2    1001        

  • Some very, VERY basic questions from a newbie.

    Hi all. After an intense week of trial and error I'd came to the point where to create and apply a template to my project. Only to see that everything screwed up big time. So, I now belive I better start over and get it right from the beginning. Ther

  • Daily & Monthly Backlog Reports and Printing program

    •     <b>Labeling program for Deliveries</b>: This program picks all deliveries created/updated on the current day, validates them by checking whether they have the required labeling information. If the program finds that the labeling information is

  • F4 Search Help in ABAP

    Hello Experts, I have a parameter which takes a personnel number. I want to implement a F4 help for this parameter. It should retrieve personnel number based on employee full name from table PA0001. When F4 help box is showed up, user would enter nam