Table of Contents

KVSKBADocumentHeaderBuffer

Fields

Name Type Note
Doc Scope Enum (KVSKBADocumentScope)
Doc Type Enum (KVSKBADocumentType)
No. Code[20]
Doc. No. Occurrence Integer
Version No. Integer
Entry No. Integer
Doc No. Print Text[30]
Document ID Text[100]
Version Info Text[30]
Language Code Code[10]
Currency Code Code[10]
No. of Archived Versions Integer
Bar Code Text[30]
Report ID Integer
Show Internal Info Boolean
Sender Window Text[100]
Company Address Text[250]
Company Address 2 Text[250]
Destination Address Text[250]
Destination Address 2 Text[250]
Ship to Address Text[250]
Ship to Address 2 Text[250]
Invoice to Address Text[250]
Invoice to Address 2 Text[250]
Doc Date Date
Cust. Vend. No. Code[20]
Dimension Set ID Integer
Company Phone No. Text[30]
Company Fax No. Text[30]
Company E-Mail Text[80]
Company Home Page Text[255]
Responsibility Center Code[10]
Price incl. VAT Boolean
VAT Base Discount % Decimal
VAT Amount Decimal
Total excl. VAT Decimal
Total incl.VAT Decimal
Total LCY Decimal
Payment Disc. on VAT Decimal
Total LineAmount Decimal
Inv. Disc. Amount Decimal
Recurring Billing Boolean
Total Caption Text[30]
Subtotal Caption Text[30]
Inv. Disc. Amount Caption Text[30]
VAT Amount Caption Text[30]
Total excl. VAT Caption Text[30]
Total incl. VAT Caption Text[30]
VAT Disc. Amount Caption Text[30]
Total Text Text[30]
Print VAT Totals Boolean
Payment Terms Caption Text[30]
Shipment Method Caption Text[30]
Payment Discount Caption Text[30]
Payment Discount Text[100]
Total Due Text Text[100]
Total Currency Text Text[30]
Total Amount incl. VAT Decimal
Doc Caption Text[80]
Doc Date Caption Text[30]
Doc No. Caption Text[80]
Line Discount Caption Text[30]
Shipment Return Date Caption Text[30]
Shipment Address Caption Text[30]
Invoice Address Caption Text[30]
Order Quantity Caption Text[30]
Shipped Quantity Caption Text[30]
Outstanding Quantity Caption Text[30]
Additional Caption 1 Text[30]
Additional Caption 2 Text[30]
Additional Caption 3 Text[30]
Prepayment Total Amount Decimal
Prepayment VAT Amount Decimal
Prepayment Payment Terms Text[100]
Custom Fields Blob
Picture 1 Blob
Picture 2 Blob
Picture 3 Blob
Print Discount Caption Boolean
Print Cross Ref. No. Caption Boolean
Print Ship.Ret.Date Caption Boolean

Procedures

InitFields(Enum KVSKBADocumentScope, Enum KVSKBADocumentType, Code[20], Integer, Integer) :

Summary: Initialises all header fields of this document header buffer record with the given identification parameters and resets all calculated/derived fields.

procedure InitFields(DocScopePar: Enum "KVSKBADocumentScope"; DocTypePar: Enum "KVSKBADocumentType"; DocNoPar: Code[20]; DocNoOccPar: Integer; VersionNoPar: Integer): 

Parameters:

  • DocScopePar: The document scope (Sales, Purchase, Service, etc.).
  • DocTypePar: The document type (Order, Invoice, Credit Memo, etc.).
  • DocNoPar: The document number.
  • DocNoOccPar: The document number occurrence (used for versioned documents).
  • VersionNoPar: The version number of the document.

Remarks: All amount totals, captions, address fields, and caption print flags are reset to their defaults. Raises OnAfterInitFields for subscriber extensions after the reset.

SetGlobalData() :

Summary: Loads the document text translation record matching the current language code of this header buffer.

procedure SetGlobalData(): 

Remarks: Call this procedure after setting the Language Code field so that footer texts, captions, and other translation-dependent values are available for subsequent BuildFieldDataList calls.

BuildFieldDataList() :

Summary: Builds the global field data list by populating all layout token entries from the current header buffer fields and document text translation.

procedure BuildFieldDataList(): 

Remarks: Populates header fields (document number, date, copy text, version info), footer texts from the document text translation, all caption tokens, address tokens, VAT summary tokens, prepayment tokens, shipment quantity captions, item tracking captions, and service-related captions. Raises OnAfterBuildFieldData after the standard population to allow subscriber extensions. Call SetGlobalData first to ensure the translation record is loaded.

GetFieldDataText() : Text

Summary: Returns the global field data list as a serialised text string.

procedure GetFieldDataText(): Text

Returns: The complete field data dictionary as text.

Remarks: The text representation is generated by the underlying GlobalFieldDataList codeunit. Call BuildFieldDataList first to ensure the list is fully populated.

GetFieldDataDict(Dictionary) :

procedure GetFieldDataDict(var Dict: Dictionary): 

TransferFieldData(Record KVSKBADocumentHeaderBuffer) :

Summary: Transfers the field data dictionary from another document header buffer into this buffer's context.

procedure TransferFieldData(var DocHeader: Record "KVSKBADocumentHeaderBuffer" temporary): 

Parameters:

  • DocHeader: The source temporary document header buffer whose field data is transferred.

Remarks: The field data is read as a dictionary from the source record. Use this procedure to merge or propagate header field data between buffer instances.

AddCustomFields(Codeunit KVSKBAMasterDocFieldData) :

procedure AddCustomFields(var CustomFieldsDataList: Codeunit "KVSKBAMasterDocFieldData"): 

GetFieldDataValue(Text) : Text

Summary: Retrieves the value associated with the given layout token key from the global field data list.

procedure GetFieldDataValue(DictKey: Text): Text

Parameters:

  • DictKey: The layout token key whose value should be retrieved.

Returns: The text value stored for the given key, or an empty string if the key does not exist.

Remarks: Use GetLayout_*Token procedures to obtain the correct key values for standard fields.

AddFieldDataValue(Text, Text) :

Summary: Adds or updates a key-value pair in the global field data list.

procedure AddFieldDataValue(DictKey: Text; DictValue: Text): 

Parameters:

  • DictKey: The layout token key to add or update.
  • DictValue: The text value to store for the given key.

Remarks: Use GetLayout_*Token procedures to obtain the correct key values for standard fields. Existing entries with the same key are overwritten.

SetCompanyInfo(Codeunit KVSKBAMasterDoc, Code[10]) :

procedure SetCompanyInfo(var MasterDoc: Codeunit "KVSKBAMasterDoc"; RespCenterPar: Code[10]): 

FormatAmount(Decimal) : Text[30]

Summary: Format amount value.

procedure FormatAmount(DecimalValue: Decimal): Text[30]

Parameters:

  • DecimalValue: The amount value to format.

Returns: Formatted amount as text.

Remarks: Uses the AutoFormat codeunit to apply currency-specific formatting rules. The currency code available in the record is used.

FormatAmount(Decimal, Text) : Text[30]

Summary: Format amount value.

procedure FormatAmount(DecimalValue: Decimal; FormatString: Text): Text[30]

Parameters:

  • DecimalValue: The amount value to format.
  • FormatString: Optional format string. If empty, currency-specific format is used.

Returns: Formatted amount as text.

Remarks: Uses the AutoFormat codeunit to apply currency-specific formatting rules. The currency code determines decimal places and formatting symbols. The currency code available in the record is used.

AddHeaderInfoRight(Text[50], Text[50], Text[100], Text[100]) :

Summary: Stub procedure reserved for adding a right-aligned header info entry to the heading buffer.

procedure AddHeaderInfoRight(CaptionPar: Text[50]; ValuePar: Text[50]; CaptionFormatPar: Text[100]; ValueFormatPar: Text[100]): 

Parameters:

  • CaptionPar: The caption text for the heading entry.
  • ValuePar: The value text for the heading entry.
  • CaptionFormatPar: The RDLC format string for the caption column.
  • ValueFormatPar: The RDLC format string for the value column.

Remarks: This procedure is currently a stub with no implementation. Extend it via a subscriber or override in a derived object to populate a right-aligned heading row.

AddHeaderInfoLine(Text[50], Text[100], Text[50], Text[100], Text[50], Text[100], Text[50], Text[100], Text[50], Text[100]) :

Summary: Stub procedure reserved for adding a multi-column heading info line to the heading buffer.

procedure AddHeaderInfoLine(Col1Par: Text[50]; Col1FormatPar: Text[100]; Col2Par: Text[50]; Col2FormatPar: Text[100]; Col3Par: Text[50]; Col3FormatPar: Text[100]; Col4Par: Text[50]; Col4FormatPar: Text[100]; Col5Par: Text[50]; Col5FormatPar: Text[100]): 

Parameters:

  • Col1Par: Column 1 value text.
  • Col1FormatPar: RDLC format string for column 1.
  • Col2Par: Column 2 value text.
  • Col2FormatPar: RDLC format string for column 2.
  • Col3Par: Column 3 value text.
  • Col3FormatPar: RDLC format string for column 3.
  • Col4Par: Column 4 value text.
  • Col4FormatPar: RDLC format string for column 4.
  • Col5Par: Column 5 value text.
  • Col5FormatPar: RDLC format string for column 5.

Remarks: This procedure is currently a stub with no implementation. Extend it via a subscriber or override in a derived object to populate a multi-column heading row.

SetPicture1FromBlob(Codeunit Temp Blob) :

procedure SetPicture1FromBlob(TempBlob: Codeunit "Temp Blob"): 

SetPicture2FromBlob(Codeunit Temp Blob) :

procedure SetPicture2FromBlob(TempBlob: Codeunit "Temp Blob"): 

SetPicture3FromBlob(Codeunit Temp Blob) :

procedure SetPicture3FromBlob(TempBlob: Codeunit "Temp Blob"): 

GetTotalCaption() : Text[30]

Summary: Returns the total caption text.

procedure GetTotalCaption(): Text[30]

Returns: Localised 'Total' label.

Remarks: The returned text is sourced from a locked label constant and is consistent across all document types.

GetTotalWeightCaption() : Text[30]

Summary: Returns the total weight caption text.

procedure GetTotalWeightCaption(): Text[30]

Returns: Localised 'Total Weight' label.

Remarks: The returned text is sourced from a locked label constant.

GetSubtotalCaption() : Text[30]

Summary: Returns the subtotal caption text.

procedure GetSubtotalCaption(): Text[30]

Returns: Localised 'Subtotal' label.

Remarks: The returned text is sourced from a locked label constant.

GetTotalCurrency() : Text[100]

Summary: Returns the total currency label text.

procedure GetTotalCurrency(): Text[100]

Returns: Localised currency total label.

Remarks: The returned text is sourced from a locked label constant.

GetTotalInclVAT() : Text[30]

Summary: Returns the total including VAT caption text.

procedure GetTotalInclVAT(): Text[30]

Returns: Localised 'Total incl. VAT' label.

Remarks: The returned text is sourced from a locked label constant.

GetTotalExclVAT() : Text[30]

Summary: Returns the total excluding VAT caption text.

procedure GetTotalExclVAT(): Text[30]

Returns: Localised 'Total excl. VAT' label.

Remarks: The returned text is sourced from a locked label constant.

GetVATAmountSpecCaption() : Text[100]

Summary: Returns the VAT amount specification caption text.

procedure GetVATAmountSpecCaption(): Text[100]

