TIF 2025.4.0 Release Information

This release was published 2025-11-18

Check-in Destination for Reporting Functionality

The TIF reporting functionality now supports a special destination <Checkin>, which can be used to check in final report files back to the source object. It also supports creating and checking in files to a related object.

<Job>
    <Name>Create BOM Report</Name>
	<CreateReport transferOneByOne="true">
        <Report name="BOMData1.pdf">
            ...
        </Report>

        <Report name="BOMData2.pdf">
            ...
        </Report>

        <Destinations>
            <Checkin>
				<CheckinObject>
					<ExistStrategy>overwrite</ExistStrategy>
					<Format>generic</Format>
					<UseCDM>true</UseCDM>
				</CheckinObject>
                <CreateObject>
                    ...
                </CreateObject>
                <ConnectObject>
                    ...
                </ConnectObject>
			</Checkin>
    	</Destinations>
    </CreateReport>
</Job>

Please read more from here.

Report Watermarking

The TIF reporting functionality now also supports watermarking PDF reports.

An example configuration:

<Job>
    <Name>Create BOM Report</Name>
	<CreateReport transferOneByOne="true">
        <Report name="BOMData1.pdf">
            ...
            <Generator type="fop">
                <Format>pdf</Format>
                ....
				<PDFWatermark>
					<Definition>
						<Text>Hello world</Text>
						<StartX>20</StartX>
						<StartY>10</StartY>
						<FontSize>25</FontSize>
						<FontColor>rgb(255,0,0)</FontColor>
						<FontName>Arial</FontName>
					</Definition>
				</PDFWatermark>
            </Generator>
        </Report>
    </CreateReport>
</Job>

Read more from here.

Fixed Bugs

Below is the list of fixed bugs as of this release.

Issue No Description

1060

Clear button not available in service filter dropdown