DEMO_CR_RESERVTN SAP (Rental Car Reservations) Table details

Dictionary Type: Table
Description: Rental Car Reservations




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




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

DEMO_CR_RESERVTN is a standard SAP Table which is used to store Rental Car Reservations data and is available within R/3 SAP systems depending on the version and release level.

The DEMO_CR_RESERVTN table consists of various fields, each holding specific information or linking keys about Rental Car Reservations data available in SAP. These include RESERVATION_ID (Reservation Number), CUSTOMER_ID (Customer ID), LICENSE_PLATE (License Plate), DATE_FROM (Start Date).. 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 DEMO_CR_RESERVTN 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
CLIENTClient MANDTCLNT3Assigned to domainMANDT
RESERVATION_IDReservation Number DEMO_CR_RESERVATION_IDNUMC8
CUSTOMER_IDCustomer ID DEMO_CR_CUSTOMER_IDNUMC8DEMO_CR_CUSTOMRS
LICENSE_PLATELicense Plate DEMO_CR_LICENSE_PLATECHAR10DEMO_CR_CARS
DATE_FROMStart Date DEMO_CR_DATE_FROMDATS8
DATE_TOEnd Date DEMO_CR_DATE_TODATS8
PRICECar Rental Price DEMO_CR_PRICEDEC10(2)

Key field Non-key field



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

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

SELECT SINGLE *
FROM DEMO_CR_RESERVTN
INTO CORRESPONDING FIELDS OF WA_DEMO_CR_RESERVTN
WHERE...

How to access SAP table DEMO_CR_RESERVTN

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