India IRP: Item Type Code

You can model whether an item is a product or service.

Element

Use the Item/ItemTypeCode element to model this information:

Name (Path)CardinalityDescription
Item Type Code (Invoice/InvoiceLine/Item/ItemTypeCode)0..1Specify the item type code.

Restrictions

You must use one of the following values in the Item Type Code element. If you do not specify a value, it defaults to VRBL:IN:PRODUCT:

CodeDescription
VRBL:IN:SERVICEService
VRBL:IN:PRODUCTProduct

Example

<Invoice>
    <!-- code omitted for clarity -->
	 <cac:InvoiceLine>
		<!-- code omitted for clarity -->
		<cac:Item>
			<!-- code omitted for clarity -->
			<cbc:ItemTypeCode>VRBL:IN:SERVICE</cbc:ItemTypeCode>
			<!-- code omitted for clarity -->
		</cac:Item>
		<!-- code omitted for clarity -->
	</cac:InvoiceLine>				
    <!-- code omitted for clarity -->
</Invoice>