I want to print the LOGO on the report output

Hi ,
i want to print the LOGO on the report output. How can tyhis possible ?

using "SMWO" to upload LOGO image.
add a customer "customer control" named P1 using "SE51"
the following program for your reference:
=============================================
REPORT  ytest17.
DATA ok_code TYPE sy-ucomm,
          save_code TYPE sy-ucomm.
DATA  container TYPE REF TO cl_gui_custom_container.
DATA  picture TYPE REF TO cl_gui_picture.
DATA  init.
CALL SCREEN 100.
MODULE user_command_0100 INPUT
MODULE user_command_0100 INPUT.
  save_code = ok_code.
  CLEAR ok_code.
  CASE save_code.
    WHEN 'EXIT'.
      LEAVE PROGRAM.
  ENDCASE.
ENDMODULE.                    "user_command_0100 INPUT
MODULE status_0100 OUTPUT
MODULE status_0100 OUTPUT.
  IF init IS INITIAL.
    DATA url(255).
    CLEAR url.
    CREATE OBJECT container
    EXPORTING container_name = 'P1'.
    CREATE OBJECT picture
    EXPORTING parent = container
    EXCEPTIONS error = 1.
    IF sy-subrc NE 0.
    ENDIF.
    PERFORM load_pic_db CHANGING url.
    CALL METHOD picture->load_picture_from_url
      EXPORTING
        url = url.
    IF sy-subrc NE 0.
    ENDIF .
    init = 'X'.
  ENDIF.
ENDMODULE.                    "status_0100 OUTPUT
*&      Form
      text
FORM load_pic_db changing p_url.
  data query_table like w3query occurs 1 with header line.
  data html_table like w3html occurs 1.
  data return_code like w3param-ret_code.
  data connect_type like w3param-cont_type.
  data connect_length like w3param-cont_len.
  data pic_data like w3mime occurs 0.
  data pic_size type i.
  refresh query_table.
  query_table-name = '_object_id'.
  query_table-value = 'TESTPIC'.
  append query_table.
CALL FUNCTION 'WWW_GET_MIME_OBJECT'
  TABLES
    query_string              =  query_table
    html                      =  html_table
    mime                      =  pic_data
  changing
    return_code               =  return_code
    content_type              =  connect_type
    content_length            =  connect_length
EXCEPTIONS
   OBJECT_NOT_FOUND          = 1
   PARAMETER_NOT_FOUND       = 2
   OTHERS                    = 3
IF sy-subrc <> 0.
pic_size  = connect_length.
ENDIF.
CALL FUNCTION 'DP_CREATE_URL'
  EXPORTING
    type                       = 'image'
    subtype                    =  cndp_sap_tab_unknown
    SIZE                       =  pic_size
  DATE                       =
  TIME                       =
  DESCRIPTION                =
    LIFETIME                   = cndp_lifetime_transaction
  CACHEABLE                  =
  SEND_DATA_AS_STRING        =
  FIELDS_FROM_APP            =
  tables
    data                       = pic_Data
  FIELDS                     =
  PROPERTIES                 =
  COLUMNS_TO_STRETCH         =
  changing
    url                        = 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.
ENDIF.
endform.
*&      Module  CANCEL  INPUT
      text
module CANCEL input.
LEAVE PROGRAM.
endmodule.                 " CANCEL  INPUT
=============================================

