Go live with Release

Hello friends,
what does this question mean, "when will you go live with your Release?" and why would someone on the other team who shares the same instance ask this to me.
thanks.

Hi Ronit,
Sounds like you are going live in different phases. So, Phase 1 would be release 1 so on and so forth. This might clarify your first question. If the other person is in R/3 and you are in BI, this makes total sense but, you are a better person to analyze why they asked you this question.
Thanks and Regards
Subray Hegde

Similar Messages

  • I'll just live with the terrible battery life on my iPhone 5....

    IMHO, each new iPhone has worse battery life than the one before.  I've come to expect this.  They claim the battery is better, but in real life use, this is simply not the case.  I've given up trying to figure it out, I'll bring it into the apple store tomorrow, maybe they'll even swap out the phone for me, but I doubt it will make a difference.  The battery is plain awful, but I'm never far away from a charger, whether it's in my car or office.  I've grown used to it at this point.  Nor am I going to do one of the 10,000 suggestions I keep seeing on here and other forums.  Restore as new?  No thanks, it's just the way I want it, I don't want to spend 6 hours loading everything again.  Turn off location services and apps?  What's the point of offering  a feature if you can't just leave it on and use it?  I have everything (well, almost everything) on.  Wifi, brightness all the way up, location services, it's all on.  Why?  I like using them.  That's why I bought the phone in the first place!
    So, the bottom line is: I'll live with it.  I'll live with having to charge it a few times a day, I'll live with the fact that it'll never be perfect.  I will go to the genius bar just for the heck of it, there are issues with iCloud not backing up, and wifi not as strong as the 4S, and sometimes the usage and standby times are identical, so perhaps mine is defective, but I doubt it'll make much difference.  Sure, 6.1, or 6.0.1 will be released soon to address these issues, as I'm convinced this is mostly a software issue, but at this point I'm done trying to figure this out.
    D

    Hello there, EdisonGurraj.
    The following Knowledge Base article should provide you with assistance in what steps to take to troubleshoot your iPhone's battery life:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Speifically:
    Battery life seems short
    Click ( www.apple.com/batteries/iphone.html) for tips on how to prolong iPhone's battery life.
    Try turning iPhone off and then on again.
    Connect iPhone to iTunes and restore iPhone.
    If the screen shows a low-battery image, the battery is low on power and needs to charge for up to ten minutes before you can use it.
    When charging iPhone, make sure to leave it charging until it is fully charged. You'll know the battery is fully charged when the battery icon in the upper-right corner of the screen looks like this .
    Note: When charging using a computer, don't connect iPhone to a keyboard. Also, the computer must be turned on and not in sleep or standby mode. If iPhone is connected to a computer that's not turned on or is in sleep or standby mode, the iPhone battery may drain.
    Cheers,
    Pedro D.

  • Archiso-live with slax support

    I found a way to make archiso scripts work like the old arch-live. By mounting the slax ext2 initrd has root filesystem. The idea is that archiso-live will be like the older arch-live based on slax but will have the archlinux kernel instead of slax kernel.
    I couldn't do this before cause the linux-live scripts would not load right in initramfs with archlinux kernel cause of missing kernel modules that would have been build in kernel with slax kernel.
    I got the system working by making a aufs union with /tmpfs/initrd and /real_root folder. Anyway i think i will share the code for you to understand:
    mount_tmpfs ()
    #if [ "x${ramdisk_size}" = "x" ]; then
    ramdisk_size="25M"
    #fi
    msg -n ":: Mounting tmpfs, size=${ramdisk_size}..."
    mount -t tmpfs -o "size=${ramdisk_size}" tmpfs /tmpfs
    msg "done."
    # args: ext2 file image
    _mnt_ext2_file()
    msg "::: Adding new real_root branch: ${1}"
    /bin/modprobe -q loop max_loop=255 >/dev/null 2>&1
    mkdir -p ${2}
    if ! /bin/losetup "/dev/loop${LOOP_NUM}" ${1} > /dev/null 2>&1; then
    echo "ERROR: Cannot mount loop device /dev/loop${LOOP_NUM}"
    echo " Couldn't mount all addons"
    break
    fi
    /bin/mount -t ext2 "/dev/loop${LOOP_NUM}" ${2}
    export LOOP_NUM=$(( $LOOP_NUM + 1 ))
    run_hook ()
    export LOOP_NUM="0"
    if [ "x${from}" != "x" ]; then
    BOOT_MOUNT="/live"
    fi
    if [ ! $(ls /dev/loop*) ]; then
    echo "Creating loop device nodes."
    mknod /dev/loop0 b 7 0
    mknod /dev/loop1 b 7 1
    mknod /dev/loop2 b 7 2
    mknod /dev/loop3 b 7 3
    mknod /dev/loop4 b 7 4
    fi
    if [ -f "${BOOT_MOUNT}/initrd" ]; then
    mount_tmpfs
    mkdir -p "/tmpfs/initrd"
    _mnt_ext2_file "${BOOT_MOUNT}/initrd" "/tmpfs/initrd"
    /bin/modprobe -q squashfs >/dev/null 2>&1
    /bin/modprobe -q sqlzma >/dev/null 2>&1
    /bin/modprobe -q unlzma >/dev/null 2>&1
    /bin/modprobe -q aufs brs=1 >/dev/null 2>&1
    /bin/mount -t aufs -o nowarn_perm,br:/tmpfs=rw aufs /real_root
    /bin/mount -t aufs -o remount,add:1:/tmpfs/initrd=ro aufs /real_root
    cp -Raf /lib/modules /real_root/lib/modules
    udevpid=$(/bin/minips -C udevd -o pid=)
    [ "x${udevpid}" != "x" ] && /bin/kill -9 $udevpid 2>&1 >/dev/null
    #Yep, we're bailing out here. We don't need kinit.
    msg ":: Passing control to Archlinux Initscripts...Please Wait"
    /bin/umount /sys
    /bin/umount /proc
    exec /bin/run-init -c /dev/console /real_root /sbin/init
    fi
    Right the moment its a ext2 filesystem of initrd on the livecd. I plan on changing it to squashfs so we can save 6mb or so. I copy the kernel modules cause i don't want anything missing even though its mostly has everything the linux-live scripts. Just don't want risk crashing the system with out some module that was build slax but not in archlinux.
    Anyways i hope this helps with the development of archiso.
    EDIT: Fix a typo. tmpfs can only understand M not MB for size.
    Last edited by godane (2009-01-13 19:50:08)

    I have just released the newer archiso-live with slax support.
    http://godane.wordpress.com/2009/01/13/ … 2-release/
    you can get the build scripts here:
    http://github.com/godane/archiso-live/tree/master
    I hope this helps.

  • ICS updation in Sony Ericsson WT19i (live with walkman)

    Hello..
    I have Sony Ericsson WT19i (live with walkman). Last day i updated the os version from Android 2.3.4 to ICS via Sony PC companian. Now i am experiencing something slow in the system. The most annoying thing is that, the caller image of android 2.3.4 is nice as it appears on the top in full width is missing and square type image is seeing now. Please help me if any one can find a solution to my problem.
    One more question Is it good to run ICS in 512mb RAM device? Or shall i downgrade it to Android 2.3.4? Is there any official means to go back?
    Please Help...
    Regards
    AJITH

    Sorry to hear about you being disappointed. Regarding the caller image this has changed in ICS and it doesn't look the same as it did before. This isn't a bug, its new design so there is no 'solution' for that.
    If it wouldn't be possible to run ICS on 512mb of RAM we wouldn't have released an ICS version for the LWW
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Does anybody has Msi Media Live with 5050e

    Hi to eveybody
    I have MSI media live and i would like to make an upgrade from my 4000X2 to 5050e
    I would to take the benefit of both greater speed and lower consumption
    But the catch is that MSI doesn't seems to official support 5050e but it s up to 4850e
    I emailed their online service support but the answer is that "AMD hasn't formally released 5050e so it is not tested therefore we can't  support it"
    So given the fact that this CPU is on sale from November i would like to know if someone took the risk and used this CPU and if it's OK!!!!
    Thanks in advance

    I know its has being long time but till late June i have a lot of work and i am still trying to find if anyone is using MSI Media Live with 5050e.I am afraid there is no other option than keeping my old cpu because 4850e seems hard to find.
    Anyone.....

  • How can you get OS Lion back if you already downloaded Mavericks?  I CANNOT live with the battery life of 2 hours!!  HELP

    How can you get OS Lion back if you already downloaded Mavericks?  I CANNOT live with the battery life of 2 hours!!  HELP

    Kappy wrote:
    Don't downgrade OS X without first erasing the drive. You cannot restore a Time Machine backup of Lion directly on top of a later version of OS X such as Mountain Lion or Mavericks.
    When you "Restore from a Time Machine Backup.", the drive will be erased for you, but yes, won't hurt to:
    Boot into Recovery (hold ⌘R on boot)
    Utility->Disk Utility->Erase Macintosh HD, then Repair Macintosh HD
    Quit Disk Utility
    Then Select: Restore from a Time Machine Backup.

  • Xperia Live with Walkman on Android 4.0.4 (with screenies)

    My Thoughts on Android 4.0.4 on Xperia Live with Walkman
    -Sleeker Font Style.
    -Camera Shortcut right from the Lock Screen.
    -Able to access the drop down notification bar even when locked.
    -Music Player access right from the lock screen
    -New Owner Info Option display
    -Face Unlock works great on Live with walkman.
    -Awesome new themes. Xperia NXT Style! Although they are only wallpapers, not the live ones seen on 2012 devices. My favorite is Tourquoise (Did I spell that right?)
    -The Performance Assistant will help you disable some of the apps that you dont need.
    -There it is! Official Android 4.0.4. Ice Cream Sandwich. OH YEAHHHH!!!
    -If you repeatedly tap on the Android Version Menu. This little Primitive Droid will surprise you. HEHE!!
    -Oh, and there's also a new logo when you start up your phone : SONY ONLY not Sony Ericsson, and in its ever-so-recognizable font style. =P
    -The Sony Ericsson Liquid Logo has also been changed to Walkman, with a bubbly and quirky animation.
    -Ill try to post screenies if I can.
    -Greatly Improved Android Browser. Seriously, It's WAAAAYYY smoother than the one in GB.
    -The Browser runs smoother than GB.
    -Websites with heavy flash content load smoothly. =D
    -Saved Pages Option to view pages offline.
    - Only Android provides true multitasking capabilities.
    - Hold the Home Button and you will be taken to this new recent/running apps tab. Swipe to the right and that app is closed. =D!!!
    -Widget Preview.
    - A NEW Gallery aside from the Xperia Gallery. The new gallery provides edit options. Like Picsart or Instagram or Adobe Photoshop Express. So, if you want to save some precious memory, stick with the gallery editing options =D
    -HD playback still smooth as ever. I don't know what the fuss is all about. =P
    -Images look fine as they did in gingebread. It really depends on shooting situations.
    -Captured 720p HD Videos doesn't lag for me. Play back is smooth. Same as in gingerbread.
    -Maybe, People are just not used to the new interface, but with a little bit of tinkering, you should get used to it in no time. =P
    -The New Camera Interface. It now includes a dedicated on screen camera button.
    -Captured Photos Quality are the same as in Gingerbread.
    -Captured 720p HD Videos run as smooth as in Gingerbread.
    - The New YouTube App interface.
    - The Lockscreen Music Player
    - There was a review about not seeing the clock due to the music player. Duhhh, you can see it at the upper right corner. =P
    - I love how the album art and the album name also appears. If you are like me who converts songs from youtube to mp3. A little app called Tune Wiki can help you edit its tags so you can enable infinity view. =D
    -The New Dial Pad, which provides Smart Dialing.
    -About the lagginess issue. It takes about 2-3 seconds to start. It depends on how many entries you have in your call log.
    -There's a workaround on it though, access it through Contacts.
    - RAM usage feels the same for me. Good Job on this one Sony. =D
    - I was really worried about RAM ever since I read Sony's article about GB and ICS. They did well on optimizing this one.
    - My screenshot is not the best there is since I was syncing Facebook inside Xperia. But, normally it has about 180mb used and 160mb free.
    - New APPS installed. Some apps like Wisepilot for Xperia can now be moved to SD card, thereby freeing more phone memory.
    - My New Homescreen. It retains the very convenient four corner bubbles.
    - 5 Widget Panes
    - A New Google Search Widget
    - Walkman Player. I was expecting the music player from the NXT series. Hehe, but I guess this will have to do. =D
    - I've never seen the refresh music library option even in the GB walkman player. Through experience, everytime I add a music file it gets added in real time. No refresh required...
    - Oh, and also... I think the speaker is a tad bit louder than before. Like 20% louder. I noted no distortions
    - The orange lights work as usual.
    - Still no customizable equalizer. This is a walkman phone. It has to have superb music customization capabilities. =P
    - Battery usage for me remains the same like in GB.
    -Monster Use/Heavy Gaming : 4 hours (HD games cracked for HVGA screens i.e. Asphalt 6 Adrenaline, Need for Speed, Shadowgun, Dead Space)  Although I doubt you could play that long due to the screen size and the cramps you may get from playing. Carpal Tunnel Syndrome anyone? Haha.
    -Internet Browsing : 6-8 hours
    -Video Playback using Stock Player and YouTube App : 6-8 hours
    -Video Playback using MX player : 4-6 hours (I use it for my .avi files)
    - I use Easy Battery Saver to Optimize battery performance.
    In Super Mode it can last up to 24-36 hours with only texts and calls which I think is pretty impressive. I can go on 16 hour hospital shifts without worying about charging my phone.
    In Normal Mode it can last 8-10 hours.
    -It really depends on how you use your phone. I strongly believe it greatly varies with every user.
    - Don't believe posts that say it doesn't run as smooth as GB. IT RUNS AS SMOOTH AS GINGERBREAD. EVEN BETTER. =P
    - Sleeker new user interface.
    - All of my apps and games still run smoothly on ICS. I'll keep searching for bugs.
    - The ROBOTO font is awesome.
    - I find the interface more intuitive and streamlined than GB.
    - Lots of new features implemented. i.e. Smart Dialing, Face Unlock, Performance Assistant
    - Icons have been remodeled.
    - I also love how fluid it is now when it switches screen orientation. =D!!
    - No bugs for me whatsoever.
    - I miss the quirkiness of the GB user interface. Like the transparency of the messaging app. But I guess, I have to move on, change is for the better.
    - A SOLID AND STABLE UPGRADE. NOW MY XPERIA LIVE IS COMPLETE.
    Problems:
    -Yes, the LED SMS notification doesn't work. But all other LEDs work. i.e. Yahoo Messenger, Incoming Calls, Twitter. I guess they may have overlooked this one. It's the only problem that I see. I find it livable still. Greater good for the greater number of people =P
    -THANKS TO SONY!!! A huge step on the right direction.
    -KIMOZAVE - NOOBIE SMARTPHONE USER

    hi kimozave, ur review seems to be full of praises for ICS, but I have gone through many threads on disadvantages of ICS, so very much confused if I should go with ICS update or not....
    can you plz tell how was is experience on:
    1. Dial pad - I have read its laggy.
    2. The phone is having a hard time authenticating wifi connection when using WPA encryption.
    3. Thumbnails in the gallery does not match the original picture.
    4. Phone dies at 10% battery remaining.
    5. SIM card keeps ejecting
    6. Camera is more laggy and image quality is poorer
    Thanks,

  • Scheduling agreement- With Release

    Dear All,
    Can anybody give the steps for Scheduling agreement with Release documentation from SPRO settings and ME84.
    Also Delivery schedule print settings with re to scheduling agreement also needed.
    Regards

    Hi
    You can refer the below link
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/75/ee1fa755c811d189900000e8322d00/frameset.htm

  • I lost the USB cable that came with my phone (wt19i Live With Walkman)

    I lost the USB cable that came with my phone (wt19i Live With Walkman). However, the charging power adapter still here.
    I don't have any other cable.
    My phone's USB port use Micro-B connector.
    If I buy a high quality USB cable with Micro-B connector, will it be compatible for both charging and data transfer?
    Is it necessary to buy the original Sony Ericsson USB cable? If yes, which model should I buy?

    http://www.sonymobile.com/gb/support/contact-us/
    Contact them and they should be able to help you
    Discussion guidelines.
    Message me or any other moderator to seek help regarding moderation.

  • How to connect to Xbox Live with the Actiontek GT704-WGB wireless router

    If the title got you here, then you are probably a Verizon DSL customer who is trying to connect your Xbox to Xbox Live with the Actiontek GT704-WGB wireless router and are getting nothing but errors saying, "your NAT is set too high", or, "Your MTU setting is too low", etc.  Well, after many calls to Xbox support, Actiontek support, and Verizon support, I finally came up with the solution myself.
    All that is needed is a little techie know-how about router settings and you'll do just fine!  However, if you are uncomfortable with doing it yourself (and it is really really easy to do!) then you can call Verizon support and have a tech support rep remotely conntect to your PC and make the changes for you: however, you have to speak with someone in advanced tech support and to do that you have to agree to a 1 year support contract to the tune of $14.95 per month in order for them to do it!  Scam???  You be the judge!
    So, here are the steps to take to get it working and by the way, YOU CAN NOT GET THE XBOX TO CONNECT TO THIS ROUTER WIRELESSLY!!  YOU MUST CONNECT YOUR XBOX TO THE ROUTER WITH AN ETHERNET CABLE IN ORDER FOR THIS TO WORK!!!  If you don't heed this warning, you will unfortunatly go through all the steps below, only to find that you get the same errors but, ethernet is faster than wireless so it's better!....right?.....right?   (hears crickets chirping)....right?  Oh well, I tried!  Also, you must have your Xbox on in order to change the router settings (which you'll see why later) Anyway, here's the steps:
    1) On your PC, open a browser window and type in the address bar:  192.168.1.1 and press enter.
    2) You will then see the interface on which you will make changes to the router's settings.  If at any time you are prompted for a username and password (which should happen right after you press enter) the defaults are: username: admin password: password.  If you have changed these, enter what you changed them to.
    3)Click on the icon on the top labelled "Advanced Setup"
    4)In the left section, click "WAN IP Address"
    5)At the warning screen, click "yes"
    6)Scroll down until you see "MTU setting" and enter 1370.  NOTElease don't be tempted to either enter 1500 or leaving it at 1500 (which is the default) because you might know that 1500 is the maximum at which this can be set which is TOO HIGH AND WILL NOT WORK!  Trust me and enter 1370 and then click on "apply"
    7)Click on the top icon labelled "Security"
    8)In the left column, click on "applications".  This is where we are going to open the 3 ports that Xbox Live uses to communicate with your Xbox.
    9)In the drop down box labelled "PC Name" select "Xbox 360". This is why you had to have your console on and connected cuz if you didn't, it would not show up on the drop down list!
    10)Under "category" click on the bubble next to "user"
    11)Click on "New" which is one of the blue buttons near the bottom.
    12)As for the rule name, I entered "Xbox" but you can put whatever you want but I'd use that so you know it's the ports you opened for the console.
    13)For protocol, select TCP. (Yes you will also open the same ports for UDP but for some reason if you select TCP.UDP instead of doing them seperatly it doesn't work.....I dunno why!?
    14)For all 3 "Port start", "Port End", and "Port Map Start" put the # 80.
    15)Click "apply"
    16)Now, select UDP and put the same port # 80 and again click "apply"
    17)Repeat steps 13 through 16 except with the numbers 3074 and 53, clicking apply after each one.  What you should have now on the bottom are a list of all the ports you opened, one TCP and one UDP for each number totalling 6 entries.
    18)Click "back" to return to the Applications screen.
    19)If you have to, select Xbox 360 for PC name, and click the bubble next to "user" and you'll now see the entry called "Xbox" or whatever you called it.
    20)Click that entry to highlight it and then click the blue "add" button to the left and then click "apply" at the bottom.
    21)Close the browser screen and turn off your PC and Xbox and any other hardware connected to the router.
    22)Turn the router off and unplug it and wait about 5 minutes.  It can take this long for any residual current in the router to dissapate and for the NAT table to clear itself.
    23)Turn on the router and wait for the internet light to come on green meaning the router has booted and has an internet connection.
    24)Turn on the Xbox AND ONLY THE XBOX!
    25)There is no need to go into network setting as when the Xbox is connected by ethernet, it automatically configures and connects intself.  You can, however go into network settings and perform a connection test but this to is not necessary.
    You now should be able to connect to Xbox Live!  If not, you've done something wrong and must either go through all the steps again or let Verizon do it for you (for a fee that is).

    I followed jtktlw's instructions to the letter.  Problem was I had already enabled UPnP before doing so.  Afterward I disabled UPnP and rebooted....no change.  I reset the MTU to 1500...boom, it works.  Seems for me all I needed was to open the right ports to get it to work.

  • I have a Power Mac G5 Dual 2.3 running 10.5.8, I understand that I can not upgrade to Lion, so what will happen to my Mobile me, which I can not live with out?

    I have a Power Mac G5 Dual 2.3 running 10.5.8, I understand that I can not upgrade to Lion, so what will happen to my Mobile me, which I can not live with out? Also will I be able to get Icloud to work?

    Hi Mary, the other so called "Features" of iClound will not work for like Syncing, but eMail will.
    MobileMe & dot Mac will still work last I heard.
    iCloud Mail setup, even in 10.4/10.5…
    Don't delete your old account yet. Just setup a new one in Mail>Preferences>Accounts, little plus icon. Choose IMAP as account type, not ,mac or MobileMe.
    IMAP (Incoming Mail Server) information:
              ▪          Server name: imap.mail.me.com
              ▪          SSL Required: Yes
              ▪          Port: 993
              ▪          Username: [email protected] (use your @me.com address from your iCloud account)
              ▪          Password: Your iCloud password
    SMTP (outgoing mail server) information:
              ▪          Server name: smtp.mail.me.com
              ▪          SSL Required: Yes
              ▪          Port: 587
              ▪          SMTP Authentication Required: Yes
              ▪          Username: [email protected] (use your @me.com address from your iCloud account)
              ▪          Password: Your iCloud password

  • Go Live With Oracle On Linux

    Hi all,
    I thought you guys might be interested to know that this stuff
    is used out there...
    I work for a Government property management company ( Housing
    New Zealand ), and they were looking at downsizing their systems
    infrastructure. A subset of the business was picked to pilot a
    downsized system.
    We ported from :
    "thin client" : Citrix Winframe, Developer 2000, HPUX , Oracle
    7.3
    to a :
    client server : Win95, Developer 2000, RedHat 6.0, Oracle 8.0.5SE
    Instead of running 80 users on :
    80 P300 PCs, Winframe Client +
    1 4xP200 Winframe/NT, Developer 2000 +
    1 HP-PA/Risc, HPUX ,Oracle 7.3.3
    We are running 5 users on :
    5 P300 PC Win95, Developer 2000 +
    1 P300 PC RedHat 6.0, Oracle 8.0.5, samba
    ( Obviously this was the pilot subset ! )
    Although this represents a "step backwards" in deployment
    architecture ( 3 tier - 2 tier ), it represented a decrease in
    cost infrastructure per user ( No Winframe/NT License, No
    expensive Proprietry hardware, only 1 ( Cheap ) propritary o/s (
    Win95 ).
    We went live with this beast on 1 Aug.
    The Redhat box has been rebooted once since them - not by us (
    Power outage at the site ).
    The server is just idling with 5 concurrent connections.
    Oracle 8.0.5/Redhat is rock solid as far as we can tell !
    ( with the right patches ....
    for those interested they are
    8.0.5.1 patchset
    redo log async write - bug 882446
    glibc patch
    setuid security patch
    Cheers
    Mark
    null

    Hi Mark,
    I am also running Oracle 8.0.5 in my RD6.0 machine.
    I installed Developer2000 into my win98 machine.
    I tried to login using the developer2000 into the
    oracle running under linux but connection cannot
    go through. I don't know the reason to this. Though
    I can use the SQL*Plus to connect to this database
    from win98, can you figure out what is wrong with
    my setup?
    Thanks,
    -Paul
    Mark Kirkwood (guest) wrote:
    : Hi all,
    : I thought you guys might be interested to know that this stuff
    : is used out there...
    : I work for a Government property management company ( Housing
    : New Zealand ), and they were looking at downsizing their
    systems
    : infrastructure. A subset of the business was picked to pilot a
    : downsized system.
    : We ported from :
    : "thin client" : Citrix Winframe, Developer 2000, HPUX , Oracle
    : 7.3
    : to a :
    : client server : Win95, Developer 2000, RedHat 6.0, Oracle
    8.0.5SE
    : Instead of running 80 users on :
    : 80 P300 PCs, Winframe Client +
    : 1 4xP200 Winframe/NT, Developer 2000 +
    : 1 HP-PA/Risc, HPUX ,Oracle 7.3.3
    : We are running 5 users on :
    : 5 P300 PC Win95, Developer 2000 +
    : 1 P300 PC RedHat 6.0, Oracle 8.0.5, samba
    : ( Obviously this was the pilot subset ! )
    : Although this represents a "step backwards" in deployment
    : architecture ( 3 tier - 2 tier ), it represented a decrease in
    : cost infrastructure per user ( No Winframe/NT License, No
    : expensive Proprietry hardware, only 1 ( Cheap ) propritary o/s
    : Win95 ).
    : We went live with this beast on 1 Aug.
    : The Redhat box has been rebooted once since them - not by us (
    : Power outage at the site ).
    : The server is just idling with 5 concurrent connections.
    : Oracle 8.0.5/Redhat is rock solid as far as we can tell !
    : ( with the right patches ....
    : for those interested they are
    : 8.0.5.1 patchset
    : redo log async write - bug 882446
    : glibc patch
    : setuid security patch
    : Cheers
    : Mark
    null

  • How can I remove an account and apps from another user from my Ipod. My nephew used to live with me and everytime I sync my Ipod his stuff is added to mine. I have no way to contact him for his password.

    I need to know how to remove an iTunes account associated with my computer. My nephew used to live with me but has moved out. Everytime I sync my iPod touch his stuff is added to my device. I have no way to contact him to get his password. How can I make this go away. He listened to music that is very offensive to me and I dont want it in my library or playlists. Any help would be greatly appreciated.
    Thank you in advance,
    Shelly

    You can use computer iTunes to help.
    Connect your iPod Touch to Computer's iTunes
    In iTunes, select your iPod Touch under DEVICES (left pane).
    On right pane select Music at the top.
    Now you can de-select the music/playlist or anything you don't want and click Sync button bottom right.
    You can do the above for Apps, Books, etc.
    You can of course, de-authorize the computer in iTunes menu Store.
    Note: That will make everything using his AppleID inaccessible.

  • How do I transfer files from a flash drive to iMac. I get a folder with "no name" which I can live with but I can't find any way to make the actual physical transfer of the files to the iMac.

    How do I transfer files from a flash drive to my new iMac?  I get a folder with "no name" that I can live with but I can't find a way to transfer the flass drive files to to iMac hard drive.

    What happens when you try to drag & drop the files?
    ~Lyssa

  • Backend System with Release 701 are not supported

    SRM 5.0
    Extended Classic Scenario
    CCM 2.0
    When updating the vendors in SRM system using TC - BBPUPDVD getting the below error message :-
    Backend System with Release 701 are not supported
    Have checked in table - BBP_BACKEND_DEST, the backend entry is properly maintained.
    Can any one advice.
    Regards,
    Jayoti
    Edited by: SAP jayoti on Dec 7, 2010 1:11 PM

    The problem is resolved for vendor relication after applying the below notes 1313972 and 1372175.
    ECC sandbox seems to be in 701 release. When the backend system ECC is in release 701, vendor replication fails with the error message that 'Backend system release 701 not supported'. We need to apply notes 1313972 and 1372175 to fix this issue. I have applied them in Sandbox and the issue is resolved now.

Maybe you are looking for

  • How to make IIS on Windows 7 visible from outside my home LAN

    Guidance Needed: How to make IIS on Windows 7 visible from outside my home LAN. I am building a learning/demo ASP.NET website on this Win7 PC, using VS2008.  I would like to share the website with a client/friend, so I need my local IIS to be visible

  • Changes in process order BOM

    Hello, I have a problem in process order. In the process order the quantity of one of the BOM item is different than the actual BOM. I have checked that BOM has not been changed. How do I find whether it was MRP that has exploded wrongly or there was

  • Connecting mac to windows printer

    i just bought a router and i have the internet working right on it now i need my computers to be able to print on my windows xp computer. My comp is a MAC and it wont print on my windows xp computer i know i have the printer in the network files beca

  • Query a query

    I am having a nightmare with this query. I am trying to use the results from 1 query and then use it in the second but it will only give me 1 result when the it should give me 5.  The first query returns 5 ids so the second should give me the same <c

  • Report for recieved, expiry dates of shelf life of materials

    Dear Gurus, I did nt find the solution in MB5M, because i want report for shelf life of materials based on recived date, expiry date, please share.