REGT_DATA_POINTS SAP (Data Points of Regression Calculation) Table details

Dictionary Type: Table
Description: Data Points of Regression Calculation




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




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

REGT_DATA_POINTS is a standard SAP Table which is used to store Data Points of Regression Calculation data and is available within R/3 SAP systems depending on the version and release level.

The REGT_DATA_POINTS table consists of various fields, each holding specific information or linking keys about Data Points of Regression Calculation data available in SAP. These include UUID (GUID in 'RAW' format), DATA_POINT_NO (Sequential number of data point), CMU (Random Error), X (Explanatory Variable).. 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 REGT_DATA_POINTS 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
UUIDGUID in 'RAW' format GUID_16RAW16SYSUUID
DATA_POINT_NO Sequential number of data point0
CMURandom Error TMF_CMUDEC27(7) TMF_COEFFICIENT
XExplanatory Variable TMF_XDEC30(10) TMF_DATA_POINTS
YExplained Variable TMF_YDEC30(10) TMF_DATA_POINTS
Y_LINEY Axis Points of St line TMF_YLINEDEC30(10) TMF_DATA_POINTS
PT_DATEField of type DATS DATSDATS8DATS
SCENARIO_IDScenario TV_SZENARICHAR10Assigned to domainT_SZENARIOSZES_VTVSZKO_SZENARIO

Key field Non-key field



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

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

SELECT SINGLE *
FROM REGT_DATA_POINTS
INTO CORRESPONDING FIELDS OF WA_REGT_DATA_POINTS
WHERE...

How to access SAP table REGT_DATA_POINTS

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