Appendix D Embedded String
Describes parameters that can be entered in [Request Parameter] setting of [Call External URL].
| Parameter | Format | Description |
|---|---|---|
| Type | String | Specify format string by the java.util.Formatter format. |
| Value | Value | Specifies the value to be formatted. You can set values other than the user input or embedded string. Note
|
Note
- Select [Embedded String] for [Request Parameter Settings].
- Specify by formatting the value. You can select the value when it is string type.
Format Strings
The following is an example of an input value for a format string.
Example 1: If you select "Login User" as the first value in the value list and "Current Time" as the second value
Format string: %2$tY%2$tm%2$td%2$tH%2$tM%2$tS_%1$s
Case name to be created: 20200425114515_Ao Fuji
Example 2: If "Current Time" is selected as the first value in the value list, "Login User" is selected as the second value, the third value is set to [Fixed Value], and "Fujifilm" is entered in the input area
Format string: %3$s_%1$tY%1$tm%1$td%1$tH%1$tM%1$tS_%2$s
Case name to be created: FUJIFILM_20200425114515_Ao Fuji
Example 3: If fixed characters are written in "Current Time" with the settings in Example 1
Format string: %2$tYYear%2$tmMonth%2$tdDay%2$tHHour%2$tMMinute%2$tSSecond_%1$s
Case name to be created: 2020Year04Month25Day11Hour45Minute15Second_Ao Fuji
| Format | Description |
|---|---|
| %1 | Indicates the first argument. |
| %2 | Indicates the second argument. |
| %3 | Indicates the third argument. |
| $tY / $ty | Indicates the western calendar year by four digits. / Indicates the western calendar year by the last two digits. |
| $tm | Indicates the month in two digits. |
| $td | Indicates the day in two digits. |
| $tH | Indicates the hour in two digits. |
| $tM | Indicates the minute in two digits. |
| $tS | Indicates the second in two digits. |
| $s | Indicates the character string. |