Downloadin​g Modules Problem

Hi
Looking at various threads, I realise I've probably gone wrong because I should've restarted before trying to install the software. However, I didn't know that so I'm now stuck in this lousy situation.
My software manager has been stuck on 3 of 609 for half an hour now. I could just try leaving it but judging from other threads, that doesn't make much of an impact. On the other hand, I am PETRIFIED about breaking the BB I've had for three days by unplugging the USB. I need some advice.
Thanks in advance. 

Hi
Not at all sure what you are trying to do having only just got the BB so -
Please provide the following (if not already supplied in this thread).
Blackberry Model
Carrier Name
Geographical location
Operating System Version Menu > Options > About - looks like v5.0.0.681
Any error statement or code
Exact nature of problem - the more info the better
Has BB being damaged
Has it been exposed to dirt or moisture - details please.
When this started and whether it started just after an update or new App download and which App or download
Blackberry Best Advice - Back-up weekly
If I have helped you please check the "Kudos" star on the right >>>>

Similar Messages

  • MSI 785GM-E51 and memory modules problems

     
    Could anyone help me with one problem. I have motherboard MSI 785GM-E51 and 4 memory modules GOODRAM GR 1333D364L9/2G. But when I'm inserting ALL modules my system not starting (even POST procedure). So working variants - when I'm inserting:
    - one module in first (boot) slot
    or
    - they inserted in first and third memory slots
    Any ideas?

    It is not motherboard problem, but processor itself - I have AMD Phenom II X4 965 Black Edition 3,4 Ghz Core Revision C2 and this revision (according to the article: http://www.fcenter.ru/online.shtml?articles/hardware/processors/27650#02) has problems with support memory modules DDR3-1333 Mhz more than 2 modules. Conclusion - either adjust BIOS settings concerning memory timings and memory controller voltage or replace this kind of processor with the same type but with core revision C3

  • Remote Function Module problem

    Hi Experts,
    I have written a Se38 progarm to execute a remote function module, so as to send some data out of the system. The receiving system is an XI system. Pls see below the code and the load at the XI end, I donno why and what mistake am I doing in the se38 program part, as a result of which, only part of the data is getting send to XI.
    REPORT ZRFC_ADAPTER.
    Data: it_final1 type standard table of zrfc_str with header line .
    it_final1-NAME = 'ARNAB'.
    it_final1-ADDRESS = 'ADDRESS'.
    it_final1-EMAIL = 'EMAIL'.
    it_final1-ID = 'ID'.
    CALL FUNCTION 'ZRFC_XI'
    IN BACKGROUND TASK DESTINATION
    'R32XIRFC'
    EXPORTING
    username = sy-uname
    tables
    it_final = it_final1 .
    break-point.
    COMMIT WORK.
    Clear it_final1.
    I have seen in debugging mode, after removing the "
    IN BACKGROUND TASK DESTINATION
    'R32XIRFC'", that the internal table " it_final1 " is working fine......
    The structure used in remote Function Module is
    IT_FINAL LIKE ZRFC_STR -- in tables parameter. and the structure of ZRFC_STR is as follows!
    NAME ZNAME CHAR 14
    ADDRESS ZADDRESS CHAR 40
    TELEPHONE ZTEL CHAR 20
    EMAIL ZEMAIL CHAR 40
    ID ZID CHAR 10
    Note that , apart from a COMMIT WORK statement, there is no other coding done in the SOURCE CODE part of the remote Function Module.
    The load in XI is showing as
    <?xml version="1.0" encoding="UTF-8" ?>
    <rfc:ZRFC_XI xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
    <USERNAME>RETAILDEV</USERNAME>
    <IT_FINAL>
    <item>
    <NAME>ARNAB</NAME>
    <ADDRESS>EMAIL</ADDRESS>
    <EMAIL />
    <ID />
    </item>
    </IT_FINAL>
    </rfc:ZRFC_XI>
    Note that EMAIL is actually a content of field EMAIL and not ADDRESS. But I donno why, it is behaving like this,,
    Pls note, this RFC has been imported completely in integration repository of XI, so we dont have to worry about any settings change or activities, left pending in XI.
    I am very sure, something is missing in the se38 code, pls suggest!!
    Regards,
    Arnab .

    Hi Arnab,
    I am having really doubt that there is problem in field mapping.
    COuld you please check the following.
    In the FM structure contains 5 fields as follows,
    NAME ZNAME CHAR 14
    ADDRESS ZADDRESS CHAR 40
    TELEPHONE ZTEL CHAR 20
    EMAIL ZEMAIL CHAR 40
    ID ZID CHAR 10
    In the Internal Table it has got 4 fields. Check the Mapping properly
    and data on each field.
    t_final1-NAME = 'ARNAB'.
    it_final1-ADDRESS = 'ADDRESS'.
    it_final1-EMAIL = 'EMAIL'.
    it_final1-ID = 'ID'.
    Thanks & Regards,
    Nagaraj Kalbavi

  • Adapter PI7.1 Module Problem

    hi,
    i'm facing a weird problem , i'll explain:
    I developed a module adapter to be able get the dynamic file name into a zip file because i'm using the AF_Modules/PayloadZipBean and as we know the name of the file inside  the zip in a standar way is static.
    The things is that i could do the task using the following code :
    public ModuleData process(ModuleContext moduleContext, ModuleData inputModuleData) throws ModuleException {
              //String SIGNATURE = "process(ModuleContext moduleContext, ModuleData inputModuleData)";
              Location location = null;
              AuditAccess audit = null;
              String unidadE,centro,unidadO =null;
              // Create the location always new to avoid serialization/transient of location
              try {
                   location = Location.getLocation(this.getClass().getName());
              }catch (Exception t) {
                   t.printStackTrace();
                   ModuleException me = new ModuleException("Unable to create trace location", t);
                   throw me;
              Object obj = null;
              Message msg = null;
              MessageKey key = null;
              try {
                   obj = inputModuleData.getPrincipalData();
                   msg = (Message) obj;
                   key = new MessageKey(msg.getMessageId(), msg.getMessageDirection());
                   audit = PublicAPIAccessFactory.getPublicAPIAccess().getAuditAccess();
                   audit.addAuditLogEntry(key, AuditLogStatus.SUCCESS, "BuildFileName: Module called");
              catch (Exception e) {
                   ModuleException me = new ModuleException(e);
                   throw me;
              try {
                   TextPayload xmlpayload = msg.getDocument();
                   DocumentBuilderFactory factory;
                   factory = DocumentBuilderFactory.newInstance();
                   DocumentBuilder builder = factory.newDocumentBuilder();
                   Document document = builder.parse((InputStream)xmlpayload.getInputStream());
                   NodeList nodosTablaProcesa = document.getElementsByTagName("TablaProcesa");
                   Element elementFPVM00 = (Element) nodosTablaProcesa.item(0);
                 NodeList nodoFPVM00 =elementFPVM00.getElementsByTagName("FPVM00");
                 Element elementRegistro =(Element) nodoFPVM00.item(0);
                 NodeList nodoRegistro = elementRegistro.getElementsByTagName("reg");
                 Element element = (Element)nodoRegistro.item(0);
                 NodeList valorNumcia = element.getElementsByTagName("NUMCIA");
                 Element valNumcia =(Element) valorNumcia.item(0);
                 NodeList valorNumAlm = element.getElementsByTagName("NUMALM");
                 Element valNumalm = (Element)valorNumAlm.item(0);
                 NodeList valorSubAlm = element.getElementsByTagName("SUBALM");
                 Element valSubalm = (Element) valorSubAlm.item(0);
                 unidadE =getCharacterDataFromElement(valNumcia);
                 centro = (getCharacterDataFromElement(valNumalm)).replace("'","");
                 unidadO =(getCharacterDataFromElement(valSubalm)).replace("'","");
                  String fileName = "RT"unidadEcentrounidadO".xml";
                  audit.addAuditLogEntry(key, AuditLogStatus.SUCCESS, "BuildFileName:" +fileName);     
                  if(fileName == null)     
                     xmlpayload.setContentType("text/plain;charset = "UTF-8";filename="defaultbeanfile.txt"");     
                  else     
                     xmlpayload.setContentType("text/plain;charset = "UTF-8";filename="" + fileName + """);     
                  audit.addAuditLogEntry(key, AuditLogStatus.SUCCESS, "BuildFileName:" +xmlpayload.getContentType());
                  inputModuleData.setPrincipalData(msg);
                  } catch (Exception e) {
                       ModuleException me = new ModuleException(e);
                       audit.addAuditLogEntry(key, AuditLogStatus.ERROR, "BuildFileName: Module Fail");
                       throw me;
                   return inputModuleData;
    the problem is when we transport this module to QA environment isn´t working , instead of put the dynamic file name is putting "untitled.txt" , in DEV everything is fine , do you know about some bugs in PI 7.1 ?? some notes that could help? 
    thanks in advanced
    my config in the file adapter is the following
    PROCESSING SEQUENCE
    BuildFileName   Local Enterprise Bean    contentType
    AF_Modules/PayloadZipBean   Local Enterprise Bean   zip
    CallSapAdapter  Local Enterprise Bean    2
    MODULE CONFIGURATION
    zip   zip.filenameKey   contentType
    zip   zip.mode             zipOne

    Hi Stefan ,
    for example in QA we have some diferences ,
    QA       SAP_XIAF -> 1000.7.10.6.18.20090211173100
    DEV     SAP_XIAF->  1000.7.10.6.13.20081124173200
    It seems like QA has an updated , but in QA is not working, do you know what packages could be causing this problem? at first sight i choose SAP_XIAF because the adapter framework ,
    The code seems correct on sight. Is the audit log entry with the file name available? Is this correct?
    Yes , when i saw the audit log in MessagingSystem monitor , i can see the well file name formed (ex "RT213AC00AC0000.xml") ,
    thanks

  • Mail Adapter Module Problem!

    Hi All
    I m facing a problem in implementing a custom mail adapter module.
    The scenario is to set the content type based on the file type. eg: if the file being sent is a pdf then content type should be "application/pdf".
    I hope the scenario is clear, please feel free to ask for clarifications.
    awaiting your replies.
    Regards
    Kapil

    Hi All
    I am able to fetch the file name now and set the content type based on the file name. But I m not able to change the name of attachment of mail. For reference, I m pasting the code here, please suggest how to do the latter part
    try {
                         // CS_GETCHADAT START
                         cid  = moduleContext.getChannelID();
                         Channel channel = new Channel(cid);
                         // Example to access a channel configuration parameter in a module: String someParameter = channel.getValueAsString("YourAttributeName");
                         // CS_GETCHADAT END
                        fileName = msgg.getMessageProperty("http://sap.com/xi/XI/System/File","FileName");
                        Payload attachment = msgg.getAttachment("MainDocument");
                             StringTokenizer st = new StringTokenizer(fileName, ".");
                             while(st.hasMoreTokens()){
                                  extension = st.nextToken();     
                        Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS, "RenameFile: filename " + fileName);
                        Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS, "RenameFile: extension " + extension);
                             // create new payload
                             Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS, "RenameFile: attchmntName " + attachment.getName().toString());
                             //provide attributes and content for the new payload
                             attachment.setName("Attachment :" + fileName);
    //                         msgg.setMessageProperty("http://sap.com/xi/XI/System/File","content-description",fileName);
                             attachment.setContentType("application/" + extension );
                             inputModuleData.setPrincipalData(msgg);

  • Qosmio G10-133: Cooling module problem - message appears

    I have recently received a message saying that there is a problem with the cooling system. The fan was making a very rough noise, now it is very quiet. I assume that I am in need of a Cooling Module? Can any one advise of the part number, the best place to buy a,d an approx. cost. Also if my diagnosis is correct.
    Cheers

    Hi All,
    I have the same overheating problem with Qosmio F10 message saying that I should return the computer for service. Well, I did. They replaced the fan and the problem continues. I would be grateful for any detailed information from anyone who has experienced this problem and had it rectified (by themselves or via service). I have spent about ten hours on internet ensuring that I have updated BIOS, tv tuner driver etc.etc.etc - I have done everything suggested on this and other sites (despite the number of people who are having a problem with it, the problem does not appear to exist for Intel or Toshiba). Many thanks in advance.
    M

  • ETax Module - Problems displaying in req, PO, invoice, Payment, reports...

    Hi,
    We are in the midst of a 12.1.1 implementation and we have encountered a significant problem with Oracle eTax module.
    Are there others that are encountered problems we are faced with?
    1. Currently eTax information is not displayed on any existing requisitions, purchase order, receiving, invoice, payment, reports or forms.
    2. eTax distinct tax accounts are not being applied to every transaction
    3. eTax has rounding errors, when processing small amounts having multiple distirbutions.
    4. eTax information is only generated on purchasing document, after accessing the Tools bar and selecting, 'Manage Tax'. If you don't do this step no taxes are applied.
    This is just a fluke or am I in the same boat as everyone else?
    Thank you in advance for your comments, advice and expert opinion.
    John

    11Albert11 wrote:
    bpont wrote:I am having similar problems...not sure if it's related, but have a look at my post: https://bbs.archlinux.org/viewtopic.php?pid=1253942
    We have the same Intel Chip Maybe some problem with the driver or de dri I'll try the SNA method to se if it helps.
    Using SNA in 20-intel.conf solved my problem, I see the desktop and programs right and I have Slim login back. But now I have another problem flash content in firefox is displaying weird and I think is not a flash problem because it happens in Chromium too.

  • Merge Module Problem - I think!!

    I had tried the trail version of Crystal Reports XI and was able to make it work in my applications just fine.  Now that I have purchased the product I have had nothing but trouble.  I can not get it to work even with the previous application that I had it working in.
    I have a Microsoft Visual Studio 2005 Visual Basic Windows application.  I have referenced the CrystalDecisions. CrystalReports.Engine, ReportSource, Shared, Windows.Forms.  I have also referenced BusinessOffice.Enterprise.BIAR.  I have created a setup application and it has detected the dependicies and included the merge modules.  I have tried it using different downloaded merge modules and it still does not work.  The error I get when I am trying to install the application is as follows:
    An error occurred during the installation of assembly 'BusinessObjects.Enterprise.Desktop.Agnostic.dll,Version= "11.5.3300.0",Culture="neutral",PublicKey Token="692fbea5521e1304"
    If anyone knows what direction to point me in on this one I would really appreciate it.  I need to move on with this application!

    Hi, I've had a similar problem in a project built in Visual Studio 2003, using Crystal Reports 10. I determined that on our build machine, the project was not being built with the right version of the referenced dependency: CrystalDecisions.Windows.Forms. In our case, at compile time, the build machine would check the GAC for that file and found the version 9 copy that was available. At runtime, version 9 was not available but version 10 was installed (by design) and we received the same error as you.
    To resolve the error, ensure that you are building using the correct version of your references. By 'correct', I mean use the same version at compile time as will be available at run time.
    I hope that helps! (I realize you posted the question 2 months ago, only stumbled on it now looking for the solution to my own, different, problem)

  • Ipod service module problem?

    On Christmas I got a 4GB ipod nano and everytime I plug it in a thing that says "ipod service module has encountered a problem and has to close" and won't read my ipod. I have the latest itunes and it worked on my brothers computer. Anyone know what I can do to fix it?

    http://docs.info.apple.com/article.html?artnum=304309

  • Strange module problem, modules not found

    Hi!
    Not sure if thois is the correct area but anyway...
    I have a really strange problem loading modules:
    Sometimes when booting it can't find my modules, in most cases (but not all) I have done a unclean shutdown so fsck needs to run (but it have happened at other times as well).
    And even if fsck pass without any problem I still have the same problem, even when trying to reboot a second time (clean shutdown).
    The only fix is to re-install kernel26 (and hope I still have it in the cache).
    Possibly related problem:
    I can only manually load modules by giving the whole path.
    Am I missign some setting?
    Some other setup problem anyone can think of?
    Any tip on what I need to check?
    BR,
    Mårten
    Last edited by Maos (2009-01-18 18:57:25)

    sudo pkgadd -d . SUNWcsu helped!

  • IDOC: Incorrect function module problem

    Hi,
    I am working on inbound IDOC processing. I created an extension for an IDOC. I created custom segment & included it in the extension that I created. The Message type was also custom. (I merely copied an existing standard Message Type for some other purpose). I also assigned Function Module to Message Type & IDOC type. I have other necessary settings configured as required. The problem that I am encountering is as follows:
    Incorrect function module IDOC_INPUT_SHPCPR called up
    Message no. B1044
    Diagnosis
    The function module IDOC_INPUT_SHPCPR, which was called for the application input, was not able to process the IDoc. A possible cause is that the IDoc has wrong message type or IDoc type.
    Procedure
    Please check the message type assignment for the application function module in the ALE customizing.
    Now to troubleshoot the above error, I made sure that I have an entry with FM. IDOC_INPUT_SHPCPR,  IDOC Basic Type ,custom  IDOC extension & custom Message Type. But even then I see the above error. This error appears as Status 51 for the test IDOC that I processed.
    Can anyone please tell me how to solve this? Thanks in advance.

    On line 49 of the function module :
    * Loop through the IDocs' control records
      LOOP AT idoc_contrl.
    *   Check the IDOCs message type
        current_mestyp = idoc_contrl-mestyp.
        PERFORM idoc_message_type_check
                     TABLES   idoc_status
                     USING    idoc_contrl
                              mestyp-shpcpr
                     CHANGING subrc.
    Perform looks like this ( in Include LV56IF0C...)
    FORM idoc_message_type_check
              TABLES   t_idoc_status  STRUCTURE bdidocstat
              USING    f_idoc_contrl  STRUCTURE edidc
                       default_mestyp LIKE edidc-mestyp
              CHANGING subrc          LIKE sy-subrc.
      IF current_mestyp <> default_mestyp.   " Here the variable default_mestyp has the value SHPCPR
        MESSAGE ID      msg-id             "Global variable
                TYPE    'E'
                NUMBER  msg-nr_wrong_function    "Global variable
                WITH    current_mestyp     "message type
                        'IDOC_INPUT_SHIPPL'"Your function module
                        f_idoc_contrl-sndprt     "Sender partner type
                        f_idoc_contrl-sndprn     "Sender number
                RAISING wrong_function_called.
    Again let me warn you that you will have to copy the entire function group V56I. Copying the function module alone will not help because there are many reusable subroutines in different includes of the function-pool.
    regards,
    Advait

  • Develop module problem in LR 4 not resolved by upgrade to LR 5

    I just upgraded to LR 5.  I was having this problem with LR 4 which I hoped would go away with the upgrade, but it hasn't.  I'm using Windows 7 64 bit.  In the develop module, the sliders change the histogram, but not the image in the main screen.  I do see the changes in the filmstrip below, but of course that's not adequate.  Also, sometimes in develop module the image doesn't even appear, just a gray rectangle.  I found on the forums that others had this problem, but there is nothing current about it, and it doesn't seem to have been resolved for others. I"ve rebooted several times without improvement.  Others previously tried a variety of maneuvers without success such as deleting preference file and uninstalling/reinstalling.  Please help as I am currently completely dead in the water.

    Have you Profiled and Calibrated your monitor using a hardware device such as Greytag Macbeth i1 Display 2 or Spyder one? If not this is possibly the problem.
    You can test if this is the problem by doing the following.
    a. Close Lightroom and other open software programs.
    b. Go to your Control Panel and under Appearance & Personalization click "Advanced settings"
    c. In the popup dialog select the "Color Management Tab then click on "Color management"
    d. (take a note of the current default monitor profile)
    e. In the list of ICC profiles Select "sRGB IEC 61966-2.1"  and set as the default monitor profile. (if it is not present click on the add button and a list of addition profiles on your system will popup the sRGB profile should be there select it)
    When done you can close all the dialog boxes.
    Try using Lightroom and see if the problem goes away. Post what your experience is so that more trouble shooting can be done.
    See the screen capture.

  • Catalyst 6500 Module problems

    Hi,
    We are almost a week dealing with a very instable 6500.
    What we see is that modules are undergoing a soft reset. When this reset fails the module has a faulty status. Resetting the module mostly solves the problem. But in some cases more then one module has this problem. Even the supervisor module is undergoing the same soft reset some time.
    Here are the messages that appear in the logging.
    1/07/2005,6:50:41,10.2.0.116,???,LOCAL,NOTICE,2005 Jul 01 06:47:58 %SYS-5-MOD_NOSCPPINGRESPONSE:Module 5 not responding... resetting module
    1/07/2005,6:50:41,10.2.0.116,???,LOCAL7,NOTICE,2005 Jul 01 06:47:58 %SYS-5-MOD_RESET:Module 5 reset from Software
    1/07/2005,6:50:43,10.2.0.116,???,LOCAL7,NOTICE,2005 Jul 01 06:48:00 %SYS-5-MOD_NOSCPPINGRESPONSE:Module 6 not responding... resetting module
    1/07/2005,6:50:43,10.2.0.116,???,LOCAL7,NOTICE,2005 Jul 01 06:48:00 %SYS-5-MOD_RESET:Module 6 reset from Software
    1/07/2005,6:53:36,10.2.0.116,???,LOCAL7,NOTICE,2005 Jul 01 06:50:52 %SYS-5-MOD_RMVDNLDSTOP:Download terminated for module 6. Module removed
    1/07/2005,6:53:36,10.2.0.116,???,LOCAL7,NOTICE,2005 Jul 01 06:50:52 %SYS-5-MOD_DNLDFAIL:Download failed for module 6
    1/07/2005,6:56:44,10.2.0.116,???,LOCAL7,EMERGENCY,2005 Jul 01 06:54:00 %SYS-0-MOD_NOSLCPRESPONSE:Module 1 SLCP not responding... resetting module
    1/07/2005,6:56:44,10.2.0.116,???,LOCAL7,NOTICE,2005 Jul 01 06:54:00 %SYS-5-MOD_RESET:Module 1 reset from Software
    What has been done:
    Since module 5 always reboots first, this card had been replaced. Then we replaced the supervisor. Since still cards where rebooting we replaced the entire chassis. The power modules have also been replaced.
    Anyone seen this problem before?
    Many thanks!

    SBRU_01> (enable) sh ver
    WS-C6509 Software, Version NmpSW: 7.3(2)
    Copyright (c) 1995-2002 by Cisco Systems
    NMP S/W compiled on Aug 1 2002, 17:18:44
    System Bootstrap Version: 5.2(1)
    Hardware Version: 2.0 Model: WS-C6509 Serial #: SCA041201PZ
    PS1 Module: WS-CAC-1300W Serial #: SON04301066
    PS2 Module: WS-CAC-1300W Serial #: SON04290510
    Mod Port Model Serial # Versions
    1 2 WS-X6K-SUP1-2GE SAD03384603 Hw : 5.0
    Fw : 5.2(1)
    Fw1: 5.1(1)CSX
    Sw : 7.3(2)
    Sw1: 7.3(2)
    WS-F6020A SAD03405664 Hw : 2.0
    2 48 WS-X6248-TEL SAD04130FP9 Hw : 1.0
    Fw : 4.2(0.24)VAI78
    Sw : 7.3(2)
    3 48 WS-X6248-TEL SAD0412056T Hw : 1.0
    Fw : 4.2(0.24)VAI78
    Sw : 7.3(2)
    4 48 WS-X6248-TEL SAD04130FJH Hw : 1.0
    Fw : 4.2(0.24)VAI78
    Sw : 7.3(2)
    5 48 WS-X6248A-TEL SAL05062YWP Hw : 3.0
    Fw : 5.4(2)
    Sw : 7.3(2)
    6 48 WS-X6248A-TEL SAL05106KV4 Hw : 2.0
    Fw : 5.4(2)
    Sw : 7.3(2)
    DRAM FLASH NVRAM
    Module Total Used Free Total Used Free Total Used Free
    1 65408K 43089K 22319K 16384K 9993K 6391K 512K 377K 135K
    Uptime is 0 day, 0 hour, 22 minutes
    SBRU_01> (enable) sh mod
    Mod Slot Ports Module-Type Model Sub Status
    1 1 2 1000BaseX Supervisor WS-X6K-SUP1-2GE yes ok
    2 2 48 10/100BaseTX Ethernet WS-X6248-TEL no ok
    3 3 48 10/100BaseTX Ethernet WS-X6248-TEL no ok
    4 4 48 10/100BaseTX Ethernet WS-X6248-TEL no ok
    5 5 48 10/100BaseTX Ethernet WS-X6248A-TEL no other
    6 6 48 10/100BaseTX Ethernet WS-X6248A-TEL no other
    Mod Module-Name Serial-Num
    1 SAD03384603
    2 SAD04130FP9
    3 SAD0412056T
    4 SAD04130FJH
    5 SAL05062YWP
    6 SAL05106KV4
    Mod MAC-Address(es) Hw Fw Sw
    1 00-30-80-f7-7a-c2 to 00-30-80-f7-7a-c3 5.0 5.2(1) 7.3(2)
    00-30-80-f7-7a-c0 to 00-30-80-f7-7a-c1
    00-13-60-48-63-00 to 00-13-60-48-66-ff
    2 00-01-97-09-77-f0 to 00-01-97-09-78-1f 1.0 4.2(0.24)V 7.3(2)
    3 00-01-97-10-c3-30 to 00-01-97-10-c3-5f 1.0 4.2(0.24)V 7.3(2)
    4 00-01-97-09-78-e0 to 00-01-97-09-79-0f 1.0 4.2(0.24)V 7.3(2)
    5 00-30-96-37-98-14 to 00-30-96-37-98-43 3.0 5.4(2) 7.3(2)
    6 00-02-7e-c1-dc-8c to 00-02-7e-c1-dc-bb 2.0 5.4(2) 7.3(2)
    Mod Sub-Type Sub-Model Sub-Serial Sub-Hw
    1 L2 Switching Engine II WS-F6020A SAD03405664 2.0

  • 3D Graph Merge Module Problem

    I am using a 3rd party intaller (InstallShield Express) to produce my
    distributables. Into my project i insert the required merge modules, such
    as the run-time engine. However when i try to include the ComponentWorks 3D
    graph merge module InstallShield cannot merge it into the build. Has anyone
    else experienced this or know why this might be happening.

    Tom,
    If you are using .NET in this project then you may need the updated merge modules, you can get then here:
    Unable to Import Merge Module Error When Building Installer in Visual Studio .NET with Measurement Studio 6.0 Merge Modules.
    http://digital.ni.com/public.nsf/websearch/36C5E45E15A6862D86256B79005F89BB?OpenDocument
    Otherwise this should work just fine, here is the link to it.
    Distributing Visual C++ Projects That Contain Tools for Visual C++ Components
    http://digital.ni.com/public.nsf/websearch/41694B641CEFF03D862568B900546BCE?OpenDocument
    Depending on the error that you get when you insert the merge module you may need to repaor the installation. Depending on the version that you are using you can go to add/remove programs and repair
    it, if this is specific to the 3D graph then this could fix it.
    Please keep me posted on this problem.
    regards,
    Juan Carlos
    N.I.

  • Web module problems in LR3

    Hi,
    I've been happily using LR1.3 for a while, exporting flash galleries from the 'web module' using SlideShowPro. I upgraded to LR3 last week, now when I go to the Web Module, none of the flash galleries work, not SSP, nor the simpleviewer etc. ones. I've removed the old LRwebengines and replaced with the latest LR3 one's for the relevent galleries, I've also updated the flash player, still no joy.
    All the paremeter options show in the right hand pane for each of the galleries, but the main window is just black. The top left info panel briefly shows a 'copying resources' progress bar and then a 'task completed' message, but nothing shows in the main window.
    Any ideas?
    Edit, although the main preview screen is blank, I can export the gallery [certainly with SlideShowPro anyway] and the exported gallery is fine.

    Yes the service ticket is still open. They have remoted to my computer. My last contact was that it was being sent up to Sr. Engineer. My problem goes away when I disable my wireless adapter. I think this weekend I will try hooking up to server with cable and see what happens. For now I am like you I use it by disabling the adapter then work on the galleries. Of coarse I can not push direct to my web site so I export to my desktop then us CuteFTP to up load. Like you this is a pain. I am still hoping they will find a fix. I have told them that I am not the only one having problem.
    Hang in there.
    Brad

Maybe you are looking for

  • Updated to 8.2 and now my music wont play.

    i updated my itunes with the most recent version and now when i go into itunes and try to play a song nothing happens.  It acts like it is going to play, but up top where the song displays the music timeline wont advance.  Help!

  • Intel ProSet Wireless Picks Up Noisy Broadcasts

    I am running 4400 Cisco wireless lan contoller with roughly 60 lightweight Access Points. When using the Intel ProSet Wireless client utility for our Intel wireless adapters the utility is picking up all the individual lightweight access points and l

  • Airport Extreme (5 Gen) suddenly very weak Wifi signal

    Hello, everyone.  I have a 5th generation Airport Extreme that was working fine until a few days ago.  My power had gone out, and since then I am getting a very weak Wifi signal.  The network still appears and connects on all of my devices.  However,

  • [SOLVED] How to create uncompressed packages

    Is there a way to convince makepkg to create uncompressed packages. I often tweak an official package or build from one the AUR and it takes a lot of time to compress the package that will be immediately uncompressed for installation. I would like so

  • Materalised view refresh

    Hi i created a materialised view having a select statement in it.When i run the select statement individually it takes less time but when i run it as dbms_mview.refresh('<object_name>'); it is taking 60 min.When i drop the materialised view and then