Avatar

Level 10

I don't think there is a limit on the number of processes & forms to be used within an application.

However there is recommendation for not having more than 20 variable in a single process.

Each process created within you application will become a service. So it doesn't matter having 500 processes in one application or 50 processes in 10 applications. You will endup with 500 services deployed into Java Runtime.

Forms also doesn't bother about the count as it just stay within repository (not in Java Runtime).

The only issue with enormous resources within an application is the response time to Deploy to application server (which you already mentioned here).

So, if you can split your resources into manageable units, that will reduce your checkin/deploy time.

Nith