‎2008 Jun 13 11:17 AM
what is stape type in work flow?how many types r there?could u explain with detailed stapes?
‎2008 Jun 13 11:35 AM
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.