6.3 Configuring Currency Code

Use this section to configure the currency code for the template, use the field ‘Currency’.

To get the value for Currency Code, execute the following query in the atomic schema for the CRR application .

SELECT V_ATTRIBUTE_NAME1, V_ATTRIBUTE_VALUE1 from APPLN_PARAMETERS where N_PARAM_IDENTIFIER=44;
To configure the currency code, execute the following SQL using OFSCRR atomic schema user:
UPDATE APPLN_PARAMETERS SET V_ATTRIBUTE_VALUE1= 'CAD' WHERE N_PARAM_IDENTIFIER = 44; 
COMMIT;