Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

stape types

Former Member
0 Likes
359

what is stape type in work flow?how many types r there?could u explain with detailed stapes?

1 REPLY 1
Read only

Former Member
0 Likes
338

There are basically unlimted number of TYPEs.

Whenever you define a field, and other then the basic types (C,N,I,P,X, etc), you can define it with any data element OR domain that you current have defined either within your program or in the data dictionary.

Example


DATA: mydate    type sy-datum.

Very vaild TYPE.

Another


BEGIN OF MYREC,
   Field1          type C,
   Field2          type I,
   Field3          type P,
END OF MYREC,

MY2NDREC type MYREC.

Another very valid type in this situation.