CRMT_FS_RE_ADD_S SAP (Real Estate: Additional Fields) Structure details

Dictionary Type: Structure
Description: Real Estate: Additional Fields




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




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

CRMT_FS_RE_ADD_S is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Real Estate: Additional Fields" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_CRMT_FS_RE_ADD_S TYPE CRMT_FS_RE_ADD_S.

The CRMT_FS_RE_ADD_S table consists of various fields, each holding specific information or linking keys about Real Estate: Additional Fields data available in SAP. These include RE_MARKET_VALUE (Real Estate: Market Value), RE_MARKET_VALUE_CURR (Real Estate: Market Value - Currency), RE_NOMINAL_VALUE (Real Estate: Nominal Value), RE_NOMINAL_VALUE_CURR (Real Estate: Nominal Value - Currency).. 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:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP CRMT_FS_RE_ADD_S structure 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
RE_MARKET_VALUEReal Estate: Market Value CRMT_FS_RE_MARKET_VALCURR23(2) CRM_FS_CAG_AMOUNT
RE_MARKET_VALUE_CURRReal Estate: Market Value - Currency CRMT_FS_RE_MARKET_VAL_CURRCUKY5Assigned to domainWAERS
RE_NOMINAL_VALUEReal Estate: Nominal Value CRMT_FS_RE_NOMINAL_VALCURR23(2) CRM_FS_CAG_AMOUNT
RE_NOMINAL_VALUE_CURRReal Estate: Nominal Value - Currency CRMT_FS_RE_NOMINAL_VAL_CURRCUKY5Assigned to domainWAERS
RE_SAFE_DISCOUNT_PCTReal Estate: Safety Discount in Percent CRMT_FS_RE_SAFE_DISCOUNT_PCTDEC10(6) CRM_FS_CAG_PCT
RE_SAFE_DISCOUNT_AMTReal Estate: Safety Discount (Amount) CRMT_FS_RE_SAFE_DISCOUNT_AMTCURR23(2) CRM_FS_CAG_AMOUNT
RE_SAFE_DISCOUNT_CURRReal Estate: Safety Discount (Amount) - Currency CRMT_FS_RE_SAFE_DISCOUNT_CURRCUKY5Assigned to domainWAERS
RE_LENDING_VALUEReal Estate: Lending Value CRMT_FS_RE_LENDING_VALUECURR23(2) CRM_FS_CAG_AMOUNT
RE_LENDING_VALUE_CURRReal Estate: Lending Value - Currency CRMT_FS_RE_LENDING_VALUE_CURRCUKY5Assigned to domainWAERS
RE_LENDING_RATEReal Estate: Lending Rate CRMT_FS_RE_LENDING_RATEDEC10(6) CRM_FS_CAG_PCT
RE_LENDING_LIMITReal Estate: Lending Limit CRMT_FS_RE_LENDING_LIMITCURR23(2) CRM_FS_CAG_AMOUNT
RE_LENDING_LIMIT_CURRReal Estate: Lending Limit - Currency CRMT_FS_RE_LENDING_LIMIT_CURRCUKY5Assigned to domainWAERS
RE_UTILIZATION_IDReal Estate: Utilization ID CMRT_FS_RE_UTILIZATION_IDCHAR6CRM_FS_CAG_CUST_KEY
RE_UTILIZATIONReal Estate: Usage CRMT_FS_RE_UTILIZATIONCHAR30CRM_FS_CAG_CUST_DESCR
RE_PROP_SIZEReal Estate: Property Size CRMT_FS_RE_PROP_SIZEQUAN13(3) CRM_FS_RE_SIZE
RE_PROP_SIZE_UOMReal Estate: Property Size - UoM CRMT_FS_RE_PROP_SIZE_UOMUNIT3Assigned to domainCUNITMEINS
RE_RES_SPACEReal Estate: Living Area CRMT_FS_RE_RES_SPACEQUAN13(3) CRM_FS_RE_SIZE
RE_RES_SPACE_UOMReal Estate: Living Area - UoM CRMT_FS_RE_RES_SPACE_UOMUNIT3Assigned to domainCUNITMEINS
RE_COM_SPACEReal Estate: Commercial Space CRMT_FS_RE_COM_SPACEQUAN13(3) CRM_FS_RE_SIZE
RE_COM_SPACE_UOMReal Estate: Commercial Space - UoM CRMT_FS_RE_COM_SPACE_UOMUNIT3Assigned to domainCUNITMEINS
RE_CONSTR_YEARReal Estate: Construction Year CRMT_FS_RE_CONSTR_YEARNUMC4
RE_MACRO_LOCATION_IDReal Estate: Macro Location ID CRMT_FS_RE_MACRO_LOC_IDCHAR6CRM_FS_CAG_CUST_KEY
RE_MACRO_LOCATIONReal Estate: Macro Location CRMT_FS_RE_MACRO_LOCCHAR30CRM_FS_CAG_CUST_DESCR
RE_MICRO_LOCATION_IDReal Estate: Micro Location ID CRMT_FS_RE_MICRO_LOC_IDCHAR6CRM_FS_CAG_CUST_KEY
RE_MICRO_LOCATIONReal Estate: Micro Location CRMT_FS_RE_MICRO_LOCCHAR30CRM_FS_CAG_CUST_DESCR
RE_TRANSPORT_CON_IDReal Estate: Transport Connection ID CRMT_FS_RE_TRANS_CON_IDCHAR6CRM_FS_CAG_CUST_KEY
RE_TRANSPORT_CONReal Estate: Transport Connection CRMT_FS_RE_TRANSPORT_CONCHAR30CRM_FS_CAG_CUST_DESCR
RE_STREETStreet AD_STREETCHAR60TEXT60CLSTRTNAME
RE_HOUSE_NOHouse Number AD_HSNM1CHAR10TEXT10
RE_POST_CODECity postal code AD_PSTCD1CHAR10CHAR10
RE_CITYCity AD_CITY1CHAR40TEXT40CLCITYNAME
RE_COUNTRYCountry Key LAND1CHAR3Assigned to domainLAND1LND
RE_REGIONSTATE (State, Province, County) REGIOCHAR3Assigned to domainREGIO

Key field Non-key field



How do I retrieve data from SAP structure CRMT_FS_RE_ADD_S using ABAP code?

As CRMT_FS_RE_ADD_S is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on CRMT_FS_RE_ADD_S as there is no data to select.

How to access SAP table CRMT_FS_RE_ADD_S

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