SAP PRISBCPARA PRICAT: SBC Parameters for PRICAT Customers Table data and field list

PRISBCPARA is a standard SAP Table which is used to store PRICAT: SBC Parameters for PRICAT Customers data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The PRISBCPARA table consists of various fields, each holding specific information or linking keys about PRICAT: SBC Parameters for PRICAT Customers data available in SAP. These include USEB2BSERVICE (PRICAT: Indicates whether an SBC is called), KZCHANGED (Checkbox), SBCALIAS (PRICAT: Server Alias SBC), HOST (PRICAT: Host SBC Service)... 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. .

PRISBCPARA 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 PRISBCPARA 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 PRISBCPARA 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
CUSTOMERCustomer Numbers KUNNRCHAR10KNA1ALPHAKUNNRKUNC_KUNNR
USEB2BSERVICEPRICAT: Indicates whether an SBC is called PRIUSEB2BSERVICECHAR1XFELD
KZCHANGEDCheckbox XFELDCHAR1XFELD
SBCALIASPRICAT: Server Alias SBC PRISBCALIASCHAR30PRISBCSTRING
HOSTPRICAT: Host SBC Service PRISBCHOSTCHAR30PRISBCSTRING
PORTPRICAT: Port of an SBC Server PRISBCPORTNUMC5PRISBCPORT
SBCUSERPRICAT: User for SBC Service PRISBCUSERCHAR30PRISBCSTRING
PASSWORDPRICAT: Password for SBC Service PRISBCPASSWORDCHAR30PRISBCSTRING
USESSLPRICAT: Use SSL for SBC Connection PRIUSESSLCHAR1XFELD
SERVICEPATHPRICAT: Path of B2B Service PRISERVICEPATHCHAR100EDI_PTHNAM
SERVICEPRICAT: Name of B2B Service PRISERVICECHAR30PRISBCSTRING
URLPRICAT: URL of an XML Service PRIURLCHAR100EDI_PTHNAM
XMLTYPEPRICAT: Type of Transferred XML File PRIXMLTYPECHAR10PRIXMLTYPE

Key field Non-key field



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

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

SELECT SINGLE *
FROM PRISBCPARA
INTO CORRESPONDING FIELDS OF WA_PRISBCPARA
WHERE...

How to access SAP table PRISBCPARA

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

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