SSCH SAP (Strata of Inventory Sampling) Table details

Dictionary Type: Table
Description: Strata of Inventory Sampling




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




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

SSCH is a standard SAP Table which is used to store Strata of Inventory Sampling data and is available within R/3 SAP systems depending on the version and release level.

The SSCH table consists of various fields, each holding specific information or linking keys about Strata of Inventory Sampling data available in SAP. These include SINUM (Inventory sampling number), SJAHR (Calendar year of the inventory sampling), NRSCH (Number of stratum in sampling area), WERTU (Lower value limit for sampling area).. 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: Can be enhanced (character-type or numeric)


SAP SSCH 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
SINUMInventory sampling number MBS_SINUMCHAR10ALPHAMBS_SINUMSIN
SJAHRCalendar year of the inventory sampling MBS_SJAHRNUMC4GJAHRGJAHRMJA
NRSCHNumber of stratum in sampling area MBS_NRSCHNUMC2NUM02
WERTULower value limit for sampling area MBS_WERTUCURR13(2) WERT13
WERTOUpper value limit for sampling area MBS_WERTOCURR13(2) WERT13
NGANFNo. of stratum elements at beginning MBS_NGANFNUMC5NUM05
BUANFInitial book value MBS_BUANFCURR13(2) WERT13
SMANFInitial standard deviation of book values MBS_SMANFFLTP16(16) FLTP
SMVORDefault value for standard deviation of book values MBS_SMVORFLTP16(16) FLTP
SMANWStandard deviation defined for mean-value estimation MBS_SMANWFLTP16(16) FLTP
SDANFStarting value for standard deviation of differences MBS_SDANFFLTP16(16) FLTP
SDVORDefault value for standard deviation of differences MBS_SDVORFLTP16(16) FLTP
SDANWStandard deviation defined for difference estimation MBS_SDANWFLTP16(16) FLTP
NGSYSCalculated sample size MBS_NGSYSNUMC5NUM05
NGANWDefined sample size MBS_NGANWNUMC5NUM05
NGAN2Updated sample size MBS_NGAN2NUMC5NUM05
NGZUFNumber of sample elements taken MBS_NGZUFNUMC5NUM05
NGAKTNumber of current stratum elements MBS_NGAKTNUMC5NUM05
BUAKTCurrent book value MBS_BUAKTCURR13(2) CURRV13
SMAKTCurrent standard deviation of mean-value estimation MBS_SMAKTFLTP16(16) FLTP
SDAKTCurrent standard deviation of difference estimation MBS_SDAKTFLTP16(16) FLTP
NGGEZNo of counted sampling elements MBS_NGGEZNUMC5NUM05
NGZZPNumber of posted sample elements at time of count MBS_NGZZPNUMC5NUM05
BUZZPBook value at time of count MBS_BUZZPCURR13(2) CURRV13
ISZZPActual value at time of count MBS_ISZZPCURR13(2) CURRV13
SMZZPStd. deviation of actual values for mean-value estimation MBS_SMZZPFLTP16(16) FLTP
SDZZPStandard deviation of difference estimate at time of count MBS_SDZZPFLTP16(16) FLTP
RELSFRelative statistical error MBS_RELSFDEC4(2) PRZ22
DESCHDelta of stratum changer MBS_DESCHDEC5MBS_DECV5

Key field Non-key field



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

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

SELECT SINGLE *
FROM SSCH
INTO CORRESPONDING FIELDS OF WA_SSCH
WHERE...

How to access SAP table SSCH

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