Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
NaotoSakai
Advisor
Advisor

Here is a little technique for SAP Build Process Automation.

How to define variables?


In general, SAP Build Process Automation allows a process to flow by using the values entered in a form in subsequent steps.
And this is how you can refer to the values of different components (components that exist before the component) with a click selection.



It is convenient to be able to select the value you want to display or use with a click.
However, this convenience can sometimes turn into difficulty.
For example, you want to set the value "Hello" to the read-only text field named “Comment" on this approval form.
In fact, it seems that this field does not allow manual entry of values, but only allows setting of values from other components.
I wish there was a Set Variables component like in Build Apps, but there is not in Build Process Automation. I don't want to place a meaningless "Hello" field in the form before this one in the flow, so I need to do something about it.
What should we do? Here are two ways to do it.


1.Use Automation


Once you have defined the values you want to set for Automation's output, you can use those values from subsequent components.


You can define only the outputs with empty contents like this.




If you have already set up a Desktop Agent in Unattended mode, you can use this method.


Personally, I think it is better to set up at least one Desktop Agent in Unattended mode, as it can be used in a variety of situations and can be more like a programming logic compared to a workflow in Automation. For example, type conversion and string substitution are also possible within Automation, so please consider installing a Desktop Agent not for RPA, but for this kind of generic processing and processing within a workflow.


2.Use Decision





Decision is used to determine the next approver in samples and so on. If you think about it, this function outputs the ID of the next approver and so on as variables. In other words, it can be used as a variable definition.

For example, you can assign Process Started By (ID of the person who executed this flow) as an input and then use ...



The rule compares two user id's as input and sets the value to be assigned as output.


By setting a conditional expression that must always be True, and then setting an arbitrary value as the output value, the value is defined.
Although Decision is primarily used to determine the next approver in a business rule-like manner, it can also be used in this way.


Items that can only be assigned variables can also be set to arbitrary values as shown above.
I hope you will use this feature effectively during flow development.

3 Comments