Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Data Category

Event Field/Column Name

Data Type

Description

Applicability

Sample Value

Notes

Key

TenantId

VARCHAR

Multiexcerpt include
MultiExcerptNameglossary_description
PageWithExcerptTenant ID
shouldDisplayInlineCommentsInIncludesfalse

ALWAYS

qvo-stg

Key

Tenant

VARCHAR

Multiexcerpt include macro
macro_uuid92aefef2-6d9d-4064-a29c-4aff6b6b5512
nameglossary_description
templateDataeJyLjgUAARUAuQ==
pageTenant
addpanelfalse

ALWAYS

Default

Key

ClientId

VARCHAR

Multiexcerpt include
MultiExcerptNameglossary_description
PageWithExcerptClient ID
shouldDisplayInlineCommentsInIncludesfalse

ALWAYS

Default

Key

Client

VARCHAR

Multiexcerpt include macro
macro_uuid92aefef2-6d9d-4064-a29c-4aff6b6b5512
nameglossary_description
templateDataeJyLjgUAARUAuQ==
pageClient
addpanelfalse

ALWAYS

Default

Claim Details

ClaimType

VARCHAR

Multiexcerpt include
MultiExcerptNameglossary_description
PageWithExcerptClaim Type
shouldDisplayInlineCommentsInIncludesfalse

CONDITIONAL

Card-Pinless

Claim Details

ClaimCategory

VARCHAR

Multiexcerpt include
MultiExcerptNameglossary_description
PageWithExcerptClaim Category
shouldDisplayInlineCommentsInIncludesfalse

CONDITIONAL

Fraud

Claim Details

ClaimReason

VARCHAR

Multiexcerpt include
MultiExcerptNameglossary_description
PageWithExcerptClaim Reason
shouldDisplayInlineCommentsInIncludesfalse

CONDITIONAL

Stolen

Claim Details

ClaimStatus

VARCHAR(64)

Multiexcerpt include
MultiExcerptNameglossary_description
PageWithExcerptStatus Work
shouldDisplayInlineCommentsInIncludesfalse

ALWAYS

RESOLVED-PAID

Claim Details

ContactDate

DATE

Multiexcerpt include
macro_uuidd99ef6b8-ca27-4139-8c27-79c2824a1215
templateDataeJyLjgUAARUAuQ==
MultiExcerptNameglossary_description
addpanelfalse
PageWithExcerptCustomer Contact Date

CONDITIONAL

2023-09-09

Key

ClaimId

VARCHAR(32)

Multiexcerpt include
MultiExcerptNameglossary_description
PageWithExcerptClaim ID
shouldDisplayInlineCommentsInIncludesfalse

ALWAYS

2306060014C

Key

DisputeId

VARCHAR(32)

ALWAYS

2306060014D

Dispute Details

DisputeAmount

NUMBER

Multiexcerpt include macro
macro_uuidcf118209-282b-4c0b-936a-3481818e5929
nameglossary_description
templateDataeJyLjgUAARUAuQ==
pageDispute Amount
addpanelfalse

ALWAYS

123.45

Action Details

Regulation

VARCHAR

The applicable rule or regulation that the protection action was applied to maintain compliance with.

ALWAYS

'Reg E Provisional Credit', 'Reg E Resolution', 'Reg Z Acknowledgement', 'Reg Z Withholding', 'Reg Z Resolution'

Action Details

Performed On

TIMESTAMP_NTZ(9)

Datetime that the regulatory protection action was applied to the dispute.

ALWAYS

2023-09-09 21:00:00

Dispute Details

PCDocRequirementSatisfiedDate

TIMESTAMP_NTZ(9)

Multiexcerpt include
MultiExcerptNameglossary_description
PageWithExcerptPC Doc Requirements Satisfied DateTime
shouldDisplayInlineCommentsInIncludesfalse

CONDITIONAL

2023-09-09 21:00:00

Dispute Details

RegE10Outcome

VARCHAR(64)

Multiexcerpt include
MultiExcerptNameglossary_description
PageWithExcerptReg E 10 Processing Outcome
shouldDisplayInlineCommentsInIncludesfalse

CONDITIONAL

DenyProvisionalCredit

Dispute Details

PCDenyReason

VARCHAR(64)

Multiexcerpt include
MultiExcerptNameglossary_description
PageWithExcerptPC Deny Reason
shouldDisplayInlineCommentsInIncludesfalse

CONDITIONAL

Missing Documentation

SQL

For greater transparency, and to provide clients with a “jumping off” point for their own queries, the SQL used to generated this view is provided below.

Code Block
breakoutModefull-width
languagesql
SELECT
    r.tenantid,
    t.name,
    r.clientid,
    cl.commonname,
    c.claimtype,
    c.reasontype,
    c.reason,
    c.status,
    c.customercontactdate,
    r.claimid,
    r.disputeid,
    d.disputeamount,
    (CASE
        WHEN r.regprotectiondecision = 'RegE10' THEN 'Reg E Provisional Credit'
        WHEN r.regprotectiondecision = 'RegE90' THEN 'Reg E Resolution'
        WHEN r.regprotectiondecision = 'RegE45' THEN 'Reg E Resolution'
        WHEN r.regprotectiondecision = 'RegZ30' THEN 'Reg Z Acknowledgement'
        WHEN r.regprotectiondecision = 'RegZ90' THEN 'Reg Z Resolution'
        WHEN r.regprotectiondecision = 'RegZPC' THEN 'Reg Z Withholding'
        else CONCAT('ERROR - ', r.regprotectiondecision)
    END) AS Regulation,
    TO_TIMESTAMP_TZ(r.regprotectiondecisiondatetime::varchar || ' +0000'),
    TO_TIMESTAMP_TZ(r.pcdocrequirementsatisfieddatetime::varchar || ' +0000'),
    r.status ,
    CAMEL_CASE_TO_STRING(r.rege10processingoutcome),
    r.pcdenyreason
FROM regprotection as r
JOIN dispute AS d ON d.tenantid = r.tenantid AND d.disputeid = r.disputeid
JOIN tenant AS t ON r.tenantid = t.tenantid
JOIN claim AS c ON r.tenantid = c.tenantid and r.claimid = c.claimid
JOIN client AS cl ON r.tenantid = cl.tenantid and r.clientid = cl.clientid
ORDER BY r.regprotectiondecisiondatetime DESC

Change Log

Date

Change Summary

12/11/2024

  • Added SQL Reference

  • Converted timestamps from NTZ to TZ format for compatibility