SAP TDCOTYP_ACT Assignment Business Operation/Role ---> Correspondence Type Table data and field list

TDCOTYP_ACT is a standard SAP Table which is used to store Assignment Business Operation/Role ---> Correspondence Type data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The TDCOTYP_ACT table consists of various fields, each holding specific information or linking keys about Assignment Business Operation/Role ---> Correspondence Type data available in SAP. These include CORR_ACTIVITY (Correspondence activity), LFDNR (Sequence no.), ROLETYP_ORIG (Role of Original Addressee), ROLE_ORIG (CML Correspondence Role Type of Original Recipient)... 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. .

TDCOTYP_ACT table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP TDCOTYP_ACT table fields - Full list of fields found in SAP data dictionary

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the TDCOTYP_ACT table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3Assigned to domainMANDT
CORR_ACTIVITYCorrespondence activity KORRVORFNUMC4TZKVKORRVORF
LFDNRSequence no. LFDNUMC3NUMC3
ROLETYP_ORIGRole of Original Addressee TB_BP_ROLE_ORIGCHAR6TB003BU_ROLE
ROLE_ORIGCML Correspondence Role Type of Original Recipient TB_ROLE_CORR_ORIGCHAR4TDPZ6T_ROLE_CORR
ROLETYP_RECVRBP Role BU_PARTNERROLECHAR6TB003BU_ROLEBUPA_ROLE
ROLE_RECVRCML Correspondence Role Type of Recipient TB_ROLE_CORRCHAR4TDPZ6T_ROLE_CORR
COTYPCorrespondence Type COTYP_KKCHAR4TFK070ACOTYP_KKCOTYPCOTYP_KK
SAKTPASIndicator: Asset/Liability Transaction VVSAKTPASCHAR1VVSAKTPAS
PRODUCT_CATProduct Category SANLFNUMC3TZAFVVSANLF
ROLETYP_EMPRole Category of Administrator TB_BP_ROLE_EMPLCHAR6TB003ABU_ROLECAT
AUSWAHLEntry Selected TB_CORR_SELECTEDCHAR1KENZX
SENDCONTROLDispatch Control SENDCONTROLCHAR4ESENDCONTROLESENDCONTROL
.INCLU--AP 0
PRODEXTExternal Product Name TB_PR_PRODEXTCHAR10T_PR_PRODEXTH_VD_PR_PRODEXT

Key field Non-key field



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

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

SELECT SINGLE *
FROM TDCOTYP_ACT
INTO CORRESPONDING FIELDS OF WA_TDCOTYP_ACT
WHERE...

How to access SAP table TDCOTYP_ACT

Within an ECC or HANA version of SAP you can also view further information about TDCOTYP_ACT and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).