Int4 Suite Documentation

List Action Output Template

All the actions can produce any type of output format. The only restriction is List Action. To be able to supply Message Selector screen with list of Ids and timestamps result of the List Action must follow below teampte:

XML
<?xml version="1.0" encoding="utf-8"?>
<DocumentList>
	<Document>
		<Id>0010047959</Id>
		<Timestamp>20260219000000</Timestamp>
	</Document>
	<Document>
		<Id>0010047960</Id>
		<Timestamp>20260219000000</Timestamp>
	</Document>
</DocumentList>

This template consist of list of nodes containing two fields:

  • Id - Business Object related Id that can be used to create a Test Case

  • Timestamp - optional timestamp related to the Business Object identify by the Id

Legacy ABAP format supported:

XML
<?xml version="1.0" encoding="utf-8"?>
<asx:abap version="1.0" xmlns:asx="http://www.sap.com/abapxml">
	<asx:values>
		<BOA_LIST_OUTPUT>
			<_-INT4_-ST_BOA_LIST_RESULT_XML>
				<DOCUMENT_NUMBER>12A1EEA1D2651EEC878A0370DB4166F8</DOCUMENT_NUMBER>
				<TIMESTAMP>20250911165733.0</TIMESTAMP>
			</_-INT4_-ST_BOA_LIST_RESULT_XML>
			<_-INT4_-ST_BOA_LIST_RESULT_XML>
				<DOCUMENT_NUMBER>12A1EEA1D2651EEC878A038AF070A6F8</DOCUMENT_NUMBER>
				<TIMESTAMP>20250911165733.0</TIMESTAMP>
			</_-INT4_-ST_BOA_LIST_RESULT_XML>
		</BOA_LIST_OUTPUT>
	</asx:values>
</asx:abap>

This template consist of list of nodes containing two fields:

  • DOCUMENT_NUMBER - Business Object related Id that can be used to create a Test Case

  • TIMESTAMP - optional timestamp related to the Business Object identify by the DOCUMENT_NUMBER