|
Purpose Add leading zeros to a string if it is numeric, e.g. a customer number For particular key fields SAP uses the "alpha" conversion exit; it adds leading zeros if the value is numeric, leaving the value unchanged if not. |
|
Solution GuiXT
Explanation: The regular expression passed to regex= consists of the following components: ^ asserts the start of the string. \d+ matches 1 or more digits (\d is shorthand for any digit, and + specifies that this pattern may occur 1 or more times). $ asserts the end of the string. |
|
Components |