-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AIFD] - React on UX crosscheck review (#667)
Co-authored-by: Albert Mink <[email protected]>
- Loading branch information
1 parent
59b44ef
commit 06134bd
Showing
3 changed files
with
29 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
INTERFACE zif_aff_aifd_v1 | ||
PUBLIC. | ||
TYPES: | ||
"! <p class="shorttext">AIF Interface</p> | ||
"! AIF interface | ||
BEGIN OF ty_aif_interface, | ||
"! <p class="shorttext">Interface Object Name</p> | ||
"! Interface object name | ||
"! <p class="shorttext">Application Interface</p> | ||
"! Application interface | ||
BEGIN OF ty_application_interface, | ||
"! <p class="shorttext">Application Interface</p> | ||
"! Application interface | ||
"! $required | ||
interface_object_name TYPE c LENGTH 40, | ||
END OF ty_aif_interface, | ||
application_interface TYPE c LENGTH 40, | ||
END OF ty_application_interface, | ||
|
||
"! <p class="shorttext">AIF Interfaces</p> | ||
"! AIF interfaces | ||
ty_aif_interfaces TYPE STANDARD TABLE OF ty_aif_interface WITH DEFAULT KEY, | ||
"! <p class="shorttext">Application Interfaces</p> | ||
"! Application interfaces | ||
ty_application_interfaces TYPE STANDARD TABLE OF ty_application_interface WITH DEFAULT KEY, | ||
|
||
"! <p class="shorttext">Deployment Scenario</p> | ||
"! Deployment scenario | ||
BEGIN OF ty_main, | ||
"! $required | ||
format_version TYPE zif_aff_types_v1=>ty_format_version, | ||
format_version TYPE zif_aff_types_v1=>ty_format_version, | ||
"! <p class="shorttext">Header</p> | ||
"! Header | ||
"! $required | ||
header TYPE zif_aff_types_v1=>ty_header_60_cloud, | ||
"! <p class="shorttext">AIF Interfaces</p> | ||
"! AIF interfaces | ||
header TYPE zif_aff_types_v1=>ty_header_60_cloud, | ||
"! <p class="shorttext">Application Interfaces</p> | ||
"! Application interfaces | ||
"! $required | ||
aif_interfaces TYPE ty_aif_interfaces, | ||
application_interfaces TYPE ty_application_interfaces, | ||
END OF ty_main. | ||
ENDINTERFACE. |