PARITEM SAP (Items of a ProductAvailabilityRequirement) Table details

Dictionary Type: Table
Description: Items of a ProductAvailabilityRequirement




ABAP Code to SELECT data from PARITEM
Related tables to PARITEM
Access table PARITEM




Table field list including key, data, relationships and ABAP select examples

PARITEM is a standard SAP Table which is used to store Items of a ProductAvailabilityRequirement data and is available within R/3 SAP systems depending on the version and release level.

The PARITEM table consists of various fields, each holding specific information or linking keys about Items of a ProductAvailabilityRequirement data available in SAP. These include TRGUID (ATP: Unique ID for relevant transaction in APO server), POSGUID (ATP: Encryption of DELNR and DELPS), DELKZ (MRP element), DELNR (MRP element number).. 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. .

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


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

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3Assigned to domainMANDT
TRGUIDATP: Unique ID for relevant transaction in APO server APOTRGUIDCHAR22SYSUUID_22
POSGUIDATP: Encryption of DELNR and DELPS POSGUIDCHAR22SYSUUID_22
DELKZMRP element DELKZCHAR2DELKZ
DELNRMRP element number DELNRCHAR10DELNR
DELPSMRP element item DELPSNUMC6DELPS
PAR_IDProductAvailabilityRequirement ID for Nummber Range Object PAR_IDCHAR20PAR_ID
ITEM_ID_REQProductAvailabilityRequirementItemID PAR_ITEM_IDCHAR10CHAR10
ITEM_ID_CNFProductAvailabilityRequirementItemID PAR_ITEM_IDCHAR10CHAR10
MATNRMaterial Number MATNRCHAR18Assigned to domainMATN1MATNRMATS_MAT1
WERKSPlant WERKS_DCHAR4Assigned to domainWERKSWRKH_T001W_C
ITEM_STATETechnical state of PAR object PAR_STATECHAR1PAR_STATE
CREATED_BYUser Name SYUNAMECHAR12SYCHAR12
CREATED_ONATP: Time stamp for creation of data set CRTTMSDEC15TZNTSTMPS
CHANGED_BYUser Name SYUNAMECHAR12SYCHAR12
CHANGED_ONATP: Time stamp for creation of data set CRTTMSDEC15TZNTSTMPS

Key field Non-key field



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

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

SELECT SINGLE *
FROM PARITEM
INTO CORRESPONDING FIELDS OF WA_PARITEM
WHERE...

How to access SAP table PARITEM

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

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


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!