In this article we will change the smartforms text editor to Microsoft Word. 1. Call transaction SE38 and run RSCPSETEDITOR program. Make sure the smartforms checkbox is checked then click Activate button, for switching off the Microsoft Word editor for smartforms uncheck the Smartforms indicator and then click the Activate button on toolbar. Incoming search […]
Category: Smartforms
XLWB Workbench is best tool to export SAP Data to Excel
What is XLWB Workbench. Someday my functionality team ask me to create complicated excel report in SAP, we know SAP Technology have number tools and library about Excel, for example : OLE Library, BDS. etc. I think all of tools from SAP Standard is too much coding line has to write to __ bulky code […]
How to add Graphics in Smartforms
You can display any graphics or image in Smartforms by using transaction code SE78. Expand node of GRAPHICS and then double click on BMAP ( Bitmap Image ) , press F5 or click Menu Graphic->Import , to import an image. You need to check Reserve Height Automatically and Compression in Print Attributes. to add this […]
How to turn off default MS Word editor in Smartforms SAP HANA
If you want to turn off MS Word editor Smartform in SAP HANA, You can’t change this setting in SAP HANA because SAP set to default and cannot change even you change using program rscpseteditor. but i have the solution. You need to create enhancement implementation in class CL_COS_UTILITIES on method IS_S4H. Please write this following ABAP code […]
How to Get Delivery Address from Purchase Order
This code you can get Delivery Address for Purchase Order in SAP, It can use for your ABAP Program or Smartforms. Explanation : You can get Address Number from table and field EKPO-ADRN2 and then get address data from table ADRC-ADDRNUMBER. Source Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
DATA : lw_adrc_dlv TYPE adrc, li_ekpo type table of ekpo with header line. ............. READ TABLE li_ekpo WITH KEY ebeln = lw_data-ebeln ebelp = lw_data-ebelp. IF sy-subrc EQ 0. SELECT SINGLE * INTO lw_adrc_dlv FROM adrc WHERE addrnumber = li_ekpo-adrn2. CONCATENATE lw_adrc_dlv-street lw_adrc_dlv-str_suppl1 lw_adrc_dlv-str_suppl2 lw_adrc_dlv-str_suppl3 lw_adrc_dlv-location lw_adrc_dlv-city2 lw_adrc_dlv-city1 lw_adrc_dlv-post_code1 INTO gw_report-deliv_address SEPARATED BY space. ENDIF. |
Incoming search terms:sap delivery address,sap table with sc vendor delivery address,sap […]