I added a new field to an existing report’s XML via the .rdf file in IFS Developer Studio, yet the Report Designer does not display the new field in the list of available fields.
Xml_Record_Writer_SYS.Add_Element(xml_,'OUR_EXTERNAL_ID', our_external_id);
The documentation for this is very limited.
How does the Report Designer become aware of the available fields, if not via the XML from the rdf?
Edit:
I also added the field to the view and added a comment on the column:
CREATE OR REPLACE VIEW &VIEW AS
SELECT
'' OUR_EXTERNAL_ID
FROM &VIEW_RPV h, &VIEW_RPV d
...
COMMENT ON COLUMN &VIEW..our_external_id
IS 'FLAGS=A----^DATATYPE=STRING(100)^TITLE=Our Id (external)^ITEM_NAME=iOurExternalId^';