Can some one help me with this date stuff

Hello,
I wat to write a method that will take a date or a month and then return the time period
b4 that date or month..criteria would be like this..
if the pweriod is weekly then the enddate will be passed and it should return date that was 7 days
prior to the enddate. For e.g
enddate = 3 April 2002
the method should return
begindate = 27 March 2002
here is the method I am trying to work with...
what I am doing do far is a break down the date into integer values and then reconstruct the date again
...I am not being successful doing so..please take a look at my code and tell me what am I doing wrong
thanks
public static Date getBiginingOfPeriodDate(Date endDate){
Date beginDate = null;
Calendar calendar = Calendar.getInstance();
System.out.println("Date passed = "+endDate);
calendar.setTime(endDate);
int iDay = calendar.get(Calendar.DAY_OF_MONTH);
int iMon = calendar.get(Calendar.MONTH);
int iYr = calendar.get(Calendar.YEAR);
System.out.println("End date int values [ "+iDay+", "+iMon+", "+iYr);
calendar.set(iDay,iMon,iYr);
System.out.println("create end date from in values [ "+calendar.getTime()+" ]");
return beginDate;
}

If all you want to do is simple date arithmetic, such as subtracting 7 days from a date, just use the java.util.Calendar class, which provides methods (such as add) to do that for you. Don't "reinvent the wheel".

