Friday, January 17, 2020

Force Active User Property

Today I'll will be going through Force Active property at Business Component level. As we all are aware about Force Active at the Field Level.



Where when Force Active is true then field is queried each time the business component is instantiated (we can check it in the SQL which gets triggered once BC is instantiated), even if field is not exposed on the user interface. Also, to note that setting this property to TRUE may reduce performance.


Similarly, we have Force Active property at the Business Component level,



It can have two values. TRUE or FALSE. By default for ever business component this property is set to FALSE.

If this property is set to TRUE, then all the fields in the Business Component are automatically retrieved from the database server. This will result in reducing the performance of the business component and is also not recommended.

No comments:

Post a Comment

Updating parent BC depending on the status of child BC using configuration

Parent BC: Service Request Child BC: Action Requirement: When all the Actions corresponding to an SR are closed the SR status should be “Clo...