Malaysia: Tourism Tax Registration Number (TTRN)
The Tourism Tax Registration Number (TTRN) identifies a part as a participant in the Tourism Tax (TT) scheme in Malaysia.
Use the ID
element to specify the TTRN. You can specify it for Suppliers or Buyers.
Elements
Element | Description |
---|---|
Invoice/AccountingSupplierParty/Party/PartyIdentification/ID | Supplier's TTRN |
Invoice/AccountingSupplierParty/Party/PartyIdentification/ID[@schemeID='VRBL:MY:TTX'] | Specify VRBL:MY:TTX |
Invoice/AccountingCustomerParty/Party/PartyIdentification/ID | Customer's TTRN |
Invoice/AccountingCustomerParty/Party/PartyIdentification/ID[@schemeID='VRBL:MY:TTX'] | Specify VRBL:MY:TTX |
Restrictions
- You must use
VRBL:MY:TTX
in the@schemeID
attribute. This is not ISO/IEC 6523 compliant.
Example
The following example specifies a TTRN for a Buyer:
<ubl:Invoice>
<!-- Code omitted for clarity -->
<cac:AccountingCustomerParty>
<cac:Party>
<!-- Code omitted for clarity -->
<cac:PartyIdentification>
<cbc:ID schemeID="VRBL:MY:TTX">A01-2345-67891012</cbc:ID>
</cac:PartyIdentification>
<!-- Code omitted for clarity -->
</cac:Party>
</cac:AccountingCustomerParty>
<!-- Code omitted for clarity -->
</ubl:Invoice>
Updated 2 months ago