Skip to main content

AcdocaEntry

Struct AcdocaEntry 

Source
pub struct AcdocaEntry {
Show 69 fields pub rldnr: String, pub rbukrs: String, pub gjahr: u16, pub belnr: String, pub docln: String, pub blart: String, pub budat: NaiveDate, pub bldat: NaiveDate, pub cpudt: NaiveDate, pub cputm: String, pub usnam: String, pub poper: u8, pub stgrd: Option<String>, pub xblnr: Option<String>, pub bktxt: Option<String>, pub racct: String, pub rcntr: Option<String>, pub prctr: Option<String>, pub segment: Option<String>, pub rfarea: Option<String>, pub rbusa: Option<String>, pub ps_psp_pnr: Option<String>, pub aufnr: Option<String>, pub kdauf: Option<String>, pub kdpos: Option<String>, pub pbukrs: Option<String>, pub pprctr: Option<String>, pub psegment: Option<String>, pub rassc: Option<String>, pub wsl: Decimal, pub rwcur: String, pub hsl: Decimal, pub rhcur: String, pub ksl: Option<Decimal>, pub rkcur: Option<String>, pub osl: Option<Decimal>, pub rocur: Option<String>, pub msl: Option<Decimal>, pub runit: Option<String>, pub sgtxt: Option<String>, pub zuonr: Option<String>, pub awsys: String, pub awtyp: String, pub awkey: String, pub awitem: Option<String>, pub aworg: Option<String>, pub mwskz: Option<String>, pub txjcd: Option<String>, pub hwbas: Option<Decimal>, pub xstov: bool, pub xsauf: bool, pub drcrk: String, pub bschl: String, pub anln1: Option<String>, pub anln2: Option<String>, pub anbwa: Option<String>, pub lifnr: Option<String>, pub kunnr: Option<String>, pub sim_batch_id: Option<Uuid>, pub sim_is_fraud: bool, pub sim_fraud_type: Option<String>, pub sim_business_process: Option<String>, pub sim_user_persona: Option<String>, pub sim_je_uuid: Option<Uuid>, pub sim_control_ids: Option<String>, pub sim_sox_relevant: bool, pub sim_control_status: Option<String>, pub sim_sod_violation: bool, pub sim_sod_conflict: Option<String>,
}
Expand description

SAP HANA ACDOCA-compatible universal journal entry line.

This represents the flattened, denormalized structure used in S/4HANA’s Universal Journal. Each record corresponds to a line item with all dimensional attributes denormalized for analytics performance.

Fields§

§rldnr: String

Ledger (0L = Leading Ledger, 2L = Local GAAP, etc.)

§rbukrs: String

Company Code

§gjahr: u16

Fiscal Year

§belnr: String

Accounting Document Number

§docln: String

Line Item Number (6 digits, zero-padded)

§blart: String

Document Type

§budat: NaiveDate

Posting Date

§bldat: NaiveDate

Document Date

§cpudt: NaiveDate

Entry Date

§cputm: String

Entry Time (HHMMSS format)

§usnam: String

User Name

§poper: u8

Fiscal Period

§stgrd: Option<String>

Reversal Reason

§xblnr: Option<String>

Reference Document Number

§bktxt: Option<String>

Document Header Text

§racct: String

GL Account

§rcntr: Option<String>

Cost Center

§prctr: Option<String>

Profit Center

§segment: Option<String>

Segment

§rfarea: Option<String>

Functional Area

§rbusa: Option<String>

Business Area

§ps_psp_pnr: Option<String>

Project (WBS Element)

§aufnr: Option<String>

Internal Order

§kdauf: Option<String>

Sales Order

§kdpos: Option<String>

Sales Order Item

§pbukrs: Option<String>

Partner Company Code

§pprctr: Option<String>

Partner Profit Center

§psegment: Option<String>

Partner Segment

§rassc: Option<String>

Trading Partner

§wsl: Decimal

Amount in Transaction Currency

§rwcur: String

Transaction Currency

§hsl: Decimal

Amount in Local Currency

§rhcur: String

Local Currency (Company Code Currency)

§ksl: Option<Decimal>

Amount in Group Currency

§rkcur: Option<String>

Group Currency

§osl: Option<Decimal>

Amount in Global Currency

§rocur: Option<String>

Global Currency

§msl: Option<Decimal>

Quantity

§runit: Option<String>

Unit of Measure

§sgtxt: Option<String>

Line Item Text

§zuonr: Option<String>

Assignment

§awsys: String

Source System

§awtyp: String

Reference Transaction Type

§awkey: String

Reference Key

§awitem: Option<String>

Reference Item

§aworg: Option<String>

Source Document Type

§mwskz: Option<String>

Tax Code

§txjcd: Option<String>

Tax Jurisdiction

§hwbas: Option<Decimal>

Tax Base Amount

§xstov: bool

Reversal Flag

§xsauf: bool

Statistical Flag

§drcrk: String

Debit/Credit Indicator (S = Debit, H = Credit)

§bschl: String

Posting Key

§anln1: Option<String>

Asset Number

§anln2: Option<String>

Asset Sub-Number

§anbwa: Option<String>

Asset Transaction Type

§lifnr: Option<String>

Vendor Number

§kunnr: Option<String>

Customer Number

§sim_batch_id: Option<Uuid>

Simulation batch ID for traceability

§sim_is_fraud: bool

Is fraud indicator

§sim_fraud_type: Option<String>

Fraud type code

§sim_business_process: Option<String>

Business process for process mining

§sim_user_persona: Option<String>

User persona classification

§sim_je_uuid: Option<Uuid>

Original journal entry UUID

§sim_control_ids: Option<String>

Comma-separated list of applicable control IDs

§sim_sox_relevant: bool

SOX relevance indicator

§sim_control_status: Option<String>

Control status (Effective, Exception, NotTested, Remediated)

§sim_sod_violation: bool

SoD violation indicator

§sim_sod_conflict: Option<String>

SoD conflict type if violation occurred

Trait Implementations§

Source§

impl Clone for AcdocaEntry

Source§

fn clone(&self) -> AcdocaEntry

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for AcdocaEntry

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for AcdocaEntry

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for AcdocaEntry

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for AcdocaEntry

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,