Question Related To Dates

Hi All,
I have been knocked off by this strange situation. I will try to simplify and explain the problem at my best.
We have DATE column in a table, the data ranging from 01-Jan-2009 to 31-12-2010.
We have to calculate ISO_WEEKS based on the date column. (No problems so far)
Now, since the weeks may overlap between months we have to calculate the month based on the following logic:
For a particular week, if the number of days in the week that falls in the current month is greater than equal to 4 then the week belongs to current month else it will belong to the next month.
Expected output is of the following format:- YYYY MONTH MONTH_NUMBER
YYYY is the YEAR
MONTH is the string 'MONTH'
MONTH_NUMBER is the month number of the minths(eg For Jan it will be 1 , for Feb - 2,... For December - 12)
TEST CASE 1:-
SQL> SELECT date_col, to_char(date_col, 'IW') ISO_WEEKS
  2  FROM
  3  (
  4  SELECT to_date('01/01/2009', 'MM/DD/YYYY') + level - 1 date_col FROM Dual
  5  CONNECT BY LEVEL <= 60
  6  )
  7  WHERE to_char(date_col, 'IW') = '05'
  8  /
DATE_COL  IS  EXPECTED_OUTPUT
26-JAN-09 05  2009 MONTH 1
27-JAN-09 05  2009 MONTH 1
28-JAN-09 05  2009 MONTH 1
29-JAN-09 05  2009 MONTH 1
30-JAN-09 05  2009 MONTH 1
31-JAN-09 05  2009 MONTH 1
01-FEB-09 05  2009 MONTH 1 -- Most of the days of this week falls on Jan
7 rows selected. For the last day of the week 05 for the year 2009, the expected output will be 2009 MONTH 1 since most of the days of the particular week falls in January.
TEST CASE 2:-
SQL> SELECT date_col, to_char(date_col, 'IW') ISO_WEEKS
  2  FROM
  3  (
  4  SELECT to_date('03/28/2009', 'MM/DD/YYYY') + level - 1 date_col FROM Dual
  5  CONNECT BY LEVEL <= 20
  6  )
  7  WHERE to_char(date_col, 'IW') IN  ('13','14')
  8  /
DATE_COL  IS  EXPECTED_OUTPUT
28-MAR-09 13  2009 MONTH 3
29-MAR-09 13  2009 MONTH 3
30-MAR-09 14  2009 MONTH 4 -- Most of the days falls in April
31-MAR-09 14  2009 MONTH 4 -- Most of the days falls in April
01-APR-09 14  2009 MONTH 4
02-APR-09 14  2009 MONTH 4
03-APR-09 14  2009 MONTH 4
04-APR-09 14  2009 MONTH 4
05-APR-09 14  2009 MONTH 4
9 rows selected.
TEST CASE 3:-
SQL>
SQL> SELECT date_col, to_char(date_col, 'IW') ISO_WEEKS
  2  FROM
  3  (
  4  SELECT to_date('12/27/2008', 'MM/DD/YYYY') + level - 1 date_col FROM Dual
  5  CONNECT BY LEVEL <= 20
  6  )
  7  WHERE to_char(date_col, 'IW') IN  ('01', '52')
  8  /
DATE_COL  IS  EXPECTED_OUTPUT
27-DEC-08 52  2008 MONTH 12
28-DEC-08 52  2008 MONTH 12
29-DEC-08 01  2009 MONTH 1   -- Most of the days falls on January of next year
30-DEC-08 01  2009 MONTH 1   -- Most of the days falls on January of next year
31-DEC-08 01  2009 MONTH 1   -- Most of the days falls on January of next year
01-JAN-09 01  2009 MONTH 1
02-JAN-09 01  2009 MONTH 1
03-JAN-09 01  2009 MONTH 1
04-JAN-09 01  2009 MONTH 1
9 rows selected.
TEST CASE 4:-
SQL> SELECT date_col, to_char(date_col, 'IW') ISO_WEEKS
  2  FROM
  3  (
  4  SELECT to_date('12/27/2009', 'MM/DD/YYYY') + level - 1 date_col FROM Dual
  5  CONNECT BY LEVEL <= 20
  6  )
  7  WHERE to_char(date_col, 'IW') IN  ('01','53')
  8  /
