I_TMBusinessPartnerByIntKey

DDL: I_TMBUSINESSPARTNERBYINTKEY Type: view BASIC

Business Partner

I_TMBusinessPartnerByIntKey is a Basic CDS View (Dimension) that provides data about "Business Partner" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartner) and exposes 53 fields with key field BusinessPartnerUUID.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartner I_BusinessPartner from

Annotations (13)

NameValueLevelField
EndUserText.label Business Partner view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ObjectModel.representativeKey BusinessPartnerUUID view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName ITMBPBYINTKEY view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view

Fields (53)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerUUID BusinessPartnerUUID UUID
BusinessPartner BusinessPartner Issuing Authority
BusinessPartnerCategory BusinessPartnerCategory Partner Cat.
AuthorizationGroup AuthorizationGroup AuthorizGroup
PersonNumber PersonNumber Person Number
BusinessPartnerName BusinessPartnerName Extracted Customer Name
BusinessPartnerFullName BusinessPartnerFullName Broker Name
CreatedByUser CreatedByUser User Name
CreationDate CreationDate Time Stamp
CreationTime CreationTime Time of Change
LastChangedByUser LastChangedByUser User Name
LastChangeDate LastChangeDate Time Stamp
LastChangeTime LastChangeTime Time changed
BusinessPartnerIsBlocked BusinessPartnerIsBlocked Central Block
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
FirstName FirstName First Name
LastName LastName Last Name
OrganizationBPName1 OrganizationBPName1 Name 1
OrganizationBPName2 OrganizationBPName2 Name 2
OrganizationBPName3 OrganizationBPName3 Name 3
OrganizationBPName4 OrganizationBPName4 Name 4
InternationalLocationNumber1 InternationalLocationNumber1 Location no. 1
InternationalLocationNumber2 InternationalLocationNumber2 Location no. 2
InternationalLocationNumber3 InternationalLocationNumber3 Check digit
LegalForm LegalForm Legal form
OrganizationFoundationDate OrganizationFoundationDate Date founded
OrganizationLiquidationDate OrganizationLiquidationDate Liquidation
Industry Industry Industry Sector
IsNaturalPerson IsNaturalPerson Natural person
IsFemale IsFemale Female
IsMale IsMale Male
IsSexUnknown IsSexUnknown Unknown
GenderCodeName GenderCodeName Sex
FormOfAddress FormOfAddress Title Key
AcademicTitle AcademicTitle Academic Title
NameFormat NameFormat Name Format
NameCountry NameCountry Country/Region
BusinessPartnerGrouping BusinessPartnerGrouping Grouping
BusinessPartnerType BusinessPartnerType Undefined range (can be used for patch levels)
MiddleName MiddleName Middle Name
AdditionalLastName AdditionalLastName Other Last Name
GroupBusinessPartnerName1 GroupBusinessPartnerName1 Name 1
GroupBusinessPartnerName2 GroupBusinessPartnerName2 Name 2
CorrespondenceLanguage CorrespondenceLanguage Language
Language Language Report Text Language
SearchTerm1 SearchTerm1 Search Term 1
IndependentAddressID IndependentAddressID Address Number
DataControllerSet DataControllerSet Data Ctrlr. Set
_BusinessPartnerRole _BusinessPartnerRole
_CreatedByUser _CreatedByUser
_CurrentDefaultAddress _CurrentDefaultAddress
_DefaultAddress _DefaultAddress
_LastChangedByUser _LastChangedByUser

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_TMBusinessPartnerByIntKey.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_TMBusinessPartnerByIntKey AS
SELECT
  BusinessPartnerUUID,
  BusinessPartner,
  BusinessPartnerCategory,
  AuthorizationGroup,
  PersonNumber,
  BusinessPartnerName,
  BusinessPartnerFullName,
  CreatedByUser,
  CreationDate,
  CreationTime,
  LastChangedByUser,
  LastChangeDate,
  LastChangeTime,
  BusinessPartnerIsBlocked,
  IsBusinessPurposeCompleted,
  FirstName,
  LastName,
  OrganizationBPName1,
  OrganizationBPName2,
  OrganizationBPName3,
  OrganizationBPName4,
  InternationalLocationNumber1,
  InternationalLocationNumber2,
  InternationalLocationNumber3,
  LegalForm,
  OrganizationFoundationDate,
  OrganizationLiquidationDate,
  Industry,
  IsNaturalPerson,
  IsFemale,
  IsMale,
  IsSexUnknown,
  GenderCodeName,
  FormOfAddress,
  AcademicTitle,
  NameFormat,
  NameCountry,
  BusinessPartnerGrouping,
  BusinessPartnerType,
  MiddleName,
  AdditionalLastName,
  GroupBusinessPartnerName1,
  GroupBusinessPartnerName2,
  CorrespondenceLanguage,
  Language,
  SearchTerm1,
  IndependentAddressID,
  DataControllerSet
FROM I_BusinessPartner
;