You may see the following message (Huge Data Call Graph/Transaction, content is not available) when looking through the list of available transactions or call graphs:

This indicates that during the data export/import process, the exporter tool identified that the transaction/data call graph contained more than 10,000 objects, and therefore stopped the processing action for this specific item. In other words, the detail of this transaction/data call graph has not been exported and is therefore unavailable.

It is possible to modify the threshold (default 10,000 objects) at which the CAST Imaging exporter tool will consider that a transaction/data call graph is "huge" - to do so, you need to edit the following file:

%PROGRAMFILES%\CAST\ImagingSystem\imagingetl\scriptsuser\cfg_options.sql
Note that the same file is available in %PROGRAMFILES%\CAST\ImagingSystem\imagingetl\scriptsdefault, but you must not modify this file.

Find the following lines of code - there is a commented section governing the threshold for transactions, and another one for data call graphs. If your file does not contain these sections, copy the sections in to the file:

-- filter transactions containing more than XXXX objects
-- transaction name is updated (' - Huge Transaction, content is not available' is appended)
-- detail of transaction is not exported
-- update aaa_is_cfg_options set option_status = XXXX where option_name = 'Transaction Identification: Maximum Number of Objects per Transaction';

-- filter data call graphs containing more than XXXX objects
-- data call graph name is updated (' - Huge Data Call Graph, content is not available' is appended)
-- detail of data call graph is not exported
-- update aaa_is_cfg_options set option_status = XXXX where option_name = 'Data Call Graph Identification: Maximum Number of Objects per Data Call';

Uncomment the line beginning -- update (either for transactions or for data call graphs, or both as required) and then add the new value in place of XXXX. For example, to increase the threshold for transactions to 15000:

-- filter transactions containing more than XXXX objects
-- transaction name is updated (' - Huge Transaction, content is not available' is appended)
-- detail of transaction is not exported
update aaa_is_cfg_options set option_status = 15000 where option_name = 'Transaction Identification: Maximum Number of Objects per Transaction';

-- filter data call graphs containing more than XXXX objects
-- data call graph name is updated (' - Huge Data Call Graph, content is not available' is appended)
-- detail of data call graph is not exported
-- update aaa_is_cfg_options set option_status = XXXX where option_name = 'Data Call Graph Identification: Maximum Number of Objects per Data Call';

Save the file and then perform a new export/import process again for your Application, as described in Export and import the Application data.