Home  >  Blog  >   SAP Workflow

SAP Workflow Interview Questions

SAP is widely used by businesses worldwide, and proficiency in SAP Workflow can open up many career opportunities. Companies across different industries are constantly looking for talented professionals in the field. Engaging with SAP workflow interview questions helps you to stay updated with the latest trends, and best practices in SAP workflow. Also, shows your commitment for professional growth and enhances your value as a SAP workflow professional.

Rating: 4.6
  
 
47839
  1. Share:
Table of Contents

If you're looking for SAP Workflow Interview Questions for Experienced & Freshers, you are at the right place. There are a lot of opportunities from many reputed companies in the world. According to research SAP Workflow has a market share of about 20.3%. So, You still have the opportunity to move ahead in your career in SAP Workflow.

Mindmajix offers advanced SAP Workflow Interview Questions 2024 that help you in cracking your interview & acquire a dream career as SAP Workflow Developer.

Frequently Asked SAP Workflow Interview Questions

  1. How to extend a BO?
  2. Different deadline conditions?
  3. How to achieve dynamic parallel processing?
  4. How can we debug a workflow?
  5. What is the integration point with ESS Portal?
  6. What are the different statuses of a work item?
  7. How to create client-independent tables?
  8. What is Important Tcodes in SAP Workflow?

SAP Workflow Interview Questions For Freshers

1. What are the different types of WF Agents?

1. Possible Agents:
a) Users who are authorized to execute the task
b) Configured during Task definition (Org Unit, Position, User, Work Center, Role, Rule)
c) If a Task is configured as General Task, then all users become possible users.

2. Responsible Agents:
a) The users to whom the work item needs to be sent.
b) This is set during Step definition. Note that Possible agents are defined during Task definition. (Org Unit, Position, User, Work Center, Role, Rule, Container Element) 

Note: The work item recipients are determined by the intersection of Possible Agents and Responsible Agents. 

3. Actual Agents: Actual user who executed the dialogue task

4. Excluded Agents: Users who are not supposed to execute the dialogue task (even if they are in possible agents)

2. What are the agent determination techniques?

  1. Rule Resolution with responsibility: Helpful when a set of static positions are responsible for an action.
  2. Rule resolution with Function (FM): Helpful when agents are determined dynamically from business logic.
  3. Rule resolution with OM: Usually used in CRM. Have not used
  4. Rule resolution with Function, but asynchronously: This is through a class and a method. Initially, WI is created in status ready without an agent. The later agent is assigned. This is suitable for agent determination having complex logic.

Users: Rarely used.

Role: Ex: ABAP_DEVELOPER

OM objects (Position, Org Unit, work center)

Expression: A container element containing the agents.

Containers
Workflow Container:
Task Container:
SWC_GET_CONTAINER
SWC_GET_TABLE
SWC_SET_CONTAINER
SWC_SET_TABLE
Event Container:
Method Container:
Rule Container: For resolving rules

Business Objects
Key Fields:
Attributes:
Database: Automatically gets populated by system code
Virtual: You determine the content and use SWC_SET_CONTAINER to populate
Methods: Can be created using FM, Transaction, Report, Dialog Module, Other
Synchronous: Finish execution before handling the control back to the task.
Asynchronous: Return the control back immediately. Cannot have export parameters. They depend on events to return results back to the calling program.
Dialogue: Something to user
Background: Cannot have messages or exceptions

3. What are the options to implement the method of a BO?

  1. FM
  2. BAPI
  3. Tcode
  4. Dialogue Module
  5. Report
  6. Other (BO program)

4. How to extend a BO?

1. Got SWO1 and enter a BO that you want to extend. Click on ‘New Subtype’ Give all the details.
2. Go back to SW01, enter the BO, and go to Settings Delegate.
Example:
BUS7051: Notification,
BUS1001: Material,
BUS2012: Purchase Order,
BUS1065: Employee

Various status of BO
Modeled: Not accessible at runtime
Implemented: Not ready to be used, Internal use only
Released: For the customer to use
Obsolete: Don’t use any more

To change attribute values from methods of a BO
SWC_GET_CONTAINER
SWC_SET_CONTAINER

5. How to create Events?

HR Tables: SWEHR2/3
ABAP Code user Exit: SWE_EVENT_CREATE
Change Document: SWEC
Status management:
Message Control:
Event Linkage: SWE2

Subtype: Key field cannot be created. Methods and attributes can be created.

Delegate: If you want to change the functionality of a method, define a subtype, redefine the method, delegate the parent business object to child object.

Interface: Interface is a combination of Attributes, Methods, and Events, to reduce the redundancy in the definition.

