Understand The Netting Procedure in SAP
Understand The Netting Procedure in SAP
and
vendor roles. Here are the main tables you would use:
1. **BUT000**: This table contains general data for the Business Partner.
### Steps to Identify a Business Partner with Both Customer and Vendor Roles:
- These tables link the Business Partner to their respective customer and vendor master records.
You can use the following SQL queries to identify BPs with both customer and vendor roles:
```sql
SELECT BP.BU_PARTNER
FROM BUT000 BP
```
To further ensure that the BP is linked to both customer and vendor records:
```sql
FROM BUT000 BP
```
- Use the table `BUT100` to identify if the Business Partner has the roles `FLCU00` (Customer) and
`FLVN00` (Vendor).
- Verify the links using `CVI_CUST_LINK` and `CVI_VEND_LINK` tables to make sure the Business Partner
is correctly linked to both a customer and vendor.
### Example with Screenshots:




- Use transaction code `SE16N` to view these tables and perform queries within SAP.
- Example steps: Enter `SE16N` -> Enter table name (e.g., `BUT100`) -> Execute the query with specific
conditions.
By querying these tables, you can identify Business Partners who have both customer and vendor roles,
ensuring they can participate in intercompany transactions as required.