Hi all,
I want to add some new fields for the real estate screen of CMS workbench.
I have already done the screen part by creating a Z* function group.
Moreover, I also append a Z* structure(e.g. ZCMS_RE_EXTRA, having all the new fields inside) to CMS_RE_STR_OBJ_HDR_SCR.
What I want to ask is how to store and read the data of ZCMS_RE_EXTRA.
Currently, I write:
TABLES: CMS_RE_STR_OBJ_HDR_SCR.
DATA G_ZCMS_RE_EXTRA TYPE ZCMS_RE_EXTRA.
MOVE-CORRESPONDING G_ZCMS_RE_EXTRA TO CMS_RE_STR_OBJ_HDR_SCR. "PBO
MOVE-CORRESPONDING CMS_RE_STR_OBJ_HDR_SCR TO G_ZCMS_RE_EXTRA. "PAI
But only this does not work, I cannot transfer the value by this.