Returns: Localised VAT amount specification label.

Remarks: The returned text is sourced from a locked label constant.

GetLCYCaption() : Text[100]

Summary: Returns the local currency (LCY) caption text.

procedure GetLCYCaption(): Text[100]

Returns: Localised LCY label.

Remarks: The returned text is sourced from a locked label constant.

GetExchangeRate() : Text[100]

Summary: Returns the exchange rate caption text.

procedure GetExchangeRate(): Text[100]

Returns: Localised 'Exchange Rate' label.

Remarks: The returned text is sourced from a locked label constant.

GetVATClausesCaption() : Text[100]

Summary: Returns the VAT clauses caption text.

procedure GetVATClausesCaption(): Text[100]

Returns: Localised 'VAT Clauses' label.

Remarks: The returned text is sourced from a locked label constant.

GetSalesPersonCaption() : Text[100]

Summary: Returns the salesperson caption text.

procedure GetSalesPersonCaption(): Text[100]

Returns: Localised 'Salesperson' label.

Remarks: The returned text is sourced from a locked label constant.

GetClerkCaption() : Text[100]

Summary: Returns the clerk caption text.

procedure GetClerkCaption(): Text[100]

Returns: Localised 'Clerk' label.

Remarks: The returned text is sourced from a locked label constant.

GetYourOrderCaption() : Text[100]

Summary: Returns the your order caption text.

procedure GetYourOrderCaption(): Text[100]

Returns: Localised 'Your Order No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetCustomerAddressCaption() : Text[100]

Summary: Returns the customer address caption text.

procedure GetCustomerAddressCaption(): Text[100]

Returns: Localised 'Customer Address' label.

Remarks: The returned text is sourced from a locked label constant.

GetPaymentDiscountUntil() : Text[100]

Summary: Returns the payment discount until caption text.

procedure GetPaymentDiscountUntil(): Text[100]

Returns: Localised 'Payment Discount Until' label.

Remarks: The returned text is sourced from a locked label constant.

GetPaymentDiscount() : Text[100]

Summary: Returns the payment discount caption text.

procedure GetPaymentDiscount(): Text[100]

Returns: Localised 'Payment Discount' label.

Remarks: The returned text is sourced from a locked label constant.

GetPhoneNoCaption() : Text[100]

Summary: Returns the phone number caption text.

procedure GetPhoneNoCaption(): Text[100]

Returns: Localised 'Phone No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetFaxNoCaption() : Text[100]

Summary: Returns the fax number caption text.

procedure GetFaxNoCaption(): Text[100]

Returns: Localised 'Fax No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetCustomerCaption() : Text[100]

Summary: Returns the customer caption text.

procedure GetCustomerCaption(): Text[100]

Returns: Localised 'Customer' label.

Remarks: The returned text is sourced from a locked label constant.

GetEmailCaption() : Text[100]

Summary: Returns the e-mail caption text.

procedure GetEmailCaption(): Text[100]

Returns: Localised 'E-Mail' label.

Remarks: The returned text is sourced from a locked label constant.

GetHomePageCaption() : Text[100]

Summary: Returns the home page caption text.

procedure GetHomePageCaption(): Text[100]

Returns: Localised 'Home Page' label.

Remarks: The returned text is sourced from a locked label constant.

GetHeaderDimCaption() : Text[100]

Summary: Returns the header dimension caption text.

procedure GetHeaderDimCaption(): Text[100]

Returns: Localised header dimension label.

Remarks: The returned text is sourced from a locked label constant.

GetLineDimCaption() : Text[100]

Summary: Returns the line dimension caption text.

procedure GetLineDimCaption(): Text[100]

Returns: Localised line dimension label.

Remarks: The returned text is sourced from a locked label constant.

GetPositionCaption() : Text[100]

Summary: Returns the position column caption for document lines.

procedure GetPositionCaption(): Text[100]

Returns: The localised position caption text.

Remarks: Raises OnBeforeGetPositionCaption before returning the standard label. Subscribers can set DisregardStandardCaption to true and provide a custom caption text to override the default.

GetNoCaption() : Text[100]

Summary: Returns the item number column caption text.

procedure GetNoCaption(): Text[100]

Returns: Localised 'No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetCrossRefNoCaption() : Text[50]

Summary: Returns the cross-reference number column caption text.

procedure GetCrossRefNoCaption(): Text[50]

Returns: Localised 'Cross-Reference No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetDimensionFormatLabel() : Text[50]

Summary: Returns the dimension format label text used in RDLC expressions.

procedure GetDimensionFormatLabel(): Text[50]

Returns: The locked dimension format label string.

Remarks: The returned text is sourced from a locked label constant and is used to format dimension value sets in report layouts.

GetDescriptionCaption() : Text[100]

Summary: Returns the description column caption for document lines.

procedure GetDescriptionCaption(): Text[100]

Returns: The localised description caption text.

Remarks: Raises OnBeforeGetDescriptionCaption before returning the standard label. Subscribers can set DisregardStandardCaption to true and provide a custom caption text to override the default.

GetQuantityCaption() : Text[30]

Summary: Returns the quantity column caption text.

procedure GetQuantityCaption(): Text[30]

Returns: Localised 'Quantity' label.

Remarks: The returned text is sourced from a locked label constant.

GetUOMCaption() : Text[100]

Summary: Returns the unit of measure column caption text.

procedure GetUOMCaption(): Text[100]

Returns: Localised 'Unit of Measure' label.

Remarks: The returned text is sourced from a locked label constant.

GetShipmentDateCaption() : Text[30]

Summary: Returns the shipment date column caption text.

procedure GetShipmentDateCaption(): Text[30]

Returns: Localised 'Shipment Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetReturnDateCaption() : Text[30]

Summary: Returns the return date column caption text.

procedure GetReturnDateCaption(): Text[30]

Returns: Localised 'Return Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetDiscountCaption() : Text[30]

Summary: Returns the discount column caption text.

procedure GetDiscountCaption(): Text[30]

Returns: Localised 'Discount %' label.

Remarks: The returned text is sourced from a locked label constant. Note: the caption is only written to the field data list when the "Print Discount Caption" flag is set on the header buffer.

GetUnitPriceCaption() : Text[100]

Summary: Returns the unit price column caption for document lines.

procedure GetUnitPriceCaption(): Text[100]

Returns: The localised unit price caption, differentiated by document scope (Purchase vs. Sales).

Remarks: Raises OnBeforeGetUnitPriceCaption before the standard logic. Subscribers can set DisregardStandardCaption to true to override. If not overridden, the purchase scope returns a purchase-specific caption; all other scopes return the sales caption.

GetAmountCaption() : Text[100]

Summary: Returns the amount column caption for document lines.

procedure GetAmountCaption(): Text[100]

Returns: The localised amount caption text.

Remarks: Raises OnBeforeGetAmountCaption before returning the standard label. Subscribers can set DisregardStandardCaption to true and provide a custom caption text to override the default.

GetLineAmountCaption() : Text[100]

Summary: Returns the line amount column caption text.

procedure GetLineAmountCaption(): Text[100]

Returns: Localised 'Line Amount' label.

Remarks: The returned text is sourced from a locked label constant.

GetVATIdentifierCaption() : Text[100]

Summary: Returns the VAT identifier column caption text.

procedure GetVATIdentifierCaption(): Text[100]

Returns: Localised 'VAT Identifier' label.

Remarks: The returned text is sourced from a locked label constant.

GetVATPercentCaption() : Text[100]

Summary: Returns the VAT % column caption for document lines.

procedure GetVATPercentCaption(): Text[100]

Returns: The localised VAT percent caption text.

Remarks: Raises OnBeforeGetVATPercentCaption before returning the standard label. Subscribers can set DisregardStandardCaption to true and provide a custom caption text to override the default.

GetVATDiscountAmountCaption() : Text[100]

Summary: Returns the VAT discount amount caption text.

procedure GetVATDiscountAmountCaption(): Text[100]

Returns: Localised 'VAT Discount Amount' label.

Remarks: The returned text is sourced from a locked label constant.

GetVATBaseCaption() : Text[100]

Summary: Returns the VAT base caption text.

procedure GetVATBaseCaption(): Text[100]

Returns: Localised 'VAT Base' label.

Remarks: The returned text is sourced from a locked label constant.

GetVATAmountCaption() : Text[100]

Summary: Returns the VAT amount caption text.

procedure GetVATAmountCaption(): Text[100]

Returns: Localised 'VAT Amount' label.

Remarks: The returned text is sourced from a locked label constant.

GetVATAmountSpecificationCaption() : Text[100]

Summary: Returns the VAT amount specification caption text.

procedure GetVATAmountSpecificationCaption(): Text[100]

Returns: Localised 'VAT Amount Specification' label.

Remarks: The returned text is sourced from a locked label constant.

GetInvDiscountAmountCaption() : Text[100]

Summary: Returns the invoice discount amount caption text.

procedure GetInvDiscountAmountCaption(): Text[100]

Returns: Localised 'Invoice Discount Amount' label.

Remarks: The returned text is sourced from a locked label constant.

GetInvDiscountAmount2Caption() : Text[100]

Summary: Returns the second invoice discount amount caption text.

procedure GetInvDiscountAmount2Caption(): Text[100]

Returns: Localised secondary invoice discount amount label.

Remarks: The returned text is sourced from a locked label constant.

GetInvDiscountBaseAmountCaption() : Text[100]

Summary: Returns the invoice discount base amount caption text.

procedure GetInvDiscountBaseAmountCaption(): Text[100]

Returns: Localised 'Inv. Disc. Base Amount' label.

Remarks: The returned text is sourced from a locked label constant.

GetGLAccountNoCaption() : Text[100]

Summary: Returns the G/L account number caption text.

procedure GetGLAccountNoCaption(): Text[100]

Returns: Localised 'G/L Account No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetPaymentTermsCaption() : Text[30]

Summary: Returns the payment terms caption text.

procedure GetPaymentTermsCaption(): Text[30]

Returns: Localised 'Payment Terms' label.

Remarks: The returned text is sourced from a locked label constant.

GetPrintExtLotNo() : Text[30]

Summary: Returns the print extended lot number caption text.

procedure GetPrintExtLotNo(): Text[30]

Returns: Localised 'Ext. Lot No.' label.

Remarks: This caption is only added to the field data list when the corresponding company info flag KVSKBAPrintExtLotNo is enabled.

GetPrintExpirationDate() : Text[30]

Summary: Returns the print expiration date caption text.

procedure GetPrintExpirationDate(): Text[30]

Returns: Localised 'Expiration Date' label.

Remarks: This caption is only added to the field data list when the corresponding company info flag KVSKBAPrintExpirationDate is enabled.

GetPrintProductionDate() : Text[30]

Summary: Returns the print production date caption text.

procedure GetPrintProductionDate(): Text[30]

Returns: Localised 'Production Date' label.

Remarks: This caption is only added to the field data list when the corresponding company info flag KVSKBAPrintProductionDate is enabled.

GetShipmentMethodCaption() : Text[30]

Summary: Returns the shipment method caption text.

procedure GetShipmentMethodCaption(): Text[30]

Returns: Localised 'Shipment Method' label.

Remarks: The returned text is sourced from a locked label constant.

GetShipToAddressCaption() : Text[30]

Summary: Returns the ship-to address caption text.

procedure GetShipToAddressCaption(): Text[30]

Returns: Localised 'Ship-to Address' label.

Remarks: The returned text is sourced from a locked label constant.

