Common¶
Setting File Format¶
Setting files of intra-mart Accel Kaiden! are provided in the format as shown below.In each setting file the setting of the whole tenant as well as the setting for each company can be made.<?xml version="1.0" encoding="UTF-8" standalone="no"?> <xxxSettings xmlns="http://kaiden.slcs.co.jp/xmlschema/xxx"> <defaultSetting> %Setting for the Whole Tenant% </defaultSetting> <companySettings> <companySetting> <companyCd>%Company A Code Value%</companyCd> <settings> %Company A Setting% </settings> </companySetting> <companySetting> <companyCd>%Company B Code Value%</companyCd> <settings> %Company B Setting% </settings> </companySetting> </companySettings> </xxxSettings>
Setting Method for the Whole Tenant¶
Setting for the whole tenant should be made by setting the [defaultSetting] tag.<?xml version="1.0" encoding="UTF-8" standalone="no"?> <xxxSettings xmlns="http://kaiden.slcs.co.jp/xmlschema/xxx"> <defaultSetting> %Setting for the Whole Tenant% </defaultSetting> </xxxSettings>Note
- If the setting is made for the whole tenant, setting for each company will not be necessary.
Setting for Each Company¶
Setting for each company should be made by setting the [companySetting] tag.<?xml version="1.0" encoding="UTF-8" standalone="no"?> <xxxSettings xmlns="http://kaiden.slcs.co.jp/xmlschema/xxx"> <defaultSetting> %Setting or the whole tenant% </defaultSetting> <companySettings> <companySetting> <companyCd>%Company A Code Value%</companyCd> <settings> %Company A Setting% </settings> </companySetting> <companySetting> <companyCd>%Company B Code Value%</companyCd> <settings> %Company B Setting% </settings> </companySetting> </companySettings> </xxxSettings>Warning
- Even when the setting for each company is in place, setting for the whole tenant must be always made.