Posts

Showing posts from October, 2018

Using BAPI upload excel file for t-code AS02 in SAP

Using BAPI " BAPI_FIXEDASSET_CHANGE " create a zprogram to upload excel file for mass change fixed asset in SAP. REPORT  ZAS02_ASSET_CHANGE_UPLOAD . TYPE-POOLS :  truxs . " Structure for Excel data TYPES :  BEGIN  OF  ty_excel ,          anln1  TYPE  anln1 ,          bukrs  TYPE  bukrs ,          kostl  TYPE  kostl ,          werks  TYPE  werks ,          prctr  TYPE  prctr ,         END  OF  ty_excel . DATA :  lt_excel     TYPE  TABLE  OF  ty_excel ,       ls_excel     TYPE  ty_excel ,     ...

SAP Smartforms vs SAP Script

Image
Smartform: Smart form is a GUI Tool which is used to design the business legal documents such as Delivery note,Purchase order,Invoice etc. The transaction code is SMARTFORMS. Smartforms are client independent objects. Smartforms are advanced version of SAP Scripts. It is a GUI tool and it is user friendly.  Smatrtforms and SAP Scripts differences: Smartforms SAP Scripts     Smartforms are client independent. SAP Scripts are client dependent. Main window is not compulsory. Main window is compulsory. Smartforms generates a Function module when activated. No Function Module will be generated. Smartforms texts supports various colors. Scripts allows black and white colors only. There is no transfer of control between program and form, once the control is transfered to Function Module, it will never come back. Scripts has repeated transfer of control. Only single page for...

ERP concept

Image
Enterprise resource planning ( ERP ) is an enterprise-wide information system designed to coordinate all the resources, information, and activities needed to complete business processes such as order fulfillment or billing. An ERP system supports most of the business system that maintains in a single database the data needed for a variety of business functions such as Manufacturing, Supply Chain Management, Financials, Projects, Human Resources and Customer Relationship Management. An ERP system is based on a common database and a modular software design. The common database can allow every department of a business to store and retrieve information in real-time. The information should be reliable, accessible, and easily shared. The modular software design should mean a business can select the modules they need, mix and match modules from different vendors, and add new modules of their own to improve business performance.  Ideally, the data for the various bus...