SMOAPPOINT SAP (Appointment Set) Table details

Dictionary Type: Table
Description: Appointment Set




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




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

SMOAPPOINT is a standard SAP Table which is used to store Appointment Set data and is available within R/3 SAP systems depending on the version and release level.

The SMOAPPOINT table consists of various fields, each holding specific information or linking keys about Appointment Set data available in SAP. These include SFAAPPOINT (Appointment Guid), SFAGUID (Global Unique Identifier), SOURCE (Source of an object), REF_GUID (Global Unique Identifier).. 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 SMOAPPOINT 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
SFAAPPOINTAppointment Guid CDBT_SFAAPPOINTCHAR32CDB_GUID
SFAGUIDGlobal Unique Identifier SMO_GUIDCHAR32SMO_GUID
SOURCESource of an object SMO_SOURCECHAR3SMO_SOURCE
REF_GUIDGlobal Unique Identifier SMO_GUIDCHAR32SMO_GUID
REF_SOURCESource of an object SMO_SOURCECHAR3SMO_SOURCE
REF_KINDObject Type CRMT_OBJECT_KINDCHAR1CRM_OBJECTKIND
APPT_TYPETechnical Name for Date Type CRMT_APPTYPECHAR12Assigned to domainSC_APPTTYP
DATE_FROMDate CDBT_DATEDATS8CDB_DATE
TIME_FROMTime CDBT_TIMETIMS6CDB_TIME
TIMEZONE_FROMTime Zone for a Start Time CRMT_TIMEZONE_FROMCHAR6Assigned to domainTZNZONE
DATE_TODate CDBT_DATEDATS8CDB_DATE
TIME_TOTime CDBT_TIMETIMS6CDB_TIME
TIMEZONE_TOTime Zone for End Time CRMT_TIMEZONE_TOCHAR6Assigned to domainTZNZONE
RULE_IDInternal Identification of Rules of Periodic Appointments SC_RULEIDCHAR25TEXT25
SHOW_LOCALDisplay appointment in the local time of the appointment SC_SHOWLOCCHAR1FLAG
DOMINANTAll-Day Event SC_DOMINANCHAR1FLAG
RULE_GUIDGlobal Unique Identifier SMO_GUIDCHAR32SMO_GUID
RULE_NAMESemantic Name of a Date Rule CRMT_DATES_RULE_NAMECHAR12TIMENAMECRM_DATES_RULE
DURATIONNumerical Value of Duration TIMEDURADEC13TIMEDURA
TIME_UNITDefault Value for Time Unit TIMEUNITDUCHAR12Assigned to domainTIMEUNITNA
IS_DURATIONIndicates a Date as Duration in Date Definition CRMT_IS_DURATIONCHAR1CRM_BOOLEAN
TR_USERTransaction User SMO_TR_USRCHAR32SMO_TR_USR
TR_IDTransaction Identifier SMO_TR_IDCHAR32SMO_TR_ID
TR_STATUSStatus of Transaction SMO_TR_STSCHAR4SMO_TR_STS
TIMESTAMPUTC Time Stamp in Short Form (YYYYMMDDhhmmss) TIMESTAMPDEC15TZNTSTMPS
DELETEDMobile Sales Deleted SMO_DELETDCHAR1SMO_DELETD
TR_ROOTIDIdentifier of BDoc Root object SMO_RTGUIDCHAR32SMO_GUID

Key field Non-key field



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

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

SELECT SINGLE *
FROM SMOAPPOINT
INTO CORRESPONDING FIELDS OF WA_SMOAPPOINT
WHERE...

How to access SAP table SMOAPPOINT

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