NDOCSTORNO SAP (IS-H*MED: Canceled Documents) Table details

Dictionary Type: Table
Description: IS-H*MED: Canceled Documents




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




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

NDOCSTORNO is a standard SAP Table which is used to store IS-H*MED: Canceled Documents data and is available within R/3 SAP systems depending on the version and release level.

The NDOCSTORNO table consists of various fields, each holding specific information or linking keys about IS-H*MED: Canceled Documents data available in SAP. These include DOKAR (Document Type), DOKNR (Document number), DOKVR (Document Version), DOKTL (Document Part).. 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 NDOCSTORNO 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
DOKARDocument Type DOKARCHAR3Assigned to domainDOKARCV2
DOKNRDocument number DOKNRCHAR25Assigned to domainALPHADOKNRCV1
DOKVRDocument Version DOKVRCHAR2DOKVRCV3
DOKTLDocument Part DOKTL_DCHAR3DOKTLCV4
LFDDOKSequence Number of Document LFDDOKINT410INT4_NOS
STORNONRSequence Number of Canceled Document N2DOC_STORNONRNUMC3
ORGFORMIS-H: Organization Form for Medical Record Management ORGFORMCHAR1ORGFORM
EINRIInstitution EINRICHAR4TN01ALPHAEINRIEIN
PATNRIS-H: Patient Number PATNRCHAR10NPATALPHAPATNRPAT
FALNRIS-H: Case Number FALNRCHAR10NFALALPHAFALNRFAL
FALARIS-H: Case Type FALLARTCHAR1FALLART
ORGFAIS-H: OU with Departmental Responsibility for Case NZUWFACHAR8NORGALPHAORGID
ORGPFOrganizational Unit Assigned to Case NZUWPFCHAR8NORGALPHAORGID
ORGLEIS-H: Organizational Unit that Performs the Service ERBOECHAR8NORGALPHAORGID
ORGLAIS-H: Nursing Organizational Unit Requesting the Service ANPOECHAR8NORGALPHAORGID
ANFIDIdentification of a Request (Number) ANFIDNUMC8N1ANFANFID
ORGDODocumenting Organizational Unit ORGDOCHAR8NORGALPHAORGIDOED
LEISTService in Service Catalog TARLSCHAR10NLEIALPHATARLSTAL
LNRLSIS-H: Service Sequence Number LNRLSCHAR10ALPHALNRLS
LFDBEWIS-H: Sequence Number of Movement LFDBEWNUMC5NBEWLFDBEW
MITARBEmployee Responsible N1MITARBCHAR10NGPAALPHARI_KUNNRVMA
STORNIS-H: Cancellation Indicator RI_STORNCHAR1XFELD
STUSRIS-H: Name of User who Canceled Data Record STORN_USERCHAR12USNAM
STDATDate of Cancellation STORN_DATDATS8RI_DATUM
DTIDDocument Category ID N2_DTIDCHAR10N2DTN2_DTIDDTYN2_DTID
DTVERSVersion Number N2_VERSNUMC3N2_VERS
BERSTObsolete: Authorization Level N2_BERSTNUMC1NUMC01
BEZEBReference Level of a Document BEZEBCHAR1BEZEB
MEDOKIndicator for a Medical Document MEDOKCHAR1XFELD
PCODESpecial Indicator (Presentation Code) N2_PCODECHAR4TN2FLAGCHAR4
DODATDocument Date N2_DODATDATS8RI_DATUM
DOTIMDocument Time N2_DOTIMTIMS6UHRZT
ERUSRIS-H: Name of Employee who Created Record RI_ERNAMCHAR12USNAM
ERDATIS-H: Date when Record Created RI_ERDATDATS8RI_DATUM
ERTIMIS-H: Time Record Created RI_ERTIMTIMS6UHRZT
UPUSRIS-H: Name of Person who Last Changed Data RI_UPNAMCHAR12USNAM
UPDATIS-H: Date of Last Change RI_UPDATDATS8RI_DATUM
UPTIMIS-H: Time of Last Change RI_UPTIMTIMS6UHRZT
LOEKZDeletion Flag/Indicator RI_LOEKZCHAR1XFELD
LOUSRUser Who Deleted Record RI_LOUSRCHAR12USNAM
LODATDate of Deletion RI_LODATDATS8RI_DATUM
LOTIMDeletion Time RI_LOTIMTIMS6UHRZT
STORELOCStorage Location / Archive N2_STORELOCCHAR1N2_STORELOC
STORELOC2Storage Location (Only Used Internally) N2_STORELOC2CHAR1N2_STORELOC2
ARCHIVIS-H: Organizational ID of the medical record archive ARCHIV_IDCHAR8NORGALPHAORGID
STANDORTIS-H: Building ID of building unit in the 'archive' OU ISH_ARCHSTCHAR8NBAUALPHABAUID
ROLLNOIS-H: Roll Number of a Micro Film ISH_ROLLNOCHAR10CHAR10
MICROFIS-H: Patient's medical record is microfilmed ISH_MICROFCHAR1XFELD
EXTNRIS-H: External Medical Record/Document ID ISH_DOCEXTCHAR15CHAR15
INFOMRIS-H: Informational Text for Medical Record ISH_INFOMRCHAR50TEXT50
TEMPMRIS-H: Flags a Medical Record as Temporary Medical Record ISH_TEMPMRCHAR1XFELD
ALBUMIS-H: Album Id for microfilm ISH_ALBUMCHAR10CHAR10
MFYEARIS-H: Year Until when Data Archived on Microfilm ISH_MFYEARNUMC4NUMC4
REDO_TYPERenewable Documents - Category of Renewable Document ISH_REDO_TYPECHAR10ISH_REDO_TYPE
REDO_KZIndicator for Renewable Document Management ISH_REDO_KZCHAR1XFELD
CASE_ARCHIVEDCase Archived N2DOC_CASE_ARCHIVEDCHAR1ISH_ON_OFF

Key field Non-key field



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

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

SELECT SINGLE *
FROM NDOCSTORNO
INTO CORRESPONDING FIELDS OF WA_NDOCSTORNO
WHERE...

How to access SAP table NDOCSTORNO

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