GetInvoiceToAddressCaption() : Text[30]

Summary: Returns the invoice-to address caption text.

procedure GetInvoiceToAddressCaption(): Text[30]

Returns: Localised 'Invoice-to Address' label.

Remarks: The returned text is sourced from a locked label constant.

GetPrepayment_SpecificationCaption() : Text[100]

Summary: Returns the prepayment specification caption text.

Syntax

procedure GetPrepayment_SpecificationCaption(): Text[100]

Returns: Localised prepayment specification label.

Remarks: The returned text is sourced from a locked label constant.

GetPrepmtVATAmountSpecCaption() : Text[100]

Summary: Returns the prepayment VAT amount specification caption text.

procedure GetPrepmtVATAmountSpecCaption(): Text[100]

Returns: Localised prepayment VAT amount specification label.

Remarks: The returned text is sourced from a locked label constant.

GetPrepmtPaymentTerms_DescriptionCaption() : Text[100]

Summary: Returns the prepayment payment terms description caption text.

Syntax

procedure GetPrepmtPaymentTerms_DescriptionCaption(): Text[100]

Returns: Localised prepayment payment terms description label.

Remarks: The returned text is sourced from a locked label constant.

GetVendorCaption() : Text[100]

Summary: Returns the vendor caption text.

procedure GetVendorCaption(): Text[100]

Returns: Localised 'Vendor' label.

Remarks: The returned text is sourced from a locked label constant.

GetPurchasePersonCaption() : Text[100]

Summary: Returns the purchaser caption text.

procedure GetPurchasePersonCaption(): Text[100]

Returns: Localised 'Purchaser' label.

Remarks: The returned text is sourced from a locked label constant.

GetBuyFromAddressCaption() : Text[30]

Summary: Returns the buy-from address caption text.

procedure GetBuyFromAddressCaption(): Text[30]

Returns: Localised 'Buy-from Address' label.

Remarks: The returned text is sourced from a locked label constant.

GetPayToAddressCaption() : Text[30]

Summary: Returns the pay-to address caption text.

procedure GetPayToAddressCaption(): Text[30]

Returns: Localised 'Pay-to Address' label.

Remarks: The returned text is sourced from a locked label constant.

GetSalesOrderQtyOrigCaption() : Text[30]

Summary: Returns the sales order original quantity caption text.

procedure GetSalesOrderQtyOrigCaption(): Text[30]

Returns: Localised 'Order Quantity' label.

Remarks: The returned text is sourced from a locked label constant.

GetSalesOrderQtyShippedCaption() : Text[30]

Summary: Returns the sales order shipped quantity caption text.

procedure GetSalesOrderQtyShippedCaption(): Text[30]

Returns: Localised 'Shipped Quantity' label.

Remarks: The returned text is sourced from a locked label constant.

GetSalesOrderQtyOutstandingCaption() : Text[30]

Summary: Returns the sales order outstanding quantity caption text.

procedure GetSalesOrderQtyOutstandingCaption(): Text[30]

Returns: Localised 'Outstanding Quantity' label.

Remarks: The returned text is sourced from a locked label constant.

GetPurchOrderQtyOrigCaption() : Text[30]

Summary: Returns the purchase order original quantity caption text.

procedure GetPurchOrderQtyOrigCaption(): Text[30]

Returns: Localised 'Order Quantity' label for purchase documents.

Remarks: The returned text is sourced from a locked label constant.

GetPurchOrderQtyReceivedCaption() : Text[30]

Summary: Returns the purchase order received quantity caption text.

procedure GetPurchOrderQtyReceivedCaption(): Text[30]

Returns: Localised 'Received Quantity' label.

Remarks: The returned text is sourced from a locked label constant.

GetPurchOrderQtyBackorderCaption() : Text[30]

Summary: Returns the purchase order backorder quantity caption text.

procedure GetPurchOrderQtyBackorderCaption(): Text[30]

Returns: Localised 'Backorder Quantity' label.

Remarks: The returned text is sourced from a locked label constant.

GetConsiWarehouseRelevantCaption() : Text[100]

Summary: Returns the consignment warehouse relevance caption text.

procedure GetConsiWarehouseRelevantCaption(): Text[100]

Returns: Localised consignment warehouse relevant label.

Remarks: The returned text is sourced from a locked label constant.

GetItemTrackingAppendixCaption() : Text[100]

Summary: Returns the item tracking appendix caption text.

procedure GetItemTrackingAppendixCaption(): Text[100]

Returns: Localised item tracking appendix label.

Remarks: The returned text is sourced from a locked label constant.

GetServiceLinesWithoutAssignedServiceItemCaption() : Text[100]

Summary: Returns the service lines without assigned service item caption text.

procedure GetServiceLinesWithoutAssignedServiceItemCaption(): Text[100]

Returns: Localised label for service lines without an assigned service item.

Remarks: The returned text is sourced from a locked label constant.

GetSerialNoCaption() : Text[50]

Summary: Returns the serial number column caption text.

procedure GetSerialNoCaption(): Text[50]

Returns: Localised 'Serial No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetLotNoCaption() : Text[50]

Summary: Returns the lot number column caption text.

procedure GetLotNoCaption(): Text[50]

Returns: Localised 'Lot No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetExtLotNoCaption() : Text[50]

Summary: Returns the extended lot number column caption text.

procedure GetExtLotNoCaption(): Text[50]

Returns: Localised 'Ext. Lot No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetExpirationDateCaption() : Text[50]

Summary: Returns the expiration date column caption text.

procedure GetExpirationDateCaption(): Text[50]

Returns: Localised 'Expiration Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetProductionDateCaption() : Text[50]

Summary: Returns the production date column caption text.

procedure GetProductionDateCaption(): Text[50]

Returns: Localised 'Production Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetDocumentDateCaption() : Text[100]

Summary: Returns the document date caption text.

procedure GetDocumentDateCaption(): Text[100]

Returns: Localised 'Document Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetDocumentTypeCaption() : Text[100]

Summary: Returns the document type caption text.

procedure GetDocumentTypeCaption(): Text[100]

Returns: Localised 'Document Type' label.

Remarks: The returned text is sourced from a locked label constant.

GetDocumentNoCaption() : Text[100]

Summary: Returns the document number caption text.

procedure GetDocumentNoCaption(): Text[100]

Returns: Localised 'Document No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetDueDateCaption() : Text[100]

Summary: Returns the due date caption text.

procedure GetDueDateCaption(): Text[100]

Returns: Localised 'Due Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetDispatchDateCaption() : Text[100]

Summary: Returns the dispatch date caption text.

procedure GetDispatchDateCaption(): Text[100]

Returns: Localised 'Dispatch Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetOrigAmountCaption() : Text[100]

Summary: Returns the original amount caption text.

procedure GetOrigAmountCaption(): Text[100]

Returns: Localised 'Original Amount' label.

Remarks: The returned text is sourced from a locked label constant.

GetRemainingAmountCaption() : Text[100]

Summary: Returns the remaining amount caption text.

procedure GetRemainingAmountCaption(): Text[100]

Returns: Localised 'Remaining Amount' label.

Remarks: The returned text is sourced from a locked label constant.

GetDocHeaderShipmentNoCaption() : Text[100]

Summary: Returns the document header shipment number caption text.

procedure GetDocHeaderShipmentNoCaption(): Text[100]

Returns: Localised 'Shipment No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetDocHeaderBlanketOrderNoCaption() : Text[100]

Summary: Returns the document header blanket order number caption text.

procedure GetDocHeaderBlanketOrderNoCaption(): Text[100]

Returns: Localised 'Blanket Order No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetDocLineReferenceNoCaption() : Text[100]

Summary: Returns the document line reference number caption text.

procedure GetDocLineReferenceNoCaption(): Text[100]

Returns: Localised 'Reference No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetSignatureCaption() : Text[100]

Summary: Returns the signature caption for the document.

procedure GetSignatureCaption(): Text[100]

Returns: The localised signature caption text.

Remarks: Raises OnBeforeGetSignatureCaption before returning the standard label. Subscribers can set DisregardStandardCaption to true and provide a custom caption text to override the default.

GetCountryOfOriginCaption() : Text[100]

Summary: Returns the country of origin caption text.

procedure GetCountryOfOriginCaption(): Text[100]

Returns: Localised 'Country of Origin' label.

Remarks: The returned text is sourced from a locked label constant.

GetTariffNoCaption() : Text[100]

Summary: Returns the tariff number caption text.

procedure GetTariffNoCaption(): Text[100]

Returns: Localised 'Tariff No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetExpectedDateCaption() : Text[30]

Summary: Returns the expected date caption text.

procedure GetExpectedDateCaption(): Text[30]

Returns: Localised 'Expected Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetRequestedDateCaption() : Text[100]

Summary: Returns the requested date caption text.

procedure GetRequestedDateCaption(): Text[100]

Returns: Localised 'Requested Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetPlannedDateCaption() : Text[100]

Summary: Returns the planned date caption text.

procedure GetPlannedDateCaption(): Text[100]

Returns: Localised 'Planned Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetCreateOutFileFailedMsg() : Text[100]

Summary: Returns the error message text for a failed output file creation.

procedure GetCreateOutFileFailedMsg(): Text[100]

Returns: Localised 'Create output file failed' error message.

Remarks: The returned text is sourced from a locked error label constant. Use this to display a consistent error message when file creation fails.

GetSalesAddressCaption() : Text[30]

Summary: Returns the sales address caption text.

procedure GetSalesAddressCaption(): Text[30]

Returns: Localised 'Sales Address' label.

Remarks: The returned text is sourced from a locked label constant.

GetWeightCaption() : Text[100]

Summary: Returns the weight caption text.

procedure GetWeightCaption(): Text[100]

Returns: Localised 'Weight' label.

Remarks: The returned text is sourced from a locked label constant.

GetPriceUnitCaption() : Text[100]

Summary: Returns the price unit caption text.

procedure GetPriceUnitCaption(): Text[100]

Returns: Localised 'Price Unit' label.

Remarks: The returned text is sourced from a locked label constant.

GetOurVATNoCaption() : Text[100]

Summary: Returns the company VAT registration number caption text.

procedure GetOurVATNoCaption(): Text[100]

Returns: Localised 'Our VAT No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetOurRegNoCaption() : Text[100]

Summary: Returns the company registration number caption text.

procedure GetOurRegNoCaption(): Text[100]

Returns: Localised 'Our Reg. No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetYourVATNoCaption() : Text[100]

Summary: Returns the customer/vendor VAT registration number caption text.

procedure GetYourVATNoCaption(): Text[100]

Returns: Localised 'Your VAT No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetReminderLevelCaption() : Text[100]

Summary: Returns the reminder level caption text.

procedure GetReminderLevelCaption(): Text[100]

Returns: Localised 'Reminder Level' label.

Remarks: The returned text is sourced from a locked label constant.

GetILNNoCaption() : Text[100]

Summary: Returns the ILN (International Location Number) caption text.

procedure GetILNNoCaption(): Text[100]

Returns: Localised 'ILN No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetDeliveryDateCaption() : Text[100]

Summary: Returns the delivery date caption text.

procedure GetDeliveryDateCaption(): Text[100]

Returns: Localised 'Delivery Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetDeliveryDate2Caption() : Text[100]

Summary: Returns the second delivery date caption text.

procedure GetDeliveryDate2Caption(): Text[100]

Returns: Localised secondary 'Delivery Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetServiceItemNoCaption() : Text[100]

