SOS_OBJLST SAP (SAPoffice: List for WP User) Structure details

Dictionary Type: Structure
Description: SAPoffice: List for WP User




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




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

SOS_OBJLST 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 "SAPoffice: List for WP User" 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_SOS_OBJLST TYPE SOS_OBJLST.

The SOS_OBJLST table consists of various fields, each holding specific information or linking keys about SAPoffice: List for WP User data available in SAP. These include OBJTP (Object Type), OBJTP_ID (Code for document class), OBJNAM (Object name), OBJDES (Title of entry).. 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: Not classified


SAP SOS_OBJLST 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
FOLRGFolder: Area (private, shared folders) SO_FOL_RGCHAR1SO_FOL_RG
OBJTPObject Type SO_QI_OBTPCHAR36SO_QICON
OBJTP_IDCode for document class SO_OBJ_TPCHAR3Assigned to domainSO_OBJ_TP
OBJNAMObject name SO_DOC_NAMCHAR12SO_OBJ_NAM
OBJDESTitle of entry SO_DOC_DESCHAR50SO_OBJ_DES
INDATDate document was received SO_DAT_RCDATS8DATUM
INTIMTime object was received SO_TIM_RCTIMS6UZEIT
CRDATDate created SO_DAT_CRDATS8DATUM
CRTIMTime created SO_TIM_CRTIMS6UZEIT
CHDATDate of Last Change SO_DAT_CHDATS8DATUM
CHTIMTime of Last Change SO_TIM_CHTIMS6UZEIT
RECPRPriority SO_RECPRICHAR20SO_TEXT020
FORADRUser who Forwarded the Document SO_FORADRCHAR35SO_ADRNAM
RECADRName of recipient or number of recipients SO_RECADRCHAR35SO_ADRNAM
CRADRAddress name of author SO_CRADRCHAR35SO_ADRNAM
OBJACCompletion status SO_QI_OACCHAR36SO_QICON
OBJAC_IDThe recipient must take action SO_OBJ_ACCHAR1SO_FLAG
ATTACHAttachments SO_QI_ATTCHAR36SO_QICON
OBJSNDSent Object SO_QI_SNDCHAR36SO_QICON
OBJCHNChangeability of object SIN_OBJCHNCHAR20SIN_OBJCHN
OBJCHN_IDDocument cannot be changed SO_OBJ_CPCHAR1SO_FLAG
OBJROObject with read-only access SIN_OBJROCHAR1SIN_FLAG
OBJRDRead Status of Object (Read or Unread) SO_QI_RDCHAR36SO_QICON
OBJRD_IDObject has already been viewed SO_OBJ_RDCHAR1SO_FLAG
RESUBResubmission SO_QI_RESCHAR36SO_QICON
SNDEXSent as express SO_QI_EXCHAR36SO_QICON
SNDCPSent as copy SO_QI_CPCHAR36SO_QICON
SNDBCSent as blind copy SO_QI_BCCHAR36SO_QICON
OBJRRReply required SO_QI_RRCHAR36SO_QICON
PRIFBNo printing SO_QI_PFBCHAR36SO_QICON
FORFBNo forwarding SO_QI_FFBCHAR36SO_QICON
OBJLALanguage in which object was created SO_DOC_LALANG1T002ISOLASPRAS
RECCNTNumber of Recipients of Object SO_RECNUMNUMC5SO_NUM5
RRDCNTNumber of Recipients Who Have Read Object SO_RRDNUMNUMC5SO_NUM5
RRRCNTNumber of recipients who must reply to the object SO_RRRNUMNUMC5SO_NUM5
RRPCNTNumber of recipients who have sent required reply SO_RRPNUMNUMC5SO_NUM5
RARCNTNumber of recipients who must take action SO_RARNUMNUMC5SO_NUM5
RAPCNTNumber of recipients processing the object SO_RAPNUMNUMC5SO_NUM5
RATCNTNumber of recipients who have taken action SO_RATNUMNUMC5SO_NUM5
RCPCNTNumber of recipients of a copy SO_RCPNUMNUMC5SO_NUM5
RBCCNTNumber of recipients of a blind copy SO_RBCNUMNUMC5SO_NUM5
SDDATDate On Which Object Was Sent SO_DAT_SDDATS8DATUM
SDTIMTime at Which The Object Was Sent SO_TIM_SDTIMS6UZEIT
RBDATDate On Which The Object Was Resubmitted SO_DAT_RBDATS8DATUM
RBTIMResubmission: time SO_TIM_RBTIMS6UZEIT
FOLNAMFolder name SO_FOL_NAMCHAR12SO_OBJ_NAM
FOLDESFolder title SO_FOL_DESCHAR50SO_OBJ_DES
OBJRSReply was sent SO_QI_RSCHAR36SO_QICON
DLDATDocument Expiration Date SO_DAT_DLDATS8DATUM
PROCESSExecutable SO_QI_PROCCHAR36SO_QICON
OBJLENSize of Document Content SO_OBJ_LENCHAR12SO_OBJ_LEN
FOLRGTPFolder area SO_FOLRGTPCHAR20SO_TEXT020
STATSOMessage Attributes SO_QI_SOCHAR36SO_QICON
CRADR_XName in address management SO_ADRNAMCHAR35SO_STRI035
FORADR_XName in address management SO_ADRNAMCHAR35SO_STRI035
OWNNAMName of document owner SO_OWN_NAMCHAR12USERNAME
SNDNAMSender: Name SO_SND_NAMCHAR12USERNAME
FORNAMName of forwarder SO_FOR_NAMCHAR12USERNAME
SNDSTSend Status SO_QI_SDSTCHAR36SO_QICON
CLDEPClass values SIN_CLDEPCHAR255SIN_CLDEP
INFOBackground color for lines SIN_INFOCHAR4
SORTORDERSAPoffice: text field length 15 SO_TEXT015CHAR15SO_TEXT015
DRAGDROPID 0

Key field Non-key field



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

As SOS_OBJLST 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 SOS_OBJLST as there is no data to select.

How to access SAP table SOS_OBJLST

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