PO_GEN_AI_SUMMARY

Stores the GEN AI generated summaries in all languages.

Details

  • Schema: FUSION

  • Object owner: PO

  • Object type: TABLE

  • Tablespace: APPS_TS_TX_DATA

Primary Key

Name Columns

PO_GEN_AI_SUMMARY_PK

DOC_SUMMARY_ID

Columns

Name Datatype Length Precision Not-null Comments
DOC_SUMMARY_ID NUMBER 18 Yes This is the unique summary id for every summary
OBJECT_TYPE_CODE VARCHAR2 50 Yes It is used to identify type of object PO, PA, and WC,...
OBJECT_ID NUMBER 18 Yes This is key atttibute of document entity
VERSION_ID NUMBER 18 Yes This will store the version of the document
SUMMARY_TYPE VARCHAR2 50 Yes It is used to store type of summary like PO, PA, PO_CO, PA_CO, WC...
SUMMARY_LANGUAGE VARCHAR2 30 Yes Language of the summary
SUMMARY VARCHAR2 4000 Summary generated from GenAI API
ERROR VARCHAR2 1000 Error returned from GenAI API
REQUEST_TIME NUMBER Time taken by GenAI API to return the response
OBJECT_VERSION_NUMBER NUMBER 9 Yes Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.

Indexes

Index Uniqueness Tablespace Columns
PO_GEN_AI_SUMMARY_U1 Unique Default DOC_SUMMARY_ID
PO_GEN_AI_SUMMARY_U2 Unique Default OBJECT_TYPE_CODE, OBJECT_ID, VERSION_ID, SUMMARY_TYPE, SUMMARY_LANGUAGE