Summary: Returns the service item number caption text.

procedure GetServiceItemNoCaption(): Text[100]

Returns: Localised 'Service Item No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetWarrantyCaption() : Text[100]

Summary: Returns the warranty caption text.

procedure GetWarrantyCaption(): Text[100]

Returns: Localised 'Warranty' label.

Remarks: The returned text is sourced from a locked label constant.

GetRepairStatusCaption() : Text[100]

Summary: Returns the repair status caption text.

procedure GetRepairStatusCaption(): Text[100]

Returns: Localised 'Repair Status' label.

Remarks: The returned text is sourced from a locked label constant.

GetResponseDateCaption() : Text[100]

Summary: Returns the response date caption text.

procedure GetResponseDateCaption(): Text[100]

Returns: Localised 'Response Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetResponseTimeCaption() : Text[100]

Summary: Returns the response time caption text.

procedure GetResponseTimeCaption(): Text[100]

Returns: Localised 'Response Time' label.

Remarks: The returned text is sourced from a locked label constant.

GetGroupCodeCaption() : Text[100]

Summary: Returns the group code caption text.

procedure GetGroupCodeCaption(): Text[100]

Returns: Localised 'Group Code' label.

Remarks: The returned text is sourced from a locked label constant.

GetShelfCodeCaption() : Text[100]

Summary: Returns the shelf code caption text.

procedure GetShelfCodeCaption(): Text[100]

Returns: Localised 'Shelf Code' label.

Remarks: The returned text is sourced from a locked label constant.

GetAdditionalItemNoCaption() : Text[100]

Summary: Returns the additional item number caption text.

procedure GetAdditionalItemNoCaption(): Text[100]

Returns: Localised 'Additional Item No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetServiceItemLineCaption() : Text[50]

Summary: Returns the service item line caption text.

procedure GetServiceItemLineCaption(): Text[50]

Returns: Localised 'Service Item Line' label.

Remarks: The returned text is sourced from a locked label constant.

GetServiceInvoiceLineCaption() : Text[100]

Summary: Returns the service invoice line caption text.

procedure GetServiceInvoiceLineCaption(): Text[100]

Returns: Localised 'Service Invoice Line' label.

Remarks: The returned text is sourced from a locked label constant.

GetServiceShipmentLineCaption() : Text[100]

Summary: Returns the service shipment line caption text.

procedure GetServiceShipmentLineCaption(): Text[100]

Returns: Localised 'Service Shipment Line' label.

Remarks: The returned text is sourced from a locked label constant.

GetTypeCaption() : Text[100]

Summary: Returns the type column caption text.

procedure GetTypeCaption(): Text[100]

Returns: Localised 'Type' label.

Remarks: The returned text is sourced from a locked label constant.

GetVariantCaption() : Text[100]

Summary: Returns the variant code column caption text.

procedure GetVariantCaption(): Text[100]

Returns: Localised 'Variant Code' label.

Remarks: The returned text is sourced from a locked label constant.

GetQuantityToConsumeCaption() : Text[100]

Summary: Returns the quantity to consume caption text.

procedure GetQuantityToConsumeCaption(): Text[100]

Returns: Localised 'Qty. to Consume' label.

Remarks: The returned text is sourced from a locked label constant.

GetQuantityConsumedCaption() : Text[100]

Summary: Returns the quantity consumed caption text.

procedure GetQuantityConsumedCaption(): Text[100]

Returns: Localised 'Qty. Consumed' label.

Remarks: The returned text is sourced from a locked label constant.

GetQuantityInvoicedCaption() : Text[100]

Summary: Returns the quantity invoiced caption text.

procedure GetQuantityInvoicedCaption(): Text[100]

Returns: Localised 'Qty. Invoiced' label.

Remarks: The returned text is sourced from a locked label constant.

GetPerformanceDateCaption() : Text[100]

Summary: Returns the performance date caption text.

procedure GetPerformanceDateCaption(): Text[100]

Returns: Localised 'Performance Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetLineValueCaption() : Text[100]

Summary: Returns the line value caption text.

procedure GetLineValueCaption(): Text[100]

Returns: Localised 'Line Value' label.

Remarks: The returned text is sourced from a locked label constant.

GetResponseTimeHourCaption() : Text[100]

Summary: Returns the response time (in hours) caption text.

procedure GetResponseTimeHourCaption(): Text[100]

Returns: Localised 'Response Time (h)' label.

Remarks: The returned text is sourced from a locked label constant.

GetServicePeriodCaption() : Text[100]

Summary: Returns the service period caption text.

procedure GetServicePeriodCaption(): Text[100]

Returns: Localised 'Service Period' label.

Remarks: The returned text is sourced from a locked label constant.

GetServiceDiscountsCaption() : Text[100]

Summary: Returns the service discounts caption text.

procedure GetServiceDiscountsCaption(): Text[100]

Returns: Localised 'Service Discounts' label.

Remarks: The returned text is sourced from a locked label constant.

GetServiceTypeCaption() : Text[100]

Summary: Returns the service type caption text.

procedure GetServiceTypeCaption(): Text[100]

Returns: Localised 'Service Type' label.

Remarks: The returned text is sourced from a locked label constant.

GetServiceGroupCaption() : Text[100]

Summary: Returns the service group caption text.

procedure GetServiceGroupCaption(): Text[100]

Returns: Localised 'Service Group' label.

Remarks: The returned text is sourced from a locked label constant.

GetStartingDateCaption() : Text[100]

Summary: Returns the starting date caption text.

procedure GetStartingDateCaption(): Text[100]

Returns: Localised 'Starting Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetPostedShipmentDateCaption() : Text[30]

Summary: Returns the posted shipment date caption text.

procedure GetPostedShipmentDateCaption(): Text[30]

Returns: Localised 'Posted Shipment Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetWorkingTimeCaption() : Text[100]

Summary: Returns the working time caption text.

procedure GetWorkingTimeCaption(): Text[100]

Returns: Localised 'Working Time' label.

Remarks: The returned text is sourced from a locked label constant.

GetContractNoCaption() : Text[50]

Summary: Returns the contract number caption text.

procedure GetContractNoCaption(): Text[50]

Returns: Localised 'Contract No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetItemNoCaption() : Text[100]

Summary: Returns the item number caption text.

procedure GetItemNoCaption(): Text[100]

Returns: Localised 'Item No.' label.

Remarks: The returned text is sourced from a locked label constant.

GetOrderDateCaption() : Text[100]

Summary: Returns the order date caption text.

procedure GetOrderDateCaption(): Text[100]

Returns: Localised 'Order Date' label.

Remarks: The returned text is sourced from a locked label constant.

GetServiceLinesCaption() : Text[50]

Summary: Returns the service lines caption text.

procedure GetServiceLinesCaption(): Text[50]

Returns: Localised 'Service Lines' label.

Remarks: The returned text is sourced from a locked label constant.

GetFaultCommentsCaption() : Text[100]

Summary: Returns the fault comments caption text.

procedure GetFaultCommentsCaption(): Text[100]

Returns: Localised 'Fault Comments' label.

Remarks: The returned text is sourced from a locked label constant.

GetResolutionCommentsCaption() : Text[100]

Summary: Returns the resolution comments caption text.

procedure GetResolutionCommentsCaption(): Text[100]

Returns: Localised 'Resolution Comments' label.

Remarks: The returned text is sourced from a locked label constant.

GetGeneralCommentsCaption() : Text[100]

Summary: Returns the general comments caption text.

procedure GetGeneralCommentsCaption(): Text[100]

Returns: Localised 'General Comments' label.

Remarks: The returned text is sourced from a locked label constant.

GetAmountPerYearCaption() : Text[30]

Summary: Returns the amount per year caption text.

procedure GetAmountPerYearCaption(): Text[30]

Returns: Localised 'Amount per Year' label.

Remarks: The returned text is sourced from a locked label constant.

GetSubBillingSubscriptionsTotalCaption() : Text[250]

Summary: Returns the sub-billing subscriptions total caption text.

procedure GetSubBillingSubscriptionsTotalCaption(): Text[250]

Returns: Localised 'Subscriptions Total' label for sub-billing.

Remarks: The returned text is sourced from a locked label constant.

GetSubBillingSubscriptionsCaption() : Text[50]

Summary: Returns the sub-billing subscriptions caption text.

procedure GetSubBillingSubscriptionsCaption(): Text[50]

Returns: Localised 'Subscriptions' label for sub-billing.

Remarks: The returned text is sourced from a locked label constant.

GetSubBillingContractNoCaption() : Text[50]

Summary: Returns the sub-billing contract number caption text.

procedure GetSubBillingContractNoCaption(): Text[50]

Returns: Localised 'Contract No.' label for sub-billing.

Remarks: The returned text is sourced from a locked label constant.

GetSubBillingPositionNoCaption() : Text[50]

Summary: Returns the sub-billing position number caption text.

procedure GetSubBillingPositionNoCaption(): Text[50]

Returns: Localised 'Position No.' label for sub-billing.

Remarks: The returned text is sourced from a locked label constant.

GetSubBillingCustomerCaption() : Text[50]

Summary: Returns the sub-billing customer caption text.

procedure GetSubBillingCustomerCaption(): Text[50]

Returns: Localised 'Customer' label for sub-billing.

Remarks: The returned text is sourced from a locked label constant.

GetSubBillingStartDateCaption() : Text[50]

Summary: Returns the sub-billing start date caption text.

procedure GetSubBillingStartDateCaption(): Text[50]

Returns: Localised 'Start Date' label for sub-billing.

Remarks: The returned text is sourced from a locked label constant.

GetSubBillingEndDateCaption() : Text[50]

Summary: Returns the sub-billing end date caption text.

procedure GetSubBillingEndDateCaption(): Text[50]

Returns: Localised 'End Date' label for sub-billing.

Remarks: The returned text is sourced from a locked label constant.

GetSubBillingDaysCaption() : Text[50]

Summary: Returns the sub-billing days caption text.

procedure GetSubBillingDaysCaption(): Text[50]

Returns: Localised 'Days' label for sub-billing.

Remarks: The returned text is sourced from a locked label constant.

GetSubBillingQtyCaption() : Text[50]

Summary: Returns the sub-billing quantity caption text.

procedure GetSubBillingQtyCaption(): Text[50]

Returns: Localised 'Quantity' label for sub-billing.

Remarks: The returned text is sourced from a locked label constant.

GetSubBillingCurrencyCaption() : Text[50]

Summary: Returns the sub-billing currency caption text.

procedure GetSubBillingCurrencyCaption(): Text[50]

Returns: Localised 'Currency' label for sub-billing.

Remarks: The returned text is sourced from a locked label constant.

GetSubBillingServiceDescriptionCaption() : Text[50]

Summary: Returns the sub-billing service description caption text.

procedure GetSubBillingServiceDescriptionCaption(): Text[50]

Returns: Localised 'Service Description' label for sub-billing.

Remarks: The returned text is sourced from a locked label constant.

GetAddBracketsInfoCaption() : Text[50]

Summary: Returns the add brackets info caption text.

procedure GetAddBracketsInfoCaption(): Text[50]

Returns: Localised label for the add-brackets information field.

Remarks: The returned text is sourced from a locked label constant.

SetDocTextTranslation(Record KVSKBADocumentTextTranslation) :

Summary: Sets the document text translation record used for footer texts and other translation-dependent values.

procedure SetDocTextTranslation(var InDocTextTranslation: Record "KVSKBADocumentTextTranslation"): 

