10 Creating Custom Fields and Storable Classes
You can create custom fields and storable classes in Oracle Communications Billing and Revenue Management (BRM) cloud native using the BRM SDK opcodes or the pin_deploy utility.
Topics in this document:
-
Creating, Editing, and Deleting Fields and Storable Classes using BRM SDK Opcodes
-
Moving Field and Storable Class Definitions Between BRM Servers with pin_deploy
The storable class structure is described in "Understanding Storable Classes" in BRM Developer's Guide.
Creating, Editing, and Deleting Fields and Storable Classes using BRM SDK Opcodes
You can use the BRM SDK opcodes to create, modify, delete, or retrieve storable class and field specifications from the BRM database. For more information about the BRM SDK, see "Using BRM SDK" in BRM Developer's Guide.
To manage field and storable class specifications using the BRM SDK opcodes:
-
Enable changes to the data dictionary. See "Making the Data Dictionary Writable".
-
Create, edit, or delete your custom storable classes and fields by running the BRM SDK opcodes. See "Running the BRM SDK Opcodes".
-
Make your custom fields and storable classes available to BRM applications by generating source and header files.
-
For BRM applications written in PCM C and C++, see "Making Custom Fields Available to Your PCM and C++ Applications".
-
For BRM applications written in Java PCM, see "Making Custom Fields Available to Your Java PCM Applications".
-
Making the Data Dictionary Writable
Ensure the data dictionary is writable before adding or changing fields and storable classes.
Perform the following for each database in your system:
-
Enable changes to the data dictionary by doing the following:
-
Open the dm-oracle-pin-conf-config ConfigMap.
-
Ensure the following fields are set to 1:
data: pin.conf: | - dm dd_write_enable_fields 1 - dm dd_write_enable_objects 1
-
Save and close the file.
-
-
(Optional) To increase the size of the CM cache for the data dictionary, do the following:
-
Open the cm-pin-conf-config ConfigMap.
-
Increase the cacheSize value in the following entries:
data: pin.conf: | - cm_cache cm_data_dictionary_cache numberOfEntries, cacheSize, hashSize - cm_cache fm_utils_data_dictionary_cache numberOfEntries, cacheSize, hashSize
-
Save and close the file.
-
-
(Optional) To configure whether the DM runs Data Definition Language (DDL) when updating object types in the data dictionary tables, do the following:
-
Open the dm-oracle-pin-conf-config ConfigMap.
-
Set the following entry:
data: pin.conf: | - dm sm_oracle_ddl value
where value is 1 to run DDLs when updating object types or 0 not to run them. Setting value to 1 ensures that database objects are mapped to the correct tables.
-
Save and close the file.
-
-
Run the helm upgrade command to update the BRM Helm release:
helm upgrade BrmReleaseName oc-cn-helm-chart --values OverrideValuesFile -n BrmNameSpace
where:
-
BrmReleaseName is the release name for oc-cn-helm-chart and is used to track this installation instance.
-
OverrideValuesFile is the file name and path to your override-values.yaml file.
-
BrmNameSpace is the namespace in which to create BRM Kubernetes objects for the BRM Helm chart.
-
Running the BRM SDK Opcodes
You can run the BRM SDK opcodes in the BRM cloud native system without entering a pod by running the testnap utility through a configurator job. For more information about:
-
The testnap utility's syntax and parameters, see "testnap" in BRM Developer's Guide.
-
Configurator jobs, see "Running Load Utilities through Configurator Jobs".
To run the BRM SDK opcodes:
-
Create a testnap script with the following content:
r << XXX 1 flistContent XXX xop opcodeNumber bufferNumber
where:
-
flistContent is the input flist for the BRM SDK opcode you want to run.
-
opcodeNumber is the number of the BRM SDK opcode to run. For the list of opcode numbers for the BRM SDK opcodes, see Table 10-1 and Table 10-2.
-
bufferNumber is the internal buffer number used to load the opcode's input flist file.
-
-
Add the following lines to the oc-cn-helm-chart/config_scripts/loadme.sh script:
#!/bin/sh cd /oms/sys/data/config; testnap testnapScript exit 0;
where testnapScript is the name and path to the testnap script you created.
-
Move testnapScript to the oc-cn-helm-chart/config_scripts directory.
-
In the override-values.yaml file for oc-cn-helm-chart, set ocbrm.config_jobs.run_apps to true.
-
Run the helm upgrade command for oc-cn-helm-chart:
helm upgrade BrmReleaseName oc-cn-helm-chart --values OverrideValuesFile --namespace BrmNameSpace
Table 10-1 describes the BRM SDK opcodes to run for creating, modifying, deleting, and retrieving storable classes.
Table 10-1 BRM SDK Opcodes for Storable Classes
Opcode Name | Opcode Number | Description |
---|---|---|
PCM_OP_SDK_SET_OBJ_SPECS |
578 |
Creates or modifies a storable class specification in the data dictionary of all databases in your BRM system. It takes the following as input: POID, storable class name, and storable class type. If the transaction is successful, the opcode returns the POID of the created or modified storable class and a results array containing an SQL description of any table changes. Note: If you change a storable class after it has been instanced and populated with data, your database will be corrupted. |
PCM_OP_SDK_GET_OBJ_SPECS |
577 |
Retrieves the storable class specifications specified in the input flist. You can retrieve specific levels or types of objects by using the wildcard (*) character. When no storable classes are specified, the opcode returns all storable class specifications in the BRM database. If the transaction is successful, the opcode returns the specified storable class specifications or all storable class specifications if the input flist does not specify a storable class. |
PCM_OP_SDK_DEL_OBJ_SPECS |
583 |
Deletes storable class specifications from the data dictionary only. To drop the actual table that was created by PCM_OP_SDK_SET_OBJ_SPECS, you must drop it manually. The opcode deletes storable class specifications from the data dictionary of all databases in your BRM system. If the transaction is successful, the opcode returns the POID of the deleted storable class and a results array containing an SQL description of any table changes. Note: Deleting a storable class that has already been instantiated corrupts your database. For example, never delete the /account storable class. Because of this danger, Oracle recommends not using this opcode on a production system. |
Table 10-2 describes the BRM SDK opcodes to run for creating, modifying, deleting, and retrieving field definitions.
Table 10-2 BRM SDK Opcodes for Field Definitions
Opcode Name | Opcode Number | Description |
---|---|---|
PCM_OP_SDK_SET_FLD_SPECS |
576 |
Creates or modifies the specified field specification in the data dictionary of all databases in your BRM system. It takes the following as input: a partial POID (database number plus /dd/fields), field name, and field type. Note: The POID is the only mandatory field on the input flist. However, to implement the field, you must at least specify the field name and type. The opcode returns the POID of the created or modified data dictionary field if the transaction is successful. If the opcode cannot create or modify the field, the opcode returns the field's POID, along with the PIN_FLD_ACTION field set to NOOP. |
PCM_OP_SDK_GET_FLD_SPECS |
575 |
Retrieves all field specifications specified on the input flist. When no fields are specified, this opcode returns all field specifications in the BRM database. Note: Returning all field specifications can take a long time. |
PCM_OP_SDK_DEL_FLD_SPECS |
585 |
Deletes the specified field specification from the data dictionary of all databases in your BRM system. It takes the following as input: the partial POID (database number plus /dd/fields) and the name of the field to delete. If the transaction is successful, the opcode returns the POID of the deleted field specification. |
Making Custom Fields Available to Your PCM and C++ Applications
After you create custom fields and storable classes, you must make them available to your BRM cloud native applications. The first step is to create a C header file, and then you generate a Java package with the custom storable classes.
To make custom fields available to your BRM cloud native applications written in PCM C or PCM C++:
-
Create a C header file for your custom fields. For information about the syntax to use in a header file, view the BRM_home/include/pin_flds.h file in the brm-sdk pod.
-
Enable the brm-sdk pod if you haven't already done so.
-
Set these keys in your override-values.yaml file for oc-cn-helm-chart:
brm_sdk: isEnabled: true deployment: imageName: brm_sdk imageTag: 15.0.x.0.0 pvc: storage: 50Mi
-
Run the helm upgrade command for oc-cn-helm-chart:
helm upgrade BrmReleaseName oc-cn-helm-chart --values OverrideValuesFile -n BrmNameSpace
where:
-
BrmReleaseName is the release name for oc-cn-helm-chart and is used to track this installation instance.
-
OverrideValuesFile is the path to a YAML file that overrides the default configurations in the values.yaml file for oc-cn-helm-chart.
-
BrmNameSpace is the namespace in which BRM Kubernetes objects were created for oc-cn-helm-chart.
-
-
-
Copy your C header file to the brm-sdk pod:
cp fileName oc-cn-helm-chart/brm_sdk_scripts/ helm upgrade BrmReleaseName oc-cn-helm-chart --namespace BrmNameSpace --values OverrideValuesFile
where fileName is the name of your C header file.
For example, if the C header file is named cust_flds.h:
cp cust_flds.h oc-cn-helm-chart/brm_sdk_scripts/ helm upgrade BrmReleaseName oc-cn-helm-chart --namespace BrmNameSpace --values OverrideValuesFile
Afterward, the files from oc-cn-helm-chart/brm_sdk_scripts/ are available at /oms/load in the brm-sdk pod.
-
Find the name of the brm-sdk pod:
kubectl get pods --namespace BrmNameSpace | grep brm-sdk
You should see something similar to this:
NAME READY STATUS RESTARTS AGE brm-sdk-f67b95777-bf8j5 1/1 Running 0 18m
In this case, the brm-sdk pod name (brmSDKPodName) is brm-sdk-f67b95777-bf8j5.
-
Run the kubectl exec command to get a shell to the running brm-sdk container:
kubectl exec -it --namespace BrmNameSpace brmSDKPodName bash
For example:
kubectl exec -it --namespace BrmNameSpace brm-sdk-f67b95777-bf8j5 bash
-
In your shell, go to the /oms/load directory and run the parse_custom_ops_fields.pl script with the custom source file:
perl parse_custom_ops_fields -L pcmc -I filename -O custFlds -P javaPackageName
where:
-
custFlds: Specifies the name and the location of the memory-mapped output file to create.
-
javaPackageName: Specifies the name of the Java package in which to create the generated classes.
For example, if the C header file is named cust_flds.h:
perl parse_custom_ops_fields -L pcmc -I cust_flds.h -O outputFile -P javaPackageName
For information about the parameters and syntax for parse_custom_ops_fields, see "parse_custom_ops_fields" in BRM Developer's Guide.
-
-
Configure one or more BRM applications to access your custom fields by doing the following for each BRM application:
-
Open the application's oc-cn-helm-chart/templates/configmap_pin_conf_*.yaml file.
-
Add the following entry, replacing custFlds with the file name and location of the memory-mapped output file that parse_custom_ops_fields created:
- - ops_fields_extension_file custFlds
Note:
Do not add more than one ops_fields_extension_file entry. The custom fields source file and the extension file that results from it contain information about all the custom fields in the data dictionary, so a single reference to that file is sufficient.
-
Include the cust_flds.h header file in the applications and FMs that use the custom fields.
Note:
Default BRM fields are defined with their numbers in the BRM_home/include/pin_flds.h file in the brm-sdk pod. While it is possible to add custom fields directly to pin_flds.h, you should not do so. Placing custom field definitions in the separate cust_flds.h file allows you to upgrade to new releases without having to edit pin_flds.h.
-
Making Custom Fields Available to Your Java PCM Applications
Note:
Developer Center is a Java application. To ensure that custom fields are displayed properly in flists in Object Browser and Opcode Workbench, you must follow the procedures for making fields available to Java applications.
Configure one or more BRM applications to access your custom fields by doing the following:
-
Create a Java source file for each custom field.
-
Do the following for each application:
-
Open the application's oc-cn-helm-chart/templates/configmap_infranet_properties_*.yaml file.
-
Add properties for configuring your custom field and source file.
-
Save and close the file.
-
-
Compile the Java source files you created in Step 1.
-
(Optional) Compress the compiled classes into a JAR file.
-
In your CLASSPATH environment variable, add the location of the JAR files or compiled Java classes.
Moving Field and Storable Class Definitions Between BRM Servers with pin_deploy
You can transport definitions for storable classes and fields from one BRM server to another using the pin_deploy utility. For example, you could move them from your development environment to your production environment. The pin_deploy utility exports storable class and field definitions to a Portal Object Definition Language (PODL) file and loads them into the BRM data dictionary.
Moving field and storable class definitions from one BRM server to another involves these high-level tasks:
-
Extracting Field and Storable Class Definitions with pin_deploy
-
Importing Field and Storable Class Definitions with pin_deploy
The pin_deploy utility is available on all BRM platforms, can be scripted, and can use stdin and stdout. It has several modes of operation to ensure atomic operations and consistency. It provides the following advantages:
-
Streamlines the process of putting all storable class and field definitions into source code management
-
Enables you to print out a storable class or field definition for review
-
Reduces the possibility of damaging the BRM production database data dictionary
See "pin_deploy" in BRM Developer's Guide for more information about the utility's syntax and parameters.
Extracting Field and Storable Class Definitions with pin_deploy
To extract field and storable class definitions from the source BRM cloud native server:
-
To extract definitions for both fields and storable classes, add the following lines to the oc-cn-helm-chart/config_scripts/loadme.sh script:
#!/bin/sh cd /oms/sys/data/config; pin_deploy field [-cp] fieldName1 fieldName2 fieldNameN cd /oms/sys/data/config; pin_deploy class [-mnscp] className1 className2 classNameN exit 0;
where:
-
fieldNameN specifies the name of the field to export.
-
classNameN specifies the name of the storable class to export.
-
-m specifies to export the storable class implementation.
-
-n specifies to export the storable class interface.
-
-s specifies to include all subclasses of specified storable class.
-
-c specifies to include field definitions for all customer-defined fields within storable classes.
-
-p specifies to include field definitions for all BRM-defined fields within storable classes.
-
-
In the override-values.yaml file for oc-cn-helm-chart, set ocbrm.config_jobs.run_apps to true.
-
Run the helm upgrade command to update the release:
helm upgrade BrmReleaseName oc-cn-helm-chart --values OverrideValuesFile -n BrmNameSpace
where:
-
BrmReleaseName is the release name for oc-cn-helm-chart and is used to track this installation instance.
- OverrideValuesFile is the file name and path to your override-values.yaml file.
-
BrmNameSpace is the namespace in which to create BRM Kubernetes objects for the BRM Helm chart.
-
Importing Field and Storable Class Definitions with pin_deploy
To import field and storable class definitions into the destination BRM server:
Note:
The pin_deploy utility cannot determine the space requirement in the BRM database. If you run out of disk space before the deployment is complete, you must manually drop the tables that were created, make more space, and try again.
-
Add up the implementation definitions (for example, initial clause) of the PODL files you want to import to verify that you have enough disk space. The lines start with this text:
SQL_STORAGE =
-
Configure BRM cloud native to do the following:
-
Run pin_deploy in verify mode to determine if there are any conflicts with existing storable class and field definitions.
-
Commit the storable class and field definitions to the BRM database.
To do so, add the following lines to the oc-cn-helm-chart/config_scripts/loadme.sh script:
#!/bin/sh cd /oms/sys/data/config; pin_deploy verify filename.podl cd /oms/sys/data/config; pin_deploy command filename.podl exit 0;
where:
-
filename is the name of the PODL file that contains your storable class or field definitions. If there are multiple PODL files, separate the file names using a space as a delimiter.
-
command is either:
-
create to preserve old storable class and field definitions that conflict with new ones
-
replace to overwrite storable class and field definitions that conflict with existing ones.
-
-
-
In the override-values.yaml file for oc-cn-helm-chart, set ocbrm.config_jobs.run_apps to true.
-
Run the helm upgrade command to update the release:
helm upgrade BrmReleaseName oc-cn-helm-chart --values OverrideValuesFile -n BrmNameSpace
where:
-
BrmReleaseName is the release name for oc-cn-helm-chart and is used to track this installation instance.
-
OverrideValuesFile is the file name and path to your override-values.yaml file.
-
BrmNameSpace is the namespace in which to create BRM Kubernetes objects for the BRM Helm chart.
-
In all cases, the utility imports the entire PODL file. Nothing from the file is loaded if the utility cannot load the entire file. For example, if it loads a storable class that includes custom fields, they must exist in the data dictionary or in the PODL file for the storable class to load.