5.7 Configuring E-File Name
Note:
You must apply 8.1.2.7.1 (Patch Number-35528743) patch to config- ure E-File name.To configure E-File Name, follow these steps:
The display order of CASEID and REPORTID in an E-File name is based on values (that is, CASEID and REPORTID) in v_attribute_value3 and v_attribute_value4, respectively.
Following are the examples:
update appln_parameters t set t.v_attribute_value3 = 'CASEID' where t.n_param_identifier=47;
Example 1 : 99_CRRXMLOUTPUT_<CASEID>_<DateTime>.xml
update appln_parameters t set t.v_attribute_value3 = 'REPORTID' where t.n_param_identifier=47;
Example 2 : 99_CRRXMLOUTPUT_<REPID>_<DateTime>.xml;
update appln_parameters t set t.v_attribute_value3 = 'REPORTID' , t.v_at- tribute_value4 = 'CASEID' where t.n_param_identifier=47;
Example 3 : 99_CRRXMLOUTPUT_<REPID>_<CASEID>_<DateTime>.xml;
update appln_parameters t set t.v_attribute_value3 = 'CASEID' , t.v_at- tribute_value4 = 'REPORTID' where t.n_param_identifier=47;
Example 4 : 99_CRRXMLOUTPUT_<CASEID>_<REPID>_<DateTime>.xml;