Hi Folks,
I have created one SICF service for Excel Download.Based on the the posting date I am getting 18 invoices which are converted to excel and have to be downloaded. I have created URLs for all the 18 invoices and have looped in .htm page and called windows.open.
<script type="text/javascript" language="javascript">
<%
IF controller->gt_url_data IS NOT INITIAL .
lt_url = controller->gt_url_data.
** READ TABLE lt_url INDEX 1 INTO ls_url.
LOOP AT lt_url INTO ls_url .
%>
window.open ("<%= ls_url-lv_url %>");
<%
clear ls_url .
ENDLOOP.
ENDIF.
%>
Now 18 tabs open all at once and only one document gets downloaded.
How to resolve this issue.