DATE_COL  IS  EXPECTED_OUTPUT
28-DEC-09 53  2009 MONTH 12
29-DEC-09 53  2009 MONTH 12
30-DEC-09 53  2009 MONTH 12
31-DEC-09 53  2009 MONTH 12
01-JAN-10 53  2009 MONTH 12  -- Most of the days falls on DECEMBER of previous year
02-JAN-10 53  2009 MONTH 12  -- Most of the days falls on DECEMBER of previous year
03-JAN-10 53  2009 MONTH 12  -- Most of the days falls on DECEMBER of previous year
04-JAN-10 01  2010 MONTH 1
05-JAN-10 01  2010 MONTH 1
06-JAN-10 01  2010 MONTH 1
07-JAN-10 01  2010 MONTH 1
08-JAN-10 01  2010 MONTH 1
09-JAN-10 01  2010 MONTH 1
10-JAN-10 01  2010 MONTH 1
14 rows selected.
SQL> In the last example since the week 53 has more number of days in previous year (2009) the expected output should be 2009 MONTH 12. The following piece of code combines all the above test cases.
SELECT date_col, TO_CHAR (date_col, 'IW') iso_weeks
  FROM (SELECT     TO_DATE ('01/01/2009', 'MM/DD/YYYY') + LEVEL - 1 date_col
              FROM DUAL
        CONNECT BY LEVEL <= 60)
WHERE TO_CHAR (date_col, 'IW') = '05'
UNION ALL
SELECT date_col, TO_CHAR (date_col, 'IW') iso_weeks
  FROM (SELECT     TO_DATE ('03/28/2009', 'MM/DD/YYYY') + LEVEL - 1 date_col
              FROM DUAL
        CONNECT BY LEVEL <= 20)
WHERE TO_CHAR (date_col, 'IW') IN ('13', '14')
UNION ALL
SELECT date_col, TO_CHAR (date_col, 'IW') iso_weeks
  FROM (SELECT     TO_DATE ('12/27/2008', 'MM/DD/YYYY') + LEVEL - 1 date_col
              FROM DUAL
        CONNECT BY LEVEL <= 20)
WHERE TO_CHAR (date_col, 'IW') IN ('01', '52')
UNION ALL
SELECT date_col, TO_CHAR (date_col, 'IW') iso_weeks
  FROM (SELECT     TO_DATE ('12/27/2009', 'MM/DD/YYYY') + LEVEL - 1 date_col
              FROM DUAL
        CONNECT BY LEVEL <= 20)
WHERE TO_CHAR (date_col, 'IW') IN ('01', '53')
ORDER BY DATE_COL ASCPlease advice on how to proceed with this.
Thanks.

