Download logo from R/3

Hi,
Is there a way to download a logo stored in R/3 to the desktop?
Please help.
Thanks and Regards,
Mick

Thanks April King.
1)I want to download the logo and save it on my desktop.
2) With respect to selecting the "Business Document Server" radio button, how do I find out the class name?
Also will the file be downloaded in .bmp format so that I can edit the logo?
3)I did take a look at transaction SHDI, earlier too, and was selecting the radio button "Database". But didnt know directory name where the logo is saved in the system. The default root directory "SAPDEMO" has some standard sap logos. Any idea on how to find the directory where the logo is saved in the system?
Just for your information the logo was uploaded using transaction SE78 and the system is 4.6C.
Regards,
Mick

Similar Messages

  • EXPORTing the LOGO from SE78(Scripts tx)?

    Hi Experts,
    my_company_logo is residing in DEV_1 system.
    I want to get it in DEV_2.
    There is no landscape btwn these sysetms, for transporting.
    So, let me know that, How to get this logo from DEV_1 to DEV_2 sysetm?
    1 - Any SAP Prog.(like RTXSCRP prog. for export/importing the SAP Scripts) to export/import this logo?
    2 - any other idea, like SAVE AS?
    thanq
    Edited by: SAP ABAPer on Nov 23, 2008 7:22 AM

    Refer:
    Re: Download logo from R/3
    How to download an image from SAP to my PC?
    Download

  • Download a logo from smartform

    Hi all ,
    Is there any way to download a LOGO from particular smartform .
    Thanks & Regards
    Vishall

    Hi,
    This program will help to extract graphic logos from data base system and saves it as a .bmp file on your local PC.
    *& Report  Z_DOWNLOAD_GRAPHIC_IMAGE                                    *
    *&   This program exports logos from SAP system to a pc file in .bmp   *
    *&   format                                                            *
    REPORT z_download_graphic_image.
    DATA : g_bytecount             TYPE i,
           g_content               TYPE STANDARD TABLE OF
                                        bapiconten INITIAL SIZE 0,
           g_bitmap_file_bytecount TYPE i,
           g_file_name             TYPE string,
           BEGIN OF g_bitmap_file OCCURS 0,
            line(255) TYPE x,
           END OF g_bitmap_file,
           l_bitmaps TYPE TABLE OF stxbitmaps WITH HEADER LINE,
           lit_scrfields TYPE TABLE OF dynpread WITH HEADER LINE.
    PARAMETER: p_image LIKE  stxbitmaps-tdname
                       DEFAULT 'ENJOY', "name of the image
               p_file  LIKE  ibipparms-path
                       DEFAULT 'H:\My Documents\enjoy.bmp'.
    " Download File path
    *F4 help to get file path
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = p_file.
    *F4 help search for image files
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_image.
      CALL FUNCTION 'SAPSCRIPT_SEARCH_GRAPHIC_BDS'
        EXPORTING
          selection_screen   = 'X'
          select_entry       = 'X'
          selection_show     = 'X'
        IMPORTING
          e_name             = p_image
        TABLES
          t_selections       = l_bitmaps
        EXCEPTIONS
          nothing_found      = 1
          selection_canceled = 2
          internal_error     = 3
          OTHERS             = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    START-OF-SELECTION.
      MOVE p_file TO g_file_name.
    *Get graphics to BDS
      CALL FUNCTION 'SAPSCRIPT_GET_GRAPHIC_BDS'
        EXPORTING
          i_object       = 'GRAPHICS'
          i_name         = p_image
          i_id           = 'BMAP'
          i_btype        = 'BCOL'
        IMPORTING
          e_bytecount    = g_bytecount
        TABLES
          content        = g_content
        EXCEPTIONS
          not_found      = 1
          bds_get_failed = 2
          bds_no_content = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
        MESSAGE i208(00) WITH 'Image does not exists.'(000).
      ENDIF.
      IF NOT g_content[] IS INITIAL.
    *Convert to BITMAP
        CALL FUNCTION 'SAPSCRIPT_CONVERT_BITMAP'
          EXPORTING
            old_format               = 'BDS'
            new_format               = 'BMP'
            bitmap_file_bytecount_in = g_bytecount
          IMPORTING
            bitmap_file_bytecount    = g_bitmap_file_bytecount
          TABLES
            bds_bitmap_file          = g_content
            bitmap_file              = g_bitmap_file
          EXCEPTIONS
            OTHERS                   = 1.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    *Download to PC
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            bin_filesize            = g_bitmap_file_bytecount
            filename                = g_file_name
            filetype                = 'BIN'
          TABLES
            data_tab                = g_bitmap_file
          EXCEPTIONS
            file_write_error        = 1
            no_batch                = 2
            gui_refuse_filetransfer = 3
            invalid_type            = 4
            no_authority            = 5
            unknown_error           = 6
            header_not_allowed      = 7
            separator_not_allowed   = 8
            filesize_not_allowed    = 9
            header_too_long         = 10
            dp_error_create         = 11
            dp_error_send           = 12
            dp_error_write          = 13
            unknown_dp_error        = 14
            access_denied           = 15
            dp_out_of_memory        = 16
            disk_full               = 17
            dp_timeout              = 18
            file_not_found          = 19
            dataprovider_exception  = 20
            control_flush_error     = 21
            OTHERS                  = 22.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDIF.
    Thanks
    Nayan kumar sahu

  • How to download data from abap-ouput to excel sheet with logo

    how to download data from abap-ouput to excel sheet with standard logo
    Edited by: Harish Kasyap on Nov 18, 2008 8:19 AM
    Edited by: Harish Kasyap on Nov 18, 2008 8:20 AM

    For saving the report you can goto System -> List -> Save -> Local File -> Location where you want to save in your presentation server.
    You can also give a option in your selection screen to save the file to Presentation server using FM GUI_DOWNLOAD.
    Hope it helps.
    Thanks,
    Jayant.

  • I am trying to download pictures from my canon rebel  eos to my Ipad but i get the message "this device is not supported" what can I do ?

    I just bought an Apple Lighting to USB Camera Adapter. When I got home to and connected it to my Canon Rebel EOS Digital Camera. I received the error message "This device is not supported" I was wondering if there is any software or drivers I need to download?
    Thanks
    Don

    I use Canon Cameras and have no problems downloading photos from the camera to the Lightning to USB Camera Adapter. My questions and suggestions might be basic but just to make sure:
    1. This is an iPad forum area. Are you using the lightning to USB camera adapter with an iPad? Your info in your original post says iPod. I'm not sure that the adapter works with an iPod.
    2. After you connect the adapter to your iPad and then use a USB cable to connect the adapter to the camera did you turn on the camera?
    3. If you did turn on the camera and still did not get the import of photos to start try a reset your iPad. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. This will not cause any data loss.

  • I am trying to use photomerge compose.  I open one standard jpeg image and one image that is my business logo in a png format.  When I select the png image, to extract the logo from it, it appears as all white and will not allow me to select the logo from

    I am trying to use photomerge compose.  I open one standard jpeg image and one image that is my business logo in a png format.  When I select the png image, to extract the logo from it, it appears as all white and will not allow me to select the logo from it.  It has worked in the past but I downloaded the update today and photomerge will not work correctly.  Any ideas?

    hedger,
    How do you expect anyone to help when we don't know a darned thing about the file, abut your setup, exact version of Photoshop and your OS, machine specs, etc.?
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • When I have downloaded music from ITunes to my IPad then try to play them in music the screen turns black, how do I correct this?

    It seems that when I download music from the ITunes app on my IPad and then go to play the songs on the music app the screen goes black. Why and how do I fix the problem?

    Try this:
    Make Sure iOS is updated to the latest version
    Reboot the device by pressing and holding down the home and sleep/wake buttons (power) at the same time until the apple logo appears on the screen, then let go.
    If that doesn't work then reset the device by going to settings/general/reset/reset all settings

  • FM to download logo to excel

    Hii Experts
    I have ALV as output of report. I need to download the output into excel. but when I download the data to excel, I should get the logo of the client also
    Can any one suggest some answer.
    1) Any FM to download logo to excel
                   or
    2) FM which uses excel template(logo inscribed in it already).

    Hi,
    Object Oriented ALV-Sample program to insert Logo in ALV
    *&amp;amp; Report Z_OOALV_LOGO
    *&--Sample Program using ooalv-> by SrikanthV--
    REPORT z_ooalv_logo.
    ****DECLARATION FOR LOGO INSERT
    CONSTANTS: cntl_true TYPE i VALUE 1,
    cntl_false TYPE i VALUE 0.
    DATA:h_picture TYPE REF TO cl_gui_picture,
    h_pic_container TYPE REF TO cl_gui_custom_container.
    DATA: graphic_url(255),
    graphic_refresh(1),
    g_result LIKE cntl_true.
    DATA: BEGIN OF graphic_table OCCURS 0,
    line(255) TYPE x,
    END OF graphic_table.
    DATA: graphic_size TYPE i.
    CALL SCREEN 100.
    *&amp;----
    *& Module PICTURE OUTPUT
    text
    MODULE picture OUTPUT.
    DATA: l_graphic_xstr TYPE xstring,
    l_graphic_conv TYPE i,
    l_graphic_offs TYPE i.
    CALL METHOD cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp
    EXPORTING
    p_object = 'GRAPHICS'
    p_name = 'EDS'"IMAGE NAME - Image name from SE78
    p_id = 'BMAP'
    p_btype = 'BCOL'
    RECEIVING
    p_bmp = l_graphic_xstr
    EXCEPTIONS
    not_found = 1
    OTHERS = 2.
    graphic_size = XSTRLEN( l_graphic_xstr ).
    CHECK graphic_size > 0.
    l_graphic_conv = graphic_size.
    l_graphic_offs = 0.
    WHILE l_graphic_conv > 255.
    graphic_table-line = l_graphic_xstr+l_graphic_offs(255).
    APPEND graphic_table.
    l_graphic_offs = l_graphic_offs + 255.
    l_graphic_conv = l_graphic_conv - 255.
    ENDWHILE.
    graphic_table-line = l_graphic_xstr+l_graphic_offs(l_graphic_conv).
    APPEND graphic_table.
    CALL FUNCTION 'DP_CREATE_URL'
    EXPORTING
    type = 'image'
    subtype = cndp_sap_tab_unknown " 'X-UNKNOWN'
    size = graphic_size
    lifetime = cndp_lifetime_transaction "'T'
    TABLES
    data = graphic_table
    CHANGING
    url = graphic_url
    EXCEPTIONS
    dp_invalid_parameter = 1
    dp_error_put_table = 2
    dp_error_general = 3
    OTHERS = 4 .
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    EXIT.
    ENDIF.
    CREATE OBJECT h_pic_container
    EXPORTING container_name = 'LOGO'.
    CREATE OBJECT h_picture EXPORTING parent = h_pic_container.
    CALL METHOD h_picture->load_picture_from_url
    EXPORTING
    url = graphic_url
    IMPORTING
    RESULT = g_result.
    ENDMODULE. " PICTURE OUTPUT
    http://www.abapcode.info/2007/06/object-oriented-alv-sample-program-to.html
    Regards,
    Jagadish

  • 1142 Kept on Downloading Image from WLC CT2504

    Dear All,
    i'm a newbie of cisco wireless product, this my first time use.
    on the WLC i've set DHCP address pool, everything seems fine after ap download image -> reboot -> hit "Enter" to start blar blar blar... however, after a few second the WLC will initial upgrade image again and again. it's like a non-stop process.
    can anyone advise me where to start?  attached is the start up message, as you can see, i captured it after the ap successfully boot up, and WLC initial another cycle of image upgrade.
    btw, my network is flat, WLC & AP all in the same network.
    Thanks & Regards
    Eric
    *Nov  3 06:28:30.788: %CAPWAP-5-CHANGED: CAPWAP changed state to JOIN
    examining image...!
    extracting info (292 bytes)
    Image info:
        Version Suffix: k9w8-.124-23c.JA3
        Image Name: c1140-k9w8-mx.124-23c.JA3
        Version Directory: c1140-k9w8-mx.124-23c.JA3
        Ios Image Size: 4905472
        Total Image Size: 5100032
        Image Feature: WIRELESS LAN|LWAPP
        Image Family: C1140
        Wireless Switch Management Version: 7.0.220.0
    Extracting files...
    c1140-k9w8-mx.124-23c.JA3/ (directory) 0 (bytes)
    c1140-k9w8-mx.124-23c.JA3/html/ (directory) 0 (bytes)
    c1140-k9w8-mx.124-23c.JA3/html/level/ (directory) 0 (bytes)
    c1140-k9w8-mx.124-23
    *Nov  3 06:28:35.788: %CAPWAP-5-SENDJOIN: sending Join Request to 192.168.1.88perform archive download capwap:/c1140 tar file
    *Nov  3 06:28:35.803: %CAPWAP-5-AP_IMG_DWNLD: Required image not found on AP. Downloading image from Controller.
    *Nov  3 06:28:35.809: %CAPWAP-5-CHANGED: CAPWAP changed state to IMAGEc.JA3/html/level/1/ (directory) 0 (bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/1/forms.js (17486 bytes)!
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/1/sitewide.js (16548 bytes)!
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/1/officeExtendap.css (41795 bytes)!!!
    *Nov  3 06:28:35.809: Loading file /c1140...
    extracting c1140-k9w8-mx.124-23c.JA3/c1140-k9w8-mx.124-23c.JA3 (4721403 bytes)!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!                              !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    extracting c1140-k9w8-mx.124-23c.JA3/info (292 bytes)
    extracting info.ver (292 bytes)!
    Deleting target version: flash:/c1140-k9w8-mx.124-23c.JA3...done.
    New software image installed in flash:/c1140-k9w8-mx.124-23c.JA3
    Configuring system to use new image...done.
    archive download: takes 107 seconds
    Writing out the event log to nvram...
    *Nov  3 06:30:22.083: %DTLS-3-BAD_RECORD: Erroneous record received from 192.168.1.88: Duplicate (replayed) record
    *Nov  3 06:30:22.987: image upgrade successfully, system is now reloading
    *Nov  3 06:30:23.043: %SYS-5-RELOAD: Reload requested by capwap image download proc. Reload Reason: NEW IMAGE DOWNLOAD.
    *Nov  3 06:30:23.046: %LWAPP-5-CHANGED: CAPWAP changed state to DOWN
    using  eeprom values
    WRDTR,CLKTR: 0x83000800 0x40000000
    RQDC ,RFDC : 0x80000034 0x00000207
    using ÿÿÿÿ ddr static values from serial eeprom
    ddr init done
    Running Normal Memtest...
    Passed.
    IOS Bootloader - Starting system.
    FLASH CHIP:  Numonyx P33
    Checking for Over Erased blocks
    Xmodem file system is available.
    DDR values used from system serial eeprom.
    WRDTR,CLKTR: 0x83000800, 0x40000000
    RQDC, RFDC : 0x80000034, 0x00000207
    PCIE0: link is up.
    PCIE0: VC0 is active
    PCIE1: link is up.
    PCIE1: VC0 is active
    PCIEx: initialization done
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/1/appsui.js (557 bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/1/config.js (24633 bytes)!!
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/1/ap_home.shtml.gz (1300 bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/1/back.shtml (506 bytes)
    c1140-k9w8-mx.124-23c.JA3/html/level/1/images/ (directory) 0 (bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/1/images/cisco-logo-2007.gif (1648 bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/1/images/background_web41.jpg (732 bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/1/images/login_homeap.gif (19671 bytes)!!
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/1/images/info.gif (399 bytes)
    c1140-k9w8-mx.124-23c.JA3/html/level/15/ (directory) 0 (bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/15/officeExtendapBanner.htm (7108 bytes)!
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/15/officeExtendapHelp.htm (5007 bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/15/officeExtendapEvent.shtml.gz (983 bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/15/officeExtendapConfig.shtml.gz (2861 bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/15/officeExtendapMain.shtml.gz (3361 bytes)!
    extracting c1140-k9w8-mx.124-23c.JA3/html/level/15/officeExtendapSummary.htm (712 bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/T2.bin (8080 bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/8001.img (174880 bytes)!!!!!!!!!!!!!!
    extracting c1140-k9w8-mx.124-23c.JA3/T5.bin (23836 bytes)
    extracting c1140-k9w8-mx.124-23c.JA3/info (292 bytes)
    extracting info.ver (292 bytes)!
    Deleting target version: flash:/c1140-k9w8-mx.124-23c.JA3...done.
    New software image installed in flash:/c1140-k9w8-mx.124-23c.JA3
    Configuring system to use new image...done.
    archive download: takes 107 seconds
    PCIE0: link is up.
    PCIE0: VC0 is active
    PCIE1: link is up.
    PCIE1: VC0 is active
    PCIEx: initialization done
    flashfs[0]: 28 files, 8 directories
    flashfs[0]: 0 orphaned files, 0 orphaned directories
    flashfs[0]: Total bytes: 32385024
    flashfs[0]: Bytes used: 7451136
    flashfs[0]: Bytes available: 24933888
    flashfs[0]: flashfs fsck took 21 seconds.
    Reading cookie from system serial eeprom...Done
    Base Ethernet MAC address: 60:73:5c:31:b0:dc
    Ethernet speed is 100 Mb - FULL duplex
    Loading "flash:/c1140-k9w8-mx.124-23c.JA3/c1140-k9w8-mx.124-23c.JA3"...############################################################################################################################################################################################################################################################################################################################################################################################################################################################
    File "flash:/c1140-k9w8-mx.124-23c.JA3/c1140-k9w8-mx.124-23c.JA3" uncompressed and installed, entry point: 0x4000
    executing...
    enet halted
                  Restricted Rights Legend
    Use, duplication, or disclosure by the Government is
    subject to restrictions as set forth in subparagraph
    (c) of the Commercial Computer Software - Restricted
    Rights clause at FAR sec. 52.227-19 and subparagraph
    (c) (1) (ii) of the Rights in Technical Data and Computer
    Software clause at DFARS sec. 252.227-7013.
               cisco Systems, Inc.
               170 West Tasman Drive
               San Jose, California 95134-1706
    Cisco IOS Software, C1140 Software (C1140-K9W8-M), Version 12.4(23c)JA3, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2011 by Cisco Systems, Inc.
    Compiled Tue 18-Oct-11 14:52 by prod_rel_team
    Proceeding with system init
    Proceeding to unmask interrupts
    Initializing flashfs...
    FLASH CHIP:  Numonyx P33
    Checking for Over Erased blocks
    flashfs[1]: 28 files, 8 directories
    flashfs[1]: 0 orphaned files, 0 orphaned directories
    flashfs[1]: Total bytes: 32126976
    flashfs[1]: Bytes used: 7451136
    flashfs[1]: Bytes available: 24675840
    flashfs[1]: flashfs fsck took 5 seconds.
    flashfs[1]: Initialization complete.
    flashfs[2]: 0 files, 1 directories
    flashfs[2]: 0 orphaned files, 0 orphaned directories
    flashfs[2]: Total bytes: 11999232
    flashfs[2]: Bytes used: 1024
    flashfs[2]: Bytes available: 11998208
    flashfs[2]: flashfs fsck took 1 seconds.
    flashfs[2]: Initialization complete....done Initializing flashfs.
    Ethernet speed is 100 Mb - FULL duplex
    Radio0  present 8363 8000 90020000 0 90030000 B
    Radio1  present 8363 8000 98020000 0 98030000 0
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    to comply with U.S. and local laws, return this product immediately.
    A summary of U.S. laws governing Cisco cryptographic products may be found at:
    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
    If you require further assistance please contact us by sending email to
    [email protected].
    cisco AIR-LAP1142N-C-K9    (PowerPC405ex) processor (revision A0) with 98294K/32768K bytes of memory.
    Processor board ID FGL1632S622
    PowerPC405ex CPU at 586Mhz, revision number 0x147E
    Last reset from reload
    LWAPP image version 7.0.220.0
    1 Gigabit Ethernet interface
    2 802.11 Radio(s)
    32K bytes of flash-simulated non-volatile configuration memory.
    Base ethernet MAC Address: 60:73:5C:31:B0:DC
    Part Number                          : 73-12836-05
    PCA Assembly Number                  : 800-33767-05
    PCA Revision Number                  : A0
    PCB Serial Number                    : FOC16301SFC
    Top Assembly Part Number             : 800-33775-04
    Top Assembly Serial Number           : FGL1632S622
    Top Revision Number                  : A0
    Product/Model Number                 : AIR-LAP1142N-C-K9
    % Please define a domain-name first.
    Translating "CISCO-CAPWAP-CONTROLLER"...domain server (255.255.255.255)
    Press RETURN to get started!
    *Mar  1 00:00:07.703: %SOAP_FIPS-2-SELF_TEST_IOS_SUCCESS: IOS crypto FIPS self test passed
    *Mar  1 00:00:07.714: *** CRASH_LOG = YES
    Security Core found.
    Base Ethernet MAC address: 60:73:5C:31:B0:DC
    *Mar  1 00:00:09.283: %SOAP_FIPS-2-SELF_TEST_RAD_SUCCESS: RADIO crypto FIPS self test passed on interface Dot11Radio 0
    *Mar  1 00:00:09.855: %SOAP_FIPS-2-SELF_TEST_RAD_SUCCESS: RADIO crypto FIPS self test passed on interface Dot11Radio 1
    *Mar  1 00:00:09.903: %LWAPP-3-CLIENTEVENTLOG: Read and initialized AP event log (contains, 1024 messages)
    *Mar  1 00:00:09.926:  status of voice_diag_test from WLC is false
    *Mar  1 00:00:10.970: %LINK-3-UPDOWN: Interface GigabitEthernet0, changed state to up
    *Mar  1 00:00:12.046: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0, changed state to up
    *Mar  1 00:00:12.084: %SYS-5-RESTART: System restarted --
    Cisco IOS Software, C1140 Software (C1140-K9W8-M), Version 12.4(23c)JA3, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2011 by Cisco Systems, Inc.
    Compiled Tue 18-Oct-11 14:52 by prod_rel_team
    *Mar  1 00:00:12.085: %SNMP-5-COLDSTART: SNMP agent on host AP6073.5c31.b0dc is undergoing a cold start
    *Mar  1 00:10:23.055: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to reset
    *Mar  1 00:10:23.055: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset
    *Mar  1 00:10:24.055: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Mar  1 00:10:24.055: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down
    *Mar  1 00:10:32.053: %CAPWAP-5-CHANGED: CAPWAP changed state to DISCOVERY
    *Mar  1 00:10:33.293: %SSH-5-ENABLED: SSH 2.0 has been enabled
    *Mar  1 00:10:41.916:  status of voice_diag_test from WLC is false
    *Mar  1 00:10:41.973: Logging LWAPP message to 255.255.255.255.

    Dear Leolaohoo, i've performed the command, after reboot it'll join the controller and then the downloading process keep on repeating again. here's the output after i perform the command.
    AP6073.5c31.b0dc#de
    AP6073.5c31.b0dc#del
    AP6073.5c31.b0dc#delete /f /r fl
    AP6073.5c31.b0dc#delete /f /r flash:/c1
    AP6073.5c31.b0dc#delete /f /r flash:/c1140-k
    AP6073.5c31.b0dc#delete /f /r flash:/c1140-k9w8-mx.124-23c.JA3
    AP6073.5c31.b0dc#clear capwap pri
    AP6073.5c31.b0dc#clear capwap private?
    private-config
    AP6073.5c31.b0dc#clear capwap private
    AP6073.5c31.b0dc#clear capwap private-config
    AP6073.5c31.b0dc#reload
    Proceed with reload? [confirm]
    Writing out the event log to nvram...
    *Mar  1 00:12:29.460: %SYS-5-RELOAD: Reload requested by Cisco on console. Reload Reason: Reload Command.
    *Mar  1 00:12:29.463: %LWAPP-5-CHANGED: CAPWAP changed state to DOWN
    using  eeprom values
    WRDTR,CLKTR: 0x83000800 0x40000000
    RQDC ,RFDC : 0x80000034 0x00000207
    using ÿÿÿÿ ddr static values from serial eeprom
    ddr init done
    Running Normal Memtest...
    Passed.
    IOS Bootloader - Starting system.
    FLASH CHIP:  Numonyx P33
    Checking for Over Erased blocks
    Xmodem file system is available.
    DDR values used from system serial eeprom.
    WRDTR,CLKTR: 0x83000800, 0x40000000
    RQDC, RFDC : 0x80000034, 0x00000207
    PCIE0: link is up.
    PCIE0: VC0 is active
    PCIE1: link is up.
    PCIE1: VC0 is active
    PCIEx: initialization done
    flashfs[0]: 6 files, 2 directories
    flashfs[0]: 0 orphaned files, 0 orphaned directories
    flashfs[0]: Total bytes: 32385024
    flashfs[0]: Bytes used: 2365440
    flashfs[0]: Bytes available: 30019584
    flashfs[0]: flashfs fsck took 19 seconds.
    Reading cookie from system serial eeprom...Done
    Base Ethernet MAC address: 60:73:5c:31:b0:dc
    Ethernet speed is 100 Mb - FULL duplex
    Loading "flash:/c1140-k9w8-mx.124-23c.JA3/c1140-k9w8-mx.124-23c.JA3"...flash:/c1140-k9w8-mx.124-23c.JA3/c1140-k9w8-mx.124-23c.JA3: no such file or directory
    Error loading "flash:/c1140-k9w8-mx.124-23c.JA3/c1140-k9w8-mx.124-23c.JA3"
    Interrupt within 5 seconds to abort boot process.
    Loading "flash:/c1140-rcvk9w8-mx/c1140-rcvk9w8-mx"...#######################################################################################################################################################################################################################
    File "flash:/c1140-rcvk9w8-mx/c1140-rcvk9w8-mx" uncompressed and installed, entry point: 0x4000
    executing...
    enet halted
                  Restricted Rights Legend
    Use, duplication, or disclosure by the Government is
    subject to restrictions as set forth in subparagraph
    (c) of the Commercial Computer Software - Restricted
    Rights clause at FAR sec. 52.227-19 and subparagraph
    (c) (1) (ii) of the Rights in Technical Data and Computer
    Software clause at DFARS sec. 252.227-7013.
               cisco Systems, Inc.
               170 West Tasman Drive
               San Jose, California 95134-1706
    Cisco IOS Software, C1140 Software (C1140-RCVK9W8-M), Version 12.4(21a)JA, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2009 by Cisco Systems, Inc.
    Compiled Mon 08-Jun-09 16:28 by prod_rel_team
    Proceeding with system init
    Proceeding to unmask interrupts
    Initializing flashfs...
    flashfs[1]: 6 files, 2 directories
    flashfs[1]: 0 orphaned files, 0 orphaned directories
    flashfs[1]: Total bytes: 32385024
    flashfs[1]: Bytes used: 2365440
    flashfs[1]: Bytes available: 30019584
    flashfs[1]: flashfs fsck took 4 seconds.
    flashfs[1]: Initialization complete....done Initializing flashfs.
    Ethernet speed is 100 Mb - FULL duplex
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    to comply with U.S. and local laws, return this product immediately.
    A summary of U.S. laws governing Cisco cryptographic products may be found at:
    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
    If you require further assistance please contact us by sending email to
    [email protected].
    cisco AIR-LAP1142N-C-K9    (PowerPC405ex) processor (revision A0) with 98294K/32768K bytes of memory.
    Processor board ID FGL1632S622
    PowerPC405ex CPU at 586Mhz, revision number 0x147E
    Last reset from reload
    LWAPP image version 3.0.51.0
    1 Gigabit Ethernet interface
    32K bytes of flash-simulated non-volatile configuration memory.
    Base ethernet MAC Address: 60:73:5C:31:B0:DC
    Part Number                          : 73-12836-05
    PCA Assembly Number                  : 800-33767-05
    PCA Revision Number                  : A0
    PCB Serial Number                    : FOC16301SFC
    Top Assembly Part Number             : 800-33775-04
    Top Assembly Serial Number           : FGL1632S622
    Top Revision Number                  : A0
    Product/Model Number                 : AIR-LAP1142N-C-K9
    % Please define a domain-name first.
    Translating "CISCO-LWAPP-CONTROLLER"...domain server (255.255.255.255)
    Press RETURN to get started!
    *Mar  1 00:00:05.915: *** CRASH_LOG = YES
    Base Ethernet MAC address: 60:73:5C:31:B0:DC
    *Mar  1 00:00:06.121: %LWAPP-3-CLIENTEVENTLOG: Read and initialized AP event log (contains, 1024 messages)
    *Mar  1 00:00:08.167: %LINK-3-UPDOWN: Interface GigabitEthernet0, changed state to up
    *Mar  1 00:00:08.184: %SYS-5-RESTART: System restarted --
    Cisco IOS Software, C1140 Software (C1140-RCVK9W8-M), Version 12.4(21a)JA, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2009 by Cisco Systems, Inc.
    Compiled Mon 08-Jun-09 16:28 by prod_rel_team
    *Mar  1 00:10:23.981: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0, changed state to up
    Translating "CISCO-CAPWAP-CONTROLLER"...domain server (255.255.255.255)
    *Mar  1 00:10:32.016: %CAPWAP-3-ERRORLOG: Could Not resolve CISCO-LWAPP-CONTROLLER
    Translating "CISCO-LWAPP-CONTROLLER"...domain server (255.255.255.255)
    *Mar  1 00:10:41.016: %CAPWAP-3-ERRORLOG: Could Not resolve CISCO-CAPWAP-CONTROLLER
    *Mar  1 00:10:41.017: %CAPWAP-5-CHANGED: CAPWAP changed state to DISCOVERY
    Translating "CISCO-CAPWAP-CONTROLLER"...domain server (255.255.255.255)
    *Mar  1 00:10:50.964: %CAPWAP-3-ERRORLOG: Could Not resolve CISCO-LWAPP-CONTROLLER
    *Mar  1 00:10:54.600: %CDP_PD-2-POWER_LOW: All radios disabled - NEGOTIATED WS-C2960-24PC-L (34bd.c8f6.5681)
    *Mar  1 00:10:59.964: %CAPWAP-3-ERRORLOG: Could Not resolve CISCO-CAPWAP-CONTROLLER
    Translating "CISCO-LWAPP-CONTROLLER"...domain server (255.255.255.255)
    Translating "CISCO-CAPWAP-CONTROLLER"...domain server (255.255.255.255)
    *Mar  1 00:11:18.965: %CAPWAP-3-ERRORLOG: Could Not resolve CISCO-LWAPP-CONTROLLER

  • HT4211 I'm not able to download apps from App Store. It never downloads and it shows waiting status.can somebody please help me resolve this issue

    I'm not able to download apps from App Store. It never downloads and it shows waiting status.can somebody please help me resolve this issue

    I really do not think it is the iPad or your network connection. Other users have reported this very same issue. Try this and see if it works for you - it may not work - but it's easy to try - harmless - and it has worked in the past for others.
    Try signing out of your account and restart your iPad.
    Go to Settings>Store>Apple ID and tap the ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button. Go back to Settings>Store> Apple ID and sign in again.

  • I have lost my iBooks and iTunes and iBooks does not load plus I cannot download anything from my app icon.does anyone know what the problem is.

    I cannot use iTunes or iBooks and my iBooks library is blank although I have purchased books in the past.  Also I cannot download anything from my app icon.  Has anyone experienced this and if so how do I correct.

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased.
     Cheers, Tom

  • Unable to submit a podcast feed- "we had difficulty downloading episodes from your feed"

    Hii,
    i am trying to submit a xml feed to submit podcast ,
    but i get a error massage  we had difficulty downloading episodes from your feed
    here is my feed output
    <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
    <channel> 
    <title>iTunes1</title> 
    <description>description</description>
    <link>http://phmedia.mediaimages.net/mediacatapult/</link>
    <language>EN</language>
    <copyright>phmedia</copyright>
    <itunes:summary>description</itunes:summary>
    <itunes:owner> 
    <itunes:name>asdfsa sadfsd</itunes:name> 
    <itunes:email>[email protected]</itunes:email>
    </itunes:owner>
    <itunes:keywords>v1, v2, v3, v4</itunes:keywords>
    <itunes:category text="Arts"> 
    <itunes:category text="Design"/> 
    </itunes:category>
    <itunes:image href="http://phmedia.mediaimages.net/iTunesPodcastCover/10423_10526.png"/>
    <itunes:explicit>No</itunes:explicit>
    <itunes:block>No</itunes:block>
    <item> 
    <title>12061_13536.mp4</title> 
    <description>video desc 1</description>
    <link> 
    http://phmedia.mediaimages.net:1935/vod/_definst_/mp4:0165/12061_13536.mp4/playl ist.m3u8
    </link>
    <enclosure url="http://phmedia.mediaimages.net:1935/vod/_definst_/mp4:0165/12061_13536.mp4/playl ist.m3u8" length="1070" type="video/mp4"/>
    <guid> 
    http://phmedia.mediaimages.net:1935/vod/_definst_/mp4:0165/12061_13536.mp4/playl ist.m3u8
    </guid>
    <pubDate>Thu Feb 20 02:39:12 EST 2014</pubDate>
    <itunes:summary>video desc 1</itunes:summary>
    <itunes:duration>0:0:29</itunes:duration>
    <itunes:keywords>v1, v2, v3, v4</itunes:keywords>
    <itunes:image href="http://phmedia.mediaimages.net/images/12061_13536_2_1.png"/>
    <itunes:explicit>No</itunes:explicit>
    <itunes:block>No</itunes:block>
    </item>
    </channel>
    </rss>

    The missing opening tags problem was caused by your pasting the contents into the forum and is not present in the actual feed. However you have two serious and two minor faults.
    Your media file URL is
    http://phmedia.mediaimages.net:1935/vod/_definst_/mp4:0165/12061_13536.mp4/playl ist.m3u8
    This isn't a media file, it's a m3u playlist at 4kB. You need to provide a direct link to your media file and the URL must end with an extension, e.g. mp4
    Your 'itunes:image' is a png which appears to be a screenshot: it should be 1400 x 1400 px or the feed won't be accepted, and it must be less the 500kB. You should choose a logo which will work when reduced to the size on the Store page.
    You are missing what should be the first line of your feed:
    <?xml version="1.0" encoding="UTF-8"?>
    Your 'pubdate' tag reads
    <pubDate>Thu Feb 20 02:39:12 EST 2014</pubDate>
    There should be a comma after the 'Thu' and the '2014' should be after 'Feb', not at the end.
    Your 'itunes:duration' tag reads
    <itunes:duration>0:0:29</itunes:duration>
    It should read
    <itunes:duration>0:00:29</itunes:duration>
    These last three are not fatal but should be addressed.
    Finally, your title is 'iTunes1' which is valid but not a good title. You should choose something which gives an idea of the content.

  • I have a debit card but would like to download apps from the store. how do I do that? I can't possibly get a credit card just for this. please help.

    Hi,
    I have an iTouch. I'd like to download some free apps. but I have a debit card but would like to download apps from the store. how do I do that? I can't possibly get a credit card just for this. please help.

    I really do not think it is the iPad or your network connection. Other users have reported this very same issue. Try this and see if it works for you - it may not work - but it's easy to try - harmless - and it has worked in the past for others.
    Try signing out of your account and restart your iPad.
    Go to Settings>Store>Apple ID and tap the ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button. Go back to Settings>Store> Apple ID and sign in again.

  • I am unable to download photos from iPhone 4, SD card and SLR camera to iPad 2 using apple accessories. It worked once and then never again. Any ideas ?

    I am unable to download photos from my iphone4 , SD card , SLR camera to my ipad2 using apple accessories , please help , it has worked once and then never again.

    Plumchunks-
    The only accessory I know of that can be used to transfer photos from a camera or SD card to the iPad, is the Apple Camera Connection Kit.  The kit consists of two adapters.  One has an SD card socket.  The other has a USB connector to connect directly to the camera.
    I do not think you can transfer photos from the iPhone to the iPad unless you first transfer them to a computer.  If you then transfer the photos to an SD card, they must have eight character names plus suffix and be stored in a DCIM folder, just as if they came from a camera.
    One thing you can try is to reboot the iPad.  Hold both the Home and Sleep buttons for several seconds until the Apple logo appears.  Ignore the "Slide to power off" arrow.  The iPad will restart after a couple of minutes.  Rebootting will not hurt anything and sometimes clears up mysterious problems.
    Fred

  • I can't download anything from App Store or make any in app purchases after deleting a large game from my ipad

    I deleted a very large app from my iPad (3.3GB) and since then I cannot download anything from the App Store nor can I make in app purchases. Please help

    Have you tried reset iPad?
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

Maybe you are looking for