NPNT SAP (Patient Master Data) Table details

Dictionary Type: Table
Description: Patient Master Data




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




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

NPNT is a standard SAP Table which is used to store Patient Master Data data and is available within R/3 SAP systems depending on the version and release level.

The NPNT table consists of various fields, each holding specific information or linking keys about Patient Master Data data available in SAP. These include PARTNER (Patient Number), INSTN (Institution), PNT_GA (IS-H: Geographical Area), STD_LN (IS-H: Standardized Last Name).. 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 NPNT 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
PARTNERPatient Number ISH_PNT_IDCHAR10BUT000ALPHABU_PARTNER
INSTNInstitution EINRICHAR4TN01ALPHAEINRIEIN
PNT_GAIS-H: Geographical Area EINZGEBIETCHAR9EINZGEBIET
STD_LNIS-H: Standardized Last Name NNAMES_PATCHAR30CHAR30
STD_FNStandardized First Name VNAMES_PATCHAR30CHAR30
STD_BNIS-H: Standardized Birthname GBNAMS_PATCHAR30CHAR30
BIRTHCTRYIS-H: Country of Birth GLANDCHAR3Assigned to domainLAND1
PNT_CDCheck Digit for Patient PZIFF_PATCHAR1PZIFFPZP
DTH_INDIS-H: Patient Is Deceased PAT_TODCHAR1XFELD
DTM_FRMTime of Death From TODZVTIMS6UHRZT
DDAT_TODate of Death To TODDBDATS8RI_DATUM
DTM_TOIS-H: Time of Death To TODZBTIMS6UHRZT
DTH_CAUIS-H: Cause of Death TODURCHAR3TN18ATODUR
DTH_LOCLocation of Death ISH_DTH_LOCCHAR2Assigned to domainISH_LOC
PAT_OCCUIS-H: Patient Occupation BERUFCHAR25TEXT25
EMPSCIS-H: Employed Since ISH_EMPDATDATS8RI_DATUM
ADDRNUMBERAddress number AD_ADDRNUMCHAR10Assigned to domainALPHAAD_ADDRNUMADR
CN_OCCUNational Occupation Category ISH_CN_OCCUPCHAR5Assigned to domainISH_CN_OCCUP
RELGNIS-H: Religion RI_KONFECHAR2RI_KONFE
RES_INDIndicator That Patient Is Non-Resident ISH_RESIDCHAR1XFELD
INA_IND'Inactive' Indicator ISH_INACTIVECHAR1XFELD
ORD_INDOrgan Donor Indicator SPENKZCHAR1XFELD
VIP_INDIS-H: VIP Indicator VIPKZCHAR1XFELD
EADM_INDIS-H: Emergency Admission Indicator NOTAUFCHAR1XFELD
QADM_INDIS-H: Quick Admission Indicator KURZAUFCHAR1XFELD
RIN_INDIS-H: Risk Information Exists for the Patient ISH_RISIKOCHAR1XFELD
CRT_USRIS-H: Name of Employee who Created Record RI_ERNAMCHAR12USNAM
CRT_DATIS-H: Date when Record Created RI_ERDATDATS8RI_DATUM
CHG_USRIS-H: Name of Person who Last Changed Data RI_UPNAMCHAR12USNAM
CHG_DATIS-H: Date of Last Change RI_UPDATDATS8RI_DATUM
CCL_USRIS-H: Name of User who Canceled Data Record STORN_USERCHAR12USNAM
CCL_DATDate of Cancellation STORN_DATDATS8RI_DATUM
CCL_INDIS-H: Cancellation Indicator RI_STORNCHAR1XFELD
RACEIS-H: Race ISH_RACECHAR2TN17RALPHAISH_RACE
SI_NUMIS-H: Social Insurance Number ISH_RVNUMCHAR20ISH_SVNUM
RFPNTReference to Patient Number in Merging ISH_RFP_IDCHAR10Assigned to domainALPHABU_PARTNER
RFPNT_CDCheck Digit for Patient PZIFF_PATCHAR1PZIFFPZP
DOC_TYPType of Identification Document ISH_PASSTYCHAR2TN17DALPHAISH_PASSTY
DOC_NUMIS-H: Identification Document Number ISH_PASSNRCHAR15NLJUSISH_PASSNR
EO_IND EXTAUFGCHAR1XFELD
EO_TYPE EXTAUFGACHAR2Assigned to domainEXTAUFGA
PNT_EXTNRIS-H: External Patient Identification EXT_PATNRCHAR20EXT_PATNR
DOB_UNBirthdate Is Unknown ISH_UNKNOWN_GBDATCHAR1ISH_UNKNOWN_GBDAT
USER1IS-H: User-Defined Field 1 ISH_PATUSER1CHAR20ISH_PATUSER1
USER2IS-H: User-Defined Field 2 ISH_PATUSER2CHAR20ISH_PATUSER2
USER3IS-H: User-Defined Field 3 ISH_PATUSER3DATS8ISH_PATUSER3
USER4IS-H: User-Defined Field 4 ISH_PATUSER4DATS8ISH_PATUSER4
USER5IS-H: User-Defined Field 5 ISH_PATUSER5CHAR50ISH_PATUSER5
USER6IS-H: User-Defined Field 6 ISH_PATUSER6CHAR1ISH_PATUSER6
PATNRIS-H: Patient Number PATNRCHAR10Assigned to domainALPHAPATNRPAT
ADR_KINDAddress Type BU_ADRKINDCHAR10TB009BU_ADRKIND
INSID ISH_VERS_NRCHAR10
ISTAT_BPLISTAT Code ISH_ISTATCHAR6ISH_ISTAT
TAXNUM_INDTax Number Indicator ISH_TAXNUM_INDCHAR1XFELD
STPSTP Code ISH_STPCHAR16ISH_STP
STP_ENDDTEnd of Validity of STP Code ISH_STPENDDATS8RI_DATUM
CONS_PERSDATAConsent for Processing of Personal Data ISH_CONS_PERSDATACHAR1XFELD
/ISHFR/BIRTHRKIS-H FR: Birth Rank /ISHFR/ISH_BIRTH_RANKNUMC1/ISHFR/ISH_BIRTH_RANK

Key field Non-key field



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

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

SELECT SINGLE *
FROM NPNT
INTO CORRESPONDING FIELDS OF WA_NPNT
WHERE...

How to access SAP table NPNT

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