Similar Messages

  • I have a canon mf5940dn, it is connected via USB to my macbook air, and yet, when i want to print smith, it says the printer is not connected. does anyone has any idea why? is there a guide to do it properly?

    I have a canon printer mf5940dn, it is connected via USB to my macbook air, and yet, when I want to print smth, it says the printer is not connected. does anyone has any idea why? is there a guide to do it properly?

    Hi,
    I am currently replying to this as it shows in the iChat Community.
    I have asked the Hosts to move it to Snow Leopard  (you should not lose contact with it through any email links you get)
    I also don't do Wirelss printing so I can't actaully help either.
    10:01 PM      Friday; July 29, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • I want to print file labels but the avery ap doesn't support their own file labels.  Any other way to print file labels from ipad?

    I want to print file labels but the avery ap doesn't support file labels, is there ant way to print file label from an ipad?

    You cannot save to Dropbox from Pages natively, but there is a workaround that allows you to use the Copy to WebDAV to get things to Dropbox:
    http://techinch.com/2011/02/02/integrate-dropbox-with-pages-keynote-and-numbers- on-ipad/
    As to the "Send to iTunes" command "not playing ball", if you'll post specifics, perhaps someone can help you sort that out. It should be pretty straightforward.
    Regards.

  • The logo for the application has been changed in Azure portal, but it's not reflected during the login

    Hi Azure support,
    my name is Linda, Office365 technical support. I want to ask one Azure question on behalf on my customer. she has AAD_basic subscription.
    she tried to change logo of one application, but failed. she followed the steps as below:
    1. add the "Logo" in the application;
    2. logo not reflect in the login page.
    I cannot attach the screenshot, if you want, you could email me v-linsha
    hope you could give some suggestion and resolution. thank you.

    Sometimes I know I haven't changed anything in the external file. In this case, the supposed conflict seems to be a bug and I overwrite with Lightroom metadata without exception (but with fingers crossed) - that bug has been reported.
    Other times however, I have edited the file in an external editor, and its possible that the external editor wants to add some information that may be worth having, or it may be that its lost the original information - this is when its a dilemma:
    If I overwrite disk file with Lightroom metadata, I may be losing what the external editor added.
    If I overwrite Lightroom metadata with disk data, I may be losing what Lightroom had and the external editor dropped.
    This scenario has not been reported as a bug, since I don't know if it is one. If I could see the difference between the two, then I'd know.
    Rob

  • Showing the Logo in the email body

    Hi,
    I am trying to show the logo in the email body. When i try to acheive this with SendMail i am getting a red cross icon.

    Hi,
    I wanted to test it before answering you. Inlcuding JPG images in mail works.
    I created a simple piece of PeopleCode to include a jpg image from the Oracle Site.
    Local string &MAIL_CC, &MAIL_TO, &MAIL_BCC, &MAIL_SUBJECT, &MAIL_TITLES, &MAIL_TEXT, &MAIL_FILES, &MAIL_FROM, &REPLYTO, &SENDER;
    Local number &MAIL_FLAGS;
    &MAIL_FLAGS = 0;
    &MAIL_TO = "[email protected]";
    &MAIL_CC = "";
    &MAIL_BCC = "";
    &MAIL_SUBJECT = "Testing SendMail with jpg image";
    &CONTTYPE = "Content-type: text/html; charset=UTF-8";
    &MAIL_TEXT = "Iron Man from Oracle Site: " | "<img src= 'http://www.oracle.com/us/hp01-thumb-ironman-1929584.jpg'>";
    &MAIL_FILES = "";
    &MAIL_TITLES = "";
    &MAIL_FROM = "";
    &MAIL_SEP = ";";
    &REPLYTO = "";
    &SENDER = "";
    &RET = SendMail(&MAIL_FLAGS, &MAIL_TO, &MAIL_CC, &MAIL_BCC, &MAIL_SUBJECT, &MAIL_TEXT, &MAIL_FILES, &MAIL_TITLES, &MAIL_FROM, &MAIL_SEP, &CONTTYPE, &REPLYTO, &SENDER);
    If &RET <> 0 Then
       MessageBox(0, "", 0, 0, "Return code from SendMail=" | &RET);
    End-If;output:
    http://www5.picturepush.com/photo/a/12711833/640/12711833.png

  • Modifying the logo of the sapscript:RVORDER01

    I want to change the logo of the following SAPSCRIPT RVORDER01. This SapScript appears in the VA02 transaction.
    Do you have any idea?
    Thanx in advanced

    Hi Jose,
    Copy the RVORDER01 script to your own Z Script , and then in the LOGO window, change the logo name, or else , comment the Logo line(include statment) and insert the new logo using the menu options, GOTO --> Insert Graphics.
    OR
    Go to SE78 and Import the user reuired Logo from Out of SAP.
    Regards

  • I know I'm dumb but I have a wedding photo I'd like to put on facebook but I need to include the logo of the photgrapher on the photo and I cant figure out how to get it on there.

    I would like to post a photo by a professional photographer and need to have her logo on my picture to do so.  I cannot figure out how to add the logo to the photo.

    That is not a feature of iPhoto - suggest to Apple - iPhoto Menu ==> provide iPhoto feedback.
    you can use third party software - <a href="http://web.me.com/larryhn/iPhoto_08_(version_7.x.x)_FAQ/Graphic_programs.html"> click here for links to some to consider.</a>
    Also Preview
    LN

  • When I start my Creative cloud desktop app. I get a blank window. I can see the logo at the top but no information in the window.

    when I start my Creative cloud desktop app. I get a blank window. I can see the logo at the top but no information in the window.

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • Can I remove the logos from the bookmark toolbar?

    I really hate the inclusion of the logos on the bookmark toolbar. Can I customize it to remove them? It makes for more clutter and I really don't need reminders of logos I see a million times already;-]

    AS2 also allowed you to add custom request headers, but not
    modify certain headers (modifying would include 'removing'). And
    for POST requests only.
    This appears consistent:
    as2
    http://livedocs.adobe.com/flash/9.0/main/00001778.html#wp304907
    as3
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/URLRequestHeader.html
    Flash uses the browser connection when it runs in the
    browser, so I don't really know but I think it may also be
    dependent on the browser... I presume that's part of the reason,
    the other part is possibly related to security, I guess. Also, I
    don't understand what the harm of leaving it is. Out of curiosity,
    under what circumstances would it be essential to remove the
    Referer header from flash requests? I've only ever added custom
    headers to my flash POST requests sometimes, for various
    reasons.

  • I can't open Iphoto because of a "?" on the logo on the dock

    My problem is I can not open Iphoto. I'm afraid not to find my photos again....all of these are in.. Actually, a "?" is on the logo on the dock. When I click on it, there is just "option > delete the app". Can somebody help me please !!? Thanks

    then (Probably #1 or possibly #2)
    if it is not there then
    reinstall from the original source
    Could be
    1 - the restore disks that came with the computer
    or
    2 - the iLife DVD that you purchased
    or
    3 - the app store - log in under the Apple id used to purchase the software or to set up the computer - look under purchases - you might have to unhide or accept the Application first
    LN

  • My Iphone 2g is not charging? i already reset but no avail. the logo of the battery only appeared. somebody help me?

    My Iphone 2g is not charging? i already reset but no avail. the logo of the battery only appeared. somebody help me?

    Hello Regina0117
    If you already try other chargers and still not working, the best advise is for you to contact apple support, if you still in warranty they will change it for you for free.
    Start you case here:
    http://www.apple.com/support/contact/
    And contact apple support
    Cheers, Lima

  • Changing the logo in the Title Bar of a JFrame

    How do I change the logo in the left hand corner of the Title Bar of a JFrame window.

    Hi Sverigeterje
    Thanks.
    That's very neat. All done with one line of code, as opposed to the two lines of code I found in an answer (dated Jan 8, 2001) from Alexander Smirnov in response to a similar question (dated Sep 16, 2000) from Shawn Barker. (http://forums.java.sun.com/thread.jsp?forum=31&thread=49970 - Jan 8, 2001)
    ImageIcon image = new ImageIcon("CustomIcon.gif");
    this.setIconImage(image.getImage());
    Once again many thanks.
    George (aka cyberking1)

  • HOW TO CHANGE THE LOGO IN THE PORTRAL

    WE HAVE THE REQUIREMENT LIKE TO CHANGE THE LOGO IN THE PORTAL. CAN ANYONE  PLEASE ASIIST ME.....
    Edited by: kundan prem on Nov 27, 2008 1:28 PM

    Hi Kundan,
    Please check the below link.
    Re: change in sap logo and welcome text on the portal logon page
    We can customize our logon page by taking the LOGON page par file i.e. com.sap.portal.runtime.logon.par from PCD, system admin tab under Sys Config, Browse deployement .
    Import into ur NWDSand rest if finding teh code of the logo iamge and changing it.
    Dont forget to use the authschemes.xml to edit and restart of server.
    Hope this link might have provided u with details.
    Regards,
    Shaila

  • I have a iMac (20-inch, Mid 2009). On start up It will sit at the White screen with the logo and the wheel that spins under it. It will not go past this point? Any ideas?

    I have a iMac (20-inch, Mid 2009). On start up It will sit at the white screen with the logo and the wheel that spins under it. It will not go past this point? Any ideas?

    Question (?) Mark, Blinking Folder, or Gray Screen at Startup
    These are related but not identical issues. Their causes are outlined in Intel-based Mac- Startup sequence and error codes, symbols. Solutions may be found in:
    A flashing question mark appears when you start your Mac
    Mac OS X- Gray screen appears during startup
    In most cases the problems may be caused by one or more of these:
    a. Problem with the computer's PRAM - See Resetting your Mac's PRAM and NVRAM.
    b. Boot drive's directory has been corrupted - Repair with Disk Utility.
    c. Critical system files are damaged or deleted - Reinstall OS X.
    d. The disk drive is physically non-functional - Replace the hard drive.
    Note that the information I have provided is what Apple recommends, If other users suggest different solutions than found here, then be sure what they recommend does not impact on your warranty, if any, or ability to get continuing Apple service.
    Please don't start removing drives or changing cables unless you know what you are doing and have exhausted other non-invasive alternatives outlined here. If you perform any work yourself that is unapproved by Apple, then you will void any warranty you may have and lose all further Apple Support.
    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    The main difference if you are using Lion or Mountain Lion is that you must first boot from the Recovery HD. Simply boot from the Recovery HD to perform the above.
    Reinstall Snow Leopard Without Erasing The drive
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.
    Reinstalling Lion/Mountain Lion Without Erasing The Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • My imac desktop wont boot up there is the logo and the timer pls help

    my imac desktop wont boot up there is the logo and the timer pls help

    What model iMac do you have and what operating system are you running? By Timer are you referring to a progress bar?
    Mac OS X: Gray screen appears during startup - Support - Apple
    Resolve startup issues and perform disk ... - Support - Apple

Maybe you are looking for

  • HT202157 My Apple TV will not update and it is connected via ether not wireless

    I have an earlier version Apple TV and I have tried to update it several times using several methods.  I am connected to the internet via ether and not wireless and teh signal is good. I can stream without any issues ever.  the update is downloaded f

  • Can't motion tween in mask CS4

    I'm building a drop down menu in flash CS4. I have followed the directions meticulously...3 times... and still I can't get a mask to accept a motion tween. Thanks for you help Sb! Little Rock

  • QuarkXPress 8 and iMac Incompatible?

    We've been having a long running issue with XPress 8 and one of our Macs which is a late 2009 27" iMac and an ATI Radeon HD 4850 video card. XPress will cause the system to crash on lanch; a red sort of "overlay" will begin on the screen at the top a

  • Web Service Data Control XMLDOMException exception

    This issue is produced when we have Web Service Data Control (D.C.) used as reference data provider and is used as List Data Source in selectOneChoice. This happens only when we have the data control created directly from the WSDL. If we create a WS

  • Creating PO with me21 using call transaction

    hi, I need some help regarding the application: i have to build a custom screen having fields for creating PO using me21 transaction using call transaction. would anybdy please guide me how to do it. i wd appreciate ur help