CC&B error Resolve – Unable to move value into property

Hi Friends this is very small but useful post to resolve the error “Unable to move value into”. Following is the snap of exception i found during developement (While inserting the value into Business Object [BO] using Business Service [BS] ).

The root LoggedException was: Unable to move value: ‘123456’ into property: ‘PolicyNum’
at com.splwg.shared.common.LoggedException.wrap(LoggedException.java:198)
..
..
..
Caused by: java.lang.NoSuchMethodException: Unknown property  : PolicyNum for bean class ‘com.splwg.cm.domain.customerinfo.policy.CmFeePolicy_DTO’
at com.splwg.shared.common.PropertyUtils.getMethodDescriptor(PropertyUtils.java:121)

After digging up, i found that the java name for the field “PolicyNum” was “PolicyNum”.  See carefully that first character P in java name is in upper case and that’s why the setters and getters generated by the SPL Utility in eclipse didn’t worked. To resolve this error, i simply changed the case from upper to lower case.

Posted

in

by


Related Posts

Comments

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from Jitendra Zaa

Subscribe now to keep reading and get access to the full archive.

Continue Reading