need two differents json in my list item

in my view I need to show together two json that come from an oData, my view looks like this but I am missing my other call that I don’t know how to make so that they come in a combined way.

thats is my view

<Panel id=“list”>
                <List id=“invoicesList”
                      headerText=“{i18n>invoicesHeaderList}”
                      class=“sapUiResponsiveMargin”
                      width=“auto”
                      items=“{/PDF_File}”>
                    <items>
                        <ObjectListItem id=“objListItem”
                                        title=“{Descripcion}”
                                        number=“{Fecha}”/>
                    </items>
                </List>
            </Panel>
 
in the list part of the tag, items=“{/PDF_File}” is called.
I need items=“{/Datos_Extraidos}” to be called as well.
Scroll to Top