IFSAP: Common interface for all BOs. It has the following methods

Method: Display
Method: Existence Check
Attribute; ObjectType

MindMajix Youtube Channel

6. Different Workflow Steps activities?

Ans: 

  1. Condition:
  2. Multiple Conditions:
  3. Until Loop:
  4. Fork:
  5. Send Mail:
  6. Container Operations:
  7. Event Creator:
  8. Wait for Event:
  9. Process Control

7. Different deadline conditions?

  1. Requested Start: When this date is met, only then the work item will start execution, or available for taking action (dialogue).
  2. Latest Start: When a date mentioned here is met, it can send an email, or can be modeled to do something active.
  3. Requested End: Same as Latest Start
  4. Latest End: Same as Latest Start

8. Important Tcodes?

Workflow Toolbox: SWUS
Simulate Event: SWU0
Business Object Repository: SW01
Event Trace: SWEL (S)
Work items per task: SWI2_FREQ
SWUE: Event simulate
SWEL: Event log
SWELS: Set event log ON
SWE2: Linkage between Event and Workflow
SWEHR2: Event linkage in HR
SWU3: Workflow customizing
SWU_OBUF: Synchronize buffers
SWI5: Look into other user’s SBWP

9. What are the Important background Jobs for workflow?

SWWDHEX: For deadline monitoring
SWWERRE: For error Monitoring 
SWEQSRV: For Event Queue Delivery

10. What are the workflows created by you?

Ans: Function Module that creates the workflow
SAP_WAPI_START_WORKFLOW:
SAP_WAPI_CREATE_EVENT
SAP_WAPI_WORKITEM_RECIPIENTS
SAP_WAPI_GET_WORKITEM_DETAIL

SAP Workflow Interview Questions For Experience

11. When an info-type action is performed, an event should trigger, and a workflow subsequently. How can I configure it?

Ans: Tcode SWEHR2

12. When an info type action is performed, an FM should trigger, and a workflow subsequently. How can I configure it?

Ans: Tcode SWEHR2

13. How to achieve dynamic parallel processing?

Ans: There are three ways parallel processing can be implemented
Dynamic parallel processing using a multi-line container element
Fork (3 out of 5) Work Queue
In dynamic processing, the type of each entry in the table has to be of the same type.
The same task will be processed for each line of the multi-line container. It can be a dialogue or background task. Deadline monitoring, binding, agent determination will be the same for each work item generated To achieve, go to “Miscellaneous” in the activity, and enter the multi-line container element.

14. How to notify a user immediately in R/3 that he has got an email?

Ans: Mark the priority as ‘1’ Express

15. How can we debug a workflow?

  1. If it is a dialogue task, you can set a breakpoint in the method called by the task
  2. If it is a method that you want to debug, use SWO1, and create an instance of the object and debug the methods
  3. If it is a background task, and you are in a development client, you can do the following. Create an infinite loop in the method you want to debug. Go to SM50 (processes overview) and select the relevant item, and select debug from the option.

16. A Huge number of events is getting created in a short duration of time, and thus creating a huge load on the system and making it very slow. Solution?

Ans: Enable the event queue. It will ensure that triggered events are received in a phased manner. This needs to be done while providing event linkages.

17. Why ‘Process Control’ is used? What are its features?

Ans: 

‘Process Control’ is used to manipulate another work item of the workflow during runtime.
‘Process Control’ is usually used to model the workflow when deadlines are reached. SAP offers 4 standard behaviors as part of process control.

  1. Cancel Work item: Target WI is logically deleted. Subsequent tasks are not executed. The precondition is that Process control and the target WI have to be indifferent branches of the same fork.
  2. Set Work item to obsolete: The target WI is set to complete, and processing continues in the branch processing obsolete.
  3. Cancel Workflow: Current workflow is set to ‘Complete’. If this is the sub-workflow, then the control goes to the super-ordinate workflow.
  4. Complete (terminate) Workflow: Same as above, but the branch of super-ordinate workflow which contains the current sub-workflow will not be continued.
  5. Cancel Workflow including all callers: Same as above, but all callers also will be ‘completed.

18. What is the integration point with ESS Portal?

Ans: Tcode SWFVISU
Portal config file for UWL

19. What are the types of work items?

Dialog Work item – W
Background work item
Workflow work item
Work queue work item
Missed deadline work item: When a deadline is missed a missed deadline work item with the message appears in the inbox

20. What are the different statuses of a work item?

Ans: 

  1. Waiting
  2. Ready
  3. Reserved
  4. In process
  5. Executed (‘confirm the end of processing’ in task definition)
  6. Completed
  7. Logically deleted
  8. Error

