Share via


Bank_BE::isPaymIdStructured Method [AX 2012]

Determines if the payment ID is to be considered as a structured payment ID according to the Belgian definition for a structured payment ID.

Syntax

client server public static boolean isPaymIdStructured(PaymId _paymId)

Run On

Called

Parameters

Return Value

Type: boolean
true if the payment ID is structured; otherwise, false.

Remarks

The method does not analyze if the payment ID is a valid payment ID, for example, in relation to check digits. Other methods on this class do the analysis.

Examples

PaymId paymId = '***172635165***'; 
 
if (Bank_BE::isPaymIdStructured(paymId)) 
{ 
    info('The payment id is structured'); 
} 
else 
{ 
    info('The payment id is not structured'); 
}

See Also

Bank_BE Class

Bank_BE.checkPaymId Method

Bank_BE::checkPaymentId Method

Bank_BE::validateCheckDigit Method