Parameters:

  • InDocTextTranslation: The document text translation record to assign.

Remarks: Use this procedure to inject a pre-loaded translation record instead of relying on SetGlobalData to load it by language code. This is useful when the translation record has already been resolved outside of this buffer.

GetDocTextTranslation(Record KVSKBADocumentTextTranslation) :

Summary: Returns the current document text translation record.

procedure GetDocTextTranslation(var OutDocTextTranslation: Record "KVSKBADocumentTextTranslation"): 

Parameters:

  • OutDocTextTranslation: The variable to receive the current document text translation record.

Remarks: Use this procedure to retrieve the translation record that was loaded by SetGlobalData or injected by SetDocTextTranslation, for example to read footer text values directly.

GetLayout_DefaultFontToken() : Text[50]

Summary: Returns the layout token key for: Default Font.

Syntax

procedure GetLayout_DefaultFontToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DefaultFontSizeToken() : Text[50]

Summary: Returns the layout token key for: Default Font Size.

Syntax

procedure GetLayout_DefaultFontSizeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DefaultFooterFontSizeToken() : Text[50]

Summary: Returns the layout token key for: Default Footer Font Size.

Syntax

procedure GetLayout_DefaultFooterFontSizeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_LogoPosToken() : Text[50]

Summary: Returns the layout token key for: Logo Pos.

Syntax

procedure GetLayout_LogoPosToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_PrintCarryAmountToken() : Text[50]

Summary: Returns the layout token key for: Print Carry Amount.

Syntax

procedure GetLayout_PrintCarryAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_LayoutDebugModeToken() : Text[50]

Summary: Returns the layout token key for: Layout Debug Mode.

Syntax

procedure GetLayout_LayoutDebugModeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_PrintOnNoteToken() : Text[50]

Summary: Returns the layout token key for: Print On Note.

Syntax

procedure GetLayout_PrintOnNoteToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_PrintAdditionalFeeNoteToken() : Text[50]

Summary: Returns the layout token key for: Print Additional Fee Note.

Syntax

procedure GetLayout_PrintAdditionalFeeNoteToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_PrintLineBlockSeparatorToken() : Text[50]

Summary: Returns the layout token key for: Print Line Block Separator.

Syntax

procedure GetLayout_PrintLineBlockSeparatorToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocHeaderDim_CaptionToken() : Text[50]

Summary: Returns the layout token key for: Doc Header Dim › Caption.

Syntax

procedure GetLayout_DocHeaderDim_CaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_PageCaptionToken() : Text[50]

Summary: Returns the layout token key for: Page Caption.

Syntax

procedure GetLayout_PageCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ContinuedCaptionToken() : Text[50]

Summary: Returns the layout token key for: Continued Caption.

Syntax

procedure GetLayout_ContinuedCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Doc_CaptionToken() : Text[50]

Summary: Returns the layout token key for: Doc › Caption.

Syntax

procedure GetLayout_Doc_CaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocNo_CaptionToken() : Text[50]

Summary: Returns the layout token key for: Doc No › Caption.

Syntax

procedure GetLayout_DocNo_CaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocDateCaptionToken() : Text[50]

Summary: Returns the layout token key for: Doc Date Caption.

Syntax

procedure GetLayout_DocDateCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DispatchHandlingHeader1CaptionToken() : Text[50]

Summary: Returns the layout token key for: Dispatch Handling Header1Caption.

Syntax

procedure GetLayout_DispatchHandlingHeader1CaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DispatchHandlingHeader2CaptionToken() : Text[50]

Summary: Returns the layout token key for: Dispatch Handling Header2Caption.

Syntax

procedure GetLayout_DispatchHandlingHeader2CaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_GrossWeightCaptionToken() : Text[50]

Summary: Returns the layout token key for: Gross Weight Caption.

Syntax

procedure GetLayout_GrossWeightCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_NetWeightCaptionToken() : Text[50]

Summary: Returns the layout token key for: Net Weight Caption.

Syntax

procedure GetLayout_NetWeightCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_LevelCaptionToken() : Text[50]

Summary: Returns the layout token key for: Level Caption.

Syntax

procedure GetLayout_LevelCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_OrderNoCaptionToken() : Text[50]

Summary: Returns the layout token key for: Order No Caption.

Syntax

procedure GetLayout_OrderNoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ShipmentNoCaptionToken() : Text[50]

Summary: Returns the layout token key for: Shipment No Caption.

Syntax

procedure GetLayout_ShipmentNoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_RecurringServicesCaptionToken() : Text[50]

Summary: Returns the layout token key for: Recurring Services Caption.

Syntax

procedure GetLayout_RecurringServicesCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_RecurringServicesTotalCaptionToken() : Text[250]

Summary: Returns the layout token key for: Recurring Services Total Caption.

Syntax

procedure GetLayout_RecurringServicesTotalCaptionToken(): Text[250]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_LanguageCodeToken() : Text[50]

Summary: Returns the layout token key for: Language Code.

Syntax

procedure GetLayout_LanguageCodeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_CopyTextToken() : Text[50]

Summary: Returns the layout token key for: Copy Text.

Syntax

procedure GetLayout_CopyTextToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocumentIDToken() : Text[50]

Summary: Returns the layout token key for: Document ID.

Syntax

procedure GetLayout_DocumentIDToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocNo_PrintToken() : Text[50]

Summary: Returns the layout token key for: Doc No › Print.

Syntax

procedure GetLayout_DocNo_PrintToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Doc_DateToken() : Text[50]

Summary: Returns the layout token key for: Doc › Date.

Syntax

procedure GetLayout_Doc_DateToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Doc_VersionInfoToken() : Text[50]

Summary: Returns the layout token key for: Doc › Version Info.

Syntax

procedure GetLayout_Doc_VersionInfoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_CurrencyCodeToken() : Text[50]

Summary: Returns the layout token key for: Currency Code.

Syntax

procedure GetLayout_CurrencyCodeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SenderWindowToken() : Text[50]

Summary: Returns the layout token key for: Sender Window.

Syntax

procedure GetLayout_SenderWindowToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_CompanyAddrPosToken() : Text[50]

Summary: Returns the layout token key for: Company Addr Pos.

Syntax

procedure GetLayout_CompanyAddrPosToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_CompanyAddressToken() : Text[50]

Summary: Returns the layout token key for: Company Address.

Syntax

procedure GetLayout_CompanyAddressToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DestinationAddressToken() : Text[50]

Summary: Returns the layout token key for: Destination Address.

Syntax

procedure GetLayout_DestinationAddressToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ShipToAddressToken() : Text[50]

Summary: Returns the layout token key for: Ship To Address.

Syntax

procedure GetLayout_ShipToAddressToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_InvoiceToAddressToken() : Text[50]

Summary: Returns the layout token key for: Invoice To Address.

Syntax

procedure GetLayout_InvoiceToAddressToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Doc_BarcodeToken() : Text[50]

Summary: Returns the layout token key for: Doc › Barcode.

Syntax

procedure GetLayout_Doc_BarcodeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocHeaderDim_TextToken() : Text[50]

Summary: Returns the layout token key for: Doc Header Dim › Text.

Syntax

procedure GetLayout_DocHeaderDim_TextToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Total_DueTextToken() : Text[50]

Summary: Returns the layout token key for: Total › Due Text.

Syntax

procedure GetLayout_Total_DueTextToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Total_CurrencyToken() : Text[50]

Summary: Returns the layout token key for: Total › Currency.

Syntax

procedure GetLayout_Total_CurrencyToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Total_AmountInclVATToken() : Text[50]

Summary: Returns the layout token key for: Total › Amount Incl VAT.

Syntax

procedure GetLayout_Total_AmountInclVATToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Total_PaymentDiscountToken() : Text[50]

Summary: Returns the layout token key for: Total › Payment Discount.

Syntax

procedure GetLayout_Total_PaymentDiscountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Left1Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Left1.

Syntax

procedure GetLayout_FooterText_Left1Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Left2Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Left2.

Syntax

procedure GetLayout_FooterText_Left2Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Left3Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Left3.

Syntax

procedure GetLayout_FooterText_Left3Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Left4Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Left4.

Syntax

procedure GetLayout_FooterText_Left4Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Center_Left1Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Center › Left1.

Syntax

procedure GetLayout_FooterText_Center_Left1Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Center_Left2Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Center › Left2.

Syntax

procedure GetLayout_FooterText_Center_Left2Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Center_Left3Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Center › Left3.

Syntax

procedure GetLayout_FooterText_Center_Left3Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Center_Left4Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Center › Left4.

Syntax

procedure GetLayout_FooterText_Center_Left4Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Center_Right1Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Center › Right1.

Syntax

procedure GetLayout_FooterText_Center_Right1Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Center_Right2Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Center › Right2.

Syntax

procedure GetLayout_FooterText_Center_Right2Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Center_Right3Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Center › Right3.

Syntax

procedure GetLayout_FooterText_Center_Right3Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Center_Right4Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Center › Right4.

Syntax

procedure GetLayout_FooterText_Center_Right4Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Right1Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Right1.

Syntax

procedure GetLayout_FooterText_Right1Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Right2Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Right2.

Syntax

procedure GetLayout_FooterText_Right2Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Right3Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Right3.

Syntax

procedure GetLayout_FooterText_Right3Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_FooterText_Right4Token() : Text[50]

Summary: Returns the layout token key for: Footer Text › Right4.

Syntax

procedure GetLayout_FooterText_Right4Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Heading_Right_BorderStyleToken() : Text[50]

Summary: Returns the layout token key for: Heading › Right › Border Style.

Syntax

procedure GetLayout_Heading_Right_BorderStyleToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Heading_Line_BorderStyleToken() : Text[50]

Summary: Returns the layout token key for: Heading › Line › Border Style.

Syntax

procedure GetLayout_Heading_Line_BorderStyleToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_HideBackgroundInPrintToken() : Text[50]

Summary: Returns the layout token key for: Hide Background In Print.

Syntax

procedure GetLayout_HideBackgroundInPrintToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocHeading_Col1ValueToken() : Text[50]

Summary: Returns the layout token key for: Doc Heading › Col1Value.

Syntax

procedure GetLayout_DocHeading_Col1ValueToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocHeading_Col1FormatToken() : Text[50]

Summary: Returns the layout token key for: Doc Heading › Col1Format.

Syntax

procedure GetLayout_DocHeading_Col1FormatToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocHeading_Col2ValueToken() : Text[50]

Summary: Returns the layout token key for: Doc Heading › Col2Value.

Syntax

procedure GetLayout_DocHeading_Col2ValueToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocHeading_Col2FormatToken() : Text[50]

Summary: Returns the layout token key for: Doc Heading › Col2Format.

Syntax

procedure GetLayout_DocHeading_Col2FormatToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocHeading_Col3ValueToken() : Text[50]

Summary: Returns the layout token key for: Doc Heading › Col3Value.

Syntax

procedure GetLayout_DocHeading_Col3ValueToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocHeading_Col3FormatToken() : Text[50]

Summary: Returns the layout token key for: Doc Heading › Col3Format.

Syntax

procedure GetLayout_DocHeading_Col3FormatToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocHeading_Col4ValueToken() : Text[50]

Summary: Returns the layout token key for: Doc Heading › Col4Value.

Syntax

procedure GetLayout_DocHeading_Col4ValueToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocHeading_Col4FormatToken() : Text[50]

Summary: Returns the layout token key for: Doc Heading › Col4Format.

