Malaysia (MYS): Item Classification ID

You can model the Product Tariff Code (PTC).

In the MyInvois platform, you can use the Product Tariff Code (PTC) or you can use codes from the Malaysian Classification Code List.

General information about commodity classification is provided in the VRBL: Commodity Classification topic.

Elements

Use the CommodityClassificationCode element to model this information:

Name (Path)CardinalityDescription
Commodity Classification (/Invoice/InvoiceLine/ CommodityClassificationCode)0..1A group of elements providing information about the items classification by type or nature.
Commodity Classification Item Classification Identifier (/Invoice/InvoiceLine/CommodityClassificationCode/ ItemClassificationCode)1..1A code for classifying the item by its type or nature.
Commodity Classification Item Classification Scheme Identifier (/Invoice/InvoiceLine/CommodityClassificationCode/ ItemClassificationCode @listID)1..1The code list ID.

Restrictions

  • You must use one of the following values for the the Commodity Classification Item Classification Scheme Identifier attribute:
@listIDelement
VRBL:MY:PTCProduct tariff code
VRBL:MY:CLASSCategory of products or services

Example

<Invoice>
    <!-- Code omitted for clarity -->
    <cac:InvoiceLine>
        <!-- Code omitted for clarity -->
        <cac:Item>
            <!-- Code omitted for clarity -->                        
            <cac:CommodityClassification>
                <cbc:ItemClassificationCode listID="VRBL:MY:CLASS">003</cbc:ItemClassificationCode>
            </cac:CommodityClassification>
            <cac:CommodityClassification>
                <cbc:ItemClassificationCode listID="VRBL:MY:PTC">9800.00.0010</cbc:ItemClassificationCode>
            </cac:CommodityClassification>
            <!-- Code omitted for clarity -->
        </cac:Item>
        <!-- Code omitted for clarity -->
    </cac:InvoiceLine>
    <!-- Code omitted for clarity -->
</Invoice>