SAP BBP_PCMAS Procurement Card Master Data Table data and field list

BBP_PCMAS is a standard SAP Table which is used to store Procurement Card Master Data data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BBP_PCMAS table consists of various fields, each holding specific information or linking keys about Procurement Card Master Data data available in SAP. These include BBPPCINS (Procurement card company), PCNUM (Procurement card number), PCNAME (Name of procurement cardholder), PCDAT_FROM (Procurement card valid from date)... 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. .

BBP_PCMAS 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 BBP_PCMAS 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 BBP_PCMAS 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 MANDTCLNT3T000MANDT
BBPPCINSProcurement card company BBPPCINSCHAR4BBP_PCINSBBPPCINSPCI
PCNUMProcurement card number BBPPCNUMCHAR25BBPPCNUMPCCBBP_PCMAS
PCNAMEName of procurement cardholder BBPPCNAMECHAR40CHAR40
PCDAT_FROMProcurement card valid from date BBPPCDATFDATS8DATUM
PCDAT_TOProcurement card expiration date BBPPCDATEDATS8DATUM
PCTYPProcurement card type BBPPCTYPCHAR2Assigned to domainBBPPCTYP
PCBEGRUAuthorization Group BRGRUCHAR4Assigned to domainBRGRU
PCHOTYPEProcurement cardholder type PCHOTYPECHAR2PCOTYPE
PCHOBJIDProcurement cardholder ID PCHOBJIDCHAR12CHAR12
USERNAMEUser Name in User Master Record XUBNAMECHAR12USR02XUBNAMEXUS
PCWFOTYPE1Workflow agent type 1 for procurement card PCWFOTYPE1CHAR2PCOTYPE
PCWFOBJID1First workflow agent ID for procurement card PCWFOBJID1CHAR12CHAR12
PCWFOTYPE2Workflow agent type 2 for procurement card PCWFOTYPE2CHAR2PCOTYPE
PCWFOBJID2Second workflow agent ID for procurement card PCWFOBJID2CHAR12CHAR12
PCBLOCKReason for blocking procurement card BBPPCBLOCKCHAR2BBP_PCBLOBBPPCBLOCK
LCURRENCYLocal Currency HWAERCUKY5TCURCWAERS
TALIMITProcurement card transaction limit BBPTALIMITCURR13(2) WERT7
TOLIMITProcurement Card: Total Limit BBPTOLIMITCURR13(2) WERT7
PCAP1LIMFirst approval amount limit for the procurement card PCAP1LIMCURR13(2) WERT7
PCAP2LIMSecond approval amount limit for the procurement card PCAP2LIMCURR13(2) WERT7
COMP_CODECompany Code BUKRSCHAR4Assigned to domainBUKRSBUKC_T001
CO_AREAControlling Area KOKRSCHAR4Assigned to domainCACCDCAC
FM_AREAFinancial Management Area FIKRSCHAR4Assigned to domainFIKRSFIK

Key field Non-key field



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

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

SELECT SINGLE *
FROM BBP_PCMAS
INTO CORRESPONDING FIELDS OF WA_BBP_PCMAS
WHERE...

How to access SAP table BBP_PCMAS

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

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