indexes, Table Structure

QP_PRICE_LISTS_TL: Columns, Indexes and Few Tricks

QP_PRICE_LISTS_TL is the translation table used by Oracle fusion to store the name of Price List. This post is to share my knowledge of this table e.g. Table structure, Indexes etc but before that a few tricks which we need to remember while using this table:

  1. Price_List_Id along with Language can be used to fetch the record uniquely. This is also the primary key of the table. you can use USERENV(‘LANG’) to get the language of the user to get the appropriate name.
  2. Another way to get the unique record of this table is to query it for price list name along with Language.
  3. This table is the translational table for table QP_PRICE_LISTS_ALL_B which is the base table for Price List.
  4. You can refer the query to fetch the price list of an item and other details by clicking here.

Related Posts

Now let’s have a look at the column details and indexes of the table QP_PRICE_LISTS_TL.

QP_PRICE_LISTS_TL Structure

COLUMN_NAMEDATA_TYPENULLABLE
PRICE_LIST_IDNUMBERN
LANGUAGEVARCHAR2(16)N
SOURCE_LANGVARCHAR2(16)N
NAMEVARCHAR2(320)N
DESCRIPTIONVARCHAR2(4000)Y
LAST_UPDATE_LOGINVARCHAR2(128)Y
LAST_UPDATED_BYVARCHAR2(256)N
LAST_UPDATE_DATETIMESTAMP(6)N
CREATED_BYVARCHAR2(256)N
CREATION_DATETIMESTAMP(6)N
OBJECT_VERSION_NUMBERNUMBERN
Table Structure

Indexes

INDEX NAMEINDEX TYPEUNIQUENESSCOLUMN NAME
QP_PRICE_LISTS_TL_PKNORMALUNIQUEPRICE_LIST_ID
QP_PRICE_LISTS_TL_PKNORMALUNIQUELANGUAGE
QP_PRICE_LISTS_TL_U1NORMALUNIQUENAME
QP_PRICE_LISTS_TL_U1NORMALUNIQUELANGUAGE
Index Details

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 “QP_PRICE_LISTS_TL: Columns, Indexes and Few Tricks”

Comments are closed.