| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | | Quintiq file version 2.0 |  | #parent: #root |  | Method PTF_IsStandardActionSelected ( |  |   output String feedback_o |  | ) as Boolean id:Method_LibPTF_dlgCreateEditTestScript_PTF_IsStandardActionSelected |  | { |  |   #keys: '[104342.0.782570419]' |  |   Body: |  |   [* |  |     // Checks if the selected action in the StringSelectionKeyword is a standard action |  |     value := selKeyWord.BoundValue().Length() > 0; |  |      |  |     if( not value ) |  |     { |  |       feedback_o := feedback_o + "No standard action is selected" + String::NewLine(); |  |     } |  |      |  |     return value; |  |   *] |  | } | 
 |