SAP FMTC_SCHNO Treasury Confirmation Schedule No status Table data and field list

FMTC_SCHNO is a standard SAP Table which is used to store Treasury Confirmation Schedule No status data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FMTC_SCHNO table consists of various fields, each holding specific information or linking keys about Treasury Confirmation Schedule No status data available in SAP. These include SCHEDULENO (Payment Schedule Number), LAUFD (Date on Which the Program Is to Be Run), LAUFI (Additional Identification), RZAWE (Payment Method for This Payment)... 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. .

FMTC_SCHNO 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 FMTC_SCHNO 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 FMTC_SCHNO 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
SCHEDULENOPayment Schedule Number FMFG_SCHEDNOCHAR11CHAR11FMFG_SCHEDULENO
LAUFDDate on Which the Program Is to Be Run LAUFDDATS8DATUM
LAUFIAdditional Identification LAUFICHAR6LAUFI
RZAWEPayment Method for This Payment RZAWECHAR1Assigned to domainZLSCH
ALCAgency Location Code FMFG_ALCCHAR8FMFGT_ALCFMFG_ALCFMFG_ALC
PMT_OFFICEPayment Office FMFG_PMT_OFFCHAR5FMFGT_POFMFG_PMT_OFFFMFG_PMT_OFFICE
FILE_NBRKey for multiple files from single Payment Program Print FMFG_FILE_NONUMC6
CONFDConfirmation Date FMFG_CONFDDATS8
POSTDPosting Date in the Document BUDATDATS8DATUM
AZNUMStatement number AZNUM_EBNUMC5NUM5
CHKRGMultiple Check Ranges Indication of US Federla TC CHKRGCHAR1CHKRG
CHECFCheck Number From CHECFCHAR13CHCKNCHK
CHECTCheck number CHECTCHAR13CHCKNCHK
AMOUNTAmount in Local Currency RBETRCURR13(2) WRTV7
STATUSPayment Schedule Status FMFG_SCH_STATUSCHAR1FMFG_SCH_STATUS
CONTROLNOSPS Control Number rec'd from Treasury FMFG_CONTROLNOCHAR7CHAR7

Key field Non-key field



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

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

SELECT SINGLE *
FROM FMTC_SCHNO
INTO CORRESPONDING FIELDS OF WA_FMTC_SCHNO
WHERE...

How to access SAP table FMTC_SCHNO

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

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