PSCHD SAP (PSC document header) Table details

Dictionary Type: Table
Description: PSC document header




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




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

PSCHD is a standard SAP Table which is used to store PSC document header data and is available within R/3 SAP systems depending on the version and release level.

The PSCHD table consists of various fields, each holding specific information or linking keys about PSC document header data available in SAP. These include DOCNR (PSC document number), GJAHR (Fiscal Year), REV_DOCNR (PSC reversal document number), BUKRS (Company Code).. 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: Not classified


SAP PSCHD 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 MANDTCLNT3T000MANDT
DOCNRPSC document number PSC_DOCNRCHAR10ALPHAPSC_DOCNR
GJAHRFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
REV_DOCNRPSC reversal document number PSC_DOCNR_REVCHAR10ALPHAPSC_DOCNR
BUKRSCompany Code BUKRSCHAR4T001BUKRSBUKC_T001
PSC_NAMEPSC Name PSC_NAMECHAR10T8PSCMSTRPSC_NAME
PSC_PRODUCTPSC Product PSC_PRODUCTCHAR10T8PSCPRODPSC_PRODUCT
VNAMEJoint Venture JV_NAMECHAR6Assigned to domainALPHAJV_NAMEJVV
EQGRPEquity group JV_EGROUPCHAR3Assigned to domainALPHAJV_EGROUPGJE
PSC_GROUPPSC Group PSC_GROUPCHAR5T8PSCGRPPSC_GROUP
POPERPosting period POPERNUMC3POPERPOPR
PSC_VOLUMEPSC production volume PSC_VOLUMEQUAN15(3) MENGV8
UOMPSC Unit of measure PSC_UOMUNIT3Assigned to domainCUNITMEINS
CONV_UOMConversion UoM PSC_CONV_UOMUNIT3Assigned to domainCUNITMEINS
CPUDTDay On Which Accounting Document Was Entered CPUDTDATS8DATUM
CPUTMTime of Entry CPUTMTIMS6UZEIT
USNAMUser name USNAMCHAR12Assigned to domainXUBNAMEUSR

Key field Non-key field



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

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

SELECT SINGLE *
FROM PSCHD
INTO CORRESPONDING FIELDS OF WA_PSCHD
WHERE...

How to access SAP table PSCHD

Within an ECC or HANA version of SAP you can also view further information about PSCHD 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!