SAP N2DO IS-H*MED: Table of doc. category to org. unit assignments Table data and field list

N2DO is a standard SAP Table which is used to store IS-H*MED: Table of doc. category to org. unit assignments data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The N2DO table consists of various fields, each holding specific information or linking keys about IS-H*MED: Table of doc. category to org. unit assignments data available in SAP. These include EINRI (Institution), ORGID (Identification Key of Organizational Unit), DTID (Document Category ID), DTVERS (Version Number)... 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. .

N2DO 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)


SAP N2DO 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 N2DO 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 MANDTCLNT3T000MANDT
EINRIInstitution EINRICHAR4TN01ALPHAEINRIEIN
ORGIDIdentification Key of Organizational Unit ORGIDCHAR8NORGALPHAORGIDOGE
DTIDDocument Category ID N2_DTIDCHAR10N2DTN2_DTIDDTYN2_DTID
DTVERSVersion Number N2_VERSNUMC3N2_VERS
DOZUODocument Profile ID N2_DTPROIDCHAR1N2_DTPROID
BEGDTStart Date BEGDADATS8DATUM
ENDDTEnd Date ENDDADATS8DATUM
ZUOOPTIONAssignment Type for Use in Document Profile N2_OPZUTYPCHAR3N2_OPZUTYP
ZUOOPTION2Assignment Type for Use in Document Profile N2_OPZUTYPCHAR3N2_OPZUTYP
ZUOOPTION3Assignment Type for Use in Document Profile N2_OPZUTYPCHAR3N2_OPZUTYP
DTINTERNInternal Use of Document Category N2_DTIDINTCHAR1N2_DTIDINT
DOPFLIDocument Category Is Required Entry N2_DTOBLCHAR1XFELD
DOKOEIdentification Key of Organizational Unit ORGIDCHAR8Assigned to domainALPHAORGIDOGE
ERUSRIS-H: Name of Employee who Created Record RI_ERNAMCHAR12USNAM
ERDATIS-H: Date when Record Created RI_ERDATDATS8RI_DATUM
UPUSRIS-H: Name of Person who Last Changed Data RI_UPNAMCHAR12USNAM
UPDATIS-H: Date of Last Change RI_UPDATDATS8RI_DATUM
PRIOSequence of Doc. Category in Assignment (Profile) N2_PRIONUMC2NUM02
POPUPDialog Box Indic. for Querying Addit. Admin.Data N2_POPDOKCHAR1XFELD
OPBUCHIndicator for Inclusion in OR Register N2OPBUCHKZCHAR1XFELD
BEW_ERFMovement Required N2BEWERFNUMC1N2BEWERF

Key field Non-key field



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

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

SELECT SINGLE *
FROM N2DO
INTO CORRESPONDING FIELDS OF WA_N2DO
WHERE...

How to access SAP table N2DO

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

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