SOUDD1 SAP (SAPoffice: Part 1 of SOUDD) Structure details

Dictionary Type: Structure
Description: SAPoffice: Part 1 of SOUDD




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




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

SOUDD1 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: Part 1 of SOUDD" 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_SOUDD1 TYPE SOUDD1.

The SOUDD1 table consists of various fields, each holding specific information or linking keys about SAPoffice: Part 1 of SOUDD data available in SAP. These include CROYR (User that created object: year from the ID), CRONO (User that created object: number from the ID), CRONAM (Creator Name), CRDAT (Date created).. 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 SOUDD1 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
CROTPUser who created object: Object type from ID SO_CRO_TPCHAR3Assigned to domainSO_OBJ_TP
CROYRUser that created object: year from the ID SO_CRO_YRCHAR2SO_OBJ_YR
CRONOUser that created object: number from the ID SO_CRO_NOCHAR12Assigned to domainSO_OBJ_NO
CRONAMCreator Name SO_CRO_NAMCHAR12USERNAME
CRDATDate created SO_DAT_CRDATS8DATUM
CRTIMTime created SO_TIM_CRTIMS6UZEIT
CHOTPUser that changed the object: Object type from ID SO_CHO_TPCHAR3Assigned to domainSO_OBJ_TP
CHOYRUser that changed the object: year from the ID SO_CHO_YRCHAR2SO_OBJ_YR
CHONOUser that changed the object: number from the ID SO_CHO_NOCHAR12Assigned to domainSO_OBJ_NO
CHONAMChanged by SO_CHO_NAMCHAR12USERNAME
CHDATDate of Last Change SO_DAT_CHDATS8DATUM
CHTIMTime of Last Change SO_TIM_CHTIMS6UZEIT
SAPNAMSAP name of a SAPoffice user SO_SAP_NAMCHAR12USERNAME
USRNAMSAPoffice user name SO_USR_NAMCHAR12USERNAME
LOADATLast access to SAPoffice by user SO_DAT_LOADATS8DATUM
EXMAXMaximum number of express messages allowed per send SO_EXMAXRAW2SO_CNT2
RCMAXMaximum number of recipients allowed per send SO_RCMAXRAW2SO_CNT2
INMAXMaximum number of documents allowed in the inbox SO_INMAXRAW2SO_CNT2
USRAUMaintain user: only the administrator is authorized SO_USRAUCHAR1SO_FLAG
CRGDLAuthorization to create shared distribution lists SO_CRGDLCHAR1SO_I_FLAG
CRFCLAuthorization to create client folders SO_CRFCLCHAR1SO_I_FLAG
CRFCCAuthorization to create company-code-wide folders SO_CRFCCCHAR1SO_I_FLAG
CRFPLAuthorization to create plant-wide folders SO_CRFPLCHAR1SO_I_FLAG
CRFDPAuthorization to create department-wide folders SO_CRFDPCHAR1SO_I_FLAG
CRFADAuthorization to create cost-center-wide folders SO_CRFADCHAR1SO_I_FLAG
CRFGRAuthorization to create group folders SO_CRFGRCHAR1SO_I_FLAG
HOMAXMax. no. of documents a user can protect from archiving SO_HOMAXRAW1SO_CNT1
HOCNTNumber of documents which should not be archived SO_HOCNTRAW1SO_CNT1
GLMAXMaximum size of the access lists of a user SO_GLMAXRAW1SO_CNT1
GFMAXMax. number of group folders which a user can create SO_GFMAXRAW1SO_CNT1
GFCNTNumber of group folders created by a user SO_GFCNTRAW1SO_CNT1
AUTEXTAuthorization to send externally SO_AUT_EXTCHAR1SO_I_FLAG
NOTTPDefault setting of document class SO_NOT_TPCHAR3Assigned to domainSO_OBJ_TP
CALENDay on which the week begins SO_CALENCHAR1SO_CALEN
OUTFLDocuments are copied to the outbox when sent SO_OUTFLCHAR1SO_FLAG
SQWINSwitch confirmation prompt on or off when deleting SO_SQWINCHAR1SO_FLAG
SYUSRYour user view is set when you start SAPoffice SO_SYUSRCHAR1SO_FLAG
SYUSRINBInbox filter (unviewed documents only) SO_SYUSRINCHAR1SO_TEXT001
SYUSROUTUser view of outbox SO_SYUSROUCHAR1SO_TEXT001
ADREXTThe user has an active external address. SO_ADR_EXTCHAR1SO_FLAG
PRWYRObject: Year from ID SO_OBJ_YRCHAR2SO_OBJ_YR
PRWNOObject: Number from ID SO_OBJ_NOCHAR12Assigned to domainSO_OBJ_NO
PUWYRObject: Year from ID SO_OBJ_YRCHAR2SO_OBJ_YR
PUWNOObject: Number from ID SO_OBJ_NOCHAR12Assigned to domainSO_OBJ_NO
INBYRObject: Year from ID SO_OBJ_YRCHAR2SO_OBJ_YR
INBNOObject: Number from ID SO_OBJ_NOCHAR12Assigned to domainSO_OBJ_NO
OUTYRObject: Year from ID SO_OBJ_YRCHAR2SO_OBJ_YR
OUTNOObject: Number from ID SO_OBJ_NOCHAR12Assigned to domainSO_OBJ_NO
WSTYRObject: Year from ID SO_OBJ_YRCHAR2SO_OBJ_YR
WSTNOObject: Number from ID SO_OBJ_NOCHAR12Assigned to domainSO_OBJ_NO
PFRYRObject: Year from ID SO_OBJ_YRCHAR2SO_OBJ_YR
PFRNOObject: Number from ID SO_OBJ_NOCHAR12Assigned to domainSO_OBJ_NO
PDLYRObject: Year from ID SO_OBJ_YRCHAR2SO_OBJ_YR
PDLNOObject: Number from ID SO_OBJ_NOCHAR12Assigned to domainSO_OBJ_NO

Key field Non-key field



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

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

How to access SAP table SOUDD1

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