SAP BAPI1075_LIST_ALL Kanban Table data and field list

BAPI1075_LIST_ALL is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Kanban" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_BAPI1075_LIST_ALL TYPE BAPI1075_LIST_ALL.

The BAPI1075_LIST_ALL table consists of various fields, each holding specific information or linking keys about Kanban data available in SAP. These include KANBANCONTROLCYCLE (Control cycle number), MATERIAL (Material Number), PLANT (Plant), SUPPLYAREA (Production Supply 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. .

BAPI1075_LIST_ALL structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP BAPI1075_LIST_ALL structure 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 BAPI1075_LIST_ALL 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
KANBAN_IDIdentification Number PKKEYNUMC10Assigned to domainPKKEY
KANBANCONTROLCYCLEControl cycle number PKNUMCHAR7Assigned to domainALPHAPKNUMPKNUM
MATERIALMaterial Number MATNRCHAR18Assigned to domainMATN1MATNRMATS_MAT1
PLANTPlant WERKS_DCHAR4Assigned to domainWERKSWRKH_T001W_C
SUPPLYAREAProduction Supply Area PRVBECHAR10Assigned to domainPRVBEPVB
CC_STATUSControl Cycle Category RKSTATCHAR1RKSTA
KANBAN_NOKanban item number / control cycle item PKPOSNUMC3PKPOS
STATUSKanban status PKBSTCHAR1PKBST
ACTUAL_QTYActual quantity PKIMGQUAN13(3) MENG13
STATUSDATEDate of last change SAEDTDATS8DATUM
STATUSTIMETime of the last status change SAEUZTIMS6UZEIT
STATUSDATE2Date of last change SAEDTDATS8DATUM
STATUSTIME2Time of the last status change SAEUZTIMS6UZEIT
PLANNEDORDER_NUMPlanned order number PLNUMCHAR10Assigned to domainALPHAPLNUMPAF
ORDERIDOrder Number AUFNRCHAR12Assigned to domainALPHAAUFNRANR
ORDER_ITNOOrder Item Number CO_POSNRNUMC4CO_POSNR
PO_NUMBERPurchasing Document Number EBELNCHAR10Assigned to domainALPHAEBELNBESMEKK_C
PO_ITEMItem Number of Purchasing Document EBELPNUMC5Assigned to domainEBELPBSP
SCHED_LINEDelivery Schedule Line Counter EETENNUMC4Assigned to domainEETEN
RESERV_NONumber of Reservation/Dependent Requirement RSNUMNUMC10Assigned to domainRSNUMRES
RES_ITEMItem Number of Reservation/Dependent Requirement RSPOSNUMC4RSPOSRPO
TRANSF_REQTransfer Requirement Number TBNUMNUMC10Assigned to domainTBNUMTBN
TRANSF_REQ_ITEMTransfer Requirement Item TBPOSNUMC4TBPOSTBP
BLOCK_IND_KANBANCONTAINERBlocking indicator for kanban container SPKKZCHAR1XFELD
MAT_DOCNumber of Material Document MBLNRCHAR10ALPHABELNRMBN
MATDOC_ITMItem in Material Document MBLPONUMC4MBLPOPOS
DEL_IND_KANBANDeletion Indicator for a Kanban PKLKZCHAR1XFELD
REQUESTED_QTYQuantity requested PKBMGQUAN13(3) MENG13
KANBAN_STATUS_PREVPrevious kanban status PKBSACHAR1PKBST
SUMJITCALLJIT Call Number PABNUMCHAR10Assigned to domainALPHAPABNUMPABNUM
SUMJITCALL_ITEMJIT call item PABPOSNUMC4PABPOS
CHANGE_CC_AVAILABLEIndicator: Changed Control Cycle Data Available for Kanban HDFLGCHAR1XFELD
PLANNEDRECEIPTPlanned Receipt PKGPZGDEC15TZNTSTMPS
BASE_UOMBase Unit of Measure MEINSUNIT3Assigned to domainCUNITMEINS
BASE_UOM_ISOISO code for unit of measurement ISOCD_UNITCHAR3Assigned to domainISOCD_UNIT
STRATEGY_INHOUSE_PRODControl Cycle Replenishment Strategy for In-House Production PKSTECHAR4Assigned to domainPKSTS
STRATEGY_EXT_REPLReplenishment Strategy of Control Cycle - Ext. Procurement PKSTFCHAR4Assigned to domainPKSTF
STRATEGY_STOCK_TRANSFControl Cycle Replenishment Strategy for Stock Transfer PKSTUCHAR4Assigned to domainPKSTU
MATL_DESCMaterial Description (Short Text) MAKTXCHAR40TEXT40
PLANT_DESCName NAME1CHAR30TEXT30
SUPPLYAREA_DESCProduction supply area description PVBTXCHAR40TEXT40
STRATEGY_INHOUSE_DESCDescription: Kanban replenishment strategy PKSBZCHAR40TEXT40
STRATEGY_EXT_REPL_DESCDescription: Kanban replenishment strategy PKSBZCHAR40TEXT40
STRATEGY_STOCK_TRANSF_DESCDescription: Kanban replenishment strategy PKSBZCHAR40TEXT40
STATUSTEXTShort text - container status Kanban BHSKTCHAR6BHSKT
REP_POINTReporting Point SA_ZPUNKTCHAR4NUMCVVORNR
CONFIRMATIONConfirmation number PRTNRNUMC10Assigned to domainPRTNRCONFNUMBER
CONF_SERSequential Number of Vendor Confirmation ETENSNUMC4NUM04
MATERIAL_EXTERNALLong Material Number for MATERIAL Field MGV_MATERIAL_EXTERNALCHAR40MATNR_EXT
MATERIAL_GUIDExternal GUID for MATERIAL Field MGV_MATERIAL_GUIDCHAR32MATNR_EGUID
MATERIAL_VERSIONVersion Number for MATERIAL Field MGV_MATERIAL_VERSIONCHAR10MATNWMATNR_VERS

Key field Non-key field



How do I retrieve data from SAP structure BAPI1075_LIST_ALL using ABAP code?

As BAPI1075_LIST_ALL is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on BAPI1075_LIST_ALL as there is no data to select.

How to access SAP table BAPI1075_LIST_ALL

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

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