2.3 Upload into SAP again. How to delete, download and transport image will be continued in Part II and Part III soon. Label: How to use SE78 in SAP, How to upload image to SAP, SE78 grey background, Upload bitmap image to SAP, SE78 in SAP, add logo through SE78 in SAP, SE78 download image, SE78 Transport. In order to upload bitmap image to SAP, start by a calling SAP transaction SE78 which will open the SAP Administration of Form Graphics maintenance screen. The SE78 transaction opens the following SAP screen, Administration of Form Graphics which enables SAP users to manage, import or upload bitmap images to SAP. Upload image from C# program to SAP WSDL Web Service. Ask Question Asked 9 years, 1 month ago. Active 9 years, 1 month ago. Viewed 848 times 0. I would like to.
- Upload Image In Sap Abap Tcode
- Upload Image To Sap Default
- Upload Image To Sap Software
- Upload Image To Apple App Store
SAP provides function to develop form by using SMARTFORMS. This form is generally used to issue Receipt, Voucher, Purchase Form and etc. These forms always have header and footer. In SAP, we can generate header and footer by adding Graphics into SMARTFORMs. This tutorial will show how to add Graphics into SAP.Transaction Code: SE78
1. Prepare your header and footer in BMP file (Bitmap)
2. Import into SAP
Press <Import button> at top left of screen.
Tips
1. Resolution in SAP should match with your prepared files. Otherwise, you will have a problem about size of Graphics. Common resolution is 150 DPI. You can define your Graphics’ resolution by using Adobe Photoshop.
2. Sometimes you upload Graphics into SAP and background of Graphics is changed to grey. Here is how to fix problem with grey background in SMARTFORMs
2.2 Click “Save as” and choose Save as type “256 Color Bitmap”.
2.3 Upload into SAP again.

How to delete, download and transport image will be continued in Part II and Part III soon.
Link to Content's target Space :
Applies to:
CRM 6.0/7.0
Summary
Uploading documents as attachments using cl_crm_documents class and displaying images in web ui screen.
Author(s):
Company:
Created on: May'15 2010
Author(s) Bio
Arun Kumar is a CRM developer working with Accenture.
This wiki explains how to upload documents & images using cl_crm_documents class and display images in web ui screen. The standard attachments tab lists the uploaded documents & images as individual links and the images are opened in a new window. This wiki also covers how to populate images in the standard web ui screen.
Create a component in transaction BSP_WD_CMPWB and add a view with view type 'Form View' or 'Empty View'. In this wiki its just an empty view without any context nodes.
The view layout is enhanced with a fileupload tag to upload images and an image tag to display images.
The upload event triggers the server event EH_ONUPLOAD in controller class.
Event EH_ONUPLOAD:
The method gets triggered when user selects the file path and clicks Upload button.
The importing parameter htmlb_event_ex has reference to thtmlb:fileUpload tag. Assign htmlb_event_ex to reference variable lr_file of type ref to cl_htmlb_fileupload.

Extract filename and file extension from file path using function module 'CRM_KW_SPLIT_FILENAME'
Assign business object so that the file can be accessed from the specified business object location. Since the business object type is USER and instance identifier is sy-uname, the uploaded document can be accessed via transaction crm_kw.
The entire file content is stored as an xstring in lr_file->file_content. Since we use method create_with_table of cl_crm_documents class, the content is split into 1022 characters and inserted into an internal table.
Upload Image In Sap Abap Tcode
Now, is the final step. Upload the document to the system using CREATE_WITH_TABLE method from class CL_CRM_DOCUMENTS.The method returns the logical and physical id's of the document location.
Now, the image is uploaded to the system. But in order to display the image we need to get the document location as a URL. It can be done by passing the logical and physical id's of the document to method GET_WITH_URL of class CL_CRM_DOCUMENTS.
The URL is assigned to public static variable gv_url.
In the layout the image location is passed through this variable <%= controller->gv_url. %>.
Screenshot:
Upload Image To Sap Default
Coding:
Layout Coding:
Method EH_ONUPLOAD:
Upload Image To Sap Software
Useful Information
Upload Image To Apple App Store
Uploading documents and displaying images in web ui using CL_CRM_DOCUMENTS class.



