ABAP workflow for beginners

What is SAP ABAP workflow

The following information is intended for learners who want to understand how the multiple condition step in workflow works. ABAP workflow for beginners

Steps:

1) Go to Transaction code ‘SWDD’ and we can see the following screen.

   a) SWDD is the Transaction code where we can build a workflow.

ABAP workflow for beginners

 

2) Click on the ‘create new workflow’ button which is on the top left of the screen as shown below.

ABAP workflow for beginners

 

3) Now our workflow builder screen looks as shown below.

   a) By clicking on ‘create new workflow’ button the workflow step layout will be reset to the initial stage.

ABAP workflow for beginners

 

4) Now we have to right click on ‘undefined for new step’ as shown below and click on

    create or double click on it.

    a) ‘Undefined- Double-click for new step’ allows us to create required steps in sequence.

    b) This decides the flow of processes in our workflow.

ABAP workflow for beginners

 

5) Now a popup window will appear as shown below consisting of different step types for selection.

   a) In ‘step selection’ window we get steps to select depending on our business logic.

   b) For Example: If we want to send a mail then, we have to select ‘Send Mail’ step.    

ABAP workflow for beginners

 

6) First Select the Loop (Until) step.

    a) If we want to process a step more than once then, we can use Loop(Until) step.

     b) This step loop, until the condition given in loop step is true.

ABAP workflow for beginners

 

7) Screen of the loop(until) looks as shown below.

ABAP workflow for beginners

 

8) Now on the left-hand side of the screen we can see a button choice, we have to choose

     ‘Workflow Container’ and double click on the blue space highlighted below.

   a) Container element contains 4 tabs.

          i)  D.type(Data Type).

         ii)  Properties.

         iii) Initial Value.

         iv) Change Data.

ABAP workflow for beginners

 

9) Now below screen shows the pop-up to create the container element.

    a) ‘D.type’ tab provides three options for data type declaration.

  1. Object type: Here we can choose Business object or Class as data type.
  2.  ABAP Dict. Reference:  Here we can use ABAP Dictionary structure along with the required field as data type.
  3.  ABAP Dict. Data Type: Here we can use ABAP dictionary data elements datatypes for data types declaration.

ABAP workflow for beginners

 

10) Now we have to click on ‘Properties’ tab in the pop-up and fill it as shown below.

      Check on both importing and exporting checkboxes.

       a) Here we can set the property of the parameter (Container Element) being created.

       b) Properties like Importing, Exporting, Mandatory can be applied.

       c) Multiline property: This property is checked allows to insert of multiple entries

                                           (Internal table like) into the element create.

ABAP workflow for beginners

ABAP workflow for beginners

11) Now we have to click on the ‘Initial Value’ tab and fill the counter as ‘3’.

        a) Initial value tab allows us to initialize the element.

 

12) Now click on the OK button and an element will be created as shown below.

        a) Here double arrow marks in the front ‘LV_COUNTER’ element created means,

            it has both import and export parameter checked.

 

 

13) Now we have to give the step name of the Loop(Until) screen and click on

      ‘Click here to create a new condition’ to create a ‘loop end condition’.

 

14) The popup window of the loop condition looks as shown below.

        a) In this popup we have sections of

  1. : Here we choose the ‘Relational operator’ applicable for our
    1.  
  2. Logic: Here we choose the ‘Logical operator’ applicable for our
    1. expression.
  3. Constant: This section provides space to enter numeric or alphabetical
    1.  applicable for our expression.
  4. : Adding Parentheses(After comment) to the expression
    1.  using this section.
  5. Expression 1 and Description section: Here we can choose system fields and Workflow container elements for our expression.         
  6. Condition: This is the space provided to prepare condition expression/s for our loop.

ABAP workflow for beginners

15) Now we have to give the condition and click on ok.

 

16) Now the loop step screen looks as follows.

        a) Below condition means this loop step will complete (End) once the variable

           LV_COUNTER’s value is ‘0’.

 

17) Now go back to the first screen and save workflow builder.

 

18) Now right click on the loop branch and click on the ‘create…’ option.

       a) Here we can create and include the steps in the loop branch as shown below.

       b) Steps included inside the loop branch will be processed in loops until the loop ends. 

 

