5.7 Configuring E-File Name

Use this section to configure the E-file name with Case ID or Report ID while downloading.

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:

  1. To enable configuring xml file naming convention, run the following query in the atomic schema.
    UPDATE APPLN_PARAMETERS SET V_ATTRIBUTE_VALUE2=’Y’ WHERE N_PARAM_IDENTIFIER=47;
    COMMIT;
  2. To configure the display order of CASEID or REPORTID, 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;