woof65,
Assumptions:
1- You have made your Customer BO part of the SystemUser BO Group
2- Customer BO has an attribuute Customer.FranchiseNumber
3- Product BO has an attribuute Product.FranchiseNumber
You can construct a query of the Product BO that "filters" for Product.FranchiseNumber=LoggedInSystemUser.FranchiseNumber
You can also use similar syntax in a FIND ..... WHERE action which would be part of a process.
Since there is only 1 instance of the LoggedInSystemUser, it's attributes can be used in any query.
You can find examples of LoggedInSystemUser in these CRM sample database queries:
1- Communication with customer using single parameter
2-Logged in staff calendar
3- Communication with customer
Is this what you were looking for?
Tom