indexes, Table Structure

QP_PRICE_LISTS_ALL_B: Columns, Indexes & Imp Points

QP_PRICE_LISTS_ALL_B is the table used by Oracle Fusion to store the Price List i.e. it is the base table for Price List. In this post we will discuss the structure of this table but before that couple of points to keep in mind before using it in the code:

  1. This table has a column called STATUS. Watch out for this column in your query.
  2. Records in this table are date sensitive i.e. price lists can expire. Use “Start Date” and “End Date” judiciously.
  3. Org_Id is yet another column you might want to keep an eye upon as different price list might be in use for same item across inventory orgs.
  4. PRICE_LIST_ID is the unique key here.
  5. Click here to see the query fetching item, price list and other details.

Related Posts:

Price List Query
QP_PRICE_LIST_ITEMS: Table to hold the relationship between item and price list

Below are the table structure and Index details of table QP_PRICE_LISTS_ALL_B.

QP_PRICE_LISTS_ALL_B Structure

COLUMN_NAMEDATA_TYPENULLABLE
PRICE_LIST_IDNUMBERN
CALCULATION_METHOD_CODEVARCHAR2(120)Y
START_DATETIMESTAMP(6)N
CHARGE_DEFINITION_IDNUMBERY
END_DATETIMESTAMP(6)Y
STATUS_CODEVARCHAR2(120)N
ATTRIBUTE_CATEGORYVARCHAR2(600)Y
CURRENCY_CODEVARCHAR2(60)N
PRICE_LIST_TYPE_CODEVARCHAR2(120)N
LINE_TYPE_CODEVARCHAR2(120)Y
ORG_IDNUMBERN
CATALOG_IDNUMBERY
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
ATTRIBUTE_CHAR1 – ATTRIBUTE_CHAR20VARCHAR2(600)Y
ATTRIBUTE_NUMBER1 – ATTRIBUTE_NUMBER10NUMBERY
ATTRIBUTE_DATE1- ATTRIBUTE_DATE5DATEY
ATTRIBUTE_TIMESTAMP1-ATTRIBUTE_TIMESTAMP5TIMESTAMP(6)Y
QP_PRICE_LISTS_ALL_B Table Structure

Index

INDEX_NAMEINDEX_TYPEUNIQUENESSCOLUMN_NAME
QP_PRICE_LISTS_B_PKNORMALUNIQUEPRICE_LIST_ID
QP_PRICE_LISTS_ALL_B Index

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_ALL_B: Columns, Indexes & Imp Points”

Comments are closed.