Controller Code

We have a 4402 controller running 5.0.148 code without issues that we know of.
We recently installed a WISM module in our 6513. It was running 3.X out of the box. Does that mean it has been on the shelf for awhile? Are there updated WISM on the horizon? I updated the WISM controllers to 4.2.112 per TACs suggestion. They said not to go to 5.X code. They said there was bug issues.
Is the 5.X issues related to just certain features or the WISM itself? We would like to use mobilty features between the WISM and the 4402. What common code should I be running on all the controllers? the 5.0.148 has been out a while. If there are bugs I'm wondering why they have not been addressed in a new release?

I have the WISM controllers at 4.2.112 and will leave them there until I hear otherwise on the 5.X code. I will join our production APs to the WISM controllers.
I plan to leave the 4402 controller at 5.X code with a few APs for testing.
Thanks for the advice.

Similar Messages

  • UIButton tag not available in controller code

    Hi, I have UIButton defined in InterfaceBuild. I assigned Tag (integer?) to the button. It has a IBOutlet in my controller code. But my controller can not retrieve the tag value by using:
    int tag = mybutton.tag;
    It is always 0 no matter what I set in Interface Builder.
    Why?

    I am new to interface builder and I'm not sure how to give each button a separate unique tag in interface builder. I can figure out how to access them in code once there set. This is probably something really simple that I'm missing.

  • Help in Controller Code-Urgent

    Navigation:
    By Clicking on HR UAE Employee SelfService responsibility,
    We get Professional Details
    In the Professional Details, we have to Click Competence Profile.
    By clicking on Competence Profile, it will navigate another page.
    In that Screen .there will list of Competences, Skills for particular Employee.
    Both Competence and Skill are going to Store in a same Column
    i.e. Attribute1 (column) in table per_competences.
    Based on the Attribute1 value we can differentiate the Skill and Competence.
    If Attribute1----Yes means it’s a Skill
    Attribute1-----No means it’s a Competence.
    For both Skill and Competence we have individual Correct marked pencil symbols are there.
    By Clicking on pencil Symbol we can edit the competences, skills.
    Imp Note: Both Skills, Competence having separate Pencil Symbols.
    Requirement:
    Now the Requirement is, the competence’s pencil marked Correct Symbol should be inactive,
    Skill Correct button should be active for an employee.
    Competence Correct button inactive means, the correct button should be visible in Shaded format. By Clicking on that nothing should be happen.
    And all the above requirement is specific to UAE Business Group only.
    Solution prepared by me:
    I have extended the Controller; I have defined one VO in Controller.
    I have moved this Extended Controller to the server path, and I bounced the apache, opmn servers.
    And I have added Custom Controller path in Personalization page.
    Result:
    The result im getting is, when login as an employee, In the Competence Screen it is allowing me when Im Clicking on Competence Correct box. It is navigating to another Page,
    In that Page there is Dropdown box (Profesiciency level).
    Previously it is having values like
    1-Unaware
    2-Aware
    3-perform under supervision
    4-perform Unsupervised
    5-lead / Coach perform Unsupervised
    Before to extending CO, it is showing like as above.
    After extending Controller, In the proficiency level (drop down box) the above values (1- Unaware, 2- Aware, 3- perform under supervision, 4- perform Unsupervised, 5- lead / Coach perform Unsupervised) are not coming. They are disabled.
    I think the controller code is effecting here. But it has to effect in the before screen, at correct box. The correct button should not allow when we clicked on that.
    OA Framework     12.1.1
    Oracle OA Extension     10.1.3 - build 1089
    Business Components     10.1.3.3
    Im giving Extended Controller Code. For code see below.
    package petrofac.oracle.apps.per.selfservice.competency.profile.webui;
    //petrofac.oracle.apps.per.selfservice.competency.profile.webui.xxskillupdationCO
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    //import oracle.apps.fnd.framework.webui.beans.message.OAMessageTextInputBean;
    import oracle.apps.per.selfservice.competency.profile.webui.OverviewPageCO;
    import oracle.apps.fnd.framework.OAFwkConstants;
    //import oracle.apps.fnd.framework.webui.beans.OAImageBean;
    import oracle.apps.fnd.framework.webui.beans.OAImageBean;
    //import oracle.apps.fnd.framework.webui.beans.OASwitcherBean;
    import oracle.jbo.ViewObject;
    import oracle.jbo.Row;
    public class xxSkillUpdationCO extends OverviewPageCO {
    public xxSkillUpdationCO() {
    public void processRequest(OAPageContext pageContext, OAWebBean webBean) {
    // String apprSysType = pageContext.getParameter("pSystemType");
    String apprSysType = pageContext.getParameter("pSystemType");
    super.processRequest(pageContext, webBean);
    //Get the Application Module
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    if (am.getOADBTransaction().isLoggingEnabled(OAFwkConstants.STATEMENT)) {
    pageContext.writeDiagnostics(this, "pSystemType = " + apprSysType,
    OAFwkConstants.STATEMENT);
    //Create a VO to query employee related information.
    ViewObject SkillUpdationVO = am.findViewObject("pfSkillUpdationVO");
    //Check if VO exists. If exists, then create the VO.
    if (SkillUpdationVO == null) {
    StringBuffer query = new StringBuffer();
    //check if attribute1 is yes or not
    query.append(" SELECT ");
    query.append(" ( ");
    query.append(" CASE ");
    query.append(" WHEN pc.attribute1 = 'Yes' ");
    query.append(" THEN 1 ");
    query.append(" ELSE 0 ");
    query.append(" END ) is_yes ");
    query.append("FROM per_all_people_f ppf, ");
    query.append(" per_competence_elements pce, ");
    query.append(" per_competences pc ");
    query.append("WHERE ppf.person_id = pce.person_id (+) ");
    query.append("AND pce.competence_id = pc.competence_id ");
    query.append("AND TRUNC(SYSDATE) BETWEEN ppf.effective_start_date AND NVL(ppf.effective_end_date, SYSDATE) ");
    // query.append("AND TRUNC(SYSDATE) BETWEEN pas.effective_start_date AND NVL(pas.effective_end_date, SYSDATE) ");
    query.append("AND ppf.person_id = :1 ");
    SkillUpdationVO =
    am.createViewObjectFromQueryStmt("pfSkillUpdationVO",
    query.toString());
    SkillUpdationVO.setWhereClauseParams(null);
    SkillUpdationVO.setWhereClauseParam(0,
    pageContext.getEmployeeId() + "");
    //execute the query
    SkillUpdationVO.executeQuery();
    if (SkillUpdationVO.hasNext()) {
    Row row = SkillUpdationVO.first();
    if (am.getOADBTransaction().isLoggingEnabled(OAFwkConstants.STATEMENT)) {
    pageContext.writeDiagnostics(this,
    "ATTRIBUTE1 =" + row.getAttribute(0).toString(),
    OAFwkConstants.STATEMENT);
    // pageContext.writeDiagnostics(this, "EndDate ="+row.getAttribute(2).toString(), OAFwkConstants.STATEMENT);
    if ("1".equals(row.getAttribute(0))) {
    OAImageBean hrCorrectImageBean=(OAImageBean)webBean.findChildRecursive("HrCorrect");
    hrCorrectImageBean.setFireActionForSubmit(null,null,null,false);
    /*OAImageBean hrCorrectImageBean=(OAImageBean)webBean.findChildRecursive("HrCorrect");
    hrCorrectImageBean.setFireActionForSubmit(null,null,null,false);*/

    OA Framework Forum would be the right place to ask this.

  • Multimedia Controller, code 28

    Hi,
    I use a Qosmio F45-AV412, running on Win 7 (recently re-installed).
    The system notifies me that there's no driver, on my computer, for the Multimedia Controller (code 28). I have tried to run the automatic update but Windows was "unable to find software" for my device. I have tried to uninstall the multimedia controller, then reboot, but nothing happened.
    I have read the discussions on the forum but, as far as I can tell, there is no solution that might respond specifically to my problem. I have also noticed that the media buttons on my front panel are unresponsive. I'm not sure whether the missing driver and media buttons situation are interrelated or there's just a coincidence.
    Can anyone help, please?
    There seems to be no explicit information on Toshiba's or Windows's sites relative to this particular issue which appears to be quite frequent among uses who shift from one OS to another.
    Marinela
    Solved!
    Go to Solution.

    How do I install Multimedia Controller in my A205-S6808.It doesn't have any at the moment.
    Marinela wrote:
    It's the Win 7 32-bit OS.
    The exact words were
    ' The driver for Multimedia Controller is not installed. Install the latest driver for this device.'
    Then
    'Windows was unable to install your Multimedia Controller. If you know the manufacturer of your device, you can visit its website and check the support section for driver software.'
    I downloaded and tried to install the Toshiba HD DVD Player application but what I got was
    'This application cannot be installed on this computer. Setup will be aborted.'
    I looked for the Toshiba playback/recording applications in the system, they aren't there. They must have vanished after I  had the Win 7 re-installed  as a result of  a HD replacement.
    Marinela

  • Controller Code 6.0.202.0

    Do you know if the new Controller Code 6.0.202.0 supports the 1260 AP?

    Hi,
    No.. the AP 1260 needs 7.0 and above WLC software version..
    http://www.cisco.com/en/US/partner/prod/collateral/wireless/ps5678/ps10980/data_sheet_c78-593663.html
    Lemme know if this naswered ur question and please dont forget to rate the usefull posts!!
    Regards
    Surendra

  • Downgrade versions of WLC controller code.

    Hi All,
    We have recently upgraded controller code to 7.3.101.0 from Version 7.0.116.0. after that users started reporting wirless disconnction issues.
    we wanted to roolback to older code 7.0.116.0.
    But WLC shows....
    Primary images as 7.3.101.0
    Backup images as 7.2.110.0
    We need some clarification to procees further...please help
    Can we simply downgrade to 7.2.110.0 ? --- by setecting secondary code in WLC ... command -->Config boot --> by selecting seondary code.
    Is there any impact ?
    or upload 7.0.116.0 code on WLC and reload of WLC will work ?
    Thanks
    Sri

    Sri,
    First off... Did you upgrade the FUS image when you upgraded to 7.3? This FUS image is required when the WLC is upgraded to v7.2.x.
    Also note that if you have 3602 AP's you need v7.2.x.
    If you want to downgrade, just load the code you want and it will replace one of the code versions and I believe it will replace the secondary, but that doesn't matter. After you upload the code, then push that code to all the AP's. When that completes, interchange the image on the ap and verify that the ap image has the code you are going to as primary and then you can reboot the WLC.
    Sent from Cisco Technical Support iPhone App

  • Device Manager displayed " Mass Storage Controller (Code 28)"

    Greetings to all Members
    I am using AMD 64 x2 3800+ processor. MSI mortherboard K8N Diamond. Graphic cards, two units, Geforce GTX6600GT. I am running on Window XP SP2. I have also updated the AMD latest drivers.
    I noticed each time I log on the computer, the computer would prompt "New Mass Storage Hardware Found" and prompt the wizard to install new found hardware.
    I went to device manager and noticed the device status display "This drivers for this device are not installed (Code 28). I have also carry out all the steps as suggested from the device manager menu. Mass Storage Controller location is: PCI Slot 9 (PCI 3, device 0, function 0 is displayed at the Mass Storage Controller Display. The device Instance ID display "PCI\VEN_1095&DEV_3132&SUBSYS_710A1462&REV_01\4&14AECDBO&0&0060.
    Try update driver option but to no success. Have all the driver systems (in the CD) that came together with the system installed as well. Again to no success in resoluting the problem.
    To my horror after installing the drivers that I have downloaded from MSI website for the said board.
    I notice the Virtual drive program failed to initialize.and the following messages were displayed during the installation of the website drivers for the said mortherboard:
    There was a problem installing this hardware
    Mass Storage Controller
    An error occured during the installation of the device. The name is already in use as either a service or a service display name.
    Can someone please help me to resolve this problem? Any suggestion or advise would be sincerelt appreciated.
    Best Regards
    Harry
    Can someone please assist and provide me with some guidelines to resolve this problem.

    Hi Bas
    I manage to remove the yellow exclamation mark from the hardware, device manager by setting the Integrated Peripherals on Board Sil3132 mode from Sata to Raid.
    The Sata and Raid controllers is displayed and upon opening it up further, I noticed the following controllers are displayed:
    1 ) FarStone CDAWDM2001 SCSI Host Adapter.
    2)  Silicon Image SIL3132 SataRaid Controller.
    Do you think I have set the right thing? Your kind opinion on this. I am using BIOS version used is 1.A
    Thanks
    Best Regards
    Harry

  • S431 USB 3.0 eXtensible Host Controller Code 10

    In Device Manager this controller has a yellow flag and the device status is "This device cannot start. (Code 10)"
    I have attempted the following:
    1. Uninstalling/Installing drivers from Lenovo Support
    http://support.lenovo.com/us/en/products/laptops-and-netbooks/thinkpad-s-series-laptops/thinkpad-s43...
    2. Uninstalling ALL USB controllers and having Windows update them upon reboot.
    3. Hours of searching online but only seeing the same sorts of "fixes" i.e. uninstalling the controllers and ensuring I am using device specific drivers.
    Note: No pins are visibly bent or damaged in the USB port and I don't have anything plugged into them.

    Bump
    Note:
    I need advice regarding a possible "fix"
    Some forums suggest removing all power and resetting the CMOS. This would require me to open up the back and disconnect the battery.
    Will an action like this void my warranty?

  • 1522 and controller code

    Hi guys, 3 questions in here:
    What code do I need to run 1522 APs? Do I need the mesh code or the main code for the controller?
    Also, for using a mix of APs (1242 as mesh, 1242 as non-mesh and 1522) do i need also the mesh code?
    We already have the controller with a 4.1.217 regular code, can it be downgrade it to the mesh version code?
    thanks in advance!

    In order to run the 1522 APs, you will need to use the mesh code. I know that it is a hassle, but it is not recommended to run both mesh and non-mesh aps on the same controller. You would need two separate controllers. The only controller that will not currently take the newer mesh code is the older 2000 series controllers. The mesh runs a lot nicer on the newer codes. The release notes for the mesh codes will be able to give you more in depth information.
    Good luck.

  • Bug in Controller code

    Hi
    Thanks in Advance
    I extended the controller but it is showing error as
    Cannot find symbol: setItemDetailBranding(oapagecontext);
    Cannot find symbol: String manufacturer=NRgetManufactuer(am,invitemid,organizationid);
    For your reference the code is as follows:
    package oracle.apps.ego.item.eu.webui;
    import oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean;
    import oracle.apps.fnd.framework.webui.beans.OAFormattedTextBean;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.ego.item.eu.webui.EgoItemDetailPageLayoutCO;
    import oracle.apps.ego.item.eu.util.EgoItemContext;
    import oracle.apps.ego.item.eu.util.EgoOrganizationContext;
    import oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import oracle.apps.eng.changemgmt.webui.ChangeDetailPageCO;
    public class ChangeDetailPageEXTCO extends ChangeDetailPageCO
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processRequest(oapagecontext, oawebbean);
    NRsetupItemDetailContextInfoInProductBranding(oapagecontext, oawebbean, (OAPageLayoutBean)oawebbean);
    public void NRsetupItemDetailContextInfoInProductBranding(OAPageContext oapagecontext,OAWebBean oawebbean, OAPageLayoutBean oapagelayoutbean)
    int x=5; int y=6;
    OAApplicationModule am=oapagecontext.getApplicationModule(oawebbean);
    OAStackLayoutBean tmp = (OAStackLayoutBean)createWebBean(oapagecontext, "STACKLAYOUT");
    oapagelayoutbean.getProductBranding();
    setItemDetailBranding(oapagecontext);
    StringBuffer stringbuffer = new StringBuffer();
         EgoItemContext egoitemcontext = EgoItemContext.getItemContextObject(oapagecontext);
    EgoOrganizationContext egoorganizationcontext = EgoOrganizationContext.getOrganizationContextObject(oapagecontext);
    int invitemid=egoitemcontext.getItemId();
    int organizationid=egoorganizationcontext.getOrganizationId();
    String manufacturer=NRgetManufactuer(am,invitemid,organizationid);
    if(egoitemcontext != null)
    stringbuffer.append("<b>");
    stringbuffer.append(oapagecontext.getMessage("EGO", "EGO_ITEM", null));
    stringbuffer.append(": ");
    stringbuffer.append(egoitemcontext.getItemNumber());
    stringbuffer.append("  ");
    stringbuffer.append(oapagecontext.getMessage("EGO", "EGO_REVISION_CODE", null));
    stringbuffer.append(": ");
    stringbuffer.append(egoitemcontext.getRevisionLabel());
    stringbuffer.append("</b><br>");
                        if(!oracle.apps.ego.item.common.util.EgoUIUtil.isStrNull(egoitemcontext.getNIRNotice()))
    stringbuffer.append("<b>");
    stringbuffer.append(oapagecontext.getMessage("EGO", "EGO_ITEM_NUMBER_REQUEST", null));
    stringbuffer.append(": ");
    stringbuffer.append(egoitemcontext.getNIRNotice());
    stringbuffer.append("</b><br>");
    if(x==5)
    stringbuffer.append("<b>");
    stringbuffer.append(oapagecontext.getMessage("EGO", "EGO_ITEM_DESC", null));
    stringbuffer.append(": ");
    stringbuffer.append(egoitemcontext.getItemDescription());
    // stringbuffer.append(" (");
    stringbuffer.append("</b><br>");
         if(y==6)
    stringbuffer.append("<b>");
    stringbuffer.append(oapagecontext.getMessage("EGO", "EGO_MANUFACTURER", null));
    stringbuffer.append(": ");
    stringbuffer.append(manufacturer);
    // stringbuffer.append(" (");
    stringbuffer.append("</b><br>");
    if(egoorganizationcontext != null)
    stringbuffer.append("<b>");
    stringbuffer.append(oapagecontext.getMessage("EGO", "EGO_ORGANIZATION", null));
    stringbuffer.append(": ");
    stringbuffer.append(egoorganizationcontext.getOrganizationName());
    stringbuffer.append(" (");
    stringbuffer.append(egoorganizationcontext.getOrganizationCode());
    stringbuffer.append(")</b><br>");
    OAFormattedTextBean oaformattedtextbean = (OAFormattedTextBean)createWebBean(oapagecontext, "FORMATTED_TEXT_BEAN");
    oaformattedtextbean.setCSSClass("OraTipLabel");
    oaformattedtextbean.setText(stringbuffer.toString());
    oapagelayoutbean.setInContextBranding(oaformattedtextbean);
    Please Help me it is very urgent
    Regards
    Zaheer

    Hi,
    In jdeveloper, re type this line with auto completion.
    setItemDetailBranding(oapagecontext);re type as
    super.set... (now wait if setItemDetailBranding appears. If it doesn't,then child controller can't use. If appears, then check what type of parameter its expecting.)
    Abdul Wahid

  • VIA OHCI Compliant IEEE 1394 bus host controller Code 10 & 12

    Yesterday I finally got my motherboard so I did a clean XP installation (my first board had a falure). The board is a K8N Neo2.  The thing is that after the installation I could see an conflict in device manager.
    The device that shows a conflict is my IEEE 1394 bus host controller - VIA OHCI Compliant IEEE 1394 bus host controller.
    Yesterday it said:  This device cannot start (code 10)
    today it says:  This device cannot find enough free resources that it can use. (Code 12)
    Is ther anyone that can help me to get rid of this problem?

    try install the lastest edition of via driver

  • Satellite A200 PSAE6E: Controller code 28 in device manager after Win7 installation

    I have the same problem! I have an A200-PSAE6E with Windows 7. My device manager shows me a perfect SDA Standard Compliant SD Host Controller under SD host adapters. But it has a certain Mass Storage Controller, under Other Devices, and that one doesn't have a driver installed (code 28). I try to update it, but it doesn't find anything.
    Here on Toshiba's website I can't find the drivers for the card reader either. I think it's Card Reader Controller (there is a Flash Card Support Utility, but I'm almost certain it's the other one)
    There is a Card Reader Controller driver for Windows Vista 64, but my Windows 7 is 32. Do you think I should try that anyway? Do you think perhaps Toshiba won't even release a driver for that?

    > Here on Toshiba's website I can't find the drivers for the card reader either. I think it's Card Reader Controller (there is a Flash Card Support Utility, but I'm almost certain it's the other one)
    If you would click on More Info which is on the right of the driver page, then you could find all details about the drivers.
    The Flash Card Support Utility is not driver but utility (the name said everything) and this utility controls the FN buttons.
    Visit the Toshiba European driver page and choose your notebook model.
    Then try the Vista 32bit driver called Flash Media Driver (dont mix it with Flash Card Support Utility). The Flash Media Driver v 2.0.0.6 is for your Bridge Media Slot. This slot lets you insert either a SD card, Memory Stick (Pro) or xD picture card.

  • Prime 2.0 and Support for 7.6 Controller codea

    Does anyone know when Pirme 2.0 will support 7.6 WLC code?
    Let me know.
    thanks, rob

    HI Rob,
    Cisco PI 2.0 doent supports 7.6 as per cisco documentation :
    2.0 supports from  7.0 through 7.4.110.0
    http://www.cisco.com/en/US/docs/net_mgmt/prime/infrastructure/2.0/release/notes/cpi_rn.html
    PI 2.1 will support 7.6
    PI 1.4.1 supports 7.6.
    Regards

  • Error in GP CO(comp interface controller code) implementation

    Hi Frndz..
    I have 3 quires on GP n itz configurations those
    1)Am developing an GP callable Object , am following this doc
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0957cb6-5103-2a10-6d9d-a0a4d68c8bf1
    In the Interface component controller when i opend implimentation tab by default am getting an error like IGPWebDynproCO object has defined out of the class.
    And when an adding the IGPExecutionContext ele in bigen others also itz showing an error that this can't be resloved eventhough if am using Organise imports.
    Am using EP7.0 and WDP is 7.0.11 n JDK is 1.4.2_12.
    2) I gone through the "Time -Off process" in GP, in this app the approvel levels and approvers are declared at design time(offcourse approves can be at runtime also), i want to know how can we declare the approvel leves and approvers at run time , means as per the login user we need to decied his approvers n his approvel levels at runtime.
    3)In my laptop i installed EP 7.0 trail version n NWDS 7.0.9 n am using JDK is 1.4.2_09
    and in my laptop in "Time-Offprocess" i tried to edit(inactive) the process so itz giving Null pointer Exception but this not the case in my office server there itz doing well.And i placed the GP_API n TopLevel DCs in my NWDS 7.0.9 eventhough am not getting caf/eu/gp/api n caf/eu/gp/api/wd in my laptop but in my office IDE itz working.
    If anybady have any suggestions plz share with me
    Thnaks in Advance
    Regards
    Rajesh

    Not yet answered

  • RM CL-51 laptop driver missing (intel(r) 82801DBM LPC Interface Controller CODE 28

    As the heading i have an UNKNOWN DEVICE with a yellow ? beside it. the only thing i can see is it is to do with intel(r)82801DBM LPC Interface Controller with the CODE28 which is no driver installed. I went to intel and downloaded and installed the R114079
    driver but still the same. I have tried downloading the drivers from RM and running them but again no help. Can anyone help me with this. it would be much appreciated. i have just bought the laptopwith a fresh install so i think there is a missing driver but
    i cannot find it.,....

    Unfortunately the hardware drivers are the sole responsibility of the hardware manufacturer.  If the device is defective then there is nothing you can do in Windows to make it work.  You will have to have some hardware diagnostics run on your system
    by a computer repair technician.  Troubleshooting hardware problems are not within the scope these forums.
    You might obtain more information about the controller in one of the Intel forums where you will find people much more qualified to discuss issues with Intel hardware than here.
    Your Intel 82801 chipset is part of the Intel southbridge family:
    http://www.intel.com/design/chipsets/datashts/290655.htm
    Otherwise you will have to discuss the problem directly with RM technical support.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

Maybe you are looking for

  • Daisy Chain?

    Hello All! I am just wondering if you can Daisy Chain FW drives.......? I got some new LaCie Drives (LightScribe 16x FW, and the Bigger Disk). They both have FW.. the HD has FW800 as well, and that will more than likely be the connection between the

  • Schedule Report to WEBDAV location. Problem with webclient service

    Hi! I am having difficulties scheduling a report to a webdav location (Which is sharepoint). It had been working for about two weeks. My BO environment and the sharepoint location are on two different domains. I have been running webclient service in

  • TS1368 Has anyone found this article useful?  Any other suggestions to resolve the error, "cannot connect to the itunes store" ?

    Any other suggestions to resolve the error, "cannot connect to the itunes store" ?

  • SG200-08 Newbie Questions

    I have recently purchased the SG200-08 Smart Switch, but I have a few "newbie questions" about it as I get started using it. The on board firmware shows 1.0.1.0. Is that the latest firmware to the switch? Do I need to enable IPv6 Auto Configuration a

  • Apparently my new iMac can't handle GB?

    Today I was just playing around with garageband. I have a Line 6 Toneport Ux2 and I was using two mics if it makes any difference. Every once and awhile it would say something along the lines of "Disk too slow -10004" when i was recording. What is go