SAP ARCHLNK_DL_IND ILM: Attributes for Finding ArchiveLink Print Lists in RW Table data and field list

ARCHLNK_DL_IND is a standard SAP Table which is used to store ILM: Attributes for Finding ArchiveLink Print Lists in RW data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The ARCHLNK_DL_IND table consists of various fields, each holding specific information or linking keys about ILM: Attributes for Finding ArchiveLink Print Lists in RW data available in SAP. These include SOURCE_SYSTEM (Name of SAP System), SOURCE_CLIENT (Client ID), REPORT (SAP ArchiveLink Report Name), INFO (SAP ArchiveLink: Info field)... 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. .

ARCHLNK_DL_IND table Technical Details:

Delivery Class: S - System table, maint. only by SAP, change = modification
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP ARCHLNK_DL_IND 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 ARCHLNK_DL_IND 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
SOURCE_SYSTEMName of SAP System SYSYSIDCHAR8SYCHAR08
SOURCE_CLIENTClient ID SYMANDTCLNT3Assigned to domainMANDT
REPORTSAP ArchiveLink Report Name SAEREPORTCHAR40Assigned to domainPROGRAMM
INFOSAP ArchiveLink: Info field SAEINFOCHAR3SADC3
LNRSAP ArchiveLink: Sequential version number SAELNRCHAR10SADC10
SAP_OBJECTSAP ArchiveLink: Object type of business object SAEANWDIDCHAR10Assigned to domainOJ_NAMEOAO
AR_OBJECTDocument type SAEOBJARTCHAR10Assigned to domainSADC10_DVDOK
DESCRIPTIONSAP ArchiveLink: Text information field SAETEXTCHAR40SADC40
STORE_USERData element for user SAEUSERCHAR12SADC12
STORE_DATESAP ArchiveLink: Storage date SAEABADATEDATS8SADDATUM
CREP_IDCharacter field of length 40 CHAR40CHAR40CHAR40
DOC_IDSAP ArchiveLink: Document ID SAEARDOIDCHAR40SADC40
CREP_ID_RWContent Repository Identification SAEARCHIVICHAR2Assigned to domainSADC2_AR
DOC_ID_RWSAP ArchiveLink: Document ID SAEARDOIDCHAR40SADC40

Key field Non-key field



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

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

SELECT SINGLE *
FROM ARCHLNK_DL_IND
INTO CORRESPONDING FIELDS OF WA_ARCHLNK_DL_IND
WHERE...

How to access SAP table ARCHLNK_DL_IND

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

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