<?xml version="1.0" encoding="UTF-8"?>
<bm:model xmlns:bm="http://www.leaf-framework.org/schema/bm">
    <bm:operations>
        <bm:operation name="update">
            <bm:update-sql><![CDATA[
                    UPDATE
                        hls_journal_header t
                    SET
                        t.post_gl_status   = 'CLOSE',
                        t.last_update_date = sysdate,
                        t.LAST_UPDATED_BY   = ${/session/@user_id}
                    WHERE
                        t.journal_header_id = ${@journal_header_id}
            ]]></bm:update-sql>
        </bm:operation>
    </bm:operations>
</bm:model>