COULD YOU PLS HELP ME TO FIX REPEATED OBJECT ISSUE.

Hello
We are migrating ND5 application into Iplanet. I am not getting
any idea to migrate the following ND code into Iplanet.Could
you please help me to fix problem.If anybody handled with repeated
objects could you please send migrate code for the following
ND CODE.
CSpRepeated repeated =(CSpRepeated) event.getSource();
CSpStaticText stFieldName =(CSpStaticText)
repeated.getDisplayField("stFieldName");
CSpStaticText stCurrentValue =(CSpStaticText)
repeated.getDisplayField("stCurrentValue");
CSpStaticText stNewValue =(CSpStaticText)
repeated.getDisplayField("stNewValue");
CSpStaticText stUpdateType =(CSpStaticText)
repeated.getDisplayField("stUpdateType");
CSpStaticText stAuthorisers =(CSpStaticText)
repeated.getDisplayField("stAuthorisers");
int index = event.getRowIndex();
Thanks
Rao
----- Original Message -----
From: "Yathiraju K" <yathiraj.kan@w...>
Date: Friday, July 6, 2001 10:27 pm
Subject: Re: [iPlanet-JATO] execution context
Todd,
Let me explain you this way. Suppose I set MaxdisplayTiles(150)
and there
are only 134 rows in the table. FirstTime it displays 134 rows.
Now my requirement is that if I press next button, and since there
are only
134 rows, I want to display the same set of rows,
i.e., 0-134 again on the click of next button. Now since the model is
getting executed in an incremental approach,
the no of rows returned are zero in the next web action. I wanted to
override this incremental approach which is incorporated in
the execution context as per my understanding( I suppose am not
wrong).
So I was trying to do setAutoRetrieveExecutionContext(context)
with context
being set to (0,9999) in beforeModelExecutes.
I want to execute the model from the starting of the table again.
And this
is not working.
Probably I should do this before calling super.beginDisplay().
thanks,
raju.
----- Original Message -----
From: Todd Fast <toddwork@c...>
Sent: Saturday, July 07, 2001 3:35 AM
Subject: Re: [iPlanet-JATO] execution context
Raju.--
I think this is what you would expect with these settings, no? If you set
maxDisplayTiles to 9999, but you only see 134 rows, there are no more rows
to display when the next button is activated. There are only 134 rows in
the result set. JATO assumes that if you tell it 9999 rows aredisplayable,
and invoke a Next web action, the result set is larger than 9999 rows.> Otherwise, what's the Next web action for?
Todd
----- Original Message -----
From: "Yathiraju K" <yathiraj.kan@w...>
Sent: Friday, July 06, 2001 8:51 AM
Subject: [iPlanet-JATO] execution context
I am working on a page which is bound to a model.
I am setting maxdisplayTiles(9999) in the constructor.
when it first retrieves the model while executing
autoRetrievingModel, I
am getting 134 rows. Thats fine.
The page has the next button fucntionality. When next time it
executesthe
model, it is taking offset as 9999 and zero rows are returned.
This has been noticed inspite of setting the following in the
beforemodel
executes.
DatasetModelExecutionContextImpl context = newDatasetModelExecutionContextImpl(0,9999);
setAutoRetrieveExecutionContext(context);
any solution to this is very much appreciated.
thanks,
raju.
[Non-text portions of this message have been removed]
[email protected]
[email protected]
[email protected]

