Custom XML file

In a custom XML file, you can define the business object, the business component, and the attributes of the business component that you want to reconcile.

Create the custom XML file in the ADAPTER_SOLDIR\SiebelCustomXMLs\ directory.

For example, to create a custom XML file Account.xml, with the following attributes that belongs to the Account business component:
  • Name (Simple attribute)
  • Organization (MVGBusComponent attribute)
  • Type (PicklistBusComponent attribute)
Create the Account.xml file, and copy the following information to the file:
<?xml version = "1.0" encoding = "UTF-8"?>
<!DOCTYPE BusinessObject SYSTEM "Validator.dtd">

<BusinessObject name = "Account">
	<BusinessComponent name = "Account" viewMode = "5">	
		
    <Attribute name = "Name" isUnique = "true" isRequired = "true"> </Attribute>			
	 <PicklistBusComponent name="Type" viewMode = "5">		
    <Attribute name = "Name" isUnique = "true" isRequired = "true"></Attribute>
	 </PicklistBusComponent>	
		
	 <MVGBusComponent name="Organization" viewMode = "9">
    <Attribute name = "Name" isUnique = "true" isRequired = "true"></Attribute>			
	 </MVGBusComponent>	
		
  </BusinessComponent>			
</BusinessObject>
Note: When creating a custom xml, strictly follow the rules that are defined in validator.dtd.