Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Function createJournalEntry

    • Creates and posts a journal entry (FI-GL FB50).

      Parameters

      Returns Promise<IntentResult<void>>

      IntentResult describing the outcome.

      Navigates to the JournalEntry-create FLP hash, fills document date, posting date, and line items, then clicks Post.

      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 }],
      });