Hi Rao,
I assume the code is a part of the viewbean , say pgAViewBean. And
pgAViewBean has a repeated field rB. In that case, the code can be migrated
as below :
String stFieldName = getRB().getStFieldName().stringValue();
Similarly for other fields.
int index = event.getRowIndex();
can be migrated as
int index = getTileIndex();
Thanks,
Subir.
SNR R wrote:
Hello
We are migrating ND5 application into Iplanet. I am not getting
any idea to migrate the following ND code into Iplanet.Could
you please help me to fix problem.If anybody handled with repeated
objects could you please send migrate code for the following
ND CODE.
CSpRepeated repeated =(CSpRepeated) event.getSource();
CSpStaticText stFieldName =(CSpStaticText)
repeated.getDisplayField("stFieldName");
CSpStaticText stCurrentValue =(CSpStaticText)
repeated.getDisplayField("stCurrentValue");
CSpStaticText stNewValue =(CSpStaticText)
repeated.getDisplayField("stNewValue");
CSpStaticText stUpdateType =(CSpStaticText)
repeated.getDisplayField("stUpdateType");
CSpStaticText stAuthorisers =(CSpStaticText)
repeated.getDisplayField("stAuthorisers");
int index = event.getRowIndex();
Thanks
Rao
----- Original Message -----
From: "Yathiraju K" <yathiraj.kan@w...>
Date: Friday, July 6, 2001 10:27 pm
Subject: Re: [iPlanet-JATO] execution context
Todd,
Let me explain you this way. Suppose I set MaxdisplayTiles(150)
and there
are only 134 rows in the table. FirstTime it displays 134 rows.
Now my requirement is that if I press next button, and since there
are only
134 rows, I want to display the same set of rows,
i.e., 0-134 again on the click of next button. Now since the model is
getting executed in an incremental approach,
the no of rows returned are zero in the next web action. I wanted to
override this incremental approach which is incorporated in
the execution context as per my understanding( I suppose am not
wrong).
So I was trying to do setAutoRetrieveExecutionContext(context)
with context
being set to (0,9999) in beforeModelExecutes.
I want to execute the model from the starting of the table again.
And this
is not working.
Probably I should do this before calling super.beginDisplay().
thanks,
raju.
----- Original Message -----
From: Todd Fast <toddwork@c...>
Sent: Saturday, July 07, 2001 3:35 AM
Subject: Re: [iPlanet-JATO] execution context
Raju.--
I think this is what you would expect with these settings, no?If you set
maxDisplayTiles to 9999, but you only see 134 rows, there are nomore rows
to display when the next button is activated. There are only134 rows in
the result set. JATO assumes that if you tell it 9999 rows aredisplayable,
and invoke a Next web action, the result set is larger than 9999rows.> Otherwise, what's the Next web action for?
Todd
----- Original Message -----
From: "Yathiraju K" <yathiraj.kan@w...>
Sent: Friday, July 06, 2001 8:51 AM
Subject: [iPlanet-JATO] execution context
I am working on a page which is bound to a model.
I am setting maxdisplayTiles(9999) in the constructor.
when it first retrieves the model while executing
autoRetrievingModel, I
am getting 134 rows. Thats fine.
The page has the next button fucntionality. When next time it
executesthe
model, it is taking offset as 9999 and zero rows are returned.
This has been noticed inspite of setting the following in the
beforemodel
executes.
DatasetModelExecutionContextImpl context = newDatasetModelExecutionContextImpl(0,9999);
setAutoRetrieveExecutionContext(context);
any solution to this is very much appreciated.
thanks,
raju.
[Non-text portions of this message have been removed]
[email protected]
[email protected]
[email protected]
[email protected]
The Information contained and transmitted by this E-MAIL is proprietary to
Wipro Limited and is intended for use only by the individual or entity to
which
it is addressed, and may contain information that is privileged, confidential
or
exempt from disclosure under applicable law. If this is a forwarded message,
the content of this E-MAIL may not have been sent with the authority of the
Company. If you are not the intended recipient, an agent of the intended
recipient or a person responsible for delivering the information to the named
recipient, you are notified that any use, distribution, transmission,
printing,
copying or dissemination of this information in any way or in any manner is
strictly prohibited. If you have received this communication in error, please
delete this mail & notify us immediately at mailadmin@w...
[Non-text portions of this message have been removed]

