SAP PRIT_DOCUMENT Pricing Document Table data and field list

PRIT_DOCUMENT is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Pricing Document" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_PRIT_DOCUMENT TYPE PRIT_DOCUMENT.

The PRIT_DOCUMENT table consists of various fields, each holding specific information or linking keys about Pricing Document data available in SAP. These include DOCUMENT_ID_EXT (External Document Number), PROCEDUR (Pricing Procedure), USAG (Usage for Condition Technique), ONLY_SPEC_USAGE (Only Access Conditions for This Use)... 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. .

PRIT_DOCUMENT structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP PRIT_DOCUMENT structure 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 PRIT_DOCUMENT 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
DOCUMENT_IDPricing Document GUID PRCT_PRIDOC_GUIDRAW16SYSUUID
DOCUMENT_ID_EXTExternal Document Number PRCT_EXT_DOC_GUIDRAW16SYSUUID
PROCEDURPricing Procedure PRCT_PRIC_PROCCHAR6Assigned to domainPRC_PRIC_PROC
USAGUsage for Condition Technique /SAPCND/USAGECHAR2Assigned to domain/SAPCND/USAGE/SAPCND/KVW
ONLY_SPEC_USAGEOnly Access Conditions for This Use PRCT_ONLY_SPEC_USAGECHAR1XFELD
APPLICATIONApplication PRCT_APPLICATIONCHAR3Assigned to domain/SAPCND/APPLICATION/SAPCND/KAP
FIELD_VARCONDTarget Field Name for Variant Condition Key PRCT_FIELD_VARCONDCHAR30Assigned to domainFDNAME
AUTHORITY_DISPLAYLevel for Authorization Checks PRCT_AUTHORITY_LEVELNUMC4PRC_AUTHORITY_LEVEL
AUTHORITY_EDITLevel for Authorization Checks PRCT_AUTHORITY_LEVELNUMC4PRC_AUTHORITY_LEVEL
DOCUMENT_CURRENCY_UNITDocument Currency of Price Determination PRCT_DOC_CURRCUKY5Assigned to domainWAERS
LOCAL_CURRENCY_UNITLocal Currency PRCT_LOC_CURRCUKY5Assigned to domainWAERS
BUSINESS_OBJECT_TYPEObject Type for Expiring Currencies (Copy) PRCT_OBJECT_CURROCHAR20CHAR20
EXPIRING_CHECK_DATETest Date for Expiring Currencies PRCT_EXPIRING_CHECK_DATEDATS8PRC_DATE
DATE_FORMATText (10 Characters) TEXT10CHAR10TEXT10
EDIT_MODEPricing Document Can Be Edited PRCT_EDIT_MODECHAR1XFELD
PARTIAL_PROCESSINGProcess Partial Document PRCT_PARTIAL_PROCESSINGCHAR1XFELD
KEEP_ZERO_PRICESDo Not Inactivate Zero Prices PRCT_KEEP_ZERO_PRICESCHAR1XFELD
GROUP_CONDITION_PROCESSINGActivate: Group Processing in IPC PRCT_GROUP_PROCESSINGCHAR1XFELD
PERFORM_TRACECheckbox XFELDCHAR1XFELD
SIMULATIONCondition Finding Simulation /SAPCND/DET_SIMULATIONCHAR1XFELD
ATTRIBUTES 0

Key field Non-key field



How do I retrieve data from SAP structure PRIT_DOCUMENT using ABAP code?

As PRIT_DOCUMENT is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on PRIT_DOCUMENT as there is no data to select.

How to access SAP table PRIT_DOCUMENT

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

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