OPEN_GRID API - v1.3.1
    Preparing search index...

    Interface SapParseResult

    SAP XML 파싱 결과 구조. / Result structure of SAP XML parsing.

    interface SapParseResult {
        header: Record<string, string>;
        items: Record<string, string>[];
        raw?: Document;
        returns: Record<string, string>[];
    }
    Index

    Properties

    header: Record<string, string>

    문서 헤더(DOCUMENTHEADER) 필드 맵. / Document header (DOCUMENTHEADER) field map.

    items: Record<string, string>[]

    라인 아이템 행 배열. / Line-item row array.

    raw?: Document

    파싱에 사용한 원본 Document(선택). / The source Document used for parsing (optional).

    returns: Record<string, string>[]

    RETURN 메시지 행 배열(복수). / RETURN message rows (may be multiple).