|
| 1 | +INTERFACE zif_aff_saia_v1 |
| 2 | + PUBLIC. |
| 3 | + |
| 4 | + "! <p class="shorttext">Object Type</p> |
| 5 | + "! Object type |
| 6 | + TYPES ty_wb_object_type TYPE c LENGTH 4. |
| 7 | + "! <p class="shorttext">Object Subtype</p> |
| 8 | + "! Object sub-type |
| 9 | + TYPES ty_wb_object_sub_type TYPE c LENGTH 3. |
| 10 | + |
| 11 | + TYPES: |
| 12 | + "! <p class="shorttext">Object Type</p> |
| 13 | + "! Object type |
| 14 | + BEGIN OF ty_workbench_object_type, |
| 15 | + "! <p class="shorttext">Object Type</p> |
| 16 | + "! Object type |
| 17 | + workbench_object_type TYPE ty_wb_object_type, |
| 18 | + "! <p class="shorttext">Object Subtype</p> |
| 19 | + "! Object subtype |
| 20 | + workbench_object_subtype TYPE ty_wb_object_sub_type, |
| 21 | + END OF ty_workbench_object_type. |
| 22 | + |
| 23 | + "! <p class="shorttext">Filter: Object Types</p> |
| 24 | + "! Filter for object types |
| 25 | + TYPES ty_workbench_object_types TYPE SORTED TABLE OF ty_workbench_object_type WITH UNIQUE DEFAULT KEY. |
| 26 | + |
| 27 | + "! $values { @link zif_aff_saia_v1.data:co_number_of_focused_resources } |
| 28 | + "! $default { @link zif_aff_saia_v1.data:co_number_of_focused_resources.any } |
| 29 | + TYPES ty_number_of_focused_resources TYPE string. |
| 30 | + |
| 31 | + CONSTANTS: |
| 32 | + "! <p class="shorttext">Number of Focused Resources</p> |
| 33 | + "! Number of focused resources |
| 34 | + BEGIN OF co_number_of_focused_resources, |
| 35 | + "! <p class="shorttext">One</p> |
| 36 | + "! One |
| 37 | + exactly_one TYPE ty_number_of_focused_resources VALUE 'EXACTLY_ONE', |
| 38 | + "! <p class="shorttext">At least One</p> |
| 39 | + "! At least one |
| 40 | + at_least_one TYPE ty_number_of_focused_resources VALUE 'AT_LEAST_ONE', |
| 41 | + "! <p class="shorttext">At least Two</p> |
| 42 | + "! At least two |
| 43 | + more_than_one TYPE ty_number_of_focused_resources VALUE 'MORE_THAN_ONE', |
| 44 | + "! <p class="shorttext">Any</p> |
| 45 | + "! Any |
| 46 | + any TYPE ty_number_of_focused_resources VALUE 'ANY', |
| 47 | + END OF co_number_of_focused_resources. |
| 48 | + |
| 49 | + TYPES: |
| 50 | + "! <p class="shorttext">Filter: Cardinality</p> |
| 51 | + "! Filtering of action according to specified applicable criteria. |
| 52 | + "! If filter is satisfied then the action is available and will be shown. |
| 53 | + "! $required |
| 54 | + BEGIN OF ty_filters, |
| 55 | + "! <p class="shorttext">Number of Focused Resources</p> |
| 56 | + "! Number of focused resources |
| 57 | + number_of_focused_resources TYPE ty_number_of_focused_resources, |
| 58 | + "! <p class="shorttext">Filter: Object Types</p> |
| 59 | + "! Filtering of action according to specified object types |
| 60 | + supported_dev_object_types TYPE ty_workbench_object_types, |
| 61 | + END OF ty_filters. |
| 62 | + |
| 63 | + "! <p class="shorttext">Title</p> |
| 64 | + "! title |
| 65 | + TYPES ty_action_title TYPE c LENGTH 30. |
| 66 | + |
| 67 | + TYPES: |
| 68 | + "! <p class="shorttext">IDE Action</p> |
| 69 | + "! IDE action |
| 70 | + "! $required |
| 71 | + BEGIN OF ty_adt_saia_object, |
| 72 | + "! <p class="shorttext">Title</p> |
| 73 | + "! Title |
| 74 | + "! $required |
| 75 | + title TYPE ty_action_title, |
| 76 | + "! <p class="shorttext">Summary</p> |
| 77 | + "! What is the action doing and how can it be used |
| 78 | + "! $required |
| 79 | + summary TYPE string, |
| 80 | + "! <p class="shorttext">Implementing Class</p> |
| 81 | + "! Implementing class for handling the action input. Needs to implement interface {@link if_aia_action }. |
| 82 | + implementing_class TYPE zif_aff_types_v1=>ty_object_name_30, |
| 83 | + "! <p class="shorttext">Input UI Configuration Class</p> |
| 84 | + "! Input UI configuration class for implementing the server-driven UI input configuration. |
| 85 | + "! Needs to implement interface {@link IF_AIA_SD_ACTION_INPUT }. |
| 86 | + input_ui_configuration_class TYPE zif_aff_types_v1=>ty_object_name_30, |
| 87 | + END OF ty_adt_saia_object. |
| 88 | + |
| 89 | + TYPES: |
| 90 | + "! <p class="shorttext">IDE Action</p> |
| 91 | + "! IDE action (SAIA) v1 |
| 92 | + BEGIN OF ty_main, |
| 93 | + "! <p class="shorttext">Format Version</p> |
| 94 | + "! Format version |
| 95 | + "! $required |
| 96 | + format_version TYPE zif_aff_types_v1=>ty_format_version, |
| 97 | + "! <p class="shorttext">Header</p> |
| 98 | + "! Header |
| 99 | + "! $required |
| 100 | + header TYPE zif_aff_types_v1=>ty_header_100, |
| 101 | + "! <p class="shorttext">General Information</p> |
| 102 | + "! General information |
| 103 | + "! $required |
| 104 | + general_information TYPE ty_adt_saia_object, |
| 105 | + "! <p class="shorttext">Filter: Cardinality</p> |
| 106 | + "! Filtering of application of action according to cardinality and object types |
| 107 | + filters TYPE ty_filters, |
| 108 | + END OF ty_main. |
| 109 | + |
| 110 | +ENDINTERFACE. |
0 commit comments