CF_INFO
Feature available from Bizview version - Bizview 2011 (1.0630.1705)
The CF_INFO function can be used to return the following values in the template:
- Client ID (with or without description)
- User ID (with or without description)
- Sheet
- if the template is in design mode or generated (from Bizview 7.2)
CF_INFO Function Excluding Description
=CF_INFO("CLIENT")
However, the description can also be returned for CLIENT and USER.
CF_INFO Function Including Description:
=CF_INFO("CLIENT",TRUE)
=CF_INFO("USER",TRUE)
Note: The separator in the formula depends on the culture you are using in the application. "," for en-US, however ";" for sv-SE and so on.
CF_INFO Function to Evaluate if the Template is Generated or in Design Mode
This is a new feature in Bizview version 7.2.
=CF_INFO("DESIGN")
Design mode = value 1
Generated template = value 0
The function can be used if the designer wants to evaluate if the template is generated or opened in design mode. For example, =IF(CF_INFO("DESIGN") = "1","DESIGN MODE","GENERATED).