Uncategorized

EGP_SYSTEM_ITEMS_TL: Columns & Indexes

EGP_SYSTEM_ITEMS_TL: This table is primarily used by Oracle Fusion to store the Description of the item along with Long Description. Point to remember is that you’ll get a unique row for each inventory_item_id, Organization_id and Language. Or in other words we can say that each item can have a different Description depending on the inventory org as well as the language.

Here are a few important points:
1. This table will have at least one row for each item – inventory org combination from egp_system_items_b table.
2. You will have to query this table if you need to find out the description or long description of the item.
3. To get the language of the user, use the function USERNV(‘LANG’) in where clause. Example:
select description
from egp_system_items_tl
where inventory_item_id = 12345
AND organization_id = 987
AND LANGUAGE = USERENV(‘LANG’)

By the way, Here ( India) or Here ( Other Geographies) are few UNCONVENTIONAL tricks which I have learnt to improve the performance of BI reports or SQL queries. Try them only when nothing else works.. kind of SOS...
https://www.amazon.in/gp/product/B093CC1CLD?ie=UTF8&tag=oraclebytes-21&camp=3638&linkCode=xm2&creativeASIN=B093CC1CLD

Let’s discuss the Table Structure and indexes of the table:

EGP_SYSTEM_ITEMS_TL Table Structure

COLUMN_NAMEDATA_TYPENULLABLE
 INVENTORY_ITEM_IDNUMBER
 HTML_LONG_DESCRIPTIONCLOB
 ORGANIZATION_IDNUMBER
 LANGUAGEVARCHAR2(16)
 SOURCE_LANGVARCHAR2(16)
 DESCRIPTIONVARCHAR2(960)
 LAST_UPDATE_DATETIMESTAMP(6)
 LAST_UPDATED_BYVARCHAR2(256)
 CREATION_DATETIMESTAMP(6)
 CREATED_BYVARCHAR2(256)
 LAST_UPDATE_LOGINVARCHAR2(128)
 LONG_DESCRIPTIONVARCHAR2(4000)
 OBJECT_VERSION_NUMBERNUMBER
 TEMPLATE_NAMEVARCHAR2(3840)
egp_system_Items_tl table Structure

EGP_SYSTEM_ITEMS_TL Indexes

INDEX_NAMEINDEX_TYPEUNIQUENESSCOLUMN_NAME
 EGP_SYSTEM_ITEMS_TL_N1NORMALNONUNIQUEORGANIZATION_ID
 EGP_SYSTEM_ITEMS_TL_N1NORMALNONUNIQUELANGUAGE
 EGP_SYSTEM_ITEMS_TL_N1NORMALNONUNIQUEDESCRIPTION
 EGP_SYSTEM_ITEMS_TL_N2FUNCTION-BASED NORMALNONUNIQUELANGUAGE
 EGP_SYSTEM_ITEMS_TL_N2FUNCTION-BASED NORMALNONUNIQUEORGANIZATION_ID
 EGP_SYSTEM_ITEMS_TL_N2FUNCTION-BASED NORMALNONUNIQUESYS_NC00015$
 EGP_SYSTEM_ITEMS_TL_N3FUNCTION-BASED NORMALNONUNIQUELANGUAGE
 EGP_SYSTEM_ITEMS_TL_N3FUNCTION-BASED NORMALNONUNIQUEORGANIZATION_ID
 EGP_SYSTEM_ITEMS_TL_N3FUNCTION-BASED NORMALNONUNIQUESYS_NC00016$
 EGP_SYSTEM_ITEMS_TL_N4NORMALNONUNIQUELAST_UPDATE_DATE
 EGP_SYSTEM_ITEMS_TL_N5FUNCTION-BASED NORMALNONUNIQUESYS_NC00015$
 EGP_SYSTEM_ITEMS_TL_N5FUNCTION-BASED NORMALNONUNIQUEINVENTORY_ITEM_ID
 EGP_SYSTEM_ITEMS_TL_N6NORMALNONUNIQUETEMPLATE_NAME
 EGP_SYSTEM_ITEMS_TL_N6NORMALNONUNIQUEORGANIZATION_ID
 EGP_SYSTEM_ITEMS_TL_N6NORMALNONUNIQUELANGUAGE
 EGP_SYSTEM_ITEMS_TL_N7FUNCTION-BASED NORMALNONUNIQUESYS_NC00017$
 EGP_SYSTEM_ITEMS_TL_N7FUNCTION-BASED NORMALNONUNIQUEORGANIZATION_ID
 EGP_SYSTEM_ITEMS_TL_N7FUNCTION-BASED NORMALNONUNIQUELANGUAGE
 EGP_SYSTEM_ITEMS_TL_U1NORMALUNIQUEINVENTORY_ITEM_ID
 EGP_SYSTEM_ITEMS_TL_U1NORMALUNIQUEORGANIZATION_ID
 EGP_SYSTEM_ITEMS_TL_U1NORMALUNIQUELANGUAGE
egp_system_Items_tl Indexes

Related Posts

Item Table In Oracle Fusion
Querying Item Table In Oracle Fusion
Item Price Query

Feedback:
Hope the article helped you. If it did, please rate the post. In case it didn’t, do leave a comment to let us know what did we miss.

Reference:
support.oracle.com

Check out the Amazon Deals of the day based on your interests..

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

1 thought on “EGP_SYSTEM_ITEMS_TL: Columns & Indexes”

Comments are closed.