‎2007 Aug 29 3:02 PM
I want to have a structure with a few additional fields so
the code below works
data: begin of i_catsdb occurs 0,
vernam type ernam,
versda type ersda.
include structure catsdb.
data: end of i_catsdb.
but why can't I declare the fields after the structure ?? like below or some other way. I couldn't find any working solution with , en . on different places ?
data: begin of i_catsdb occurs 0,
include structure catsdb.
vernam type ernam,
versda type ersda.
data: end of i_catsdb.
is there a reason behind it or is there some other way to append the fields after the structure ??
kind regards
arthur
‎2007 Aug 29 3:06 PM
Hi,
just try like this:
data: begin of i_catsdb occurs 0.
include structure catsdb.
data: vernam type ernam,
versda type ersda,
end of i_catsdb.regards
Carlos Constantino.
‎2007 Aug 29 3:04 PM
Hi,
jus try like this:
data: begin of i_catsdb occurs 0.
include structure catsdb.
data: vernam type ernam,
versda type ersda,
end of i_catsdb.
‎2007 Aug 29 3:06 PM
Hi,
just try like this:
data: begin of i_catsdb occurs 0.
include structure catsdb.
data: vernam type ernam,
versda type ersda,
end of i_catsdb.regards
Carlos Constantino.
‎2007 Aug 29 3:07 PM
Try this.
data: begin of i_catsdb occurs 0.
include structure catsdb.
data: vernam type ernam,
versda type ersda,
end of i_catsdb.
Sri
‎2007 Aug 29 3:08 PM
Try like this.
replace ',' with '.' in declaration
types : begin of st.
include structure stokes.
count type i.
types: end of st.
Regards,
Amit
Reward all helpful replies.