Next weeks ISO weeks and date

Hello I have a few tables on 9i with weekly partitions.
Currently the data are loaded in partition P2010W45, where W45 is the ISO Week
e.g.
PARTITION_NAME HIGH_VALUE
P2009W43 TO_DATE(' 2009-11-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN')
P2009W44 TO_DATE(' 2009-11-08 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN')
P2009W45 TO_DATE(' 2009-11-15 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN')
I need a script to run every MONDAY to create the query to create the partitions every week.
So the next partition will be create with the below:
SELECT 'ALTER TABLE '||'TEST_TABLE'||' ADD PARTITION '||' P'||
TO_CHAR(TRUNC(sysdate+7), 'IYYY')||'W'||
TO_CHAR(TRUNC(sysdate+7), 'IW')||' VALUES LESS THAN(TO_DATE('''||
TO_CHAR(sysdate + 14, 'YYYYMMDD')||''',''yyyymmdd''));'
FROM DUAL;
Please suggest if the above will produce a correct output, especially when we will enter the new year,
or suggest a better way to do it.
Thank you in advance

You can verify your logic with a simple test script:
with t as (
select trunc(sysdate+(7*level),'IW') as dt from dual connect by level <= 100
select dt, to_char(dt,'Dy'), 
'ALTER TABLE '||'TEST_TABLE'||' ADD PARTITION '||' P'||
TO_CHAR(TRUNC(dt+7), 'IYYY')||'W'||
TO_CHAR(TRUNC(dt+7), 'IW')||' VALUES LESS THAN(TO_DATE('''||
TO_CHAR(dt + 14, 'YYYYMMDD')||''',''yyyymmdd''));' as alter_command
from t order by dt
;Run it out for several years if necessary and check the results.
Regards,
Bob

Similar Messages

  • Getting icon on the top bar next to the time and date

    When I sync my external Hard-drive an icon used to appear (time machine icon maybe?) on the top bar next to the airport, sound, date, time... and now its gone. How do I get that icon to reappear there? The icon would allow me to enter the time-machine.

    Time Machine System Prefs->check the "Show Time Machine status in menu bar."
    Note that most of Apple's status menu items are enabled this way.

  • How to format a date to display the ISO week number in BI Publisher ?

    Hi there,
    I need to format a date to display the ISO week number in BI Publisher.
    I've tried the following <?format-date:NEED_BY_DATE;'WW'?>, but it returns a week number (1-53) where week 1 starts on the first day of the year and continues to the seventh day of the year, which is not what I want.
    I want the ISO week number (1-52 or 1-53), the one implemented by the 'IW' format mask of the Oracle PL/SQL TO_CHAR() function for example.
    I've tried using 'IW' format mask, but it is not recognised by BI Publisher.
    Also, as I'm working on an RTF template, I've tried 'IW' as MS Word date format, but it is not recognised by MS Word :-((
    Any help would be much appreciated,
    Regards - Hugues

    Hi,
    Thank you for the post.
    The thing is I don't have access to the query, unless I modify a standard E-Businees Suite view (one of those used to generate the PO document in Purchasing).
    Regards - Hugues

  • Display ISO week number instead of date on x axis in Bar Chart

    Hi,
    I've created a simple SSRS report based on bar chart that shows several milestones. Everything works fine for me except I’m not able to convert the date into ISO week number format.
    I played around with different approaches. I was able to convert the date into an ISO week Format directly on the SQL Server. That
    wasn't a problem.
    But unfortunately I’m not able to display the week number on the horizontal axis in my Bar Chart. I tried both fields: TaskFinishDate and TaskFinishDateMS...
    I would like to show the ISO week number instead of the date within the Bar Chart on the horizontal axis.
    Any ideas/hints/help is really appreciated!
    Thanks,
    Mike

    Hi Mike,
    Per my understanding that you want to get the week number of the year based on the field "TaskFinishDate" which is datetime type and display the week number in the x-axis instead of the field "TaskFinishDate", right?
    I have check the snapshot you have provided and it seems you have change the format of the datetime field in the x-axis like "dd.MM.YYYY", If you can't make the week number to display correctly in the x-axis, the issue can be caused by you haven't
    change the format to Number in the category.
    Details information below for you reference:
    I assume you have use expression in the Label like below to convert the datatime TaskFinishDate in to ISO week number like below:
    =DatePart(DateInterval.WeekOfYear,Fields!TaskFinishDate.Value)
    or
    =DatePart("ww",Fields!TaskFinishDate.Value)
    Right click the X-axis and select the "Horizontal Axis Properties", then click the Number to change the format to "Number" as below:
    Preview you will get the weeknumber display in the x-axis correctly.
    If you still have any problem, please feel to ask.
    Regards,
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • To_date ISO Year and ISO Week

    Hello,
    I have a Character-String '0949' which is the Iso Year and Iso Week.
    To get this string I use this code:
    to_char (trunc (sysdate, 'IW'), 'IYIW')Is it possible to convert this String back to a date?
    I tried it with this code:
    to_date ('0949', 'IYIW')but only get an ORA-01820 error.

    WITH data AS (SELECT 0749 iwiy FROM dual)
        ,separated AS (SELECT to_date(substr(to_char(iwiy,'fm0000'),-2),'YY') AS yy
                             ,to_number(substr(to_char(iwiy,'fm0000'),1,2)) iw FROM data)
    SELECT trunc(yy,'IY') + (iw-1) * 7
    FROM separated
    /hope this helps....
    Roger

  • Sunday 17-Jan-2010: In week 2 or week 3? Does Apple use ISO week dates?

    According to Wikipedia, http://en.wikipedia.org/wiki/ISOweekdate "All week-numbering years start with a Monday and end with a Sunday."
    http://personal.ecu.edu/mccartyr/isowdcal.html shows this too.
    However, my MBP running 10.5.8. shows today, Sun 17 Jan 2010 as week 3.
    This can be seen quickly by, following http://lifehacker.com/316029/display-the-date-on-the-menubar and dragging the Week of Year into the clock time shown on the menu bar, and viewing it on a Sunday.
    Or does Apple not follow the ISO week date numbering standard?
    Thanks,
    Martin.

    red_menace wrote:
    Actually, Apple does use (or is supposedly using) ISO 8601, but the System Preferences settings can override some of these, such as the region, calendar, or first day of the week.
    Actually, I think it is still an open question. According to Apple developer documentation:
    NSISO8601Calendar Identifier for the ISO8601. The ISO8601 calendar is not yet implemented.
    It does look like some of the conversions are a bit off, even in Snow Leopard, unless there is something I'm missing, too. Changing the date format (week starts with Monday) in System Preferences shows the correct week there (2), but getting the date from AppleScript, for example, shows week 3.
    I played around with my system preferences and could change the week start day, but I could never get an ISO 8601 date. Today (Sun, Jan 17th, 2010), I get either week 4 (Sunday) or week 3 (Monday).
    Clearly there are lots of date and time APIs to choose from and many of them on MacOS X already support this format. They haven't made it to the official system preferences level. Considering all the other calendar formats that Apple supports, I think this is a bug and mostly reflects MacOS X's American heritage. Americans don't use this value at all and don't even know to add it to a locale option.
    I filed a bug report on it. Don't hold your breath for it getting fixed anytime soon. In the meantime, here is a widget that will display the current week number: http://www.apple.com/downloads/dashboard/status/weeknumber_ntnu.html

  • How to get the week start date from ISO week number

    Hi,
    I have a table with the following stucture
    Year    error    Week1     week2   week3 ......week53
    2012       error1     2           4         2             1
    2012       error2    3          0        1                 1I was hoping to get something like select year, error, week1||'Week start date which is a monday of that week' , week2||'Week start date,again monday',....week53 from table
    Any suggestions please?
    Thanks,
    Sun

    Hi, Sun,
    To see when week N started, add 7 * (N - 1) days to the beginning of the year. (By definition, the beginning of the ISO year is the start of week 1 of the ISO year.)
    To see when week 22 of the current year started:
    SELECT  TRUNC (SYSDATE, 'IYYY') + (7 * (22 - 1))
    FROM    dual
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all the tables involved, and the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say what version of Oracle you're using.
    See the forum FAQ {message:id=9360002}

  • Get number of month, week and date between 2 dates

    Hi all,
    Is it possible to display number of month, week and days between 2 dates? either by using only SQL query or through PL/SQL...
    Input:
    From date: 01-Oct-2010
    To date: 19-Oct-2010
    I want output as below (Assuming the week starts from Monday to Sunday in oracle).
    01-Oct-2010 -- (Since this is in mid of the week)
    02-Oct-2010 -- (Since this is in mid of the week)
    03-Oct-2010 -- (Since this is in mid of the week)
    40 -- (Oct 4 to Oct 10 falls in 40th week of the year)
    41 -- (Oct 11 to Oct 17 falls in 41th week of the year)
    18-Oct-2010 -- (Since this is in mid of the week)
    19-Oct-2010 -- (Since this is in mid of the week)
    Note: If there is one full month between the given date, then the month number should be displayed.
    After the month, the remaining date comprised with one full week, then the week number of the year should
    be displayed. After displaying the week, the remaining dates should be displayed as it is..
    Appreciate your help..
    Thanks.
    Rajan.

    I suppose if it's just like a calendar type information you want then something like...
    SQL> break on month skip 1
    SQL> set linesize 200
    SQL> set pagesize 2000
    SQL> column month format a20
    SQL> column week format a4
    SQL> with req as (select '&Required_Year_YYYY' as yr from dual)
      2      ,offset as (select case when to_char(trunc(to_date(yr,'YYYY'),'YYYY'),'IW') in ('52','53') then 1 else 0 end as offset from req
      3  select lpad( Month, 20-(20-length(month))/2 ) month,
      4         '('||week||')' as week, "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"
      5  from (
      6    select to_char(dt,'fmMonth YYYY') month,
      7    case when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 0 then '53'
      8         when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 1 then '54'
      9         when to_char(dt, 'mm') = '01' and to_char(dt,'iw') in ('52','53') then '1'
    10         else to_char(to_number(to_char(dt,'iw'))+offset) end as week,
    11    max(decode(to_char(dt,'d'),'1',lpad(to_char(dt,'fmdd'),2))) "Mo",
    12    max(decode(to_char(dt,'d'),'2',lpad(to_char(dt,'fmdd'),2))) "Tu",
    13    max(decode(to_char(dt,'d'),'3',lpad(to_char(dt,'fmdd'),2))) "We",
    14    max(decode(to_char(dt,'d'),'4',lpad(to_char(dt,'fmdd'),2))) "Th",
    15    max(decode(to_char(dt,'d'),'5',lpad(to_char(dt,'fmdd'),2))) "Fr",
    16    max(decode(to_char(dt,'d'),'6',lpad(to_char(dt,'fmdd'),2))) "Sa",
    17    max(decode(to_char(dt,'d'),'7',lpad(to_char(dt,'fmdd'),2))) "Su"
    18    from ( select trunc(to_date(req.yr,'YYYY'),'y')-1+rownum dt
    19           from all_objects, req
    20           where rownum <= add_months(trunc(to_date(req.yr,'YYYY'),'y'),12) - trunc(to_date(req.yr,'YYYY'),'y') )
    21        ,offset
    22    group by to_char(dt,'fmMonth YYYY'),     case when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 0 then '53'
    23                                                  when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 1 then '54'
    24                                                  when to_char(dt, 'mm') = '01' and to_char(dt,'iw') in ('52','53') then '1'
    25                                                  else to_char(to_number(to_char(dt,'iw'))+offset) end
    26    ) x
    27  order by to_date( month, 'Month YYYY' ), to_number(x.week)
    28  /
    Enter value for required_year_yyyy: 2010
    old   1: with req as (select '&Required_Year_YYYY' as yr from dual)
    new   1: with req as (select '2010' as yr from dual)
    MONTH                WEEK Mo Tu We Th Fr Sa Su
        January 2010     (1)               1  2  3
                         (2)   4  5  6  7  8  9 10
                         (3)  11 12 13 14 15 16 17
                         (4)  18 19 20 21 22 23 24
                         (5)  25 26 27 28 29 30 31
       February 2010     (6)   1  2  3  4  5  6  7
                         (7)   8  9 10 11 12 13 14
                         (8)  15 16 17 18 19 20 21
                         (9)  22 23 24 25 26 27 28
         March 2010      (10)  1  2  3  4  5  6  7
                         (11)  8  9 10 11 12 13 14
                         (12) 15 16 17 18 19 20 21
                         (13) 22 23 24 25 26 27 28
                         (14) 29 30 31
         April 2010      (14)           1  2  3  4
                         (15)  5  6  7  8  9 10 11
                         (16) 12 13 14 15 16 17 18
                         (17) 19 20 21 22 23 24 25
                         (18) 26 27 28 29 30
          May 2010       (18)                 1  2
                         (19)  3  4  5  6  7  8  9
                         (20) 10 11 12 13 14 15 16
                         (21) 17 18 19 20 21 22 23
                         (22) 24 25 26 27 28 29 30
                         (23) 31
         June 2010       (23)     1  2  3  4  5  6
                         (24)  7  8  9 10 11 12 13
                         (25) 14 15 16 17 18 19 20
                         (26) 21 22 23 24 25 26 27
                         (27) 28 29 30
         July 2010       (27)           1  2  3  4
                         (28)  5  6  7  8  9 10 11
                         (29) 12 13 14 15 16 17 18
                         (30) 19 20 21 22 23 24 25
                         (31) 26 27 28 29 30 31
        August 2010      (31)                    1
                         (32)  2  3  4  5  6  7  8
                         (33)  9 10 11 12 13 14 15
                         (34) 16 17 18 19 20 21 22
                         (35) 23 24 25 26 27 28 29
                         (36) 30 31
       September 2010    (36)        1  2  3  4  5
                         (37)  6  7  8  9 10 11 12
                         (38) 13 14 15 16 17 18 19
                         (39) 20 21 22 23 24 25 26
                         (40) 27 28 29 30
        October 2010     (40)              1  2  3
                         (41)  4  5  6  7  8  9 10
                         (42) 11 12 13 14 15 16 17
                         (43) 18 19 20 21 22 23 24
                         (44) 25 26 27 28 29 30 31
       November 2010     (45)  1  2  3  4  5  6  7
                         (46)  8  9 10 11 12 13 14
                         (47) 15 16 17 18 19 20 21
                         (48) 22 23 24 25 26 27 28
                         (49) 29 30
       December 2010     (49)        1  2  3  4  5
                         (50)  6  7  8  9 10 11 12
                         (51) 13 14 15 16 17 18 19
                         (52) 20 21 22 23 24 25 26
                         (53) 27 28 29 30 31
    61 rows selected.
    SQL>

  • Position of the days and dates being on the right side of the day in the week calendar.

    I'm having a huge problem with the days and dates being on the right side of the day in the week calendar. Can I change that to the left upper side?
    it makes the whole schedule off balance you see.

    Thanks for stating that. So quickly. That *****. I also now see that more people have problems with this. Where can I complain?

  • Default selection on current month, week and date

    Hi,
    We are on Dashboard 4.1 sp3 the same version as BI.
    The dashboard report is using LiveOffice connection. We are now facing an issue with default selection on current month, week and date.
    The dashboard report drilled down from month, to week, then to date. The dashboard feed -live office report is on month/week/date ascending order - becuase we have running average calcualtion on LO report, it seems have to be in ascending order to get the correnct runnning average.
    I tried to on Insertion to change default seletion, it works on month, but it doesnt working on week and daily.
    but when LO report is on ascending order, on dashboard column chart the default selection is not on the current month, week and date.
    Is there a way to solve the issue. Could anyone please help.
    Thanks,

    Hi Suman,
    Thanks for the quick reply.
    Do you mean I Enable sorting -by categrory labels on Behaviour - common tab.
    Thanks,

  • Report Issue: Previous Weeks, Current Week and Next Week Values

    Hello Folks,
    this is a typical requirement...at-least typical for me..
    we have 20 weeks of data at weekly level. we have four Metrics out of which two are coming from Database and rest two are calculated metrics.
    Metric0: On Hand Qty
    Metric1: Past Qty
    Metric2: sell Qty
    Metric3: unsell qty
    Metric4: Total Qty
    the report will always be shown for 20 weeks, but depending on whats my current week, all the past weeks should be flagged as Past Week. (so i wrote a case statement for this). for Instance: I am in Week11, so my weeks in should be Past Week, Wk11, Wk12.........Wk20.
    Metric 1 is always dependent on result of Metric4 (This is the Complexity) per week basis
    Metric1 for Past weeks value in Week Column will be wk1 to wk10 On Hand Qty (fox ex: 80)
    Metric4 for Pass Weeks Value in Week Column will be Metric1 for Pastweeks + Metric2 for Past Weeks (For Ex: 20) (Past weeks mean wk1 to wk10)
    value of Metric4 is now 100
    Metric1 for Week11 Now should 100 (From Past weeks Calculation)
    Metric4 for Week11 will be Metric1 for Week11(100) + Metric2 for Week11(10) + Metric3 for Week11 (10)
    Now...Metric1 for Week12 will be 120 which is wk11 total (100+10+10) and goes on Until Week 20
    Any Ideas how to achieve this in obiee 10g
    Thanks
    Rake

    Please try out in this way....
    Database level --Create opaque view & procedure or function  to get the week total,week ago total, current week , Past week ,future week & do rpd modelling and use PIVOT VIEW.
    At answers:
    1.Here Previous week M4 is the current week M1 which means it is a cumulative value carried forward week by week.
    2. M2 & M3 are direct database columns.
    3. You have time hierarchy with WEEK Level.
    M1 - ago(rsum(m2+m3),weeklevel)
    M4- RSUM(M2+M3)
    week -AGO(RSUM(M2+M3)- M2-M3-RSUM(M2+M3)
    w1-0-10-20-30
    w2-30-11-21-62
    w3-62-12-22-96
    Now you can PIVOT IT to get in
    W1-W2-W3
    M1 0 - 30-62
    M2 10-11-12
    M3 20 -21-22
    M4 30 - 62-96
    NOW PASTWEEK (W1-W10), CURRENT WEEK(W11)-W12
    1.as you see cumulative here you need to use BINS.means ( case when week <= currentweek(maybe variable) then prior) else week)
    2. UNION - combine similar request - First cirteria week <= w11 and second criteria week > week 11 --combine pivot it. Use sum agg in fx criteria1.
    Hope this should solve your pblm at answers.
    Edited by: MK on Oct 27, 2011 12:48 PM

  • How long does it take to delete an account from a macbook? I used secure delete (at the recommendation of the apple genius) and it has already taken 2 weeks... and still not deleted! Granted there was over 200GB of data... any ideas on this? thanks

    how long does it take to delete an account from a macbook (OSX 10.9.4)?  I used secure delete (at the recommendation of the apple genius) and it has already taken 2 weeks... and still not deleted! Granted there was over 200GB of data... any ideas on this? thanks

    how long does it take to delete an account from a macbook (OSX 10.9.4)?  I used secure delete (at the recommendation of the apple genius) and it has already taken 2 weeks... and still not deleted! Granted there was over 200GB of data... any ideas on this? thanks

  • HT201472 I sold a unlocked iphone 5 that I bought second hand andhad for a 2 weeks no problems and i sold it and the next day the lady called me saying it was reported stolen and asking for her money what should i do.

    I sold a unlocked iphone 5 that I bought second hand andhad for a 2 weeks no problems and i sold it and the next day the lady called me saying it was reported stolen and asking for her money what should i do.

    Give the Lady her money back then try and get your money back don,t buy
    from someone off the street buy from shop or webb site ie EBAY but still be careful
    no no one can unlock a blocked iPhone only the owner who has the correct
    APple ID
    bbsydd uk

  • How to get week starting with sunday date

    Hi
    I have a date column "start_date", i need to create a report for all the weeks starting from sunday , for eg:
    i need to get week dates as :
    mm/dd/yy - 01/23/11 , 01/16/11 , 01/09/11 and so on...
    Please help
    Thanks...

    Hi,
    To find the last Sunday before or equal to start_date:
    SELECT     TRUNC ( start_date + 1
               , 'IW'
               ) - 1          AS week_start_date
    ...You can use an expression like this in a GROUP BY clause, also.
    This does not depend on you NLS settings. ISO weeks always start on Monday. Your week starts 1 day earlier, so that's why the expression above has the +1 and -1.
    (Depending on you NLS settings,
    SELECT     TRUNC ( start_date
               , 'D'
               )          AS week_start_date
    ...might do the same thing, but I still rocommend using 'IW'; a few extra keystrokes isn;t much to pay for a guarantee that it will always work.)
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements) and the results you want from that data.

  • Been with Verizon 3 weeks - misrepresentation, fraud and poor customer service

    I was excited to find out that my company had a corporate discount for all employees: 22% discount of primary line, 22% off any data plan greater than $29.99/month and $75 credit on first month's bill.  Great!  I decided to port over my line from Tmobile, incurring the $100 early termination fee for 2 lines (family plan) and decided to finally get an iphone.
    We all know how CSR are horrible at providing the correct information, so I called 3 times (2 to Verizon customer service) and 1 to a local B&M store to verify the details of my employee discount and to confirm that I would be eligible.  Yes, Yes and Yes. 
    Called VZ Customer Service on 1/10, verified AGAIN that the plan I was choosing qualified for the corporate discount, they confirmed and then I placed my order.  The first bill I received on 1/24 showed the 22% discount only on the line, but not the data plan.  Called VZ, the CSR's excuse:  The first bill is a partial, prorated bill so I won't see the 22% discount on the data plan nor the $75 credit until the following month's full bill.  The gentleman was nice enough to give me a courtesy credit of $7, which covers the data plan discount I was expecting.  He said he would note the $75 credit on my account so it would be applied correctly on the next month's bill.
    Being the skeptic that I am, I called the next day 1/25 and verified with another CSR that she was able to see the note on my account that was supposedly entered in the previous night.  Of course she didn't see it.  I didn't bother to do anything further...I was going to wait until February to see what my bill looked like that take it from there.
    Fast forward one month, get my bill...again, no corporate discount on the data plan and no $75 credit.  Called CSR, she said "oooh, that's because your corporate discount only applies to data plans that cost $45/month or higher."  I asked to speak with a supervisor.
    Supervisor Melissa told me that the CSR is correct, and my data plan does not qualify.  The next part KILLS me.  I asked her if it made sense that I've spoken with 3 different Verizon representatives, all confirming the same thing up to this point.  Her answer:  "Well, every CS department operates a little differently.  For example, my group has a full 9 weeks of training so we know what we're talking about.  Other regions might be different."  So what she basically told me is that it doesn't matter that everyone is employed by the same company.  Because I was unlucky enough to be routed to a CS department in Booneyville where they don't know their head from their butt, I got misinformed.  Ooops, sorry.
    The 22% discount on a $30 plan amounts to $7/month.  Is $7/month worth this HUGE discussion...no.  Am I ******, yes. I will be writing the corporate office, the BBB and filing a complaint.

    Look, don't want to argue.  @lewisr13 - I ordered the phones on 1/10 and due to the backorder on iphones, wasn't able to port my number until 1/24.
    It's not easy working at a call center and talking to hundred of people a day...I get it.  I was with tmobile for 6 years, I've had my share of getting wrong information at times, which is why I pulled the terms of my corporate discount on our website, verified with my internal rep the day before I started this whole thing and had VZ CSRs walk me through step by step my discount.  "Okay, so what you're saying is if I get X plan, I should see a 22% discount on this and that, which would bring my total monthly balance to X dollars, is that correct?" 
    I still think it's ridiculous that THREE different reps gave me the wrong information..that's a pretty bad ratio.
    My title is over the top...CSRs weren't intentionally fraudulent or meant to misrepresent anything.  That said, as a paying customer, I still expect accurate information.  Keep in mind that I did call an additional 3 times prior to me even ordering the phone to verify this information as well. 
    Frustated, that's all.  I'm having our company rep look into it and if the misinformation initially came from my own company, it is what it is. 

Maybe you are looking for

  • HT201210 I am trying to update iphone 4 from ISO 5.1.1 to ISO 6.0.1

    I am trying to update iphone 4 from iSO 5.1.1 to iSO 6.0.1.  The phone says it needs a software update, but when it's almost finished downloading it says Update failed.  I am connected to Wi-Fi.  Any suggestions?

  • Errors while transaction download from ECC- CRM

    we are trying to download transactions from ECC 5.0 to CRM 5.0. the initial download has stopped in between and we get an error "SysFail" in the Inbound queue (SMQ2). Information on this error is "The current application triggered a termination with

  • Copying & pasting changes dimension of image if it is not 72 dpi

    I have Macs since the Mac 512ke. Never I had such a problem, that copying and pasting doesn't work correctly. I scan with 300 dpi grayscale. If I copy a selection of this scanned image and paste it to pages 4.0.3, the size of the image is enlarged. O

  • GR to "Material provided to vendor" stock from PO

    Hi I need to Post stock directly to "Material provided to vendor" Stock while doing GR with reference to Purchase order and I activated QM view for the material. So, I entered vendor no in the PO and select SC indicator also. While doing GR with refe

  • How findout who created a software component:

    I am in a situation where I have to findout which user (userid) created a software component in SLD and imported them into IR and created many namespaces? Is there a way to find out? Regards, N.S