Need to find invalid coverage period

Hi Gurus
I have the following data:
Creation of Table
DROP TABLE cal_rules;
DROP TABLE cal_rules_dtl;
CREATE TABLE cal_rules
rule_id NUMBER(10),
effective_date DATE,
termination_date DATE);
CREATE TABLE cal_rules_dtl
rule_id NUMBER(10),
as_of_date DATE);
Insertion in table
INSERT INTO cal_rules
(SELECT 100,to_date('01-JAN-2013') effective_date,to_date('31-DEC-2013') termination_date FROM dual
UNION ALL
SELECT 200,to_date('01-JAN-2013') effective_date,to_date('31-DEC-2013') FROM dual
UNION ALL
SELECT 300,to_date('01-JAN-2013') effective_date,NULL FROM dual
UNION ALL
SELECT 400,to_date('01-JUN-2013') effective_date,to_date('31-DEC-2013') termination_date FROM dual
UNION ALL
SELECT 500,to_date('01-JUN-2013') effective_date,NULL termination_date FROM dual
UNION ALL
SELECT 600,to_date('01-JUN-2013') effective_date,to_date('31-DEC-2013') termination_date FROM dual
INSERT INTO cal_rules_dtl
(SELECT 100, to_date('02-JAN-2013') as_of_date FROM DUAL --GAP --IT SHOULD START WITH 01-JAN-2013
UNION ALL
SELECT 200, to_date('01-JAN-2013') as_of_date  FROM DUAL
UNION ALL
SELECT 200, to_date('05-JAN-2013') as_of_date  FROM DUAL
UNION ALL
SELECT 200, to_date('01-JAN-2014') as_of_date  FROM DUAL --AS_OF_dATE IS AFTER CAL_RULES TERMINATION_DATE(31-DEC-2013)
UNION ALL
SELECT 300, to_date('31-DEC-2012') as_of_date  FROM DUAL --AS_OF_DATE IS BEFORE CAL_RULES EFFECTIVE_DATE
UNION ALL
SELECT 400, to_date('01-JUN-2013') as_of_date  FROM DUAL
UNION ALL
SELECT 400, to_date('31-AUG-2013') as_of_date  FROM DUAL
UNION ALL
SELECT 500, to_date('01-JUN-2013') as_of_date  FROM DUAL
UNION ALL
SELECT  500, to_date('01-JUL-2013') as_of_date  FROM DUAL
UNION ALL
SELECT 500, to_date('01-SEP-2013') as_of_date  FROM DUAL
UNION ALL
SELECT 500, to_date('01-OCT-2013') as_of_date  FROM DUAL
UNION ALL
SELECT 500, to_date('01-OCT-2013') as_of_date  FROM DUAL
UNION ALL
SELECT 600, to_date('10-JUN-2013') as_of_date  FROM DUAL
UNION ALL
SELECT 600, to_date('01-JUN-2013') as_of_date  FROM DUAL
COMMIT;
Required Output
Rule_id           Effective_date          Termination_date
100                    01-JAN-13                     31-DEC-13     -- Gap because in table cal_rules_dtl as_of_date against this rule id is 02-jan-2013
200                    01-JAN-13                     31-DEC-13     -- as_of_date against rule id 200 is greater than cal_rules.temination_date
300                     01-JAN-13                    null                 -- as_of_date against rule id 30 is less than cal_rules.effective_date
Need to report data by using the following conditions:
If any As_of_data less than effective_date (see rule_id 300)
If any As_of_data greater than termination_date (see rule_id 200)
if there is a gap between as_of_date and effective_date (see rule_id 100)
Please guide me and let me know if you have any question. Thanks

I think it is nor correct because there can be row , for example
SELECT 100, to_date('05-JAN-2013') as_of_date FROM DUAL --GAP --IT SHOULD START WITH 01-JAN-2013
in your case RuleId with 100 will not be in output for condition where d.as_of_date - effective_date = 1
I think OP wants this :
select distinct q.rule_id, q.effective_date, q.termination_date from (
SELECT c.as_of_date, t.*,
       min(c.as_of_date) over (partition by c.rule_id order by c.as_of_date range between unbounded preceding and  current row),
       case when (c.as_of_date != t.effective_date and
                  t.effective_date  != min(c.as_of_date) over (partition by c.rule_id order by c.as_of_date range between unbounded preceding and  current row))
             or not (min(c.as_of_date) over (partition by c.rule_id) between t.effective_date and t.termination_date)
             or not (max(c.as_of_date) over (partition by c.rule_id) between t.effective_date and t.termination_date)
                 then -1
       end myRule
FROM cal_rules t
join cal_rules_dtl c
on c.rule_id = t.rule_id
)q
where myRule = -1
Ramin Hashimzade

Similar Messages

  • Need to find test data with payments include earning from past periods

    I am new to Oracle Payroll and need to find test cases which payments include earning from past periods.
    I have an R12.1 Vision environment but cannot run Payroll due to issue with Vertex, but I do have front-end and database access.
    Wonder any Reports/ Forms I can use to locate sample data with earning from past periods?
    Thanks!

    Hi,
    You can use oracle standard form to query old processed payroll for your desired pay periods.
    Navigation is Your HRMS responsibility >View >Payroll Process Results.
    In this you need to choose payroll name,from date,to date and click find.
    for e.g. in your vision instance you can query with payroll as "Vision Monthly" from "12 2008 Calendar Month" to will be "10 2013 Calendar Month" and find the result.
    choose any of the record and view result by further click on Assignment Process button than next click on SOE Report.
    Regards,
    VISHAL DANGI
    Edited by: VISHAL DANGI on Jun 19, 2012 12:50 AM

  • Need to find out gap in data

    Hi All
    I have the following records:
    --Drop Table
    drop table agreement;
    drop table GRP_INFO;
    --Create table
    create table agreement
    Agreement_Id Number(5),
    Coverage_Effective_Date Date,
    COVERAGE_termination_date date
    Create Table GRP_INFO
    Agreement_Id Number(5),
    Grp_Id Number(5),
    Effective_Date Date,
    TERMINATION_DATE Date
    --Insertion
    Insert Into Agreement
    Select 100,'01JAN-2013','31-DEC-2013'
    From Dual;
    Insert Into Agreement
    Select 200,'01JAN-2013','31-DEC-2013'
    From Dual;
    Insert Into Agreement
    Select 300,'01JAN-2013','31-DEC-2013'
    From Dual;
    Insert Into Agreement
    Select 400,'01JAN-2013','31-DEC-2013'
    From Dual;
    Insert Into Grp_Info
    Select 100,1,'01-JAN-2013','31-MAR-2013'
    From Dual
    UNION ALL
    Select 100,2,'01-APR-2013','02-APR-2013'
    From Dual
    UNION ALL
    Select 100,3,'03-APR-2013','15-APR-2013'
    From Dual
    UNION ALL
    Select 100,4,'03-APR-2013','15-APR-2013'
    From Dual
    UNION ALL
    Select 100,5,'01-JUN-2013','31-DEC-2013'
    From Dual
    Union All
    Select 200,6,'01-JAN-2013','02-APR-2013'
    From Dual
    Union All
    Select 200,7,'03-APR-2013','15-APR-2013'
    From Dual
    Union All
    Select 200,8,'03-APR-2013','15-APR-2013'
    From Dual
    Union All
    Select 200,9,'01-JUN-2013','30-NOV-2013'
    From Dual
    Union All
    Select 300,10,'01-JAN-2013','15-APR-2013'
    From Dual
    Union All
    Select 300,11,'16-APR-2013','31-DEC-2013'
    From Dual
    Union All
    Select 400,12,'02-JAN-2013','31-DEC-2013'
    From Dual;
    COMMIT;
    --Query on agreement table
    Select * from Agreement;
    --Query Result
    agreement_id                    coverage_effective_date                     coverage_termination_date
    100                                         01-JAN-13                                                   31-DEC-13
    200                                         01-JAN-13                                                   31-DEC-13
    300                                         01-JAN-13                                                   31-DEC-13
    400                                         01-JAN-13                                                   31-DEC-13
    --Query on grp_info table
    agreement_id                  grp_id       effective_date          termination_date
    100                                              1                     01-JAN-13                       31-MAR-13
    100                                              2                     01-APR-13                       02-APR-13
    100                                              3                     03-APR-13                       15-APR-13
    100                                              4                     03-APR-13                       15-APR-13
    100                                              5                     01-JUN-13                        31-DEC-13
    200                                              6                     01-JAN-13                        02-APR-13
    200                                              7                     03-APR-13                        15-APR-13
    200                                              8                     03-APR-13                        15-APR-13
    200                                              9                     01-JUN-13                         30-NOV-13
    300                                              10                   01-JAN-13                         15-APR-13
    300                                              11                   16-APR-13                         31-DEC-13
    400                                              12                   02-JAN-13                          31-DEC-13
    --Result
    agreement_id
    100
    200
    400
    --Logic for the above result
    Each agreement_id have multiple grp_id and all grp_id or atleast one should cover all period agreement_id for example:
    - Agreement_id 100 has coverage effective date is 01-Jan-2013 and coverage_termination_date is 31-Dec-2013 and if you look into all record against agreement_id 100 then you can find that the period from 16-Apr-2013 till 31-May-2013 are missing so I need this agreement_id.
    - Agreement_id 200 has coverage effective date is 01-Jan-2013 and coverage_termination_date is 31-Dec-2013 and if you look into all record against agreement_id 200 then you can find that the period from 01-DEC-2013 till 31-DEC-2013 are missing so I need this agreement_id.
    - Agreement_id 300 has coverage effective date is 01-Jan-2013 and coverage_termination_date is 31-Dec-2013 and if you look into all record against agreement_id 300 then you can find that no period is missing so I don't need this agreement_id.
    - Agreement_id 400 has coverage effective date is 01-Jan-2013 and coverage_termination_date is 31-Dec-2013 and if you look into all record against agreement_id 300 then you can find that the period from 01-JAN-2013 till 01-JAN-2013 is missing so I need this agreement_id.
    Please let me know if you have any questions related to my scenario and I really appreciate if someone provide me solution for this issue.
    Regards
    Shumail

    Hi,
    Here's one way:
    WITH got_gap  AS
        SELECT agreement_id, effective_date, termination_date
        ,      CASE
                   WHEN  effective_date >
                         1 + MAX (termination_date) OVER ( PARTITION BY  agreement_id
                                                           ORDER BY      effective_date
                                                           ROWS BETWEEN  UNBOUNDED PRECEDING
                                                           AND           1         PRECEDING
                   THEN  1
               END  AS gap
        FROM    grp_info
    SELECT    g.agreement_id
    FROM      got_gap g
    JOIN      agreement a  ON  a.agreement_id = g.agreement_id
    GROUP BY  g.agreement_id
    HAVING    COUNT (g.gap)             > 0
    OR        MIN (g.effective_date)    > MIN (a.coverage_effective_date)
    OR        MAX (g.termination_date)  < MAX (a.coverage_termination_date)
    ORDER BY  g.agreement_id
    Output:
    AGREEMENT_ID
             100
             200
             400
    This makes no assumptions about effective_date and termination_date, except that effective_date <= termination_date on each row.  It's okay if different rows for the same agreement_id overlap, or if one encompasses another.
    Don't try to insert VARCHAR2 values (such as '01-JAN-2013') into DATE columns.  Use TO_DATE, or DATE literals.

  • I need to find out how much wifi data my apps are using. I have a very limited amount of wifi data, and I am exceeding my monthly allowance. Apparently, even apps I think are not open are sending/receiving data through the wifi and using up my allowance.

    I need to find out how much wifi data my apps are using. I am on a very limited amount of WiFi data each month, which I am regularly exceeding. I have been told to work out which of my apps is using the data. Also, I think I have closed an app by double clicking the home button, then swiping the app up - is this the way to close it, or will it still be sending/receiving data?

    Go into your Settings : General : and turn off background refresh for your apps.  In Settings : Mail  turn Fetch new data to OFF and Load Remote Images to OFF.  This will mean that Mail will only check for messages when you actually use it, and all your advertising junk mail won't have all the images in it.
    Turn off push notifications every chance you get.
    Make sure you are actually quitting apps:  to quit apps press the Home button twice and you should see a bunch of smaller screen images for every open app.  To quit the app swipe from the screen image (not the icon) upward off the top of the iPad.  You can swipe left and right to see more open apps, but there must be no left-right movement on the screen when you swipe upward to close the app.
    Turn off your internet connection when you do not need it.  The easiest way to do this is to swipe up from the bottom of you screen to get the control centre, and then touch the airplane to turn on airplane mode.  You can repeat this sequence to turn it back on again when you need it.  Most especially turn airplane mode on whenever you are sleeping your iPad for long periods.  This will save battery life too.  OR actually turn your iPad off - which means holding the power key down for several seconds until the red swipe bar appears, and then swipe to turn it off.  If you go this route, note that it will take longer to turn on then it takes to wake from sleep.

  • Need to find out wether aggregates are using or not

    Hi ,
    In My BW System Aggregates are build on two cubes say Cube 'X' and Cube 'Y'.
    In Sap Early watch Report , they have suggested to De-activate or remove aggregates which are not used .
    1)I need to find out which aggregates are using and which are not using from a period of time (take one month).
    2)I need to find out which queries are using which aggregates.
    Please let me know how to find the above information.

    Hi Lakshmi,
       Welcome to SDN.
    Please go through these links.
    You can find out efficient/inefficient aggregates from BW statistics.
    Performance Tuning for Queries with Aggregates
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/cbd2d390-0201-0010-8eab-a8a9269a23c2
    http://www.asug.com/client_files/Calendar/Upload/ASUG%205-mar-2004%20BW%20Performance%20PDF.pdf#search=%22BW%20statistics%20pdf%22
    Business Intelligence Performance Tuning [original link is broken]
    Hope it Helps
    Srini

  • Need to find rows with overlapping dates

    I have a table that has FirstName, LastName, EnrollmentFrom and EnrollmentTo
    I need to find all names where they have overlapping dates.  For example this is invalid:
    Name       EnrollmentFrom     EnrollmentTo
    John Doe   1/1/2014              1/1/2015
    John Doe   2/5/2014              2/5/2014
    This would be valid:
    John Doe   1/1/2014              1/1/2015
    John Doe   1/2/2015              1/1/2016
    This is just an example as the dates could be anything in one of the other enrollments.
    Any help is greatly appreciated.

    Here is what I have based on the last post but it also returns ones that are valid:
    SELECT ffev.PatientLastName, ffev.PatientFirstName, ffev.EnrollmentFrom, ffev.EnrollmentTo
    FROM PAPPortal..FeedFileEnrollmentValues ffev
    OUTER APPLY (select top 1 b.* from PAPPortal..FeedFileEnrollmentValues b where ffev.PatientID = b.PatientID and b.EnrollmentFrom < ffev.EnrollmentTo and b.EnrollmentTo > ffev.EnrollmentFrom and ffev.PatientID <> b.PatientID) overlap
    WHERE ffev.EnrollmentTo IS NOT NULL
    GROUP BY ffev.PatientLastName, ffev.PatientFirstName, ffev.EnrollmentFrom, ffev.EnrollmentTo
    ORDER BY ffev.PatientLastName, ffev.PatientFirstName, ffev.EnrollmentFrom, ffev.EnrollmentTo
    Name              EnrollmentFrom         EnrollmentTo
    John Doe            2013-02-08            2014-02-07
    John Doe            2014-08-15            2015-08-15
    hi
    it seems you have given (= and <>) which is always return false(no records)
     where ffev.PatientID = b.PatientID and b.EnrollmentFrom < ffev.EnrollmentTo and b.EnrollmentTo > ffev.EnrollmentFrom and
           ffev.PatientID <> b.PatientID
    Note : i have given
    where a.ID=b.ID and b.DateFrom<a.DateTo and b.DateTo>a.DateFrom and
    a.rno<>b.rno
    If you don't have any unique column to differentiate you  can create rno with CTE and use like below
    DECLARE @Data AS TABLE
    -- rno int identity(1,1),
    ID int,
    DateFrom datetime,
    DateTo datetime
    INSERT INTO @Data VALUES (1, '1/1/2014', '1/1/2015')
    INSERT INTO @Data VALUES (1, '2/5/2014', '2/5/2014')
    INSERT INTO @Data VALUES (2, '1/1/2014', '12/31/2014')
    INSERT INTO @Data VALUES (2, '1/2/2015', '12/31/2016')
    ;WITH CTE1 as
    SELECT ROW_NUMBER() over(PARTITION by ID order by DateFrom,DateTo ) rno,* FROM @Data
    SELECT a.*, overlap.rno,overlap.DateFrom,overlap.DateTo
    FROM CTE1 a
    OUTER APPLY (select top 1 b.* from CTE1 b where a.ID=b.ID
    and b.DateFrom<a.DateTo
    and b.DateTo>a.DateFrom and a.rno<>b.rno) overlapwhere overlap.ID is not null
    Thanks
    Saravana Kumar C

  • Need to find out the queries which did not executed in 2014

    Hi All,
    I need to find out the queries which start from YY  and did not executed in 2014, earlier we used to find out by looking into the technical content cube 0TCT_C02 but now its giving dump as number of queries increases. I tried to find out using table RSZCOMPDIR but not able to trace it exactly. Please suggest some alternative solution to find out the queries which did not execute in 2014 so that we can delete it.
    Thanks,
    Asim.

    Hi,
    RSDDSTAT_OLAP : This is the table which contains query execution details
    CALDAY field in that table gives you query execution date
    OBJNAM gives the query name
    As you said RSZCOMPDIR gives list of all queries. doing a lookup between these tables will identify the queris which are not executed in particular period.
    -Sriram

  • HT1941 I need to find my Apple Care warranty number although the warranty has expired - to prove ownership of macbook air

    I need to find my Apple Care warranty number although the warranty has expired - to prove ownership of macbook air?

    You really aren't trying very hard are you?
    Apple Warranty Information
    Review your support and service coverage
    Warranty Information and Support and Service Coverage
    Read the warranty

  • Need to find a calendar to schedule multiple assignments with multiple tasks set on specific days for multiple people

    There may be no such animal as what I am searching for, but I thought I'd give it a try.
    What I need to do is find a calendar app that allows me to have individual calendars for staff members that I can place a several-days-long assignment and have those people access remotely on an iPad or iPhone (autosync).
    I also want to be able to have tasks set on specific days within that assignment that have alerts/reminders for each stage of the assignment.
    Being able to custom colour each individual assignment (not just the person's own calndar) is also necessary, as these asignments overlap and need to be easily distinguishable at a glance. Each assignment needs to be its own entity and not affect any furture or previous entries, even if I choose the same colour.
    It needs to be in a month by month view and be able to be something each person can subscribe to and sync up with for changes on a daily basis. It does nothave to be a calendar like in the screen shot below, it could be a linear calendar that has days across the top and assignments down the left side.....
    Here is a screen shot of a rudimentary excel spreadsheet I have been using. It is awkward and becoming unmanageable as the number of assigments increases and more staff are being added on. And I must send a new spreadsheet out every time I make a change or add an assignment, which is several times a week.
    I suspect I may be asking for the world, but if anyone knows a direction I can go in to start a search, I'd be grateful. I haven't had success of my own so far and need to find something soon.
    iCal doesn't work for me due to the fact I can only colour code the calendar itself and not the event, plus not being able to have multiple tasks within one event. And the qty of assignments I'd have would see most getting lost, eliminating my abilty to see every staff member's assignmanet at the same time.
    Thank you in advance if you have a suggestion and if not, thanks for looking at my dilemma! 

    check with T-code TPM44
    zashok

  • Need to find professional income tax preparation software, capable of handling 1065, 1120, 1041, 990, etc. preferably PPR compatible with Mac's OS

    Need to find pro tax prep software compatible w/Macs. My software maker, Drake, does not have Mac version. I've checked Pro-Series (no) and maybe 1 other. I don't want to spend Lacert kind of $$ (neither do the majority of longtime Lacert users apparently). Obviously, no Turbo Tax, Tax Cut or any other commercial, deduction & crdit missing commercial software. They would ned to have the ability to 1) convert a few years of Drake to their program, 2) Covert files created on PC to files that 10 OS could use. Also, would like them to have reasonable PPR program, free efile, free unlimited states, capable of 1040, 1065, 1120, & (S), 1041, 990. Built in tax knowledge base. I'd be eternally indebted to you if you found sometghing as intuitive and value oriented as Drake but for OS 10. BEGINNING TO THINK APPLE bends over backwords for artistic tools but not so much business tools. Too bad, I've had a few tax returns that have bordered on art.
    I will likely need to add Parallels & Windows 7 OS, preferably 64-bit to this Macbook Air. If so, I do not think I have sufficient memory or storage so would like to download & install onto NFTS (sp?) formatted 1TB HD. I do not know if hard drives, USB hubs, Optical drives etc. that work w/ Windows (as long as you choose correctly btwn SATA & IDE) will work on MacBook Air. Help greatly appreciated. So if you happen to know any pro tax prep software ompatible w/ OS 10 and/or, you could give me some info on what characteristics peripherals would need to have to use on MacBook (I'm hoping that most are inrterchanheable but my hoping ain't gonna make it so. OR if you know any great deals on Parallel-I saw some promos but not from reliable places. If I could find on Bradsdeals or Coupon Cabin I'd feel safe. I've seen  an Apple ad for a bundle of software w/ some other decent parts (Snagit) . I'd love to find a promo that applies to the bundle and download all 9programs for $9.99 (right). Too many questions, sorry for any protocol violations.  As you might have noticed, a keyboard is high on my agenda- I hate laptop keyboards though Apple's seems better than most. I also hate using scroll pads. Much rather have mouse. Real challenge is to find Bluetooth OS 10 keybrd that has numeric keypad. I wonder if the financial dept. @ apple uses keyboards w/ no numeric keypad, saw one that started at $99. I spent all the $$ I have on a MacBook, none leftover for overpriced peripherals, esp. w/ 2 kidfs going off to college in Sept.
    Thanks for allowing me to whine & ramble. Feel free to call me on any breach of protocol as I am 1st time poster.
    Thanks for your time and consideration, I HOPE I'M CORRECT IN MY GUT FEELING THAT I've joined the forces for good by switching. Too many PCs ruined by malware.
    Bill S

    Bill I've also run into a very similar problem, I own many Macs but I've had a PC for Tax Stuff. My PC broke and I refused to buy another one so I began to search for an alternative. Window's Emulators have given me so much trouble with my Tax Software.
    However, I've since found out that Intuit has a cloud based tax solution that works with a MAC because it's all done online. Which means you'll need a reliable internet connection whenever you want to prepare a client's return.
    It's suppose to support all of the major returns (1040, 1041, 1065, 1120, 1120S and 990)
    I've yet to use this solution, but it's the best thing that I've been able to find so far. This is what I'll be using this upcoming Tax Season.
    So I figured that it would be worth mentioning. Good Luck!
    http://accountants.intuit.com/tax/online/?s_cid=SEM&s_ev1=SEM_TOE_Brand_Lower-ke yword_proline_tax_online

  • I am working in Adobe Acrobat 9 Pro and just created a pdf form from a MS Word document. I need to find out how to have a date field in my form which will update automatically. Can some one out there help me?

    I am working in Adobe Acrobat 9 Pro and just created a pdf form from a MS Word document. I need to find out how to have a date field in my form which will update automatically.

    Update automatically under which circumstances, exactly?

  • Help needed in Finding Download location for Sun One Portal 7

    Hi,
    help needed for finding download location for Sun ONE Portal 7. I tried to find in Oracle Download page ,
    http://www.oracle.com/us/sun/sun-products-map-075562.html, But unable to find.
    Please share the link for download location.
    I am totally new in Sun ONE Portal.
    Thanks,
    Edited by: 945439 on Oct 5, 2012 3:41 AM

    try edelivery.oracle.com under sun products.

  • Need to find out how to lock a point in a path that will not allow the rest of the path to rotate or move around it

    Hello,
    I am having some trouble with using shape layers and paths to create a solid, flat 'hair' effect in a cartoon animation.
    I have used a semicircle shape layer as the hair on the head itself and then a path with a stroke of the same width as the semi circle to be the long part of the hair.
    Unfortunately when I move/rotate the bottom point in the path it causes gaps to appear further up where the stroke is rotating around the point at which the stroke is supposed to "connect" to the semi circle.
    I have included a couple of screenshots of me rotating the hair opposite ways so you can see.
    - imgur: the simple image sharer
    - imgur: the simple image sharer
    I need to find out if there is a way to lock the top point in place where it joins the semi circle blond hair which will stop this part from moving at all, even rotating around the point.
    But the bottom needs to move freely and obviously the part between the two points will move fairly naturally.
    If you can imagine how a girl with long hair has her hair attached to her head, it does not move at all, but the bottom moves freely. It needs to be like this.
    If you can provide any assistance it would be greatly appreciated.
    Thanks!

    That is perfect thank you so much!
    Can't believe I didn't think of that but you da real MVP!

  • I need to find an Unibody 2.66GHz core i7 logic board  for my MacBook Pro 15"

    I need to find an Unibody 2.66GHz core i7 logic board  for my MacBook Pro 15". Where can I find it?

    have you searched the internet? perhaps ifixit.com might have one.

  • I need help finding a workable web program that is not CSS based.  I tried IWeb and it just won't work for me.  Way too limiting.  I've been using a 12 year old copy of Macromedia Dreamweaver, but the new Dreamweaver is CSS

    Been building web pages for nearly 20 years, starting with GoLive.  Went to Dreamweaver about 12 years ago, the Macromedia version.  Tried going to iWeb when it came with a new Mac, but found it way too limiting with it's CSS template base.   Unknowlingly, I then bought a new copy of Dreamweaver.   Ooops, Adobe had bought Macromedia and Dreamweaver, too, is now CSS based, which for my money makes it useless to anyone who likes simplicity.   Now I find that even iWeb has been discontinued.  I was told yesterday that Apple doesn't have a web program any more.   At 12 years old, I just don't think it's practical to try to load my old Macromedia Dreamweaver into the new Mountain Lion (I'm getting a new Mac), though it is running, barely, in Snow Leopard.
    I need to find a web builder program that will permit simple construction of educational pages, nothing fancy, nothing artistic, just create a page, give it a color, type or drag in text, insert a table, insert pix in the table blocks, add text under the pix... done!    I should note that I am not looking to build traffic.  I teach simple things for free and people who want to learn those things (antique sewing machine repair, quilting, building longbows) find me.
    I've downloaded trial versions of half a dozen or so programs and looked at maybe 20 more, but all are either CSS based and drive me insane with requirments for constantly making rules and template models, and/or require that you base your web presence in their server.   Also, many will not work with pages built in other programs.  I maintian a volume of over 1000 web pages, many requiring regular updating, and they have been with the same server for more than 15 years.  I'm not about to change.
    So, anybody know a simple, old fashioned web builder that's happpy on a Mac platform?
    Captain Dick

    Although not supported anymore, iWeb does still function using Mountain Lion...
    http://www.iwebformusicians.com/iWeb/mountain-lion.html
    ... and you can purchase it from Amazon.
    Start with a blank page using the Black or WHite template.
    All modern websites use CSS and there are thousands of free templates to be had if you want to use a code entry style application. You will need to go this route if you want to create a site that is viewable on mobile devices although you can create an iPhone version using iWeb...
    http://www.iwebformusicians.com/iWeb/Mobile-iWeb.html
    Search this forum for numerous topics about iWeb alternatives.

Maybe you are looking for

  • 500   Internal Server Error in Identity Management in Portal

    Hi all, We have just upgraded our portal server to SP13 (2004s). Post upgrade, I am getting an error in Identity Management. When I search for a user, and try viewing his/her details, I get the following error. 500   Internal Server Error Failed to p

  • How to create a new BARCODE PREFIX   (for SAPScripts)

    In SE73 transaction, we can create a NEW printer barcode. For this we require 'barcode prefix' .There are some SAP standard barcode prefixes(for eg.SBP01)...but I want to create a new barcode prefix.. Please let know how to create a new BARCODE PREFI

  • Problem with locales in jbuilderX

    hi there, i don't know if this is a the best place to search for this but i have a problem. When running my app in jbuilder X it returns me the locale en_US, not the correct one, it should be nl_BE, now i made a executable jar , and ran it and it giv

  • Webi throwing error MDDataSetBW.GetCellData

    Hi, I am creating a webi based on Bex Query. In Bex Query, I have 6 characteristics , 4 Key figures , all 6 char in Default values block too and 1 charcteristic (Plant) in Characterisic restriction block which is authorizing variable. 1) When i am cr

  • Preview problem after close PREMIERE

    Hi everybody. I´m using premiere pro cc 2014. It´s working perfectly when I create my project the first time, import my clips, audios and everything. I can work with no problems, but, after close the program, when I open again the last project to con