Quick Info about supported versions

Hi Guys,
could someone give me an update which B1 Versions and R/3 (or mySAP) Versions are currently supported by B1i. And if not yet, when will 2005A SP01 be supported.
Thanks in advance.
Regards,
Georg

Georg,
Please take a look at the link to the SAP Note attached as this should help.
https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=E¬e_numm=976682.
HTH,
Eddy

Similar Messages

  • *New Dates For* Upcoming Support Webinars & Info About Support

    Dear Oracle Primavera Customers:
    As of November 2009, the Oracle Primavera software support team has completed the migration and integration to Oracle Global Customer Support. This is an exciting time for the support organization, as we will now utilize and leverage the same tools and resources. Additionally, our clients will have one centralized location when contacting the support organization. We are sending this message to provide a brief reminder of how you can contact Oracle Support and where to go if you have questions.
    Contacting Support
    Please use your Oracle Support Identifier (SI) to contact Oracle Support either via the My Oracle Support portal or by telephone:
    - [My Oracle Support |https://support.oracle.com/CSP/ui/flash.html]
    - [Global Support Phone Numbers|http://www.oracle.com/support/contact.html]
    Support Identifiers were sent to directly supported customers in October 2009. If you misplaced your SI or never received one, please call the [Oracle Support hotline|http://www.oracle.com/support/contact.html] .
    If you contact Oracle Support by telephone, please note that Oracle's Customer Care team will take the call. The Customer Care team handles initial logging of all issues received by telephone, local language support and translation, exception handling, and handling of all non-technical questions and issues. The Customer Care team is available to handle all questions related to a customer's Support Identifier (SI) and can walk through the My Oracle Support registration process and logging of a new Service Request (SR), if needed.
    Technical Service Requests logged by customers either directly via My Oracle Support or via the Customer Care team will be automatically routed to the appropriate Primavera Support Engineer for technical issue triage, analysis, and resolution. Once your request is assigned to an Engineer, you can speak directly to the Engineer regarding the status of your request by calling the [Oracle Support hotline |http://www.oracle.com/support/contact.html] and entering your service request number. Doing so will transfer your call directly to the Engineer working on your request.
    Need Help?
    •Please plan to attend one of our upcoming live Support webinars. This webinar will review the information you need to work effectively with Oracle Global Customer Support. Below are the details for both the conference call and web conference for the webinars in late March and on April 1, 2010.
    [Primavera Webinar Conference Call Dial In Information |https://strtc.oracle.com/imtapp/app/imtdocvw.jsp?did=10274761&docToken=ZGlkPTEwMjc0NzYxJm1JRD02NDk3NDYyJmlzQ29udmVydGVkPXRydWUmaXNBcmNoaXZlPWZhbHNl]
    Pass code for the web conference and conference call is Primavera
    Web conference link is below each session date/time
    Tuesday, March 30, 2010 11AM US Eastern Time
    [https://strtc.oracle.com/imtapp/app/sch_mtg_details.uix?mID=6497462]
    Wednesday, March 31, 2010 2PM US Eastern Time
    [https://strtc.oracle.com/imtapp/app/sch_mtg_details.uix?mID=6497477]
    Thursday, April 1, 2010 11AM US Eastern Time
    [https://strtc.oracle.com/imtapp/app/sch_mtg_details.uix?mID=6497485]
    - For questions about your Support Identifier (SI), issues with My Oracle Support and/or questions about how to use My Oracle Support, please contact Oracle Support Customer Care by calling the [Oracle Support Hotline|http://www.oracle.com/support/contact.html] .
    - For questions about Oracle support processes, systems, the support model and/or training on My Oracle Support, please visit the [Primavera Welcome Center on My Oracle Support|https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=888813.1] .
    We look forward to speaking with you at an upcoming Support webinar and assisting you with your continued success with Oracle Primavera applications.
    Regards,
    Oracle Primavera Customer Support

    CREATE TABLE #Tickets (
    TicketNo VARCHAR(4)
    ,DateUpdated DATETIME
    GO
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-01'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-05'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-07'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-03'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-09'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-11'
    GO
    GO
    SELECT *
    FROM #Tickets
    GO
    GO
    CREATE TABLE #tempDist (
    NRow INT
    ,TicketNo VARCHAR(4)
    ,MinDate DATETIME
    ,MaxDate DATETIME
    GO
    CREATE TABLE #tempUnUserdDate (
    TicketNo VARCHAR(4)
    ,MissDate DATETIME
    GO
    INSERT INTO #tempDist
    SELECT Row_Number() OVER (
    ORDER BY TicketNo
    ) AS NROw
    ,TicketNo
    ,Min(DateUpdated) AS MinDate
    ,MAx(DateUpdated) AS MaxDate
    FROM #Tickets
    GROUP BY TicketNo
    SELECT *
    FROM #tempDist
    GO
    -- Get the number of rows in the looping table
    DECLARE @RowCount INT
    SET @RowCount = (
    SELECT COUNT(TicketNo)
    FROM #tempDist
    -- Declare an iterator
    DECLARE @I INT
    -- Initialize the iterator
    SET @I = 1
    -- Loop through the rows of a table @myTable
    WHILE (@I <= @RowCount)
    BEGIN
    --  Declare variables to hold the data which we get after looping each record
    DECLARE @MyDate DATETIME
    DECLARE @TicketNo VARCHAR(50)
    ,@MinDate DATETIME
    ,@MaxDate DATETIME
    -- Get the data from table and set to variables
    SELECT @TicketNo = TicketNo
    ,@MinDate = MinDate
    ,@MaxDate = MaxDate
    FROM #tempDist
    WHERE NRow = @I
    SET @MyDate = @MinDate
    WHILE @MaxDate > @MyDate
    BEGIN
    IF NOT EXISTS (
    SELECT *
    FROM #Tickets
    WHERE TicketNo = @TicketNo
    AND DateUpdated = @MyDate
    BEGIN
    INSERT INTO #tempUnUserdDate
    VALUES (
    @TicketNo
    ,@MyDate
    END
    SET @MyDate = dateadd(d, 1, @MyDate)
    END
    SET @I = @I + 1
    END
    GO
    SELECT *
    FROM #tempUnUserdDate
    GO
    GO
    DROP TABLE #tickets
    GO
    DROP TABLE #tempDist
    GO
    DROP TABLE #tempUnUserdDate
    Thanks, 
    Shridhar J Joshi 
    <If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

  • Need info about Support Package Stack

    Hi,
    Can anyone tel me what are the Support package stack released in XI 3.0 and what are the modification in each SPS.
    Please send the related Docs if anyone has.
    Thanks&Regards
    Sreedivia

    hi,
    check the below link
    http://help.sap.com/saphelp_nw04/helpdata/en/46/e45ab9db8166bfe10000000a1553f7/frameset.htm
    regards
    kummari
    Edited by: kummari on Jul 28, 2008 11:40 AM

  • Need some info about newest version of Illustrator

    I'm currently using my CS3 version of Illustrator, but wondering if Illustrator has grown to take in more of the great features that we used to have in Freehand. Here are the features I miss most from Freehand:
    1.) Able to name artwork and modify globally through search and replace function for artwork (change outline width, fill color etc.)
    2.) Here's the big one I need: Able to select multiple pieces of artwork and modify each in place. In other words, if you select three items and choose 'rotate each' they will each rotate by the specified amount, each in their place and not as a whole group.
    If the new version of Illustrator has taken on these or even just the number 2 need above, I will spring for the new CS5 package.
    Thank You,
    Ken

    1) No. But you can save selections and reload them. Create selections via Select > Same. Or save artwork as symbols, then edit the symbol. (All possible in CS3)
    2) You can already do that in CS3 (Object > Transform > Transform each or Effect > Distort & Transform > Transform Each)
    So, really, you can do everything you've mentioned already. CS5 hasn't made any new strides in these areas specifically.

  • Need info about graphics card supported with pre pro cs5

    Hi,
    I checked one information about supported graphics card  about pre pro cs5 on aodbe.com,
    http://www.adobe.com/products/premiere/search_result.html?manuSearchVar=1&modelSearchVar=0 &supportSearchVar=0&brand=&dataFormat=&version=CS5&device=graphic&format=&buttonSubmit=
    Under SUPPORT column it is mentioned for ATI and NVIDIA "Legacy support" and "Full support".
    What is the difference in "Legacy support" and "Full support"?
    I am not able to understand
    Vinay

    Premiere will use just about any graphics card to write to the screen so you may see what you are doing
    For hardware MPE you must use a specific nVidia card... or a non-supported nVidia card with a small hack
    For a list of supported nVidia CUDA cards go to the FAQ
    http://forums.adobe.com/community/premiere/premierepro_current/cs5_faq_sheet
    For others, the nVidia Hack http://forums.adobe.com/thread/629557?tstart=0

  • Need info about nvidia graphics card supported with premiere pro cs5

    Hi
    I need information about nvidia graphics card supported with premiere pro cs5
    If I have a computer(portable) with this video card or graphics card :
    nVIDIA® GeForce™ GTX  285M with 1GB DDR3 Video Memory available in Single or Dual (SLi) Configurations
    Microsoft® DirectX® 10 Compatible
    is it going to support MPE in premiere  pro cs5?
    Regards,
    Vinay

    To be clear:
    You asked about supported cards. Here is a list of supported cards. Others on this thread are telling you how to make an unsupported card function to some degree using a method that is not advocated by Adobe.

  • Need info about RH Server 6 and reports

    I'm interisted in RH Server 6 but I'm unable to locate much
    practical info about it on the Web site, and a call to sales didn't
    help. I need to know what I'm getting us into before I contribute
    our $2,000. Can anyone provide this information or point me to its
    location on the site:
    --I have system requirements from the Adobe site, but what is
    the "server" and what does installation and setup entail? About how
    how long does it take, or how difficult, to achieve operability?
    --According to a piece by John Daigle, the server component
    should be installed on a Windows server running IIS 5+. Is IIS a
    separate software or standart part of Windows server? If separate,
    what preparation should that server have before the installation in
    addition to installation of IIS?
    --I know nothing about security/firewall protocols. We will
    have our own and our customer firewalls to navigate. Are the server
    setup instructions adequate for setting all that up? Or are
    purchasers expected to have sys admins knowledgeable to set that
    up? Is that applied to the RH server or the Windows server? if RH
    server, how can I get a copy of instructions for my system people
    to review?
    --Have users found the RH server/RoboEngine reliable, once
    it's operable?
    --Is it true that the usage reports aren't customizable? Can
    additional usage data be specified in the RH server?
    --These report summaries are vague--Areas Requiing Help,
    Frequently Viewed Content--stating only that repoorts show the
    suchandsuch done "most frequently" or "most often." Does that mean
    the top 3, 5, 10 or what? Is there a way to track all of that
    activity from most to least?
    --The summaries of the reports Unanswered Questions and
    Frequently Asked Questions say that terms entered in the Search
    field are identified. Questions and terms aren't the same in my
    book--am I right that it captures anything entered? Can it do the
    same for the Index field?
    --I saw no RH server under downloads, or maybe missed it.
    Correct in guessing that a demo version is not available?
    --Is RH server user doc available on the web site? I found
    the Getting Started gude, which isn't much use in evaluating the
    product.
    I have additional questions, but if you can answer these
    questions or direct me to answers some of those may be covered.
    Thanks,
    Mike
    Access database.

    Hey, Mike!
    I found a few things for you. I'm in a hurry, so I'll list
    them quickly.
    For the Trial, go to the Adobe downloads page
    http://www.adobe.com/downloads/
    Then select RoboHelp Server 6 from the dropdown list. You
    will be asked to register (free) if you haven't already. When you
    arrive at the download page make sure you note the Trial Serial #
    To make it easier for you, its:
    1336-1033-2628-5062-0993-4570
    You can also find a RoboHelp Server 6 Getting Started Guide
    here
    http://www.adobe.com/support/robohelp/downloads/getting_started_rh6_server.pdf
    You were asking about IIS. Yes. As Colum says, this comes
    with virtually any version of Windows Server (or Windows XP
    Professional). However, you must install and configure it. I am not
    an IT or web administrator so it took me a while to learn, but
    amazingly I got it to work if you're patient and follow the steps.
    (I'm speaking of both IIS and Robohelp Server) Clearly IIS
    configuration is not a trivial thing and it is assumed that an
    author would have help and cooperation from the IT or Web Admin
    folks.
    As for customizing reports. At present, the existing reports
    are the only ones offered. Since these reports are generated from a
    database (Access, SQL Server or Oracle) I would think (haven't done
    it myself) that someone familiar with database adminstration could
    open the DB (after a backup that is) and be more creative with
    generating customized reports.
    You are right that the "Question" does in fact mean any
    search term or phrase that an end user puts in the search field.
    This is the string that is stored and reported as a question. In
    discussing this with the Adobe team at STC last month, they agreed
    that this was definitely a holdover from the legacy software and is
    due for a change sometime in the future.
    To answer your other question, text entered in the Index
    field is not stored in the database, only the search term field.
    Since taking on the old legacy product from eHelp and
    Macromedia, Adobe is focusing most of its attention on beefing up
    the client authoring app for the next version (Adobe RoboHelp 7).
    My assumption is that they are keen on improving the RoboHelp
    Server as well. I have passed along many feature requests along the
    lines you seem to suggest and hopefully the server will evolve
    along with the client app.
    Even with its limitations, my clients tell me RoboHelp Server
    provides very useful feedback to help them improve their knowledge
    base content to make it more helpful and responsive to users needs.
    They also like the searchability of PDF, Word, PPT and Excel as
    well...something which plain WebHelp without the RoboHelp Server
    does not do.
    I probably didn't get to everything, but hope this helps.
    John

  • Info about AD Domain Controller to which I'm connected

    Hi,
    Is there a way to find the AD Domain Controller to which I'm connected ?
    Some time I find the info in these file :
    /Library/Preferences/OpenDirectory/DynamicData/Active Directory/<MYDOMAIN>.plist
    under 'last used server' but this field is not always populated..
    Is there any other place where find or some command to use ?? (or even more info about the previous plist file and how is created/populated.. i have several Macsac on same domain but not all computers have the file populated in the same way..)
    Any help appreciated
    Thanks
    m.

    Some added toolbar and anti-virus add-ons are known to cause
    Firefox issues. '''Disable All of them.'''
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''Network.'''
    Look for '''Configure How Firefox Connects''' and press the '''Settings''' button.
    Check the settings.
    Some problems occurs when your Internet security program was set
    to trust the previous version of Firefox, but no longer recognizes your
    updated version as trusted. Now how to fix the problem: To allow
    Firefox to connect to the Internet again;
    * Make sure your Internet security software is up-to-date (i.e. you are running the latest version).
    * Remove Firefox from your program's list of trusted or recognized programs. For detailed instructions, see
    '''[https://support.mozilla.org/en-US/kb/configure-firewalls-so-firefox-can-access-internet Configure firewalls so that Firefox can access the Internet.]''' {web link}

  • Info about laptop

    Hello, can you help learn more info about laptop model dv6t? Thank you!

    Hello, thanks for your post.
    Please visit following link for obtaining all drivers available for dv6t:
    http://www8.hp.com/us/en/support-drivers.html?jump​id=hpr_r1002_usen_link1
    Also, you may want to visit following page for having more info about all dv6t models available:
    http://www8.hp.com/us/en/hp-search/search-results.​html?cc=us&lang=en&qt=dv6t+drivers&cat=SUPPORT_AND​...&
    Hope this helps!
    **I work for HP.**Please select the "Accept as Solution" button on the post that best answers your question. Also, you may select the "Kudos" button on any helpful post to give a quick thanks.

  • Info about prescott hangs reboot WinXP Sp2

    Some Microsoft info about Prescott and Celeron D cpu bootproblem after installing WinXP SP2
    http://support.microsoft.com/default.aspx?kbid=885626&product=windowsxpsp2

    Yes, more or less.
    They surley point at the MB manufacture´s, to to provide updated bios versions, but I don´t know about MS "Workaround"if it works.
    I have not got the problem myself.
    WORKAROUND
    To work around this issue until you can obtain an updated version of BIOS, use one of the following methods. ..............................

  • Info about Japanese iPlanet Directory server

    I am evaluating Japanese localized version of directory server.
    I am not able to find any document which can tell me about the
    localization of this product.
    I have following questions:
    1. What level of localization is done. Has console localized ?
    Does log messages localized.
    2. What env variables I need to set to see console GUI in Japanese
    3. Do I need to set some env variables (like $LANG) before running the start script.
    It is urgent for me, if somebody can answer these or point me to some good doc, it will great
    help to me
    Thanks
    - Bharat

    Hi,
    Info about japanese iPlanet directory Server.
    Gateway is localized for English, Japanese, French, Spanish, and German. You can configure the gateway to support additional locales.
    Language files are stored in /usr/iplanet/servers/dsgw/html/lang and /usr/iplanet/servers/dsgw/config/lang, where lang is defined in RFC1766.
    For example, language files for Japanese are stored in /usr/iplanet/servers/dsgw/html/ja and /usr/iplanet/servers/dsgw/config/ja[true]).
    Support for the character sets necessary to render a particular locale (language) must be available in the browser's configuration.

  • Is there another way of getting apps from the appstore without putting your credit card number in, ive heard about the itunes gift card thing can anybody just give me more info about that and how i can buy free things free things from the appstorepls help

    Is there another way of getting apps from the appstore without putting your credit card number in, ive heard about the itunes gift card thing can anybody just give me more info about that and how i can buy free things free things from the appstore...pls help as im only a teenager and have no credit credit and my parents dont trust me with theres and they dont care about the fact that you can set up a password/.... PLEASE SOMEONE HELP I WILL BE SO GRATEFUL... And i would really like to get the iphone 4 but if there is no way of etting apps without your credit number then i would have to get a samsung galaxy s3 maybe ...

    You can set up an Apple ID without a credit card.
    Create iTunes Store account without credit card - Support - Apple - http://support.apple.com/kb/ht2534

  • Error. your computer must be running a supported version of Microsoft Visio and a browser that supports opening files directly from Visio Web Access.

    I have the following inside my SharePoint server 2013 :-
    EnterPrise Wiki site collection.
    i have both "Excel services Application "& "Visio Graphics Service" running correctly.
    The problem i am facing is as follow:-
    when a user click on an Excel sheet or Visio document , it will be shown inside the browser without any problem.
    but if the user click on "Open in Visio" OR "Open in Excel" links inside the browser, they will get the following errors:-
    Sorry, but to open this workbook, your computer must be running a supported version of Microsoft Excel and a browser that supports opening files directly from Office Web Apps.
    To open this document, your computer must be running a supported version of Microsoft Visio and a browser that supports opening files directly from Visio Web Access.
    I have the following settings inside my PC:-
    Office 2010 for Excel, word, power point,etc.
    Visio 2013.
    i have disabled SharePoint foundation support for office 2013
    Can anyone advice on this please?

    Hi,
    Please try to reset the Internet Explorer settings or open Internet Explorer in In-Private browsing and then check if this issue occurs.
    If the issue persists, please try to access SharePoint in another computer with Office 2013 and then check if this issue occurs. Or repair Office and restart your server.
    Here is a blog about the same issue for you to take a look at:
    http://sharepointexit.blogspot.com/2013/12/sorry-but-to-open-this-workbook.html
    Best Regards
    Dennis Guo
    TechNet Community Support

  • HT5085 Gathering Info About your iTunes Library - Keep getting Network error

    I bought iTunes Match yesterday, and so far have not been able to use it.
    It gets to Stage 1: Gathering Info About Your iTunes Library and makes progress, but right at the end an error box appears saying:
    "We could not complete your iTunes request. The network connection was reset.
    Make sure your network connection is active and try again"
    Well I know the network connection is active as I was able to be charged for iTunes Match and have had no problems making other purchases. I went to Advance > Run Diagnostics Tests from Help in iTunes and ran the Network Connectivity Diagnostics and it reported no problems.
    Now I know how much Apple hate giving back refunds, but if people can't help, does anyone know how I can get my money back? If I click "Report a Problem" it simply takes me to the help pages. I tried contacting support but I received an email saying they can't help.
    I'm getting quite frustrated now, so I'm reaching out and hoping someone can help me?
    I've copied the diagnostic results below:
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    Dell Inc. Dell System XPS L502X
    iTunes 10.6.1.7
    QuickTime 7.7.2
    FairPlay 1.14.37
    Apple Application Support 2.1.7
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.1.1.4
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 003CA7C40B1E98E0
    Current user is not an administrator.
    The current local date and time is 2012-05-18 20:20:20.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce GT 540M 
    Intel Corporation, Intel(R) HD Graphics Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: bb5c046694c1f4c590202360da9f2bc5
    iPodService 10.6.1.7 (x64) is currently running.
    iTunesHelper 10.6.1.7 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {444AF521-4D63-434F-AC33-8F05DA9C6C64}
    Description:          Microsoft Virtual WiFi Miniport Adapter #2
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name:          {4F46CBF3-C53C-4615-AF14-B46B9785D100}
    Description:          Microsoft Virtual WiFi Miniport Adapter
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name:          {6D3CAB28-0C0B-4701-A440-B1A90BE75551}
    Description:          Dell Wireless 5540 HSPA Mini-Card Network Adapter
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          No
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name:          {8C130DAB-E810-4FA6-8946-1600FFE0DB2F}
    Description:          Intel(R) WiFi Link 1000 BGN
    IP Address:          192.168.1.69
    Subnet Mask:          255.255.255.0
    Default Gateway:          192.168.1.254
    DHCP Enabled:          Yes
    DHCP Server:          192.168.1.254
    Lease Obtained:          Fri May 18 20:01:40 2012
    Lease Expires:          Sat May 19 20:01:40 2012
    DNS Servers:          192.168.1.254
    Adapter Name:          {B32D9395-8937-42EC-BC5F-352D07958EDF}
    Description:          Realtek PCIe GBE Family Controller
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    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 NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2012-05-18 20:14:07.

    @ deggie, I wasn't threatening ANYONE. I was simply saying how frustrating this has become, seeing how I have been trying on my own to figure this issue out for more then a month with no results. Like I said in the beginning, I have not used any other account to purchase apps or other products on my phone. I have only ever used one account. There are 23 apps that are saying they can't sync. It directs me to authorize the computer, which I do but it doesn't change the outcome. If I proceed, I lose those 23 apps correct? Do I also lose all my text messages saved, and other things such as documents in the "notes"?

  • Hi, i have a A1186 Mac Pro 2008 Tower. Im running windows 7 64Bit on it. Im not sure about what version of bootcamp should i use to get the drivers. Someone please help me.

    Hi, i have a A1186 Mac Pro 2008 Tower. Im running windows 7 64Bit on it. Im not sure about what version of bootcamp should i use to get the drivers. Someone please help me.

    Boot Camp support:
    http://www.apple.com/support/bootcamp/
    Boot Camp FAQ:
    http://support.apple.com/kb/HT5639?viewlocale=en_US

Maybe you are looking for

  • Can I use  a MY Book Pro external 500 gig Triple interface HD with FCE?

    Hey everyone, I just recently bought a Macbook pro and purchased FCE HD 3.5. I want to purchase a high capacity external HD. I want it mainly for my projects with FCE and other members of the family will be backing up to it. I want to keep my project

  • How to include partner number dynamically in the archive filename ?

    Hi, I am working on IDOC archiving. Since we have a lots of IDOCs with the same Master IDOC name but coming from different partners, it would make sense to generate as much archive files as there are different partners. I have seen that the archive f

  • Non stock item requisition from the order

    Dear all, Material is not available in stores,i have enter the item category as N in the maintenance order ,system created the Purchase requisition & reservation of same material which will be further converted to Purchase order. When material goods

  • ? what is meant by 'desktop mode'

    Was trying to update Shockwave, but am told I have latest version. however the little test animation wont play. I'm newish to Windows 8.1 and perhaps need 'desktop mode' clarifying please.

  • Urgent ! Mon iphone affiche " aucune carte sim activer .... "

    BOnjour , Je demande de l'aide , car j'ai restaurer mon iphone après qu'il soit jailbreaker et une fois la restauration faite et après l'étape " connexion en wifi " l'iphone m'affiche ' Votre iphone n'a pas pue etre activer car le serveur d'activatio