Skip to main content

Business Partner Structure

Data Dictionary - Entity Table: Business_Partner_Structure#

Contains the business partner hierarchies of the organisation. Example for internal BP: Booking center -> Department -> Team -> Client. This allows aggregation of the AUM or NNM on different levels.

Primary Key ('id').ENGINE = InnoDB..
Column NameData TypePK Primary Key, NN-Not Null, NullExampleComments
idBIGINT(12)PK, NN1PrimaryKey-ID, Not Null (auto creates)
ParentBIGINT(12)NULL6Top of hierarchy (parent) of BP
ChildBIGINT(12)NULL15Under parent hierarchy (child) of BP
LevelBIGINT(12)NULL1Level of Structure
Relationship_TypeBIGINT(12)NULL1Type of the relationship
CONSTRAINTFOREIGN KEYREFERENCESON DELETEON UPDATE
ParentBP(Parent)Business_Partner (id)NO ACTIONNO ACTION
ChildBP(Child)Business_Partner (id)NO ACTIONNO ACTION
Relationship_Type(Relationship_Type)BP-Relationship_Type (id)NO ACTIONNO ACTION
CREATE INDEXONASCVISIBLE.
Parent_idxBusiness_Partner_Structure(Parent ASC)VISIBLE.
Child_idxBusiness_Partner_Structure(Child ASC)VISIBLE.
Relationship_Type_idxBusiness_Partner_Structure(Relationship_Type ASC)VISIBLE.