FINOC_ORGLCHG

Transparent Table Application Table

Organizational Change

FINOC_ORGLCHG is an SAP database table in S/4HANA. Organizational Change. It contains 6 fields. 31 CDS views read from this table.

CDS Views using this table (31)

ViewTypeJoinVDMDescription
E_OrganizationalChange view_entity from EXTENSION Extension View for Organizational Change
FINOC_CHECK_REC_02_ALL_TO_REC view_entity from Org. Change: From All to RE Contract
FINOC_CHECK_REC_02_ALL_TO_REC view_entity union Org. Change: From All to RE Contract
FINOC_CHECK_REC_02_REC_TO_ALL view_entity from Org. Change: From RE Contract to All
finoc_orglchg_date_status_buf view from Orgl Change: Buffered Date and Status
FINOC_RT_CCR_OPEN_ORGL view inner Orgl Change: Fill RT Cost Center (Hist.)
FINOC_RT_FA_OPEN_ORGL view_entity inner Orgl Change: Fill RT FA (Hist.)
FINOC_RT_MAT_OPEN_ORGL view inner Orgl Change: Fill RT Material (Hist.)
FINOC_RT_NWA_OPEN_ORGL view inner Orgl Change: Fill RT Netw.Act. (Hist.)
FINOC_RT_OI_OPEN_ORGL view inner Orgl Change: Fill RT Open Items (Hist.)
FINOC_RT_ORD_OPEN_ORGL view inner Orgl Change: Fill RT Order (Hist.)
FINOC_RT_POI_OPEN_ORGL view_entity inner Orgl Change: Fill RT POI (Hist.)
FINOC_RT_PRO_OPEN_ORGL view inner Orgl Change: Fill RT PRO (Hist.)
FINOC_RT_REC_FILL view_entity inner OrglChg: Fill RT for Real Estate Contr.
FINOC_RT_REC_FILL_ACCTOBJ view_entity inner Orgl Change: RE Contr. Val. Terms w/ OC
FINOC_RT_REC_OPEN_ORGL view_entity inner Orgl Change: Fill RT Order (Hist.)
FINOC_RT_SOI_OPEN_ORGL view inner Orgl Change: Fill RT Sales Doc (Hist.)
FINOC_RT_SOX_OPEN_ORGL view inner Orgl Change: Fill RT IC SOI (Hist.)
FINOC_RT_WBS_OPEN_ORGL view inner Orgl Change: Fill RT WBS (Hist.)
FINOC_RULE_MAT_BASE view inner Orgl Change-Rule: Materials Base
FINOC_RULE_NWA_BASE view inner O/C Rule: Network Activity Base
FINOC_RULE_ORD_BASE view inner Orgl Change-Rule: Order Base
FINOC_RULE_ORD_DEFAULT view inner Orgl Change-Rule: Order Default Implmt.
FINOC_RULE_PRO_BASE view inner Organizational Change: Base Rule Project
finoc_rule_soi_base view inner Orgl Change-Rule: Sales Order Item Base
FINOC_RULE_SOX_BASE view inner Organizational Changes: Base Rle IC SOI
FINOC_RULE_SOX_EXAMPLE view inner Organizational Changes: Exmpl Rle IC SOI
FINOC_RULE_WBS_BASE view inner Orgl Change-Rule: WBS Elements Base
FINOC_RULE_WBS_DEFAULT_CE view inner OC: Default Rule WBS elmts, EPPM wR CE
I_OrganizationalChange view from BASIC Organizational Change
I_OrganizationalChangeVH view from BASIC Organizational Change

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY orgl_change finoc_orgl_change Organizational Change
next_open_period finoc_next_open_period Transfer posting in next open period
next_open_period_by finoc_next_open_period_by Next Open Period Set by User
next_open_period_on finoc_next_open_period_on Next Open Period Set On
xarch finoc_xarchived OrglChange archived

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Organizational Change
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FINOC_ORGLCHG (
    MANDT,                -- Client [mandt]
    ORGL_CHANGE,          -- Organizational Change [finoc_orgl_change]
    NEXT_OPEN_PERIOD,     -- Transfer posting in next open period [finoc_next_open_period]
    NEXT_OPEN_PERIOD_BY,  -- Next Open Period Set by User [finoc_next_open_period_by]
    NEXT_OPEN_PERIOD_ON,  -- Next Open Period Set On [finoc_next_open_period_on]
    XARCH,                -- OrglChange archived [finoc_xarchived]
    PRIMARY KEY (MANDT, ORGL_CHANGE)
);