WCOCOH SAP (Condition Contract: Header) Table details

Dictionary Type: Table
Description: Condition Contract: Header




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




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

WCOCOH is a standard SAP Table which is used to store Condition Contract: Header data and is available within R/3 SAP systems depending on the version and release level.

The WCOCOH table consists of various fields, each holding specific information or linking keys about Condition Contract: Header data available in SAP. These include NUM (Condition Contract Number), CONTRACT_TYPE (Condition Contract Type), VEND_OWNER (Condition Contract: Owner Vendor), CUST_OWNER (Condition Contract: Customer Owner).. 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 WCOCOH 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
CLIENTClient MANDTCLNT3T000MANDT
NUMCondition Contract Number WCB_COCO_NUMCHAR10ALPHAWCB_COCO_NUM
CONTRACT_TYPECondition Contract Type WCB_CONTRACT_TYPECHAR4TWCBCONTRTYPEWCB_CONTRACT_TYPE
VEND_OWNERCondition Contract: Owner Vendor WCB_VEND_OWNERCHAR10LFA1ALPHALIFNR
CUST_OWNERCondition Contract: Customer Owner WCB_CUST_OWNERCHAR10KNA1ALPHAKUNNR
REFERENCECondition Contract: Reference WCB_REFERENCECHAR16WCB_REFERENCE
ASSIGNMENTCondition Contract: Assignment WCB_ASSIGNMENTCHAR16WCB_ASSIGNMENT
EXT_PARTNERCondition Contract: External Partner WCB_EXTERNAL_PARTNERCHAR10WCB_EXTERNAL_PARTNER
CREATED_BYCondition Contract: Name of Processor WCB_CREATED_BYCHAR12USNAM
CREATED_ONCondition Contract: Date on Which Record Was Added WCB_CREATED_ONDATS8DATUM
REC_TIMECondition Contr.: Time at Which Record Was Added WCB_REC_TIMETIMS6UZEIT
EKORGPurchasing Organization EKORGCHAR4T024EEKORGEKO
EKGRPPurchasing Group EKGRPCHAR3T024EKGRPEKG
VKORGSales Organization VKORGCHAR4TVKOVKORGVKOC_VKORG
VTWEGDistribution Channel VTWEGCHAR2TVTWVTWEGVTWC_VTWEG
SPARTDivision SPARTCHAR2TSPASPARTSPAC_SPART
ZTERMTerms of Payment Key DZTERMCHAR4ZTERM
ZBD1TCash (Prompt Payment) Discount Days DZBDETDEC3ZBDXT
ZBD1PCash Discount Percentage 1 DZBD1PDEC5(3) PRZ23
ZBD2TCash discount days 2 DZBD2TDEC3ZBDXT
ZBD2PCash Discount Percentage 2 DZBD2PDEC5(3) PRZ23
ZBD3TNet Payment Terms Period DZBD3TDEC3ZBDXT
ZLSCHPayment Method DZLSCHCHAR1Assigned to domainZLSCH
GUIDCondition Contract GUID WCB_GUIDRAW16WCB_GUID
DEACTDeactivated WCB_DEACTIVATEDCHAR1WCB_DEACTIVATED
DATE_FROMValid from WCB_DATE_FROMDATS8WCB_DATE_FROM
DATE_TOValid to WCB_DATE_TODATS8WCB_DATE_TO
ZONLOTime Zone SYSTZONLOCHAR6SYCHAR06
EXT_NUMExternal Number of Document WCB_EXTERNAL_NUMBERCHAR30WCB_EXTERNAL_NUMBER
CC_CURRCurrency of Condition Contract WCB_CC_CURRCUKY5TCURCWAERS
RATEExchange Rate WCB_WKURSDEC9(5) EXCRTKURSP
RATE_DATEConversion Date WCB_WWERT_DDATS8DATUM
RATE_TYPEExchange Rate Type KURSTCHAR4TCURVKURSTKUT
VKGRPSales Group VKGRPCHAR3TVBVKVKGRPVKG
VKBURSales Office VKBURCHAR4TVBURVKBURVKB
ACCESS_TYPEAccess Type WCB_ACCESS_TYPECHAR1WCB_ACCESS_TYPE
SETTL_MATNRCCS: Settlement Material WB2_SETTLEMENT_MATNRCHAR18MARAMATN1MATNR
SETTL_TYPE_VENDCondition Contract Settlement: Settlement Type Vendor WB2_SETTLEMENT_TYPE_VENDORCHAR1WB2_SETTLEMENT_TYPE_VENDOR
SETTL_CAL_FINALCondition Contract Settlement: Settlement Calendar WB2_SETTLEMENT_CALENDARCHAR2TFACDWFCID
SETTL_CAL_PARTCondition Contract Settlement: Calendar Partial Settlement WB2_SETTLEMENT_CALENDAR_PARTCHAR2TFACDWFCID
BUKRSCompany Code BUKRSCHAR4T001BUKRSBUKC_T001
SETTL_TYPE_CUSTCondition Contract Settlement: Settlement Type Customer WB2_SETTLEMENT_TYPE_CUSTOMERCHAR1WB2_SETTLEMENT_TYPE_CUSTOMER
CH_NAMEName of Person Who Changed Object AENAMCHAR12USNAM
CH_DATEChanged On AEDATDATS8DATUM
CH_TIMETime of Change AEZEITTIMS6UHRZT
EXTENSION_CALCCS: Calendar for Contract Extension WB2_EXTENSION_CALENDARCHAR2TFACDWFCID
PRED_CCPredecessor Condition Contract number WCB_PRED_COCO_NUMCHAR10ALPHAWCB_COCO_NUM
CATEGORYCondition Contract Category WCB_CONTRACT_CATEGORYCHAR2TWCBCATEGORYWCB_CONTRACT_CATEGORY
CC_PURPOSECondition Contract Purpose WCB_CC_PURPOSECHAR2WCB_CC_PURPOSE
EXT_REF_CATExternal Reference Document Category WCB_REF_CATCHAR2WCB_REF_CAT
EXT_REFExternal Reference WCB_EXTERNAL_NUMBER2CHAR32WCB_EXTERNAL_NUMBER2
KOLIFPrior Vendor KOLIFCHAR10LFA1ALPHALIFNR
SETTL_CAL_DELTACondition Contract Settlement: Calendar Delta Settlement WB2_SETTLEMENT_CALENDAR_DELTACHAR2TFACDWFCID

Key field Non-key field



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

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

SELECT SINGLE *
FROM WCOCOH
INTO CORRESPONDING FIELDS OF WA_WCOCOH
WHERE...

How to access SAP table WCOCOH

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