DBB_POST_EDIT

You can execute the DBB_POST_EDIT exit point to provide a custom routine that performs calculations and transformations on the Data Backbone content after the Data Backbone content is edited interactively as part of the handling of a Content Wizard.

DBB_POST_EDIT PROC transform_data (CONST TEXT wizard)
DO
  ...
OD

The wizard parameter of the DBB_POST_EDIT exit point contains the name of the Content Wizard that has been processed.

The DBB_POST_EDIT exit point can use the _data variable to manipulate the Data Backbone content.

The following example command performs a custom transformation. The format_policy_number function must be defined in a Code Library.

DBB_POST_EDIT
PROC transform (CONST TEXT wizard)
DO
  (* Format policy number from 1,234,567,890 to 123.456.7890 *)
  ASSIGN _data.PolicyData.PolicyNumber := format_policy_number (_data.PolicyData.PolicyNumber)
OD