Syntax

procedure GetLayout_DocHeading_Col4FormatToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocHeading_Col5ValueToken() : Text[50]

Summary: Returns the layout token key for: Doc Heading › Col5Value.

Syntax

procedure GetLayout_DocHeading_Col5ValueToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocHeading_Col5FormatToken() : Text[50]

Summary: Returns the layout token key for: Doc Heading › Col5Format.

Syntax

procedure GetLayout_DocHeading_Col5FormatToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_PositionCaptionToken() : Text[50]

Summary: Returns the layout token key for: Position Caption.

Syntax

procedure GetLayout_PositionCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_NoCaptionToken() : Text[50]

Summary: Returns the layout token key for: No Caption.

Syntax

procedure GetLayout_NoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_CrossRefNoCaptionToken() : Text[50]

Summary: Returns the layout token key for: Cross Ref No Caption.

Syntax

procedure GetLayout_CrossRefNoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DescriptionCaptionToken() : Text[50]

Summary: Returns the layout token key for: Description Caption.

Syntax

procedure GetLayout_DescriptionCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_QuantityCaptionToken() : Text[50]

Summary: Returns the layout token key for: Quantity Caption.

Syntax

procedure GetLayout_QuantityCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_UOMCaptionToken() : Text[50]

Summary: Returns the layout token key for: UOM Caption.

Syntax

procedure GetLayout_UOMCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_UnitPriceCaptionToken() : Text[50]

Summary: Returns the layout token key for: Unit Price Caption.

Syntax

procedure GetLayout_UnitPriceCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DiscountCaptionToken() : Text[50]

Summary: Returns the layout token key for: Discount Caption.

Syntax

procedure GetLayout_DiscountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATPercentCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Percent Caption.

Syntax

procedure GetLayout_VATPercentCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_AmountCaptionToken() : Text[50]

Summary: Returns the layout token key for: Amount Caption.

Syntax

procedure GetLayout_AmountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_TotalCaptionToken() : Text[50]

Summary: Returns the layout token key for: Total Caption.

Syntax

procedure GetLayout_TotalCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ShipRetDateCaptionToken() : Text[50]

Summary: Returns the layout token key for: Ship Ret Date Caption.

Syntax

procedure GetLayout_ShipRetDateCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_LineDimCaptionToken() : Text[50]

Summary: Returns the layout token key for: Line Dim Caption.

Syntax

procedure GetLayout_LineDimCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ShipToAddressCaptionToken() : Text[50]

Summary: Returns the layout token key for: Ship To Address Caption.

Syntax

procedure GetLayout_ShipToAddressCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_InvoiceToAddressCaptionToken() : Text[50]

Summary: Returns the layout token key for: Invoice To Address Caption.

Syntax

procedure GetLayout_InvoiceToAddressCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ShipmentMethodCaptionToken() : Text[50]

Summary: Returns the layout token key for: Shipment Method Caption.

Syntax

procedure GetLayout_ShipmentMethodCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_PaymentTermsCaptionToken() : Text[50]

Summary: Returns the layout token key for: Payment Terms Caption.

Syntax

procedure GetLayout_PaymentTermsCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Total_PaymentDiscountCaptionToken() : Text[50]

Summary: Returns the layout token key for: Total › Payment Discount Caption.

Syntax

procedure GetLayout_Total_PaymentDiscountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_LotNoCaptionToken() : Text[50]

Summary: Returns the layout token key for: Lot No Caption.

Syntax

procedure GetLayout_LotNoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SerialNoCaptionToken() : Text[50]

Summary: Returns the layout token key for: Serial No Caption.

Syntax

procedure GetLayout_SerialNoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ExtLotNoToken() : Text[50]

Summary: Returns the layout token key for: Ext Lot No.

Syntax

procedure GetLayout_ExtLotNoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ReminderLevelCaptionToken() : Text[50]

Summary: Returns the layout token key for: Reminder Level Caption.

Syntax

procedure GetLayout_ReminderLevelCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ExpirationDateToken() : Text[50]

Summary: Returns the layout token key for: Expiration Date.

Syntax

procedure GetLayout_ExpirationDateToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ProductionDateToken() : Text[50]

Summary: Returns the layout token key for: Production Date.

Syntax

procedure GetLayout_ProductionDateToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocumentDateCaptionToken() : Text[50]

Summary: Returns the layout token key for: Document Date Caption.

Syntax

procedure GetLayout_DocumentDateCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocumentTypeCaptionToken() : Text[50]

Summary: Returns the layout token key for: Document Type Caption.

Syntax

procedure GetLayout_DocumentTypeCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocumentNoCaptionToken() : Text[50]

Summary: Returns the layout token key for: Document No Caption.

Syntax

procedure GetLayout_DocumentNoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DueDateCaptionToken() : Text[50]

Summary: Returns the layout token key for: Due Date Caption.

Syntax

procedure GetLayout_DueDateCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_OrigAmountCaptionToken() : Text[50]

Summary: Returns the layout token key for: Orig Amount Caption.

Syntax

procedure GetLayout_OrigAmountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_RemainingAmountCaptionToken() : Text[50]

Summary: Returns the layout token key for: Remaining Amount Caption.

Syntax

procedure GetLayout_RemainingAmountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_WeightCaptionToken() : Text[50]

Summary: Returns the layout token key for: Weight Caption.

Syntax

procedure GetLayout_WeightCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ServiceItemNoCaptionToken() : Text[50]

Summary: Returns the layout token key for: Service Item No Caption.

Syntax

procedure GetLayout_ServiceItemNoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_WarrantyCaptionToken() : Text[50]

Summary: Returns the layout token key for: Warranty Caption.

Syntax

procedure GetLayout_WarrantyCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_RepairStatusCaptionToken() : Text[50]

Summary: Returns the layout token key for: Repair Status Caption.

Syntax

procedure GetLayout_RepairStatusCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ResponseDateCaptionToken() : Text[50]

Summary: Returns the layout token key for: Response Date Caption.

Syntax

procedure GetLayout_ResponseDateCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ResponseTimeCaptionToken() : Text[50]

Summary: Returns the layout token key for: Response Time Caption.

Syntax

procedure GetLayout_ResponseTimeCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_GroupCodeCaptionToken() : Text[50]

Summary: Returns the layout token key for: Group Code Caption.

Syntax

procedure GetLayout_GroupCodeCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ShelfCodeCaptionToken() : Text[50]

Summary: Returns the layout token key for: Shelf Code Caption.

Syntax

procedure GetLayout_ShelfCodeCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_AdditionalItemNoCaptionToken() : Text[50]

Summary: Returns the layout token key for: Additional Item No Caption.

Syntax

procedure GetLayout_AdditionalItemNoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ServiceItemLineCaptionToken() : Text[50]

Summary: Returns the layout token key for: Service Item Line Caption.

Syntax

procedure GetLayout_ServiceItemLineCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ServiceInvoiceLineCaptionToken() : Text[50]

Summary: Returns the layout token key for: Service Invoice Line Caption.

Syntax

procedure GetLayout_ServiceInvoiceLineCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_PrintServiceItemHeadingToken() : Text[50]

Summary: Returns the layout token key for: Print Service Item Heading.

Syntax

procedure GetLayout_PrintServiceItemHeadingToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ServiceItemHeadingToken() : Text[50]

Summary: Returns the layout token key for: Service Item Heading.

Syntax

procedure GetLayout_ServiceItemHeadingToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_PrintServiceLineHeadingToken() : Text[50]

Summary: Returns the layout token key for: Print Service Line Heading.

Syntax

procedure GetLayout_PrintServiceLineHeadingToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ServiceShipmentLineCaptionToken() : Text[50]

Summary: Returns the layout token key for: Service Shipment Line Caption.

Syntax

procedure GetLayout_ServiceShipmentLineCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_TypeCaptionToken() : Text[50]

Summary: Returns the layout token key for: Type Caption.

Syntax

procedure GetLayout_TypeCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VariantCaptionToken() : Text[50]

Summary: Returns the layout token key for: Variant Caption.

Syntax

procedure GetLayout_VariantCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_QuantityToConsumeCaptionToken() : Text[50]

Summary: Returns the layout token key for: Quantity To Consume Caption.

Syntax

procedure GetLayout_QuantityToConsumeCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_QuantityConsumedCaptionToken() : Text[50]

Summary: Returns the layout token key for: Quantity Consumed Caption.

Syntax

procedure GetLayout_QuantityConsumedCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_QuantityInvoicedCaptionToken() : Text[50]

Summary: Returns the layout token key for: Quantity Invoiced Caption.

Syntax

procedure GetLayout_QuantityInvoicedCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_LineValueCaptionToken() : Text[50]

Summary: Returns the layout token key for: Line Value Caption.

Syntax

procedure GetLayout_LineValueCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ResponseTimeHourCaptionToken() : Text[50]

Summary: Returns the layout token key for: Response Time Hour Caption.

Syntax

procedure GetLayout_ResponseTimeHourCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ServicePeriodCaptionToken() : Text[50]

Summary: Returns the layout token key for: Service Period Caption.

Syntax

procedure GetLayout_ServicePeriodCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ServiceDiscountsCaptionToken() : Text[50]

Summary: Returns the layout token key for: Service Discounts Caption.

Syntax

procedure GetLayout_ServiceDiscountsCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ServiceTypeCaptionToken() : Text[50]

Summary: Returns the layout token key for: Service Type Caption.

Syntax

procedure GetLayout_ServiceTypeCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ServiceGroupCaptionToken() : Text[50]

Summary: Returns the layout token key for: Service Group Caption.

Syntax

procedure GetLayout_ServiceGroupCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_StartingDateCaptionToken() : Text[50]

Summary: Returns the layout token key for: Starting Date Caption.

Syntax

procedure GetLayout_StartingDateCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ContractNoCaptionToken() : Text[50]

Summary: Returns the layout token key for: Contract No Caption.

Syntax

procedure GetLayout_ContractNoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ItemNoCaptionToken() : Text[50]

Summary: Returns the layout token key for: Item No Caption.

Syntax

procedure GetLayout_ItemNoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_ServiceLinesCaptionToken() : Text[50]

Summary: Returns the layout token key for: Service Lines Caption.

Syntax

procedure GetLayout_ServiceLinesCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_AdditionalCaption1Token() : Text[50]

Summary: Returns the layout token key for: Additional Caption1.

Syntax

procedure GetLayout_AdditionalCaption1Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_AdditionalCaption2Token() : Text[50]

Summary: Returns the layout token key for: Additional Caption2.

Syntax

procedure GetLayout_AdditionalCaption2Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_AdditionalCaption3Token() : Text[50]

Summary: Returns the layout token key for: Additional Caption3.

Syntax

procedure GetLayout_AdditionalCaption3Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DimensionCaptionToken() : Text[50]

Summary: Returns the layout token key for: Dimension Caption.

Syntax

procedure GetLayout_DimensionCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_TextToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Text.

Syntax

procedure GetLayout_DocLine_TextToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_TextTypeToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Text Type.

Syntax

procedure GetLayout_DocLine_TextTypeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_PosNoToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Pos No.

Syntax

procedure GetLayout_DocLine_PosNoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_NoToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › No.

Syntax

procedure GetLayout_DocLine_NoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_CrossRefNoToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Cross Ref No.

Syntax

procedure GetLayout_DocLine_CrossRefNoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_DescriptionToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Description.

Syntax

