VFKP SAP (Shipment Costs: Item Data) Table details

Dictionary Type: Table
Description: Shipment Costs: Item Data




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




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

VFKP is a standard SAP Table which is used to store Shipment Costs: Item Data data and is available within R/3 SAP systems depending on the version and release level.

The VFKP table consists of various fields, each holding specific information or linking keys about Shipment Costs: Item Data data available in SAP. These include FKNUM (Shipment Cost Number), FKPOS (Shipment costs item), FKPTY (Item category shipment costs), BUKRS (Company Code).. 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 VFKP 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 MANDTCLNT3T000MANDT
FKNUMShipment Cost Number FKNUMCHAR10VFKKALPHAFKNUMFKKSD_F4_SCD_ID
FKPOSShipment costs item FKPOSNUMC6FKPOS
FKPTYItem category shipment costs FKPTYCHAR4TVFTFKPTY
BUKRSCompany Code BUKRSCHAR4T001BUKRSBUKC_T001
NETWRNet value in currency of shipment cost item NETWR_PCURR15(2) WERTV8
MWSBPTax amount in currency of shipment cost item MWSBP_PCURR13(2) WERTV7
WAERSCurrency of the Shipment Cost Item WAERS_PCUKY5TCURCWAERSFWS
MWSKZTax on sales/purchases code MWSKZCHAR2T007AMWSKZ
PRSDTPricing date PRSDT_PDATS8DATUM
BUDATSettlement date BUDAT_PDATS8DATUM
EXTI1External identification 1 Item EXTI1_PCHAR20TEXT20
EXTI2External identification 2 Item EXTI2_PCHAR20TEXT20
TPLSTTransportation planning point TPLSTCHAR4TTDSTPLSTTDP
VSARTShipping type for shipment stage VERSARTSCHAR2T173VERSART
KALSMSales and Distribution: Pricing Procedure in Pricing KALSMASDCHAR6T683KALSM
KNUMVNumber of the document condition KNUMVCHAR10KNUMV
WERKSPlant WERKS_DCHAR4T001WWERKSWRKH_T001W_C
EKORGPurchasing Organization EKORGCHAR4T024EEKORGEKO
EKGRPPurchasing Group BKGRPCHAR3T024EKGRPEKG
EBELNPurchasing Document Number EBELNCHAR10Assigned to domainALPHAEBELNBESMEKK_C
EBELPItem Number of Purchasing Document EBELPNUMC5Assigned to domainEBELPBSP
LBLNIEntry Sheet Number LBLNICHAR10Assigned to domainALPHALBLNILBLESSR
PARVWPartner Function PARVWCHAR2TPARPARVWPARVWPAR
TDLNRNumber of service agent TDLNR_PCHAR10LFA1ALPHALIFNRVID
RECHSInvoicing party for shipment cost item RECHSTCHAR10LFA1ALPHALIFNR
KURSTExchange Rate Type KURSTCHAR4TCURVKURSTKUT
KOSTYCost type (shipment cost item) KOSTYCHAR1KOSTY
REFTYSD document category VBTYPCHAR1VBTYP
REBELReferenced document REBELCHAR10ALPHAREBEL
REPOSReferenced document item REPOS_PNUMC6REPOS_P
POSTXDescription for reference POSTXCHAR40TEXT40
KNTTPAccount Assignment Category KNTTPCHAR1T163KKNTTPKNT
BKLASValuation Class BWKLLCHAR4T025BKLAS
STBERStatus of calculation (shipment costs item data) STBER_PCHAR1STBER_P
DTBERDate of calculation DTBERDATS8DATUM
UZBERTime of calculation UZBERTIMS6UZEIT
STFREStatus of account determination STFRE_PCHAR1STFRE_P
DTFREDate of account determination DTFREDATS8DATUM
UZFRETime of account assignment UZFRETIMS6UZEIT
STABRStatus of transfer (shipment costs item data) STABR_PCHAR1STABR_P
DTABRDate of settlement DTABR_TDATS8DATUM
UZABRTime of settlement UZABRTIMS6UZEIT
ERNAMName of Person who Created the Object ERNAMCHAR12USNAM
ERDATDate on Which Record Was Created ERDATDATS8DATUM
ERZETEntry time ERZETTIMS6UZEIT
AENAMName of Person Who Changed Object AENAMCHAR12USNAM
AEDATChanged On AEDATDATS8DATUM
AEZETTime last change was made AEZETTIMS6UZEIT
LOGSYSLogical system LOGSYSCHAR10TBDLSALPHALOGSYS
KSTAUCost distribution CO KSTAUCHAR1KSTAU
TRFZNATariff zone of point of departure TRFZNACHAR10TVFTZTRFZN
TRFZNZTariff zone of point of destination TRFZNZCHAR10TVFTZTRFZN
TXJCDTax Jurisdiction TXJCDCHAR15Assigned to domainTXJCDTXJ
BASWRTax base amount BASWR_PCURR15(2) WERTV8
SLAND1_ATax country departure SLAND1_ACHAR3T005LAND1
SLAND1_ZTax country destination SLAND1_ZCHAR3T005LAND1
FKSTOShipment cost item already cancelled FKSTO_PCHAR1XFELD
KZWI1Subtotal 1 from pricing procedure for condition KZWI1CURR13(2) WERTV7
KZWI2Subtotal 2 from pricing procedure for condition KZWI2CURR13(2) WERTV7
KZWI3Subtotal 3 from pricing procedure for condition KZWI3CURR13(2) WERTV7
KZWI4Subtotal 4 from pricing procedure for condition KZWI4CURR13(2) WERTV7
KZWI5Subtotal 5 from pricing procedure for condition KZWI5CURR13(2) WERTV7
KZWI6Subtotal 6 from pricing procedure for condition KZWI6CURR13(2) WERTV7

Key field Non-key field



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

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

SELECT SINGLE *
FROM VFKP
INTO CORRESPONDING FIELDS OF WA_VFKP
WHERE...

How to access SAP table VFKP

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