cancel
Showing results for 
Search instead for 
Did you mean: 

Message error problem.

Rodrigo-Giner
Active Contributor
0 Kudos

I have problems in the code of the Search button in onActionSearch.

this.CheckCel(<?>);

what I have to put there ? because in the tutorial says:

this.checkMandatory(IPrivateForm.IContextElement.NAME);

I dont get what is IPrivateForm.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Rodrigo,

IPrivateForm is Internal Private Interface Controller. This internal private interface is created automatically when any controller Form is declared. You are not allowed to mmodify this class directly. IPrivateForm provides controller Form with access to its own functionality. It is this interface that becomes the WEb dynpro self reference wdThis.

IPrivateForm is always an extension of IPublicForm.

If any events for controller Form are declared, the event handler methods are created within in this private interface.

Inner Interfaces

IContextNode extends IWDNode

this is generic interface to all context nodes in Form.

IContextElement extends IWDNodeElement

This is generic interface to all context node elements in Form.

Methods:

IWDContext wdGetContext()

returns a reference to the controllers context.

IWDComponent wdGetAPI()

Returns a reference to the generic API of controller Form.

Hope this helps you.

Thanks,

Raj.

Answers (0)