Posts

Showing posts from 2012

ADOBE FORMS in SAP ABAP

Image
T-Code - SFP    • SAP Interactive Forms by Adobe are divided into two parts based on their usage • 1-Interactive Forms - Interactive forms are used to replace any paper based business process.  • 2-PDF-Based print forms- • PDF-Based print forms create documents which retain their appearance regardless of the environment they used in.   System Requirements - 1- ADS Adobe® document services allow SAP applications (either Java or ABAP) to take advantage of the full range of capabilities in Adobe Acrobat® Professional, Adobe Acrobat Standard, and Adobe Reader®. For example, enhance the document handling capabilities of SAP NetWeaver Application Server. These capabilities enable SAP customers to: ·         Create and deploy interactive forms that look exactly like their paper counterparts ·         Work with forms in online and offline scenarios ·     ...

Workflow in SAP ABAP

A workflow is collection of rules that determine the way that how the process flow . T-Code - SWDD . Important Points - 1- Workflow Started 2- Undefined -double click for new steps 3- Workflow completed

ALV Report with OOPs

Image
How To Create ALV Report With OOPs  For the Creation Of T-Code go through below link - http://alterurmind.blogspot.in/2012/06/creating-t-code-in-abap.html Below screen display important includes and object for creating of  ALV with OOPs . REPORT   zmmr001_test. TYPE -POOLS :slis. INCLUDE  <icon>. TABLES : ekko ,eket ,vbak. TYPES  :                 BEGIN   OF  ty_result,                            ebeln             TYPE   ekpo-ebeln,                            message         TYPE   string,                END   OF  ty_result ,                BEGIN   OF ...