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

    Interface PaymentData

    Input data for processing a vendor payment (FI-AP).

    FI

    Accounts-payable outgoing payment processing.

    import type { PaymentData } from '#intents/types.js';

    const pmt: PaymentData = { vendor: '100001', amount: 5000, paymentDate: '2026-02-28' };
    interface PaymentData {
        amount: number;
        currency?: string;
        paymentDate: string;
        vendor: string;
    }
    Index

    Properties

    amount: number

    Payment amount.

    currency?: string

    ISO 4217 currency code.

    paymentDate: string

    Payment date in ISO 8601 format (YYYY-MM-DD).

    vendor: string

    SAP vendor number.