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

Adding a field to an internal table contaning a predefined structure

Former Member
0 Likes
418

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

2 REPLIES 2
Read only

Former Member
0 Likes
388

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.

Read only

0 Likes
388

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