19) We have to select the ‘Multiple Condition’ step to create multiple branches for execution on different conditions.

ABAP workflow for beginners

 

20)Multiple condition step.

       a) First, we have to enter ‘step name’.

       b) Select type as ‘Switch’.

       c) And create conditions as shown below.

Here we are creating three conditions.

  1. First reminder(a branch created in workflow layout with the same description is sent if the value of counter (lv_counter) is 3.
  2. Second reminder (a branch created in workflow layout with the same description) is sent if the value of the counter (lv_counter) is 2.
  3. Third reminder (a branch created in workflow layout with the same description) is sent if the value of the counter (lv_counter) is 1.

d) To fill the condition section, follow the steps as shown below.

 

  1. First enter the outcome name.
  2. Then click on the condition to provide the condition necessary to execute this branch.
  3. Now just refer steps 14 and 15 to prepare expression for each outcome.
  4. Conditions provided to each outcome will be shown in condition preview column

  e) Also provide other value outcome names.

  1. Here we can handle condition which does match any of the conditions defined in Comparison table.
  2. It just acts like when others in ‘case statement use in an ABAP code’.

 

  f) Now save this step and go back to the workflow layout screen.

 

21) Now next process will be creating ‘send mail steps’ for all the three reminders.

   A) Refer to step 19 and select the ‘Send Mail’ step.

   B) ‘Send Mail’ Step.

      a) In the mail step there is a tab named ‘Mail’.

      b) Here we have the Recipients section:

            i) Recipient types: Recipient type will allow us to choose recipients depending on Organisation Unit, job, position, work center or user.

            ii) We can also choose recipients as ‘WF initiator’

                (Workflow initiator- the user who starts the workflow).

            iii) Expression: Here we can browse the workflow container element which will hold email addresses of the valid recipients during runtime.

  C) Now Create the ‘Send Mail’ step in the First Reminder branch as shown below.

 

D) Follow same steps to create ‘Send Mail’ steps for Reminder 2 and Remainder 3.

22) Now the workflow layout looks as shown below.

 

23) Our final step will be to create ‘Container Operation step’ to decrement the counter

        ‘LV_COUNTER’.

   A) Now refer the step 19 to create the ‘Container Operation step’.

  B) The First view of the ‘Container operation’ step looks as follows.

        a) In this step we have to fill in step name, outcome name, etc.

        b) There is a check box to include or exclude this step in the workflow log(After execution).

 

C) Now we have to fill the decrement expression in ‘Operation’ section as shown below.

a) Here we are decrementing the value count of the variable ‘LV_COUNTER’ (Initial value is ‘3’).

        b) Result Element: Result Element is the variable or Parameter in which result is stored after calculation.

    1. Result Element: Result Element is the variable or Parameter in which the result is stored after calculation.
    2. Assignment: This section provides  ‘=’ and ‘<-‘ symbols to assign to the result.
    3. Expression Section: Here we can provide a ‘Workflow Container’ element or we can directly assign numeric values.
    4. Operator Section: This section consists of ‘Arithmetic Operators’ which we can assign to the expression. Examples: +,-,/,*.    

 

D) Save it and go back to workflow layout.

 

24) As our initial value of  the counter is ‘LV_COUNTER = 3’, this loop will execute for three

        times and all three reminders will be sent to WF_INITIATOR’s Inbox( T code: SBWP).

25) Check, Save and Activate.

 

ABAP workflow for beginners

26) Now the workflow is ready to execute.

eLearning Solutions Pune offers SAP ABAP training in Pune that is both practical and focused on placement. Our SAP ABAP course ranges from beginner to advanced, and it is meant to help you get a job in a good MNC company in Pune as soon as possible after you complete the sap placement training course.

These are Different Modules in SAP, Most used modules are as below:-

  1. SAP ABAP: ABAP stands for Advanced Business Application Programming. SAP ABAP is a high-level programming language.
  2. SAP MM: Stands for Materials management
  3. SAP SD: Stands for Sales & distribution
  4. SAP FICO: Financial Accounting and controlling
  5. SAP HR: Stands for Human Resource Management
  6. SAP EWM: Known as Extended, Warehouse Management
  7. SAP PP: Stands for Production planning & control

