Adding a data field to a Birst Query Object
These instructions describe how to add a new field to a Birst Query Object using the ism_fs_contract_mst_extension query object as an example.
- In Birst, select the [Tenant]-ISM-Dimension-Extension space.
- Select Modeler > Connect > ISM Infor Data Lake.
- Hover your mouse over the ism_fs_contract_mst_extension object, click on the down arrow and select Edit.
-
In the Query text box, add a comma
after the last field in the query's SELECT statement.
Each new field must be added as the last field in the SELECT statement.
- Press Enter.
-
Specify the new field name on the blank line.
Field names are case sensitive.Example:
SELECT /* Required Attributes */ "ism_fs_contract_mst"."CreateDate", "ism_fs_contract_mst"."CreatedBy", "ism_fs_contract_mst"."DLDeleteIndicator", "ism_fs_contract_mst"."InWorkflow", "ism_fs_contract_mst"."NoteExistsFlag", "ism_fs_contract_mst"."RecordDate", "ism_fs_contract_mst"."RowPointer", "ism_fs_contract_mst"."UpdatedBy", "ism_fs_contract_mst"."VariationNumber", "ism_fs_contract_mst"."site_ref", "ism_fs_contract_mst"."contract", "ism_fs_contract_mst"."lastModified" /* User Attributes Below (Don't forget comma after last attribute above) */ FROM "ism_fs_contract_mst" WHERE "ism_fs_contract_mst"."lastModified" >= 'V{InforISM_fs_contract_ExtractDate}'
- Click Save.
- A preview of the newly modified query is displayed. If the preview does not display, or the newly-added fields are not included, check your edits and save again.