getting error like Too many parameters, parameter is exceeding the limit of 255 words eligible for method parameters .please help me out.
Hi,
I managed to generate a bdm with an object with 350 attributes. The error you get is caused by a request having more than 255 parameters. It is not supported to have more than 255 parameters for a method in java.
I suggest updating your data model and split this big object into several objects and use aggregation or composition relation or remove the unique constraints on each attribute of your object if it is the case.
HTH
Romain
Indeed, this is not a good practice to have so many attributes in the same object.
Functionally, you can probably cut your business object into several objects with real business meaning. It will ease the understanding and the use of your business design.
HTH
thank you romain.bioteau
after creating how can i retrive that entire data to custom ui page.
thanks in advance.
You can use the bdm API