Similar Messages

  • HT203196 My macbook air 13inch got shutdown 3 times by itself. I tried installing SMC package as suggested but my computer is telling the update is not required. Could you please help me on fixing this issue. Thanks.

    My macbook air 13inch got shutdown 3 times by itself. I tried installing SMC package as suggested but my computer is telling the update is not required. Could you please help me on fixing this issue. Thanks.

    What version of OS X are you using? Exactly which MBA model do you have?

  • HT1414 Hello, I tried to to update my ipone 3s but it says it can not be activated. could you pls help

    I tried to upgrade my iphone 3s ios from 4 to 6 so that i can download some things on it. through the process it tells me that my iphone could not be activated. now I have no service or phone could u pls help?

    Generally this is a sign that the iPhone had previously been
    hacked/modified/jailbroken and the update relocked it to the
    original wireless carrier. If this is the case, only that wireless
    carrier can unlock your iPhone. You must contact them to see
    if they offer unlocking and if you qualify.
    What wireless carrier did you use before this problem?
    Does the app Cydia appear on your iPhone?
    What does it say when you look at Settings=>General=>About=>Carrier?
    Unauthorized modification of iOS
    http://support.apple.com/kb/HT3743

  • Could you pls help on  use exits   before  saving  the contract .

    i want to check the limitatin  before  saving the contract  in sap banking.
    for  contract creation  tcode is  FN1V or FNV1.
    Could you pls tell me the   use exits  if knows  anybody
    advance thanks.

    Hi Diva,
    use this exit.
    EXIT_SAPLFVDA_002
    if this is not suitable for u r req then go to SMOD press f4 then click on Information systems give FVVD in package then press enter.there u will get no of enhancement. search for u r rlant.
    Thanks

  • After this latest update to iOS 6, FaceTime and my WiFi network is not working for my iPhone 4S, could you please help me on what to do? I have already reset my network (which made it worst)

    Could you please help me to fix my iPhone 4S
    After the latest update we've had to iOS 6, I was not able to use FaceTime, it kept giving me an error that I was supposed to wait for an activation code which never arrived, after that I read many solutions which included resetting the networks, which I did to try and fix my problem. What this actually did was to break my network settings an now it doesn't recognize any wifi signal unless I have the router next to me and even the it is difficult.
    Now I don't have FaceTime or access to wifi with my iPhone!
    Please help me!

    Do a factory reset .. nothing will be deleted from your backups and you will be able to get access to them again.
    The Factory Reset Gen1-4.
    Unplug your TC. Hold in reset. and power the TC back on.. without releasing reset for about 10sec. When the status light flashes rapidly; release it.
    Be Gentle! Feel the switch click on. It has a positive feel..  add no more pressure after that.
    TC will reboot after a couple of minutes with default factory settings and will wipe out previous configurations.
    No files are deleted on the hard disk.. No reset of the TC deletes files.. to do that you use erase from the airport utility.

  • I can't see + - up down icons for repeating region. Could someone pls help?

    I can't see + - up down icons for repeating region. Could someone pls help?

    Please elaborate like what sort of repeating region, which version of Dreamweaver. Perhaps an image that will help us to understand the question.

  • Could you pls answer this

    What all the thing should be used in order to improve the performance and what all the thing should be avoided ?
    Explain abt control brk statement ?
    Could you pls give me clear explanation for CHECK,EXIT,STOP ?
    In real time, what is the steps which is used for transfer data - BDC
    whether call transaction,session method pls explain it
    And also explain about the include statement used in BDC
    Could you pls answer this

    Hi
    All this AT NEW, AT FIRST, AT END OF and AT LAST are called control break statements of Internal tables and are used to calculate the TOTALS based on sertain key fields in that internal table
    FIrst to use these statements the ITAB has to be sorted by the key fields on whcih you need the SUM of the fields.
    Some time you will get * when moving data from this int table to other table using these commands
    so you have to use
    READ TABLE ITAB INDEX SY-TABIX in AT..ENDAT..if you are using other fields between them
    DATA: sflight_tab TYPE SORTED TABLE OF sflight
                      WITH UNIQUE KEY carrid connid fldate,
          sflight_wa  LIKE LINE OF sflight_tab.
    SELECT *
           FROM sflight
           INTO TABLE sflight_tab.
    sort sflight by carrid connid.
    LOOP AT sflight_tab INTO sflight_wa.
      AT NEW connid.
        WRITE: / sflight_wa-carrid,
                 sflight_wa-connid.
        ULINE.
      ENDAT.
      WRITE: / sflight_wa-fldate,
               sflight_wa-seatsocc.
      AT END OF connid.
        SUM.
        ULINE.
        WRITE: / 'Sum',
                  sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
        SKIP.
      ENDAT.
      AT END OF carrid.
        SUM.
        ULINE.
        WRITE: / 'Carrier Sum',
                  sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
        NEW-PAGE.
      ENDAT.
      AT LAST.
        SUM.
        WRITE: / 'Overall Sum',
                  sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
      ENDAT.
    ENDLOOP.
    BDC
    BDC:
    Batch Data Communication (BDC) is the process of transferring data from one SAP System to another SAP system or from a non-SAP system to SAP System.
    Features :
    BDC is an automatic procedure.
    This method is used to transfer large amount of data that is available in electronic medium.
    BDC can be used primarily when installing the SAP system and when transferring data from a legacy system (external system).
    BDC uses normal transaction codes to transfer data.
    Types of BDC :
    CLASSICAL BATCH INPUT (Session Method)
    CALL TRANSACTION
    BATCH INPUT METHOD:
    This method is also called as ‘CLASSICAL METHOD’.
    Features:
    Asynchronous processing.
    Synchronous Processing in database update.
    Transfer data for more than one transaction.
    Batch input processing log will be generated.
    During processing, no transaction is started until the previous transaction has been written to the database.
    CALL TRANSACTION METHOD :
    This is another method to transfer data from the legacy system.
    Features:
    Synchronous processing. The system performs a database commit immediately before and after the CALL TRANSACTION USING statement.
    Updating the database can be either synchronous or asynchronous. The program specifies the update type.
    Transfer data for a single transaction.
    Transfers data for a sequence of dialog screens.
    No batch input processing log is generated.
    Differences between Call Transaction and Sessions Method:
    Session method.
    1) synchronous processing.
    2) can tranfer large amount of data.
    3) processing is slower.
    4) error log is created
    5) data is not updated until session is processed.
    6) generally used for back ground jobs.
    7) at atime we can update to more than one screens.
    Call transaction.
    1) asynchronous processing
    2) can transfer small amount of data
    3) processing is faster.
    4) errors need to be handled explicitly
    5) data is updated automatically
    6) for background n fore ground jobs.
    7) at atime we can update to a single screen.
    For BDC:
    http://myweb.dal.ca/hchinni/sap/bdc_home.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/bdc&
    http://www.sap-img.com/abap/learning-bdc-programming.htm
    http://www.sapdevelopment.co.uk/bdc/bdchome.htm
    http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/69/c250684ba111d189750000e8322d00/frameset.htm
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html
    Check these link:
    http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
    http://www.sap-img.com/abap/question-about-bdc-program.htm
    http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/
    http://www.planetsap.com/bdc_main_page.htm
    call Transaction or session method ?
    Regards
    anji

  • I want to learn SD , Could you pls send me the Reference Book names.

    Hi All,
    I want to learn SD , Could you pls send me the Reference Book names.
    and i heard about materials like Billing , Pricing , Shipping - Which material should i study first to understand baisc flow.
    Thanks in Advance.
    Regards,
    Nithi.

    Hi ,
    Instaed of a book i will refer you the help files of SAP .
    You can get there files at http://help.sap.com/
    An for SD the link is http://help.sap.com/saphelp_47x200/helpdata/en/92/df293581dc1f79e10000009b38f889/frameset.htm
    These files will help you a lot .
    even today also SD gurus take help from these files only.
    Regards

  • Wifi and bluetooth hardware missing in my ipod touch could any one help me to fix it?

    wifi and bluetooth hardware missing in my ipod touch could any one help me to fix it?

    If the following is your problem try the troubleshooting described within:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    Frequently it is due to  hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    If that is not your problem then we need more information about hur problem. How do you know the"hardware" is missing?

  • TS1398 My Ipad can't connect to WiFi.  I tried to reset and connect to the wifi network, it will divert me to the IOS page...could you please help? Thanks.

    My Ipad can't connect to WiFi.  I tried to reset and connect to the wifi network, it will divert me to the IOS page...could you please help? Thanks.

    Try a soft reset or turn the device completely off then turn it back on again. Also you can toggle Airplane mode on for about 10 seconds and then turn it off. Sometimes that resets the radio signal inside the device.
    A soft reset is basically holding onto the power button and the home button simultaneously together for about 10 seconds or until you see the screen flash and it should go completely black. Afterwards, tun the device back on like normally and see if that fixes the problem.

  • HT1212 i have forget the passcode of my iphone could u pls help me thanks

    i have forget the password of my iphone could u pls help me thanks.

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    Forgotten Restrictions Passcode Help
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    Also, see iTunes- Restoring iOS software.

  • Pls help my time capsule (4th gen) lost it files..I think it have a virus pls help me to fix it tnx..

    Pls help my time capsule (4th gen) lost it files..I think it have a virus pls help me to fix it tnx..

    1. Ethernet .. are you using ethernet?
    2. Change the name of the TC to short, no spaces and pure alphanumeric.
    3. In the file sharing page change the workgroup to WORKGROUP.
    4. In the same area, change the guest access to on read and write.
    5. If you setup homegroup on the PC get rid of it.. TC is not compatible with homegroup.
    6. Turn off ipv6 in the network settings for ethernet. (since you are going to be using ethernet).
    From Mac version utility it looks like this.
    Go to the admin tools and ensure that bonjour for windows is on.
    Manually type the IP directly into windows explorer.. do not open via MyComputer.
    \\10.0.1.1
    Because the error message is important.

  • Could you pls explain the "Get-Acl C:/Windows | fl" output?

    Could you pls explain the "Get-Acl C:/Windows | fl" output? There are some nos. what are those indicate?
    PS C:\> Get-Acl C:/Windows | fl
    Path : Microsoft.PowerShell.Core\FileSystem::C:\Windows
    Owner : NT SERVICE\TrustedInstaller
    Group : NT SERVICE\TrustedInstaller
    Access : CREATOR OWNER Allow 268435456
    NT AUTHORITY\SYSTEM Allow 268435456
    NT AUTHORITY\SYSTEM Allow Modify, Synchronize
    BUILTIN\Administrators Allow 268435456
    BUILTIN\Administrators Allow Modify, Synchronize
    BUILTIN\Users Allow -1610612736
    BUILTIN\Users Allow ReadAndExecute, Synchronize
    NT SERVICE\TrustedInstaller Allow 268435456
    NT SERVICE\TrustedInstaller Allow FullControl
    Audit :
    Sddl : O:S-1-5-80-956008885-3418522649-1831038044-1853292631-2271478464G:S-1-5-80-956008885-3418522649-1831038044-185
    3292631-2271478464D:PAI(A;OICIIO;GA;;;CO)(A;OICIIO;GA;;;SY)(A;;0x1301bf;;;SY)(A;OICIIO;GA;;;BA)(A;;0x1301bf;;;
    BA)(A;OICIIO;GXGR;;;BU)(A;;0x1200a9;;;BU)(A;CIIO;GA;;;S-1-5-80-956008885-3418522649-1831038044-1853292631-2271
    478464)(A;;FA;;;S-1-5-80-956008885-3418522649-1831038044-1853292631-2271478464)
    AliahMurfy

    Those numbers are
    generic access rights.
    The string representation of the access rights come from the FileSystemRights enumeration. Generic rights aren't included in that enumeration, so they show up as the numeric value. You can look up the generic mappings for lots of different objects on MSDN.
    The 3.0 beta of
    my access control module will translate generic access rights for lots of different objects, including files and folders. Here is a screenshot showing the generic rights being translated for a registry key (HKLM:\SOFTWARE) and a folder (C:\Windows):
    The helper function that does the translation is temporarily accessible in the beta version. It is called New-AdaptedAcl. You can play around with it to get a better idea of what's going on (but this command will be private before the final 3.0 version is
    released). Here's a screenshot of the helper function in action (the first command does no translation, it just gives a string representation of the numeric access mask; the second command does translation, but it doesn't merge similar ACEs with each other):

  • Itunes 10.6 doesn't recognize my iphone 4s 32gb, could you please help me?

    I bought an iPhone 4s 32gb from Singapore. 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.
    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.1.7
    QuickTime not available
    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 not found.
    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 0013AC2C0E8DEF50
    Current user is an administrator.
    The current local date and time is 2012-06-12 20:13:12.
    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:     Tue Jun 12 19:48:36 2012
    Lease Expires:       Wed Jun 13 07:48:36 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.1.7 is currently running.
    iTunesHelper 10.6.1.7 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.

    Well, you do not mention what computer OS you are using, so here are the support documents for both.
    Windows:     http://support.apple.com/kb/TS1538
    OS X:     http://support.apple.com/kb/TS1591

  • HT4623 Could you please help me to unlock my phone

    I have an iPhone 4 32GB (black)and it's already out of contract so I think it's eligible to unlock as well.
    Could you please help me to unlock my phone so I can use it with other carriers in other countries. I'll appreciate for your response.
    My IMEI numbers is: 012427009166282
    My hardware serial numbers is: 86025A71A4T
    Please let me know if you could help me out. Thanks again.

    ONLY the carrier to which it is locked can unlock it.  no one else.
    Contact that carrier and ask if they offer this service and if you qualify
    You should not leave your iphone information on a public forum.

Maybe you are looking for