21. Difference between Asynchronous and Synchronous methods in a task?

Ans: A work item created as part of synchronous in locked until the end of the method execution. But in asynchronous, work item is locked only until the start of method execution.
At least one terminating event is required for a task using an Asynchronous task

SAP Workflow FAQs

22. What is the use of secondary methods in an Activity?

Ans: 

  1. A modal call
  2. Before work item executing
  3. After work item execution

23. What is the BO method called for the task which calls UWL WD screens? Why?

Ans: EXTSRV –> PROCESS

24. What is the use of “Advance with dialog”?

Ans: If this indicator is set for an activity, the workflow system checks if the processor of the current task is also a recipient for the next task. If yes, then the next task will be executed immediately.

25. On ABAP: Did you set up a workflow? Are you familiar with all the steps for setting up a workflow?

Ans: 

  1. Yes.
  2. Execute the Txn SWDD (Creating a new Workflow).
  3. In the header of the Workflow, define the Business Object and Event you refer to for triggering the Wf.
  4. Create the Steps required for your workflow(Activity).
  5. Inside the Activity, Create the task and assign the Business Object and the related method for that business object.
  6. Activate the Workflow.

26. Have you used performance tuning? What major steps will you use for these?

Ans: The Main Transaction Code Involved in Performance Tuning is SE30-Run Time Analysis and ST05-SQL Tracer.

27. In the ‘select’ statement what is “group by”?

Ans: 

  1. Group by clause is used to fetch the data from the table by the specified field
  2. ex.select count (*) from emp table group by deptno where deptno = 1.
  3. It is used to find the number of employees present in the specified department no.

28. SAP R/3 screens how will you develop a table control having 3 columns with only one editable?

Ans: 

  1. we can develop it by giving the code in PBO (process before output) giving table control line = 3. it will give only 3 lines and we can make 2 lines disable in screen painter options available in table control
  2. Elementary search helps, Collective search help.
  3. Elementary search helps defines a search path where we will define the table from which the data has to be read and the selection criteria. Through import and export parameters. Used when we get the data from a single table.
  4. Collective search helps: Combination of elementary search helps. When we need to fetch data based on multiple selection criteria’s. More than one tables are Selection from multiple tables
  5. Difference between Search Helps and Match Codes
  6. search help: adding f4 functionality is search help(adding help for any topic)
  7. match code: adding search help for the input field is called a math code object

29. Have you created database tables?

Ans: YES, IF WE HAVE CUSTOMISED DATA TO STORE IN A TABLE, WE CREATE A TABLE.

30. Difference between client dependent and client independent tables?

Ans: 

  1. Tables which can be accessed by all user are client independent (no mandt field in the table)
  2. Tables which can be accessed by some specific user are client dependent (use mandt field in the table)

31. How to create client-independent tables?

Ans: 

  1. The table in which the first field is not mandt is the client independent tables
  2. Mandt is the field with mandt as the data element
  3. Automatically client which we log in is populated to mandt

32. Have you created Maintenance dialogue or Table Maintenance?

Ans: At the time of creating the table though, there is a checkbox for table maintenance allowed. So if you want to activate the table maintenance, just mark this box. Once table gets activated, u can change its contents through SM30 not Through Table Maintenance.

33. Which method is executed if space is passed for the method parameter of macro SWC_CALL_METHOD?

Ans: The Default method of the object type is executed if space is passed as the method parameter value. You can find the default method by viewing the applicable object using transaction SWO1 and going to the menu option “Goto -> Basic Data” and clicking on the Defaults tab. The default method is located in the field “Method”

34. Name the tables used for storing the event linkages?

Ans: 

  1. SWETYPECOU: Type Linkage Table
  2. SWEINSTCOU: Instance Linkage Table

35. List the various advantages of SAP Business Workflow?

  1. Workflow provides numerous advantages to SAP users and consultants:
  2. It allows consultants to create new business processes without modifying the standard SAP code.
  3. Workflow ensures that the tasks are executed in the correct sequential order, involving the relevant personnel.
  4. SAP Business Workflow may be run through the internet or intranet web applications via the Webflow Engine.
  5. Deadline Monitoring functionality is also incorporated within the SAP Workflow.
  6. The timely execution of activities is guaranteed even when a number of parties (users) are involved.
  7. Workflow reduces both the time and expense involved in managing business activities.

36. Workflow is not starting. What might be possible reasons and corresponding solution?

