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

CI_PRPS custom fields data not saved

Former Member
0 Likes
2,487

Hi,

I have a requirement where I need to add custom fields to WBS element. I have followed the process of creating project, implementing enhancement CNEX0007, wrote code to move corresponding fields to and from the import/export parameters in customer exit, created the screen fields. Now I can see the screen fields while executing CJ20n but when I try to save the document it says data not saved.

The execution of CJ20n does take me to the enhancement implementation. But when I check the values of PRPS structure, the custom fields value seems to be blank even after adding value in screen. Any pointers appreciated.

Regards,

Melvin

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,306

Thanks everyone. This issue is resolved. It was a simple mistake from my part. I had declared the screen fields as CI_PRPS-<fieldname> rather than PRPS-<fieldname>. When I changed that the issue got resolved.

3 REPLIES 3
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,306

Did you debug your code to insure both FM correctly save and read data from top include and that customer subscreen use and update those data (TABLES statements in TOP include or explicit FIELDS statements in PBO/PAI)?

Regards,
Raymond

Read only

former_member185116
Active Participant
0 Likes
1,306

hI,

have you implemented your exit properly,

have updated data in the following FMs correctly.

EXIT_SAPLCJWB_004
EXIT_SAPLCJWB_005

Read only

Former Member
0 Likes
1,307

Thanks everyone. This issue is resolved. It was a simple mistake from my part. I had declared the screen fields as CI_PRPS-<fieldname> rather than PRPS-<fieldname>. When I changed that the issue got resolved.