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

BDT custom fields value transferring

Former Member
0 Likes
725

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.

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.

3 REPLIES 3
Read only

Former Member
0 Likes
674

BTW, in which table CMS_RE_STR_OBJ_HDR_SCR stores its value?

Thank you.

Read only

matt
Active Contributor
0 Likes
674

Ming Yu wrote:

But only this does not work, I cannot transfer the value by this.

Why? What happens? Please try to give sufficient detail for sensible analysis of the problem.

Read only

Former Member
0 Likes
674

Coz I created my own Z* function group and I didn't do any insert or update in it.

I guess that the update of  CMS_RE_STR_OBJ_HDR_SCR is implemented inside the standard function group CMS_RE_BDT.

I think there should be some function modules can be called to transfer my own data in  Z* function group to CMS_RE_BDT.