Similar Messages

  • I have installed IOS 7 in my 4S but still when i connect it to itunes i am not able to copy music from my Itunes to my Phone any idea why? can some one help me with this. I am using Mac book Pro.

    Hi All,
    Issue 1:
    I have installed IOS 7 in my 4s and when i connect it to my  Mac itunes it detects my phone but i am not able to copy  from the itunes  version 11.1 (126).
    can some one check why i am not able to transfer pics or music from my Mac to iPhone 4s and can let me know on this please.
    Issue 2:
    And to all my apps i am not getting automatic  pop up when i receive a message, It says "Please connect to itunes to use push Notification" can some one say how to go about his.
    Issue 3:
    when i try to launch my facetime from my phone.After entering my user name and password it not launching my Facetime or imessage. dont know whats the reason, I am not able to use both Facetime and imessage from my iphone 4s.
    Looking forward for your reply.
    reagrds
    sathish

    I have the same problem. I think that someone tried my iphone before me because when I want to reset it, I'm invited to enter a password that I didn't set. Also, when I go the Map application, the iphone indicate that I'm locateded in China while I'm in Tunisia. Now, I can't connect to my iphone to itunes, and I can't reset it because it ask me to enter a password that I didn't set.
    This is my post:
    https://discussions.apple.com/thread/4063223
    Please, we need your help.

  • Can some one help me with this project

    This project will simulate the behavior of an Integrity Subsystem in validating the data in a database.
    More specifically, assume there are 2 tables, A and B, in a given database. Table A has 4 integer
    attributes names a, b, c, d and table B has 4 integer attributes named e, f, g, h.
    Your program is to input up to 20 integrity rules as discussed below, and store them in some internal
    format of your choosing. Then enter up to 15 tuples for each table. For each tuple, check it against all the
    applicable integrity rules and print out an error message for each rule that is violated. If no rules are
    violated then print a message saying all it well and enter that tuple into the database. Do not enter a tuple
    into a database if any rule is violated for that tuple.
    There are 3 different types of integrity rules: Primary key, Foreign key, and Attribute.
    The formats for the rules are given below:
    Primary key: rule#, P, tablename, attribute name
    1 A or B a,b,c,d,e,f,g, or h
    The meaning of this rule is that the specified attribute name of the specified table is the
    primary key of that table.
    Foreign key: rule#, F, tablename, attribute name, tablename, attributename
    2 A or B a,b,c,d,e,f,g, or h A or B a,b,c,d,e,f,g, or h
    The meaning of this rule is that the first attribute name and tablename is a foreign key
    referencing the second attribute name and tablename.
    Attribute: rule#, A, tablename, attribute name, low value, high value
    3 A or B a,b,c,d,e,f,g, or h 0-9999 0-9999
    The meaning of this rule is that the attribute name in the specified table always have a value lying
    in the range of low value to high value inclusive.
    Your program should implement at least the following 10 rules
    Rules:
    1 P A b
    2 F A d B g
    3 A A a 10 20
    4 A B h 8 9000
    5 P B g
    6 A B g 0 100
    7 F A c B h
    8 A A b 10 30
    9 A B e 0 80
    10 A A a 8 30
    Page 2 of 3
    The following data is provided for your convenience to test the correctness of your program. Remember I
    will use these data and some other new data for the testing.
    Tuples: (Insert in this order)
    A 8 32 30 50
    A 10 20 30 40
    B 5 20 50 100
    B 8 30 40 200
    A 10 20 100 50
    A 10 22 100 40
    A 8 32 30 40
    B 30 40 50 60
    B 80 2000 0 0
    A 9 25 200 50
    A 12 25 60 50
    B 0 0 0 100
    A 10 10 10 10
    A 20 20 200 40
    A 0 0 0 0
    B 0 0 0 0
    B 50 50 50 50
    Specifications:
    1. You can just represent the provided 10 rules and new rules created by yourself in some
    internal data structures. Or you can store the rules in a text file and then read it one by one.
    2. The test data must be stored in a text file �tuples.txt� in which each line has one tuple and
    field items are separated by one or more blank spaces (not comma, or colons).
    3. Bring a project report at the beginning of the class on the due date. The project report
    should have a summary on how you finish the project. For examples, you should discuss
    some key data structures you chosen to store the rules and tuples, how you check the invalid
    tuples and insert valid tuples, and so on. I hope that after reading the report, I should get some
    ideas how you finish the project even without reading the source code.
    4. Also you should print out source code and include in the report. In addition, you need to
    copy the execution output results. I give a sample expected output for your reference. You
    can change it in any way but just make sure it is clear to read for users.
    Sample Outputs (for simplicity only three rules used in this example):
    Integrity Rules (total 3):
    1 P A b
    2 F A d B g
    3 A A a 10 20
    Tuples: (Insert in this order)
    T1: A 8 32 30 50
    Page 3 of 3
    T2: A 10 20 30 40
    T3: B 5 20 50 100
    T4: A 8 25 40 100
    Results:
    T1 is invalid (against rule 3), discard it!
    T2 is valid, insert to DB
    T3 is valid, insert to DB
    T4 is invalid (against rule 1), discard it!
    Summary:
    2 tuples (T2, T3) are inserted to DB
    2 tuples (T1, T4) are discarded
    5. Bring a floppy disk containing the source code and the project report word file. It should
    only have one directory named as your �Firstname.Lastname� For example, if your name is
    John Johnson, the directory name should be �John.Johnson� in the root (your wku email
    should be [email protected] also in most cases).
    Create a subdirectory �Report� to store the report word file. The report name can be
    �CS543_Project_2_Report�. Then create another directory named as �Code� to keep all the
    necessary files to run the program without any further configuration (including �tuples.txt�).
    6. Submit a zip file which contains all the files in your floppy disk to the �Digital Drop Box�.
    The zip file name must be �Firstname.Lastname.zip�. For example, if your name is John
    Johnson, the directory name should be �John.Johnson.zip�. So if I unzip the file, I should get
    exactly same files as the floppy disk.
    7. Follow closely �Program Scoring Rubric For CS Dept� and �Writing/Documentation
    Scoring Rubric for CS Dept�. Your project grading will be based on these two guidelines.
    At least, your code should have a perfect and consistent format style and include sufficient
    comments (generally > 20%) which explain possible confusions clearly. Also always try to
    use constant variables to denote numbers. For example, if you created 20 rules in total, you
    can define a constant variable such as in C++ �#define TOTAL_INTEGRITY_RULES 20�.

    So what is your question?
    People here are not generally inclined to read your homework, and then read your mind to find out what's giving you trouble.
    If you're absolutely lost and have no clue where to start, you should speak to you instructor or engage the services of a private tutor. These forums are simply not an effective venue for that kind of help.
    Otherwise, take your best shot, do as much as you can do, and then post specific questions about the specific bits that are giving you trouble. Be as thorough and precise as possible about what you're trying to do and what didn't work. Copy/paste the complete text of any error messages. Add println statements to your code and include comments like "I expected it to print xyz here but it printed abc".

  • Can some one help me with this problem with my frame???

    i have gt a veri strange problem with my program,that is teh graphic changes only when i resize the the frame,if i dun resize,it will remain the same.However what i intended is that when i click on the radio button,it will change immediately to the respective pages.A simple version of my code is below,can someone helpl me solve it??(there is 3 different class)
    import java.awt.event.*;
    import javax.swing.*;
    public class MainPg extends JFrame implements ActionListener{
         private javax.swing.JPanel jContentPane = null;
         private javax.swing.JPanel buttons = null;
         private javax.swing.JRadioButton one = null;
         private javax.swing.JRadioButton two = null;
         private javax.swing.JPanel change = null;
         public MainPg() {
              super();
              initialize();
         private void initialize() {
              this.setSize(300, 200);
              this.setContentPane(getJContentPane());
              this.setName("mainClass");
              this.setVisible(true);
         private javax.swing.JPanel getJContentPane() {
              if (jContentPane == null) {
                   jContentPane = new javax.swing.JPanel();
                   jContentPane.setLayout(new java.awt.BorderLayout());
                   jContentPane.add(getButtons(), java.awt.BorderLayout.WEST);
                   jContentPane.add(getChange(), java.awt.BorderLayout.CENTER);
              return jContentPane;
         private javax.swing.JPanel getButtons() {
              if(buttons == null) {
                   buttons = new javax.swing.JPanel();
                   java.awt.GridLayout layGridLayout1 = new java.awt.GridLayout();
                   layGridLayout1.setRows(2);
                   layGridLayout1.setColumns(1);
                   ButtonGroup group=new ButtonGroup();
                   group.add(getOne());
                   group.add(getTwo());
                   buttons.setLayout(layGridLayout1);
                   buttons.add(getOne(), null);
                   buttons.add(getTwo(), null);
              return buttons;
         private javax.swing.JRadioButton getOne() {
              if(one == null) {
                   one = new javax.swing.JRadioButton();
                   one.setText("One");
                   one.setSelected(true);
                   one.addActionListener(this);
                   one.setActionCommand("one");
              return one;
         private javax.swing.JRadioButton getTwo() {
              if(two == null) {
                   two = new javax.swing.JRadioButton();
                   two.setText("Two");
                   two.addActionListener(this);
                   two.setActionCommand("two");
              return two;
         private javax.swing.JPanel getChange() {
              if(change == null) {
                   change = new javax.swing.JPanel();
              change.add(new One());
              return change;
         public static void main(String[] args){
              new MainPg();
         public void actionPerformed(ActionEvent e) {
              change.removeAll();
              if("one".equals(e.getActionCommand())){
                   change.add(new One());
              else{
                   change.add(new Two());
              change.repaint();
    import javax.swing.*;
    public class One extends JPanel {
         private javax.swing.JPanel jPanel = null;
         private javax.swing.JLabel jLabel = null;
         private javax.swing.JPanel jPanel1 = null;
         private javax.swing.JLabel jLabel1 = null;
         private javax.swing.JLabel jLabel2 = null;
         public One() {
              super();
              initialize();
         * This method initializes this
         * @return void
         private void initialize() {
              this.setLayout(new java.awt.BorderLayout());
              this.add(getJPanel(), java.awt.BorderLayout.NORTH);
              this.add(getJPanel1(), java.awt.BorderLayout.WEST);
              this.setSize(300, 200);
         * This method initializes jPanel
         * @return javax.swing.JPanel
         private javax.swing.JPanel getJPanel() {
              if(jPanel == null) {
                   jPanel = new javax.swing.JPanel();
                   jPanel.add(getJLabel(), null);
              return jPanel;
         * This method initializes jLabel
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setText("one");
              return jLabel;
         * This method initializes jPanel1
         * @return javax.swing.JPanel
         private javax.swing.JPanel getJPanel1() {
              if(jPanel1 == null) {
                   jPanel1 = new javax.swing.JPanel();
                   java.awt.GridLayout layGridLayout2 = new java.awt.GridLayout();
                   layGridLayout2.setRows(2);
                   layGridLayout2.setColumns(1);
                   jPanel1.setLayout(layGridLayout2);
                   jPanel1.add(getJLabel2(), null);
                   jPanel1.add(getJLabel1(), null);
              return jPanel1;
         * This method initializes jLabel1
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel1() {
              if(jLabel1 == null) {
                   jLabel1 = new javax.swing.JLabel();
                   jLabel1.setText("one");
              return jLabel1;
         * This method initializes jLabel2
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel2() {
              if(jLabel2 == null) {
                   jLabel2 = new javax.swing.JLabel();
                   jLabel2.setText("one");
              return jLabel2;
    import javax.swing.*;
    public class Two extends JPanel {
         private javax.swing.JLabel jLabel = null;
         public Two() {
              super();
              initialize();
         * This method initializes this
         * @return void
         private void initialize() {
              this.setLayout(new java.awt.FlowLayout());
              this.add(getJLabel(), null);
              this.setSize(300, 200);
         * This method initializes jLabel
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setText("two");
              return jLabel;
    }

    //change.repaint();
    change.revalidate();

  • I have to make a catalouge for my services as a financial planner.. earlier i used to do in MS publisher.. now i have a mac book.. can some one help me with some software info with which i can design a catalogue??

    I have to make a catalouge for my services as a financial planner.. earlier i used to do in MS publisher.. now i have a mac book.. can some one help me with some software info with which i can design a catalogue??

    Depending on what your needs are, you may use Pages included in iWork or purchase it separately (usually there is an evaluation copy with any new mac, I guess) or try other publishing apps. I once used MS Publisher, I remember it was something like a more sophisticated word processor, right?
    You may try the cheaper DTP iCalamus or Word for mac.

  • HT204302 i get a message when I plug in my ipod to my laptop saying "cannot use this ipod because apple mobile device is not started" can any one help me with this...I have never had this happen before

    Hello anyone
    I get a message when i plug in my ipod touch saying "cannot use this ipod because apple mobile service is not started" can anyone please help me with this problem...I had this message once before but I forgot how to correct it

    From the More Like This section on the right:
    I get error message when I plug in iPhone 4s saying "This iPhone cannot be used because the Apple Mobile Device service is not started"
    can't get my ipod to connect to tunes error message "cannot be used because the apple mobile device service is not started"  fixes? Using Win XP
    im trying to connect my ipod to itunes and its saying it cannot connect because the "Apple Mobile Device is not started" help
    Or see: iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows

  • I can no longer see FaceBook notifications in my notification area on my desk top. Can any one help me with this?

    I can no longer see any Notifications from my FaceBook account in the notifications area on my Mac. I have it in the Notifications Area and it is still not providing me my notifications. Any suggestions?

    Hi Tammy56,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Click on the link to see more details and screenshots. 
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/TS3999?viewlocale=en_US
    Cheers,
    - Judy

  • Can some one help me with my wii please?@?@??!?!?!?

    ok, its not that i want ot know why this sems to be such a big problem, i just would like to know how to fix it! hopefully this isn getting old hat, but it seems to some times want to connect, and some times not( or atleast fund an access point), but when it does, i've entered the correct password i dont know how many times in a row, but it would not reconize the password, then i got it to by not entering a password at all..... only to have it fail the connection test..... yipee, and i thought nintendo was the mac of the game consoul world! itd be simply awesum, no MIRACLUS!, if some one could guide me thru step by step on how to set this up!!!
    HELP ME PLEASE!!
    -the big turd in the sky,
    turdfurgisin

    turdfurgisin, Welcome to the discussion area!
    Are you using an AirPort Express (AX) to create your wireless network?
    Are you using wireless encryption? If so what type (WPA2, WPA, or WEP)?

  • Can some one help me with diagnostic test result " apple mobile device driver not found"?

    I bought an iPhone 4gs 32gb from Singapore. iso 4. I'm living in Chennai, India. To connect it to my computer (windows XP,), I have downloaded iTunes 10.6.1.7. Unfortunately iTunes is not recognizing my iPhone.  I had tried to troubleshoot it by reinstalling iTunes (2 times). I have restarted the apple mobile device from control panel. I try connecting my iphone in another usb port. but no use. I don't know what am I missing?.  iTunes opens on my computer. but doesn't recognize my device. when I click on help. it says an "unknown error has occurred. your computer is not connected to internet. please check your internet connection and try again later". I don't know what to do? could you please help me? thank you so much for your help and time.
    when I update the usb driver (C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers.Double-click the usbaapl file.) I followed the procedure from this site. http://support.apple.com/kb/TS1538 when I finished, it says "the specified location does not contain information about your software"
    I did the apple's diagnostics test on my computer. I'm pasting the result for your info.
    Microsoft Windows XP Professional Service Pack 3 (Build 2600)
    System manufacturer System Product Name
    iTunes 10.6.3.25
    QuickTime not available
    FairPlay 1.14.43
    Apple Application Support 2.1.9
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.2.0.6
    Apple Mobile Device Driver not found.
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0013AC2C08548378
    Current user is an administrator.
    The current local date and time is 2012-06-28 15:23:45.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel(R) G41 Express Chipset
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:        {D85300A1-330D-41ED-AC5A-EC032B22FBF0}
    Description:            Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller - Packet Scheduler Miniport
    IP Address:             192.168.1.3
    Subnet Mask:          255.255.255.0
    Default Gateway:    192.168.1.1
    DHCP Enabled:      Yes
    DHCP Server:         192.168.1.1
    Lease Obtained:     Thu Jun 28 15:17:19 2012
    Lease Expires:       Fri Jun 29 03:17:19 2012
    DNS Servers:         192.168.1.1
    Active Connection: LAN Connection
    Connected:             Yes
    Online:                    Yes
    Using Modem:        No
    Using LAN:             Yes
    Using Proxy:           No
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was unsuccessful.
    The network connection timed out.
    Basic connection to the store failed.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    The network connection timed out.
    iTunes has never successfully accessed the iTunes Store.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.0.1),
    G: Optiarc DVD RW AD-7220A, Rev 1.01
    Drive is empty.
    **** Device Connectivity Tests ****
    iPodService 10.6.3.25 is currently running.
    iTunesHelper 10.6.3.25 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C8.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C9.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CA.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CB.  Device is working properly.
    Intel(R) N10/ICH7 Family USB2 Enhanced Host Controller - 27CC.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.

    I have the same problem. I think that someone tried my iphone before me because when I want to reset it, I'm invited to enter a password that I didn't set. Also, when I go the Map application, the iphone indicate that I'm locateded in China while I'm in Tunisia. Now, I can't connect to my iphone to itunes, and I can't reset it because it ask me to enter a password that I didn't set.
    This is my post:
    https://discussions.apple.com/thread/4063223
    Please, we need your help.

  • Can any one help me with this chat server

    The code below is of a client and server but the problem is that the msg can be sent only from the server and not the client I want that whenever a msg is sent from the server the control for writing the msg should go on to the client n den vise versa n should continue till the connection is terminated..plz help me....!
    CoDES
    for client
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.net.InetAddress;
    import java.net.Socket;
    import java.net.UnknownHostException;
    class client {
    public static void main(String[] args) throws IOException {
    Socket s =null;
    BufferedReader b=null;
    try{
    s=new Socket( InetAddress.getLocalHost(),98);
    b=new BufferedReader(new InputStreamReader(s.getInputStream()));
    catch(UnknownHostException u) {
    System.err.println("i dont know host");
    System.exit(0);
    String inp;
    while((inp=b.readLine())!=null){
    System.out.println(inp);
    b.close();
    s.close();
    FOR SERVER$
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    import java.nio.channels.ServerSocketChannel;
    public class server {
    public static void main(String[] args) throws IOException {
    ServerSocket s1=null;
    try{
    s1=new ServerSocket(98);
    }catch(IOException u1)
    System.err.println("could not find port 98");
    System.exit(1);
    Socket c=null;
    try{
    c=s1.accept();
    System.out.println("connection from"+c);
    catch(IOException e)
    System.out.println("accept failed");
    System.exit(1);
    PrintWriter out=new PrintWriter(c.getOutputStream(),true);
    BufferedReader in=new BufferedReader(new InputStreamReader(c.getInputStream()));
    String I;
    BufferedReader sin=new BufferedReader(new InputStreamReader(System.in));
    System.out.println("i am ready to type now");
    while((I=sin.readLine())!=null) {
    out.println(I);
    out.close();
    sin.close();
    c.close();
    s1.close();
    }

    What you need is to have two loops running at the same time. One for receiving messages and other for waiting user input. This can be done by using separate threads.
    For example after client has made connection to server, start a new thread that runs loop for receiving messages from the socket and printing them to System.out. Then in the default thread start loop for reading users input. The server could have similar structure.
    So, what I think you are looking for are threads.

  • HI i need help overclocking my acer aspire 5750-6872 can some one help me do this?

    Hi, i download the extreme tuning utility program, it tells me all the information that i need to know about the laptop but it does not let me use the manual tuning feature. I would like to know if anyone else has experienced this problem, and can help me figure out what is going on. I also have the intel turbo boost monitoring tool. (which is kind of useless at this point) The laptop is a acer aspire 5750-6872 intel core i5-2430M 2.4GHz with turbo boost up to 3.0GHz (can i use the turbo boost manually or is it automatic) I would also like to manually tune the graphic options as well, its a intel HD Graphics 3000, up to 1760 MB Dynamic video memory. 

    M325i,
    The turbo boost function is automatically controlled by the operating system, it is not something that can be manually operated.
    I do not believe there is any way to manually adjust the amount of video RAM to be used, other than in the BIOS, but even that is going to be limited on how much you could possibly set it to (if any adjustment at all), I believe it is dynamically done by the operating system as well.

  • Hi there, I have MacBook Air (Mid 2012) with OSX 10.8.2. I want to update to latest OSX but it is saying that I need to first install MBA Flash Firmware Update 1.1. When I try to install this firmware, I am told I should have OSX 10.8.3,can some one help?

    Hi there, I have MacBook Air (Mid 2012) with OSX 10.8.2. I want to update to latest OSX but it is saying that I need to first install MBA Flash Firmware Update 1.1. When I try to install this firmware, I am told I should have OSX 10.8.3, Each one asking other to update first, can some one help me in this regard ?

    If you don't already have a current backup, back up all data, then reinstall the OS.* You don't need to erase the startup volume, and you won't need the backup unless something goes wrong. If the system was upgraded from an older version of OS X, you may need the Apple ID and password you used.
    If you use FileVault 2, then before running the Installer you must launch Disk Utility and select the icon of the FileVault boot volume ("Macintosh HD," unless you gave it a different name.) It will be nested below another icon with the same name. Click the Unlock button in the toolbar and enter your login password when prompted. Then quit Disk Utility to be returned to the main screen.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    If you installed the Java runtime distributed by Apple and still need it, you'll have to reinstall it. The same goes for Xcode.
    *The linked support article refers to OS X 10.9 ("Mavericks"), but the procedure is the same for OS X 10.7 ("Lion") and later.

  • Report Scripts - Please Can Some One Help Me

    Hello Gurus,
    Is it possible to display 2 members of the same dimension in adjacent columns using Report Scripts? if not what is the best available option?
    Consider this Sample Outline
    +Product
    +-Cofee
    +---Cafined
    +-------1100
    +-------1200
    +---Decafined
    +-------1300
    +-------1400
    +-Soda
    +---Coke
    +-------1500
    The format of the desired report is
    ======= Jan Feb Mar
    1100 Cofee 8 8 8
    1200 Cofee 8 8 8
    1300 Cofee 7 7 7
    1400 Cofee 7 7 7
    1500 Soda 6 6 6
    ================
    Please Can some one help me in this regard!
    Thanks In Advance

    If I remember correctly when I wanted to do something similar I imported the report with the level 0 members into SQL Server and then joined on a mapping table (was a parent/child table in our case) to get the other column. In our situation we already had the mapping table readily available because this is where the dimension was built from!

  • I want to format my mac, can some one help me?

    I want to format my mac, can some one help me?

    This is done with Disk Utility when your Mac is booted from the OS X install disc.
    http://www.macusersguide.com/2009/05/reformatting-hard-drive/

  • I want to create org data profile in service scenario, with price determination from sales org, distribution centre , can any one help me with these

    i want to create org data profile in service scenario, with price determination from sales org, distribution centre , can any one help me with these
    IF I CREATE SERVICE ORG WITH SERVICE SCENARIO ORG DATA PROFILE,
    MY PRICING IS NOT GETTING DETERMINED AS IT IS LINKED TO SALES ORG AND DISTRIBUTION CHANNEL THROUGH PRICING DETERMINATION SO HOW TO DO THE CUSTOMIZATION FOR THIS SITUATION
    WITH REGARDS,
    SATHISH

    Hi Satish,
    Please assign the org det. rules to org det. profile with Sales and Service scenarios and then assign the org. det. profile to transaction type. The below screenshot is just for your reference.
    Hope it would fix your issue.
    Regards,

Maybe you are looking for