procedure GetLayout_DocLine_DescriptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_Description2Token() : Text[50]

Summary: Returns the layout token key for: Doc Line › Description2.

Syntax

procedure GetLayout_DocLine_Description2Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_QuantityToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Quantity.

Syntax

procedure GetLayout_DocLine_QuantityToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_UOMToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › UOM.

Syntax

procedure GetLayout_DocLine_UOMToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_UnitPriceToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Unit Price.

Syntax

procedure GetLayout_DocLine_UnitPriceToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_LineDiscountToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Line Discount.

Syntax

procedure GetLayout_DocLine_LineDiscountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_AmountToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Amount.

Syntax

procedure GetLayout_DocLine_AmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_LineAmountToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Line Amount.

Syntax

procedure GetLayout_DocLine_LineAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_VATToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › VAT.

Syntax

procedure GetLayout_DocLine_VATToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_SubTotalToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Sub Total.

Syntax

procedure GetLayout_DocLine_SubTotalToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ShortText1Token() : Text[50]

Summary: Returns the layout token key for: Doc Line › Short Text1.

Syntax

procedure GetLayout_DocLine_ShortText1Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ShortText2Token() : Text[50]

Summary: Returns the layout token key for: Doc Line › Short Text2.

Syntax

procedure GetLayout_DocLine_ShortText2Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ShortText3Token() : Text[50]

Summary: Returns the layout token key for: Doc Line › Short Text3.

Syntax

procedure GetLayout_DocLine_ShortText3Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ShortText4Token() : Text[50]

Summary: Returns the layout token key for: Doc Line › Short Text4.

Syntax

procedure GetLayout_DocLine_ShortText4Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_LongText1Token() : Text[50]

Summary: Returns the layout token key for: Doc Line › Long Text1.

Syntax

procedure GetLayout_DocLine_LongText1Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_LongText2Token() : Text[50]

Summary: Returns the layout token key for: Doc Line › Long Text2.

Syntax

procedure GetLayout_DocLine_LongText2Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_AlternativeLineAmountToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Alternative Line Amount.

Syntax

procedure GetLayout_DocLine_AlternativeLineAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_AlternativeUnitPriceToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Alternative Unit Price.

Syntax

procedure GetLayout_DocLine_AlternativeUnitPriceToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_DimTextToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Dim Text.

Syntax

procedure GetLayout_DocLine_DimTextToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_QuantityOrigToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Quantity Orig.

Syntax

procedure GetLayout_DocLine_QuantityOrigToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_QuantityShippedToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Quantity Shipped.

Syntax

procedure GetLayout_DocLine_QuantityShippedToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_QuantityOutstandingToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Quantity Outstanding.

Syntax

procedure GetLayout_DocLine_QuantityOutstandingToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_LocationCodeToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Location Code.

Syntax

procedure GetLayout_DocLine_LocationCodeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ShipRetDateToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Ship Ret Date.

Syntax

procedure GetLayout_DocLine_ShipRetDateToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_LotNoToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Lot No.

Syntax

procedure GetLayout_DocLine_LotNoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_SerialNoToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Serial No.

Syntax

procedure GetLayout_DocLine_SerialNoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ExtLotNoToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Ext Lot No.

Syntax

procedure GetLayout_DocLine_ExtLotNoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ExpirationDateToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Expiration Date.

Syntax

procedure GetLayout_DocLine_ExpirationDateToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ProductionDateToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Production Date.

Syntax

procedure GetLayout_DocLine_ProductionDateToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_DocumentDateToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Document Date.

Syntax

procedure GetLayout_DocLine_DocumentDateToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_DueDateToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Due Date.

Syntax

procedure GetLayout_DocLine_DueDateToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_LineTypeToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Line Type.

Syntax

procedure GetLayout_DocLine_LineTypeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_VariantCodeToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Variant Code.

Syntax

procedure GetLayout_DocLine_VariantCodeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_WeightToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Weight.

Syntax

procedure GetLayout_DocLine_WeightToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_PriceUnitToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Price Unit.

Syntax

procedure GetLayout_DocLine_PriceUnitToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ServiceItemNoToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Service Item No.

Syntax

procedure GetLayout_DocLine_ServiceItemNoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_RepairStatusToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Repair Status.

Syntax

procedure GetLayout_DocLine_RepairStatusToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_WarrantyToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Warranty.

Syntax

procedure GetLayout_DocLine_WarrantyToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ResponseDateToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Response Date.

Syntax

procedure GetLayout_DocLine_ResponseDateToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ResponseTimeToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Response Time.

Syntax

procedure GetLayout_DocLine_ResponseTimeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_GroupCodeToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Group Code.

Syntax

procedure GetLayout_DocLine_GroupCodeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ShelfCodeToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Shelf Code.

Syntax

procedure GetLayout_DocLine_ShelfCodeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_AdditionalItemNoToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Additional Item No.

Syntax

procedure GetLayout_DocLine_AdditionalItemNoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ResponseTimeHourToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Response Time Hour.

Syntax

procedure GetLayout_DocLine_ResponseTimeHourToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ContractNoToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Contract No.

Syntax

procedure GetLayout_DocLine_ContractNoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_QuantityConsumedToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Quantity Consumed.

Syntax

procedure GetLayout_DocLine_QuantityConsumedToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_QuantityInvoicedToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Quantity Invoiced.

Syntax

procedure GetLayout_DocLine_QuantityInvoicedToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_NetWeightToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Net Weight.

Syntax

procedure GetLayout_DocLine_NetWeightToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_GrossWeightToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Gross Weight.

Syntax

procedure GetLayout_DocLine_GrossWeightToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_ReminderLevelToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Reminder Level.

Syntax

procedure GetLayout_DocLine_ReminderLevelToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_AttributeNameToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Attribute Name.

Syntax

procedure GetLayout_DocLine_AttributeNameToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocLine_AttributeValueToken() : Text[50]

Summary: Returns the layout token key for: Doc Line › Attribute Value.

Syntax

procedure GetLayout_DocLine_AttributeValueToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_CaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Caption.

Syntax

procedure GetLayout_VATInfo_CaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_VATPercentCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › VAT Percent Caption.

Syntax

procedure GetLayout_VATInfo_VATPercentCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_VATBaseCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › VAT Base Caption.

Syntax

procedure GetLayout_VATInfo_VATBaseCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_VATAmountCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › VAT Amount Caption.

Syntax

procedure GetLayout_VATInfo_VATAmountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_VATIdentifierCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › VAT Identifier Caption.

Syntax

procedure GetLayout_VATInfo_VATIdentifierCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_LineAmountCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Line Amount Caption.

Syntax

procedure GetLayout_VATInfo_LineAmountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_InvDiscBaseAmountCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Inv Disc Base Amount Caption.

Syntax

procedure GetLayout_VATInfo_InvDiscBaseAmountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_InvDiscAmountCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Inv Disc Amount Caption.

Syntax

procedure GetLayout_VATInfo_InvDiscAmountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_VATClauseCodeCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › VAT Clause Code Caption.

Syntax

procedure GetLayout_VATInfo_VATClauseCodeCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_DescriptionCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Description Caption.

Syntax

procedure GetLayout_VATInfo_DescriptionCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_Description2CaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Description2Caption.

Syntax

procedure GetLayout_VATInfo_Description2CaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_VATPercentToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › VAT Percent.

Syntax

procedure GetLayout_VATInfo_VATPercentToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_VATBaseToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › VAT Base.

Syntax

procedure GetLayout_VATInfo_VATBaseToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_VATAmountToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › VAT Amount.

Syntax

procedure GetLayout_VATInfo_VATAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_VATIdentifierToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › VAT Identifier.

Syntax

procedure GetLayout_VATInfo_VATIdentifierToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_LineAmountToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Line Amount.

Syntax

procedure GetLayout_VATInfo_LineAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_InvDiscBaseAmountToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Inv Disc Base Amount.

Syntax

procedure GetLayout_VATInfo_InvDiscBaseAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_InvDiscAmountToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Inv Disc Amount.

Syntax

procedure GetLayout_VATInfo_InvDiscAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_TotalVATBaseToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Total VAT Base.

Syntax

procedure GetLayout_VATInfo_TotalVATBaseToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_TotalVATAmountToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Total VAT Amount.

Syntax

procedure GetLayout_VATInfo_TotalVATAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_TotalLineAmountToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Total Line Amount.

Syntax

procedure GetLayout_VATInfo_TotalLineAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_TotalInvDiscBaseAmountToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Total Inv Disc Base Amount.

Syntax

procedure GetLayout_VATInfo_TotalInvDiscBaseAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_TotalInvDiscAmountToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Total Inv Disc Amount.

Syntax

procedure GetLayout_VATInfo_TotalInvDiscAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_DescriptionToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › Description.

Syntax

procedure GetLayout_VATInfo_DescriptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_Description2Token() : Text[50]

Summary: Returns the layout token key for: VAT Info › Description2.

Syntax

