SAP PRICAT_PRO PRICAT Outbound: Requirements Profile (Customizing) Table data and field list

PRICAT_PRO is a standard SAP Table which is used to store PRICAT Outbound: Requirements Profile (Customizing) data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The PRICAT_PRO table consists of various fields, each holding specific information or linking keys about PRICAT Outbound: Requirements Profile (Customizing) data available in SAP. These include PROFIL (PRICAT: Requirements profile), WERKS (PRICAT: Plant for material data determination), AUART (PRICAT: Sales document type for calc. schema determination), BRUTTO_KA (PRICAT: Condition type for gross price determination)... See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

PRICAT_PRO table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)

Text table = PRICAT_PRO_T


SAP PRICAT_PRO table fields - Full list of fields found in SAP data dictionary

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the PRICAT_PRO table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3T000MANDT
PROFILPRICAT: Requirements profile PRIPRFCHAR4PRIPRFPRIP
WERKSPRICAT: Plant for material data determination PRIWRKCHAR4T001WWERKSWRK
AUARTPRICAT: Sales document type for calc. schema determination PRIAUACHAR4TVAKAUARTAUARTAAT
BRUTTO_KAPRICAT: Condition type for gross price determination PRIKABCHAR4T685KSCHLVKS
BRUTTO_ZWPRICAT: Condition subtotal PRIZWICHAR1KZWIW
NETTO_KAPRICAT: Condition type for net price determination PRIKANCHAR4T685KSCHL
NETTO_ZWPRICAT: Condition subtotal PRIZWICHAR1KZWIW
VKP_KAPRICAT: Condition type for retail price determination PRIKAVCHAR4T685KSCHL
VKP_ZWPRICAT: Condition subtotal PRIZWICHAR1KZWIW
STAFFELPRICAT: Scales are to be Transferred PRISTAFCHAR1PRISTAF
KONDITPRICAT: Additional condition data relating to price info. PRIPREICHAR1PRIPREI
KONDIT_1PRICAT: Condition type to be transferred to message PRIKSLCHAR4T685KSCHL
KONDIT_2PRICAT: Condition type to be transferred to message PRIKSLCHAR4T685KSCHL
KONDIT_3PRICAT: Condition type to be transferred to message PRIKSLCHAR4T685KSCHL
KONDIT_4PRICAT: Condition type to be transferred to message PRIKSLCHAR4T685KSCHL
STEUER_1PRICAT: Condition type for tax determination PRIKSTCHAR4T685KSCHL
STEUER_2PRICAT: Condition type for tax determination PRIKSTCHAR4T685KSCHL
STEUER_3PRICAT: Condition type for tax determination PRIKSTCHAR4T685KSCHL
MWST_KZPRICAT: Which condition type is interpreted as VAT PRIMWSTNUMC1NUMC1
BOM_PLANTPRICAT: Plant for BOM Determination PRIBOMWERKSCHAR4T001WWERKS
BOM_USAGEPRICAT: BOM Usage for Catalog Creation PRIBOMUSAGECHAR1T416STLANCSV

Key field Non-key field



How do I retrieve data from SAP table PRICAT_PRO using ABAP code

The following ABAP code Example will allow you to do a basic selection on PRICAT_PRO to SELECT all data from the table
DATA: WA_PRICAT_PRO TYPE PRICAT_PRO.

SELECT SINGLE *
FROM PRICAT_PRO
INTO CORRESPONDING FIELDS OF WA_PRICAT_PRO
WHERE...

How to access SAP table PRICAT_PRO

Within an ECC or HANA version of SAP you can also view further information about PRICAT_PRO and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).