Search Results signed_date
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
WF_DIG_SIGS is a table owned by the APPLSYS schema within Oracle E-Business Suite, listed under the FND – Application Object Library product. Its documented description identifies it as the "digital signatures table." In practice, WF_DIG_SIGS stores the outcomes of Oracle Workflow digital signature operations, recording the binding between a signed object, the certificate used to sign it, the resulting signature payload, and the lifecycle of request, signing, verification, and error handling. It therefore acts as an audit and persistence layer for electronic signature activity driven by Oracle Workflow signature policies.
The table carries a heuristic Data Vault classification of "standalone," mined from its foreign key structure. As a modeling suggestion, this implies WF_DIG_SIGS is neither a pure hub, link, nor satellite, but a self-contained transactional record whose relationships to certificates and security groups are captured through its own foreign keys rather than through dedicated link tables. The primary key is defined as WF_DIG_SIGS_PK on the SIG_ID column, and the documented physical schema in ETRM 12.2.2 shows 19 columns with two unique indexes (SYS_IL0000241120C00007$$ and SYS_IL0000241120C00008$$) associated with LOB segments.
Key Information Stored
The surrogate primary key is SIG_ID, which uniquely identifies each signature record. Among the most significant business columns are:
- CERT_ID — references WF_DIG_CERTS, identifying the digital certificate used.
- SECURITY_GROUP_ID — references FND_SECURITY_GROUPS, scoping the record by security group.
- SIG_POLICY — the digital signature policy governing the operation.
- SIG_FLAVOR — the signature flavor/type applied.
- SIG_OBJ_TYPE and SIG_OBJ_ID — the type and identifier of the signed object.
- PLAINTEXT — the source content that was signed.
- SIGNATURE — the resulting digital signature value; both PLAINTEXT and SIGNATURE are the large-object columns typically associated with the two documented unique LOB indexes.
- REQUESTED_SIGNER_TYPE and REQUESTED_SIGNER_ID — the signer requested for the operation.
- STATUS — the current state of the signature request.
- CREATION_DATE, SIGNED_DATE, VERIFIED_DATE, LAST_VALIDATION_ATTEMPT, and VALIDATED_COMPLETE_DATE — the audit timestamps tracking the request, signing, verification, and validation lifecycle.
- ERRBUF and ERRSTACK — error message and stack information captured when an operation fails.
Common Use Cases and Queries
Typical uses include auditing who signed what and when, verifying signature validity, and diagnosing signature-processing failures. A representative query joining the certificate and security group dimensions follows:
- SELECT s.SIG_ID, s.SIG_OBJ_TYPE, s.SIG_OBJ_ID, s.STATUS, s.SIGNED_DATE, c.CERT_ID FROM WF_DIG_SIGS s JOIN WF_DIG_CERTS c ON s.CERT_ID = c.CERT_ID WHERE s.STATUS = 'SIGNED';
- Filtering by SECURITY_GROUP_ID to isolate signatures within a specific operating scope.
- Reporting on ERRSTACK and ERRBUF for records where signing or verification failed.
- Audit extracts comparing CREATION_DATE against SIGNED_DATE and VALIDATED_COMPLETE_DATE to measure turnaround and validation status.
Related Objects
- WF_DIG_CERTS — referenced by WF_DIG_SIGS.CERT_ID; holds the certificate definitions used for signing.
- FND_SECURITY_GROUPS — referenced by WF_DIG_SIGS.SECURITY_GROUP_ID; defines the security group context of each record.
- WF_DIG_SIGS_PK — the primary key constraint on SIG_ID.
- APPLSYS.WF_DIG_SIGS — the fully qualified table referenced from custom SQL and views.
Because the metadata classifies the table as standalone, dependent objects are primarily these foreign key targets and the primary key constraint rather than a broader set of link tables.
-
Table: WF_DIG_SIGS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_DIG_SIGS, object_name:WF_DIG_SIGS, status:VALID, product: FND - Application Object Library , description: digital signatures table , implementation_dba_data: APPLSYS.WF_DIG_SIGS ,
-
Table: PON_ACTION_HISTORY
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_ACTION_HISTORY, object_name:PON_ACTION_HISTORY, status:VALID, product: PON - Sourcing , description: To store Approval History , implementation_dba_data: PON.PON_ACTION_HISTORY ,
-
Table: OKC_REP_IMP_PARTIES_T
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_REP_IMP_PARTIES_T, object_name:OKC_REP_IMP_PARTIES_T, status:VALID, product: OKC - Contracts Core , description: This is a temporary table for storing an imported contract party's attributes. It is used for validating contract parties, preparing parties data for importing into Contracts Repository schema and generating error messages for invalid part , implementation_dba_data: OKC.OKC_REP_IMP_PARTIES_T ,
-
Table: WF_DIG_SIGS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_DIG_SIGS, object_name:WF_DIG_SIGS, status:VALID, product: FND - Application Object Library , description: digital signatures table , implementation_dba_data: APPLSYS.WF_DIG_SIGS ,
-
Table: OKC_REP_SIGNATURE_DETAILS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_REP_SIGNATURE_DETAILS, object_name:OKC_REP_SIGNATURE_DETAILS, status:VALID, product: OKC - Contracts Core , description: This table stores the Signature details of a Contract Party. , implementation_dba_data: OKC.OKC_REP_SIGNATURE_DETAILS ,
-
Table: PON_AUCTION_HEADERS_ALL
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL, object_name:PON_AUCTION_HEADERS_ALL, status:VALID, product: PON - Sourcing , description: Stores the negotiations header level details. , implementation_dba_data: PON.PON_AUCTION_HEADERS_ALL ,
-
VIEW: PON.PON_ACTION_HISTORY#
12.2.2
-
VIEW: OKC.OKC_REP_IMP_PARTIES_T#
12.2.2
-
VIEW: OKC.OKC_REP_SIGNATURE_DETAILS#
12.2.2
-
VIEW: APPLSYS.WF_DIG_SIGS#
12.2.2
-
VIEW: PON.PON_ACTION_HISTORY#
12.2.2
owner:PON, object_type:VIEW, object_name:PON_ACTION_HISTORY#, status:VALID,
-
VIEW: OKC.OKC_REP_IMP_PARTIES_T#
12.2.2
owner:OKC, object_type:VIEW, object_name:OKC_REP_IMP_PARTIES_T#, status:VALID,
-
VIEW: APPLSYS.WF_DIG_SIGS#
12.2.2
owner:APPLSYS, object_type:VIEW, object_name:WF_DIG_SIGS#, status:VALID,
-
TABLE: APPLSYS.WF_DIG_SIGS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_DIG_SIGS, object_name:WF_DIG_SIGS, status:VALID,
-
TABLE: APPLSYS.WF_DIG_SIGS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_DIG_SIGS, object_name:WF_DIG_SIGS, status:VALID,
-
VIEW: OKC.OKC_REP_SIGNATURE_DETAILS#
12.2.2
owner:OKC, object_type:VIEW, object_name:OKC_REP_SIGNATURE_DETAILS#, status:VALID,
-
TABLE: PON.PON_ACTION_HISTORY
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_ACTION_HISTORY, object_name:PON_ACTION_HISTORY, status:VALID,
-
TABLE: OKC.OKC_REP_SIGNATURE_DETAILS
12.1.1
owner:OKC, object_type:TABLE, object_name:OKC_REP_SIGNATURE_DETAILS, status:VALID,
-
VIEW: PON.PON_AUCTION_HEADERS_INTERFACE#
12.2.2
-
TABLE: OKC.OKC_REP_SIGNATURE_DETAILS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_REP_SIGNATURE_DETAILS, object_name:OKC_REP_SIGNATURE_DETAILS, status:VALID,
-
TABLE: OKC.OKC_REP_IMP_PARTIES_T
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_REP_IMP_PARTIES_T, object_name:OKC_REP_IMP_PARTIES_T, status:VALID,
-
TABLE: OKC.OKC_REP_IMP_PARTIES_T
12.1.1
owner:OKC, object_type:TABLE, object_name:OKC_REP_IMP_PARTIES_T, status:VALID,
-
APPS.WF_DIG_SIG_EVIDENCE_STORE SQL Statements
12.1.1
-
APPS.WF_DIG_SIG_EVIDENCE_STORE SQL Statements
12.2.2
-
VIEW: PON.PON_AUCTION_HEADERS_ALL#
12.2.2
-
APPS.OKC_REP_UTIL_PVT SQL Statements
12.1.1
-
APPS.PON_AUCTION_APPROVAL_PKG SQL Statements
12.2.2
-
APPS.WF_DIGITAL_SECURITY_PRIVATE SQL Statements
12.1.1
-
VIEW: PON.PON_AUCTION_HEADERS_INTERFACE#
12.2.2
owner:PON, object_type:VIEW, object_name:PON_AUCTION_HEADERS_INTERFACE#, status:VALID,
-
APPS.WF_DIGITAL_SECURITY_PRIVATE SQL Statements
12.2.2
-
TABLE: PON.PON_AUCTION_HEADERS_INTERFACE
12.2.2
owner:PON, object_type:TABLE, object_name:PON_AUCTION_HEADERS_INTERFACE, status:VALID,
-
APPS.OKC_REP_UTIL_PVT SQL Statements
12.2.2
-
VIEW: APPS.PON_AUCTION_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUCTION_HEADERS_V, object_name:PON_AUCTION_HEADERS_V, status:VALID,
-
PACKAGE: APPS.OKC_IMP_RECORD_TYPES
12.2.2
-
VIEW: PON.PON_AUCTION_HEADERS_ALL#
12.2.2
owner:PON, object_type:VIEW, object_name:PON_AUCTION_HEADERS_ALL#, status:VALID,
-
View: PON_AUCTION_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUCTION_HEADERS_V, object_name:PON_AUCTION_HEADERS_V, status:VALID, product: PON - Sourcing , description: This is the MOAC sensitive view of pon_auction_headers , implementation_dba_data: APPS.PON_AUCTION_HEADERS_V ,
-
View: PON_AUCTION_HEADERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL_V, object_name:PON_AUCTION_HEADERS_ALL_V, status:VALID, product: PON - Sourcing , description: Common View on pon_auction_headers_all , implementation_dba_data: APPS.PON_AUCTION_HEADERS_ALL_V ,
-
PACKAGE BODY: APPS.WF_DIG_SIG_EVIDENCE_STORE
12.2.2
-
PACKAGE BODY: APPS.WF_DIG_SIG_EVIDENCE_STORE
12.1.1
-
APPS.OKC_REP_CONTRACT_IMP_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PON_AUCTION_APPROVAL_PKG
12.2.2
-
PACKAGE BODY: APPS.WF_DIGITAL_SECURITY_PRIVATE
12.2.2
-
PACKAGE BODY: APPS.WF_DIGITAL_SECURITY_PRIVATE
12.1.1
-
VIEW: APPS.PON_AUCTION_HEADERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL_V, object_name:PON_AUCTION_HEADERS_ALL_V, status:VALID,
-
PACKAGE: APPS.PON_OPEN_INTERFACE_PVT
12.2.2
-
TABLE: PON.PON_AUCTION_HEADERS_ALL
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL, object_name:PON_AUCTION_HEADERS_ALL, status:VALID,
-
APPS.OKC_IMP_RECORD_TYPES dependencies on OKC_REP_IMP_PARTIES_T
12.2.2
-
APPS.PON_AUCTION_APPROVAL_PKG dependencies on PON_CLM_UTIL_PKG
12.2.2
-
APPS.OKC_REP_CONTRACT_IMP_PVT dependencies on OKC_REP_IMP_PARTIES_T_S
12.2.2
-
APPS.WF_NOTIFICATION dependencies on WF_DIGITAL_SECURITY_PRIVATE
12.1.1