Hi,
I have a dataclass request which has data classes (request1 , request2,request 3) inside the main data class request. While creating the main data class request , I have created a function NEW inside it which is as follows :
/**
Description of function 'NEW'.
@param $value Description of parameter '$value'.
@return Description of return value.
*/
Function NEW(String $value) : Nothing Begin
$this.request1 := NEW(RequestClass);
$this.request2 := NEW(RequestData);
$this.request3 := NEW(RequestQuery);
End
The data classes request1 , request 2 and request3 furthur have data entities inside them.
Now in the main process I have created the variable request (of type request) and inside the screen task when I try to bind the variables from request1 or reuest2 or request3 to the data field and run the process , I am getting an error on the binded field which says " Component Rendering Error: com.nm.sdk.data.pages.views.components.TextField"
I have a dataclass request which has data classes (request1 , request2,request 3) inside the main data class request. While creating the main data class request , I have created a function NEW inside it which is as follows :
/**
Description of function 'NEW'.
@param $value Description of parameter '$value'.
@return Description of return value.
*/
Function NEW(String $value) : Nothing Begin
$this.request1 := NEW(RequestClass);
$this.request2 := NEW(RequestData);
$this.request3 := NEW(RequestQuery);
End
The data classes request1 , request 2 and request3 furthur have data entities inside them.
Now in the main process I have created the variable request (of type request) and inside the screen task when I try to bind the variables from request1 or reuest2 or request3 to the data field and run the process , I am getting an error on the binded field which says " Component Rendering Error: com.nm.sdk.data.pages.views.components.TextField"
Please help me with this.
Thanks in Advance