oracle_beginner wrote:
Sorry Solomon, if i didn't state my question properly. I do understand the ISO Week functionality.
SELECT  date_col,
        to_char(date_col, 'IW'),
        to_char(date_col,'YYYY') || ' Month ' || case
                                                   when to_char(date_col,'MM') > to_char(trunc(date_col,'IW') + 3,'MM') then to_char(trunc(date_col,'IW'),'FMMM')
                                                   else  to_char(date_col,'FMMM')
                                                 end,
        to_char(date_col, 'Day')
  FROM  (
         SELECT  to_date('01/01/2009', 'MM/DD/YYYY') + level - 1 date_col
           FROM  Dual
           CONNECT BY LEVEL <= 365
WHERE last_day(date_col) - date_col <= 4 -- this is just to show last 4 days of each month
   OR to_char(date_col,'DD') <= '04' -- this is just to show first 4 days of each month
DATE_COL  TO TO_CHAR(DATE_ TO_CHAR(D
01-JAN-09 01 2009 Month 1  Thursday
02-JAN-09 01 2009 Month 1  Friday
03-JAN-09 01 2009 Month 1  Saturday
04-JAN-09 01 2009 Month 1  Sunday
27-JAN-09 05 2009 Month 1  Tuesday
28-JAN-09 05 2009 Month 1  Wednesday
29-JAN-09 05 2009 Month 1  Thursday
30-JAN-09 05 2009 Month 1  Friday
31-JAN-09 05 2009 Month 1  Saturday
01-FEB-09 05 2009 Month 1  Sunday
02-FEB-09 06 2009 Month 2  Monday
DATE_COL  TO TO_CHAR(DATE_ TO_CHAR(D
03-FEB-09 06 2009 Month 2  Tuesday
04-FEB-09 06 2009 Month 2  Wednesday
24-FEB-09 09 2009 Month 2  Tuesday
25-FEB-09 09 2009 Month 2  Wednesday
26-FEB-09 09 2009 Month 2  Thursday
27-FEB-09 09 2009 Month 2  Friday
28-FEB-09 09 2009 Month 2  Saturday
01-MAR-09 09 2009 Month 2  Sunday
02-MAR-09 10 2009 Month 3  Monday
03-MAR-09 10 2009 Month 3  Tuesday
04-MAR-09 10 2009 Month 3  Wednesday
DATE_COL  TO TO_CHAR(DATE_ TO_CHAR(D
27-MAR-09 13 2009 Month 3  Friday
28-MAR-09 13 2009 Month 3  Saturday
29-MAR-09 13 2009 Month 3  Sunday
30-MAR-09 14 2009 Month 3  Monday
31-MAR-09 14 2009 Month 3  Tuesday
01-APR-09 14 2009 Month 4  Wednesday
02-APR-09 14 2009 Month 4  Thursday
03-APR-09 14 2009 Month 4  Friday
04-APR-09 14 2009 Month 4  Saturday
26-APR-09 17 2009 Month 4  Sunday
27-APR-09 18 2009 Month 4  Monday
DATE_COL  TO TO_CHAR(DATE_ TO_CHAR(D
28-APR-09 18 2009 Month 4  Tuesday
29-APR-09 18 2009 Month 4  Wednesday
30-APR-09 18 2009 Month 4  Thursday
01-MAY-09 18 2009 Month 4  Friday
02-MAY-09 18 2009 Month 4  Saturday
03-MAY-09 18 2009 Month 4  Sunday
04-MAY-09 19 2009 Month 5  Monday
27-MAY-09 22 2009 Month 5  Wednesday
28-MAY-09 22 2009 Month 5  Thursday
29-MAY-09 22 2009 Month 5  Friday
30-MAY-09 22 2009 Month 5  Saturday
DATE_COL  TO TO_CHAR(DATE_ TO_CHAR(D
31-MAY-09 22 2009 Month 5  Sunday
01-JUN-09 23 2009 Month 6  Monday
02-JUN-09 23 2009 Month 6  Tuesday
03-JUN-09 23 2009 Month 6  Wednesday
04-JUN-09 23 2009 Month 6  Thursday
26-JUN-09 26 2009 Month 6  Friday
27-JUN-09 26 2009 Month 6  Saturday
28-JUN-09 26 2009 Month 6  Sunday
29-JUN-09 27 2009 Month 6  Monday
30-JUN-09 27 2009 Month 6  Tuesday
01-JUL-09 27 2009 Month 7  Wednesday
DATE_COL  TO TO_CHAR(DATE_ TO_CHAR(D
02-JUL-09 27 2009 Month 7  Thursday
03-JUL-09 27 2009 Month 7  Friday
04-JUL-09 27 2009 Month 7  Saturday
27-JUL-09 31 2009 Month 7  Monday
28-JUL-09 31 2009 Month 7  Tuesday
29-JUL-09 31 2009 Month 7  Wednesday
30-JUL-09 31 2009 Month 7  Thursday
31-JUL-09 31 2009 Month 7  Friday
01-AUG-09 31 2009 Month 7  Saturday
02-AUG-09 31 2009 Month 7  Sunday
03-AUG-09 32 2009 Month 8  Monday
DATE_COL  TO TO_CHAR(DATE_ TO_CHAR(D
04-AUG-09 32 2009 Month 8  Tuesday
27-AUG-09 35 2009 Month 8  Thursday
28-AUG-09 35 2009 Month 8  Friday
29-AUG-09 35 2009 Month 8  Saturday
30-AUG-09 35 2009 Month 8  Sunday
31-AUG-09 36 2009 Month 8  Monday
01-SEP-09 36 2009 Month 9  Tuesday
02-SEP-09 36 2009 Month 9  Wednesday
03-SEP-09 36 2009 Month 9  Thursday
04-SEP-09 36 2009 Month 9  Friday
26-SEP-09 39 2009 Month 9  Saturday
DATE_COL  TO TO_CHAR(DATE_ TO_CHAR(D
27-SEP-09 39 2009 Month 9  Sunday
28-SEP-09 40 2009 Month 9  Monday
29-SEP-09 40 2009 Month 9  Tuesday
30-SEP-09 40 2009 Month 9  Wednesday
01-OCT-09 40 2009 Month 10 Thursday
02-OCT-09 40 2009 Month 10 Friday
03-OCT-09 40 2009 Month 10 Saturday
04-OCT-09 40 2009 Month 10 Sunday
27-OCT-09 44 2009 Month 10 Tuesday
28-OCT-09 44 2009 Month 10 Wednesday
29-OCT-09 44 2009 Month 10 Thursday
DATE_COL  TO TO_CHAR(DATE_ TO_CHAR(D
30-OCT-09 44 2009 Month 10 Friday
31-OCT-09 44 2009 Month 10 Saturday
01-NOV-09 44 2009 Month 10 Sunday
02-NOV-09 45 2009 Month 11 Monday
03-NOV-09 45 2009 Month 11 Tuesday
04-NOV-09 45 2009 Month 11 Wednesday
26-NOV-09 48 2009 Month 11 Thursday
27-NOV-09 48 2009 Month 11 Friday
28-NOV-09 48 2009 Month 11 Saturday
29-NOV-09 48 2009 Month 11 Sunday
30-NOV-09 49 2009 Month 11 Monday
DATE_COL  TO TO_CHAR(DATE_ TO_CHAR(D
01-DEC-09 49 2009 Month 12 Tuesday
02-DEC-09 49 2009 Month 12 Wednesday
03-DEC-09 49 2009 Month 12 Thursday
04-DEC-09 49 2009 Month 12 Friday
27-DEC-09 52 2009 Month 12 Sunday
28-DEC-09 53 2009 Month 12 Monday
29-DEC-09 53 2009 Month 12 Tuesday
30-DEC-09 53 2009 Month 12 Wednesday
31-DEC-09 53 2009 Month 12 Thursday
108 rows selected.
SQL>  SY.
Edited by: Solomon Yakobson on Oct 7, 2009 9:24 AM

Similar Messages

  • Question related to Physical Data Guard (Oracle 10gR2)

    Hi,
    I have a question regarding Physical Data Guard in a RAC environment (Oracle 10g Release 2).
    Say we have 4-node RAC in production and DG is also configured for RAC but number of nodes differ in production and DG. Which node in DG will apply log from production if?
    1) If there is 2 node RAC setup in DG?
    2) If there is 4 node RAC setup in DG?
    3) If there is 5/6/7/... node RAC setup in DG?
    Probably, this is a very simple and basic question but your expertise would be of great help.
    Regards

    Hi - Only one instance performs the recovery, but more than one standby node can be an archive log destination for the primary instances.

  • Question regarding Polling data from database using DB Adapters in BPEL

    Hi,
    I have the following question regarding Polling data from database using DB Adapters in BPEL -
    If I am selecting data from multiple tables/view to ultimately generate hierarchical xml document, is there a way that I specify polling all of these tables/views. Is polling limited only to one table/view?
    Thanks
    Ravi

    Hi Ravi,
    your question seems to have been answered for the question of polling a set of tables with one as the root, and getting back a hierarchical xml representing multiple related tables.
    However you can also poll for changes to both the root table and its related tables. Not sure if this was your question or the one already answered. If the former please check out the sample
    bpel/samples/tutorials/122.DBAdapter/advanced/polling/PollingForChildUpdates
    Thanks
    Steve

  • Some questions related to SAP XI

    Hello!
    I would like to know the answers for the following questions regarding SAP XI-context (if it possible with Yes/No and a short comment/explanation)
    <b>CAPACITY PLANNING GUIDELINES</b>
    a) Guidelines to size the server(s)?
    b) Guidelines for sizing the over all environment for High-Availability
    <b>ARCHIVING CAPABILITIES</b>
    a) Approach to archiving of obsolete data
    <b>PLATFORM SUPPORT</b>
    a) Software supported on HP-UX 11.i V2 (r6) on Itanium.
    b) software supported on Windows 2003 sp1 (x64) on AMD Opteron 
    c) software support aligned with release roadmaps for future versions of HP-UX and/or Windows Server
    d) Software supported on OS clustered servers  (If mutliple products, please indicate if all are support or list areas where clustering may not be recommended and why)
    <b>RELATIONAL DATABASE </b>
    a) Does your system run native to the Oracle 10g RDBMS (RAC) and database tools?  If not, please explain the databases and tools supported.
    b) database monitoring tools be used to manage impending maintenance needs and potential problems and performance impacts (i.e., tool will monitor and detect prior to real problem occurring)
    c) standard pre-defined SQL queries and related calculations provided for use with industry standard reporting tools
    d) database accept binary-large-objects (BLOBs) and  be referenced via the relational engine.
    Thank you in advance!
    Regards!
    A.Henke

    two questions related to this:
    1. Why Java is designed to only permit single
    inheritence, any stories behind the scene? I think
    some major reasons why "prefer interfaces toabstract
    classes" is accepted is rooted in this limitation.Yes, one of the reasons interfaces are better is that
    you can only extend one class, but implement many
    interfaces. Say you have a concrete class that should
    "implement" two different types. If those types were
    defined as abstract classes, you could only use one
    type. You could implement both types if they were
    interfaces though. So why java is designed to have this limitation? There may be some arguments before this is settled down. I always like to hear this kind of stories:)
    2. Base on the fact that once an interface is outof
    box and widely implemented, it is almostimpossible
    to change it. So how you guys design yourinterfaces?
    Could you share some? In my idea, I would designmy
    interfaces as compact as possible.You could extend the interface and start using that
    if you didn't want to break existing code. You
    couldn't use that implementation as an Interface1
    though, since the new methods only exist in
    Interface2, so that's not an optimal solution.So we may always need to add a new interface when we just want to add a new method.

  • Question related to concept of PCK

    Hi All.
    I am quite a newbie to XI and am only learning it thru online help. I have one conceptual question related to PCK.
    My understanding is that PCK is needed by a small business company to communicate to its larger partner which already has XI running. Correct me if I am wrong here itself.
    Now if the larger business partner already has XI, why does the smaller one need a PCK at all? The XI instance on the larger partner will have all the necessary adapters to understand any format send by the partner. So even if the partner(smaller) sends any format- be it IDOC/HTTP/FTP, the XI instance on larger partner will have its adapters ready to perform the conversion.
    Then why is this PCK needed at all?
    Thanks in advance. Hope my query is clear
    Regards.
    Samant

    Hi Samant,
      Your question is a very good one, Though I have not worked on PCK, I can share my ideas based on some brain storming session I had with our collegues & business partners.
      While executing projects, there are technical & operational issues. For example, when you access any HR related data of a UK based organisation then all those who work on that project have to undertake data security pledge. Like wise there are many constraints on data & system accesses, which vary across organisations.
    When you use PCK*, irrespective of different systems what the small vendors have, you communicate with your Big company's XI system only on the XI's msging protocol http(s)/SOAP. This allows a fair amount of ownership of data/access related issues to the small partners.
    -> you go for PCK, when there is no need for small vendors to go for XI.
    Hope this is of some help. As Michal said there might be much more (or even better) reasons.
    Michal, when you say "all of the mappings and transformations have to be on the small company side", what exactly you mean by this. can you please eloborate.
    Thanks & Regards
    Vishnu

  • Question related to dynami calc

    Hi all,
    I have a question related to dynamic calc members, I read in the dbag saying , it is not possible to add more than 100 members as a children under a
    dynamic calc member...is it right even with 9 and 11 versions.. What are the options we have if we really want to add ....????? I am curious to know about this....
    Thanks

    When you set a member to dynamic calculation (for aggreagtion purposes), it has to look at all of the children in order to calculate. If it is on a sparse dimension, it has to bring multiple blocks into memory to do the calculation. If the dimension is dense, it on;y brings in the single block which is much quicker. as for increasing the block size, If you need the summarization, you have not changed the block size at all. You would have the member regardless. If it is dynamic, you will see the block smaller than if it stored data, but the logical block size (the memory it takes) will be the same size regardless because Essbase expands the block in memory to do the calculations.
    This is the same rational as to why we don't want dynamic calculation on sparse dimensions unless it is comfined to one or two children. The reading of multiple blocks can be very time consuming

  • Can someone plz confirm me that how i can change or update the security questions related to my apple id? as i have been never put them since i create my apple id but now due to some security reasons its asking me again and again the answers. i am unable

    can someone plz confirm me that how i can change or update the security questions related to my apple id? as i have been never put them since i create my apple id but now due to some security reasons its asking me again and again the answers. i am unable to go through the process. thanks.

    Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities

  • Question related to Java Concurrent Program

    Hi Friends,
    I have a basic question related to Java Concurrent Program in the Oracle application. I would like to know the how Java concurrent program is executed in Oracle applications.Also, want to know where can I find the document for the AOL packages for Java concurrent program. Document for packages like oracle.apps.fnd.cp.request.* , oracle.apps.fnd.util.*.
    Please let me know.
    -Thanks,
    Satya

    You may also check:
    Note: 250964.1 - How to Register Sample Java Concurrent Program
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=250964.1
    Note: 186301.1 - How to register and execute Java Concurrent Program ?in Oracle Applications R11i?
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=186301.1

  • To Call Another Form and Save Related MAster Data from a Transaction Form

    Hi
    Our project requires that forms for creating masters be called whenever the value (Key Value) being referenced in other forms are not found. For doing this I had used the When-Validate-Item Trigger and checked for the key value in the master tables and if not present, I use the Call_Form method to call the master form and create the key value and then come back to the Form in which I was working to continue processing the rest of the data.
    It works well if the CAlling forms is in INSERT MODE but Not in UPDATE MODE ( returns a message A Calling Form has unapplied Changes, Cannot Save data (Error: FRM-40403)).
    This same feature I tried to work it out around with a Key-Next-Item Trigger, it works fine for both the cases but as long as the user tabs out of the field from keyboard controls like the Enter Key or the Tab Key. But in case he wishes to click on the next field or some other button with a mouse OR he uses a keyboard shortcut to do some other operation viz. F10 for saving data, the trigger is not fired and that returns a ORACLE error (in case a database Integration issue arises) OR saves an invalid data.
    I would like to know what kind of triggers could we write to exactly call a master form to save a new key value irrespective of whether the calling form is working in INSERT mode or QUERY Mode.
    One way to do it is to use EXIT_FORM(DO_COMMIT, NO_ROLLBACK). But if the Primary/Calling form is closed without a Commit, then the related Master DAta is also Not Saved.
    Please Let me know if we can save the master data whatever be the state of the CAlling Form permanently.
    Thanks and Regards

    You are going to need to POST in the Called Form rather than committing (and make sure that you do not rollback when you exit).
    The Post will insert the master record into the DB but it will not be committed until you issue the commit in the Calling Form.

  • Question about tranferring data from iPhone 3gs to iPhone 4

    I just had a couple quick questions about transferring data from my old phone from my new iPhone 4. The reason i am wondering is because i am worried about whether i will encounter any problems when doing so.
    First off i have already sold my phone today, i reset all data and settings from the phone and gave it to my buddy so its gone. I did a full sync and backup yesterday so all the necessary files should be on my computer(windows 7). Now, im basically wondering if i will run into any problems if i restore my iphone 4 from a backup. My 3gs was running 3.1.2 on att. Now i know IDEALLY i would have updated it to iOS 4 before backing it up and used the newest version of itunes, but i did not. Does anyone think this will be a problem for me?
    Now with that out of the way, my biggest fear is losing my old data(text messages and notes mainly because i am a pack rat for those type of things) so id like to be SURE that none of my old backups will be deleted in any scenario. The reason i dont just restore it right now is because i want my new phone to be as clutter free as possible. I am going to be putting on here only the apps that i used often and would basically like to transfer over the BARE minimum; texts, notes, and highly used apps... So i guess my main question is can you transfer over only certain things like texts and notes after setting up the phone as a new phone. And if i were to set up the phone as a new phone what would happen to my old backups? Would i be able to selectively restore?
    Im afraid that it might not be a possibility to transfer only certain things even though it should be.. i should be able to select a text messages folder and put it on my new phone and be done with it... But anyway i dont want to rant. Can anyone explain to me how this all will work?
    ULTIMATE GOAL: Transfer only texts, notes, certain apps(and their data) and NOTHING ELSE.
    MOST IMPORTANT THING: Not losing texts and notes. I can deal with putting all the old **** on my new phone and cluttering/slowing it down if i NEED to.
    Thank you in advance, sorry for the long post.

    If the most important thing for you is keeping old text messages, notes, and voicemail, then you'll need to sync the phone from your existing backup. I know of no other way to access those items.
    Once you have synced to the new phone, check that you have those items that were important. Then you can reconnect your phone to iTunes, and change the sync settings to remove the apps or other items you no longer want to keep on the phone.
    iPhone backups are stored by iTunes; you can see them by opening your iTunes preferences, clicking on "Devices" and then looking in the window. You can delete old backups from here. I don't know how you can open/read the backups though.
    I don't expect you'd have any problems syncing from your old phone's backup, but it's definitely an either/or situation. Since you got rid of the old phone already, it's too late to email yourself your notes, or copy the text messages. Your previous backup is your only solution.

  • Interview Questions related to Warehouse management

    Hi all
    Can u please help me regarding  Interview Questions related to Warehouse management
    Thanks and Regds
    Daniel

    Have you searched in very first thread
    [Warehouse Management?|New to Materials Management / Warehouse Management?;

  • Questions relating to Groupware Integration (Outlook)

    Hello,
    I have few questions relating to groupware integration for Outlook:
    Q1) The "Relate to CRM" option in outlook add-in for end user is available only  in client side integration? Is it not available for server sider integration (i.e. in server side, end user cannot directly assign CRM account or Transaction to object in outlook the way it is done in client side)?
    Q2) Is there any end user interface (like add-on) available in server side?
    Q3)In client side - Can the outlook add-on for SAPCRM be enhanced for different business logic or look n feel?
    Thanks,
    Vicky

    Hello Vicky,
    1) Yes the Relate to SAP CRM function is part of Client-side groupware only.
    2) The Add-in is only available with Client-side groupware.
    3) The Add-in cannot be customized. However the results can be influenced by parameters in transaction GWIPROFILE.
    The information displayed in the Business information Pane can be changed.
    Best Regards,
    Gervase Auden

  • Basic Questions related EHPs for SEM

    Hi Guys,
    I've some basic questions related to EHPs: -
    1. If we don't mean to implement any of the new functionalities does it make any sense to implement EHP? In other words do EHPs also have some general improments other than the functionalities which can be specifically activated?
    2. If we just activate a functionality and don't implement/ use it can there be any negative impact?
    3. In case of a pure technical upgrade from SEM 4.0 to SEM 6.0 which EHP would be recommended?
    4. Is there a quick way to find all relevant notes in EHPn which are related to corrections for EHPn-1?
    Thanks in advance,
    -SSC

    HI,
    If you see some of my older posts I have had many issues with certain features of the EHP2 functionality but that doesn't mean I would recommned against it.
    BCS 6 EHPs 3 & 4  (BCS 6.03 / 6.04) - enhancement packs worth implementing?
    BCS 6 EHP 2 (BCS 6.02) - activation of enhancement pack
    My recommendation is to implement the EHPs but not necesarrily activate the functions (in SFW5) unless you need them - this means that you will only have to test once after EHP implementation and will have the ability to activate the other features as and when required (although testing is required after activation of course) whereas it might be difficult to persuade your client/basis team to implement EHP4 later if you don't do it now.
    In the features of EHP2 (activate FIN_ACC_GROUP_CLOSE) it states that there is a general performance improvement - although I have yet to experience it! From OSS note 1171344 "The functionality which is available in EHP2 consists of...
    ... Performance improvements of status management, reporting and initial start-up of consolidation workbench and monitor.
    Since activating FIN_ACC_GROUP_CLOSE I have had many OSS notes requiring application but i discovered that when the technical team implemented the EHPs (before i joined this client) they somehow forgot the latest SP (support packs) and didn't upgrade to the current level - so make sure that you get the right SPs too (see the links in Greg's link above) to avoid the many OSS notes.
    As for your question - "is there a list of OSS notes to specific to EHP upgrades? - the answer is most definietly "NO" - I already asked OSS in desperation!
    however, you can see the OSS notes that i have applied listed in the above link ( BCS 6 EHP 2 (BCS 6.02) - activation of enhancement pack )

  • General questions related to Java

    Good evening,I would like to ask you some questions related to Java :
    1) class A {
    public int x=1;
    public int y=5;
    public A() { y=6; }
    public A(int a) { x=a; }
    public A(int a, int b) { x=a; y=b; }
    class B extends A {
    public B() {}
    public B(int a) { super(a); }
    public B(int a, int b) { super(a,b); }
    public B(int a, int b, int c) { x=a+b+c; }
    public B(int a, int b, int c, int d) {
    super(a,b); y=c+d; }
    public class Test {
    public static void main(String[] args) {
    B b4 = new B(1,1,1);
    System.out.println("b4.x: "+b4.x+" b4.y: "+b4.y);
    I cannot understand why y = 6.
    As i see it,i find it more logical that y = 5.
    Could anybody tell me why y becomes 6?
    How did we get into the constructor of A : public A() in order y to be changed?
    2) Well in an exercise i have to handle out we have to find the a,b,c of a program .Unfortunately i dunno about them,Can anybody explain to me what do they mean or attach me a link (e.g. a tutorial) in order to figure out?
    a)pre condition in Java
    b)post condition in Java
    c)invariant condition
    3)
    3) Fraction apple = new Fraction (1, 2);
    Fraction peach = new Fraction (4, 5);
    Fraction pear = apple;
    peach.halve();
    pear.halve();
    System.out.println(apple);
    System.out.println(peach);
    System.out.println(pear);
    It's the first time i see an object as a parameter in System.out.println.
    CAn anybody tell me when i can pass an object as an argument in System.out.println?
    Thanks in advance!

    How did we get into the constructor of A : public A() in order y to be changed?if you don't explicitly call a super constructor, the empty super constructor is called for you. If no empty accessible super constructor is available and no explicit call from subclass is made - compile error.
    CAn anybody tell me when i can pass an object as an argument in System.out.println?Whenever you want. Object.toString() will be called and the resulting String will be used. If the object is null, the String "null" will be used instead.

  • Question related to E-Business Suite (Business Group)

    Dear All,
    I just started my career as an oracle Functional Consultant (HRMS), I have questions related to Business Group
    - Why BG is a part of HRMS? Although we associates different profiles with it like, legal entity, which is used for financial purpose only.
    - Under which conditions we make more then on Business Group?

    Pl do not post duplicates - E-Business Suite queries related to BG

Maybe you are looking for