BIPMW SAP (Dependent Charac. Specs for Batch Input of Task Lists) Structure details

Dictionary Type: Structure
Description: Dependent Charac. Specs for Batch Input of Task Lists




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




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

BIPMW 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 "Dependent Charac. Specs for Batch Input of Task Lists" 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_BIPMW TYPE BIPMW.

The BIPMW table consists of various fields, each holding specific information or linking keys about Dependent Charac. Specs for Batch Input of Task Lists data available in SAP. These include PLNTY (Task List Type), PLNNR (Key for Task List Group), PLNAL (Group Counter), PLNFL (Sequence).. 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:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP BIPMW structure 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
RECTYRecord type for batch input of task lists RECTYCHAR2CHAR2
PLNTYTask List Type PLNTYCHAR1Assigned to domainPLNTYPTYH_TCA01
PLNNRKey for Task List Group PLNNRCHAR8ALPHAPLNNRPLNPLKS
PLNALGroup Counter PLNALCHAR2ALPHAALTNRPAL
PLNFLSequence PLNFOLGECHAR6ALPHAPLNFOLGE
VORNROperation/Activity Number VORNRCHAR4NUMCVVORNRVGN
MERKNRInspection Characteristic Number (Batch Input) QMERKNR_CCHAR4CHAR4
ZUORDNRNo. for the Dependent Char. Specs (Batch Input) QZUORDNRCCHAR4CHAR4
MATNRMaterial Number of the Dependent Characteristic Specs QMATNR_DCHAR18Assigned to domainMATN1MATNRMAT
WERKSPlant WERKS_DCHAR4Assigned to domainWERKSWRKH_T001W_C
LIFNRVendor Account Number ELIFNCHAR10Assigned to domainALPHALIFNRLIFKRED_C
KUNRAccount Number of Customer EKUNNCHAR10Assigned to domainALPHAKUNNRKUN
TOLERANZSLTolerance Key QTOLERANZCHAR4Assigned to domainQTOLERANZ
PSNFHItem number of the production resource/tool (batch input) PSNFH_BICHAR4CHAR4
STELLENNo. of Decimal Places (Batch Input) QSTELLEN_CCHAR2CHAR2
MASSEINHSWMeasurement Unit in Which Quantitative Data Is Maintained QMGEH6CHAR6Assigned to domainLUNITMSEC6
SOLLWERTTarget Value for a Quantitative Characteristic QSOLLWERTCCHAR16QSOLLWERTC
TOLERANZOBUpper Specification Limit QTOLOBCCHAR16QSOLLWERTC
TOLERANZUNLower Specification Limit QTOLUNCCHAR16QSOLLWERTC
KLASANZAHLNumber of Value Classes for Inspection Results QKLASSZAHCCHAR3CHAR3
KLASBREITEClass Width QKLASSBRCCHAR16QSOLLWERTC
KLASMITTEClass Midpoint QKLASMITCCHAR16QSOLLWERTC
GRENZEOB1First Upper Specification Limit QGRENZO1CCHAR16QSOLLWERTC
GRENZEUN1First Lower Specification Limit QGRENZU1CCHAR16QSOLLWERTC
GRENZEOB2Second Upper Specification Limit QGRENZO2CCHAR16QSOLLWERTC
GRENZEUN2Second Lower Specification Limit QGRENZU2CCHAR16QSOLLWERTC
PLAUSIOBENUpper Plausibility Limit QPLAUSIOBCCHAR16QSOLLWERTC
PLAUSIUNTELower Plausibility Limit QPLAUSIUNCCHAR16QSOLLWERTC
TOLERWEIOBChange to Upper Specification Limit QTOLWOBCCHAR16QSOLLWERTC
TOLERWEIUNChange to Lower Specification Limit QTOLWUNCCHAR16QSOLLWERTC
TOLERWABDate, from Which the Tolerance Change Is Valid (Batch Input) QTOLWAB_CCHAR10CHAR10
TOLERWBISDate, to Which the Tolerance Change Is Valid (Batch Input) QTOLWBIS_CCHAR10CHAR10
AUSWMENGE1Assigned Code Group or Selected Set QCGRAUSWCHAR8QCGRAUSW
AUSWMGWRK1Plant of the Assigned Selected Set QWERKAUSWCHAR4Assigned to domainWERKSWRK
KATAB2Catalog Entry Is a Selected Set QKTTABCHAR1QKTTAB
KATALGART2Catalog Type of Assigned Code Group or Selected Set QKATAUSWCHAR1Assigned to domainQKATARTQKT
AUSWMENGE2Assigned Code Group or Selected Set QCGRAUSWCHAR8QCGRAUSW
AUSWMGWRK2Plant of the Assigned Selected Set QWERKAUSWCHAR4Assigned to domainWERKSWRK
KATAB3Catalog Entry Is a Selected Set QKTTABCHAR1QKTTAB
KATALGART3Catalog Type of Assigned Code Group or Selected Set QKATAUSWCHAR1Assigned to domainQKATARTQKT
AUSWMENGE3Assigned Code Group or Selected Set QCGRAUSWCHAR8QCGRAUSW
AUSWMGWRK3Plant of the Assigned Selected Set QWERKAUSWCHAR4Assigned to domainWERKSWRK
KATAB4Catalog Entry Is a Selected Set QKTTABCHAR1QKTTAB
KATALGART4Catalog Type of Assigned Code Group or Selected Set QKATAUSWCHAR1Assigned to domainQKATARTQKT
AUSWMENGE4Assigned Code Group or Selected Set QCGRAUSWCHAR8QCGRAUSW
AUSWMGWRK4Plant of the Assigned Selected Set QWERKAUSWCHAR4Assigned to domainWERKSWRK
KATAB5Catalog Entry Is a Selected Set QKTTABCHAR1QKTTAB
KATALGART5Catalog Type of Assigned Code Group or Selected Set QKATAUSWCHAR1Assigned to domainQKATARTQKT
AUSWMENGE5Assigned Code Group or Selected Set QCGRAUSWCHAR8QCGRAUSW
AUSWMGWRK5Plant of the Assigned Selected Set QWERKAUSWCHAR4Assigned to domainWERKSWRK
DUMMY10Text Line for Additional Information QTXT10CHAR10QTXT10
DUMMY20Text Line for Additional Information QTXT20CHAR20QTXT20
DUMMY40Text Line for Additional Information QTXT40CHAR40QTXT40

Key field Non-key field



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

As BIPMW 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 BIPMW as there is no data to select.

How to access SAP table BIPMW

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