Posts

Showing posts from September, 2013

SAP Workflow Definitions

Here are the Basic definitions of SAP Business Workflow SAP Business Workflow Is a tool for the automization of business processes. Workflow Builder Is a tool that is used to define, access and or modify workflow definitions in a graphical format. workflow template : - Basic data of the workflow definition. This includes specifications on buffering reporting data,   on automatic forwarding, and so on. - The specification of triggering events. If the specified event enters the system, the workflow        starts, if the event is actively linked to the workflow. - Initial values - Specifications for the interface (workflow and event container) - A link to the corresponding workflow definition, that is, the specification of the individual workflow steps that are to be executed. workflow definition n The workflow definition is created in the Workflow Builder and is displayed graphically in a network. Biniding : ...

Drop Down in Selection-Screen

Here is the example code for displaying Drop Down in Selection-Screen using Classic ABAP *&---------------------------------------------------------------------* *& * *& * *&---------------------------------------------------------------------* *& * *& * *&---------------------------------------------------------------------* REPORT ZTEST . TYPE-POOLS: vrm. DATA: gt_list TYPE vrm_values. DATA: gwa_list TYPE vrm_value. DATA: gt_values TYPE TABLE OF dynpread, gwa_values TYPE dynpread. DATA: gv_selected_value(10) TYPE c. *--------------------------------------------------------------* *Selection-Screen *--------------------------------------------------------------* P...