cancel
Showing results for 
Search instead for 
Did you mean: 

About redefine methods with standard code in view IUICMD/CreatePerson

former_member182421
Active Contributor
0 Kudos

Hi!

I don't understand one thing, when u're enhancing a component, in my case UICMD, I redefine the method DO_FINISH_INPUT_ in the Request Processing folder.

This method, have some standard code, so I don't want to lose the functionality, I copy the standard code in a note pad, and then, redefine the method and paste the standard code, so now I can implement some custom validation without losing the standard functionality, but the editor give me syntax error in this sentence ME->MY_RENDERING_GROUP, I don't understand why my custom clas is not inheriting the atribute if I redefine the method.

Reward point will be granted for useful answers!

Thanks N' Best Regarts,

Luís

Edited by: Luis pérez on May 6, 2008 11:23 AM

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi ,

As MY_RENDERING_GROUP is a private attribute in the class CL_BSP_WD_VIEW_CONTROLLER (Which is super class of your class) you can't call that attribute in your implementation.

Instead of adding those code directly use the following. It ll do the same.

CALL METHOD SUPER->DO_FINISH_INPUT

EXPORTING

GLOBAL_EVENT = global_event

GLOBAL_MESSAGES = global_messages .

Thanks

Swagatika

Answers (1)

Answers (1)

former_member182421
Active Contributor
0 Kudos

That's it!

Reward points!

Thanks N' Best Regards

Luis