Created
May 23, 2013 03:11
-
-
Save njames/5632540 to your computer and use it in GitHub Desktop.
Example of including a structure with a types command in ABAP
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
TYPES: BEGIN OF line, | |
date_from TYPE d, | |
time_from TYPE t, | |
date_to TYPE d, | |
time_to TYPE t. | |
INCLUDE TYPE crmst_date_btil. | |
TYPES: END OF line. | |
CREATE DATA rv_sample TYPE line. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment