Downloading (Exporting) Logo from SE78 in 4.7

How can I download the logo? Please provide steps.
I am using OAOR but I am not getting it since I am new to it.
Its exporting it as FILE0001 with no format.
Thanks
Edited by: saad A on May 19, 2009 5:00 PM

Hi,
  Please check the below link
http://www.sapfans.com/forums/viewtopic.php?p=143772&sid=f96d555deb30f3669f51d1eb5f680ff6
Thanks,
Suma.

Similar Messages

  • Downloading (Exporting) Logo from SE78 - R/3 4.6C

    Hi Experts,
    We have a Company Logo in 4.6C. The same Logo needs to be exported (uploaded) from 4.6C and import into ECC.
    I tried with SE78 and I dont find any option to Export Logo.
    Kindly guide me / provide solution how I can get solution for my issue.
    Thanks a lot in advance.
    Thanks,
    Sudarsan

    Hi,
    Try this..
    GO to the transaction OAOR...
    Then give the class name and class type as mentioned below..
    Class name                      DEVC_STXD_BITMAP
    Class type                      OT
    In the description give the description that you have used in SE78..
    Execute..Then in the output..you have the option to export..
    Thanks
    Naren

  • 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 down lodoad logo  from se78

    Dear friends
    in SE78 in uploaded logo of my client, but the problem is i want to down lode logo from se 78
    can any one help me how to down lode logo from se78 to desk to

    REPORT Z_DUMMY_ATG_3.
    DATA : L_BYTECOUNT TYPE I,
           L_TDBTYPE   LIKE STXBITMAPS-TDBTYPE,
           L_CONTENT   TYPE STANDARD TABLE OF BAPICONTEN INITIAL SIZE 0.
    DATA: GRAPHIC_SIZE TYPE I.
    DATA: BEGIN OF GRAPHIC_TABLE OCCURS 0,
    LINE(255) TYPE X,
    END OF GRAPHIC_TABLE.
    CALL FUNCTION 'SAPSCRIPT_GET_GRAPHIC_BDS'
      EXPORTING
        I_OBJECT       = 'GRAPHICS'
        I_NAME         = 'ZPRUEBA'
        I_ID           = 'BMAP'
        I_BTYPE        = 'BCOL'
      IMPORTING
        E_BYTECOUNT    = L_BYTECOUNT
      TABLES
        CONTENT        = L_CONTENT
      EXCEPTIONS
        NOT_FOUND      = 1
        BDS_GET_FAILED = 2
        BDS_NO_CONTENT = 3
        OTHERS         = 4.
    CALL FUNCTION 'SAPSCRIPT_CONVERT_BITMAP'
      EXPORTING
        OLD_FORMAT               = 'BDS'
        NEW_FORMAT               = 'BMP'
        BITMAP_FILE_BYTECOUNT_IN = L_BYTECOUNT
      IMPORTING
        BITMAP_FILE_BYTECOUNT    = GRAPHIC_SIZE
      TABLES
        BDS_BITMAP_FILE          = L_CONTENT
        BITMAP_FILE              = GRAPHIC_TABLE
      EXCEPTIONS
        OTHERS                   = 1.
    CALL FUNCTION 'WS_DOWNLOAD'
      EXPORTING
        BIN_FILESIZE            = GRAPHIC_SIZE
        FILENAME                = 'C:\FirmaAsociado.bmp'
        FILETYPE                = 'BIN'
      TABLES
        DATA_TAB                = GRAPHIC_TABLE
      EXCEPTIONS
        INVALID_FILESIZE        = 1
        INVALID_TABLE_WIDTH     = 2
        INVALID_TYPE            = 3
        NO_BATCH                = 4
        UNKNOWN_ERROR           = 5
        GUI_REFUSE_FILETRANSFER = 6.
    IF SY-SUBRC  0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Reward if useful

  • 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

  • Remove operator logo from 6270

    Does anyone know how to remove the operator logo from a 6270? I've tried sending a blank logo to the phone using Logomanager but it got a "Saving failed" message twice. I've also tried downloading blank logos from a couple of wap sites - they claimed to have saved but I still can't turn operator logo off

    See if you turn off the operator logo under your display setting of Active Standby Mode.

  • How to download SAP LOGO's from SE78 to Local Desktop

    Hi friends,
    I am trying to down load one of our diagram from SE78 to Local desktop, But in SE78 only Import option is there, Can anyone help me how to down load this logo into local desktop as a BMP File.
    Thnx
    Mohana

    Hi,
    You can't Download LOGO using SE78 But use the following Steps as TIP in this way you will be able to do that.
    Take the Preview of that Logo i think that there is solution for that
    --> Take a Screen Shot and past it in Paint
    --> and in this way you can save this LOGO as BMP
    Hope will help you to solve out your problem,
    Kind Regards,
    Faisal

  • Download image from se78 to desktop...

    Hi,
    can any one plz tell me hw to download image from se78 to desktop...
    Thanks & Regards
    Ashu Singh.

    Ashu,
    use this code:
    REPORT Z_DUMMY_ATG_3.
    DATA : L_BYTECOUNT TYPE I,
           L_TDBTYPE   LIKE STXBITMAPS-TDBTYPE,
           L_CONTENT   TYPE STANDARD TABLE OF BAPICONTEN INITIAL SIZE 0.
    DATA: GRAPHIC_SIZE TYPE I.
    DATA: BEGIN OF GRAPHIC_TABLE OCCURS 0,
    LINE(255) TYPE X,
    END OF GRAPHIC_TABLE.
    CALL FUNCTION 'SAPSCRIPT_GET_GRAPHIC_BDS'
      EXPORTING
        I_OBJECT       = 'GRAPHICS'
        I_NAME         = 'ZPRUEBA'
        I_ID           = 'BMAP'
        I_BTYPE        = 'BCOL'
      IMPORTING
        E_BYTECOUNT    = L_BYTECOUNT
      TABLES
        CONTENT        = L_CONTENT
      EXCEPTIONS
        NOT_FOUND      = 1
        BDS_GET_FAILED = 2
        BDS_NO_CONTENT = 3
        OTHERS         = 4.
    CALL FUNCTION 'SAPSCRIPT_CONVERT_BITMAP'
      EXPORTING
        OLD_FORMAT               = 'BDS'
        NEW_FORMAT               = 'BMP'
        BITMAP_FILE_BYTECOUNT_IN = L_BYTECOUNT
      IMPORTING
        BITMAP_FILE_BYTECOUNT    = GRAPHIC_SIZE
      TABLES
        BDS_BITMAP_FILE          = L_CONTENT
        BITMAP_FILE              = GRAPHIC_TABLE
      EXCEPTIONS
        OTHERS                   = 1.
    CALL FUNCTION 'WS_DOWNLOAD'
      EXPORTING
        BIN_FILESIZE            = GRAPHIC_SIZE
        FILENAME                = 'C:\FirmaAsociado.bmp'
        FILETYPE                = 'BIN'
      TABLES
        DATA_TAB                = GRAPHIC_TABLE
      EXCEPTIONS
        INVALID_FILESIZE        = 1
        INVALID_TABLE_WIDTH     = 2
        INVALID_TYPE            = 3
        NO_BATCH                = 4
        UNKNOWN_ERROR           = 5
        GUI_REFUSE_FILETRANSFER = 6.
    IF SY-SUBRC  0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Change ZPRUEBA with the image you want to download and C:\FirmaAsociado.bmp with your own path and file -;)
    Amit.

  • 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

  • Cannot download an app from the app store on ipad2, the installing processes all pause with the "waiting....." sign under the app logo.  Anyone please help how to solve this.

    I cannot download any app from the AppStore on my ipad2 v5.1
    The installing processes always stop with the sign "waiting......." and didn't show any progress at all
    Anyone ,please help me solve the problem, thanks

    The ipad question was someone else's.  I have no problem with any other device (laptop, Nook, PS3, Android daughter's phone) at home or work.  Just my iphone.  I tried posting my question a few times and it has yet to show up.  At least this made it online!  I was almost ready to purchase an Ipad3, but this is starting to make a Galaxy Tab look pretty good!
    This problem seems way too common to be a fluke!  My search results yielded- http://search.yahoo.com/search;_ylt=A0oG7hsbdq1PzQMA1N5XNyoA?p=IOS%205%20apps%20 waiting&fr2=sb-top&fr=chr-hp-psg&type=HPNTDF&type_param=HPNTDF
    I performed a sync last night too!

  • Import or load a new logo from the external system

    Hi all...
    I want to import or load a new logo from the ext system helps to generate for my ALV report program(for top-of-page)......the one from SE78 is not working for me if i do import or with pre-defined one......
    pls revert me on urgent basis....(help need esp., for ALV report generation)
    thanks
    sankar

    Hi,
    In the transaction OAOR, you should be able to insert your company Logo.
    GOTO - OAOR (Business Document Navigator)
    Give Class Name - PICTURES Class Type - OT..... then Execute
    It will show you the list, then select ENJOYSAP_LOGO.
    On that list, you will find one control with a "create" tab.
    Click std. doc types.
    Select SCREEN and double-click.
    It will push FILE selection screen.
    Select your company logo (.gif) and press OK.
    It will ask for a description- for instance: "company logo".
    It will let you know your doc has been stored successfully.
    You can find your logo under ENJOYSAP_LOGO->Screen->company logo.
    Just run your ALV program, you should find your company logo in place of the EnjoySAP logo.
    FORM TOP-OF-PAGE.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    IT_LIST_COMMENTARY = HEADING[]
    I_LOGO = 'ENJOYSAP_LOGO'
    I_END_OF_LIST_GRID ='GT_LIST_TOP_OF_PAGE'.
    ENDFORM. "TOP-OF-PAGE
    Here 'ENJOYSAP_LOGO' will replace by ur created logo.
    n pls reply me.
    Refer this link
    http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_enhanced.htm
    http://www.sap-img.com/abap/alv-logo.htm
    http://www.sap-img.com/fu002.htm
    reward if it helps..
    Regards,
    Omkar.

  • Export image from smartform

    Hi Experts,
    For importing we use SE78 & upload image, How to export image from SAP to our presenation server?
    In Smartforms, I have an image in color, it need to be downloaded for further modificatons.
    Please give me useful solution for it.
    Thank you.

    Hi i think you cannot download pictures loaded into SE78, the only possiblity(iam not sure) is to print the image from SE78 into a PDF file and then copy the picture into some image editing tool like MS-Paint.
    Regards
    Karthik D

  • How to download an image from SAP to my PC?

    Hello SAPients.
    I know that I can upload an image to SAP using transaction SE78, but now I need the inverse process, I mean, download an image from SAP to my PC. How can I do this?
    Thanks in advance for your help.

    The following program codes allow you to download SAP images stored in SE78 and the traditional SO10:
    *& Report  Z_DOWNLOAD_BDS_GRAPHICS
    *& Download image stored in document server
    *& Published at ****************
    REPORT  z_download_bds_graphics                 .
    * Variable declaration
    DATA: v_graphic_size TYPE i,
          v_graphic_xstr TYPE xstring,
          v_graphic_conv TYPE i,
          v_graphic_offs TYPE i,
          v_file         TYPE string.
    * Table declaration
    DATA: BEGIN OF i_graphic_table OCCURS 0,
            line(255) TYPE x,
          END OF i_graphic_table.
    DATA: lt_tline type table of tline with header line.
    data: l_thead type thead.
    * Structure declaration
    DATA: st_stxbitmaps       TYPE stxbitmaps.
    * Selection screen
    PARAMETERS: P_SO10 RADIOBUTTON GROUP RB1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS: p_TDID     LIKE THEAD-TDID DEFAULT 'ADRS',
                p_TDNAME   LIKE THEAD-TDNAME,
                p_TDOBJ    LIKE THEAD-TDOBJECT DEFAULT 'TEXT',
                p_TDSPRA   LIKE THEAD-TDSPRAS DEFAULT 'EN'.
    SELECTION-SCREEN END OF BLOCK b2.
    PARAMETERS: p_se78 RADIOBUTTON GROUP RB1.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: p_object LIKE st_stxbitmaps-tdobject DEFAULT 'GRAPHICS'
                                  MODIF ID abc ,
                p_name   LIKE st_stxbitmaps-tdname,
                p_id     LIKE st_stxbitmaps-tdid DEFAULT 'BMAP'
                                  MODIF ID abc ,
                p_type   LIKE st_stxbitmaps-tdbtype.
    SELECTION-SCREEN END OF BLOCK b1.
    PARAMETERS: p_dir    TYPE localfile DEFAULT 'D:\GIS'.
    * At Selection-screen output event
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-group1 = 'ABC' .
          screen-input = '0'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    * At Selection-screen on value-request event
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_dir.
      DATA: l_folder TYPE string.
      CALL METHOD cl_gui_frontend_services=>directory_browse
        EXPORTING
          window_title         = 'Select Folder'
          initial_folder       = 'C:\'
        CHANGING
          selected_folder      = l_folder
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
      IF sy-subrc = 0.
        p_dir = l_folder.
      ENDIF.
    * Start-of-selection event
    START-OF-SELECTION.
      IF p_se78 = 'X'.
        st_stxbitmaps-tdobject = p_object.
        st_stxbitmaps-tdname = p_name.
        st_stxbitmaps-tdid = p_id.
        st_stxbitmaps-tdbtype = p_type.
    *   Get the bmp image from BDS in hex string format
        CALL METHOD cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp
          EXPORTING
            p_object       = st_stxbitmaps-tdobject
            p_name         = st_stxbitmaps-tdname
            p_id           = st_stxbitmaps-tdid
            p_btype        = st_stxbitmaps-tdbtype
          RECEIVING
            p_bmp          = v_graphic_xstr
          EXCEPTIONS
            not_found      = 1
            internal_error = 2
            OTHERS         = 3.
        IF sy-subrc = 0.
    *     Find the length of hex string
          v_graphic_size = xstrlen( v_graphic_xstr ).
          CHECK v_graphic_size > 0.
          v_graphic_conv = v_graphic_size.
          v_graphic_offs = 0.
    *     Populate internal table from this hex string
          WHILE v_graphic_conv > 255.
            i_graphic_table-line = v_graphic_xstr+v_graphic_offs(255).
            APPEND i_graphic_table.
            v_graphic_offs = v_graphic_offs + 255.
            v_graphic_conv = v_graphic_conv - 255.
          ENDWHILE.
         i_graphic_table-line = v_graphic_xstr+v_graphic_offs(v_graphic_conv).
          APPEND i_graphic_table.
    *     Prepare file name and file path
          CONCATENATE p_dir '\' p_name '.BMP' INTO v_file.
    *     Download image
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              bin_filesize            = v_graphic_size
              filename                = v_file
              filetype                = 'BIN'
            TABLES
              data_tab                = i_graphic_table
            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.
            WRITE: 'File downloaded successfully'(003), v_file.
          ELSE.
            WRITE: 'Error during file download'(004).
          ENDIF.
        ELSE.
          CASE sy-subrc.
            WHEN 1.
              WRITE: 'Image not found'(005).
            WHEN OTHERS.
              WRITE: 'Error in Image retrieval'(006).
          ENDCASE.
        ENDIF.
      ENDIF. "IF P_SE78 = 'X'.
      IF P_SO10 = 'X'.
        CALL FUNCTION 'READ_TEXT'
          EXPORTING
    *       CLIENT                        = SY-MANDT
            ID                            = p_TDID
            LANGUAGE                      = p_TDSPRA
            NAME                          = p_TDNAME
            OBJECT                        = p_TDOBJ
    *       ARCHIVE_HANDLE                = 0
    *       LOCAL_CAT                     = ' '
          IMPORTING
            HEADER                        = l_thead
          TABLES
            LINES                         = lt_tline
          EXCEPTIONS
             ID                            = 1
             LANGUAGE                      = 2
             NAME                          = 3
             NOT_FOUND                     = 4
             OBJECT                        = 5
             REFERENCE_CHECK               = 6
             WRONG_ACCESS_TO_ARCHIVE       = 7
             OTHERS                        = 8
        IF SY-SUBRC <> 0.
              WRITE: 'Image not found'(005).
        ENDIF.
    CALL FUNCTION 'SAPSCRIPT_CONVERT_BITMAP'
      EXPORTING
        ITF_HEADER                     = l_thead
        OLD_FORMAT                     = 'ITF'
        NEW_FORMAT                     = 'BMP'
        BITMAP_FILE_BYTECOUNT_IN       = 0
        ITF_BITMAP_TYPE_IN             = '*'
    IMPORTING
       BITMAP_FILE_BYTECOUNT          = v_graphic_size
    *   ITF_BITMAP_TYPE_OUT            =
      TABLES
        ITF_LINES                      = lt_tline
        BITMAP_FILE                    = i_graphic_table
    *   BDS_BITMAP_FILE                =
      EXCEPTIONS
        NO_BITMAP_FILE                 = 1
        FORMAT_NOT_SUPPORTED           = 2
        BITMAP_FILE_NOT_TYPE_X         = 3
        NO_BMP_FILE                    = 4
        BMPERR_INVALID_FORMAT          = 5
        BMPERR_NO_COLORTABLE           = 6
        BMPERR_UNSUP_COMPRESSION       = 7
        BMPERR_CORRUPT_RLE_DATA        = 8
        BMPERR_EOF                     = 9
        BDSERR_INVALID_FORMAT          = 10
        BDSERR_EOF                     = 11
        OTHERS                         = 12
    IF SY-SUBRC <> 0.
              WRITE: 'Error in Image Format'(006).
    ENDIF.
        if sy-subrc = 0.
          CONCATENATE p_dir '\' p_TDNAME '.BMP' INTO v_file.
    *     Download image
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              bin_filesize            = v_graphic_size
              filename                = v_file
              filetype                = 'BIN'
            TABLES
              data_tab                = i_graphic_table
            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.
            WRITE: 'File downloaded successfully'(003), v_file.
          ELSE.
            WRITE: 'Error during file download'(004).
          ENDIF.
        endif.
      ENDIF.

  • My IPad cannot download live Tv from skygo. I have no problem with my lap top so I assume the broad band is okay. Can anybody suggest why the live streaming will not work on my iPad one.

    My IPad cannot download live Tv from skygo. I have no problem with my lap top so I assume the broad band is okay. Can anybody suggest why the live streaming will not work on my iPad .

    Are you using the Sky Go app to try and watch it ? If so are you logged in with your Sky account ?
    If you are using the app then you could try closing the app completely and see if it works when you re-open it : from the home screen (i.e. not with Sky Go 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Sky Go app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • I downloaded an audiobook from Itunes and it only load a portion of the book.  At first it work on my iPhone,  now will not work at all on my iPhone, but works on my computer.  I cannotget it to tranfer to my iphone.

    Looking for some assistance.  I downloaded an audiobook from iTunes.  It was 11 hours long.  Originally it worked on my iPhone, but stopped working after 44 minutes into the book.  I tried to re-load the book but it would only load a portion of it and would then would not play.  I then was able to get the same half of the book loaded into my laptop, but then not onto my iPhone.  Anysuggestions, other than re-purchasing the book?

    See Here...
    Troubleshooting applications purchased from the App Store
    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Try this First... You will Not Lose Any Data...
    Turn the Phone Off... ( if it isn’t already )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear and then Disappear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    Turn the Phone On...
    If that does not help... See Here:
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

Maybe you are looking for

  • Take Image Of Computer And Load It Onto A Brand New MacBook Pro

    Hello, I just purchased a MacBook Pro 13". I currently have a MacBook original (White Shell with Snow Leopard) which I want to mirror completely over to the new MacBook Pro. So what I want is to completely erase (format) the new MacBook Pro and then

  • Resizing a box from the middle

    Hi I've got a bit lost in the timeline with a simple command between two states here, can anyone help? I've got a rectangle that needs to resize from 0px w 26px h in the centre of the page in the first state to 800px w 26px h and fade in in the secon

  • Personal number error in CJI3

    In Activity type allocation through KB21N, I post man hrs against some personal numbers. When I see line item report CJI3, I am not seeing the same personal number I entered in KB21N. Which ever Personal number I entered in KB21N, it shows a fix cons

  • My MBP is running very slow.

    What can I do?

  • Help me revert from Indesign CC (2014) to Indesign CC

    Hi! I recently upgraded my Indesign to CC (2014) and want to revert back to Indesign CC (previous version) so my workmate can work with my files. I am a creative Cloud member.