DQVerify
AddressEmailPhone

Phone Plus Output Columns

Use this article if your batch processing includes Phone Plus validation. Phone Plus extends standard Phone validation with operator, portability, and switch-on confirmation data. Applies to file-based batch processing only.

Dynamic phone field names

Phone output column names include the placeholder {FIELD_NAME_PHONE}. This is replaced by your actual input column name. Example: if your phone column is named mobile, then DQE_{FIELD_NAME_PHONE}_ERROR_CODE becomes DQE_mobile_ERROR_CODE.

Phone Plus columns

ColumnDescription
DQE_{FIELD_NAME_PHONE}_ERROR_CODEReturn code after Phone Plus processing
DQE_{FIELD_NAME_PHONE}Reformatted phone number
DQE_{FIELD_NAME_PHONE}_IS_MOBILEMobile detection (True/False)
DQE_{FIELD_NAME_PHONE}_OLD_OPERATORPrevious operator (portability)
DQE_{FIELD_NAME_PHONE}_OPERATORCurrent operator
DQE_{FIELD_NAME_PHONE}_PORTEDPortability detection (Y/N)

Phone Plus error code values

ValueDescription
0Invalid or non-existing phone number
1Valid number with confirmation that the phone is switched on
2Valid number — no confirmation that the phone is switched on

Mobile detection values

ValueDescription
FalseNumber is not a mobile
TrueNumber is a mobile

Portability values

ValueDescription
YNumber has been ported to a new operator
NNumber has not been ported

Best practices

  • -Use ERROR_CODE to distinguish invalid, valid-on, and valid-off numbers
  • -Use IS_MOBILE to adapt communication channels
  • -Use operator and portability data only when relevant to your business process
  • -Keep the original input phone field for comparison

Related articles