procedure GetLayout_VATInfo_Description2Token(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VATInfo_VATClauseCodeToken() : Text[50]

Summary: Returns the layout token key for: VAT Info › VAT Clause Code.

Syntax

procedure GetLayout_VATInfo_VATClauseCodeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocTotal_TextToken() : Text[50]

Summary: Returns the layout token key for: Doc Total › Text.

Syntax

procedure GetLayout_DocTotal_TextToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocTotal_AmountToken() : Text[50]

Summary: Returns the layout token key for: Doc Total › Amount.

Syntax

procedure GetLayout_DocTotal_AmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocTotal_CurrencyCodeToken() : Text[50]

Summary: Returns the layout token key for: Doc Total › Currency Code.

Syntax

procedure GetLayout_DocTotal_CurrencyCodeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_DocTotal_DateToken() : Text[50]

Summary: Returns the layout token key for: Doc Total › Date.

Syntax

procedure GetLayout_DocTotal_DateToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_ContractNoCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Contract No Caption.

Syntax

procedure GetLayout_SubBilling_ContractNoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_PositionNoCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Position No Caption.

Syntax

procedure GetLayout_SubBilling_PositionNoCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_PositionDescriptionCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Position Description Caption.

Syntax

procedure GetLayout_SubBilling_PositionDescriptionCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_CustomerCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Customer Caption.

Syntax

procedure GetLayout_SubBilling_CustomerCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_StartDateCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Start Date Caption.

Syntax

procedure GetLayout_SubBilling_StartDateCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_EndDateCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › End Date Caption.

Syntax

procedure GetLayout_SubBilling_EndDateCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_DaysCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Days Caption.

Syntax

procedure GetLayout_SubBilling_DaysCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_QtyCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Qty Caption.

Syntax

procedure GetLayout_SubBilling_QtyCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_SalesPriceCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Sales Price Caption.

Syntax

procedure GetLayout_SubBilling_SalesPriceCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_DiscountPercentCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Discount Percent Caption.

Syntax

procedure GetLayout_SubBilling_DiscountPercentCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_DiscountAmountCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Discount Amount Caption.

Syntax

procedure GetLayout_SubBilling_DiscountAmountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_AmountCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Amount Caption.

Syntax

procedure GetLayout_SubBilling_AmountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_CurrencyCodeCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Currency Code Caption.

Syntax

procedure GetLayout_SubBilling_CurrencyCodeCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_ServiceDescriptionCaptionToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Service Description Caption.

Syntax

procedure GetLayout_SubBilling_ServiceDescriptionCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_TotalPeriodTypeToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Total Period Type.

Syntax

procedure GetLayout_SubBilling_TotalPeriodTypeToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_TotalPeriodNameToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Total Period Name.

Syntax

procedure GetLayout_SubBilling_TotalPeriodNameToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_TotalPeriodValueToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Total Period Value.

Syntax

procedure GetLayout_SubBilling_TotalPeriodValueToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_ContractNoToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Contract No.

Syntax

procedure GetLayout_SubBilling_ContractNoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_PositionNoToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Position No.

Syntax

procedure GetLayout_SubBilling_PositionNoToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_RecurringBillingFromToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Recurring Billing From.

Syntax

procedure GetLayout_SubBilling_RecurringBillingFromToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_RecurringBillingToToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Recurring Billing To.

Syntax

procedure GetLayout_SubBilling_RecurringBillingToToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_CustomerNameToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Customer Name.

Syntax

procedure GetLayout_SubBilling_CustomerNameToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_DiscountAmountToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Discount Amount.

Syntax

procedure GetLayout_SubBilling_DiscountAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_StartDateToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Start Date.

Syntax

procedure GetLayout_SubBilling_StartDateToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_EndDateToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › End Date.

Syntax

procedure GetLayout_SubBilling_EndDateToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_SubBilling_DaysToken() : Text[50]

Summary: Returns the layout token key for: Sub Billing › Days.

Syntax

procedure GetLayout_SubBilling_DaysToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_InvDiscountAmountCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT › Inv Discount Amount Caption.

Syntax

procedure GetLayout_VAT_InvDiscountAmountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_VATAmountCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT › VAT Amount Caption.

Syntax

procedure GetLayout_VAT_VATAmountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_TotalExclVATCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT › Total Excl VAT Caption.

Syntax

procedure GetLayout_VAT_TotalExclVATCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_TotalInclVATCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT › Total Incl VAT Caption.

Syntax

procedure GetLayout_VAT_TotalInclVATCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_VATDiscountAmountCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT › VAT Discount Amount Caption.

Syntax

procedure GetLayout_VAT_VATDiscountAmountCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_TotalCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT › Total Caption.

Syntax

procedure GetLayout_VAT_TotalCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_SubtotalCaptionToken() : Text[50]

Summary: Returns the layout token key for: VAT › Subtotal Caption.

Syntax

procedure GetLayout_VAT_SubtotalCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_PriceInclVATToken() : Text[50]

Summary: Returns the layout token key for: VAT › Price Incl VAT.

Syntax

procedure GetLayout_VAT_PriceInclVATToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_BaseDiscountPercentToken() : Text[50]

Summary: Returns the layout token key for: VAT › Base Discount Percent.

Syntax

procedure GetLayout_VAT_BaseDiscountPercentToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_VATAmountToken() : Text[50]

Summary: Returns the layout token key for: VAT › VAT Amount.

Syntax

procedure GetLayout_VAT_VATAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_TotalExclVATToken() : Text[50]

Summary: Returns the layout token key for: VAT › Total Excl VAT.

Syntax

procedure GetLayout_VAT_TotalExclVATToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_TotalInclVATToken() : Text[50]

Summary: Returns the layout token key for: VAT › Total Incl VAT.

Syntax

procedure GetLayout_VAT_TotalInclVATToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_TotalLCYToken() : Text[50]

Summary: Returns the layout token key for: VAT › Total LCY.

Syntax

procedure GetLayout_VAT_TotalLCYToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_PaymentDiscOnVATToken() : Text[50]

Summary: Returns the layout token key for: VAT › Payment Disc On VAT.

Syntax

procedure GetLayout_VAT_PaymentDiscOnVATToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_TotalLineAmountToken() : Text[50]

Summary: Returns the layout token key for: VAT › Total Line Amount.

Syntax

procedure GetLayout_VAT_TotalLineAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_InvDiscAmountToken() : Text[50]

Summary: Returns the layout token key for: VAT › Inv Disc Amount.

Syntax

procedure GetLayout_VAT_InvDiscAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_TotalTextToken() : Text[50]

Summary: Returns the layout token key for: VAT › Total Text.

Syntax

procedure GetLayout_VAT_TotalTextToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_PrintTotalsToken() : Text[50]

Summary: Returns the layout token key for: VAT › Print Totals.

Syntax

procedure GetLayout_VAT_PrintTotalsToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_VAT_TotalExclVAT_Plus_VATAmountToken() : Text[50]

Summary: Returns the layout token key for: VAT › Total Excl VAT › Plus › VAT Amount.

Syntax

procedure GetLayout_VAT_TotalExclVAT_Plus_VATAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Prepmt_SpecCaptionToken() : Text[50]

Summary: Returns the layout token key for: Prepmt › Spec Caption.

Syntax

procedure GetLayout_Prepmt_SpecCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Prepmt_VATAmountSpecCaptionToken() : Text[50]

Summary: Returns the layout token key for: Prepmt › VAT Amount Spec Caption.

Syntax

procedure GetLayout_Prepmt_VATAmountSpecCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Prepmt_PaymentTermsCaptionToken() : Text[50]

Summary: Returns the layout token key for: Prepmt › Payment Terms Caption.

Syntax

procedure GetLayout_Prepmt_PaymentTermsCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Shipment_OrderQuantityCaptionToken() : Text[50]

Summary: Returns the layout token key for: Shipment › Order Quantity Caption.

Syntax

procedure GetLayout_Shipment_OrderQuantityCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Shipment_ShippedQuantityCaptionToken() : Text[50]

Summary: Returns the layout token key for: Shipment › Shipped Quantity Caption.

Syntax

procedure GetLayout_Shipment_ShippedQuantityCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Shipment_OutstandingQuantityCaptionToken() : Text[50]

Summary: Returns the layout token key for: Shipment › Outstanding Quantity Caption.

Syntax

procedure GetLayout_Shipment_OutstandingQuantityCaptionToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Prepmt_TotalAmountToken() : Text[50]

Summary: Returns the layout token key for: Prepmt › Total Amount.

Syntax

procedure GetLayout_Prepmt_TotalAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Prepmt_VATAmountToken() : Text[50]

Summary: Returns the layout token key for: Prepmt › VAT Amount.

Syntax

procedure GetLayout_Prepmt_VATAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Prepmt_NetAmountToken() : Text[50]

Summary: Returns the layout token key for: Prepmt › Net Amount.

Syntax

procedure GetLayout_Prepmt_NetAmountToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

GetLayout_Prepmt_PaymentTermsToken() : Text[50]

Summary: Returns the layout token key for: Prepmt › Payment Terms.

Syntax

procedure GetLayout_Prepmt_PaymentTermsToken(): Text[50]

Returns: The locked layout token string constant.

Remarks: Use this token as a key when reading values from the field data dictionary in RDLC report layouts.

Events

OnAfterInitFields(Record KVSKBADocumentHeaderBuffer) :

Summary: Event raised after InitFields has reset all header buffer fields.

[IntegrationEvent(false, false)]
local procedure OnAfterInitFields(var DocumentHeaderBuffer: Record "KVSKBADocumentHeaderBuffer"): 

Parameters:

  • DocumentHeaderBuffer: The initialised document header buffer record.

Remarks: Use this event to set additional custom fields or default values after the standard initialisation has run.

OnAfterBuildFieldData(Record KVSKBADocumentHeaderBuffer, Codeunit KVSKBAMasterDocFieldData) :

[IntegrationEvent(false, false)]
local procedure OnAfterBuildFieldData(var DocumentHeaderBuffer: Record "KVSKBADocumentHeaderBuffer"; var FieldDataList: Codeunit "KVSKBAMasterDocFieldData"): 

OnBeforeGetPositionCaption(Text, Boolean) :

Summary: Event raised before the standard position caption is returned in GetPositionCaption.

[IntegrationEvent(false, false)]
local procedure OnBeforeGetPositionCaption(var PositionCaption: Text; var DisregardStandardCaption: Boolean): 

Parameters:

  • PositionCaption: The custom caption text to use, set by the subscriber.
  • DisregardStandardCaption: Set to true to use PositionCaption instead of the standard label.

Remarks: Subscribers can set DisregardStandardCaption to true and assign a value to PositionCaption to override the default position column caption.

OnBeforeGetDescriptionCaption(Text, Boolean) :

Summary: Event raised before the standard description caption is returned in GetDescriptionCaption.

[IntegrationEvent(false, false)]
local procedure OnBeforeGetDescriptionCaption(var PositionCaption: Text; var DisregardStandardCaption: Boolean): 

Parameters:

  • PositionCaption: The custom caption text to use, set by the subscriber.
  • DisregardStandardCaption: Set to true to use PositionCaption instead of the standard label.

Remarks: Subscribers can set DisregardStandardCaption to true and assign a value to PositionCaption to override the default description column caption.

OnBeforeGetUnitPriceCaption(Text, Boolean) :

Summary: Event raised before the standard unit price caption is returned in GetUnitPriceCaption.

[IntegrationEvent(false, false)]
local procedure OnBeforeGetUnitPriceCaption(var UnitPriceCaption: Text; var DisregardStandardCaption: Boolean): 

Parameters:

  • UnitPriceCaption: The custom caption text to use, set by the subscriber.
  • DisregardStandardCaption: Set to true to use UnitPriceCaption instead of the standard label.

Remarks: Subscribers can set DisregardStandardCaption to true and assign a value to UnitPriceCaption to override the default unit price column caption for both Sales and Purchase scopes.

OnBeforeGetAmountCaption(Text, Boolean) :

Summary: Event raised before the standard amount caption is returned in GetAmountCaption.

[IntegrationEvent(false, false)]
local procedure OnBeforeGetAmountCaption(var AmountCaption: Text; var DisregardStandardCaption: Boolean): 

Parameters:

  • AmountCaption: The custom caption text to use, set by the subscriber.
  • DisregardStandardCaption: Set to true to use AmountCaption instead of the standard label.

Remarks: Subscribers can set DisregardStandardCaption to true and assign a value to AmountCaption to override the default amount column caption.

OnBeforeGetVATPercentCaption(Text, Boolean) :

Summary: Event raised before the standard VAT percent caption is returned in GetVATPercentCaption.

[IntegrationEvent(false, false)]
local procedure OnBeforeGetVATPercentCaption(var VATPercentCaption: Text; var DisregardStandardCaption: Boolean): 

Parameters:

  • VATPercentCaption: The custom caption text to use, set by the subscriber.
  • DisregardStandardCaption: Set to true to use VATPercentCaption instead of the standard label.

Remarks: Subscribers can set DisregardStandardCaption to true and assign a value to VATPercentCaption to override the default VAT percent column caption.

OnBeforeGetSignatureCaption(Text, Boolean) :

Summary: Event raised before the standard signature caption is returned in GetSignatureCaption.

[IntegrationEvent(false, false)]
local procedure OnBeforeGetSignatureCaption(var SignatureCaption: Text; var DisregardStandardCaption: Boolean): 

Parameters:

  • SignatureCaption: The custom caption text to use, set by the subscriber.
  • DisregardStandardCaption: Set to true to use SignatureCaption instead of the standard label.

Remarks: Subscribers can set DisregardStandardCaption to true and assign a value to SignatureCaption to override the default signature caption.