9.20 Steps to create common-extended folder for extending configJSON.js file
This topic provides the systematic instructions to perform the basic operations on common-extended folder for extending configJSON.js file.
For creating common-extended folder for extending configJSON.js file to do the following:
- Create a folder inside extended-components\js\components.
- Folder structure \common-extended\js\util.
- Next we will add a file configJSON.js in the created folder.
- The code inside this configJSON.js would be like-
define(['cmn-util/configJSON'], function (baseobj) { baseobj.applicationObject.entityIdByProcessCode['CUSTOM'] = {'ccName': 'fsgbu- ob-remo-deposit-ct-process-flow', 'Name': 'RD Amount Block', 'shortName': 'RD Amount Block'}; });
- Some understanding of the code: -
- Including the base object by giving the path of configJSON.js base file.
- Then for example adding the entry for custom process as shown above.
- The extended configJSON file would be loaded from base commonFunction.js
- Insertion of the below script into PRODUCT_EXTENDED_LEDGER table
Insert into PRODUCT_EXTENDED_LEDGER (ID,CCA_NAME,CCA_TYPE,PARENT_CCA_NAME,PRODUCT_NAME) select nvl(new_uuid ,'common-extended','config',null,'EXTENDED_COMPONENTS'from PRODUCT_EXTENDED_LEDGER;
Parent topic: Extensibility Use Cases for OBX