Following are the ORACLE modules:

  1. ORACLE PL — SQL Training Program
  2. ORACLE APPS R12 SCM: SCM stands for Supply Chain Management.
  3. ORACLE APPS R12 Technical : Technical course and module overview.
  4. ORACLE APPS R12 HRMS: HRMS stands for Human Resource Management System.

Along with these courses, we provide SAP HANA, and salesforce training also. To know more about courses and fees visit Click here.


SoftAt Private Limited help your business sail smoothly by providing efficient and cost-effective SAP Services.


Interested in SAP and Oracle Courses? Fill Your Details Here

    SAP ABAPSAP MMSAP SDSAP FICOSAP BASISSAP HR
    HANA AdministrationHANA Simple LogisticsABAP On HANA
    Oracle Apps R12 HRMSOracle Apps R12 SCMOracle Apps R12 Technical
    Salesforce Administrator trainingSalesforce Developer training

    Free

    SAP SD S4 HANA

    SAP SD (Sales and Distribution) is a module in the SAP ERP (Enterprise Resource Planning) system that handles all aspects of sales and distribution processes. S4 HANA is the latest version of SAP’s ERP suite, built on the SAP HANA in-memory database platform. It provides real-time data processing capabilities, improved…
    ₹25,000.00

    SAP HR HCM

    SAP Human Capital Management (SAP HCM)  is an important module in SAP. It is also known as SAP Human Resource Management System (SAP HRMS) or SAP Human Resource (HR). SAP HR software allows you to automate record-keeping processes. It is an ideal framework for the HR department to take advantage…
    ₹25,000.00

    Salesforce Administrator Training

    Salesforce Administrator Training Overview Salesforce Administrator Training for those with no previous knowledge of the Salesforce backend. Though it is not necessary to understand the front end of the system to take this Training. You will be a far better Sys Admin if you also understand the user experience. If…
    ₹25,000.00

    Salesforce Developer Training

    Salesforce Developer Training Overview Salesforce Developer training advances your skills and knowledge in building custom applications on the Salesforce platform using the programming capabilities of Apex code and the Visualforce UI framework. It covers all the fundamentals of application development through real-time projects and utilizes cases to help you clear…
    ₹25,000.00

    SAP EWM

    SAP EWM stands for Extended Warehouse Management. It is a best-of-breed WMS Warehouse Management System product offered by SAP. It was first released in 2007 as a part of SAP SCM meaning Supply Chain Management suite, but in subsequent releases, it was offered as a stand-alone product. The latest version…
    ₹18,000.00

    Oracle PL-SQL Training Program

    Oracle PL-SQL is actually the number one database. The demand in market is growing equally with the value of the database. It has become necessary for the Oracle PL-SQL certification to get the right job. eLearning Solutions is one of the renowned institutes for Oracle PL-SQL in Pune. We believe…
    Free

    Pega Training Courses in Pune- Get Certified Now

    Course details for Pega Training in Pune Elearning solution is the best PEGA training institute in Pune. PEGA is one of the Business Process Management tool (BPM), its development is based on Java and OOP concepts. The PAGA technology is mainly used to improve business purposes and cost reduction. PEGA…
    ₹27,000.00

    SAP PP (Production Planning) Training Institute

    SAP PP Training Institute in Pune SAP PP training (Production Planning) is one of the largest functional modules in SAP. This module mainly deals with the production process like capacity planning, Master production scheduling, Material requirement planning shop floor, etc. The PP module of SAP takes care of the Master…
    ₹24,999.86

    SAP Basis Training in Pune

    SAP BASIS Module Course Content (1) Hardware and Software Introduction (i) Hardware (a) Hardware Introduction (b) Architecture of different Hardware devices (ii) Software (a) Software Introduction (b) Languages and Software Development (c) Introduction to OS (d) Types of OS (iii) Database Concepts (a) Introduction (b) Database Architecture and concepts (c)…
    ₹30,000.00

    Courses For Sap HANA Administration Training

    Curriculum Details  SAP HANA Administration SAP HANA Introduction SAP HANA Introduction SAP HANA Information Sources Installation Preparation SAP HANA Sizing   Linux Operating system requirements SAP HANA Installation Introduction to SAP HANA Lifecycle Management tools Describing Advanced Installation options Explaining a Distributed system SAP HANA Architecture SAP HANA Architecture and Technology…
    ₹30,000.00

    Courses For Sap BW On HANA Training

    Business Warehouse (BW) is SAP’s data warehousing application; it uses an SAP NetWeaver application server, but can run on many different databases. Improvements come with each version of Courses for sap BW on HANA training, but a really big jump in functionality comes when SAP BW is installed on the…
    ₹30,000.00

    Courses For Sap Hana Simple Logistics Training

    SAP SAP HANA simple logistics is also known as HANA enterprise management. Different area of business is combined in this suit itself like HANA enterprise-management helps in faster and efficient processing of business data in the area of logistics, supply chain, procurement, user experience, sales, partner management. So Course for…
    ₹30,000.00

    Courses For Sap ABAP On HANA Training

    ABAP remains a key language as many SAP business applications and custom developments are written in ABAP, with Courses for sap ABAP on HANA training there are numerous improvements. The ABAP language, which allows writing streamlined ABAP code and benefit from SAP HANA. SAP HANA is a relational DBMS in SAP…
    ₹30,000.00

    Courses For Sap Hana Training

    SAP HANA is the latest ERP Solution from SAP, which is a combination of Hardware and Software. HANA has unprecedented adoption by the SAP customers. courses for SAP HANA training institutes. SAP HANA is the latest, in-memory database, and platform which can be deployed on-premises or cloud. SAP HANA is a…
    ₹25,000.00

    Oracle HRMS (Human Resource Management System) Course Details, Syllabus and Fees

    Oracle Applications R12 HRMS is one of the most demanded applications by most organizations. It is the core application possess by the ERP system. The core objective of the organization to implement Oracle R12 HRMS is to organize the entire activates of human resources management. An Elearning solution is well…
    ₹25,000.00

    Oracle Apps SCM (Supply Chain Management) Training & Certification Courses

    Elearning solutions provide training suit for Oracle Apps R12 SCM with training from industry experts. The organizations are adopting Oracle’s supply chain management cloud as they deliver the insights, visibility, and capabilities for organizations’ management. Oracle Apps R12 SCM allows the industry to create own intelligent supply chain. Hence, it…
    ₹25,000.00

    Oracle Apps R12 Technical Training Course and Module Overview

    Oracle Apps R12 Technical Course Elearning solutions is the best Oracle Apps R12 technical course in Pune owned by well trained and certified trainers. The training is conducted by the best experienced IT professionals with skilled resources. The course structure is based on the real-time scenario so that it will…
    FICO & FICO HANA
    ₹25,000.00

    SAP FICO ( Financial Accounting) Online Training And Certification in Pune

    Elearning solutions is the best SAP FICO training institute in Pune. SAP FICO is the Finance and Cost controlling module is one of the most important and widely used SAP ERP modules among organizations. As it is very robust and encounter almost all the business processes. In SAP FICO, FI…
    ₹25,000.00

    SAP SD (Sales & Distribution) Training Course Admission Details

    Elearning solutions provide SAP SD training. The tutorials are designed for the students who desired to understand SAP SD concepts and implement them in practice. The SAP SD training is delivered by industry experts, who are aware of the real-time scenarios. Hence, supporting students understand, what will be there on…
    ₹25,000.00

    Be an Certified Professional in SAP WM (Warehouse Management)

    SAP WM training is offered by Elearning solutions provides 100% hands-on practical classes. The primary focus of training is getting placement for all the students. The tutorials are designed for the students who wished to work on live projects for the organizations. The syllabus of SAP WM training is crafted…
    ₹25,000.00

    Training for SAP MM (Material Management) Course Modules

    Elearning solutions are the best SAP MM training institute in Pune. SAP MM (material management system) is one of the important models of the SAP ERP system, which is particularly designed for business processes. SAP MM deals with the entire material and inventory management of the organization. The module is…
    ₹25,000.00

    SAP ABAP Training Institute in Pune, SAP ABAP Courses Online

    Elearning Solutions best SAP ABAP training institute in Pune provides real-time training for students. SAP ABAP (Advanced Business Application Programming) is a programming language for building SAP applications such as SAP R/3 which runs in the SAP ABAP runtime environment. (SAP ABAP online course) SAP ABAP is used by organizations…



    Leave a Reply

    X
    WhatsApp chat