SAP FMCYDOC Links source and targets during the copy of documents Table data and field list

FMCYDOC is a standard SAP Table which is used to store Links source and targets during the copy of documents data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FMCYDOC table consists of various fields, each holding specific information or linking keys about Links source and targets during the copy of documents data available in SAP. These include FM_AREA_SRCE (Financial Management Area), DOCNR_SRCE (Budget entry document number), DOCYEAR_SRCE (Document Year), FM_AREA_TRGT (Financial Management Area)... 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. .

FMCYDOC table Technical Details:

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 FMCYDOC 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 FMCYDOC 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
CLIENTClient MANDTCLNT3Assigned to domainMANDT
FM_AREA_SRCEFinancial Management Area FIKRSCHAR4Assigned to domainFIKRSFIK
DOCNR_SRCEBudget entry document number BUED_DOCNRCHAR10ALPHABELNRBUED_DOCNR
DOCYEAR_SRCEDocument Year BUKU_DOCYEARNUMC4GJAHRGJAHRBUKU_DOCYEAR
FM_AREA_TRGTFinancial Management Area FIKRSCHAR4Assigned to domainFIKRSFIK
DOCYEAR_TRGTDocument Year BUKU_DOCYEARNUMC4GJAHRGJAHRBUKU_DOCYEAR
VERSION_TRGTBudget version BUKU_VERSIONCHAR3Assigned to domainALPHACOVERSIBP2
SEQ_NUMBERNatural Number INT4INT410INT4
DOCNR_TRGTBudget entry document number BUED_DOCNRCHAR10ALPHABELNRBUED_DOCNR
VERSION_SRCEBudget version BUKU_VERSIONCHAR3Assigned to domainALPHACOVERSIBP2
COPY_INDICATORDocument Copy Status Indicator FMCY_INDICATORCHAR1FMCY_INDICATOR

Key field Non-key field



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

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

SELECT SINGLE *
FROM FMCYDOC
INTO CORRESPONDING FIELDS OF WA_FMCYDOC
WHERE...

How to access SAP table FMCYDOC

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

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