If started by an event:  

  1. Run SWU_OBUF and check transaction SWU3 for problems.
  2. Check that the linkage between the event and the workflow exists in transaction SWE2 and is activated.
  3. Check transaction SWEL to see if the event was created/gets created (may need transaction SWELS to turn SWEL on).
  4. Test if creating the event manually in SWUE triggers the workflow.  
  5. Check if there is a start condition that isn’t being satisfied.
  6. Check if the event is in a queue (if event queueing is turned on, see transaction SWEQADM)
  7. Check WF-BATCH in transaction SU01, see if all is well (e.g. password not expired)

If started directly (e.g. with function module SAP_WAPI_START_WORKFLOW; not recommended if it can be avoided):

  1. Run SWU_OBUF and check SWU3 for problems
  2. Check if the workflow has been set to General Task

37. What is a work item? How does it differ from a simple SAP office mail item?

  1. A work item is a runtime object generated by a step within a workflow. Whenever user interaction is required, the respective users are informed via work items. These work items will be received by the user in their Business Workplace inbox or other email application such as Microsoft Outlook&rights;
  2. The work item may be a user decision or a dialogue form that allows you to enter data for starting a process within SAP, or a confirmation of whether a particular task may be performed. The user then chooses an appropriate option that determines the subsequent behavior of the workflow in question. There are a variety of applicable work items. Each work item has a status reflecting the stage of processing at any given point in time.
  3. A work item comprises of text explaining what action needs to be taken, whom to refer to, and any information pertinent to the business object involved.
  4. Unlike simple SAP office emails, work items are active entities, as they determine the subsequent direction of the workflow. SAP office emails can also be deleted from the inbox without viewing them whereas a work item has to be executed to have it removed from your inbox

38. What is a background work item? Are they displayed in the Business Workplace?

Ans: A background work item (code B) represents tasks that do not require any user interaction. They are controlled and executed automatically by the workflow system and do not appear in the Business Workplace. However, you may view them using the Work Item Selection Report.

39. Is there any way to undelete work items in SAP workflow after I have logically deleted them already?

Ans: No. What you can do is restart the workflow using SWUE. This will be the same as recreating the workflow because it will start at the point where it has logically been deleted.

40. How do you set up a user to receive a pop-up reminder when he/she gets a new WF message?

Ans: You can accomplish this by setting up the work item priority to the highest level.

41. Is it possible to create timed events?

Ans: You may consider using deadline monitoring facilities. For example:  
Requested start, requested end; Latest start or latest end on tasks;

42. What is Important Tcodes in SAP Workflow?

  1. SWUS: Workflow Toolbox
  2. SWU0: Simulate Event
  3. SWI2_FREQ: Workitems per task
  4. SWUE: Event simulate
  5. SWELS: Set event log ON
  6. SWEHR2: Event linkage in HR
  7. SWU3: Workflow customizing
  8. SWU_OBUF: Synchronize buffers
  9. SWI5: Look into other user’s SBWP
  10. SWDD: Workflow builder
  11. SWLD: SAP workflow easy access to all workflow related transactions
  12. SW01: Maintain Business objects (add new attributes, methods, events, etc to standard business objects)
  13. SWE2: Active event linkages, addition options not available by SWDD such as setting check function module.
  14. SWWL_TOPLEVEL: Delete workflow items from SBWP.  
  15. SWELLS: Start/ stop event trace
  16. SWEL: View event trace report
  17. SWUD: Workflow diagnosis
  18. SWI2_DIAG: Troubleshoot workflows in error, restart
  19. SWIA: Workflow administrator
  20. SWB_COND: Maintain workflow start condition (has pretty pics but is especially rubbish, everything can be done easier via SWDD
  21. SWNCONFIG: Send emails to the user with unread work items
  22. SWEC: Trigger workflow on change doc
  23. SWAY: Workflow wizard for message long text
  24. SBWP: Business workplace
  25. PFTC: Maintain (change, display, copy) WF objects including tasks, workflow templates…
  26. PFAC: Maintain Rules for workflow steps (can include ABAP code)
  27. SM63: Events
  28. SWI1: Work item selection
  29. SWI2_DEAD: Workflow items with the monitored deadline (items that missed the deadline)
  30. SWI2_DURA: Workflow items by processing duration. 
Join our newsletter
inbox

Stay updated with our newsletter, packed with Tutorials, Interview Questions, How-to's, Tips & Tricks, Latest Trends & Updates, and more ➤ Straight to your inbox!

About Author

Ravindra Savaram is a Technical Lead at Mindmajix.com. His passion lies in writing articles on the most popular IT platforms including Machine learning, DevOps, Data Science, Artificial Intelligence, RPA, Deep Learning, and so on. You can stay up to date on all these technologies by following him on LinkedIn and Twitter.

read more
Recommended Courses

1 / 15