Skip to content

Instantly share code, notes, and snippets.

@njames
Created May 23, 2013 03:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save njames/5632540 to your computer and use it in GitHub Desktop.
Save njames/5632540 to your computer and use it in GitHub Desktop.
Example of including a structure with a types command in ABAP
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