HR_SSTEXT_TX_VW

(SQL View)
Index Back

User Configurable Text - Lang

This is a duplicate view of the HR_SSTEXT_LANG related language table. This is used by the caching feature of the Text Catalog to build a cache of base and related language data. This view is required to get around newer Tools functionality that automatically applied related language processing to the Rowset.Fill() method of a standalone rowset. In this case, we do not want this processing to occur when loading the cache for the Base Language, so we base the Base Language rowset cache on this view instead of the underlying table (which specifies a related language table other than this view).

SELECT A.OBJECTOWNERID , A.HR_SSTEXT_SUB_ID , A.TEXT_ID , B.DESCR254_MIXED , A.HR_SSTEXT_TEXT FROM PS_HR_SSTEXT_TEXT A , PS_HR_SSTEXT_MSGID B WHERE A.OBJECTOWNERID = B.OBJECTOWNERID AND A.HR_SSTEXT_SUB_ID = B.HR_SSTEXT_SUB_ID AND A.TEXT_ID = B.TEXT_ID

  • Related Language Record: HR_SSTEXT_TX_LN
  • # PeopleSoft Field Name PeopleSoft Field Type Database Column Type Description
    1 OBJECTOWNERID Character(4) VARCHAR2(4) NOT NULL Object owner identifier
    2 HR_SSTEXT_SUB_ID Character(4) VARCHAR2(4) NOT NULL The Sub ID is field that is optionally used to further partition Text Catalog entries within an Object Owner ID. For example, we might want to create a Sub ID to keep Text Catalog entries for Enrollment separate from the Text Catalog entries for the inquiry pages within the eBenefits ObjectOwnerId.
    3 TEXT_ID Character(18) VARCHAR2(18) NOT NULL Text ID
    4 DESCR254_MIXED Character(254) VARCHAR2(254) NOT NULL Description
    5 HR_SSTEXT_TEXT Long Character(8095) CLOB Long Text field for HR Self-Service Text Catalog. This is the text that is displayed on a page from the Text Catalog.