Creates and posts a journal entry (FI-GL FB50).
UI5 interaction handler.
Navigation API.
Vocabulary lookup service.
Journal entry data.
Optional
Optional intent options.
IntentResult describing the outcome.
IntentResult
Navigates to the JournalEntry-create FLP hash, fills document date, posting date, and line items, then clicks Post.
JournalEntry-create
Create and post a general-ledger journal entry.
FI
FB50 — enter G/L account document.
import * as finance from '#intents/domains/finance.js';await finance.createJournalEntry(ui5, ui5Nav, vocab, { documentDate: '2026-02-20', postingDate: '2026-02-20', lineItems: [{ glAccount: '400000', debitCredit: 'S', amount: 1000 }],}); Copy
import * as finance from '#intents/domains/finance.js';await finance.createJournalEntry(ui5, ui5Nav, vocab, { documentDate: '2026-02-20', postingDate: '2026-02-20', lineItems: [{ glAccount: '400000', debitCredit: 'S', amount: 1000 }],});
Creates and posts a journal entry (FI-GL FB50).