2005 Jan 25 7:56 AM
Hi ,
I have an internal table as given below
DATA: BEGIN OF RESB_TAB OCCURS 0.
INCLUDE STRUCTURE RESB_AFFW.
DATA: END OF RESB_TAB.
where RESB_AFFW is an predefined structure , how can i add another field to this internal table.
Regards
Arun
Hi ,
I have an internal table as given below
DATA: BEGIN OF RESB_TAB OCCURS 0.
INCLUDE STRUCTURE RESB_AFFW.
DATA: END OF RESB_TAB.
where RESB_AFFW is an predefined structure , how can i add another field to this internal table.
Regards
Arun
2005 Jan 25 8:06 AM
Hi Arun,
You can do this:
DATA: BEGIN OF RESB_TAB OCCURS 0.
INCLUDE STRUCTURE RESB_AFFW.
DATA:
MY_field(40) type C,
.
.
.
END OF RESB_TAB.
Regards,
John.
2006 Apr 05 11:39 PM
how to Add payroll period fields(FAPER & IPERIN) to the structure HRMS_BIW_PY1.
These fields are coming from RT_Person cluster table.
Thanks alot